@font-face {
    font-family: Brush;
    src: url(../fonts/Brush-Script.ttf);
}
@font-face {
    font-family: Montserrat-Regular;
    src: url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
    font-family: Montserrat-Bold;
    src: url(../fonts/Montserrat-Bold.ttf);
}

/*GLOBAL STYLING START*/
html {
    scroll-behavior: smooth;
  }
.site_container{
width: 100%;
height: fit-content;
display: flex;
align-items: center;
flex-direction: column;
box-sizing:border-box;
background: rgb(12,19,46);

}
.site-width{
    max-width: 1400px;
    width: 100%;
    padding: 0px 0px;
    overflow: visible;
    height: 100%;
    margin: 0 auto;
}
.hero_wrapper img{
    float: right;
}
.about_text{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero_wrapper{   
    margin: 100px 0px;
     display: flex;
    justify-content: center;
    align-items: center;
}
.title{
    font-family: "Brush", sans-serif;
    font-size: 90px;
    color: white;
}
.button-primary{
    background: rgb(12,19,46);
    padding: 10px 15px;
    border-radius: 10px;
    font-family: 'Montserrat-Regular';
    font-weight: 500;
    font-size: 14px;
    height: fit-content;
    color: white;
}
/* GLOBAL STYLING END */
/* HEADER STYLING START */
header{
    position: relative;
    width: 100%;
    padding: 15px 0px;
    background:  url(../images/header-bg.png) no-repeat center center;
    background-size: cover;
    height: fit-content;
    
}
.header_container{    
    display: flex;
    justify-content: space-between;
}

.logo{
    width: 400px;
    height: auto;
}
.nav-wrapper{
    width: 100%;
    background-color: white;
    min-height: none;
}
.nav-items-wrapper{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.nav-item{
    color: black;
    font-family: 'Montserrat-Bold';
    padding: 10px 20px;
    font-size: 19px;
    text-transform: uppercase;
}
.phone{
    color: white;
    font-weight: 600;
    font-family: 'Montserrat-Bold';
    font-size: 35px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + .content {
    padding-top: 60px;
  }
/* HEADER STYLING END */
/* HERO STYLING START */
.hero_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


}


/* HERO STLYING END */



.gallery_wrapper .title{
    text-align: left;
}
.gallery_wrapper img:nth-child(odd){
    float: right;
    top: -50px;
    position: relative;
}
.gallery_wrapper img:nth-child(even){float: left;}


/* CONTACT STYLING START */
p{
    text-align: center;
    font-family: "Montserrat-Regular", sans-serif;
    color: white;
    font-size: 22px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 0px;
}
.contact-right p.color-secondary{
    color: rgb(196,203,230);
    margin-top: 20px;
    margin-bottom: 0px;
}
.contact_wrapper{
    margin: 100px 0px;
}
.contact_wrapper p{
    text-align: left;
    margin: 30px 0px;
    font-weight: 600;
}

.contact-right p.color-secondary.message{
    margin-top: 50px;
}

button, input, select, textarea{
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    padding: 10px;
    margin: 10px 0px;
}
textarea{height: 200px;}
#sendButton{
    background: rgb(196,203,230);
    text-align: center;
    font-family: 'Montserrat-Bold';
    padding: 7px;
    text-transform: uppercase;
    cursor: pointer;
}
form{    display: flex;
    flex-direction: column;}
/* CONTACT STYLING END */
/* MEDIA QUERIES */
@media only screen and (max-width: 767px) {
    .header_container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .header_container a:nth-child(1){order: 1;}
    .header_container img:nth-child(2){order: 3;
        width: 150px;
    }
    .header_container a:nth-child(2){order: 2;}
    a{    text-align: center;
        width: fit-content;
    }
    .hero_wrapper{flex-direction: column;}
    .title{font-size: 40px}
    .about_text{font-size: 18;}
    .contact_wrapper p{font-size: 16px;}
    .phone{font-size: 22px;}
    .hero_wrapper{margin: 20px 0px;}
    .contact_wrapper{margin:20px 0px}
    .gallery_wrapper img:nth-child(odd){
        top: 0px;
    }
    .gallery_wrapper img{margin: 10px auto;}
    .nav-item{font-size: 12px; padding: 10px 5px;}
  }
 