/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== COLORES ==========*/
    /*Color modo HSL(tono, saturación, luz)*/
    /* --first-color: hsl(18, 95%, 55%); #00A859 */
    --first-color:  #00A859;
    /* --second-color: hsl(42, 98%, 52%); #FCA91B */
    --second-color: #FCA91B;
    --first-gradient:  #00A859;
    /* --first-gradient: linear-gradient(90deg,
            hsl(18, 95%, 55%),
            hsl(18, 98%, 64%)); */
    --title-color: hsl(255, 12%, 12%);
    --text-color: hsl(225, 12%, 24%);
    --text-color-light: hsl(255, 4%, 70%);
    --body-color: hsl(0, 0%, 100%);
    --container-color: hsl(0, 0%, 100%);
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(255, 20%, 10%);
    --gray-border: hsl(255, 6%, 90%);
    --black-border: hsl(255, 10%, 20%);

    /*========== Fuente y tipografía ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --big-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;

    /*========== Peso de la fuente ==========*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Tipografía responsiva ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --big-font-size: 3.5rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
    }
}

/*========== BASE ==========*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*========== REUSABLE CSS CLASSES ==========*/
.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding-block: 5rem 1rem;
}

.section__title,
.section__subtitle {
    text-align: center;
}

.section__title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

.section__subtitle {
    display: block;
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--second-color);
    margin-bottom: .5rem;
}

.main {
    overflow: hidden;
}

/*========== HEADER & NAV ==========*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: background-color .4s;
}

.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    column-gap: .25rem;
    height: 70px;
    position: relative;
}

.nav__logo-overlay {
    display: flex;
    align-items: center;
    column-gap: .25rem;
    height: 70px;
    position:absolute;
}

.header + .nav__logo {
    position: relative;
}

.header + .nav__logo-overlay {
    position: absolute;
}

.nav__logo span {
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    transition: color .4s;
}

.nav__logo i {
    color: var(--first-color);
    font-size: 1.5rem;
}

.nav__toggle,
.nav__close{
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
    transition: color .4s;
}
.nav__account {
    display: none;
    font-size: 2rem;
    color: var(--white-color);
    cursor: pointer;
    transition: color .4s;
}
.home-nav {
    display: none;
}
/* Navegación para dispositivos móviles */

@media screen and (max-width: 1150px) {
    .nav__menu {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: var(--black-color);
        width: 80%;
        height: 100%;
        padding: 7.5rem 3.5rem 0;
        border-left: 2px solid var(--black-border);
        transition: left .4s;
    }
}

.nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
}

.nav__link {
    color: var(--text-color-light);
    font-weight: var(--font-semi-bold);
    transition: color .4s;
}

.nav__link:hover {
    color: var(--first-color);
}

.nav__close {
    position: absolute;
    top: 1rem;
    /* right: 1.5rem; */
}

.nav_submenu {
    color: var(--text-color-light);
    font-weight: var(--font-semi-bold);
    transition: color .4s;
}

.nav_submenu:hover {
    color: var(--first-color);
}

.nav_submenu:hover .submenu {
    display: block !important;
}

.clien {
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
}
.clien:hover {
    color: var(--second-color);
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #34495e;
    min-width: 200px;
    z-index: 1000;
}

/* Estilo de los items del submenú */
.submenu li a {
    padding: 10px 20px;
    border-bottom: 1px solid #2c3e50; /* Línea divisoria */
}

.submenu li:last-child a {
    border-bottom: none;
}

/* Efecto hover para items del submenú */
.submenu li a:hover {
    background: #1abc9c; /* Color al pasar el mouse (ajusta) */
}

/* mostrar menu */
.show-menu {
    left: 0;
}

/* Cambiar el fondo del encabezado */
.bg-header {
    background-color: var(--body-color);
    box-shadow: 0 4px 16px hsla(255, 90%, 8%, .1);

    & + .nav__logo{
        position: absolute;
    }

    & + .nav__logo-overlay {
        position: relative;
    }
}

.bg-header .nav__logo span,
.bg-header .nav__toggle,
.bg-header .nav__account {
    color: var(--title-color);
}

/* Active link Primay */ 
.active-link {
    color: var(--second-color);
}

.button-nav .active-link{
    color: var(--primary-color);
}

/*========== HOME ==========*/
.home {
    position: relative;
    background-color: var(--black-color);
}

.home__container {
    position: relative;
    row-gap: 3rem;
    padding-block: 2.5rem 6rem;
}

.home__content {
    row-gap: 2.5rem;
}

.home__data {
    text-align: center;
}

.home__title {
    color: var(--white-color);
    font-size: var(--big-font-size);
    font-weight: var(--font-semi-bold);
    padding: 1rem 2rem;
    transition: box-shadow .4s;
}

.home__description {
    margin-bottom: 2.5rem;
    color: var(--text-color-light);
}

.home__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.home__info {
    display: flex;
    justify-content: center;
    column-gap: 2rem;
}

.home__info-title {
    color: var(--second-color);
    font-size: var(--big-font-size);
    font-weight: var(--font-bold);
    margin-bottom: .5rem;
}

.home__info-description {
    font-size: var(--small-font-size);
    color: var(--white-color);
}

.home__images {
    position: relative;
    justify-content: center;
}

.home__img-1 {
    width: 250px;
    margin-left: 3.5rem;
}

.home__img-2 {
    width: 150px;
    border: 5px solid var(--black-color);
    position: absolute;
    left: 0;
    bottom: -3.5rem;
}

.home__lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    /* animation: flash 3s ease-in-out infinite;  Añade esta línea */
    mix-blend-mode: screen; /* Mezcla con el fondo */
    animation: gentleFlash 4s ease-in-out infinite;
    /* animation: flash 2s ease-in-out forwards; */
}


@keyframes gentleFlash {
0%, 100% {
    opacity: 0.8;
    filter: brightness(1);
}
50% {
    opacity: 1;
    filter: brightness(2.5);
}
}

/* Animación de destello blanco */
@keyframes flash {
    0%, 100% {
        filter: brightness(1); /* Estado normal */
    }
    50% {
        filter: brightness(3); /* Brillo intenso (blanco puro) */
    }
}

@media screen and (min-width: 1150px) {
    .home__lines {
        object-position: center;
    }
}

/*========== BUTTON ==========*/
.button-nav {
    display: inline-flex;
    background: var(--second-color);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    padding: 1rem;
    transition: box-shadow .4s;
}

.button {
    display: inline-flex;
    background: var(--second-color);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    padding: 1rem 2rem;
    transition: box-shadow .4s;
}

.button:hover {
    box-shadow: 0 8px 32px hsla(18, 95%, 55%, .3);
    color: var(--white-color);
}

.button__link {
    display: flex;
    align-items: center;
    column-gap: .25rem;
    /* color: var(--first-color); */
    background: var(--second-color);
    color: var(--white-color);
    padding: 1rem 2rem;
}

.button__link span {
    font-weight: var(--font-semi-bold);
}

.button__link i {
    font-size: 1.5rem;
    transition: transform .4s;
}

.button__link:hover i {
    transform: translateX(.25rem);
}

/*========== ABOUT ==========*/
.about__container {
    row-gap: 8rem;
}

.about__data {
    text-align: center;
}

.about__description {
    margin-bottom: 2rem;
}

.about__list {
    text-align: initial;
    grid-template-columns: repeat(2, 130px);
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about__list-item {
    display: flex;
    column-gap: .5rem;
    color: var(--title-color);
}

.about__list-item i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.about__images {
    position: relative;
    justify-self: center;
}

.about__img-1 {
    width: 200px;
    border: 5px solid var(--body-color);
    position: absolute;
    top: -5rem;
    left: 6rem;
}

.about__img-2 {
    width: 250px;
    margin-right: 2.5rem;
}


/*========== COURSERS ==========*/
.courses__container {
    /* row-gap: 3rem;
    padding-block: 1.5rem 3rem; */

    text-align: initial;
    grid-template-columns: repeat(2, 330px);
    /* justify-content: center; */
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.courses__img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    justify-self: center;
}

.courses__data {
    grid-template-columns: repeat(2, 330px);
    row-gap: 1rem;
}

.courses__card {
    background-color: var(--container-color);
    border: 2px solid var(--gray-border);
    padding: 1rem 1rem;
    /* text-align: center; */
    transition: border-color .4s;
}

.courses__card:hover {
    border-color: var(--first-color);
}

/* .coursers__container {
    row-gap: 8rem;
}

.coursers__data {
    text-align: center;
} */

.courses__title {
    font-size: 1rem;
}
.courses__date {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--second-color);
    margin-bottom: .5rem;
}

.courses__description {
    margin-bottom: 2rem;
}

.courses__list {
    text-align: initial;
    grid-template-columns: repeat(2, 130px);
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.courses__list-item {
    display: flex;
    column-gap: .5rem;
    color: var(--title-color);
}

.courses__list-item i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.courses__images {
    position: relative;
    justify-self: center;
}

.courses__img-1 {
    width: 200px;
    border: 5px solid var(--body-color);
    position: absolute;
    top: -5rem;
    left: 6rem;
}

.courses__img-2 {
    width: 250px;
    margin-right: 2.5rem;
}

/*========== SERVICES ==========*/

.services {
    position: relative;
}

.services__container {
    position: relative;
    row-gap: 3rem;
}

.services__data {
    text-align: center;
}

.services__description {
    margin-bottom: 2rem;
}

.services__card {
    width: 330px;
    background-color: var(--container-color);
    border: 2px solid var(--gray-border);
    padding: 1rem;
    transition: border-color .4s;
}

.services__card:hover {
    border-color: var(--first-color);
}

.services__icon {
    width: 50px;
    height: 50px;
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    /* margin-bottom: 1.5rem; */
    position: relative;
    justify-items: center;
    left: 40%;
}

.services__title {
    font-size: var(--h2-font-size);
    margin-bottom: .5rem;
    color: var(--first-color);
}
.services__title:hover {
    color: var(--second-color);
}

.services__card p i, .courses__card p i{
    color: var(--first-color);
}

.services-container-title{
    display: flex;
    width: 220px;
    height: 60px;
}

.services__shape {
    position: absolute;
    width: 100%;
    height: 245px;
    background-color: var(--black-color);
    bottom: 0;
    left: 0;
}

/* class swiper */

.swiper {
    margin-inline: initial;
    padding-bottom: 4rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

.swiper-button-prev,
.swiper-button-next {
    top: initial;
    bottom: 0;
    width: 32px;
    height: 32px;
    background-color: var(--container-color);
    box-shadow: 0 2px 8px hsla(255, 8%, 4%, .1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-color-light);
}

.swiper-button-prev {
    left: calc(50% - 3rem);
}

.swiper-button-next {
    right: calc(50% - 3rem);
}

/*========== customers ==========*/

.customers {
    background-color: var(--black-color);
}

.customers .section__title {
    color: var(--white-color);
}

.customers__container {
    padding-block: 1.5rem 3rem;
}

.customers__card {
    background-color: var(--container-color);
    border: 2px solid transparent;
    background-clip: content-box;
    transition: border-color .4s;
}

.customers__card:hover {
    border-color: var(--first-color);
}

.customers__img{
    width: 100%;
    height: 180px;
    object-fit: contain;
    background-color: var(--black-color);
}
.customers__data {
    padding: 1.5rem 1rem 3rem;
}

.customers__title {
    font-size: var(--h2-font-size);
    margin-block: .5rem;
}

.customers__date {
    display: block;
    font-weight: var(--font-medium);
    color: var(--title-color);
    margin-bottom: 1.5rem;
}

/*========== CONTACT ==========*/
.contact__container {
    row-gap: 3rem;
    padding-block: 1.5rem 3rem;
}

.contact__img {
    width: 320px;
    justify-self: center;
}

.contact__data {
    grid-template-columns: 230px;
    justify-content: center;
    row-gap: 1.5rem;
}

.contact__card {
    background-color: var(--container-color);
    border: 2px solid var(--gray-border);
    padding: 1.5rem 2rem;
    text-align: center;
    transition: border-color .4s;
}

.contact__card:hover {
    border-color: var(--first-color);
}

.contact__icon {
    width: 48px;
    height: 48px;
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
}

.contact__title {
    font-size: var(--h2-font-size);
    margin-bottom: .5rem;
}

.contact__info {
    font-style: normal;
}

.contact__social {
    display: flex;
    justify-content: center;
    column-gap: 1rem;
}

.contact__social-link {
    font-size: 1.5rem;
    color: var(--first-color);
    transition: transform .4s;
}

.contact__social-link:hover {
    transform: translateY(-.25rem);
}

/*========== FOOTER ==========*/
.footer {
    background-color: var(--black-color);
    color: var(--text-color-light);
    padding-block: 3.5rem 3rem;
}

.footer__container {
    row-gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--black-border);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}

.footer__logo span {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
}

.footer__logo i {
    color: var(--first-color);
    font-size: 1.5rem;
}

.footer__description {
    margin-block: 1rem;
}

.footer__email,
.footer__info {
    font-style: normal;
}

.footer__content {
    grid-template-columns: repeat(2, max-content);
    gap: 4rem 3rem;
}

.footer__title {
    font-size: var(--h3-font-size);
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer__link,
.footer__list {
    display: grid;
    row-gap: .5rem;
}

.footer__link {
    color: var(--text-color-light);
    transition: color .4s;
}

.footer__link:hover {
    color: var(--first-color);
}

.footer__social {
    display: flex;
    column-gap: 1rem;
}

.footer__social-link {
    font-size: 1.5rem;
    color: var(--first-color);
    transition: transform .4s;
}

.footer__social-link:hover {
    transform: translateY(-.25rem)
}

.footer__copy {
    display: block;
    text-align: center;
    font-size: var(--small-font-size);
    color: var(--first-color);
    padding: 10px;
    /* margin-top: 4rem; */
}

/*========== SCROLL BAR ==========*/
::-webkit-scrollbar {
    width: .6rem;
    background-color: hsl(255, 5%, 75%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(255, 5%, 65%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(255, 5%, 55%);
}

/*========== SCROLL UP ==========*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: var(--body-color);
    box-shadow: 0 4px 16px hsla(255, 90%, 8%, .15);
    color: var(--title-color);
    display: inline-flex;
    padding: 6px;
    font-size: 1.25rem;
    z-index: var(--z-tooltip);
    transition: bottom .4s, transform .4s;
}

.scrollup:hover {
    transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll {
    bottom: 1rem;
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    left: 10px;
    bottom: 0.5rem;
    background-color: #25d366;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.slider-customers {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    width: calc(200px * 14); /* Ancho total basado en cantidad de slides */
    animation: scroll 30s linear infinite;
}

.slide {
    width: 300px;
    height: 180px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
        
.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(80%); */
    transition: filter 0.3s ease;
}

.slide img:hover {
    filter: grayscale(0%) opacity(100%);
}
        
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7)); /* Mueve la mitad del ancho total */
    }
}

/* Responsive */
@media (max-width: 992px) {
    .slider-track {
        width: calc(160px * 14);
        animation: scroll 25s linear infinite;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-160px * 7));
        }
    }
    
    .slide {
        /* width: 150px; */
        height: 90px;
        margin: 0 5px;
    }
}
        
@media (max-width: 768px) {
    .slider-track {
        width: calc(130px * 14);
        animation: scroll 20s linear infinite;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-130px * 7));
        }
    }
    
    .slide {
        width: 220px;
        height: 120px;
        padding: 10px;
    }

}



/*========== BREAKPOINTS ==========*/
/* Para dispositivos pequeños */
@media screen and (max-width: 360px) {
    .nav__logo {
        height: 50px;
    }
    .nav__account {
        display: block;
    }
    .container {
        margin-inline: 1rem;
    }

    .section__title {
        font-size: 1.25rem;
    }

    .home__title {
        font-size: 1.75rem;
    }

    .home__buttons {
        flex-direction: column;
    }

    .home__img-1 {
        width: 200px;
        margin-left: 1.5rem;
    }

    .about__list {
        grid-template-columns: repeat(1, 200px);
    }

    .services__container {
        grid-template-columns: repeat(1, 330px);
    }

    .services__data{
        grid-template-columns: repeat(1, 330px);
    }

    .courses__img {
        width: 220px;
        height: 140px;
    }

    .courses__container {
        grid-template-columns: repeat(1, 330px);
    }

    .courses__data{
        grid-template-columns: repeat(1, 330px);
    }

    .about__img-1 {
        width: 150px;
        left: 4rem;
    }

    .about__img-2 {
        width: 200px;
        margin-right: 0;
    }

    .footer__content {
        grid-template-columns: repeat(1, max-content);
    }
}

/* Para dispositivos medianos */

@media screen and (min-width: 540px) {
    .nav__menu {
        width: 50%;
    }
    .home__container,
    .about__container,
    .services__container,
    .courses__container,
    .customers__container,
    .contact__container {
        grid-template-columns: 360px;
        justify-content: center;
    }
    .courses__container {
        grid-template-columns: repeat(2, 430px);
    }

    .courses__data{
        grid-template-columns: repeat(2, 430px);
    }

    .footer__content {
        grid-template-columns: repeat(3, max-content);
    }
}

@media screen and (min-width: 768px) {
    .nav__menu {
        width: 60%;
    }

    .customers__container {
        grid-template-columns: repeat(2, 330px);
    }

    .courses__container {
        grid-template-columns: repeat(2, 330px);
    }

    .contact__data {
        grid-template-columns: repeat(2, 240px);
    }

    .footer__container {
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
    }
}

@media only screen and (max-width: 1149px) {
    .nav__logo {
        height: 50px;
    }
    .nav__account {
        display: block;
    }
}

/* Para dispositivos grandes */

@media screen and (min-width: 1150px) {

    .container {
        margin-inline: auto;
    }

    .section {
        padding-block: 7rem 2rem;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__menu {
        width: initial;
    }

    .nav__list {
        flex-direction: row;
        align-items: center;
        column-gap: 2rem;
        padding-left: 50px;
    }

    .bg-header .nav__link {
        color: var(--text-color);
    }

    .bg-header .active-link,
    .bg-header .nav__link:hover {
        color: var(--second-color);
    }

    .bg-header .button,
    .bg-header .button:hover {
        color: var(--white-color);
    }

    .home__container {
        grid-template-columns: 475px 550px;
        column-gap: 6rem;
        align-items: flex-start;
        padding-top: 5.5rem;
    }

    .home__content {
        row-gap: 4.5rem;
    }

    .home__data {
        text-align: initial;
    }

    .home__description {
        margin-bottom: 3rem;
    }

    .home__buttons {
        justify-content: initial;
        column-gap: 3rem;
    }

    .home__info {
        justify-content: initial;
        column-gap: 3rem;
    }

    .home__info-description {
        font-size: var(--normal-font-size);
    }

    .home__img-1 {
        width: 550px;
        margin-left: 0;
    }

    .home__img-2 {
        width: 350px;
        border-width: 10px;
        left: -7rem;
        bottom: -8rem;
    }

    .home__lines{
        object-position: center;
    }

    .about__container{
        grid-template-columns: repeat(2, 480px);
        column-gap: 9rem;
        padding-block: 9rem 2rem;
    }

    .about__images{
        order: -1;
    }

    .about__img-1{
        width: 370px;
        border-width: 10px;
        top: -9rem;
        left: 11rem;
    }

    .about__img-2{
        width: 470px;
    }

    .about__data,
    .about__data :is(.section__title, .section__subtitle){
        text-align: initial;
    }

    .about__list{
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 3.5rem;
    }

    .services__container{
        grid-template-columns: initial;
        row-gap: 5rem;
        padding-bottom: 4.5rem;
    }

    .services__data{
        display: grid;
        grid-template-columns: 415px 370px max-content;
        justify-content: space-between;
        align-items: center;
    }

    .services__data,
    .services__description :is(.section__title, .section__subtitle){
        text-align: initial;
    }

    .services__data .section__title{
        margin-bottom: 0;
    }

    .services__swiper{
        max-width: 1100px;
    }

    .services__card{
        width: 348px;
        border-width: 3px;
        padding: 1.8rem;
    }

    .services__shape{
        height: 330px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        bottom: 3rem;
    }

    /* .courses__data{
        display: grid;
        grid-template-columns: 415px 370px max-content;
        justify-content: space-between;
        align-items: center;
    } */
    .courses__container{
        grid-template-columns: repeat(2, 540px);
    }

    .courses__data{
        display: grid;
        grid-template-columns: repeat(2, 540px);
        /* justify-content: space-between; */
        /* align-items: center; */

    } 
    .customers__container{
        grid-template-columns: repeat(3, 350px);
        column-gap: 2rem;
        padding-block: 5rem 4rem;
    }

    .customers__card{
        border-width: 3px;
    }

    .customers__data{
        padding: 2rem 1.5rem 4rem;
    }

    .contact :is(.section__title, .section__subtitle){
        text-align: initial;
    }

    .contact__container{
        grid-template-columns: 530px 515px;
        justify-content: initial;
        align-items: flex-start;
        column-gap: 3.5rem;
        padding-block: 3.5rem 4rem;
    }

    .contact__img{
        width: 530px;
    }

    .contact__data{
        gap: 2rem;
    }

    .contact__card{
        border-width: 3px;
    }

    .contact__title{
        font-size: var(--h3-font-size);
    }

    .footer{
        padding-block: 4.5rem 3rem;
    }

    .footer__container{
        padding-bottom: 6rem;
    }

    .footer__content{
        column-gap: 7rem;
    }

    .footer__description{
        margin-block-start: 1.5rem;
    }

    .footer__title{
        margin-bottom: 1.5rem;
    }

    .footer__links, 
    .footer__list{
        display: grid;
        row-gap: 1rem;
    }

    .scrollup{
        right: 3rem;
    }   
}