* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #f4f4f4;
}
.container {
    max-width: 1340px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

/* ////// HEADER ///// */

header {
background: #2c2c2c;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo img {
    object-fit: cover;
    width: 100%;
    max-width: 150px;
    height: auto;
    padding-top: 5px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 50px;
}
.nav-list {
    list-style: none;
}
.nav-link {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: white;
};


.header-icons {
    display: flex;
    align-items: center; 
    gap: 20px;
}
.header-icons a {
    color: white;
    font-size: 18px;
    margin-left: 20px;
}
.header-menu {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 22px;
    display: none;
}
.headClose {
    padding: 10px 10px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 28px;
    float: right;
}
.hidden {
    display: none;
}
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
}
.header-modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(33, 33, 33);
    height: 100%;
    max-width: 260px;
    width: 100%;
    z-index: 99;
}
.modal-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 30px;
}
.modal-title a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: white;
    line-height: 50px;
    border-bottom: 2px solid #555;
    font-size: 20px;
}
@media screen and (max-width:770px) {
    .header-nav {
        display: none;
    }
    .whats {
        display: none;
    }

    .header-menu {
        display: block;
    }
}
@media screen and (max-width:425px) {
    .header-logo img {
        margin-left: 25px;
        max-width: 120px;
        width: 100%;
    }
    .header-modal {
        max-width: 220px;
    }
}


/* ///////// MAIN /////  */

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
}
.main-nav a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: #3399ff;
}
.main-nav p {
    font-family: 'Open Sans', sans-serif;
}
.basic-title {
    margin-bottom: 20px;
}
.basic-title h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    font-weight: 800;

}
.basic-title p {
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
}
.basic-map iframe {
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
}
@media screen and (max-width:425px) {
    br {
        display: none;
    }
}


/* ///////////////  section /////////////// */




section {
    background: #2c2c2c;
}
.section {
    background-image: url('/imgs/arrow2.png');
    background-repeat: no-repeat;
    background-position: center top;
}
.section-title {
    padding: 80px 0px;
}
.section-title h1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: white;
    font-size: 62px;
    margin-bottom: 10px;
}
.section-title p {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    color: white;
    font-size: 22px;
    margin-bottom: 40px;
}
.button-flex {
    display: flex;
    justify-content: center;
}

.btn {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    position: relative;
    width: 320px;
    text-align: center;
    height: 50px;
    font-weight: bold;
    background: #3399ff;
    border: none;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    border-radius: 55px;
}

span {
    background: #0069d9;
    border-radius: 55px;
    height: 100%;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}

.btn:hover span {
    width: 100%;
}


.portfolio-modal7 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}
.portModal7 {
    max-width: 700px;
    width: 100%;
    border-radius: 6px;
}
.modal-text7 {
    padding: 40px 50px;
}
.modal-text7 h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}
.modal-text7 p {
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}
.modal-input7 {
    padding: 0px 50px;
    margin-top: -30px;
}
.inputBox7 {
    position: relative;
    margin: 20px 0;
    border-bottom: 1px solid grey;
    margin-bottom: 20px;
}
.inputBox7 input {
    width: 100%;
    height: 30px;
    color: white;
    background: transparent;
    border: none !important;
    outline: none;
}
input::placeholder {
    font-family: 'Open Sans', sans-serif;
    color: grey;
    font-size: 16px;
}

.inputCheck7 {
    display:flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
}
.inputCheck7 input {
    width: 16px;
    height: 16px;
}
.modal-input7 button {
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 0 0.3rem 0.1rem rgba(0, 0, 0, .2);
    width: 160px;
    height: 50px;
    border-radius: 50px;
    background-color: #3399ff;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
    margin-bottom: 20px;
}
.modal-input7 p {
    font-family: 'Open Sans', sans-serif;
}

.check-title7 a {
    font-family: 'Open Sans', sans-serif;
}
.check-title7 a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: #3399ff ;
}


@media screen and (max-width:500px) {
    .section-title h1 {
        font-size: 42px;
    }
    .section-title p {
        font-size: 18px;
    }
    .section-title button {
        max-width: 280px;
        font-size: 16px;
    }
    .check-title7 a {
        font-size: 9px !important;
    }
    .check-title7 a {
        font-size: 9px !important;
    }
}
@media screen and (max-width:425px) {
    .section-title h1 {
        font-size: 38px;
    }
    .section-title p {
        font-size: 16px;
    }
    .portfolio-modal7 {
        padding: 0;
    }
    .modal-text7 {
        padding: 0px;
        margin-top: 40px;
    }
    .modal-input7 {
        padding: 0;
        margin-top: 30px;
    }
    .portModal7 {
        height: 350px;
    }
}




/* /////// FOOTER ////////   */


footer {
    background: #212121;
    padding: 40px;
}
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1400px;
    margin-bottom: 40px;
}


.footer-logo img {
    object-fit: cover;
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}
.footer-logo p {
    font-family: 'Open Sans', sans-serif;
}

.footer-main {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-top: -40px;
}
.footer-main a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: white;
    font-size: 18px;
}
.footer-finish {
    display: flex;
    flex-direction: column;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: white;
}
.footer-finish a {
    text-decoration: none;
    color: #3399ff;
}
.finish-title {
    margin-bottom: 20px;
    text-align: right;
    padding-top: 40px;
}
.finish-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}
.finish-icons a {
    color: grey;
    font-size: 18px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1400px;
}
.footer-bottom p {
    font-family: 'Open Sans', sans-serif;
    color: white;
    font-size: 16px;
}


@media screen and (max-width:1150px) {
    .footer-main {
        gap: 50px;
        margin-left: 50px;
    }
}

@media screen and (max-width:900px) {
    .footer-main {
        margin-left: 0;
        margin-top: 50px;
    }
    .footer {
        display: block;
    }
    .footer-finish {
        text-align-last: left;
    }
    .footer-icons {
        float: left !important;
        text-align-last: left !important;
    }
}

@media screen and (max-width:600px) {
    .footer-main {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 20px; 
        margin-bottom: 10px;
    }
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 10px;
    }
}
@media screen and (max-width:430px) {
        .finish-icons {
            display: flex;
            justify-content: start;
        }
        .finish-title {
            text-align: left;
        }
        .null {
            display: none;
        }

}
