* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #f4f4f4;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-thumb {
    background: #00c2a8;
    border-radius: 5px;
    height: 100px;
}
.container {
    max-width: 1340px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

/* ////// HEADER ///// */

.loading {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00c2a8;
    }
    .disppear{
        animation: vanish 2s forwards;
    }

    @keyframes vanish {
    100% {
        opacity: 1;
        visibility: hidden;
    }
    }

    .line-box {
        background: white;
        width: 80px;
        height: 80px;
        border-radius: 45%;
        animation: loading 3s forwards;
    }

.img {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: fixed;
    max-width: 50px;
    width: 100%;
    margin-top: -2px;
    /* animation: loading 3s forwards; */
}


@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}



header {
background: #00c2a8;
background: #00c2a8;
}
.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: 999;
}
.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;
    }
}
.whats {
    font-size: 22px !important;
    margin-top: 13px !important;
}



/* //////////// NAV /////////// */
.site-nav {
    background: #6f6f6f;
    margin-bottom: 50px;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    animation: slide-in 3s ease-in-out;
}
@keyframes slide-in {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0%);
    }
}
.nav-logo img {
    max-width: 300px;
    width: 100%;
}

.nav-texts h1 {
    font-family: 'Roboto', sans-serif;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}





.nav-texts p {
    font-family: 'Open Sans', sans-serif;
    color: white;
    text-align: center;
    line-height: 30px;
    margin-bottom: 20px;
}


/* /////// SECTION ////// */
/*  */




section {
    background: #6f6f6f;
}
.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 {
    background-color: var(--background-color);
    color: #222;
    padding: .5em 1em;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    --background-color: #3399ff ;
    --accent-color: #0069d9 ;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    width: 320px;
    height: 50px;
    border: none;
    color: #fff;
    overflow: hidden;
    border-radius: 55px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.btn-cirle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--accent-color);
    transform: scaleY(0);
    transform-origin:bottom ;
    transition: transform 300ms ease-in-out;
}


.btn-cirle {
    z-index: 1;
}

.btn-cirle:hover,
.btn-cirle:focus {
    color: #fff;
}
.btn-cirle:hover::before,
.btn-cirle:hover::before {
    transform: scaleY(1);
}


.hidded {
    display: none;
}
.blur {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(154, 26, 26, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1;
}
.portfolio-modal {
    display: flex;
    align-items: center;
    justify-content: center;
}
.portModal {
    max-width: 700px;
    width: 100%;
    background-color: #fff;
    height: 400px;
    z-index: 999;
    border-radius: 6px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
@media screen and (max-width:500px) {
    .portfolio-modal {
        max-width: 300px !important;
        width: 100%;
    }
}
.modal-text {
    padding: 40px 50px;
}
.modal-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: black;
    margin-bottom: 10px;
}
.modal-text p {
    color: black;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}
.modal-input {
    padding: 0px 50px;
    margin-top: -30px;
}
.inputBox {
    position: relative;
    margin: 20px 0;
    border-bottom: 1px solid grey;
    margin-bottom: 20px;
}
.inputBox input {
    width: 100%;
    height: 30px;
    color: black;
    background: transparent;
    border: none !important;
    outline: none;
}
input::placeholder {
    font-family: 'Open Sans', sans-serif;
    color: grey;
    font-size: 16px;
}

.inputCheck {
    display:flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
}
.inputCheck input {
    width: 16px;
    height: 16px;
}
.modal-input 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;
    margin-bottom: 20px;
}
.modal-input p {
    font-family: 'Open Sans', sans-serif;
}
.modal-input17 button {
    margin-bottom: 20px;
}
.modal-input17 p {
    font-family: 'Open Sans', sans-serif;
}

.check-title span {
    font-family: 'Open Sans', sans-serif;
}
.check-title a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: #3399ff;
}

/* ///////////////////////// */
.hidded17 {
    display: none;
}
.blur17 {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1;
}
.portfolio-modal17 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.portModal17 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 700px;
    width: 100%;
    background-color: #fff;
    height: 400px;
    z-index: 999;
    border-radius: 6px;
    
}
.modal-text17 {
    padding: 40px 50px;
}
.modal-text17 h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: black;
    margin-bottom: 10px;
}
.modal-text17 p {
    color: black;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}
.modal-input17 {
    padding: 0px 50px;
    margin-top: -30px;
}
.inputBox17 {
    position: relative;
    margin: 20px 0;
    border-bottom: 1px solid grey;
    margin-bottom: 20px;
}
.inputBox17 input {
    width: 100%;
    height: 30px;
    color: black;
    background: transparent;
    border: none !important;
    outline: none;
}
input::placeholder {
    font-family: 'Open Sans', sans-serif;
    color: grey;
    font-size: 16px;
}

.inputCheck17 {
    display:flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
}
.inputCheck17 input {
    width: 16px;
    height: 16px;
}
.modal-input17 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: #111b25;
    border: none;
    font-size: 18px;
    color: white;
}

.check-title17 span {
    font-family: 'Open Sans', sans-serif;
}
.check-title17 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;
    }
}
@media screen and (max-width:425px) {
    .section-title h1 {
        font-size: 38px;
    }
    .section-title p {
        font-size: 16px;
    }
    .check-title p {
        font-size: 9px !important;
    }
    .check-title a {
        font-size: 9px !important;
    }

}


/* //////// MAIN //////  *//*  */

main {
    margin-bottom: 100px;
}
main h1 {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    margin-bottom: 30px;
    font-size: 46px;
}

.main-box {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.box-imgs {
    display: flex;
    gap: 8px;
    /* -webkit-flex-count:2; */
    /* -moz-flex-count:2; */
    /* column-count:2;  */
    /* -webkit-column-gap:8px; */
    /* -moz-column-gap:8px; */
    /* column-gap:8px; */
    /* gap: 10px; */
    /* columns: 2 300px; */
}
.box-imgs1 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 60%;
    height: 100%;
}
.box-imgs2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 60%;
    height: 100%;
}
.box-imgs-blok img {
    width: 100%;
    height: auto;
    background: white;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin-bottom: 6px;
}

@media (max-width:600px){
    .box-imgs{
        display: inline-block;
    }
    .box-imgs1 {
        max-width: 100%;
    }
    .box-imgs2 {
        max-width: 100%;
    }
}

.box-imgs-blok {
    position: relative;
}

.imgs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.box-imgs-blok:hover .imgs-overlay {
    height: 100%;
}

.imgs-overlay h2 {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    color: white;
    font-size: 42px;
    padding: 30px;
}
@media screen and (max-width:425px) {
    .imgs-overlay h2 {
        font-size: 36px;
    }
}

.show-more {
    position: relative;
    cursor: pointer;
    background: transparent;
    border: 1px solid #2c2c2c;
    border-radius: 50px;
    padding: 12px 30px;
    margin-top: 20px;
    transition: all 3s;
    color: #333;
    font-size: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow: hidden;
}

.show-more div {
    background: #2c2c2c;
    border-radius: 55px;
    height: 0;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: .5s ease;
}
.show-more:hover {
    color: white;

}
.show-more:hover div   {
    height: 100%;
}

.box-imgs1 .box-imgs-blok:nth-child(n + 6) {
    display: none;
}
.box-imgs1 .box-imgs-blok.is-visible {
    display: flex;
}
.box-imgs2 .box-imgs-blok:nth-child(n + 6) {
    display: none;
}
.box-imgs2 .box-imgs-blok.is-visible2 {
    display: flex;
}
.hide-button {
    display: none;
}
/* /////// FOOTER ////////   */


footer {
    background: #00c2a8;
    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: #092036;
}
.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;
        }
}

.btn-fix {
    width: 200px;
    height: 40px;
    background-color: #0a1e32;
    border: none;
    color: white;
    border-radius: 55px;
    cursor: pointer;
}