/*VARIABLES*/
:root{
--mx-width: 1320px;

--color-text-body: #525260;
--color-primary: #5956e9;
--color-secondary: #fff;
--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-text-description: #99a1aa;
--color-hover-dark: #303035;
--color-borders: #e3e6e9;
}

/*------ESTILOS GENERALES------*/

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;

    font-family: "DM sans", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-text-body);

    overflow-x: hidden;
}

/*------ESTRUCTURA------*/

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

/*------ESTILOS NAVEGACIÓN------*/

.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 8rem;
}

.navbar__logo {
    width: 187px;
}

.nav__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

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

.nav__title {
    position: relative;
    display: block;
    font-weight: 500;
    transition: all .3s ease-in-out;
    line-height: 6rem;
}

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

.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 .3s;
}

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

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

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

.submenu__item {
    opacity: 0;
    transform: translateX(2rem);
    transition: all .5s ease-in-out;
}

.submenu__item:nth-child(1) {
    transition-delay: .1s;
}

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

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

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

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

.submenu__item:nth-child(6) {
    transition-delay: .6s;
}

.submenu__title {
    display: block;
    position: relative;
    font-size: 1.5rem;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--color-text-body);
    padding: 0.8rem 0.5rem;
    transition: all .3s ease-in-out;
}

.nav__item:hover > .nav__submenu {
    opacity: 1;
    visibility: visible;
    z-index: 999;
    left: 0;
}

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

.submenu__title:hover {
    color: var(--color-primary);
    font-weight: 700;
}

.submenu__title::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0.5rem;
    left: 0.2rem;
    background-color: var(--color-primary);
    transition: all .3s ease-in-out;
}

.submenu__title:hover::after {
    width: 100%;
}

/*------ESTILOS 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;

    animation: contentLeft 1s;
}

@keyframes contentLeft {
    0% {
        transform: translate(-8%);
    }
    100% {
        transform: translate(0%);
    }
}

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

.banner__btn {
    display: inline-block;
    padding: 2.8rem 4.5rem;
    border-radius: 20px;
    background-color: var(--color-secondary);
    color: var(--color-text-btn);
    font-size: 1.7rem;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    box-shadow: 0 45px 80px -25px var(--color-primary);
    transition: all .3s 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 {
    top: 0;
    right: 0;
    text-align: right;

    animation: showRight 1s;
}

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

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

.shapes__item--shape2 {
    bottom: 0;
    left: 0;

    animation: showLeft 1s;
}

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

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

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

@keyframes moverShape3 {
    0% {
        transform: translateX(0) translateY(0);
    }
    
    40% {
        transform: translateX(50px) translateY(-200px);
    }

    75% {
        transform: translateX(800px);
    }

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

}

.shapes__item--shape4 {
    bottom: 240px;
    left: 45%;

    animation: moverShape4 30s infinite;
}

@keyframes moverShape4 {
    0% {
        transform: translateX(0) translateY(0);
    }
    
    40% {
        transform: translateX(-700px) translateY(200px);
    }

    75% {
        transform: translateX(-500px) translateY(-300px);
    }

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

.shapes__item--shape4 .shapes__img {
    opacity: 0.5;
    width: 75px;
}

.shapes__item--shape5 {
    bottom: 120px;
    left: 53%;

    animation: moverShape5 45s infinite;
}

@keyframes moverShape5 {
    0% {
        transform: translateX(0) translateY(0);
    }
    
    40% {
        transform: translateX(200px) translateY(-200px);
    }

    75% {
        transform: translateX(400px) translateY(-200px);
    }

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

.shapes__item--shape6 {
    bottom: 100px;
    left: 40%;

    animation: moverShape6 45s infinite;
}

@keyframes moverShape6 {
    0% {
        transform: translateX(0) translateY(0);
    }
    
    20% {
        transform: translateX(120px) translateY(-100px);
    }

    75% {
        transform: translateX(-400px) translateY(-150px);
    }

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

.shapes__item--shape7 {
    top: 0;
    right: 100px;
    z-index: 1;

    animation: showUp 1s;
}

@keyframes showUp {
    0% {
        transform: translateY(-80%);
    }

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

/*------ESTILOS SERVICIOS------*/

.layout__services {
    position: relative;
    z-index: 2;
    margin: 14rem 10rem 8rem 10rem;
}

.services__grid {
    max-width: var(--mx-width);
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

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

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

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

.services__list {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.services__service {
    width: 33%;
    height: 100%;
    padding: 5rem 4rem;
    border-radius: 3rem;
    margin-bottom: 4rem;

    background: linear-gradient(180deg, var(--color-bg-services), rgba(255, 255, 255, 0));
    background-color: var(--color-secondary);
    border: 1px solid;
    border-image-source: linear-gradient(90deg, var(--color-bg-services), rgba(255, 255, 255, 0));

    transition: all .3s ease-in-out;

    display: flex;
}

.services__service:hover {
    background-color: var(--color-bg-services);
    transform: scale(1.1);
}

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

.service__content {
    flex: 1;
}

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

.service__description {
    font-size: 1.7rem;
    overflow: hidden;
    margin-bottom: 4rem;
}

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

.service__more::before {
    content: "";
    width: 3.4rem;
    height: 0.18rem;
    background-color: var(--color-text-body);
    position: absolute;
    top: 50%;
    left: 0;
    transition: all .3s ease-in-out;
}

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

/*Escalonado tarjertas Servicios*/

.services__service--bottom {
    margin-top: 20rem;
}

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

.services__service--top {
    margin-top: 0rem;
}

/*Shapes Services*/

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

.service-shapes--shape1 {
    top: -12%;
    right: 10%;
}

.service-shapes--shape2 {
    top: 9%;
    left: 59%;
}

.service-shapes--shape3 {
    top: 34%;
    left: 20%;
}

/*------ESTILOS PROYECTOS------*/

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

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

.projects__header {
    margin-bottom: 4rem;
}

.projects__subtitle {
    text-transform: capitalize;
}

.projects__categories {
    display: flex;
    margin-bottom: 5.5rem;
    gap: 5rem;
}

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

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

.projects__all {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 7rem;
}

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

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

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

.projects__project:hover .project__img {
    transform: scale(1.2);
}

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

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

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

.project__tags {
    font-size: 1.7rem;
}

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

.project-shapes--shape1 {
    top: 2%;
    right: 9%;
}

.project-shapes--shape2 {
    top: 5%;
    right: 28%;
}

.project-shapes--shape3 {
    top: 38%;
    left: 5%;
}

/*------ESTILOS ESTADÍSTICAS------*/

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

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

.stats__header {
    text-align: center;
}

.stats__title,
.clients__title {
    color: var(--color-secondary);
    font-size: 6.4rem;
    margin-bottom: 3rem;
}

.stats__description,
.clients__description {
    font-size: 2rem;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 4rem;
    color: var(--color-text-description);
}

.stats__progress {
    display: flex;
    gap: 3rem;
}

.stats__stat {
    width: 25%;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 2rem;
    padding: 7rem 2rem;
}

.stats__stat:hover {
    background: linear-gradient(180deg, var(--color-bg-dark), var(--color-hover-dark));
    border: 1px solid var(--color-hover-dark);
}

.stat__icon {
    margin-bottom: 2rem;
}

.stat__icon > img {
    margin: 0 auto;
    text-align: center;
}

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

.stat__title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-secondary);
}

/*------ESTILOS REVIEWS------*/

.layout__reviews {
    position: relative;
    z-index: 1;
    padding-top: 14rem;
    padding-bottom: 11rem;
    margin-left: 3rem;
    margin-right: 3rem;
}

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

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

.reviews__description,
.news__description {
    margin: 3rem 0;
    width: 50%;
    font-size: 2rem;
    color: var(--color-text-description);
}

.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-text-body);
    margin-bottom: 3rem;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author__container-img {
    border-radius: 6.5rem;
    overflow: hidden;
}

.author__content {
    flex: 1;
}

.author__name {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-bg-dark);
    margin-bottom: 0.3rem;
}

.author__description {
    display: block;
    font-size: 1.4rem;
    color: var(--color-text-description);
}

.review-shapes__item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 17%;
    right: 20%;
}

/*------ESTILOS CLIENTES------*/

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

.clients__header {
    text-align: left;
}

.clients__title {
    font-weight: 500;
    line-height: 1.2;
    width: 50%;
}

.clients__description {
    width: 40%;
    margin: 0;
    margin-bottom: 6rem;
}

.clients__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.clients__item {
    width: calc(25% - 3rem);
}

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

.clients__item:hover > .clients__img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-shapes__item {
    position: absolute;
    z-index: -1;
    top: 10rem;
    right: 0;
}

/*------ESTILOS NOTICIAS------*/

.layout__news {
    position: relative;
    z-index: 1;
    padding: 14rem 0;
    margin-left: 2rem;
    margin-right: 2rem;
}

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

.news__header {
    text-align: center;
    margin-bottom: 6rem;
}

.news__title {
    margin-bottom: 3rem;
}

.news__description {
    text-align: center;
    margin: 0 auto;
}

.news__list {
    display: flex;
}

.news__new {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem 4rem 0;
    border-top: 1px solid var(--color-borders);
    border-bottom: 1px solid var(--color-borders);
    transition: all .3s 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 .3s 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 .3s ease-in-out;
}

.new__title:hover, .new__more:hover {
    color: var(--color-primary);
}

.new__more:hover {
    transform: skewX(-20deg);
}

.new__description {
    font-size: 1.7rem;
    color: var(--color-text-description);
    margin-bottom: 3rem;
}

.new__more {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--color-hover-dark);
    transition: all .3s ease-in-out;
}

.new__icon {
    font-size: 1.3rem;
    vertical-align: middle;
}

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

.new-shapes--shape1 {
    top: 14rem;
    left: 31.5rem;
}

.new-shapes--shape2 {
    right: 0;
    top: 120px;
}

.new-shapes--shape3 {
    left: 0;
    bottom: 75px;
}

.new-shapes--shape4 {
    right: 100px;
    bottom: 50px;
}

/*------ESTILOS CONTACTO------*/

.layout__contact {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14rem 0 10rem 0;
}

.layout__contact::before{
    content: "";
    width: 100%;
    height: 65rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -100;
    background-color: var(--color-primary);
}

.contact__container {
    max-width: var(--mx-width);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.contact__header {
    margin-bottom: 6.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.contact__subtitle {
    color: var(--color-bg-btn);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.contact__title {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 5.5rem;
    font-size: 6.4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-secondary);
}

.contact__btn {
    display: inline-block;
    position: relative;
    z-index: 100;
    overflow: hidden;
    padding: 2.3rem 5.5rem;
    background-color: var(--color-secondary);
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    transition: all .3s ease-in-out;
}

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

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

.contact__thumb {
    display: inline-block;
}

.contact__thumb--chat {
    margin-right: -12%;
    margin-bottom: -0.8rem;
}

.contact__thumb--labtop {
    position: absolute;
    bottom: 0;
    left: 5%
}

.contact__thumb--mobile {
    position: absolute;
    bottom: 0;
    right: 5%;
}

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

.backshapes--shape1 {
    top: 0;
    left: 488px;

    animation: moverShape1 30s infinite;
}

@keyframes moverShape1 {
    0% {
        top: 0;
    }

    50% {
        top: -100px;
    }

    100% {
        top: 0;
    }
}

.backshapes--shape2 {
    top: 300px;
    right: 150px;

    animation: moverShape4 35s infinite;
}

.backshapes--shape3 {
    bottom: 430px;
    left: 270px;

    animation: moverShape4 50s infinite;
}

.backshapes--shape4 {
    top: 280px;
    left: 370px;

    animation: moverShape3 50s infinite;
}

.backshapes--shape5 {
    bottom: 480px;
    left: 230px;

    animation: moverShape5 50s infinite;
}

.backshapes--shape6 {
    top: 265px;
    right: 300px;

    animation: moverShape5 50s infinite;
}

.backshapes--shape7 {
    top: 100px;
    left: 430px;
    opacity: 0.5;

    animation: moverShape5 50s infinite;
}

/*------ESTILOS FOOTER------*/

.layout__footer {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

.footer__top {
    padding-bottom: 7rem;
}

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

.social__img {
    display: inline-block;
    color: var(--color-text-description);
    font-size: 3rem;
    padding: 3rem;
    transition: all .3s ease-in-out;
}

.social__link:hover > .social__img {
    color: var(--color-bg-dark);
    transform: scale(1.2);
}

.footer__main {
    display: flex;
}

.footer__fleft {
    flex-basis: 50%;
}

.fleft__container {
    border-right: 1px solid var(--color-text-description);
    padding-right: 8rem;
    margin-right: 4rem;
    margin-bottom: 8rem;
}

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

.fleft__subtitle {
    margin-bottom: 4rem;
    font-size: 1.7rem;
}

.fleft__group {
    background-color: var(--color-secondary);
    border-radius: 20px;
    height: 7.2rem;
    padding: 1rem;
    box-shadow: 0 24px 48px -15px var(--color-borders);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

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

.fleft__btn {
    cursor: pointer;
    border: none;
    outline: none;
    height: 5.2rem;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 1.5rem 3rem;
    border-radius: 16px;
    transition: all .3s ease-in-out;
}

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

.footer__fright {
    display: flex;
    flex-basis: 50%;
}

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

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

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

.widget__link {
    font-size: 1.8rem;
    padding: 0.8rem 0;
    display: inline-block;
    transition: all .5s ease-in-out;
}

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

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

    display: flex;
    justify-content: space-between;
}

.footer__copyright {
    flex-basis: 50%;
}

.copyright__text {
    display: inline-block;
    color: var(--color-text-description);
}

.copyright__text a {
    display: inline-block;
}

.footer__links {
    flex-basis: 50%;
}

.footer__flinks {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    position: relative;
}

.flinks__item {
    position: relative;
}

.flinks__title {
    transition: all .3s ease-in-out;
}

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

.flinks__item--separator::after {
    content: "";
    background-color: var(--color-text-body);
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    right: -2.5rem;
}

/*------NAVEGACIÓN RESPONSIVE------*/

.navbar__mobile-btn {
    display: none;
}

.mobile-btn__wrap {
    height: 5rem;
    width: 5rem;
    background-color: var(--color-text-body);
    border-radius: 3.2rem;
    transition: all .3s ease-in-out;
    border: none;

    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-btn__line {
    margin-bottom: 0.4rem;
    border-radius: 1rem;
    width: 2rem;
    height: 0.2rem;
    background-color: var(--color-secondary);
    transition: all .3s ease-in-out;
}

.mobile-btn__line:last-child {
    margin-bottom: 0rem;
    margin-right: 1rem;
    width: 1rem;
    
}

.menu-mobile {
    visibility: hidden;
    opacity: 0;

    position: fixed;
    left: -300px;
    top: 0;
    z-index: 100;

    width: 30rem;
    height: 100%;
    background-color: var(--color-secondary);
    padding: 5rem 2rem;
    padding-top: 0;
    box-shadow: 0px 0px 85px -30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;

    transition: all .5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.menu-mobile--show {
    visibility: visible;
    opacity: 1;
    left: 0;
}

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

.menu-mobile__container-logo {
    width: 15rem;
}

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

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

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

.menu-mobile__item {
    position: relative;
    border-bottom: 1px solid var(--color-borders);
    margin: 0 1rem;
}

.menu-mobile__title {
    position: relative;
    height: 5rem;
    line-height: 5rem;
    color: var(--color-text-body);
    font-weight: 500;

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

.menu-mobile__icon {
    font-size: 1.4rem;
}

.menu-mobile__submenu-mobile {
    display: none;
    visibility: visible;
    opacity: 1;

    min-width: 100%;
    padding: 0;
    padding-bottom: 1rem;
}

.submenu-mobile__title {
    display: block;

    position: relative;
    padding: 0.7rem 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--color-text-body);
}

/*------BOTON MODO OSCUTO------*/

.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: 4rem;
}

.switcher__icon-dark {
    display: none;
}
