/*FONTS*/
@font-face {
    font-family: 'DM Sans';
    src: url(../fonts/dmsans/DMSans-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url(../fonts/dmsans/DMSans-Medium.ttf) format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'DM Sans';
    src: url(../fonts/dmsans/DMSans-Bold.ttf) format('truetype');
    font-weight: 700;
}

/*VARIABLES*/
:root {
    --mx-width: 1320px;
    --color-text-body: #525260;
    --color-text-description: #99A1AA;
    --primary: #5956e9;
    --secondary: #ffffff;
    --banner: #2522BA;
    --text-btn: #0d6efd;
    --subtitle: #c75c6f;
    --title: #292930;
    --bg-btn: #ffdc60;
    --bg-services: #f8f8f8;
    --bg-projects: #ecf2f6;
    --bg-stats: #27272E;  
    --bg-stats-hover: #303035;
    --borders: #e3e6e9;
}

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

body {
    width: 100%;
    height: 100%;
    font-family: 'DM Sans', san-serif;
    font-size: 1.6rem;
    font-weight: 400;    
    line-height: 1.5rem;
    color: var(--color-text-body);
}

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

/*MENU*/
.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;
    padding: 1.5rem 8rem;
    z-index: 99;
    background-color: var(--secondary);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 10%);
}
.navbar__logo {
    width: 187px;
}
.nav__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.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__title:hover {
    color: var(--primary);
}
.nav__title::before {
    content:"";
    width: 0;
    height: 0.2rem;
    background-color: var(--primary);
    position: absolute;
    bottom: 1.2rem;
    left:0;
    opacity: 0;
    transition: 500ms;
}
.nav__title:hover::before {
    width: 100%;
    opacity: 1;
}
.nav__icon {
    font-size: 1rem;
    font-weight: bold;
    padding-left: 0.2rem;
    vertical-align: middle;
}
.nav__item {
    position: relative;
    margin: 0 2.4rem;
}
.nav__submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 2rem;
    min-width:19rem;
    padding: 1.5rem 1rem;
    border-radius: 0.4rem;
    background-color: var(--secondary);
    box-shadow: 0 13px 48px 0 rgba(0, 0, 0, 15%);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}
.submenu__item {
    opacity: 0;
    transform: translateX(2rem);
    transition: all .10s ease-in-out;
}
.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__item:nth-child(6) {
    transition-delay: 600ms;
}
.submenu__title {
    position: relative;
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 1.5rem;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    color: var(--color-text-body);
    transition: all 300ms ease-in-out;
}
.submenu__title:hover {
    color:var(--primary);
}
.submenu__title::after {
    content:"";
    height: 0.1rem;
    width: 0;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: var(--primary);
    transition: all 300ms ease-in-out;
}
.submenu__title:hover::after {
    width: 100%;
}
.nav__item:hover > .nav__submenu {
    opacity: 1;
    visibility: visible;
    z-index: 999;
    left: 0;
}
.nav__item:hover .submenu__item {
    opacity: 1;
    transform: translateX(0);
}
.navbar__logo-dark,
.menu-mobile__logo-dark {
    display: none;
}

/*MENU MOBILE*/
.navbar__mobile-btn {
    display: none;
}
.mobile-btn__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: var(--color-text-body);
    border: none;
    border-radius: 3.2rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.mobile-btn__line {
    width: 2rem;
    height: 0.2rem;
    margin-bottom: 0.4rem;
    border-radius: 1rem;
    background-color: var(--secondary);
    transition: all 300ms ease-in-out;
}
.mobile-btn__line:last-child {
    width: 1rem;
    margin-bottom: 0;
    margin-right: -1rem;
}
.menu-mobile {
    width: 30rem;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: -300px;
    padding: 0 1rem 5rem;
    z-index: 999;
    background-color: var(--secondary);
    box-shadow: 0 0 85px -35px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: all 800ms cubic-bezier(0.77, 0.2, 0.05, 1);
}
.menu-mobile--show {
    visibility: visible;
    opacity: 1;
    left: 0;
}
.menu-mobile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--borders);
}
.menu-mobile__container-logo {
    width: 15rem;
}
.menu-mobile__close {
    background-color: transparent;
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
    color: var(--color-text-body);
    border: 2px solid var(--color-text-description);
    border-radius: 1rem;
    cursor: pointer;
}
.menu-mobile__list {
    display: block;
    height: 100%;
    overflow: auto;
}
.menu-mobile__item {
    position: relative;
    border-bottom: 1px solid var(--borders);
    margin: 0 1rem;
}
.menu-mobile__title {
    height: 5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-text-body);
    font-weight: 500;
    line-height: 5rem;
}
.menu-mobile__icon {
    font-size: 1.4rem;
}
.menu-mobile__submenu-mobile {
    display: none;
    visibility: visible;
    opacity: 1;
    min-width: 100%;
    padding: 0 0 1rem 0;
}
.submenu-mobile__title {
    display: block;
    position: relative;
    padding: 0.7rem 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-body);
    text-transform: capitalize;
    text-decoration: none;
}

/*BANNER*/
.layout__banner {
    position: relative;
    min-height: 60rem;
    margin: 0 3rem;
    padding: 15rem 0 20rem 10rem;
    border-radius: 6rem;
    overflow: hidden;
    /*background-color: var(--banner);*/    
    background-color: #3EECAC;
    background-image: linear-gradient(19deg, #3EECAC 0%, #EE74E1 100%);
    z-index: 1;
}
.banner__content {
    position: relative;
    display: inline-block;
    width: 50%;
    padding: 0 1.5rem;
    z-index: 3;
}
.banner__title {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--secondary);
}
.banner__btn {
    display: inline-block;
    padding: 2.8rem 4.5rem;
    background-color: var(--secondary);
    color: var(--text-btn);
    font-size: 1.7rem;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    border-radius: 2rem;
    box-shadow: 0 4.5rem 8rem -2.5rem var(--primary);
    transition: all 300ms ease-in-out;
}
.banner__btn:hover {
    background-color: var(--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-name: showRight;
    animation-duration: 1s;
}
@keyframes showRight {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(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);
    }
    75% {
        transform: translateX(800px) translateY(-200px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.shapes__item--shape4 {
    bottom: 24rem;
    left: 45%;
    animation: moveShape4 30s infinite;
}
.shapes__item--shape4 .shapes__img {
    opacity: 0.5;
    width: 7.5rem;
}
@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--shape5 {
    bottom: 12rem;
    left: 53%;
    opacity: 0.7;
    animation: moveShape5 45s infinite;
}
@keyframes moveShape5 {
    0% {
        transform: translateX(0) translateY(0);
    }
    40% {
        transform: translateX(-600px) translateY(-500px);
    }
    75% {
        transform: translateX(30px) translateY(-800px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.shapes__item--shape6 {
    bottom: 10rem;
    left: 40%;
    animation: moveShape3 35s infinite;
}
.shapes__item--shape7 {
    top: 0;
    right: 10rem;
    z-index: 1;
    animation: showTop 1s;
}
@keyframes showTop {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0%);
    }
}

/*SERVICES*/
.layout__services {
    position: relative;
    margin: 14rem 10rem 8rem;
    z-index: 1;
}
.services__grid {
    max-width: var(--mx-width);
    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(--subtitle);
}
.services__title,
.projects__title,
.stats__title,
.reviews__title,
.news__title {
    font-size: 6.7rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--title);
}
.services__list {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}
.services__service {
    width: 33%;
    height:100%;
    padding: 5rem 4rem;
    margin-bottom: 4rem;
    border-radius: 3rem;
    background: linear-gradient(180deg, var(--bg-services), rgba(255, 255, 255, 0));
    background-color: var(--secondary);
    border: 1px solid;
    border-image-source: linear-gradient(90deg, var(--bg-services), rgba(255, 255, 255, 0));
    transition: all 300ms ease-in-out;
    display: flex;
    flex-direction: row;
}
.services__service:hover {
    background-color: var(--bg-services);
}
.service__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;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: var(--title);
    transition: all 300ms ease-in-out;
}
.service__description {
    font-size: 1.7rem;
    line-height: 1.4;
    margin-bottom: 4rem;
    overflow: hidden;
}
.service__more {
    position: relative;
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 500;
    padding-left: 5rem;
    transition: all 300ms ease-in-out;
}
.service__more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 3.4rem;
    height: 0.25rem;
    background-color: var(--color-text-body);
    transition: all 300ms ease-in-out;
}
.service__title:hover,
.service__more:hover {
    color: var(--primary);
}
.service__more:hover::before {
    background-color: var(--primary);
}
.services__service--bottom {
    margin-top:20rem;
}
.services__service--middle {
    margin-top:10rem;
}
.services__service--top {
    margin-top:0rem;
}
.service-shapes__item {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
.service-shapes--shape1 {
    top: -7%;
    right: 7%;
}
.service-shapes--shape2 {
    top: 10%;
    left: 52%;
}
.service-shapes--shape3 {
    top:34%;
    left:5%;
}

/*PROJECTS*/
.layout__projects {
    position: relative;
    padding: 14rem 10rem;
    background-color: var(--bg-projects); 
    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 {
    display: flex;
    flex-direction: row;
    gap: 7rem;
    margin-bottom: 5.5rem;
}
.categories__item {
    position: relative;
    padding: 0.8rem 0;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 150ms ease-in-out;
}
.categories__item--active,
.categories__item:hover {
    border-bottom: 3px solid var(--primary);
}
.projects__all {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem 7rem;
}
.projects__project {
    width: calc(50% - 3.5rem);
}
.project__container-img {
    width: 100%;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}
.project__img {
    width: 100%;
    transition: all 800ms ease-in-out;
}
.projects__project:hover .project__img {
    transform: scale(1.2);
}
.project__content {
    padding: 4rem 5rem;
    background-color: var(--secondary);
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}
.project__title {
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--title);
    line-height: 1.2;
    margin-bottom: 1rem;
    transition: all 300ms ease-in-out;
}
.project__title:hover {
    color: var(--banner);
}
.project__tags {
    font-size: 1.7rem;
}
.project-shapes__item {
    position: absolute;
    top: 0;
    z-index: -1;
    pointer-events: none;
}
.project-shapes--shape1 {
    top: 4%;
    right: 11%;
}
.project-shapes--shape2 {
    top: 8%;
    right: 35%;
}
.project-shapes--shape3 {
    top: 35%;
    left: 4%;
}

/*STATS*/
.layout__stats,
.layout__clients {
    background-color: var(--bg-stats);
    padding: 14rem 10rem;
}
.stats__container,
.clients__container {
    max-width: var(--mx-width);
    margin: 0 auto;
}
.stats__header {
    text-align: center;
}
.stats__title,
.clients__title {
    font-size: 6.4rem;
    margin-bottom: 3rem;
    color: var(--secondary);
}
.stats__description,
.clients__description {
    width: 50%;
    margin: 0 auto 4rem;
    font-size: 2rem;
    line-height: 1.4;
    color: var(--color-text-description);
}
.stats__progress {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}
.stats__stat {
    width: 25%;
    text-align: center;
    padding: 7rem 2rem;
    border-radius: 2rem;
}
.stats__stat:hover {
    background: linear-gradient(180deg, var(--bg-stats), var(--bg-stats-hover));
    border: 1px solid var(--bg-stats-hover);
}
.stat__icon {
    margin-bottom: 2rem;
}
.stat__icon > img {
    margin: 0 auto 2rem;
}
.stat__count {
    display: inline-block;
    font-size: 6.4rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}
.stat__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--secondary);
}

/*REVIEWS*/
.layout__reviews {
    position: relative;
    z-index: 1;
    padding: 14rem 0 11rem;
}
.reviews__grid {
    max-width: var(--mx-width);
    margin: 0 auto;
}
.reviews__header {
    text-align: left;
    margin-bottom: 6rem;
}
.reviews__description,
.news__description {
    width: 50%;
    margin: 3rem 0;
    font-size: 2rem;
}
.reviews__container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}
.reviews__review {
    padding: 5rem 0 3rem 0;
}
.review__company {
    display: inline-block;
    margin-bottom: 3rem;
}
.review__description,
.news__description {
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--bg-stats);
    margin-bottom: 4rem;
}
.review__author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}
.author__container-img {
    border-radius: 3.5rem;
    overflow: hidden;
}
.author__content {
    flex: 1;
}
.author__name {
    display: block;
    font-weight: 500;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    color: var(--color-text-body);
    margin-bottom: 0.3rem;
}
.author__description {
    display: block;
    font-size: 1.5rem;
    color: var(--color-text-description);
    opacity: 0.7;
}
.review-shapes__item  {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 16%;
    right: 26%;
}

/*CLIENTS*/
.layout__clients {
    position: relative;
    z-index: 1;
    padding-bottom: 12rem;
}
.clients__header {
    text-align: left;
}
.clients__title {
    width: 50%;
    line-height: 1.2;
    font-weight: 500;
}
.clients__description {
    width: 40%;
    text-align: left;
    margin: 0;
    margin-bottom: 6rem;
}
.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 {
    filter:grayscale(0%);
    opacity: 1;
    cursor: pointer;
}
.client-shapes__item {
    position: absolute;
    z-index: -1;
    top: 10rem;
    right: 0;
}

/*NEWS*/
.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__title {
    margin-bottom: 3rem;
}
.news__description {
    text-align: center;
    margin: 0 auto;
}
.news__list {
    display: flex;
    flex-direction: row;
}
.news__new {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem 4rem 0;
    border-top: 1px solid var(--borders);
    border-bottom: 1px solid var(--borders);
    transition: all 300ms ease-in-out;
}
.news__new:hover {
    border-top-color: var(--primary);
}
.news__new:last-child {
    border-left: 1px solid var(--borders);
    padding-left: 2.5rem;
}
.new__container-img {
    display: block;
    border-radius: 3rem;
    overflow: hidden;
}
.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;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--title);
    transition: all 300ms ease-in-out;
}
.new__title:hover,
.new__more:hover {
    color: var(--primary);
}
.new__description {
    font-size: 1.7rem;
    font-weight: normal;
    line-height: 1.4;
    color: var(--color-text-description);    
    margin-bottom: 3rem;
}
.new__more {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--bg-stats-hover);
    transition: all 300ms 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 {
    top: 12rem;
    right: 0;
}
.new-shapes--shape3 {
    bottom: 8rem;
    left: 0;
}
.new-shapes--shape4 {
    bottom: 6rem;
    right: 16rem;
}

/*CONTACT*/
.layout__contact {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14rem 0 10rem;
}
.layout__contact::before {
    content:"";
    position: absolute;
    width: 100%;
    height: 65rem;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--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 {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 500;
    color: var(--bg-btn);    
}
.contact__title {
    width: 70%;
    margin: 0 auto 5.5rem;
    font-size: 6.4rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--secondary);
}
.contact__btn {
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 2.3rem 5.5rem;
    font-weight: 700;
    text-align: center;
    background-color: var(--secondary);
    border-radius: 20px;
    transition: all 300ms ease-in-out;
}
.contact__btn:hover {
    background-color: var(--bg-btn);
}
.contact__images {
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--borders);
    display: flex;
}
.contact__thumb {
    display: inline-block;
    position: relative;
}
.contact__thumb--chat {
    position: relative;
    left: 55rem;
}
.contact__thumb--laptop {
    position: absolute;
    bottom: 0;
    left: 16rem;
}
.contact__thumb--mobile {
    position: absolute;
    bottom: 0;
    right: 8rem;
}
.back-shapes__item {
    position: absolute;
    z-index: -1;
}
.back-shapes--shape1 {
    top: 0;
    left: 32%;
}
.back-shapes--shape2 {
    top: 18rem;
    left: 18%;
    opacity: 0.5;
    animation: moveShape3 20s infinite;
}
.back-shapes--shape3 {
    top: 31%;
    left: 20%;
    animation: moveShape4 25s infinite;
}
.back-shapes--shape4 {
    top: 44%;
    left: 28%;
    animation: moveShape3 25s infinite;
}
.back-shapes--shape5 {
    top: 50%;
    right: 17%;
    animation: moveShape4 30s infinite;
}
.back-shapes--shape6 {
    top: 26%;
    right: 21%;
    animation: moveShape5 30s infinite;
}
.back-shapes--shape7 {
    top: 30%;
    right: 15%;
    animation: moveShape3 30s infinite;
}

/*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__item {
    display: inline-block;
    color: var(--color-text-description);
    font-size: 3rem;
    padding: 0.5rem;
    transition: all 300ms ease-in-out;
}
.social__item:hover {
    color: var(--color-text-body);
}
.footer__main {
    display: flex;
    flex-direction: row;
}
.footer__fleft {
    flex-basis: 50%;
}
.fleft__container {
    border-right: 1px solid var(--borders);
    padding-right: 8rem;
    margin-right: 4rem;
    margin-bottom: 8rem;
}
.fleft__title {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 6.4rem;
    line-height: 1.2;
    font-weight:500;
    color: var(--title);
}
.fleft__subtitle {
    font-size: 1.7rem;
    line-height: 1.4;
    margin-bottom: 4rem;
}
.fleft__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    height: 7.2rem;
    padding: 1rem;
    background-color: var(--secondary);
    border-radius: 20px;
    box-shadow: 0 24px 48px -15px #ddd;
}
.fleft__mail-icon {
    display: inline-block;
    margin-left: 2rem;
}
.fleft__form-control {
    display: block;
    position: relative;
    margin-left: 1rem;
    padding: 0.5rem 1.5rem;
    height: auto;
    border: none;
    outline: none;
    color: var(--title);
    flex: 1;
}
.fleft__btn {
    height: 5.2rem;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 16px;
    padding: 1.4rem 3rem;
    transition: all 300ms ease-in-out;
}
.fleft__btn:hover {
    background-color: var(--banner);
}
.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;
    line-height: 1.2;
    color: var(--title);
    margin-bottom: 3rem;
}
.widget__link {
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0.8rem 0;
    transition: all 300ms linear;
}
.widget__link:hover {
    color: var(--banner);
}
.footer__bottom {
    display: flex;
    padding: 2.5rem 0;
    font-size: 1.7rem;
    border-top: 1px solid var(--borders);
}
.footer__copyright {
    flex-basis: 50%;
}
.copyright__text {
    display: inline-block;
    color: var(--color-text-description);
}
.copyright__text > a {
    display: inline;
}
.footer__links {
    flex-basis: 50%;
}
.footer__flinks {
    display: flex;
    justify-content: flex-end;
    gap: 3.5rem;
    position:relative;
    color: var(--color-text-description);
}
.flinks__title {
    transition: all 300ms ease-in-out;
}
.flinks__title:hover {
    color: var(--banner);
}
.flinks__item {
    display: inline-block;
    position: relative;
}
.flinks__item--separator::after {
    content:"";
    position: absolute;
    top: 46%;
    right: -12%;
    width: 4px;
    height: 4px;
    background-color: var(--color-text-description);
    border-radius: 50%;
}

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