@font-face{
    font-family: 'myriad-black';
    src: url(../assests/fonts/Myriad\ Pro\ Black.otf);
}

@font-face{
    font-family: 'myriad-bold';
    src: url(../assests/fonts/Myriad\ Pro\ Bold.ttf);
}

@font-face{
    font-family: 'myriad-light';
    src: url(../assests/fonts/Myriad\ Pro\ Light.otf);
}

@font-face{
    font-family: 'myriad-regular';
    src: url(../assests/fonts/Myriad\ Pro\ Regular.ttf);
}

:root{
    /* colors */
    --black  : #292929;
    --light-black : #156B6E;
    /* --main-blue : #00adb3; */
    --dark-blue : #00adb3;
    --aqua-blue : #00d0c2;
    --gray : #738c8c;
    --main-white : #fcfcfc;
    --gray: #343a40;
    /* --body-background: #f8f9fa ; */

    --body-background: #f5faf6 ;

    /* fonts */
    --montserrat : 'Montserrat', sans-serif;
    --myriad-black : 'myriad-black';
    --myriad-bold  : 'myriad-bold';
    --myriad-light : 'myriad-light';
    --myriad-regular : 'myriad-regular';
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--myriad-black);
    text-shadow: 2px 4px 4px #201f1f54;
}

h2{
    font-family: var(--myriad-black);
  
    font-size: 60px;
}

a{
    color: var(--main-white);
    text-decoration: none;
    cursor: pointer;
}

p{
    font-family: var(--myriad-regular);
}

ul li{
    margin: 15px 0px;
    list-style: none;
    font-family: var(--myriad-regular);
    font-size: 25px;
}

ul li span{
    font-size: 27px;
    font-weight: 700;
}

.d-column{
    display: flex !important;
    flex-direction: column !important;
}

.d-row{
    display: flex !important;
    flex-direction: row !important;
}

.w-50{
    width: 50% !important;
}

.w-100{
    width: 100% !important;
}

.w-25{
    width: 25% !important;
}

.d-none{
    display: none !important;
}

body{
    margin: 0em !important;
    background-color: var(--body-background) !important;
}

.txt-white{
    color: var(--main-white);
}

.txt-main{
    color: var(--dark-blue);
}

.container{
    padding: 0px 120px !important;
}

.display-errors{
    width: 70% !important;
    padding:20px 40px;
    border-radius: 10px;
    background-color: #b30000a7;
    display: flex;
    flex-direction: column;
}

.display-errors span{
    color: var(--main-white);
    font-family: var(--myriad-light);
    font-size: 25px;
}

/* alert */
    .alert-mail{
        background-color: #292929b2;
        height: 100vh;
        width: 100%;
        position:fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999999;
    }

    .alert-card{
        background-color: var(--dark-blue);
        border-radius: 30px;
        width: 40%;
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .alert-card span{
        font-size: 35px;
        text-align: center;
        font-family: var(--myriad-regular);
        margin: 10px 0px;
    }

    .alert-card a{
        margin-top: 15px;
        font-size: 35px;
        text-align: center;
        font-family: var(--myriad-regular);
        padding: 10px 60px;
        background-color: var(--main-white);
        border-radius: 20px;
        color: var(--dark-blue);
        border: solid 4px #fff;
        transition: all .3s ease-in-out;
    }

    .alert-card a:hover{
        
        background-color: var(--dark-blue);
        color: var(--main-white);
    }
/* alert */

/* nav */
nav{
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav img{
    width: 250px;
    margin:20px 0px;
}

.nav-bar{
    height: 55px;
    /* background-color: var(--main-blue); */
    background-color: var(--dark-blue);
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 5px 6px #29292983;
}

.nav-bar a{
    color: var(--main-white);
    font-size: 30px;
    margin: 0px 20px;
    font-family: var(--myriad-light);
    transition: all .3s ease-in-out;
    text-shadow: 1px 1px 2px #192e33a1;
}

.nav-bar a:hover{
    color: var(--light-black);
    font-weight: 600;
}

/* nav */

/* welcome */
    .banner{
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        width: 100% !important;
        height: 730px !important;
        background-image: url('../img/banner.webp');
        background-repeat: no-repeat;
        background-size: cover;
        box-shadow: 4px 7px 26px #00000068;
    }

/* welcome */

/* contac form */
    .div-form{
        display: flex;
        height: fit-content;
        width: 100%;
    }

    .form-photo{
        width: 50%;
        /* background-color: var(--gray); */
        background-image: url('/img/cleaning_home.webp');
        border-top-right-radius: 40px;
    }

    .contact-form{
        margin: 30px 0px;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .contact-form span{
        width: 80%;
        color: var(--main-white);
        margin-top: 20px;
        font-size: 20px;
        font-family: var(--myriad-light);
        text-align: start;
    }

    .div-input{
        display: flex;
        flex-direction: column;
        width: 80%;
        margin: 10px 0px;
    }

    .div-input label{
        font-family: var(--myriad-regular);
        color: var(--main-white);
        font-size: 26px;
        margin-bottom: 5px;
    }

    .div-input input{
        height: 30px;
        background-color: transparent !important;
        color: #fff;
        border: none;
        border-bottom: solid #fff;
        /* border-color: #fff; */
        outline: none;
        font-size: 20px;
    }

    ::placeholder {
        color: #fcfcfcb7;
        font-size: 20px;
    }

    .div-input input:hover{
        outline: none;
    }

    .div-input-submit{
        margin-top: 30px;
        width: 80%;
        height: 45px;
    }

    .div-input-submit input{
        width: 100%;
        height: 45px;
        background-color: var(--main-white);
        color: var(--dark-blue);
        font-family: var(--myriad-black);
        font-size: 20px;
        border: 5px solid var(--main-white) !important;
        cursor: pointer;
        transition: all .3s ease-in-out;
        border-radius: 5px;
        box-shadow: 3px 3px 6px #292929;
    }

    .div-input-submit input:hover{
        background-color: var(--dark-blue) !important;
        color: var(--main-white);
        box-shadow: unset;
    }

    .work-with-us{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 70px;
    }

    .work-with-us h3{
        font-size: 45px;
    }

    .work-with-us .postulate{
        background-color: var(--dark-blue);
        border: 4px solid;
        border-color: var(--main-white);
        color: var(--main-white);
        cursor: pointer;
        padding: 10px 40px;
        border-radius: 20px;
        font-size: 40px;
        font-family: var(--myriad-regular);
        transition: .3s all ease-in-out;
        box-shadow: 3px 5px 5px #2929298f;
    }

    .work-with-us .postulate:hover{
        background-color: var(--main-white);
        color: var(--dark-blue);
        box-shadow: none;
    }
/* contac form */

/* presentation */

.presentation{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-blue);
    box-shadow: 2px 8px 26px #00000097;
}

.presentation-eslogan{
    width: 100% !important;
    height: 700px;
    background-image: url('/img/guantes.webp');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.presentation-eslogan h2{
    margin-bottom: 0px !important;
    text-shadow: 3px 5px 7px #292929b0;
}


.eslogan{
    font-size: 40px;
  
    margin-top: 0px !important;
}

.we-are{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}

.we-are-img{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.we-are-img img{
    width: 400px;
}

.we-are-text{
    padding: 0px 40px;
}

.we-are-p{
    font-size: 22px;
    text-align: start;
}

.we-are-p span{
    font-weight: 700;
}

.we-are-ul{
    margin-bottom: 70px;
}

.mission{
    font-size: 32px;
    margin-top: 0px !important;
    margin-bottom: 40px  !important;
    font-weight:600;
    width:100%;
    text-align:center;
}

/* presentation */


/* services */
    .services-section{
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 70px ;
    }

    .services-section h2{
        font-size: 60px;
        margin-top: 0px !important;
    }

    .services{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center !important;
    }

    .services .service{
        margin: 30px 0px ;
        width: 32% !important;
        display: flex;
        flex-direction: column;
      
        align-items: center;
    }

    .services .service i{
        font-size: 90px;
    }

    .services .service p{
        font-size: 30px;
        font-family: var(--myriad-regular);
        text-align: center;
    }

    .quote-now a{
        margin-top: 60px !important;
        padding: 10px 40px;
        background-color: var(--dark-blue);
        color: var(--main-white);
        border-radius: 20px ;
        font-size: 50px ;
        font-family: var(--myriad-regular) !important;
        cursor: pointer;
        transition: all .3s ease-in-out;
        border:5px solid var(--dark-blue);
        box-shadow: 3px 6px 8px #192e3379;
        text-decoration: none;
    }

    .quote-now a:hover{
        background-color: var(--main-white);
        color: var(--dark-blue);
        box-shadow: unset;
    }

    .why-us{
        display: flex;
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px ;
    }

    .why-us .reasons{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30%;
        justify-content: center;
        align-items: center;
      
    }

    .why-us .reasons i{
       font-size: 60px;
    }

    .why-us .reasons p{
        font-size: 30px;
        text-align: center;
     }

/* services */

/* contact */

    .contact-section{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-us{
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: var(--dark-blue);
        border-radius: 40px ;
        box-shadow: 3px 12px 19px #2929299a;
    }

    .contact-data{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-data h2{
        font-size: 45px ;
    }

    .contact-data-divs{
        margin-top: 70px ;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .contact-data-divs div{        
        color: var(--main-white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }

    .contact-data-divs div i{        
        font-size: 70px ;
    }

    .contact-data-divs div p{        
        font-size: 30px ;
        font-weight: 600;
    }

    .contact-data-divs div span{   
        margin-top: 20px;     
        font-size: 40px ;
        font-family: var(--myriad-light);
    }

/* contact */

/* footer */
    footer{
        margin-top: 200px ;
        background-color: #0b353a;
        width: 100%;
        height: 200px;
        position: relative;
        bottom: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer img{
        width: 300px;
    }

    footer span{
        margin-top: 10px;
        color: var(--main-white);
        font-size: 35px;
        font-family: var(--montserrat);
    }

    .developed-by span{
        margin-top: 30px;
        font-family: var(--myriad-regular);
        font-size: 20px !important;
    }

    .developed-by span a{
        cursor: pointer;
    }
/* footer */

/* work with us */
    .work{
        padding: 50px 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .postulate-form{
        padding: 70px 50px;
        border-radius: 20px;
        width: 100%;
        background-color: var(--dark-blue);
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .postulate-form div{
        width: 48%;
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .aclaration{
        width: 100% !important;
        margin: 0px !important;
        margin-top: 35px !important;     
        margin-bottom: 15px !important;   
    }

    .aclaration p{
        font-size: 22px;
        color: var(--main-white);
        margin: 0px !important;
    }

    .alternative{
        margin-top: 40px;
        width: 100% !important;
        margin-bottom: 0px !important;
    }

    .alternative p{
        color: var(--main-white);
        font-size: 30px;
        text-align: center;
        margin-bottom: 0px !important;
    }

    .alternative p span{
        font-weight: 700;
    }

    .postulate-form label{
        color: var(--main-white);
        font-family: var(--myriad-light);
        font-size: 25px;
    }

    .postulate-form input, select{
        width: 100%;
        height: 40px;
        font-size: 28px;
        background-color: transparent;
        border: none;
        border-bottom: 4px solid var(--main-white);
        color: var(--main-white);
    }

    .postulate-form button{
        width: 100%;
        height: 60px;
        font-size: 28px;
        background-color: var(--main-white);
        border: 5px solid var(--main-white);
        transition: .4s all ease-in-out;
        border-radius: 20px;
        cursor: pointer;
    }

    .postulate-form button:hover{
       background-color: var(--dark-blue);
       color: var(--main-white);
    }

    select option {
        color: var(--black) !important;
        background-color: var(--main-white);
    }

    input:focus, select:focus {
        outline: none;
        border: none;
        border-bottom: 4px solid var(--aqua-blue);
    }

    input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px var(--dark-blue) inset;
        -webkit-text-fill-color: var(--main-white);
        color: var(--main-white) !important;
        border-bottom: 4px solid #10ec08;
    }

    #filelabel{
        background-color: var(--main-white);
        border-radius: 20px;
      
        padding: 7px 20px ;
        cursor: pointer;
        border: 2px solid #fcfcfc;
        transition: .2s all ease-in-out;
    }

    #filelabel:hover{
        background-color: var(--dark-blue);
        color: var(--main-white);
    }

    #filelabel i{
        padding-right: 15px;
    }

    .inputfile{
        cursor: pointer;
       
    }
/* work with us */


@media screen and (max-width: 1500px){
    h2{
        font-size: 50px !important;
    }

    .quote-now a{
        font-size: 40px;
    }

    .presentation-eslogan{
        height: 590px;
    }

    .alert-card{
        height: 55% !important;
    }

    .banner{
        height: 630px !important;
    }
}


@media screen and (max-width: 1400px){
    nav img {
        width: 230px;
    }

    .eslogan, .contact-data-divs div span{
        font-size: 35px !important;
    }

    .we-are{
        margin-top: 40px;
    }

    .presentation-eslogan h2, .work-with-us h3{
        margin-top: 0px !important;
    }

    .we-are-p{
        font-size: 19px !important;
    }

    .banner{
        height: 520px !important;
    }

    .mission, .nav-bar a{
        font-size: 28px;
    }

    .services .service p{
        font-size: 26px;
    }

    .presentation-eslogan{
        height: 510px;
    }

    
}

@media screen and (max-width: 1300px) {
    .container{
        padding: 0px 100px !important;
    }

    .we-are-p span{
        font-size: 25px;
    }

    .services-section h2{
        margin-bottom: 15px !important;
    }

    .work-with-us h3{
        font-size: 38px;
    }

    .work-with-us .postulate, footer span{
        font-size: 30px;
    }

    .div-input label{
        font-size: 23px;
    }

    .we-are-img img {
        width: 330px;
    }
}

@media screen and (max-width: 1100px) {
    .banner{
        height: 400px;
    }

    .nav-bar a{
        font-size: 26px;
    }

    .quote-now a{
        font-size: 32px;
    }

    .work{
        padding: 50px 100px !important;
    }

    .alert-card span{
        font-size: 28px !important;
    }

    .alert-card a{
        font-size: 28px ;
    }
}

@media screen and (max-width: 1024px) {
    .services .service p, .why-us .reasons p{
        font-size: 21px;
    }

    .banner{
        height: 430px !important;
    }

    .services .service i{
        font-size: 75px;
    }

    .presentation-eslogan{
        height: 450px !important;
    }

    .presentation-eslogan h2{
        font-size: 40px !important;
    }

    .we-are-img{
        display: none;
    }

    .eslogan, .we-are-p{
        text-align: center;
    }

    .we-are-ul .we-are-p{
        text-align: unset;
    }

    .we-are-text{
        padding: 0px 40px !important;
    }

    footer{
        margin-top: 130px;
    }

    .txt-main{
        text-align: center;
    }
}

@media screen and (max-width: 900px) {
    .form-photo{
        display: none;
    }

    .contact-form{
        width: 100%;
    }

    .contact-data-divs{
        margin-top: 0px !important;
    }

    .contact-data-divs div span{
        font-size: 30px;
    }

    .contact-data-divs div i{
        font-size: 60px;
    }

    .mission{
        font-size: 24px;
    }

    .services-section h2{
        margin-bottom: 20px !important;
        font-size: 45px !important;
    }

    .presentation-eslogan{
        height: 400px !important;
    }

    .we-are{
        padding: 0px 10px !important;
    }
}

@media screen and (max-width: 800px) {
    .container{
        padding: 0px 60px !important;
    }

    .presentation-eslogan{
        height: 350px !important;
    }

    .banner{
        height: 390px !important;
    }
}

@media screen and (max-width: 700px) {
    .developed-by span{
        font-size: 17px !important;
    }

    .contact-data-divs div span{
        font-size: 26px !important;
    }

    .we-are-p span{
        font-size: 20px;
    }

    .we-are-p{
        font-size: 18px;
    }

    .banner{
        height: 360px !important;
    }

    .presentation-eslogan{
        height: 320px !important;
    }

    .presentation-eslogan h2{
        font-size: 32px !important;
    }

    .eslogan{
        font-size: 28px !important;
    }

    .postulate-form div{
        width: 100% !important;
    }

    .alert-card span{
        font-size: 26px !important;
    }

    
}


@media screen and (max-width: 600px) {
    .work-with-us h3{
        font-size: 28px !important;
    }
    
    .work-with-us .postulate{
        font-size: 27px !important;
    }

    .presentation .container{
        padding: 0px 0px !important;
    }

    .banner{
        height: 300px !important;
    }

    .alert-card span{
        font-size: 22px !important;
    }

    .alert-card a{
        font-size: 22px !important;
    }

    .alert-mail .container{
        padding: 0px 20px !important;
        width: 60%;
    }
}

@media screen and (max-width: 550px) {
    .presentation-eslogan h2{
        font-size: 27px !important;
    }
    
    .services-section{
        margin-top: 20px !important;
    }

    .contact-data-divs{
        flex-direction: column;
    }

    .eslogan{
        font-size: 25px !important;
    }

    .we-are-p {
        font-size: 16px !important;
    }

    footer img{
        width: 200px !important;
    }

    .footer span {
        font-size: 21px !important ;
    }

    .nav-bar a{
        font-size: 22px !important;
    }

    .services-section h2{
        font-size: 40px !important;
    }

    .work-with-us h3{
        text-align: center;
    }

    .alternative p{
        font-size: 22px !important;
    }

    .postulate-form button{
        font-size: 26px;
        height: 45px;
    }
}


@media screen and (max-width: 500px) {
    .why-us{
        flex-direction: column !important;
    }

    .why-us .reasons{
        width: 60%;
    }

    .we-are-ul{
        padding: 0px 40px !important;
    }

    .eslogan{
        font-size: 22px !important;
    }

    .we-are-p span{
        font-size: 18px !important;
    }

}


@media screen and (max-width: 450px) {

    .services-section h2{
        font-size: 30px !important;
    }

    .mission{
        font-size: 20px;
    }

    .container{
        padding: 0px 30px !important;
    }

    .services .service p, .why-us .reasons p{
        font-size: 18px !important;
    }

   .presentation-eslogan{
    height: 220px !important;
   }

   .presentation-eslogan h2{
    font-size: 24px !important;
   }

   .eslogan{
    font-size: 20px !important;
   }

   .nav-bar a{
    font-size: 20px !important;
   }

   .work{
    padding: 40px 20px !important;
   }

   .postulate-form{
    padding: 60px 10px !important;
   }

   .postulate-form div{
    width: 85% !important;
   }

   .postulate-form{
    justify-content: center !important;
   }

    .alert-mail .container{
        width: 80%;
    }
}

@media screen and (max-width: 400px) {
    .nav-bar a{
        font-size: 19px !important;
        margin: 0px 10px !important;
    }

    nav img{
        width: 200px !important;
    }

    .banner{
        height: 240px !important;
    }

    .services .service{
        width: 45% !important;
    }

    .presentation-eslogan h2{
        font-size: 20px !important;
    }

    .eslogan{
        font-size: 18px !important;
    }

    footer span{
        font-size: 25px !important;
    }

    .thanks-view p{
        font-size: 18px !important;
    }

    .thanks-view h2{
        font-size: 30px !important;
        text-align: center;
        margin-top: 90px !important;
    }


    .thanks-view a{
        font-size: 25px !important;
        margin-bottom: 90px !important;
    }
}

@media screen and (max-width: 350px) {
    .contact-data-divs div i{
        font-size: 45px !important;
    }

    .work-with-us .postulate{
        font-size: 22px !important;
    }

    .postulate-form label{
        font-size: 20px !important;
    }

    .work h2{
        font-size: 30px !important;
    }
}


@media screen and (max-width: 300px) {
   

    footer span{
        font-size: 20px !important;
        text-align: center;
    }


    .container{
        padding: 0px 22px !important;
    }

    .quote-now a{
        font-size: 28px !important;
    }

    .services-section h2{
        font-size: 28px !important;
    }

    .nav-bar a{
        font-size: 16px !important;
    }
}





