/* Fonts */

@font-face {
    font-family: "Avenir";
    src: url(../fonts/Avenir.ttc);
}
@font-face {
    font-family: "Aller Display";
    src: url(../fonts/AllerDisplay.ttf);
}

/* Globals */
:root{
    --main-font-color: #8DB8B4;
    --secondary-font-family: "Aller Display";
}

*{
    box-sizing: border-box;
    outline-style: none;
}

*:focus {
    outline: none!important;
}

input{
    outline-style: none;
}

html{
    scroll-behavior: smooth;
    font-family: "Avenir"
}

body{
    font-family: "Avenir";
    position: relative;
    width: 100%;
}

/* Helpers */
.no-margin{
    margin: 0;
}

.no-padding{
    padding: 0;
}

.bold-font{
    font-weight: bold;
}

.container-fluid{
    padding:0;
    margin: 0;
}

.container-padding{
    padding-left: 20px;
    padding-right: 20px;
}



/* navbar */
.navbar-logo{
    height: 30px;
    margin-top: 10px;
    margin-left: 10px;
}

.hamburger{
    z-index: 3;
    cursor: pointer;
    outline-style: none;
}

.hamburger-top,
.hamburger-bottom{
    display: block;
    height: 5px;
    width: 30px;
    background-color: var(--main-font-color);
    border-radius: 100px;
    transition: all .5s;
    transform: rotate(0);
}

.hamburger-top{
    margin-bottom: 5px;
}

.hamburger-bottom{
}

.sidenav{
    height: 100vh;
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    right: 0;
    width: 0px;
    top: 0;
    padding-top: 100px;
    z-index: 2;
    transition: all .5s;
}

.sidenav ul{
    list-style: none;
}

.sidenav ul li{
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
    font-family: "Avenir";
    font-size: 44px;
    font-weight: bold;
    font-variant: small-caps;
}

.sidenav ul li a{
    color: #fff;
}

.sidenav ul li a:hover{
    color: #474E5D;
    transition: all ease .5s;
}

.showsidenav{
    width: 100%;
    background-color: rgba(141, 184, 180, 1);
}

.showsidenav + div.hamburger .hamburger-top{
    
    background-color: #fff;
    transform: translateY(5px) rotate(-45deg);
}

.showsidenav + div.hamburger .hamburger-bottom{
    
    background-color: #fff;
    transform: translateY(-5px) rotate(45deg);
}
/* 
.navbar-social{
    display: none;
} */


.sidenav ul li a{
    padding: 0;
}

.dots-nav{
    position: fixed;
    top: 25%;
    right: 25px;
    z-index: 3;
}

.dot{
    display: block;
    width: 10px;
    padding:0;
    height: 10px;
    background-color: white;
    margin-bottom: 15px;
    border-radius: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 1);
}

.dot.active{
    background-color: var(--main-font-color);
}


.navbar-social{
    text-align: center;
    display: block;
    padding-top: 40px;
}

.navbar-social i{
    font-size: 30px;
    color: #fff;
}

.navbar-social i{
    font-size: 30px;
    color: #fff;
}

.navbar-social a:first-child{
    margin-right: 30px;
    margin-left: 30px;
}

.navbar-social a i:hover{
    color: #474E5D;
    transition: all ease .5s;
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
    .navbar-logo{
        height: 30px;
    }

    .hamburger{
        margin-right: 30px;
        margin-left: auto;
    }

    .sidenav ul li{
        padding-top: 0;
        padding-bottom: 0;
    }

    .dots-nav{
        padding-right: 30px;
    }
}

@media only screen and (min-width: 1025px){
    .hamburger{
        margin-right: 30px;
        margin-left: auto;
    }
    .dots-nav{
        padding-right: 30px;
    }

    /* .navbar-social{
        text-align: center;
        display: block;
        padding-top: 40px;
    }

    .navbar-social i{
        font-size: 30px;
        color: #fff;
    }

    .navbar-social i{
        font-size: 30px;
        color: #fff;
    }

    .navbar-social a:first-child{
        margin-right: 30px;
        margin-left: 30px;
    }

    .navbar-social a i:hover{
        color: #474E5D;
        transition: all ease .5s;
    } */
}


/* s1 */

.s1{
    height: 100vh;
    background: url('../img/main-bg.jpg');
    background-size: auto 100%;
    background-position-x: 40%;
    position:relative;
}

.site-slogan{
    position:absolute;
    left: 30px;
    bottom: 30px;
    color: #ffffff;
}

.site-slogan-l1,
.site-slogan-l2,
.site-slogan-l3{
    font-size: 2em;
    font-variant: small-caps;
}

.site-slogan-l1,
.site-slogan-l3{
    font-weight: lighter;
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
    .site-slogan{
        left: auto;
        right: 30px;
        bottom: 40px;
    }

    .site-slogan-l1,
    .site-slogan-l2,
    .site-slogan-l3{
        font-size: 4em;
    }
}

@media only screen and (min-width: 1025px){
    .s1{
        background-size: 100% 100%;
    }

    .site-slogan{
        left: auto;
        right: 120px;
    }

    .site-slogan-l1,
    .site-slogan-l2,
    .site-slogan-l3{
        font-size: 4em;
        line-height: 1;
    }
    
    .site-slogan-l1,
    .site-slogan-l3{
        font-weight: lighter;
    }

    .site-slogan-l2{
        font-family: "Avenir black"
    }
}

/* s2 */

.s2{
    position: relative;
    padding-top: 100px;
}

.bg-title{
    font-family: var(--secondary-font-family);
    position: absolute;
    top: 60px;
    z-index: -1;
}

.bg-title h1{
    font-size: 60px;
    text-transform: uppercase;
    color: rgba(238, 238, 238)
}

.service-container{
    padding-bottom: 65px;
}

.service-img{
    padding-bottom: 25px;
    text-align:center;
}

.service-img img{
    height: 100px;
}

.service-divider{
    height:3px;
    width: 125px;
    margin: 0 auto;
    background-color: var(--main-font-color);
}

.service-title{
    padding-top: 25px;
    text-align: center;
    font-family: var(--secondary-font-family);
    color: var(--main-font-color);
}


.service-text{
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
    .bg-title h1{
        font-size: 100px;
    }

    .s2{
        padding-top: 150px;
    }

    .service-container{
        padding-bottom: 90px;
    }

    .service-text{
        display: block;
    }
}

@media only screen and (min-width: 1025px){
    .bg-title h1{
        font-size: 180px;
    }

    .s2{
        padding-top: 200px;
    }

    .service-container{
        padding-bottom: 180px;
    }

    .service-container img{
        transform: scale(1);            
        transition: transform 1s ease;
    }

    .service-container:hover img{
        transform: scale(1.5);            
        transition: transform 1s ease;
    }

    .service-title{
        display: table;
        min-height: 40px;
        margin: 0 auto;
    }

    .service-title h2{
        display: table-cell;
        vertical-align: middle;
        font-size: 18px;
    }

    /* .service-container:nth-child(n+2) .service-title h2{
        padding-top: 20px;
    } */


    .service-text{
        display: block;
        padding-top: 20px;
    }

    .service-text{
        font-size: 14px;
        text-align: justify;
    }

    .services{
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* s3 */

.s3{
    /* background: url('../img/black-bg.png'); */
    background-color: #000;
    padding-top: 65px;
    padding-bottom: 65px;
    background-size: 200%;
}

.aboutus-title{
    font-family: var(--secondary-font-family);
    text-align: center;
    padding-bottom: 60px;
}

.aboutus-title h1{
    color: var(--main-font-color);
    text-transform: uppercase;
}

.aboutus-text{
    padding-left: 45px;
    padding-right: 45px;
}

.aboutus-text p{
    color: #fff;
    font-size: 14px;
}

p.aboutus-lastline{
    font-size: 24px;
}

p.aboutus-lastline span{
    text-decoration: underline;
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
    .s3{
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .aboutus-text{
        padding-left: 120px;
        padding-right: 120px;
    }

    .aboutus-text p{
        font-size: 14px;
    }
}

@media only screen and (min-width: 1025px){
    .aboutus-title h1{
        font-size: 3rem;
    }

    .aboutus-title{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .aboutus-text{
        padding-top: 80px;
        padding-bottom: 80px;
        padding-right: 160px;
        text-align: justify;
    }

    .aboutus-text p{
        font-size: 16px;
        line-height: 1.7;
    }

    p.aboutus-lastline{
        opacity: 0;
        font-size: 17px;
    }
}

/* s4 */
.s4{
    background-color: var(--main-font-color);
    padding-top: 65px;
    padding-bottom: 65px;
}

.carrousel-container{

}

.carrousel-container h2{
    text-transform: uppercase;
    color: #fff;
    font-family: var(--secondary-font-family);
}

.host-element{
    margin: 0;
}

.fc-controls{
    display: none;
}

.fc-pagination{
    display: none;
}

.carrousel{
    text-align: center;
    padding-top: 40px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
    .s4{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .carrousel-container h2{
        font-size: 2.5rem;
        width: 50%;
        padding-left: 60px;
    }
}

@media only screen and (min-width: 1025px){
    .carrousel-container h2{
        font-size: 3rem;
        width: 30%;
        padding-left: 60px;
        border-left: 8px solid #fff;
    } 
}

/* s5 */

.s5{
    padding-top: 65px;
    padding-bottom: 65px;
}

.contact-left{
    display: none;
    text-align: justify;
}

.contact-right{
}

.contact-right h2{
    font-family: var(--secondary-font-family);
    color: var(--main-font-color);
    text-transform: uppercase;
    text-align: center;
}

.contact-form{
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-form label{
    font-family: var(--secondary-font-family);
    text-transform: uppercase;
    color: var(--main-font-color);
    font-size: 14px;

}

.contact-form input{
    border: none;
    border-bottom: 3px solid var(--main-font-color);
    border-radius: 0;
}

.contact-form input:focus{
    outline-width: 0;
    outline-style: none;
}

.contact-form textarea{
    border: none;
    border: 3px solid var(--main-font-color);
    width: 100%;
}

.contact-form textarea:focus{
    outline-style: none;
}

.contact-names,
.contact-email{
    padding-bottom: 20px;
}

.contact-submit{
    border: none!important;
    background-color: var(--main-font-color);
    text-transform: uppercase;
    font-family: var(--secondary-font-family);
    color: #fff;
    padding: 6px 30px;
    border-radius: 10px;
}

@media only screen and (min-width: 1025px){ 
    .s5{
        padding-bottom: 100px;
    }
    
    .contact-left{
        display:block;
        /* padding-top: 80px; */
        padding-right: 120px;
        padding-left:15px;
    }
    
    .contact-left-title{
        padding-left: 60px;
        border-left: 8px solid var(--main-font-color);
    }

    .contact-left h2{
        font-family: var(--secondary-font-family);
        color: var(--main-font-color);
        text-transform: uppercase;
        text-align: left;
        font-size: 3rem;
    }

    .contact-left-text{
        padding-left: 105px;
    }

    .contact-left ul{
        margin: 0;
        padding: 0;
        padding-left:40px;
        font-size: 16px;
    }

    .conctact-left ul li{
        padding:0;
        margin: 0;
    }

    .contact-left p{
        font-size: 16px;
        line-height: 1.6;
        padding-top: 80px;
    }

    .contact-left p:last-child{
        padding-top: 20px;
        font-weight: 600;
    }

    .contact-right h2{
        display: none;
    }
}

/* footer */

footer{
    background-color: rgba(96, 96, 96, 0.08);
    width: 100%;
}

footer ul{
    list-style: none;
    padding-left: 15px;
    font-size:12px;
}

footer ul li{
}

footer ul li a{
    color: black;
    text-decoration: none;
    font-size:12px;
}

footer ul li a:hover{
    color: #474E5D;
    text-decoration: none;
    transition: all ease .3s;
    font-weight: bold;
}

footer h3{
    font-family: var(--secondary-font-family);
    color: var(--main-font-color);
    font-variant: small-caps;
    font-size: 1rem;
}

footer .footer-container{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-nav{
    padding-top: 20px;
}

.social-icons{
    width: 100%;
    padding-left: 35px;
}

.social-icos a{
}

.social-icos a:hover{
    color: #474E5D;
    text-decoration: none;
    transition: all ease .3s;
    font-weight: bold;
}

.social-icons a i{
    color: black;
    margin-right: 15px;
}

.copyright{
    padding-bottom: 10px;
}

.copyright p{
    margin: 0 auto;
    font-weight: bold;
    font-size: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
    footer{
        padding-left: 40px;
    }

    footer h3{
        width: 100%;
    }
}

@media only screen and (min-width: 1025px){
    footer{
        padding-left: 80px;
    }

    footer h3{
        width: 100%;
    }
}

/* social-btns */
.whatsapp-btn{
    position: fixed;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    z-index: 10;
    padding-top: 9px;
    padding-left: 18px;
}

.whatsapp-btn a{
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 30px;
}

.whatsapp-btn a i{
    margin:0;
    padding: 0;
}
