/* Ultima actualizacion 26 Sept 2024 */

@font-face {
    font-family: 'Montserrat Thin';
    src: url('../../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Display Fair';
    src: url('../../fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat Thin';
}

body {
    overflow-x: hidden;
}

.BranText {
    font-family: 'Montserrat Thin';
    color: white;
}

.BranText span {
    font-size: 45px;
    margin-bottom: 50px;
}

.BranText span span {
    font-family: 'Display Fair';
    color: #9ED7F5;
}

.Link-Wap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 70%;
    left: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    z-index: 22000;
}

.Link-Wap svg {
    width: 70%;
    height: 70%;
}

.Msj-Burble {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 80%;
    left: 10px;
    width: 120px;
    height: 50px;
    border-radius: 10px;
    background: #F7931E;
    padding: 5px;
    z-index: 22000;
}

.Msj-Burble_Content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    color: white;
    font-weight: 500;
    font-size: 12px;
}

.Msj-Burble_Content::after {
    content: "";
    width: 30px;
    height: 40px;
    position: absolute;
    top: -18px;
    left: -5px;
    border-radius: 0 35px 0 0;
    background: #F7931E;
    z-index: -1;
}

.Msj-Burble_Content a {
    text-decoration: none;
    color: white;
    border: 3px solid white;
    border-radius: 10px;
    padding: 3px;
}

.Loading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #8DA7BE;
    z-index: 800000;
}

.Loading p {
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

body::-webkit-scrollbar {
    width: 5px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: white;
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: #455869;
    /* color of the scroll thumb */
    border-radius: 5px;
    /* roundness of the scroll thumb */
    border: 1px solid #455869;
    /* creates padding around scroll thumb */
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 89vh;
}

.Container-Header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.Container-Header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 999;
}

.Container-Header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.Line-Into {
    width: 50px;
    height: 3px;
    background: white;
    transform: rotate(90deg)
}

.Container-Header-Text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    color: white;
    width: 100%;
    top: calc(100% / 3.5);
    z-index: 3;
}

.ContainerProducts {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    color: white;
    width: 100%;
    top: 0 !important;
    z-index: 3;
}

.Image-Desktop {
    display: flex;
}

.Image-Mobile {
    display: none;
}

.HSC__Slide__Container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgHeader {
    width: 100%;
    height: 100vh !important; /* Hace que la imagen ocupe toda la altura del viewport */
    object-fit: cover !important; /* Asegura que la imagen se ajuste bien sin deformarse */
    object-position: center center !important; /* Centra la imagen */
    display: block;
    position: relative;
    z-index: 1;
}

.HSC__Slide__Container .Image-Desktop, .HSC__Slide__Container .Image-Mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ContainerProducts a {
    position: absolute;
    top: 50% !important;
}

.HSC__Slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 128, 202, 0.10);
    z-index: 0;
}

.Container-Header-Text h1 {
    text-align: center;
    font-size: 45px;
    font-weight: 500;
}

.Container-Header-Text h1 span {
    font-family: 'Display Fair';
    font-size: 60px;
    font-weight: 100;
}

.WD-Title-Img__Container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.WD-Title-Img__Container h2 {
    font-family: 'Display Fair';
}

.WD-Title-Img__Container h3 {
    width: 100%;
    font-size: 25px;
    font-family: 'Montserrat Thin';
    font-weight: 500;
}

.Container-Header-Text .Line-Into {
    margin-top: 30px;
    margin-bottom: 30px;
}

.Container-Header-Text button {
    width: 170px;
    height: 60px;
    border-radius: 35px;
    padding: 5px;
    background: transparent;
    border: 2px solid white;
    transition: all ease-in-out .2s;
    cursor: pointer;
}

.Container-Header-Text button div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background:  #8DA7BE;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    transition: all ease-in-out .2s;
}

.Container-Header-Text button:hover {
    padding: 8px;
    > div {
        background: white;
        color: #8DA7BE;
    }
}

.Container-Header-Text a {
    width: 150px;
    height: 40px;
    border-radius: 35px;
    padding: 5px;
    text-decoration: none;
    color: white;
    background: transparent;
    border: 2px solid white;
    transition: all ease-in-out .2s;
    cursor: pointer;
}

.Container-Header-Text a div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background:  #8DA7BE;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    transition: all ease-in-out .2s;
}

.Container-Header-Text a:hover {
    padding: 8px;
    > div {
        background: white;
        color: #8DA7BE;
    }
}

.ContainerProducts a {
    position: absolute;
    top: 50%;
    margin-top: 450px;
}


.Container-Links-A {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    width: 40px;
    background: #8DA7BE;
    box-shadow: 3px 2px 2px 2px rgb(0, 0, 0, .5);
    border-radius: 20px;
    position: fixed;
    top: calc(100% / 3.5);
    right: 0;
    z-index: 99000;
}

.Container-Links-A ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.Container-Links-A ul li {
    list-style: none;
}

.Container-Header-Text.ContainerProducts {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.Container-Header-Text__MU {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.Container-Header-Text__MU__Container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.Content-Images-MorpheusAndUltherapy {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.Content-Images-MorpheusAndUltherapy img {
    width: 50%;
}

.Container-Links-A ul li a {
    width: 26px;
    height: 26px;
    color: white;
    transition: all ease-in-out .1s;
}

.Container-Links-A ul li a svg {
    width: 20px;
    height: 20px;
    transition: all ease-in-out .1s;
}

.Container-Links-A ul li a:hover {
    > svg {
        width: 23px;
        height: 23px;
    }
}

.Welcome-Dermaestetic-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.Welcome-Dermaestetic-Section__Container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    gap: 10px;
}

.WD-Text, .WD-Title-Img {
    width: 50%;
}

.WD-Text {
    width: 60%;
}

.WD-Text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.WD-Text__Container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 35px;
}

.WD-Text__Container p {
    text-align: justify;
}

.Welcome-Dermaestetic-Section__Container, .WD-Title-Img__Container {
    width: 100%;
}

.Welcome-Dermaestetic-Section__Container {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
}

.WD-Text__Container {
    display: flex;
    justify-content: start;
    align-items: start;
    padding-top: 100px; 
}

.WD-Text__Container p {
    font-size: 20px;
}

.Welcome-Dermaestetic-Section__Container p {
    width: 80%;
}

.WD-Title-Img__Container img {
    width: 90%;
    margin-top: 18px;
    z-index: 999;
}

.WD-Title-Img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.WD-Title-Img__Container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    margin-top: 60px;
}

.WD-Title-Img__Container h2 {
    font-size: 22px;
    color: rgb(56, 56, 56);
}

.WD-Title-Img__Container h3 {
    color: rgb(56, 56, 56);
}


/*
ABOUT DERMAESTETIC
*/

.About-Dermaestetic-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: -63px;
}

.Background-About {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(79, 93, 105, 0.7);
    z-index: 1;
}

.About-Dermaestetic-Section img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.ADS__Container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 90%;
}

.ADS__Container p {
    width: 80%;
    text-align: center;
    color: white;
    z-index: 3;
}

.Banner-About {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    height: 50px;
    z-index: 3;
}
.Banner-NewPatients {
    display: flex;
    justify-content: end;
    align-items: end;
    width: 100%;
    height: 50px;
    z-index: 3;
}

.Banner-About-BA {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 20px;
    width: 70%;
    height: 100%;
    color: #8DA7BE;
    border-radius: 0 25px 25px 0;
    box-shadow: 4px 2px 2px 2px rgb(0, 0, 0, .2);
    background: white;
}

.Banner-About-BA h2 {
    font-family: 'Display Fair';
}

.BN-About-BA h2 {
    font-family: 'Display Fair';
}

.CDS-Container h2 span {
    font-family: 'Display Fair';
}

.TDS-Text span {
    font-family: 'Display Fair';
    font-weight: 100;
}

.BN-About-BA {
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 20px;
    width: 70%;
    height: 100%;
    color: #8DA7BE;
    border-radius: 25px 0 0 25px;
    box-shadow: 4px 2px 2px 2px rgb(0, 0, 0, .2);
    background: white;
}

/*
TRAVEL TO DERMATOLOGY
*/

.Travel-Dermaestetic-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.TDS-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
}

.TDS-Text {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 40%;
}

.TDS-Text_Line_Container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}

.Line-Rotate {
    width: 70px;
    height: 4px;
    background: #9ED7F5;
    transform: rotate(90deg);
}

.TDS-Text h2 {
    font-size: 100px;
    padding: 0;
    margin: 0;
    margin-left: 50px;
}

.TDS-Text span {
    font-weight: 600;
    width: 110%;
    font-size: 60px;
    margin: 0;
    padding: 0;
    margin-left: 50px;
    z-index: 1;
}

.TDS-Text p {
    width: 100%;
    text-align: justify;
    margin-bottom: 50px;
}

.TDS-BTN {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
}

.TDS-BTN a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    width: 120px;
    height: 50px;
    border: 1px solid #9ED7F5;
    border-radius: 25px;
    background: white;
    text-transform: uppercase;
    color: #8DA7BE;
    transition: all ease-in-out .1s;
    cursor: pointer;
    z-index: 11000;
}

.TDS-BTN a::before {
    content: "";
    width: 120px;
    height: 50px;
    border-radius: 25px;
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 0;
    transition: all ease-in-out .1s;
}

.TDS-BTN a:hover::before {
    background: transparent;
    border: 1px solid #9ED7F5;
}

.TDS-BTN a:hover {
    border: none;
    background: #9ED7F5;
    color: white;
}


.TDS-Img {
    width: 60%;
}

.TDS-Img img {
    width: 100%;
}

/*
OUR SERVICES
*/

.OurServices-Dermaestetic-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.OSD-Container {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    flex-direction: column;
}

.OSD-Container h2 {
    margin-left: 50px;
}

.Lines-Services-Left-Container {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
}

.LSLC {
    width: 70%;
    height: 4px;
    background: #9ED7F5;
}

.Lines-Services-Right-Container {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}

.LSRC {
    width: 70%;
    height: 4px;
    background: #9ED7F5;
}

.UL-Container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

.UL-Container ul {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    height: 150px;
}

/*
COMMENTS SECTION
*/

.Comments-Dermaestetic-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    background: #9ED7F5;
}

.CDS-Container {
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: column;
    width: 100%;
    margin-left: 50px;
    margin-right: 50px;
}

.CDS-Container h2 {
    color: white;
    font-size: 35px;
}

.CDS-Carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.CDS-Carousel_Container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.Slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 310px;
    height: 350px;
    padding: 5px;
    background: white;
    border-radius: 15px;
}

.Slide_Container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 90%;
    padding: 5px;
}

.Comment-W-Name {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 8px;
    gap: 15px;
    width: 90%;
    height: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.Comment-W-Name p {
    font-size: 13px;
    height: 90%;
}

.Container-Starts svg {
    width: 20px;
    height: 20px;
    color: rgb(228, 228, 57);
}

.Arrow-Left {
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    position: absolute;
    top: calc(100% / 2.5);
    left: 20px;
    cursor: pointer;
}

.Arrow-Left svg {
    width: 60px;
    height: 60px;
    color: white;
}

.Arrow-Right svg {
    width: 60px;
    height: 60px;
    color: white;
}

.Arrow-Right {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    position: absolute;
    top: calc(100% / 2.5);
    right: 20px;
    cursor: pointer;
}

/*
CONTACT SECTION
*/

.Contact-Dermaestetic-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.CCDS-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    margin-top: 50px;
}

.Map-Shape {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 99000;
}

.Map-Shape:hover {
    background: rgb(158, 215, 245, .2);
}

.Map-Map-Code, .Form-Content {
    width: 50%;
}

.Map-Map-Code__Container {
    position: relative;
    width: 100%;
    height: 600px;
}

.Form-Content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Form-Content__Container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 600px;
    padding-left: 20px;
    padding-right: 20px;
}

.Form-Content__Container form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.FORM-Container {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 100%;
}

.FORM-Container input {
    width: 100%;
    height: 35px;
    padding-left: 10px;
    border: 1px solid #8DA7BE;
    border-radius: 8px;
    outline: #9ED7F5;
    background: rgb(158, 215, 245, .2);
    backdrop-filter: blur(7px);
}

.FORM-Container input::placeholder {
    color: #8DA7BE;
}

.FORM-Container textarea {
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
    border: 1px solid #8DA7BE;
    border-radius: 8px;
    outline: #1c465d;
    background: rgb(158, 215, 245, .2);
    backdrop-filter: blur(7px);
}

.FORM-Container textarea::placeholder {
    color: #8DA7BE;
}

.FORM-Container label {
    margin-top: 10px;
}

.FORM-Container button {
    position: relative;
    width: 120px;
    height: 50px;
    border: 2px solid #9ED7F5;
    border-radius: 25px;
    margin-top: 20px;
    background: white;
    text-transform: uppercase;
    color: #8DA7BE;
    transition: all ease-in-out .1s;
    cursor: pointer;
    z-index: 11000;
}

.FORM-Container button::before {
    content: "";
    width: 120px;
    height: 50px;
    border-radius: 25px;
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 0;
    transition: all ease-in-out .1s;
}

.FORM-Container button:hover::before {
    background: transparent;
    border: 1px solid #9ED7F5;
}

.FORM-Container button:hover {
    border: none;
    background: #9ED7F5;
    color: white;
}

.UL-Container ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.UL-Container ul li svg {
    width: 20px;
    height: 20px;
    color: #9ED7F5;
}



.Header-Slider__Container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.HSC__Slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 34px;
    left: 100%;
    opacity: 0;
    transition: all 1s ease;
}

.HSC__Slide.active {
    left: 0;
    opacity: 1;
}

.HSC__Slide.inactive {
    left: -100%;
    opacity: 0;
}

@media screen and (max-width: 500px) {
    #image-slider-_ZHYQgBySP {
        height: 350px !important;
    }
}



@media screen and (max-width: 768px) {

    .Welcome-Dermaestetic-Section__Container {
        flex-direction: column-reverse;
    }

    .WD-Text, .WD-Title-Img {
        width: 100%;
    }

    .WD-Text__Container, .WD-Title-Img__Container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 50px;
    }

    .Welcome-Dermaestetic-Section__Container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
        padding-right: 0px;
        gap: 10px;
    }

    .WD-Text__Container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 0px;
    }

    .WD-Title-Img__Container h3 {
        text-align: center;
    }

    .Welcome-Dermaestetic-Section__Container p {
        font-size: 15px;
    }

    .About-Dermaestetic-Section {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 100vh;
        margin-top: 0px;
    }

    .ADS__Container p {
        width: 80%;
        text-align: justify;
        color: white;
        z-index: 3;
    }

    .TDS-Container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }

    .TDS-Text, .TDS-Img {
        width: 100%;
        padding-bottom: 50px;
    }

    .ADS__Container p {
        font-size: 15px;
    }

    .TDS-Text p {
        font-size: 15px;
    }

    .TDS-Text h2 {
        font-size: 62px;
        padding: 0;
        margin: 0;
    }

    .TDS-Text span {
        font-weight: 600;
        width: 100%;
        font-size: 23px;
        margin: 0;
        padding: 0;
        margin-left: 20px;
        z-index: 1;
    }

    .Line-Rotate {
        width: 45px;
        height: 4px;
        background: #9ED7F5;
        transform: rotate(90deg);
    }

    .UL-Container {
        flex-direction: column;
    }

    .UL-Container ul {
        width: 80%;
    }

    .UL-Container ul li {
        font-size: 15px;
    }

    .CDS-Container h2 {
        font-size: 25px;
    }

    .CCDS-Container {
        flex-direction: column-reverse;
        padding: 0;
    }

    .Map-Map-Code, .Form-Content {
        width: 100%;
        margin-bottom: 20px;
    }

    .Map-Map-Code {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
    }

    .Map-Map-Code__Container {
        width: 100%;
        height: 400px;
    }

    .Form-Content__Container p {
        text-align: center;
        font-size: 15px;
    }

    .Container-Links-A {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 184px;
        width: 32px;
        background: #8DA7BE;
        box-shadow: 3px 2px 2px 2px rgb(0, 0, 0, .5);
        border-radius: 20px;
        position: fixed;
        top: calc(100% / 3.5);
        right: 0;
        z-index: 99000;
    }

    .Container-Links-A ul li a svg {
        width: 15px;
        height: 15px;
        transition: all ease-in-out .1s;
    }

    .Container-Links-A ul li a:hover {
        > svg {
            width: 15px;
            height: 15px;
            color: #607282;
        }
    }

    .Container-Img {
        height: 250px;
    }

    .Arrow-Left svg {
        width: 60px;
        height: 60px;
        color: #9ED7F5;
    }
    
    .Arrow-Right svg {
        width: 60px;
        height: 60px;
        color: #9ED7F5;
    }

    .Container-Header-Text h1 {
        text-align: center;
        font-size: 28px;
        font-weight: 500;
    }

    .Image-Desktop {
        display: none;
    }

    .Image-Mobile {
        display: flex;
    }

    .ContainerProducts a {
        position: absolute;
        top: 50%;
        margin-top: 370px !important;
    }
  }