@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Montserrat', 'Helvetica';
    font-size: 12px;
}
.container {
    max-width: 1140px;
    margin: auto;
}

/**********************************
    Header 
 **********************************/
 .header {
    height: 0;
    display: grid;
    flex-direction: row;
    grid-template-columns: 1fr 2fr;
 }
 .header-logo {
    grid-column: 1 / 2;
    display: flex;
    justify-content: flex-start;
 }
 .header-logo img {
    position: absolute;
    width: 80px;
    height: auto;
    margin-top: 18px;
    margin-left: 30px;
 }
.nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: #DF8C26;
    border-radius: 5px;
}
.header-menu {
    grid-column: 2 / 3;
    display: flex;
    justify-content: flex-end;
    position: fixed; 
    left: 10px; 
    top: 0px; 
    width: 100%;
}
.menu-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 18px;
    color: #fff;
}
.menuMobile {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 25px;
    margin-top: 15px;
    margin-right: 30px;
    transition: all ease 0.5ms;
    cursor: pointer;
}
.mm-line {
    height: 3px;
    background-color: #fff;
}
nav ul,
nav li {
    list-style: none;
}
nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    border-radius: 3px;
    right: 1px;
    width: 25vw;
    height: 100vh;
    margin: 0;
    margin-top: 0px;
    background-color: #f4b501;
    box-shadow: 1px 1px 10px 1px #f3b408;
}
nav a {
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    margin-left: 70px;
    line-height: 70px;
    color: #161616; 
}
nav a:hover {
    color: #454545;
}
a.close {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
    padding: 5px 0;
}
li.email a,
li.zap a {    
    color: #FFF;
    font-size: 14px;
    font-weight: 500; 
}
li.email a {
    margin-bottom: 0px;
    line-height: 48px;
}
li.zap a:first-child {
    line-height: 20px;
}
li.email img,
li.zap img {
    margin-right: 5px;
}
li.zap img {
    width: 18px;
    height: 18px;
}


/**********************************
    Banner
 **********************************/
 .banner {
    height: 100vh;
 }
 .banner-img {
    height: 100%;
    background-image: url(../images/banner.png);
    background-position: center center;
    background-size: cover;
 }
 .banner-text {
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }
 .banner-text h1,
 .banner-text h2 {
    line-height: 70px;
 }
.banner-text h1 {
    margin-top: 250px;
    font-size: 62px;
    font-weight:800;
    color: #FFF;
}
.banner-text h2 {
    font-size: 35px;
    font-weight: 700;   
    color: #454545;
}
.banner-text a {
    border: 2px solid #FFF;
    padding: 15px 60px;
    margin-top: 20px;
    text-transform: uppercase;
}
a.button {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #FFF;
}
a:hover {
    font-weight: 800;
}


/**********************************
    Company
**********************************/
.company {
    height: 100vh;
}
.company-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.company-body h1,
.company-body p {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 70px;
    text-align: center;
    color: #454545;
}
.company-body h1 {
    font-size: 30px;
    font-weight: 900; 
    margin-top: 20px;
    text-transform: uppercase;
}
.company-body p {
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 20px;
}



/**********************************
    Services
**********************************/
.services {
    height: 100vh;
    background-image: url(../images/bannerServces.png);
    background-size: cover;
    background-position: center center;
    color: #fff;
}
.transparent {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.service-top {
    width: 90%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.service-top h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 300;
}
.service-top h1 span {
    font-size: 60px;
    font-weight: 600;
    color: #DF8C26;
    margin-right: 30px;
}
.service-body {
    height: calc(100vh - 210px);
    width: 70%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
}
.service-body-area1 {
    grid-column: 1 / 2;
}
.service-body-area2 {
    grid-column: 2 / 3;
}
.service-body-area3 {
    grid-column: 3 / 4;
}
.service-body-area4 {
    grid-column: 4 / 5;
}
.service-body-area1,
.service-body-area2,
.service-body-area3,
.service-body-area4,
.s-b-area1--img,
.s-b-area2--img,
.s-b-area3--img,
.s-b-area4--img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.s-b-area1--img,
.s-b-area2--img,
.s-b-area3--img,
.s-b-area4--img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #DF8C26;
}
.s-b-area1--img:hover,
.s-b-area2--img:hover,
.s-b-area3--img:hover,
.s-b-area4--img:hover {
   width: 150px;
   height: 150px;
   border-radius: 50%;
   background-color: #292929;
}
.s-b-area1--img img,
.s-b-area2--img img {
    width: 70px;
    height: auto;
}
.s-b-area3--img img {
    width: 60px;
    height: auto;
}
.s-b-area4--img img {
    width: 50px;
    height: auto;
}
.service-body h1 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
 }



 /**********************************
    Contact
**********************************/
.contact {
    height: 100vh;
    background-color: #161616;
}
.contact-top {
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-top h1 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: #e3e3e3;
    margin-bottom: 15px;
 }
 .contact-top h2 {
    font-size: 14px;
    color: #9f9f9f;
 }
.contact-body {
    height: calc(90vh - 150px);
    width: 75%;
    display: grid;
    grid-template-columns: 600px 1fr;
    grid-column-gap: 1px;
}
.contact-body-left {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
    border-radius: 5px;
}
.contact-body-left h1 {
    color: #9f9f9f;
    font-size: 14px;
    margin-left: 40px;
    margin-bottom: 20px;
    text-align: left;
}
.contact-bory-left h1,
.contact .input-area,
.contact .textarea-area {
    display: flex;
    justify-content: flex-start;
    margin-left: 40px;
}
.contact .input-area,
.contact .textarea-area {
    margin-bottom: 20px;
}
.contact input,
.contact textarea {
    width: 90%;
    border: 0;
    outline: none;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
    padding: 0px 14px;
    background-color: #161616;
    color: #6c6c6c;
}
.contact textarea {
    resize: none;
    height: 100px;
    padding: 14px;
}
 .button input {
    color: #FFF;
    width: 180px;
    text-decoration: none;
    background-color: #DF8C26;
    border-radius: 4px;
    padding: 10px 25px;
    margin-left: 40px;
    font-size: 12px;
    font-weight: 600;
}
.button input:hover {
    background-color: #ffb444;
}
.contact-body-right {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
    border-radius: 5px;
}
.contact-body-right h1,
.contact-body-right p {
    margin-left: 40px;
    font-size: 14px;
}
.contact-body-right h1 {
    margin-bottom: 40px;
    margin-right: 30px;
    line-height: 25px;
    color: #ffb444;
    font-weight: 800;
}
.contact-body-right p {
    margin-bottom: 20px;
    color: #9f9f9f;
    font-weight: 600;
}
.contact-body-right-area {
    display: grid;
    grid-template-columns: 100px 1fr;
    margin-bottom: 20px;
}
.c-b-right-area1 {
    grid-column: 1 / 2;
    margin-left: 40px;
}
.area-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #DF8C26;
}
.c-b-right-area2 h2,
.c-b-right-area2 a {
    font-size: 12px;
    font-weight: 600px;
    line-height: 18px;
    color: #6c6c6c;
    margin-right: 30px;
}
.c-b-right-area2 a {
    text-decoration: none;
}
.c-b-right-area1 img,
.c-b-right-area2 img  {
    width: 20px;
    height: auto; 
}


/**********************************
    Footer
 **********************************/
 .footer {
    height: 100vh;
    background-color: #DF8C26;
}
.footer-body {
    height: 85%;
    display: grid;
    grid-template-columns: 750px 1fr;
}
.footer-body-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: 1 / 2;
    padding-left: 50px;
}
.footer-body-left h1,
.footer-body-left p,
.f-b-right-menu h1,
.f-b-right-redes h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: #FFF;
}
.footer-body-left h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}
.footer-body-left p {
    font-size: 18px;
    color: #E7E9DF;
    line-height: 30px;
    margin-right: 40px;
}

.footer-body-right {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 30px;
}
.f-b-right-redes h1 {
    font-size: 18px;
    line-height: 30px;
}
.f-b-right-redes a {
    text-decoration: none;
    font-size: 14px;
    color: #E7E9DF;
    line-height: 25px;
}
.f-b-right-redes {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}
.right-redes-area {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}
.right-redes-area-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #292929;
    margin-right: 10px;
}
.right-redes-area-img:hover {
    background-color: #454545;
}
img.face {
    width: 8px;
    height: auto;
}
img.insta {
    width: 20px;
    height: auto;
}

.footer-bottom {
    height: 15%;
    background-color: #292929;
}
.f-bottom-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.f-bottom-area h1,
.f-bottom-area h2 {
    font-family: Arial, Helvetica, sans-serif;
    color: #9f9f9f; 
}
.f-bottom-area h1 {
    font-size: 14px;
    line-height: 25px;
}
.f-bottom-area h2 {
    font-size: 12px;
}


/**********************************
    Responsive Layout
 **********************************/
@media (min-width: 1025px) and (max-width: 1140px) {
    nav ul {
        width: 35vw;
    }
    nav a {
        margin-left: 50px; 
    }

    .banner-text h1,
    .banner-text h2 {
        line-height: 60px;
     }
    .banner-text h1 {
        font-size: 55px;
    }
    .banner-text h2 {
        font-size: 35px;
    }
    .banner-text a {
        margin-top: 10px;
    }

    .company-body h1,
    .company-body p {
        line-height: 65px;
    }
    .company-body h1 {
        font-size: 28px;
    }
    .company-body p {
        font-size: 34px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .service-top {
        width: 90%;
    }
    .service-top h1 {
        font-size: 45px;
    }
    .service-top h1 span {
        font-size: 55px;
    }
    .service-body {
        height: calc(100vh - 210px);
        width: 80%;
    }
    .service-body h1 {
        font-size: 19px;
    }
  
    .contact-body {
        grid-template-columns: 500px 1fr;
    }
    .contact-body-left h1,
    .contact-body-right h1 {
        display: none;
    }

    .footer-body-left h1 {
        font-size: 25px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    nav ul {
        width: 40vw;
    }
    nav a {
        margin-left: 50px;
        line-height: 60px;
    }

    .banner-text h1,
    .banner-text h2 {
        line-height: 60px;
     }
    .banner-text h1 {
        font-size: 45px;
    }
    .banner-text h2 {
        font-size: 35px;
    }
    .banner-text a {
        margin-top: 10px;
    }

    .company-body h1,
    .company-body p {
        line-height: 58px;
        margin-left: 40px;
        margin-right: 40px;
    }
    .company-body h1 {
        font-size: 24px;
        margin-top: 40px;
    }
    .company-body p {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .service-top {
        width: 95%;
    }
    .service-top h1 {
        font-size: 42px;
    }
    .service-top h1 span {
        font-size: 50px;
        margin-right: 20px;
    }
    .service-body {
        width: 82%;
    }
    .s-b-area1--img,
    .s-b-area2--img,
    .s-b-area3--img,
    .s-b-area4--img,
    .s-b-area1--img:hover,
    .s-b-area2--img:hover,
    .s-b-area3--img:hover,
    .s-b-area4--img:hover  {
        width: 138px;
        height: 138px;
    }
    .s-b-area1--img img,
    .s-b-area2--img img {
        width: 65px;
    }
    .s-b-area3--img img {
        width: 55px;
    }
    .s-b-area4--img img {
        width: 45px;
    }
    .service-body h1 {
        font-size: 16px;
        font-weight: 600;
     }
 
    .contact-top h1 {
        font-size: 20px;
     }
    .contact-body {
        width: 80%;
        grid-template-columns: 2fr 1fr;
    }
    .contact-body-left h1,
    .contact-body-right h1 {
        display: none;
    }

    .footer-body {
        grid-template-columns: 2fr 1fr;
    }
    .footer-body-left h1 {
        font-size: 18px;
    }
    .footer-body-left p {
        font-size: 16px;
        line-height: 30px;
        margin-right: 20px;
    }
    .f-b-right-redes h1 {
        font-size: 17px;
    }
}
@media (min-width: 426px) and (max-width: 768px) {
    nav ul {
        width: 60vw;
    }
    nav a {
        font-size: 24px;
        margin-left: 30px;
        margin-right: 5px;
        line-height: 55px;
    }
    
    .banner-text h1,
    .banner-text h2 {
        line-height: 40px;
     }
    .banner-text h1 {
        font-size: 26px;
    }
    .banner-text h2 {
        font-size: 23px;
    }
    .banner-text a {
        margin-top: 10px;
    }
    .banner-text a {
        padding: 14px 40px;
        margin-top: 10px;
    }
    a.button {
        font-size: 16px;
    }

    .company-body h1,
    .company-body p {
        line-height: 44px;
        margin-left: 40px;
        margin-right: 40px;
    }
    .company-body h1 {
        font-size: 18px;
        margin-top: 40px;
    }
    .company-body p {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .service-top {   
        height: 200px;
    }
    .service-top h1 {
        font-size: 34px;
    }
    .service-top h1 span {
        font-size: 38px;
    }
    .service-body {
        height: calc(100vh - 200px);
        width: 60%;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
    }
    .service-body-area1,
    .service-body-area3 {
        grid-column: 1 / 2;
    }
    .service-body-area2,
    .service-body-area4 {
        grid-column: 2 / 3;
    }
    .s-b-area1--img,
    .s-b-area2--img,
    .s-b-area3--img,
    .s-b-area4--img,
    .s-b-area1--img:hover,
    .s-b-area2--img:hover,
    .s-b-area3--img:hover,
    .s-b-area4--img:hover {
        width: 130px;
        height: 130px;
    }
    .s-b-area1--img img,
    .s-b-area2--img img {
        width: 60px;
    }
    .s-b-area3--img img {
        width: 50px;
    }
    .s-b-area4--img img {
        width: 40px;
    }
    .service-body h1 {
        font-size: 16px;
        margin-top: 5px;
        margin-bottom: 15px;
     }

   .contact-top {
        height: 100px;
    }
    .contact-top h1 {
        font-size: 18px;
        margin-bottom: 5px;
     }
    .contact-body {
        height: calc(90vh - 100px);
        width: 90%;
        grid-template-columns: 1fr;
    }
    .contact-top h2,
    .contact-body-left h1,
    .contact-body-right {
        display: none;
    }
    .contact .input-area,
    .contact .textarea-area,
    .button {
        display: flex;
        justify-content: center;
        margin-left: 0px;
    }
    .contact .input-area,
    .contact .textarea-area {
        margin-bottom: 20px;
    }
    .contact input,
    .contact textarea {
        width: 90%;
        font-size: 12px;
    }
     .button input {
        width: 90%;
        margin-left: 0px;
        font-size: 12px;
    } 

    .footer-body {
        height: 85%;
        grid-template-columns: 1fr;   
    }
    .footer-body-left {
        align-items: center;
        grid-column: 1 / 2;
        grid-row: 1 / 2;  
    }
    .footer-body-left h1 {
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    .footer-body-left p {
        font-size: 16px;
        color: #E7E9DF;
        line-height: 28px;
        text-align: center;
    }
    .footer-body-right {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .f-b-right-redes h1 {
        font-size: 18px;
    }
    .f-bottom-area h1 {
        font-size: 12px;
        line-height: 22px;
    }
    .f-bottom-area h2 {
        font-size: 11px;
    }
}
@media (min-width: 376px) and (max-width: 425px) {
    .header-logo img {
        width: 70px;
     }
    .menu-title {
        display: none;
    }
    .menuMobile {
        margin: 15px 24px;
    }
    nav ul {
        width: 100vw;
    }
    nav a {
        font-size: 24px;
        margin-left: 50px;
        margin-right: 5px;
        line-height: 55px;
    }

    .banner-img {
        background-image: url(../images/bannerMm.png);
     }
    .banner-text h1,
    .banner-text h2 {
        line-height: 38px;
     }
    .banner-text h1 {
        font-size: 22px;
    }
    .banner-text h2 {
        font-size: 18px;
    }
    .banner-text a {
        margin-top: 10px;
    }
    .banner-text a {
        padding: 14px 30px;
        margin-top: 10px;
    }
    a.button {
        font-size: 16px;
    }

    .company {
        height: 500px;
    }
    .company-body {
        height: 100%;
    }
    .company-body p {
        line-height: 40px;
        margin-left: 40px;
        margin-right: 40px;
    }
    .company-body h1 {
        font-size: 14px;
        margin-top: 40px;
        margin-bottom: 0px;
    }
    .company-body p {
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .service-top {   
        height: 200px;
    }
    .service-top h1 {
        font-size: 26px;
    }
    .service-top h1 span {
        font-size: 32px;
    }
    .service-body {
        height: calc(80vh - 200px);
        width: 80%;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
    }
    .service-body-area1,
    .service-body-area3 {
        grid-column: 1 / 2;
    }
    .service-body-area2,
    .service-body-area4 {
        grid-column: 2 / 3;
    }
    .s-b-area1--img,
    .s-b-area2--img,
    .s-b-area3--img,
    .s-b-area4--img,
    .s-b-area1--img:hover,
    .s-b-area2--img:hover,
    .s-b-area3--img:hover,
    .s-b-area4--img:hover {
        width: 110px;
        height: 110px;
    }
    .s-b-area1--img img,
    .s-b-area2--img img {
        width: 55px;
    }
    .s-b-area3--img img {
        width: 45px;
    }
    .s-b-area4--img img {
        width: 35px;
    }
    .service-body h1 {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 20px;
     }

   .contact-top {
        height: 100px;
    }
    .contact-top h1 {
        font-size: 18px;
        margin-bottom: 5px;
     }
    .contact-body {
        height: calc(80vh - 100px);
        width: 90%;
        grid-template-columns: 1fr;
    }
    .contact-top h2,
    .contact-body-left h1,
    .contact-body-right {
        display: none;
    }
    .contact .input-area,
    .contact .textarea-area,
    .button {
        display: flex;
        justify-content: center;
        margin-left: 0px;
    }
    .contact .input-area,
    .contact .textarea-area {
        margin-bottom: 20px;
    }
    .contact input,
    .contact textarea,
    .button input {
        width: 85%;
        margin-left: 0px;
        font-size: 12px;
    } 

    .footer-body {
        height: 85%;
        grid-template-columns: 1fr;   
    }
    .footer-body-left {
        align-items: center;
        grid-column: 1 / 2;
        grid-row: 1 / 2;  
    }
    .footer-body-left h1 {
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    .footer-body-left p {
        font-size: 14px;
        color: #E7E9DF;
        line-height: 28px;
        text-align: center;
    }
    .footer-body-right {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .f-b-right-redes h1 {
        font-size: 16px;
    }
    .f-bottom-area h1 {
        font-size: 10px;
        margin-left: 5px;
        margin-right: 5px;
        line-height: 18px;
    }
    .f-bottom-area h2 {
        font-size: 10px;
    }
}
@media (min-width: 321px) and (max-width: 375px) {
    .header-logo img {
        width: 70px;
     }
    .menu-title {
        display: none;
    }
    .menuMobile {
        margin: 10px 18px;
    }
    nav ul {
        width: 100vw;
    }
    nav a {
        font-size: 22px;
        margin-left: 50px;
        margin-right: 5px;
        line-height: 50px;
    }

    .banner-img {
        background-image: url(../images/bannerMm.png);
     }
    .banner-text h1,
    .banner-text h2 {
        line-height: 38px;
     }
    .banner-text h1 {
        font-size: 20px;
    }
    .banner-text h2 {
        font-size: 18px;
    }
    .banner-text a {
        margin-top: 10px;
    }
    .banner-text a {
        padding: 14px 30px;
        margin-top: 10px;
    }
    a.button {
        font-size: 14px;
    }

    .company {
        height: 530px;
    }
    .company-body h1,
    .company-body p {
        line-height: 36px;
        margin-left: 40px;
        margin-right: 40px;
    }
    .company-body h1 {
        font-size: 14px;
        margin-top: 40px;
    }
    .company-body p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .service-top {   
        height: 200px;
    }
    .service-top h1 {
        font-size: 24px;
    }
    .service-top h1 span {
        font-size: 30px;
    }
    .service-body {
        height: calc(80vh - 200px);
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
    }
    .service-body-area1,
    .service-body-area3 {
        grid-column: 1 / 2;
    }
    .service-body-area2,
    .service-body-area4 {
        grid-column: 2 / 3;
    }
    .s-b-area1--img,
    .s-b-area2--img,
    .s-b-area3--img,
    .s-b-area4--img,
    .s-b-area1--img:hover,
    .s-b-area2--img:hover,
    .s-b-area3--img:hover,
    .s-b-area4--img:hover {
        width: 100px;
        height: 100px;
    }
    .s-b-area1--img img,
    .s-b-area2--img img {
        width: 50px;
    }
    .s-b-area3--img img {
        width: 40px;
    }
    .s-b-area4--img img {
        width: 35px;
    }
    .service-body h1 {
        font-size: 14px;
        margin-top: 5px;
        margin-bottom: 15px;
     }

    .contact {
        height: 500px;
    }
    .contact-top {
        height: 100px;
    }
    .contact-top h1 {
        font-size: 16px;
        margin-bottom: 5px;
     }
    .contact-body {
        height: calc(80vh - 100px);
        width: 90%;
        grid-template-columns: 1fr;
    }
    .contact-top h2,
    .contact-body-left h1,
    .contact-body-right {
        display: none;
    }
    .contact .input-area,
    .contact .textarea-area,
    .button {
        display: flex;
        justify-content: center;
        margin-left: 0px;
    }
    .contact .input-area,
    .contact .textarea-area {
        margin-bottom: 20px;
    }
    .contact input,
    .contact textarea {
        width: 85%;
        font-size: 12px;
    }
    .contact input {
        height: 38px;
    }
    .contact textarea {
        height: 80%;
    }
     .button input {
        width: 85%;
        margin-left: 0px;
        font-size: 12px;
    } 

    .footer-body {
        height: 85%;
        grid-template-columns: 1fr;   
    }
    .footer-body-left {
        align-items: center;
        grid-column: 1 / 2;
        grid-row: 1 / 2;  
    }
    .footer-body-left h1 {
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    .footer-body-left p {
        font-size: 14px;
        color: #E7E9DF;
        line-height: 24px;
        text-align: center;
    }
    .footer-body-right {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .f-b-right-redes h1 {
        font-size: 14px;
    }
    .f-bottom-area h1 {
        font-size: 9px;
        line-height: 18px;
    }
    .f-bottom-area h2 {
        font-size: 9px;
    }
}
@media (max-width: 320px) {
    .header-logo img {
        width: 70px;
     }
    .menu-title {
        display: none;
    }
    .menuMobile {
        margin: 10px 18px;
    }
    nav ul {
        width: 100vw;
    }
    nav a {
        font-size: 22px;
        margin-left: 50px;
        margin-right: 5px;
        line-height: 50px;
    }

    .banner-img {
        background-image: url(../images/bannerMm.png);
     }
    .banner-text h1,
    .banner-text h2 {
        line-height: 38px;
     }
    .banner-text h1 {
        font-size: 18px;
    }
    .banner-text h2 {
        font-size: 16px;
    }
    .banner-text a {
        margin-top: 10px;
    }
    .banner-text a {
        padding: 14px 30px;
        margin-top: 10px;
    }
    a.button {
        font-size: 14px;
    }

    .company {
        height: 480px;
    }
    .company-body h1,
    .company-body p {
        line-height: 30px;
        margin-left: 40px;
        margin-right: 40px;
    }
    .company-body h1 {
        font-size: 14px;
        margin-top: 40px;
    }
    .company-body p {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .service-top {   
        height: 200px;
    }
    .service-top h1 {
        font-size: 20px;
    }
    .service-top h1 span {
        font-size: 26px;
    }
    .service-body {
        height: calc(80vh - 200px);
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
    }
    .service-body-area1,
    .service-body-area3 {
        grid-column: 1 / 2;
    }
    .service-body-area2,
    .service-body-area4 {
        grid-column: 2 / 3;
    }
    .s-b-area1--img,
    .s-b-area2--img,
    .s-b-area3--img,
    .s-b-area4--img,
    .s-b-area1--img:hover,
    .s-b-area2--img:hover,
    .s-b-area3--img:hover,
    .s-b-area4--img:hover {
        width: 100px;
        height: 100px;
    }
    .s-b-area1--img img,
    .s-b-area2--img img {
        width: 50px;
    }
    .s-b-area3--img img {
        width: 40px;
    }
    .s-b-area4--img img {
        width: 30px;
    }
    .service-body h1 {
        font-size: 12px;
        margin-top: 5px;
        margin-bottom: 25px;
     }

    .contact {
        height: 480px;
    }
    .contact-top {
        height: 100px;
    }
   .contact-top {
        height: 100px;
    }
    .contact-top h1 {
        font-size: 16px;
        margin-bottom: 5px;
     }
    .contact-body {
        height: calc(80vh - 100px);
        width: 90%;
        grid-template-columns: 1fr;
    }
    .contact-top h2,
    .contact-body-left h1,
    .contact-body-right {
        display: none;
    }
    .contact .input-area,
    .contact .textarea-area,
    .button {
        display: flex;
        justify-content: center;
        margin-left: 0px;
    }
    .contact .input-area,
    .contact .textarea-area {
        margin-bottom: 20px;
    }
    .contact input,
    .contact textarea {
        width: 85%;
        font-size: 12px;
    }
    .contact input {
        height: 38px;
    }
    .contact textarea {
        height: 80%;
    }
     .button input {
        width: 85%;
        margin-left: 0px;
        font-size: 12px;
    } 

    .footer-body {
        height: 85%;
        grid-template-columns: 1fr;   
    }
    .footer-body-left {
        align-items: center;
        grid-column: 1 / 2;
        grid-row: 1 / 2;  
    }
    .footer-body-left h1 {
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    .footer-body-left p {
        font-size: 14px;
        color: #E7E9DF;
        line-height: 24px;
        text-align: center;
    }
    .footer-body-right {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .f-b-right-redes h1 {
        font-size: 14px;
    }
    .f-bottom-area h1 {
        font-size: 9px;
        line-height: 18px;
    }
    .f-bottom-area h2 {
        font-size: 9px;
    }
}





/**********************************
Css - area externa 
Services
 **********************************/
 .services-page {
    background-image: url(../images/fundoserv1.jpg);
    background-position: center;
    background-size: cover;
    background-color: #f5f5f5;
    height: 100vh;   
    font-family: 'Montserrat', 'Open Sans', Helvetica, sans-serif;
 }
 .services-page .transparent-page {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
 }

 .services-page-top {
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
 }
 .services-page-top h1 {
    font-size: 70px;
    font-weight: 500;
    text-transform: uppercase;
 }
 .services-page-top h1 span {
    font-size: 90px;
    font-weight: 700;
    color: #DF8C26;
 }

.services-center {
    display: grid;
    grid-template-columns: 1fr;
}

.black {
    background-color: #000;
    color: #6c6c6c;
}
.write {
    background-color: #FFF;
    color: #000;
}

.services-c-black,
.services-c-write {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px; 
}

.services-c-black {
    grid-column: 1 / 2;
}
.services-c-write {
    grid-column: 1/ 2;
}

.services-c-black-title,
.services-c-write-title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.services-c-black-body,
.services-c-write-body {
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
}


/**********************************
Services Responsive 
 **********************************/
 @media (min-width: 1441px) {
    .services-page-top h1 {
        font-size: 100px;
     }
     .services-page-top h1 span {
        font-size: 140px;
     }

    .services-c-black-title,
    .services-c-write-title {
        font-size: 60px;
        margin-top: 60px;
        margin-bottom: 50px;
    }
    .services-c-black-body,
    .services-c-write-body {
        font-size: 35px;
        line-height: 60px;
        margin-bottom: 60px;
    }
    
 }
 @media (min-width: 1024px) and (max-width:1139px) {
    .services-page-top h1 {
        font-size: 55px;
     }
     .services-page-top h1 span {
        font-size: 75px;
     }
        
    .services-c-black,
    .services-c-write {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px; 
    }

    .services-c-black-title,
    .services-c-write-title {
        font-size: 30px;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .services-c-black-body,
    .services-c-write-body {
        font-size: 25px;
        line-height: 40px;
        margin-bottom: 40px;
        margin-left: 15px;
        margin-right: 15px;
    }
 }
 @media (min-width: 800px) and (max-width:1023px) {
    .services-page-top h1 {
        font-size: 35px;
     }
     .services-page-top h1 span {
        font-size: 55px;
     }
      
     .services-c-black,
     .services-c-write {
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         padding: 20px; 
     }

    .services-c-black-title,
    .services-c-write-title {
        font-size: 25px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .services-c-black-body,
    .services-c-write-body {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 30px;
        margin-left: 5px;
        margin-right: 5px;
    }
 }
 @media (min-width:450px) and (max-width:799px) {
    .services-page-top h1 {
        font-size: 25px;
     }
     .services-page-top h1 span {
        font-size: 30px;
     }
     
     .services-c-black,
     .services-c-write {
         padding: 10px; 
     }
    .services-c-black-title,
    .services-c-write-title {
        font-size: 14px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .services-c-black-body,
    .services-c-write-body {
        font-size: 14px;
        line-height: 30px;
        margin-bottom: 25px;
        margin-left: 5px;
        margin-right: 5px;
    }
 }
 @media (max-width:449px) {
    .services-page-top h1 {
        font-size: 20px;
     }
     .services-page-top h1 span {
        font-size: 30px;
     }

     .services-c-black,
     .services-c-write {
         padding: 15px; 
     }            
    .services-c-black-title,
    .services-c-write-title {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .services-c-black-body,
    .services-c-write-body {
        font-size: 12px;
        line-height: 25px;
        margin-bottom: 15px;
        margin-left: 5px;
        margin-right: 5px;
    }
 }