:root {
    --primary-color: #0065b2;
    --secondary-color: #191349;
    --white-ltrs: #edf2f4;
    --gray-ltrs: rgb(151, 151, 151);
    /* CSS HEX */
    --green-blue: #0065b2ff;
    --russian-violet: #191349ff;
    --antiflash-white: #edf2f4ff;
    --feldgrau: #4b6858ff;
    --drab-dark-brown: #4d4730ff;
}


/* For browsers that support clamp  */

@supports (font-size: clamp(1rem, 1vi, 1rem)) {
     :root {
        --fs-sm: clamp(0.71rem, 0.15vi + 0.67rem, 0.8rem);
        --fs-base: clamp(1rem, 0.22vi + 0.95rem, 1.13rem);
        --fs-md: clamp(1.41rem, 0.31vi + 1.34rem, 1.59rem);
        --fs-lg: clamp(2rem, 0.44vi + 1.9rem, 2.25rem);
        --fs-xl: clamp(2.83rem, 0.62vi + 2.69rem, 3.18rem);
        --fs-xxl: clamp(4rem, 0.87vi + 3.8rem, 4.5rem);
    }
}


/* For browsers that don't support clamp */

@supports not (font-size: clamp(1rem, 1vi, 1rem)) {
     :root {
        --fs-sm: 0.71rem;
        --fs-base: 1rem;
        --fs-md: 1.41rem;
        --fs-lg: 2rem;
        --fs-xl: 2.83rem;
        --fs-xxl: 4rem;
    }
    @media screen and (min-width: 1280px) {
         :root {
            --fs-sm: 0.8rem;
            --fs-base: 1.13rem;
            --fs-md: 1.59rem;
            --fs-lg: 2.25rem;
            --fs-xl: 3.18rem;
            --fs-xxl: 4.5rem;
        }
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
}


/* widths*/

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}


/* paddings */

.pb-2 {
    padding-bottom: 2%;
}

.mg-2 {
    margin-bottom: 2%;
}


/* Structure */

.Header {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-height: 106vh;
}

.Nav-f {
    /* display: flex; */
    width: 80%;
    z-index: 10;
}

.Nav-logo {
    width: 14%;
    min-width: 120px;
}

.Nav-btns-cont {
    list-style: none;
    display: flex;
    gap: 1em;
    align-items: center;
    background-color: var(--primary-color);
}

.Nav-btns {
    padding: 3.7% 2.9%;
}

.Nav-btns a {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--white-ltrs);
    font-size: var(--fs-base);
}

.Nav-btns:hover,
.Nav-btns:hover a {
    background-color: var(--white-ltrs);
    color: var(--feldgrau);
    transition: 0.4s;
}

.upper-nav {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.nav-top {
    padding-right: 10px;
}

.lower-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.idioms {
    text-align: center;
    display: none;
    list-style: none;
    gap: 0 10px;
}

.idioms-cont {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 0 10px;
}

.upper-nav-items {
    display: flex;
    flex-direction: column;
}

.vrt-line {
    width: 1px;
    height: 50px;
    background-color: #000000;
}

.Banner-1 {
    width: 100%;
    aspect-ratio: 7/4;
    transform: translate(0px, -6.5%);
    background-image: linear-gradient( to right, var(--primary-color), transparent 50%), url("../imgs/banner-placeholder.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.Banner-son {
    position: absolute;
    top: 30%;
    left: 10%;
    display: flex;
    flex-direction: column;
}


/* letters by color */

.ltrs-prim {
    color: var(--primary-color);
    /* text-shadow: var(--feldgrau) 1px 1px 1px; */
}

.ltrs-bl {
    color: var(--white-ltrs);
    text-shadow: var(--secondary-color) 1px 1px 2px;
}

.ltrs-drk {
    color: var(--russian-violet);
    /* text-shadow: var(--feldgrau) 1px 1px 2px; */
}


/* letters by size */

.ltrs-sm {
    font-size: var(--fs-sm);
}

.ltrs-base {
    font-size: var(--fs-base);
    line-height: 1.4rem;
}

.ltrs-md {
    font-size: var(--fs-md);
}

.ltrs-lg {
    font-size: var(--fs-lg);
    line-break: loose;
}

.ltrs-h1 {
    font-size: var(--fs-xl);
    line-break: loose;
}

.ltrs-bold {
    font-weight: bold;
}

.center {
    text-align: center;
}


/* letters spacing */

.ltrs-spc {
    padding-right: .5rem;
}

p {
    margin: 0;
}


/* letters format */

.a {
    text-decoration: none;
}

.a:hover {
    color: var(--primary-color);
    transition: .4s;
}

.Btn-1 {
    display: flex;
    height: 45px;
    width: fit-content;
    padding: 0 4%;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    text-decoration: none;
    color: var(--white-ltrs);
    font-size: var(--fs-base);
}

.Btn-1:hover {
    background-color: var(--white-ltrs);
    color: var(--feldgrau);
    transition: 0.4s;
}

.Cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.solo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-1-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tl-1-cont p:nth-child(2) {
    padding-top: 2.5%;
}

.Services-cont {
    padding: 4% 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
}

.Services-cont-intern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 1.5rem;
}

.Services-cont-grd-4 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.Services-cont-grd-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
}

.Serv-card {
    background-color: var(--antiflash-white);
    box-shadow: #829d8e96 2px 4px 9px;
    padding: 1.3rem;
}

.icon-servs {
    width: 25%;
    aspect-ratio: 1/1;
    object-fit: contain;
}


/* About */

.about {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 5%;
    background-image: url(../imgs/MODELO2[1648].jpg);
    background-position: inherit;
    background-repeat: no-repeat;
    background-size: cover;
}

.textos-about {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.textos-about .textos-about-cont {
    padding-top: 1.2rem;
}

.accordion {
    /*  max-width: 530px; */
    width: 80%;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2);
    margin-top: 2%;
    /*  display: none; */
}

.accordion .accordion-content {
    background: #f2f2f2;
    border-radius: 4px;
    margin: 10px 0;
}

.accordion-content.open {
    padding-bottom: 10px;
}

.accordion .accordion-content .title-accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    min-height: 3.12rem;
    cursor: pointer;
    transition: all .2s ease;
}

.accordion-content.open .title-accordion {
    min-height: 2.18rem;
}

.accordion .accordion-content .title-accordion span,
.accordion .accordion-content .title-accordion i {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.accordion .accordion-content .description-accordion {
    display: flex;
    gap: .5rem;
    justify-content: space-around;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: all .2s linear;
}

.accordion .accordion-content .description-accordion .img-tools-accordion {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion .accordion-content .description-accordion .img-tools-accordion img {
    height: 150px;
    object-fit: cover;
}

.accordion .accordion-content .description-accordion .info-tools-accordion {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.accordion .accordion-content .description-accordion .info-tools-accordion a {
    padding: .5rem 1.6rem;
}

.accordion-content.open .description-accordion {
    padding: 7rem 0;
}

.accordion .accordion-content .description-accordion p {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    text-align: center;
}

.accordion .accordion-content .description-accordion a {
    padding: 1.2em 1.3em;
    ;
}

.foot-slider {
    display: flex;
    justify-content: flex-end;
}

.head-slider {
    display: flex;
    justify-content: space-between;
}

.slider-cont {
    display: flex;
    padding: 2% 0 4% 0;
}

.slider-cards {
    display: flex;
    position: relative;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 4/3;
    max-width: 100%;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 15px;
    border-radius: 0;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: var(--primary-color);
}

.whitedots .swiper-pagination-bullet {
    color: #fff;
    background: rgba(255, 255, 255, 0.767);
}

.whitedots .swiper-pagination-bullet-active {
    color: #fff;
    background: var(--antiflash-white);
}

.slider-cards-txt {
    position: absolute;
    bottom: 4%;
    left: 4%;
}

.slider-cards-txt p:nth-child(2) {
    padding: 1% 0;
}

.cont-3-bg {
    background-image: linear-gradient(to bottom, #ffff 2%, transparent 20%), linear-gradient(to top, #fff 2%, transparent 15%), url('../imgs/background1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2% 0;
}

.cont-4-bg {
    background-image: linear-gradient(to bottom, #ffff 2%, transparent 20%), linear-gradient(to top, #fff 2%, transparent 15%), url('../imgs/backgrounds/oleg-laptev-7jQh3EiS8Bs-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2% 0;
}

.ltrs-hidden {
    display: flex;
    overflow: hidden;
    max-height: 0px;
    transition: .6s ease-in-out;
}

.slider-cards:hover .ltrs-hidden {
    max-height: 200px;
}

.slider-cards-bg {
    width: 100%;
    display: flex;
    aspect-ratio: 4/3;
    max-height: 0px;
    z-index: 200;
    transition: .6s ease-in-out;
    overflow: hidden;
    background-image: linear-gradient( to bottom, var(--primary-color), transparent 100%);
}

.slider-cards:hover .slider-cards-bg {
    max-height: 300px;
}

.Sect-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    gap: 0%;
}

.cont-5-bg {
    background-image: url('../imgs/backgrounds/MODEL\ 3\ CORTE\ 1 \ ver2.jpg ');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2% 0;
}

.pict-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../imgs/backgrounds/MODEL\ 3\ CORTE\ 1\ CUADRADO\ .png');
    aspect-ratio: 1/1;
    /* min-height: 380px; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image {
    aspect-ratio: 1/1;
    width: 80%;
    max-width: 720px;
    min-height: 350px;
    object-fit: cover;
}

.pict-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyus {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 1rem;
}

.skills p {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 2%;
}

.progress {
    position: relative;
    width: 100%;
    height: .5rem;
    background-color: var(--antiflash-white);
    overflow: hidden;
}

.progress::before {
    content: '';
    position: absolute;
    width: var(--wth);
    height: .5rem;
    background: var(--primary-color);
}

.cont-6-bg {
    background-image: url('../imgs/backgrounds/MODEL\ 3\ CORTE\ 2\ .jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4% 0;
}

.Per-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #5079c5b9;
    padding: 5%;
}

.Per-img {
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 50%;
    border: var(--primary-color) 5px solid;
    width: 30%;
}

.cont-7-bg {
    background-image: linear-gradient(to top, #fff, transparent 100%), url('../imgs/backgrounds/drew-beamer-tf-dVnIN8sk-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4% 0;
}

.cont-9-bg {
    background-image: linear-gradient(to top, #fff, transparent 100%), url('../imgs/backgrounds/MODEL\ 3\ CORTE\ 5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4% 0;
}

.Team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5%;
}

.Team-img {
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 50%;
    border: var(--primary-color) 5px solid;
    width: 70%;
}

.social-cont {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.social-cont a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--white-ltrs);
    border-radius: 20px;
    width: 100%;
    max-width: 26px;
    max-height: 26px;
    padding: 10px;
    transition: .4s;
}

.social-cont a:hover {
    background-color: var(--white-ltrs);
    color: var(--primary-color);
}

.art-cards {
    display: flex;
    flex-direction: column;
    background-color: var(--white-ltrs);
    padding: 3%;
}

.art-cards img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    padding-bottom: 2%;
}

.art-cards-head {
    display: flex;
    justify-content: space-between;
}

.art-cards-head p {
    display: flex;
}

.foot-logo {
    width: 70%;
}

.footer-bg {
    padding-top: 5%;
    background-color: #121212;
}

.footer-bg2 {
    display: flex;
    justify-content: center;
    margin-top: 2%;
    padding: .3%;
    background-color: #000000;
}

.footer-gr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 5%;
}

.mg-t5 {
    margin-top: 5%;
}

.sct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sct-2 {
    grid-column: span 2;
    display: flex;
    gap: 10%;
    width: 100%;
}

.bar- {
    height: .5rem;
    width: 40%;
    background-color: var(--primary-color);
}

.inpt-base {
    padding: 5% 1%;
    height: 1.5rem;
    width: max-content;
    border: none;
}


/* 2do contenedor */

.container-2 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    /* background-image: url(../imgs/background1.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 3%;
    margin-bottom: 3%;
}

.img-contenedor2 {
    width: 50%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 0 5%;
}

.inner-img-contenedor2 {
    background-image: url(../imgs/backgrounds/BILLING--02.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-clip: border-box;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
}

.img-contenedor2 img {
    width: 64%;
    height: 475px;
    position: relative;
    left: 66px;
}

.text-cont {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-left: 2%; */
    gap: 25px;
}

.text-cont1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-cont1 h1 {
    font-size: var(--fs-xl);
}

.text-cont1 h5 {
    width: 40%;
    color: var(--green-blue);
    font-size: var(--fs-md);
}

.text-cont1 p {
    width: 95%;
    font-size: var(--fs-base);
    color: var(--feldgrau);
    text-align: justify;
    line-height: 25px;
}


/*








    
    /* border: 1px solid #2e1080; */


/* }

.text-acordeon {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.containerPadre-contactos {
    width: 100%;
    height: 90vh;
    background-image: linear-gradient(135deg, #0065b21f, #040022), url(../imgs/pexels-noah-frohn-1429772-5209521.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Cont-contactos-texto {
    width: 80%;
    height: 80vh;
    display: flex;
    margin-top: 2%;
}

.contac {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba( 123, 198, 255, 0.35);
    box-shadow: 0 0px 0px 0 rgba( 31, 38, 135, 0.37);
    backdrop-filter: blur( 10px);
    /* -webkit-backdrop-filter: blur( 20px); */
}

.contac h6 {
    width: 75%;
    font-size: 2.3rem;
    color: #ffff;
    text-align: left;
    margin-bottom: 5px;
}

.contac h3 {
    width: 75%;
    font-size: 1.5rem;
    color: #ffff;
    margin-bottom: 5px;
    text-align: left;
}

.contac form {
    width: 75%;
    text-align: center;
}

form .input-box {
    display: flex;
    justify-content: space-between;
}

.input-box .input-field {
    width: 48.5%;
}

.field .item {
    width: 100%;
    padding: 12px;
    background-color: #FFF;
    border: 2px solid #fff;
    outline: none;
    font-size: 1rem;
    color: black;
    margin: 5px 0;
}

.field.error .item {
    border: 2px solid var(--russian-violet);
}

.field .item::placeholder {
    color: rgba(128, 123, 123, 0.678);
}

.field .error-txt {
    font-size: 0.9rem;
    color: var(--russian-violet);
    text-align: left;
    margin: 0 0 5px;
    font-weight: bold;
    display: none;
}

.field.error .error-txt {
    display: block;
}

form .textarea-field .item {
    resize: none;
}

form .textarea-field .error-txt {
    margin-top: -5px;
}

form button {
    padding: 12px 32px;
    background-color: var(--secondary-color);
    border: none;
    outline: none;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    align-items: start;
    align-items: center;
}

form button:hover {
    background-color: var(--primary-color);
}

.cont-contactos-informacion {
    width: 32.5%;
    height: 100%;
    background-color: #ffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    border-left: 1px solid #ffff;
    border-right: 1px solid #ffff;
}

.cont-contactos-card {
    width: 100%;
    height: 100%;
    /* border: 1px solid red; */
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 1%;
}

.cont-contactos-titulos {
    width: 90%;
    display: flex;
    align-items: start;
    padding: 3% 0;
}

.cont-img-inf {
    width: 26%;
    height: 40%;
    background-image: linear-gradient(to bottom, #ffff, transparent 190%, rgba( 123, 198, 255, 0.35)), url(../imgs/informacion.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: 1;
}

.container-iconos {
    display: flex;
    width: 85%;
    height: auto;
    /* border: 1px solid rgb(67, 209, 209); */
    gap: 18px;
}

.cont-texto-iconos {
    display: flex;
    flex-direction: column;
    word-break: break-all;
    gap: 8px;
}

.cont-img-iconos img {
    width: 40px;
}