
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background:  rgb(48, 48, 48) !important;
}
.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: 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;
    }
}

/* /////// 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 {
    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(0, 0, 0, 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%);
}
.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;
}

.check-title a {
    font-family: 'Open Sans', sans-serif;
}
.check-title 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 a {
        font-size: 9px !important;
    }
    .check-title a {
        font-size: 9px !important;
    }

}













/* ////////////////////// ARticle ////////////////// */


.article-header img {
    max-width: 900px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.article-header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 29px;
    color: white;
}
.article-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: white;
}
.article-title {
    padding: 80px 0;
}

.article-box {
    padding: 50px;
}

.article-main {
    margin-bottom: 100px;
    
}
.article-main img {
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
    object-fit: cover;
    display: block;
}


.article-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.article-icons {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 100px;
    max-width: 450px;
    padding: 0 50px;
    width: 100%;
    box-shadow: 5px 5px 30px 5px rgb(0, 0, 0);
    cursor: pointer;
    background-color: transparent;
    border: none;
    text-decoration: none;
}
.article-icons span {
    background: rgb(133, 131, 131);
    border-radius: 55px;
    height: 0;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: .5s ease;
    color: white;
}
.article-icons:hover {
    color: white !important;
}

.article-title {
    display: none;
}

.article-icons:hover span {
    height: 100%;
}

.article-icons img {
    max-width: 200px;
    width: 100%;
    margin-left: -40px;
}
.article-icons p {
    font-family: 'Open Sans', sans-serif;
    color: white;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
@media screen and (max-width:768px) {
    .article-box {
        display: block;
    }
    .article-icons {
        display: block;
        padding: 0 !important;
        margin-bottom: 50px;
    }
}

@media screen and (max-width:500px) {
    .article-title  {
        padding: 50px 20px;
    }
}
@media screen and (max-width:425px) {
    .article-header h1 {
        font-size: 1.5rem;
        text-align: center;
    }
    .article-header p {
        position: relative;
        top: -10px;
        text-align: center;
        font-size: 16px;
    }
    .article-main img {
        margin-bottom: 10px;
    }
    .article-icons {
        display: flex;
        justify-content: center;
        flex-direction: column;
        max-width: 300px;
    }
    .article-icons img {
        max-width: 100px;
        width: 100%;
    }
    .article-title {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .article-icons img {
        margin-left: 0;
    }
}


/* ///////////////// 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;
        }

}
