/* VARIABLES COLORES  (COLOCADOS EN LA ETIQUETA ROOT*/

:root{
     --mx-width: 1320px;
     --color-text-body: #525260;
     --color-primary: #5956e9;
     --color-secondary:white;
     --color-banner:#2522BA;
     --color-text-btn:#0d6efd;
     --color-bg-btn:#ffdc60;
     --color-subtitle: #c75c6f;
     --color-title:#292930;
     --color-bg-services: #f8f8f8;
     --color-bg-projects: #ecf2f6;
     --color-bg-dark: #27272e;
     --color-description: #9b9baf;
     --color-hover-dark: #303035;
     --color-borders: #99a1aa;
    }

/* ESTILOS GENERALES */
.author__img{
    width: 50px;
}

html{
    /* Equivalente a 10px */
    font-size: 62.5%; 
    overflow-x: hidden;
}

body{
    width: 100%;
    height: 100%;
    /* El intérprete del Css(el navegador) suele tener en cuenta los espacios, aqui no te está cogiendo este font-size (y por eso se ve muy pequeño el menu dcho) por el espacio, tiene que ser 1.6rem, no 1.6 rem. Te ha pasado en otros lados tmb*/
    font-size: 1.6rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-body) ;
}

/* ESTILOS LAYOUT / ESTRUCTURA  */

.layout{
    width: 100%;
    min-width: 1200px;
    height: 100%;
}

/* ESTILOS MENU NAVEGACION Y CABECERA DE LA WEB */

.layout__menu{
    width: 100%;
    padding: 3.5rem 3rem;
}

.menu__navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}
.menu__navbar--fixed{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
    background-color: var(--color-secondary);
    box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 10%);
    padding: 1.5rem ;
}

.navbar__logo{
    width: 187px;
}

.nav__list{
    display: flex;
    flex-direction: row;
    margin: 4rem;
}

.nav__item{
    position: relative;
    margin: 0 2.4rem;
}

.nav__title{
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: var(--color-text-body);
    line-height: 6rem;
    transition: all 300ms ease-in-out;
}

.nav__icon{
    font-size: 1rem;
    font-weight: bold;
    padding-left: 0.2rem;
    color: red;
    vertical-align: middle;
}

.nav__title:hover{
    color: var(--color-primary);
    font-size: 20px;
}

/* AQUI CREAMOS LA LINEA QUE SE VE CUANDO PASAMOS POR ENCIMA DEL TITLE */
.nav__title::before{
    content: "";
    height: 0.2rem;
    width: 0;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    opacity: 0;
    transition: all 500ms;

}

.nav__title:hover::before{
    width: 100%;
    opacity: 1;
}

.nav__submenu{
    display: block;
    position: absolute;
    top: 100%;
    min-width: 10rem;
    padding: 1.5rem 1rem;
    border-radius: 4px;
    background-color:var(--color-secondary);
    box-shadow: 0px 13px 48px 0 rgba(0, 0, 0, 15%);
    opacity: 0;
    visibility: hidden;
    transition: all 330ms ease-in-out;
    
}

.submenu__item{
    opacity: 1;
    transform: translateX(2rem);
    transition: all 100ms ease-in-out;
}


/* AQUI HACEMOS QUE LOS ELEMENTOS DEL SUBMENU SE MUESTREN DE MANERA ESCALONADA Y CON UN DELAY.
INDICAMOS EL TIEMPO Y CON LA PSEUDO-CLASE NTH-CHILD(1) INDICAMOS EL HIJO EL 1 ,2 3, 4, 5, RESPECTIVAMENTE */
.submenu__item:nth-child(1){
    transition-delay: 100ms;
}

.submenu__item:nth-child(2){
    transition-delay: 200ms;
}

.submenu__item:nth-child(3){
    transition-delay: 300ms;
}

.submenu__item:nth-child(4){
    transition-delay: 400ms;
}

.submenu__item:nth-child(5){
    transition-delay: 500ms;
}


.submenu__title{
    display: block;
    position: relative;
    font-size: 1.4rem;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    color: var(--color-text-body);
    padding: 0.7rem 1.5rem;
    transition: all 300ms ease-in-out;

}


/* AQUI JUGAMOS CON LA OPACITY Y VIVISIBILITY PARA QUE EL SUBMENU SE MUESTRE CUANDO PASAMOS POR ENCIMA */
.nav__item:hover>.nav__submenu{
    opacity: 1;
    visibility: visible;
    z-index: 999;
    left: 0;

}

/* CENTRAMOS LOS SUBMENUS AL HACER HOVER */

.nav__item:hover .submenu__item{
    opacity: 1;
    transform: translateX(0);
}


/* METEMOS EFECTOS HOVER Y DE TACHADO AL SUBMENU__TITLE */
.submenu__title:hover{
    color: var(--color-primary);
}
.submenu__title::after{
    content: "";
    height: 0.1rem;
    width: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 300ms ease-in-out;
    background-color: red;
}

/*AHORA AL HACER HOVER Y UTILZAR EL ELEMENTO AFTER MODIFICAMOS EL COMPORTAMIENTO DEL HOVER */
.submenu__title:hover::after{
    width: 100%;
}


/* ESTILOS PARA EL BANNER */

.layout__banner{
    position: relative;
    min-height: 60rem;
    margin: 0 3rem;
    padding-right: 0;
    padding-left: 10rem;
    padding-top: 15rem;
    padding-bottom: 20rem;
    border-radius: 60px;
    overflow: hidden;
    background-color:var(--color-banner) ;
    z-index: 1;
}

.banner__content{
    position: relative;
    display: inline-block;
    width: 50%;
    padding: 0 1.5rem;
    z-index: 3;

}

.banner__title{
    color: var(--color-secondary);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    animation: moveTitle 1s;
}

@keyframes moveTitle{
    0%{
        transform: translateX(100%);
    }

    100%{
        transform: translate(0%);
    }
}


.banner__btn{
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-text-btn);
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    padding: 2.8rem 4.5rem;
    text-transform: capitalize;
    border-radius: 20px;
    box-shadow: 0px 44px 84px -24px var(--color-primary);
    transition: all 300ms ease-in-out;
}
   
.banner__btn:hover{
    background-color: var(--color-bg-btn);
    color: var(--color-text-body);
}

.shapes__item{
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.shapes__item--shape1{
     text-align: right;
     top: 0;
     right: 0;
     animation-name: showRight;
     animation-duration: 1s;
}

@keyframes showRight{
    0%{
        transform: translateY(100%);
    }

    100%{
        transform: translateY(0%);
    }
}

.shapes__item--shape2{
    bottom: 0;
    left: 0;
    animation-name: showLeft;
    animation-duration: 1s;
}

@keyframes showLeft{
    0%{
        transform: translateX(-50%);
    }

    100%{
        transform: translateX(0%);
    }
}

.shapes__item--shape3{
    top: 34%;
    left: 50%;
    animation: moveShape3 20s infinite;
}


@keyframes moveShape3{
    0% {
        transform: translateX(0) translateY(0);
    }
    
    40%{
        transform: translateX(50px) translateY(-200px);
        
    }
    
    75%{
        transform: translateX(700px) ;
        
    }
    
    100%{
        transform: translateX(0) translateY(0);

    }
}
    
.shapes__item--shape4{
    bottom: 24rem;
    left: 45%;
    animation: moveShape4 25s infinite;
}

@keyframes moveShape4{
    0% {
        transform: translateX(0) translateY(0);
    }
    
    40%{
        transform: translateX(-50px) translateY(200px);
        
    }
    
    75%{
        transform: translateX(-500px) ;
        
    }
    
    100%{
        transform: translateX(0) translateY(0);

    }
}

.shapes__item--shape4 .shapes__img{
    opacity: 0.5;
    width: 7.5rem;
}

.shapes__item--shape5{
    bottom: 12rem;
    left: 54%;
    animation: moveShape5 30s infinite;
}

@keyframes moveShape5{
    0% {
        transform: translateX(0) translateY(0);
    }
    
    40%{
        transform: translateX(50px) translateY(-200px);
        
    }
    
    75%{
        transform: translateX(700px) ;
        
    }
    
    100%{
        transform: translateX(0) translateY(0);

    }
}


.shapes__item--shape6{
    bottom: 10rem;
    left: 40%;
    animation: moveShape6 40s infinite;
}

@keyframes moveShape6{
    0% {
        transform: translateX(0) translateY(0);
    }
    
    40%{
        transform: translateX(150px) translateY(-200px);
        
    }
    
    75%{
        transform: translateX(-800px) ;
        
    }
    
    100%{
        transform: translateX(0) translateY(0);

    }
}


.shapes__item--shape7{
    top: 0;
    right: 10rem;
    z-index: 1;
    animation: showTop 1s;
}

@keyframes showTop{
    0%{
        transform: translateY(-50%);
    }

    100%{
        transform: translateY(0%);
    }
}


/* ESTILOS SECCION SERVICIOS */

.layout__services{
    position: relative;
    z-index: 1;
    margin: 15rem 10rem;
    /* esta regla se la fuma tmb, no entiende esa medida */
    margin-bottom: 5rem;
    
}

.services__grid{
    max-width: 1320px;
    margin: 0 auto;

}

.services__header{
    margin-bottom: 2rem;
    text-align: left;
}

.services__subtitle,.projects__subtitle,.stats__subtitle,.reviews__subtitle,.clients__subtitle,.news__subtitle{
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-subtitle);
}

.services__title,.projects__title,.stats__title,.reviews__title,.news__title{
    color: var(--color-title);
    font-size: 6.7rem;
    font-weight: 600;
    line-height: 1.2;
}

.services__list{
    display: flex;
    flex-direction: row;
    gap: 3rem;
    
}

.services__service{
    height: 100%;
   width: 33.333%;
   padding: 5rem 4rem;
   padding-bottom: 5rem;
   margin-bottom: 4rem;
   border-radius: 3rem;
   background: linear-gradient(180deg, #f8f8f8,rgb(199, 199, 199));
   background-color: var(--color-secondary);
   border-image-source: linear-gradient(180deg, #f8f8f8,rgb(199, 199, 199)) ;
   transition: all 300ms ease-in-out;
   display: flex;
   flex-direction: row;
}

.services__service:hover{
    background:#d3e4d6;

}
.services__container-img{
    
    margin-right: 2.5rem;
    max-width: 8.5rem;
    flex: 1;

}
.service__content{
    flex: 1;
}

.service__title{
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 3rem;
    line-height: 1.4rem;
    color: var(--color-title);
}

.service__descriptio{
    overflow: hidden;
    margin-bottom: 4rem;
    font-size: 1.6rem;

}
.service__more{
    display: inline-block;
    font-weight: 500;
    position: relative;
    padding-left: 5rem;
    transition: all 300ms ease-in-out;  
    font-size: 2.4rem;
}

.service__more::before{
    content: "";
    width: 3rem;
    height: 2px;
    background-color: var(--color-text-body);
    position: absolute;
    top: 50%;
    left: 0.5rem;
    transition: all 300ms ease-in-out;
}

.service__more:hover,.service__title:hover{
    color: var(--color-primary);
}
.service__more:hover.service__more::before{
    background: var(--color-primary);
}

/* ESCALONADO DE LAS TARJETAS DE SERVICIOS */
.services__service--bottom{
    margin-top: 20rem;
}

.services__service--middle{
    margin-top: 15rem;
}

.services__service--top{
    /* no tiene medida */
    margin-top: 20px;
}

/* FORMAS DTRAS DE LOS SERVICIOS */

.service-shapes__item {
    z-index: -1;
    position: absolute;
    pointer-events: none;
}

.service_shapes--shape1{
    top: -70px;
    right: 380px;
}
.service_shapes--shape2{
    top: 80px;
    left: 900px;
}
.service_shapes--shape3{
    top: 250px;
    left: 400px;
}

/* ESTILOS DE PROYECTOS */
.layout__projects{  
    position: relative;
    background-color: var(--color-bg-projects);
    padding: 14rem 10rem;
    z-index: 1;
}

.projects__grid{
    max-width: var(--mx-width);
    margin: 0 auto;
    
}

.projects__header{
    margin-bottom: 4rem;

}

.projects__subtitle{
    text-transform: capitalize;
}

.projects__categories{
    margin-bottom: 5.5rem;
    display: flex;
    flex-direction: row;
    gap: 7rem;
}

.categories__item{
    position: relative;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.8rem 0;
    transition: all 100ms ease-in-out;
}


.categories__item:hover{
    border-bottom: solid 4px var(--color-primary);
    color: var(--color-primary);
}

.projects__all{ 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14rem 7rem;
}

.projects__project{
 width: calc(50% - 3.5rem);
 text-align: center;
;
}

.project__container-img{
    width: 100%;
    border-radius: 30px 30px 0 0;
    overflow: hidden;

}

.project__img{
    width: 100%;
    transition: all 1s ease-in-out;
}

.projects__project:hover .project__img{
    scale: 1.3;
}      

.project__content{
    background-color: var(--color-secondary);
    padding: 4rem 5rem;
    border-radius: 0 0 30px 30px;
}

.project__title{
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-title);
    transition: all 300ms ease-in-out;
}

.project__title:hover{
    color: var(--color-primary);
}

.project__tags{
    font-size: 1.8rem;
}

.project-shapes__item{
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.project-shapes--shape1{
    top: 165px;
    right: 380px;
}
.project-shapes--shape2{
    top: 430px;
    right: 850px;
}

.project-shapes--shape3{
    bottom: 730px;
    right: 966px;
}

/* ESTILOS PARA ESTADISTICAS */

.layout__stats,.layout__clients{
    background-color: var(--color-bg-dark);
    padding: 14rem 11rem;
}

.stats__container, .clients__container{
    max-width: var(--mx-width);
    margin: 0 auto;
}

.stats__header{
    text-align: center;

}

.stats__title,.clients__title{
    color: var(--color-bg-services);
    font-size: 6.5rem;
    margin-bottom: 3rem;
}
.stats__description,.clients__description{
    font-size: 2.2rem;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 4rem;
    color:#9b9baf;
}

.stats__progress{
    display: flex;
    flex-direction: row;
    gap: 3rem;
}
.stats__stat{
    width: 25%;
    text-align: center;
    border-radius: 2rem;
    padding: auto;
}
.stats__stat:hover{
    background: linear-gradient(180deg, var(--color-bg-dark),var(--color-hover-dark));
    border: 1px solid var(--color-hover-dark);
}

.stats__count{
    color: var(--color-primary);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1rem;
    text-align: center;
}


.stats__icon{
    display: flex;
    justify-content: center;
    padding: 4rem;

}

/* ESTILOS PARA LAS REVIEWS */
.layout__reviews{
    position: relative;
    z-index: 1;
    padding-top: 14rem ;
    padding-bottom: 10rem;
}

.reviews__grid{
    max-width: var(--mx-width);
    margin: 0 auto;
}

.reviews__header{
    text-align: left;
    margin-bottom: 6rem;

}
.reviews__description{
    margin: 3rem 0;
    font-size: 3rem;
    width: 50%;

}
.reviews__container{
    display: flex;
    gap: 3rem;
    
}
.reviews__review{
    padding-top: 5rem;
    padding-bottom: 3rem;
}
.review__company{
    display: inline-block;
    margin-bottom: 3rem;

}
.review__description{
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--color-bg-dark);
    margin-bottom: 4rem;
}
.review__author{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
}

.author__container-img{
    border-radius: 3.5rem;
    overflow: hidden;
    
}
.author__content{
    flex: 1;
}
.author__name{
    display: block;
    font-weight: bold;
    font-size: 5rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.3rem;
}

.author__description{
    display: block;
    font-size: 1.4rem;
    color: var(--color-title);
}
.author__img{
    border: 2px solid red;
    width: 10rem;
    border-radius: 50%;
    filter: grayscale(100%);
    opacity: 0.3;
    transition: all 300ms ease-in-out;
}
.author__container-img:hover >.author__img{
    opacity: 1;
    filter: grayscale(0);
    cursor: pointer;
    transform: scale(1.2);

}

.review-shapes__item{
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 140px;
    right: 30%;
}


/* ESTILOS EXCLUSIVOS MEJOREES CLIENTEEEES */

.layout__clients{
    position: relative;
    z-index: 1;
    /* otro typo */
    padding-bottom: 12rem;
}

.clients__header{
    text-align: left;
}

.clients__title{
    width: 50%;
    font-weight: 500;
    line-height: 1.2;
}
.clients__description{
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

.clients__logos{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
}
.clients__item{
    width:calc(25% -3rem);
}

.clients__img{
    filter: grayscale(100%);
    opacity: 0.3;
    transition: all 300ms ease-in-out;
}


.clients__item:hover >.clients__img{
    opacity: 1;
    filter: grayscale(0);
    cursor: pointer;
}
.client-shapes__item{
    position: absolute;
    z-index: -1;
    top: 10rem;
    right: 0;
}

/* ESTILOS ULTIMAS NOTICIAS */
.layout__news{
    position: relative;
    z-index: 1;
    padding: 14rem 0;

}
.news__container{
    max-width: var(--mx-width);
    margin: 0 auto;
}
.news__header{
    text-align: center;
    margin-bottom: 6rem;
   
}
.news__description{
    font-size: 3rem;
    padding: 2rem;
}
.news__list{
    display: flex;
}

.news__new{
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 3px solid var(--color-borders);
    border-bottom: 1px solid var(--color-borders);
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 0;
    transition: all 300ms ease-in-out;
}
.news__new:hover{
    border-top-color: var(--color-primary);
}

.news__new:last-child{
    border-left: 1px solid var(--color-borders);
    padding-left: 2.5rem ;
}
.new__container-img{
    overflow: hidden;
    border-radius: 3rem;
}
.new__img{
    border-radius: 3rem;
    transition: all 300ms ease-in-out;
}

.news__new:hover .new__img{
    transform: scale(1.1);
}
.new__content{
    flex: 1;
}
.new__title{
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 2rem;
    transition: all 300ms ease-in-out;
    
}

.new__title:hover, .new__more:hover{
    color: var(--color-primary);
    transform: scale(1.2);
}
.new_description{
    color: var(--color-text-body);
    margin-bottom: 4rem;
    font-weight: 800;
    font-size: small;

}

.new__more{
    font-weight: 800;
    color: var(--color-bg-dark);
    display: inline-block;
    font-size: 1.7;
    transition: all 300ms ease-in-out;
}
.new__icon{
    font-size: 1.2rem;
    vertical-align: middle;

}

.new-shapes__item{
    position: absolute;
    z-index: -1;
}

.new-shapes--shape1{
    top: 75rem;
    left: 150rem;
}

.new-shapes--shape2{
    top: 43rem;
    left: 0;
}

.new-shapes--shape3{
    top: 10rem;
    left: 100px;
}

.new-shapes--shape4{
    top: 26rem;
    left: 30rem;
}

/* ESTILOS DE CONTACTOS */
.layout__contact{
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0;
    padding-top: 14rem;
    padding-bottom: 10rem;
}
.layout__contact::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 65rem;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--color-primary);
    z-index: -1;

}

.contact__container{
    max-width: var(--mx-width);
    margin: 0 auto;
    overflow: hidden;

}
.contact__header{
    margin-bottom: 6.5rem;
    text-align: center;
}

.contact__subtitle{
    font-size: 2rem;
    color: var(--color-bg-btn);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
}
.contact__title{
    width: 70%;
    margin: 0 auto;
    font-size: 6.4rem;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 5.5rem;


}

.contact__btn{
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 2.34rem 5.55rem;
    background-color:  var(--color-secondary);
    border-radius: 20px;
    font-weight: 500;
    text-align: center;
    transition: all 300ms ease-in-out;
}

.contact__btn:hover{
    background-color: var(--color-bg-btn);
    font-size: small;
}

.contact__images{
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--color-borders);
    
}

.contact__thumb{
    display: inline-block;
}
.contact__thumb-chat{
    position: absolute;
    right: 16rem;
    bottom: 0;
}

.contact__thumb-laptop{
    position: absolute;
    bottom: 0;
    left: 25rem;
}

.contact__thumb-movile{
    position: relative;
    left: 55rem;
}

.backshapes__item{
    position: absolute;
    z-index: -1;

}

.backshapes--shape1{
    top: 0;
    left: 32%;
    
}
.backshapes--shape2{
    top: 18rem;
    left: 18%;
    opacity: 0.5;
    animation: moveShape3 20s infinite;
}
.backshapes--shape3{
    top: 31%;
    left: 20%;
    animation: moveShape4 25s infinite;

}
.backshapes--shape4{
    top: 44%;
    left: 17%;
    opacity: 0.5;
    animation: moveShape5 30s infinite;

}
.backshapes--shape5{
    top: 50%;
    right: 18%;
    opacity: 0.5;
    animation: moveShape6 30s infinite;

}
.backshapes--shape6{
    top: 56%;
    left: 51%;
    opacity: 0.5;
    animation: moveShape3 25s infinite;

}

.backshapes--shape7{
    top: 30%;
    left: 18%;
    opacity: 0.5;
    animation: moveShape4 40s infinite;

}

/* ESTILOS DEL FOOTER */

.layout__footer{
    padding-top: 1rem;
}

.footer__container{
    max-width: var(--mx-width);
    margin: 0 auto;

}
.footer__top{
    padding-bottom: 7rem;

}
.footer__social{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social__img{
    display: inline-block;
    color: var(--color-description);
    font-size: 3rem;
    padding: 0.5rem;
    transition: all 300ms ease-in-out;
    list-style-type: none;
    
}
 .social__link >.social__img:hover{
     scale: 1.2;
     color: red;
 }

 .footer__main{
    display: flex;
    flex-direction: row;

 }
 .footer__fleft{
    flex-basis: 50%;
 }   
 .fleft__container {
    border-right: 1px solid var(--color-borders);
    /* no tiene medida */
    padding-right: 4rem;
    margin-right: 4rem;
    margin-bottom: 8rem;

}

.fleft__title{
    display: inline-block;
    font-size: 6.4rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--color-title);
}

.fleft__subtitle{
    margin-bottom: 4rem;
    font-size: 1.7rem;
}
.fleft__group{
    position: relative;
    display: flex;
    width: 100%;
    background-color: var(--color-secondary);
    border-radius: 20px;
    height: 7.2rem;
    padding: 1rem;
    box-shadow: 0 24px 48px -15px var(--color-borders);
    align-items: center;
}

.fleft__mail-icon{
    display: inline-block;
    margin-left: 3rem;
}

.fleft__form-control{
    position: relative;
    display: block ;
    padding: 0.5rem 1.5rem;
    height: auto;
    border: none;
    outline: none;
    flex: 1;
    color: var(--color-title);
    margin-left: 1rem;
    text-decoration: underline red;
}

.fleft__btn{
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 16px;
    padding: 2rem 3rem;
    transition: all 300ms ease-in-out;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

.fleft__btn:hover{
    background-color: var(--color-bg-btn);
    color: black;
    scale: 1.1;
    border-radius: 5px;
    font-size: 10px;
    text-decoration: underline;
}

.footer__fright{
    display: flex;
    flex-direction: row;
    flex-basis: 50%;

}

.footer__widget{
    margin-bottom: 8rem;
    flex-basis: 33%;
}

.footer__widget--50{
    flex-basis: 50%;
}

.footer__widget--25{
    flex-basis: 25%;
}


.widget__title{
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 2rem;
    margin: 3rem;
}


.widget__link{
    display: flex;
    font-size: 1.8rem;
    padding: 0.8rem 0 ;
    transition: all 300ms linear;
}
.widget__link:hover{
    color: var(--color-banner);
    text-decoration: underline var(--color-banner) ;
}

.footer__bottom{
    border-top: 1px solid var(--color-borders);
    padding: 2.5rem 0;
    display: flex;
    font-size: 1.7rem;

}

.footer__copyright{
    flex-basis: 50%;
}

.copyright__text{
    display: inline-block;
    color: var(--color-hover-dark);

}

.copyright__text > a{
    display: inline;
    
}

.footer__links{
    flex-basis: 50%;
}

.footer__flinks{
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 2rem; 
}
.flinks__title{
    transition: all 400ms linear;
}

.flinks__title:hover{
    color: var(--color-banner);
}

.flinks__item--separator::after{
    content:'';
    height:4px;
    width: 4px;
    background-color: var(--color-text-body);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 79%;
    

}

.footer__bitxo{
    color: var(--color-banner);
    text-decoration: underline var(--color-banner);
}

/* NAVEGACION RESPONSIVE */
.navbar__mobile-btn{
    display:none;
}
.mobile-btn__wrap{
    background-color: var(--color-text-body);
    height: 5rem;
    width: 5rem;
    border: none;
    border-radius: 3.2rem;
    transition: all 300ms ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-btn__line{
    background-color: var(--color-secondary);
    height: 0.2rem;
    width: 2rem;
    margin-bottom: 0.4rem;
    border-radius: 1rem;
    transition: all 300ms ease-in-out;
}
.mobile-btn__line:last-child{
    width: 1rem;
    margin-bottom: 0;
    margin-right: -1rem;
}
.menu-mobile{
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 10;
    left: -300px;
    width: 30rem;
    height: 100%;
    background-color: var(--color-secondary);
    top: 0;
    padding-top: 0;
    box-shadow: 0px 0px 85px 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-left: -2rem;
}

.menu-mobile--show{
    visibility: visible;
    opacity: 1;
    left:2rem;

}

.menu-mobile__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0rem 1rem;
    padding: 2rem;
    border-bottom: 1px solid var(--color-borders);
}

.menu-mobile__link-logo{
    display: inline-block;
    text-decoration: none;
}

.menu-mobile__logo{
    width: 15rem;
}
.menu-mobile__link{
    position: relative;
    height: 5rem;
    line-height: 3rem;
    text-decoration: none;
    display:flex ;
    align-items: center;
    justify-content: space-between;
    color: var(--color-text-body);
    font-weight: 500;
    margin: 0.7rem 1rem;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform:capitalize;
    

}

.menu-mobile__close{
    background-color: transparent;
    height: 3rem;
    width: 3rem;
    border: 2px solid var(--color-description);
    border-radius: 1rem;
    color: var(--color-text-body);
    font-size: 1.6rem;
    cursor: pointer;

}
.menu-mobile__list{
    display: block;
    height: 100%;
    overflow: auto;
}

.menu-mobile__item{
    position: relative;
    margin: 0 1rem;
    list-style-type: none;
    text-transform: capitalize;
    font-size: 1.4rem;
}
.menu-mobile__icon{
    font-size: 1.4rem;
}
.menu-mobile__submenu{
    display: none;
    visibility: visible;
    opacity: 1;
    min-width: 100%;
    padding: 0;
    padding-bottom: 1rem;
}

/* ESTILOS BOTON MODO OSCURO */
.switcher{
    position: fixed;
    top: 20rem;
    left: 0;
    background-color: var(--color-primary);
    border-radius: 0 3rem 3rem 0;
    padding: 1rem;
    z-index: 5;
}
.switcher__btn{
    cursor: pointer;
    background-color: transparent;
    border: none;
    display: flex;
}
.switcher__icon-light,
.switcher__icon-dark{
    color: var(--color-secondary);
    font-size: 1.8rem;
    height: 4rem;
    width: 4rem;
    line-height: 3.6rem;

}
.switcher__icon-dark{
    display: none;
}
