@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

/* COLOR TEXTO: #008761 */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #f8f8f8;
}

.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

section{
    padding: 100px;
}

/*navbar styles*/

.navbar{
    position: fixed;
    width: 100%;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.sticky{
    padding: 20px 0;
    background-color: #191919;
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .menu li a{
    color: #fff;
    text-decoration: none;
    font-weight: 200;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.navbar .menu li a:hover{
    color:#008761;
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .logo a{
    text-decoration: none;
    color: #fff;
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 0px;
}

.navbar .logo span{
    font-weight: 600;
    color: #008761;
}

.languages{
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

.languages img{
    width: 25px;
    height: 15px;
}

/*menu btn styles*/

.menu-btn{
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

/*home section styles*/

.home{
    display: flex;
    background-image: linear-gradient(to bottom, rgba(19, 19, 19, 0.4), rgba(19, 19, 19, 1)), url(img/img-header.jpg);
    height: 100vh;
    color: #fff;
    min-height: 500px;
}

.home .home-content .text-home{
    font-size: 75px;
    font-weight: 600;
}

.home .home-content .text-home span{
    color: #008761;
}

.home .home-content .text-home-2{
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}

.home .home-content .text-home-2 span{
    color: #008761;
}

/*about section styles*/

.about{
    background: #e7e7e7;
}

.about .title{
    text-align: center;
    font-size: 40px;
    font-weight: 400;
}

.line{
    background-color: #008761;
    width: 150px;
    height: 2px;
    margin: 0 auto;
    margin-top: 20px;
    
}

.vertical-line{
    background-color: #008761;
    height: 200px;
    width: 2px;
}

.subtitle{
    font-size: 25px;
    font-weight: 400;
    text-align: center;
}

.about .about-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about .about-content .left{
    width: 35%;
}

.about-content .left .img-about{
    width: 350px;
    height: 350px;
    object-fit: contain;
}

.about .about-content .right{
    width: 55%;
    margin-top: 100px;
    margin-bottom: 100px;
}

.about .about-content .right p{
    text-align: justify;
}

.logo-client{
    width: 200px;
    height: 60px;
    display: block;
    margin: 0 auto;
    margin-bottom: 50px;
    cursor: pointer;
}

/*representatives section styles*/

.representatives{
    background-color: #fff;
}

.representatives-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    text-align: center;
    margin-top: 100px;
}

.representatives .title{
    text-align: center;
    font-size: 40px;
    font-weight: 400;
}

.representatives-subtitle{
    text-align: center;
    font-size: 17px;
    margin-top: 15px;
}

.logo-representatives{
    max-width: 210px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-representatives:hover{
    transform: scale(1.1);
}

/*contact section styles*/

.contact{
    background-color: #e7e7e7;
}

.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 100px;
}

.contact .title{
    text-align: center;
    font-size: 40px;
    font-weight: 400;
}

.contact .line{
    margin-bottom: 100px;
}

.contact .contact-content .column{
    width: calc(50% - 30px);
}

.contact .contact-content .left{
    text-align: justify;
}

.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
    margin-top: 25px;
}

.contact .contact-content .row .info{
    margin-left: 30px;
}

.contact .contact-content .row i{
    font-size: 25px;
    color: #008761;
}

.contact .contact-content .right .subtitle{
    margin-bottom: 50px;
}

.contact .right form .fields{
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea{
    width: 100%;
    height: 80px;
}

.contact .right form .name{
    margin-right: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid #191919;
    outline: none;
    padding: 0 15px;
    border: 1px solid #bdbdbd;
}

.contact .right form .textarea textarea{
    padding-top: 10px;
    resize: none;
}

.contact .right form .button{
    height: 50px;
    width: 200px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 100px;
}

.contact .right form .button button{
    width: 100%;
    height: 100%;
    background-color: #008761;
    border: none;
    cursor: pointer;
}

.contact .right form .button button:disabled,
.contact .right form .button button[disabled]{
    width: 100%;
    height: 100%;
    background-color: #bdbdbd;
    border: none;
    color: white;
    cursor: none;
}

footer{
    background-color: #191919;
    color: #fff;
    font-weight: 200;
    padding: 50px;
    text-align: center;
}

footer span{
    color:#008761;
}

/*media querys*/

@media(max-width: 1300px){
    
}

@media(max-width: 1104px){
    .about .about-content .left img{
        width: 250px;
        height: 250px;
    }
    .contact iframe{
        width: 300px;
        height: 150px;
    }
}

@media(max-width: 950px){
    .max-width{
        padding: 0 50px;
    }

    .menu-btn{
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before{
        content: "\f00d";
    }

    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
        left: -100%;
        background-color: #191919;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active{
        left: 0;
    }

    .navbar .menu li{
        display: block;
    }

    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .about .about-content .column{
        width: 50%;
    }

    .max-width{
        max-width: 800px;
    }

    .about .about-content .column{
        width: 100%;
    }

    .about .column{
        width: 100%;
    }

    .about .about-content .right{
        margin-top: 50px;
        margin-bottom: 100px;
    }

    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .vertical-line{
        display: none;
    }

    .line{
        margin-bottom: 0px;
    }

    .contact .contact-content .column{
        width: 100%;
    }

    .contact .contact-content .right{
        margin-top: 50px;
        margin-bottom: 100px;
    }

    .contact .contact-content{
        display: flex;
        justify-content: center;
    }

    .contact iframe{
        width: 400px;
        height: 250px;
    }

}

@media(max-width: 690px){
    .max-width{
        padding: 0 25px;
    }

    .contact iframe{
        width: 300px;
        height: 150px;
    }
}