@import './assets/styles/styles.css';

/* Configuraciones iniciales */

html, body {
    background-color: var(--background-general-color);
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: white;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-1E);
    border-radius: 20px;
    border: 3px solid white;
}

* {
    box-sizing: border-box;
}

/*HEADER SECTION*/

header {
    width: 100%;
    height: 18vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.top-space-dark-header-container {
    width: 100%;
    height: 40%;
    background-color: var(--color-1E);
}

.content-header-container {
    width: 85%;
    height: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#open-menu-option-btn {
    display: none;
}

.img-logo-container {
    width: 12%;
    height: 100%;
    display: flex;
    align-items: center;

    img {
        width: 100%;
    }
}

.nav-links-container {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    outline: none;

    a {
        color: black;
        text-decoration: none;
        font-size: 16px;
        font-family: var(--main-font);
        font-weight: 300;
        transition: color 0.2s ease-in-out, font-weight 0.2s ease-in-out;
    }

    a:hover {
        color: grey;
        font-weight: 500;
    }
}

.social-networks-container {
    width: 12%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

    i {
        font-size: 24px;
        color: black;
    }
}

.mobile-menu {
    display: none;
}

#openMenu-btn {
    display: none;
}

/*WELCOME SECTION*/

.welcome-section {
    width: 100%;
    height: 105vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-banner-container {
    width: 97%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    border-radius: 20px;
    padding: 0 8%;
    background-image: url('./assets/img/welcome-banner-img.jpg');
    background-size: cover;
    background-position: center;     
    background-repeat: no-repeat;
}

.slogan-card-container {
    width: 60%;
    height: 38%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    -webkit-animation: scale-up-bl 0.8s cubic-bezier(0.770, 0.000, 0.175, 1.000) reverse both;
	        animation: scale-up-bl 0.8s cubic-bezier(0.770, 0.000, 0.175, 1.000) reverse both;

    h1 {
        width: 90%;
        font-size: 75px;
        font-weight: 200;
        font-family: var(--main-font);
        color: white;
        margin: 0;
        line-height: 1;
        position: absolute;
    }

    span {
        font-weight: 600;
    }
}

@-webkit-keyframes scale-up-bl {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
  }
}
@keyframes scale-up-bl {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
  }
}

/*ABOUT US SECTION*/

.aboutUs-section {
    width: 100%;
    height: 120vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    h1 {
        font-size: 15px;
        font-weight: 500;
        font-family: var(--main-font);
        margin: 40px 0;
    }
}

.aboutUs-general-container {
    width: 97%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    position: relative;
}

.img-services-container {
    width: 50%;
    height: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    img {
        width: 80%;
        height: 85%;
        border-radius: 20px;
        object-fit: cover;
        object-position: center;
    }

    h2 {
        width: 80%;
        font-size: 32px;
        font-family: var(--main-font);
        font-weight: 600;
        color: var(--color-59);
        margin: 0;
        text-align: start;
    }
}

.services-container {
    width: 90%;
    height: 25%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    left: 5%;
    bottom: 7%;
    background-color: var(--color-D9);
    border-radius: 20px;
    box-shadow: 0px 3px 5px 0.1px rgba(0, 0, 0, 0.25);
}

.service {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 10px;

    h3 {
        font-size: 20px;
        font-family: var(--main-font);
        font-weight: 600;
        color: var(--color-88);
        margin: 0;
    }

    p {
        width: 100%;
        font-size: 15px;
        font-family: var(--main-font);
        font-weight: 400;
        color: var(--color-5D);
        margin: 0;
    }
}

.text-aboutUs-contact-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: var(--color-59);
    border-radius: 20px 20px 0 0;
    padding: 3% 5%;
    gap: 3%;

    h2 {
        font-size: 32px;
        font-family: var(--main-font);
        font-weight: 250;
        color: white;
        margin: 0;
    }

    span {
        font-weight: 500;
    }

    img {
        width: 30%;
    }
    
}

.text-container {
    width: 96%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    
    p {
        font-size: 15px;
        font-family: var(--main-font);
        font-weight: 200;
        color: white;
        margin: 0;
    }

    span {
        font-weight: 500;
    }
}

.toContact-btn {
    width: 30%;
    height: 40px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-color: var(--color-btn);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

    p {
        font-size: 16px;
        font-family: var(--main-font);
        font-weight: 500;
        color: white;
        margin: 0;
        transition: color 0.3s ease;
    }
}

.toContact-btn:hover {
    background-color: rgb(220, 220, 220);
    box-shadow: inset 0px 2px 5px 0.1px rgba(0, 0, 0, 0.5);

    p {

        color: grey;
    }
}

#aboutUs-img-mobile {
    display: none;
}

.services-mobile-container {
    display: none;
}

.title-service-mobile-container {
    display: none;
}

/*PROJECTS SECTION*/

.projects-section {
    width: 100%;
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-general-container {
    width: 97%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 20px;
    background-color: var(--color-36);
    margin-top: -35px;
    z-index: 2;
    padding: 20px 0;

    h1 {
        font-size: 15px;
        font-weight: 500;
        font-family: var(--main-font);
        color: var(--color-AE);
        margin: 0;
    }
}


.grid-container {
    width: 90%;
    height: 75%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 1rem;
}

.project-item {
    width: 90%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    position: relative;
    justify-self: center;
}

.img-project {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 15px;
}

.info-project {
    width: 85%;
    height: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    border-radius: 15px;
    background-color: var(--color-DB);

    h3 {
        font-size: 20px;
        font-family: var(--main-font);
        font-weight: 700;
        color: var(--color-6D);
        margin: 0;
    }

    p {
        width: 90%;
        font-size: 12px;
        font-family: var(--main-font);
        font-weight: 200;
        color: black;
        margin: 0;
        line-height: 1.1;
        text-align: center;
        text-overflow: hidden;
    }
}

.divisor-line {
    width: 80%;
    height: 1.5px;
    background-color: var(--color-6D);
}

.link-project {
    display: flex;
    align-items: center;
    text-decoration: none;
    outline: none;
    gap: 10px;

    p {
        font-size: 15px;
        font-weight: 600;
        margin: 0;
        color: var(--color-6D);
        transition: color 0.3s ease-in-out;
    }

    i {
        color: var(--color-6D);
        margin-bottom: -3px;
        transition: color 0.3s ease-in-out;
    }
}

.link-project:hover {

    p, i {
        color: var(--color-6Dh);
    }
}

.pagination {
    width: 15%;
    height: 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
}

.pagination-btn {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: var(--color-6D);
    border: none;
    outline: none;
    color: white;
    font-family: var(--main-font);
    font-weight: 400;
    cursor: pointer;
}

#currentPage {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--main-font);
    color: var(--color-6D);
}

.projects-scroll-wrapper {
    display: none;
}

/*CONTACT SECTION*/

.contact-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;

    h1 {
        font-size: 15px;
        font-weight: 500;
        font-family: var(--main-font);
        margin: 40px 0;
    }
}

.contact-general-container {
    width: 85%;
    height: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 20px 20px 0px 0px;
    background-image: url(./assets/img/contact-background-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 5%;
}

.contact-general-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2; 
    border-radius: 20px 20px 0px 0px;  
}

.slogan-info-contact {
    width: 55%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    z-index: 3;

    h1 {
        font-size: 40px;
        font-family: var(--main-font);
        font-weight: 200;
        color: white;
    }

    span {
        font-weight: 600;
    }
}

.info-contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;

    p {
        font-size: 20px;
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        margin: 0;
    }
}

.info-contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    a {
        font-size: 15px;
        font-family: var(--main-font);
        font-weight: 200;
        color: white;
        margin: 0;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.2s ease-in-out;
    }

    i {
        align-self: start;
        color: white;
        transition: color 0.2s ease-in-out;
    }
}

.info-contact-item:hover {
    a, i {
        color: var(--color-D0);
    }
}

.contact-form-container {
    width: 45%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: var(--color-36);
    z-index: 3;
    box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.2),
    inset 0 5px 8px rgba(0, 0, 0, 0.15);

    h2 {
        width: 80%;
        font-size: 22px;
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        text-align: start;
    }
}

.form-contact {
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;

    input {
        width: 100%;
        height: 12%;
        background-color: white;
        border: none;
        border-radius: 15px;
        box-shadow: inset 0px 2px 5px 0.1px rgba(0, 0, 0, 0.5);
        outline: none;
        padding-left: 10px;
        font-family: var(--main-font);
        font-size: 0.9rem;
    }

    input::placeholder {
        color: var(--color-D0);
        font-family: var(--main-font);
    }

    textarea {
        width: 100%;
        height: 40%;
        background-color: white;
        border: none;
        border-radius: 15px;
        box-shadow: inset 0px 2px 5px 0.1px rgba(0, 0, 0, 0.5);
        resize: none;
        outline: none;
        padding: 10px 10px;
        font-family: var(--main-font);
        font-size: 0.9rem;
    }

    textarea::placeholder {

        color: var(--color-D0);
        font-family: var(--main-font);
    }
}

.send-form-btn {
    width: 40%;
    height: 40px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-color: var(--color-btn);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

    p {
        font-size: 16px;
        font-family: var(--main-font);
        font-weight: 500;
        color: white;
        margin: 0;
        transition: color 0.3s ease;
    }
}

.send-form-btn:hover {
    background-color: rgb(220, 220, 220);
    box-shadow: inset 0px 2px 5px 0.1px rgba(0, 0, 0, 0.5);

    p {

        color: grey;
    }
}

/*FOOTER SECTION*/

footer {
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: center;
}

.footer-general-container {
    width: 97%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--color-1E);
    border-radius: 20px 20px 0 0;
}

.footer-container {
    width: 87.5%;
    display: flex;
    justify-content: space-between;
}

.logo-footer-container {
    height: 100%;
    width: 20%;
    display: flex;
    align-items: start;
}

.img-footer-container {
    width: 100%;
    height: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 15px 15px;
    background-color: white;

    img {
        width: 85%;
    }
}

.nav-footer-links-container {
    width: 15%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-top: 7%;
    gap: 15px;

    h4 {
        font-size: 15px;
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        margin: 0;
    }

    a {
        font-size: 15px;
        font-family: var(--main-font);
        font-weight: 200;
        text-decoration: none;
        color: white;
        transition: color 0.2s ease-in-out, font-weight 0.2s ease-in-out;
    }

    a:hover {
        color: var(--color-D0)
    }
}

.contacto-info-footer-container {
    width: 18%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-top: 7%;
    gap: 15px;

    h4 {
        font-size: 15px;
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        margin: 0;
    }

    i {
        align-self: start;
    }
}

.social-networks-footer-container {
    width: 15%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-top: 7%;
    gap: 15px;

    h4 {
        font-size: 15px;
        font-family: var(--main-font);
        font-weight: 400;
        color: white;
        margin: 0;
    }

    p {
        font-size: 15px;
        font-family: var(--main-font);
        font-weight: 200;
        color: white;
        margin: 0;
    }
}


.social-networks-links-container {
    display: flex;
    flex-direction: row;
    gap: 15px;

    a {
        text-decoration: none;
        color: white;
    }
}

.info-footer-mobile-container {
    display: none;
}

@media (max-width: 840px) and (orientation: portrait) {

    /*HEADER SECTION*/

    .content-header-container {
        width: 90%;
    }


    .img-logo-container {
        width: 40%;
    }

    .nav-links-container {
        display: none;
    }

    .social-networks-container {
        display: none;
    }


    /*menu desplegable*/

    #openMenu-btn {
        display: block;
        font-size: 28px;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 9;
    }

    .overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    /* Bloquear scroll cuando se abre el menú */
    body.no-scroll {
        position: fixed;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 55%;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: 0px 5px 10px 0.2px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        padding: 1rem;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 8%;

        i {
            font-size: 35px;
        }
    }

    .menu-link-option-container {
        width: 100%;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 35px;
    }

    .link-option-mobile {
        text-decoration: none;
        font-size: 18px;
        font-family: var(--main-font);
        font-weight: 350;
        color: #333;
    }

    /* Cuando se activa el menú */
    .mobile-menu.open {
        right: 0;
    }

    /*WELCOME SECTION*/

    .welcome-section {
        height: 32vh;
    }

    .slogan-card-container {
        h1 {
            font-size: 22px;
        }
    }

    /*ABOUT US SECTION*/


    .aboutUs-section {
        height: 140vh;

        h1 {
            margin: 20px 0;
        }
    }

    .aboutUs-general-container {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .img-services-container {
        display: none;
    }

    .text-aboutUs-contact-container {
        width: 100%;
        height: 75%;
        padding: 10%;
        border-radius: 20px;
        justify-content: space-between;

        h2 {
            font-size: 20px;
        }

        img {
            width: 35%;
        }
    }

    .text-container {
        p {
            font-size: 12px;
        }
    }

    .toContact-btn {
        width: 45%;
    }

    #aboutUs-img-mobile {
        width: 100%;
        display: flex;
        border-radius: 20px;
    }

    .title-service-mobile-container {
        width: 100%;
        height: 25%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;

        h2 {
            font-size: 20px;
            font-family: var(--main-font);
            font-weight: 500;
            color: var(--color-59);
            margin: 0;
            text-align: start;
        }
    }

    .services-scroll-wrapper {
        width: 100vw;
        height: 90%;
        overflow-x: auto;
    }

    .services-scroll-wrapper::-webkit-scrollbar {
        width: 80%;
        height: 8px;
    }

    .services-scroll-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }

    .services-scroll-wrapper::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 4px;
    }

    .services-scroll-wrapper::-webkit-scrollbar-thumb:hover {
        background-color: #888;
    }

    .services-mobile-container {
        width: auto;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: start;
        gap: 40px;
        padding: 0 20px; 
        overflow-x: auto; 
    }

    .service-mobile {
        min-width: 90vw;
        height: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 10%;
        gap: 15px;
        background-color: antiquewhite;
        background-color: var(--color-D9);
        border-radius: 20px;
        box-shadow: 0px 3px 5px 0.1px rgba(0, 0, 0, 0.25);
        
        h3 {
            font-size: 16px;
            font-family: var(--main-font);
            font-weight: 600;
            color: var(--color-88);
            margin: 0;
        }

        p {
            width: 100%;
            font-size: 12px;
            font-family: var(--main-font);
            font-weight: 400;
            color: var(--color-5D);
            margin: 0;
        }
    }

    /*PROJECTS SECTION*/

    .projects-section {
        height: 35vh;
    }

    .projects-general-container {
        background: none;
        margin: 0;
        overflow: auto;
        width: 100%;
        justify-content: space-between;

        h1 {
            color: var(--color-59);
        }
    }

    .grid-container {
        display: none;
    }

    .pagination {
        display: none;
    }

    .projects-scroll-wrapper {
        display: flex;
        width: 100vw;
        height: 85%;
        overflow-x: auto;
    }
    
    .projects-container-mobile {
        width: auto;
        height: 100%;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 30px;
        padding: 0 70px;
    }

    .project-card {
        width: 65vw;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: center;
        position: relative;
        border-radius: 20px;
    }

    .img-project {
        width: 65vw;
        height: 170px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 2px 4px 8px 0.1px rgba(0, 0, 0, 0.2);
        border-radius: 20px;
    }

    .info-project {
        height: 30%;
        border-radius: 20px;
    }


    /*CONTACT SECTION*/

    .contact-section {
        height: 110vh;
        h1 {
            margin: 20px 0;
        }
    }

    .contact-general-container {
        width: 90%;
        height: 95%;
        flex-direction: column;
        justify-content: center;
        padding: 0 10px;
    }

    .slogan-info-contact {
        width: 90%;
        height: 35%;
        justify-content: start;

        h1 {
            font-size: 28px;
        }
    }

    .info-contact-container {
        p {
            font-size: 16px;
        }
    }

    .info-contact-item {
        a {
            font-size: 12px;
        }
    }

    .contact-form-container {
        height: 60%;
        width: 95%;

        h2 {
            font-size: 20px;
        }
    }

    .form-contact {
        width: 90%;

        input {
            border-radius: 10px;
        }

        textarea {
            height: 30%;
            border-radius: 10px;
        }
    }

    .send-form-btn {
        width: 55%;
        height: 12%;
    }

    /*FOOTER SECTION*/

    footer {
        height: 20vh;
    }

    .footer-general-container {
        border-radius: 10px 10px 0 0;
    }

    .footer-container {
        width: 93%;
    }

    .logo-footer-container {
        width: 40%;
    }

    .nav-footer-links-container, .social-networks-footer-container, .contacto-info-footer-container {
        display: none;
    }

    .img-footer-container {
        height: 50%;
        border-radius: 0px 0px 5px 5px;

        img {
            width: 75%;
        }
    }


    .info-footer-mobile-container {
        height: 75%;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
        padding-top: 5%;

        h3 {
            font-size: 12px;
            font-family: var(--main-font);
            font-weight: 500;
            margin: 0;
            color: white;
        }

        p {
            font-size: 10px;
            font-family: var(--main-font);
            font-weight: 100;
            color: white;
            margin: 0;
        }

        a {
            font-family: var(--main-font);
            font-weight: 300;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-D0);
        }
    }

    .info-contact-footer-container {
        display: flex;
        flex-direction: column;
        align-self: start;
        gap: 5px;
    }

    .social-networks-footer-mobile {
        display: flex;
        flex-direction: row;
        gap: 10px;

        a {
            text-decoration: none;
        }

        i {
            font-size: 20px;
            color: white;
        }
    }
}

@media (max-width: 1024px) and (max-height: 768px) and (orientation: landscape) {

    /*HEADER SECTION*/
    
    header {
        height: 30vh;
    }

    .nav-links-container {
        width: 45%;
    }

    .img-logo-container {
        width: 15%;
    }

    .social-networks-container {
        width: 18%;

        i {
            font-size: 20px;
        }
    }

    /*WELCOME SECTION*/

    .slogan-card-container {
        h1 {
            font-size: 40px;
        }
    }

    /*ABOUT US SECTION*/

    .aboutUs-section {
        height: 160vh;
    }

    .img-services-container {
        height: 55%;

        img {
            height: 75%;
        }

        h2 {
            font-size: 22px;
        }
    }

    .text-aboutUs-contact-container {
        h2 {
            font-size: 16px;
        }

        p {
            font-size: 10px;
        }
    }

    .text-container {
        gap: 10px;
    }

    .toContact-btn {
        width: 35%;
        height: 8%;
    }

    .services-container {
        height: 28%;
    }

    .service {
        height: 60%;

        h3 {
            font-size: 15px;
        }

        p {
            font-size: 10px;
        }
    }

    /*PROJECT SECTION*/

    .projects-section {
        height: 120vh;
    }

    .project-item {
        min-height: 150px;
    }

    .img-project {
        height: 125px;
    }

    .info-project {

        h3 {
            font-size: 14px;
        }

        p {
            font-size: 8px;
        }

        i {
            font-size: 10px;
        }
    }

    .pagination {
        width: 25%;
    }

    .pagination-btn {
        font-size: 10px;
    }

    /*CONTACT SECTION*/

    .contact-section {
        height: 120vh;
    }

    .slogan-info-contact {
        justify-content: start;
        height: 85%;
        gap: 30px;

        h1 {
            font-size: 25px;
            margin: 0;
        }
    }

    .info-contact-container {
        p {
            font-size: 15px;
        }
    }

    .info-contact-item {
        a {
            font-size: 12px;
        }
    }

    .contact-form-container {
        width: 50%;

        h2 {
            font-size: 18px;
        }
    }

    .form-contact {
        height: 75%;

        input {
            border-radius: 10px;
        }

        textarea {
            border-radius: 10px;
            height: 25%;
        }

        input::placeholder, textarea::placeholder  {
            font-size: 10px;
        }
    }

    .send-form-btn {
        width: 55%;
        height: 15%;
    }

    /*FOOTER SECTION*/

    footer {
        height: 50vh;
    }

    .nav-footer-links-container {
        padding: 4% 0;
    }

    .contacto-info-footer-container {
        width: 28%;
        padding: 4% 0;
    }

    .social-networks-footer-container {
        width: 24%;
        padding: 4% 0;
    }
}