@font-face {
    font-family: 'Rubik';
    src: url('../font/Rubik/Rubik-VariableFont_wght.ttf') format('woff2'),
         url('../font/Rubik/static/Rubik-BlackItalic.ttf') format('woff'),
         url('../font/Rubik/static/Rubik-BoldItalic.ttf') format('woff'),
         url('../font/Rubik/static/Rubik-ExtraBoldItalic.ttf') format('woff'),
         url('../font/Rubik/static/Rubik-MediumItalic.ttf') format('woff'),
         url('../font/Rubik/static/Rubik-SemiBoldItalic.ttf') format('woff');
    font-display: swap;
    font-style: normal;
}


:root {
    --font: 'Rubik', sans-serif;
    --font2: 'Barlow Condensed', sans-serif;

    --bg-first: #007878;
    --bg-second: #F8C055;
    --bg-last: #9C9C9C;
    --bg-white: #fbfbfb;
    --bg-black: #484848;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--font);
}

body {
    background-color: #F5F5F5;
}

/* Globales */
a {
    text-decoration: none;
    font-family: var(--font);
    color: var(--bg-white);
    font-size: 20px;
    font-style: normal;
    font-weight: 100;
}

button {
    border: none;
    background-color: transparent;
}

p,
h1,
h2,
h3 {
    font-family: var(--font);
}

img {
    max-width: 100%;
    height: 100%;
}

/* Clases */
.container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}


.header {
    position: sticky;
    inset: 0;
    z-index: 999;
    background-color: var(--bg-white);
    border-bottom: 1px solid #0002;
}

.nav {
    display: flex;
    grid-auto-flow: column;
    gap: 6rem;
    width: 100%;
    padding: 1rem;
    border-radius: .7rem;
    justify-content: space-between;
    align-items: center;
    height: 63px;
}

.nav__list {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    transition: .3s linear;
    z-index: 0;
}

.nav__list.menu {
    display: flex;
    flex-direction: column;

    position: fixed;
    top: 3.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 1rem;
    list-style: none;
    gap: 0rem;
    background-color: var(--bg-white);
}

.nav__flex {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.mobile__icon{
    width: 16px;
    height: 17px;
}
.img-poli{
    width: 12;
    height: 8;
}

.mb-contain-proyect{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}
.mb-proyect-contain{
    display: grid;
    overflow: auto;
    grid-template-columns: 77% 77% 77%;
    gap: .5rem;
}

.mb-accordion{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .mobile__icon {
        display: none;
    }

    .header {
        padding: .5rem;
    }    
}

.menu .nav__item {
    padding: 1rem 0;
    border-bottom: 1px solid #0002;
}

.menu .nav__link {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 200;
    font-size: 20px;
    line-height: 20px;
    color: #484848;
}

.nav__link > p{
    transition: .2s linear;
}
.nav__link > p:hover{
    color: var(--bg-first);
    transition: .2s ease;
}
.nav__link.nav_active > p{
    color: var(--bg-first);
}

@media (min-width: 768px) {
    .nav__list {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        transition: .3s linear;
        background-color: transparent;
        z-index: 0;
        list-style: none;
        display: grid;
        grid-auto-flow: column;
        gap: 2rem;
        justify-content: space-evenly;
        width: 100%;
    }

    .nav__list.menu {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        transition: .3s linear;
        background-color: transparent;
        z-index: 0;
        list-style: none;
        display: grid;
        grid-auto-flow: column;
        gap: 2rem;
    }

    .menu .nav__item {
        padding: 0;
        border-bottom: 0;
    }

    .menu .nav__link {
        font-family: 'Rubik';
        font-style: normal;
        font-weight: 100;
        font-size: 20px;
        line-height: 20px;
        color: var(--bg-black);
    }
}

@media (min-width: 768px) {
    .menu .nav__link p {
        font-family: 'Rubik';
        font-style: normal;
        font-weight: 100;
        font-size: 20px;
        line-height: 20px;
    }

    .nav__link p {
        font-weight: 400;
        font-size: 15px;
        line-height: 24px;

        color: var(--bg-black);
    }
}

.nav__link {
    color: var(--bg-black);
}

.nav__link:hover {
    color: var(--bg-second);
}

.nav__active {
    color: var(--bg-second);
}

.nav__logo {
    font-size: 1.8rem;
    font-weight: 300;
}

.nav__menu {
    display: none;
}

.nav__icon {
    width: 30px;
}

/* Hero Main */
.hero__main {
    grid-area: content;
    display: grid;
    gap: 2em;
    grid-template-columns: 1fr 1fr;
    /* padding-top: 10px; */
}

@media (min-width: 1400px) {
    .hero__main {
        padding-top: 70px;
    }
}

.hero__title {
    color: var(--bg-second);
    font-family: var(--font2);
    font-style: normal;
    font-weight: 400;
    font-size: 64px;
    line-height: .9em;
    letter-spacing: 0.06em;
}

.hero__title__span {
    color: var(--bg-white);
    font-size: 48px;
    font-weight: 500;
    font-family: var(--font);
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 40px;
        line-height: .9em;
    }

    .hero__title__span {
        font-size: 34px;
    }
}

@media (min-width: 1400px) {
    .hero__title {
        font-size: 64px;
        line-height: .9em;
    }

    .hero__title__span {
        font-size: 48px;
    }
}

.hero__subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    margin: 32px 20% 61px 0;
}

.hero__cta {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    font-style: normal;
    padding: 17px 45px;
    border: 1px solid var(--bg-white);
    border-radius: 6px;
    display: inline-block;
    transition: .2s ease-in-out;
    background-color: var(--bg-second);
    color: var(--bg-first);
}

.hero__cta:hover {
    background-color: var(--bg-first);
    color: var(--bg-second);
    transition: .2s ease-in-out;
}

.hero__carousel {
    width: 100%;
    padding: 1rem 1rem 0rem 1rem;
    border-radius: 5rem!important;
}
@media (min-width: 900px) {
    .hero__main{
        display: none;
    }
}
@media (max-width: 768px) {

    .nav__menu {
        display: block;
    }

    .hero__main {
        grid-template-columns: 1fr;
        grid-template-rows: max-content;
        text-align: center;
    }

    .hero__picture {
        grid-row: 1/2;
    }

    .hero__img {
        max-width: 400px;
        display: block;
        margin: 0 auto;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.3rem;
    }
}

/* Carousel */
.slider__container {
    position: relative;
}

.slideshow-container {
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: .4rem;
}
.slideshow-inner{
    overflow: hidden;
    border-radius: .8rem;
    border-bottom-left-radius: 6rem;
}
.corner-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    background-color: var(--bg-first);
    border-radius: 50%;
    transform: translate(-50%, 50%);
    z-index: 2;
}

.mySlides__bg {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 200%;
}
.mySlides__bg.slider-left {
    position: absolute;
    left: -200%;
    transition: .5s ease;

}
.mySlides__bg.slider-active-mobile{
    position: relative;
    left: 0;
    transition: .2s linear;
}
.mySlides__img{
    width: 100%;
    object-fit: cover;
}


/* Texto y dotContainer */
.dotContainer__text_h2 {
    font-weight: 400;
}

.dotContainer {
    overflow: hidden;
    opacity: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dotContainer__dot {
    display: flex;
    justify-content: space-between;
    position: absolute;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.dot-mobile:nth-child(1) {
    cursor: pointer;
    display: inline-block;
    transition: background-color .3s ease;
    padding: .8rem;
    border-radius: 50%;
}
.dot-mobile:nth-child(2) {
    cursor: pointer;
    display: inline-block;
    transition: background-color .3s ease;
    padding: .8rem;
    border-radius: 50%;
}


/* Progreso Container */
.progressContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.progressContainer__span {
    width: 100%;
    height: 1px;
    background-color: var(--bg-last);
}

.span-active {
    height: 3px;
    background-color: var(--bg-second);
    margin-top: -2px;
    transition: all .2s ease-out;
}

.span-active:first-child {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.span-active:nth-child(4) {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

#labl {
    font-family: var(--font);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin-top: 1rem;
}

.mb-title h2{
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--bg-black);
}
.mb-title h2 > span{
    color: var(--bg-first);
}
.mb-title p{
    font-size: 1.2rem;
    color: var(--bg-black);
}

.mb-container-div{
    display: flex;
    gap: .7rem;
    box-shadow: 1px 1px 5px rgba(34, 34, 34, 0.2);
    background-color: var(--bg-white);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 1rem;
}
.mb-container-link{
    color: var(--bg-first);
    font-size: .7rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: .6rem;
}
.mb-container-link p {
    font-size: 1rem;
    font-weight: 400;
}
.mb-button {
    width: 230px;
    height: 62px;
    left: 200px;
    top: 470px;

    border-radius: 9px;
    font-family: 'Rubik';
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;

    text-align: center;
    letter-spacing: 0.02em;

    color: var(--bg-first);

    cursor: pointer;
    transition: .2s linear;

    display: flex;
    justify-content: center;
    align-items: center;
}
.mb-contain{
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.mb-title-section{
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 1rem;
    color: var(--bg-first);
    background: linear-gradient(90deg, #004747 100%, rgba(0,71,71,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.mb-title-section-form{
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: var(--bg-first);
    width: 70%;
    margin: auto;
    padding: 1rem 0;
}

.mb-title-section.mb-banner-section{
    text-align: left!important;
    padding: 0 1rem;
}
.mb-contain-link {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.mb-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;

    border-radius: 2rem;
    box-sizing: border-box;
    padding: .5rem;

    min-height: 120px;
    text-align: center;

    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--bg-black);

    box-shadow: none; /* Por si había sombra */
    border: none;
}

.mb-link img {
    width: 80px;
    height: 80px;
    object-fit: contain!important;
    aspect-ratio: 1/1!important;
}

.mb-accordion-flex{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

  @media (max-width: 768px) {
    .mb-accordion {
      display: none;
    }

    .mb-accordion-mobile {
      display: flex;
    }
  }


@media (max-width: 480px) {
    .mb-link {
        width: 100%; /* 1 por fila en pantallas pequeñas */
    }
}

/*TODO: 1200px */
.mobile__section3{
    margin-top: 2rem;
}
.mb-title-section span{
    font-weight: lighter;
}
.mb-quality{
    margin-top: 6rem;
}
.mb-home-quality{
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
@media (max-width: 1200px) {
    .container {
        max-width: 900px;
    }

    .nav__list {
        gap: 3em;
    }

    /* Hero Main */
    .hero__main {
        grid-template-columns: 2fr 420px;
    }

    .hero__title {
        font-size: 40px;
        line-height: 1.2em;

    }

    .hero__title__span {
        font-size: 40px;
    }

    .hero__subtitle {
        font-size: 20px;
        margin: 22px 13% 61px 0;
    }
}

@media (max-width: 900px) {

    /* Nav */
    .nav {
        height: 55px;
    }

    .container {
        max-width: 700px;
        width: 100%;
    }

    /* Hero Main */
    .hero__main {
        grid-template-columns: 1fr;
        /* padding-top: 10px; */
    }

    /* mobile */
    .hero__title__mobile {
        color: black;
        font-family: var(--font);
        font-style: normal;
        font-weight: 400;
        font-size: 1.4rem;
        line-height: 1.2em;
        text-align: start;
    }

    .hero__title__span__mobile {
        color: var(--bg-first);
        font-weight: 800;
    }

    .mySlides__bg {
        width: 100%;
        height: 250px;
    }

    .span-active {
        background-color: var(--bg-first);
    }

    #labl {
        display: none;
    }

    #labl__mobile {
        font-family: 'Rubik';
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 19px;
    }

    .dotContainer__text_h2 {
        display: none;
    }

    .active,
    .dot:hover {
        background-color: var(--bg-first);
    }

    .hero__texts {
        display: none;
    }

    .mySlides__bg {
        width: auto;
    }

    /* Main */
    .main {
        display: none;
    }
}
.her__mobile{
    padding: 0 1rem;
}
.mobile{
    padding: 0 1rem;
}
@media (min-width: 900px) {
    .her__mobile {
        display: none;
    }

    #labl__mobile {
        display: none;
    }

    .mobile {
        display: none;
    }
}

/* Main Container */


.container__text {
    text-align: center;
}

.container__padding {
    padding: 1rem;
}

.container__subtitle {
    margin-top: 2rem;
    margin-bottom: 7px;
    color: var(--bg-first);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
}

.container__title {
    color: var(--bg-black);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
}

.card__father {
    margin-top: 65px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.card__child {
    display: flex;
    justify-content: end;
}

.card__container {
    width: 78%;
}

.card__icon {
    font-size: 96px;
    font-family: var(--font);
    font-weight: 300;
    color: var(--bg-first);
}

.card__icon__span {
    text-shadow: 4px 1px 1px #F8C055;
}

.card__icon__img {
    width: 88px;
    height: 109px;
}

.card__title {
    color: #484848;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 36px;
    letter-spacing: 0.02em;
}

.card__text {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
}

/* TODO:Main 1200px */
@media (max-width: 1210px) {

    .container__subtitle {
        font-size: 20px;
    }

    .container__title {
        font-size: 35px;
    }

    .card__father {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .card__child {
        display: flex;
        justify-content: center;
    }

    .card__container {
        width: 58%;
    }

    .card__icon {
        font-size: 96px;
        font-family: var(--font);
        font-weight: 300;
        color: var(--bg-first);
    }

    .card__icon__span {
        text-shadow: 4px 1px 1px #F8C055;
    }

    .card__icon__img {
        width: 88px;
        height: 109px;
    }

    .card__title {
        color: #484848;
        font-size: 30px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 1rem;
        margin-top: 1rem;
        line-height: 36px;
        letter-spacing: 0.02em;
    }

    .card__text {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 21px;
    }
}

/* Service */
.service {
    margin: 85px 0;
}

.service__div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.service__div__child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service__img {
    position: absolute;
    margin-left: -4rem;
}

.service__div_text {
    width: 80%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    margin-top: 10px;

    color: var(--bg-black);
}

.service__content {
    margin-left: 3rem;
}

/* ------ */
.service__div__child2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: end;
}

.service__div__container {
    display: flex;
    justify-content: end;
}

.service__div__link {
    width: 80%;
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: var(--bg-black);
    padding: .3rem 0;

    display: flex;
    align-items: center;
}

.service__div__link>img {
    width: 2rem;
    margin-right: .2rem;
}

@media (max-width: 1200px) {

    .service__div__link {
        width: 100%;
    }
}

@media (max-width: 1004px) {}

/* Nosotros */
.nosotros {
    display: grid;
    grid-template-columns: 1fr 12fr 15fr;
    margin-bottom: 5rem;
    margin-top: 130px;
}

.nosotros__child {
    margin-right: 2rem;
}

.nosotros__title {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
}

.nosotros__subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #9C9C9C;
    margin: .2rem 0 .6rem 0;
}

.nosotros__text {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #484848;
}

.nosotros__child__div {
    display: flex;
    align-items: center;
    margin-top: 4rem;
}

.nosotros__img {
    margin: 0 1rem;
}

.nosotros__img:first-child {
    margin: 0 .6rem 0 0;
}

.nosotros__child2 {
    background-color: #F0F0F0;
    filter: drop-shadow(7px 6px 8px rgba(0, 0, 0, 0.08));
    margin-left: 2rem;
    margin-right: 1rem;
    border-radius: .4rem;
    padding: 1.3rem 1rem 3.6rem 1rem;
    box-shadow: 5px 4px 3px 1px rgba(0, 0, 0, 0.052);

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: .5rem;
}

.nosotros__width {
    text-align: center;
    width: 196px;
    height: 380px;
}

@media (max-width: 1400px) {
    .nosotros__img {
        width: 2.5rem;
    }
}

@media (max-width: 1200px) {

    /* Nosotros */
    .nosotros {
        grid-template-columns: 1fr 7fr 450px;
    }

    .nosotros__child {
        margin-right: 2rem;
    }


    .nosotros__img {
        width: 2.3rem;
    }

    .nosotros__img:first-child {
        margin: 0 .6rem 0 0;
    }

    .nosotros__child2 {
        background-color: #F8C05533;
        filter: drop-shadow(7px 6px 8px rgba(0, 0, 0, 0.08));
        margin-left: 2rem;
        margin-right: 1rem;
        border-radius: .4rem;
        padding: 1.3rem 1rem 3.6rem 1rem;
        box-shadow: 5px 0px 8px 1px #0003;

        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: .5rem;
    }

    .nosotros__width {
        text-align: center;
        width: 196px;
        height: 380px;
    }
}

@media (max-width: 1004px) {}

.proyectos__text {
    margin-top: .5rem;
    font-weight: 300;
    font-size: 24px;
}

.proyectos__img {
    object-fit: cover;
}

/* Nuestros ultimos proyectos */
.last__project {
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 57px;
    letter-spacing: 0.02em;
    color: var(--bg-first);
}

.last__div__text {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #484848;
}

/* Project service */
.overflow {
    scrollbar-width: none;
    display: grid;
    gap: 2rem;
    grid-template-columns: max-content max-content max-content max-content;
    margin: 0rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    overflow-y: hidden;
    overflow-x: scroll;
    scroll-snap-type: mandatory;
    cursor: pointer;
}

.overflow::-webkit-scrollbar {
    width: 2px;
    height: 14px;
}

.overflow::-webkit-scrollbar-track {
    background: var(--bg-white);
}

.overflow::-webkit-scrollbar-thumb {
    background-color: #DADADA4D;
    border-radius: 20px;
    border: 3px solid var(--bg-white);
}


.project__service {
    margin: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 502.2px;
    height: 339.98px;
    background-color: #F0F0F0;
    box-shadow: 5px 3px 3px 1px rgba(0, 0, 0, 0.077);
    filter: drop-shadow(7px 6px 8px rgba(0, 0, 0, 0.08));
    border-radius: 15px;
    margin-bottom: 2rem;
}

.overflow>section:first-child {
    margin: 0 2rem 0;
}

.project__content__img>img {
    object-fit: cover;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.project__content__text {
    margin: 0 26px;
}

.project__title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 22px;
    margin: 20px 0;
}

.project__text {
    margin: 17px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

.project__text>strong {
    font-weight: 500;
}

.footer {
    border-top: 1px solid var(--bg-black);
    max-width: 1100px;
    margin: auto;
    display: flex;
    height: 310px;
    padding: 2rem 0;
    width: 100%;
}

@media (min-width: 768px) {
    .footer {
        height: 300.19px;
    }

    .mobile__finish {
        display: none;
    }
}

.footer__section {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.title__footer {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 24px;
    color: #007878;
    margin-bottom: .5rem;
}

.description__footer {
    display: flex;
    align-items: start;
    gap: 1rem;

    flex-direction: column;
    color: var(--bg-black);
    font-size: .9rem;
}

.link__footer {
    font-family: var(--font);
    font-weight: 300;
    font-size: .9rem;
    color: var(--bg-black);
}

.redes__footer {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: .7rem;
}

.margin__footer {
    margin-left: .3rem;
}

.logo__footer {
    object-fit: contain;
    justify-self: start;
    align-self: flex-start;
}

@media (max-width: 1004px) {
    .logo__footer {
        margin: 2rem auto 0 auto;
    }
}

/* Mobile effect */
.mobile__move__arrow {
    transform: rotate(180deg);
    transition: .2s linear;
}

.mobile__move__arrow.addModal {
    transform: rotate(0);
    transition: .2s linear;
}

/* Mobile */
.mobile__img__logo {
    width: 170px;
    height: 56px;
}

.mobile__img__obrero {
    width: 87px;
    height: 122px;
}

.mobile__section {
    display: grid;
    grid-template-columns: 1fr 3fr;

    gap: .5rem;

    background-color: #e6e6e6;
    border-radius: .4rem;

    padding: 1rem;

    box-shadow: 3px 3px 5px 1px #0000003c;

    margin: 0 0 2rem 0;
}

.mobile__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
}

.mobile__title {
    font-size: 18px;
    font-weight: 500;

    margin-bottom: .7rem;
}

.mobile__title__border {
    padding-bottom: 14px;
    padding-left: .7rem;
    border-bottom: 2px solid var(--bg-first);
}

.mobile__title__nosotros {
    font-size: 18px;
    font-weight: 500;
}

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

.mobile__padding__nosotros {
    padding: 1rem .5rem;
    border-radius: .5rem;
    background-color: #F0F0F0;
    margin-bottom: .5rem;
}

.mobile__description {
    font-size: 13px;
    margin-bottom: .7rem;
}

.mobile__bottom {
    background-color: var(--bg-second);
    border-radius: .3rem;
    padding: .4rem 1.3rem;
    color: #222222;

    font-size: 17px;
    font-weight: 400;
    align-self: flex-start;
    box-shadow: 0 0 2px 1px #0000002b;
}

/* section 1 */
.mobile__section1 {
    display: grid;
    grid-template-columns: 4fr 1fr;


    background-color: var(--bg-first);
    border-radius: .2rem;
    height: 80px;
    position: relative;
}

.mobile__flex__trabajamos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 0 2rem;
    flex-direction: column;
}

.margin__img {
    margin-top: -1.5rem;
}

.mobile__work {
    font-weight: 500;
    color: var(--bg-black);
    font-size: .8rem;
}

.mobile__work__p {
    color: var(--bg-white);
    font-size: 13px;
    margin-top: .3rem;
}

.mobile__section2 {
    margin: 2rem 0;
}

.link__mobile {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: .6rem;
    row-gap: 1.3rem;

    margin-top: 1rem;
}

.mobile__flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mobile__last__flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 700px) {
    .mobile__last__flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        align-items: start;
    }
}

.mobile__border {
    border-bottom: 1px solid rgba(0, 0, 0, 0.284);
    padding: 1rem 0;
}

.mobile__link {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: black;
    text-align: start;
    padding: 0 1rem;
}

.mobile__nosotros__flex {
    display: none;
}

.mobile__nosotros__flex.addModal {
    display: flex;
    position: relative;
    left: 0;
    flex-direction: column;
    gap: .3rem;
    transition: .4s linear;
}

.mobile__title__color {
    color: var(--bg-first);
}

.trabajamos__img__width {
    position: absolute;
    right: 1rem;
    top: -1rem;
}

@media (min-width: 900px) {
    .mobile__last__flex {
        padding-top: 2.5rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .mobile__card {
        width: 100%;
        height: 100%;
    }
}

/* arrow-img */
.arrow-img {
    width: 21px;
    height: 21px;
}

@media (min-width: 768px) {
    .arrow-img {
        background-color: transparent;
    }
}

.mobile__card {
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: .5rem;
    justify-content: center;

    background-color: #e6e6e6;
    border-radius: .3rem;

    padding: 1rem 1rem;
}

.mobile__card img {
    width: 51px;
    height: 51px;
}

.mobile__nosotros__card {
    font-size: 16px;
    line-height: 1.4rem;
}

.mobile__description__card {
    font-size: 13px;
    line-height: 1.4rem;
}

.mobile__project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 .3rem 0 0;
    gap: 1rem;

    background-color: #e6e6e6;
    cursor: pointer;
}

@media (min-width: 768px) {

    .mobile__description__card {
        font-family: 'Rubik';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 32px;
    }
    
}
@media (min-width: 900px) {
    .mobile__project {
        grid-template-columns: 1fr;    
        padding: 0;
        gap: 0;
        
    }
}
.mobile__home__margin {
    margin: 2rem 0;
}

.mobile__last__margin {
    margin: 1rem 0 4rem 0;
}

.mobile__cardProject {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: .5rem 0;
    height: 100%;
}

@media (min-width: 768px) {
    .mobile__cardProject {
        padding: 1rem;
    }
}

.mobile__title__project {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: .5rem;
}

.mobile__title__span {
    color: var(--bg-first);
}

.mobile__mt {
    margin-top: 1rem;
}
@media (min-width: 768px) {
    .mobile__title__project {
        font-family: 'Rubik';
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        line-height: 32px;
    }
}
@media (max-width: 768px) {

    .footer {
        padding: 2rem 1rem;
        position: relative;
    }

    .footer__section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .description__footer {
        gap: .4rem;

        font-size: 13px;
    }

    .link__footer {
        font-family: var(--font);
        font-weight: 300;
        font-size: 13px;
    }

    .redes__footer {
        justify-content: start;

        gap: .5rem;
    }

    .mobile__social {
        width: .2rem !important;

    }

    .margin__footer {
        margin-left: .3rem;
    }

    .logo__footer {
        display: none;
    }

    /* finish */
    .mobile__finish {
        display: flex;
        justify-content: center;

        position: absolute;
        bottom: .4rem;
        left: 0;
        right: 0;
    }

    .footerFinish {
        font-size: 17px;
        font-family: var(--font2);
    }

    .mobile__construyendo {
        font-size: 13px;
    }
}

/* Page: last proyect */
.mobile__lastProyect {
    color: var(--bg-first);
    margin-top: 0;
    margin-right: 1rem;
    font-weight: 600;
    text-align: end;
    font-size: 14px;
}

@media (min-width: 768px) {
    .mobile__lastProyect {
        display: none;
    }
}

.lastProyect__title {
    margin-top: 1rem;
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0.02em;

    color: #484848;
}

.mobile__img__lastproyect {
    object-fit: cover;
    width: 100%;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.mobile__width__lastProyect {
    border-radius: .3rem;
    box-shadow: 0px 0px .2rem .1rem #00000035;
}

.ctp-active {
    position: relative;
    background-color: var(--bg-first);
    color: var(--bg-white);
}
@media (min-width: 768px) {

    .mobile__img__lastproyect {
        height: auto;
        aspect-ratio: 16/13;
    }


    .mobile__width__lastProyect{
        border-top-left-radius: .7rem;
        border-top-right-radius: .7rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
    .mobile__width__lastProyect:hover {
        background-color: var(--bg-first);
        color: var(--bg-white);
        position: relative;
        transition: .1s ease-in;
    }

    .ctp-active {
        border-top-left-radius: .7rem;
        border-top-right-radius: .7rem;
    }

    .ctp-active::after {
        content: '';
        position: absolute;
        bottom: -.5rem;
        right: 2rem;
        width: 1rem;
        height: 1rem;
        transition: .1s ease-in;


        background: #007878;
        border-radius: 1px;
        transform: rotate(-45deg);
    }

    .mobile__width__lastProyect:hover::after {
        content: '';
        position: absolute;
        bottom: -.5rem;
        right: 2rem;
        width: 1rem;
        height: 1rem;
        transition: .1s ease-in;


        background: #007878;
        border-radius: 1px;
        transform: rotate(-45deg);
    }
}

.mobile__span {
    line-height: 24px;
}

.mobile__logo__width {
    width: 1.7rem;
}

/* Effect arrow header */
@media (max-width: 968px) {
    .center {
        display: none;
    }
}

.center {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 85px;
    border-left: 6px dashed rgba(255, 255, 255, .1);
}

.arrow {
    position: absolute;
    top: 0;
    left: -6px;
    width: 6px;
    background: #fff;
    animation: animate 2s infinite;
}

.arrow:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 20px;
    height: 20px;
    border-bottom: 6px solid #fff;
    border-right: 6px solid #fff;
    transform: rotate(45deg);
}

@keyframes animate {
    0% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(80px);
        opacity: 1;
    }

    100% {
        transform: translateY(160px);
        opacity: 0;
    }
}

/* wsp */
/*FIXED WHATSAPP */
.wsp {
    position: absolute;
    width: 0;
    visibility: inherit;
    padding: 0;
    line-height: 0;
    font-size: 0;
    opacity: 0;
    right: -50%;
}

.wsp.wsp--image {
    position: fixed;
    opacity: 1;
    right: 0.5rem;
    top: 80%;
    width: 3rem;
    height: 3rem;
    transition: 1.5s;
    z-index: 3;

    background-color: #56D062;
    border-radius: 50%;
    padding: .5rem;

    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

@media (min-width: 768px) {
    .wsp.wsp--image {
        top: 86%;
        right: 2rem;
        width: 4rem;
        height: 4rem;
        padding: .7rem;
    }
}

@media (min-width: 1024px) {
    .wsp.wsp--image {
        right: 1rem;
        transition: 1s;
    }
}

@media (min-width: 1400px) {
    .wsp.wsp--image {
        top: 86%;
        right: 10%;
        transition: 1s;
    }
}

.wsp.wsp--image:hover {
    transform: scale(1.048);
    transition: .2s linear;
}

.wsp.wsp--image:active {
    transform: scale(.9);
}



/* Contenedor carga */
#contenedor_carga {
    background-color: var(--primario);
    height: 100%;
    width: 100%;
    position: fixed;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10;
}

#carga {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;

    -webkit-animation: girar 2s linear infinite;
    -o-animation: girar 2s linear infinite;
    animation: girar 2s linear infinite;
}

@keyframes girar {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 60px;
        height: 60px;
        opacity: 1;
    }
}

/* Details proyects */
.body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--bg-first);
}

.details__main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.details__footer {
    background-color: var(--bg-first);
    border-top: 1px solid black;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    flex-direction: column;
    height: 160px;
}

.details__img {
    flex: 1;
}

.details__flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.details__title {
    padding-top: 1rem;
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    color: #F8C055;
}

.details__estate {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 16px;
    color: #FFFFFF;
}

/* Slider */

.slides-container {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slide-arrow {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 4rem;
    background-color: var(--bg-first);
    border: none;
    width: 2rem;
    font-size: 3rem;
    padding: 0;
    cursor: pointer;
    transition: opacity 100ms;
    color: var(--bg-white);
}

.slide-arrow:hover,
.slide-arrow:focus {
    opacity: 1;
}

#slide-arrow-prev {
    left: 0;
    padding-left: 0.25rem;
    border-radius: 0 2rem 2rem 0;
}

#slide-arrow-next {
    right: 0;
    padding-left: 0.75rem;
    border-radius: 2rem 0 0 2rem;
}

.slide {
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.slide__img {
    height: 592px;
    object-fit: cover;
}

/* tu proyecto */
.tuProyecto__subtitle {
    margin: .2rem 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.02em;

    color: #484848;
}

.tuProyecto__subtitle__span {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #007878;
}

.tuProyecto__borderBottom {
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-first);
}

.tuProyecto__flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 1rem 0;
}

.tuProyecto__subtitle__child {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
    margin-bottom: .3rem;
    color: #484848;
}

.tuProyecto__description__child {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #484848;
}


.tuProyecto__grid {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    padding: 0 1rem 0 0;
}

.tuProyecto__flex__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.tuProyecto__number {
    text-align: center;
    color: #007878;
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700;
    font-size: 96px;
    line-height: 114px;
    letter-spacing: 0.02em;
}

.tuProyecto__link {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    color: var(--bg-first);
    text-decoration: underline;
}

.tuProyecto__borderBottom__child {
    border-bottom: 1px solid #00000065;
    padding-bottom: .5rem;
}

.tuProyecto__width {
    width: 51px;
    height: 51px;
}

.tuProyecto__emoji__flex {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.tuProyecto__font {
    font-size: 31px;
}

.details__footer__mobile {
    position: relative;
}

.dk-proyect {
    display: none;
}

.dk-img {
    display: none;
}

/* Desktop logo */
.logo__desktop {
    display: none;
}

@media (min-width: 768px) {
    .bd-proyect {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (min-width: 1400px) {
    .bd-proyect {
        height: 100vh;
    }
}

/* Desktop */
.mls-none {
    display: none;
}

@media (min-width: 768px) {
    .mls-none {
        display: block;
    }

    .mls-span {
        color: var(--bg-first);
    }

    .tuProyecto__flex {
        flex-direction: row;
    }

    .tuProyecto__grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .tuProyecto__number {
        text-align: start;
    }

    .tuProyecto__borderBottom__child {
        border-bottom: 0;
        border-left: 1px solid #00000065;
    }

    /* tu proyecto */
    .tuProyecto__emoji__flex {
        display: none;
    }

    .mb-proyect {
        display: none;
    }

    .dk-proyect {
        display: block;
    }

    .dk-img {
        display: block;
        font-size: 3rem;
    }

    /* Logo - Nosotros */
    .mb-proyect-mobile {
        display: none;
    }

    /* Desktop logo */
    .logo__desktop {
        display: block;
    }
}

/* Last proyect */
.lastProyect__title {
    display: none;
}

.mb-lastproyect {
    display: none;
}

/* Tabmenu */
#tabMenu{
    padding: 0 1rem;
}

.main_last{
    padding: 0 1rem;
}
@media (min-width: 768px) {
    .main_last{
        flex: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }
}

/* --- NUEVA SECCIÓN PROYECTOS MOBILE --- */
.proyect-card {
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s;
  padding-bottom: 2.5rem;
  margin-bottom: 1.2rem;
}
.proyect-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1.2rem;
}
.proyect-card__content {
  padding: 1rem 1rem 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.proyect-card__title {
  font-family: var(--font2);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-black);
  margin-bottom: .2rem;
}
.proyect-card__subtitle {
  font-family: var(--font);
  font-size: .95rem;
  color: #888;
  margin-bottom: .2rem;
}
.proyect-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: .2rem;
}
.proyect-card__tag {
  background: #F8C055;
  color: #004747;
  font-size: .8rem;
  border-radius: .5rem;
  padding: .1rem .6rem;
  font-family: var(--font);
  font-weight: 600;
}
.proyect-card__desc {
  font-family: var(--font);
  font-size: .95rem;
  color: #484848;
  margin-bottom: .2rem;
}
.proyect-card__btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform .15s;
  z-index: 2;
}
.proyect-card__btn:hover {
  transform: scale(1.08);
}
#root {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
@media (min-width: 700px) {
  #root {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }
}
.proyect-card__carousel {
  position: relative;
  width: 100%;
  /* height: 160px; */
  /* overflow: hidden; */
}
.proyect-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1.2rem;
  display: block;
}
.proyect-card__arrow {
  position: absolute;
  bottom: 1rem;
  background: rgba(0,71,71,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0.9;
  transition: background .2s;
}
.proyect-card__arrow--prev { left: 1rem; }
.proyect-card__arrow--next { right: 1rem; }
@media (min-width: 700px) {
  .proyect-card__carousel {
    /* height: 220px; */
  }
  .proyect-card__img {
    height: 300px;
  }
  .proyect-card__arrow {
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.3rem;
    display: none;
  }
  .proyect-card__carousel:hover .proyect-card__arrow {
    display: flex;
  }
}
/* --- FIN NUEVA SECCIÓN PROYECTOS MOBILE --- */

/* Timeline Parallax Styles Mobile */
.timeline-container {
  max-width: 98vw;
  margin: 0 auto;
  padding: 2rem 0.5rem 1.5rem 0.5rem;
}
.timeline-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: #004747;
  margin-bottom: 0.2rem;
  font-family: var(--font2);
}
.timeline-subtitle {
  text-align: center;
  color: #007878;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-family: var(--font);
}
.timeline {
  position: relative;
  padding: 0;
  min-height: 400px;
}
.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  width: 6px;
  height: 80px;
  background: linear-gradient(to bottom, #007878 0%, #F8C055 100%);
  border-radius: 3px;
  z-index: 0;
  transition: height 0.3s;
}
.timeline-step {
  position: relative;
  min-height: 100px;
  z-index: 1;
}
.timeline-step-content,
.timeline-step-content.left,
.timeline-step-content.right {
  left: 0 !important;
  width: 90vw;
  min-width: unset;
  margin-left: 48px;
  text-align: left;
  padding: 1rem 1rem 1rem 1.5rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #0001;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.timeline-icon {
  width: 48px;
  height: 48px;
  background: #e0f7fa;
  border-radius: 50%;
  border: 4px solid #007878;
  box-shadow: 0 0 0 4px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 0.5rem 0 0;
}
.timeline-step.active .timeline-icon {
  border-color: #F8C055;
  background: #fffbe6;
}
.timeline-step h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #004747;
  font-family: var(--font2);
}
.timeline-step p {
  margin: 0;
  color: #484848;
  font-size: 0.98rem;
}
.timeline-approved {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
}
.timeline-approved h2 {
  color: #004747;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.timeline-approved p {
  color: #007878;
  font-size: 1.05rem;
  font-weight: 600;
}
/* Nodos en la línea */
.step-start::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 32px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid #007878;
  border-radius: 50%;
  z-index: 2;
  transition: border-color 0.3s, background 0.3s;
}
.timeline-step.active::before {
  border-color: #F8C055;
  background: #fffbe6;
}
.timeline-step[data-step="4"]::before {
  border-color: #F8C055;
  background: #fffbe6;
}
.timeline-approved::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid #F8C055;
  border-radius: 50%;
  z-index: 2;
}