:root {
    --background-color: rgb(45, 45, 45);
    --text-color: white;
    --card-bg: rgb(25, 25, 25);
    --header-bg: #ffffff73;
    --footer-bg: rgb(228, 228, 228);
    --footer-text: black;
    --modal-bg: rgba(0, 0, 0, 0.562);
    --info-container-bg: rgb(9, 9, 9);
    --button-bg: rgb(25, 25, 25);
    --social-icon-bg: rgba(255, 255, 255, 0.644);
    --social-icon-color: rgb(0, 0, 0);
    --menu-bg: rgba(255, 255, 255, 0.1);
    --menu-text: rgb(15, 15, 15);
    --shadow-color: rgba(255, 255, 255, 0.3);
    --shadow-color-strong: rgba(255, 255, 255, 1);
    --close-button-color: rgb(255, 255, 255);
    --service-text-color: rgb(255, 255, 255);
    --title-bar-color: rgb(255, 255, 255);
    --title-bar-hover-color: rgb(0, 0, 0);
    --curse-content-back: rgba(138, 138, 138, 0.801);
}

[data-theme="light"] {
    --background-color: rgb(213, 213, 213);
    --text-color: rgb(15, 15, 15);
    --card-bg: rgb(255, 255, 255);
    --header-bg: rgba(0, 0, 0, 0.1);
    --footer-bg: rgb(228, 228, 228);
    --footer-text: black;
    --modal-bg: rgba(0, 0, 0, 0.3);
    --info-container-bg: rgb(255, 255, 255);
    --button-bg: rgb(240, 240, 240);
    --menu-bg: rgba(0, 0, 0, 0.1);
    --menu-text: rgb(255, 255, 255);
    --shadow-color: rgba(0, 0, 0, 0.2);
    --shadow-color-strong: rgba(0, 0, 0, 0.4);
    --h1-color: rgb(0, 0, 0);
    --close-button-color: rgb(0, 0, 0);
    --service-text-color: rgb(0, 0, 0);
    --title-bar-color: rgb(0, 0, 0);
    --title-bar-hover-color: rgb(255, 255, 255);
    --curse-content-back: rgba(233, 233, 233, 0.801);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: sans-serif;
    
}

html{
    margin: 0;
    padding: 0;
    height: 100%;
    
}

body{
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.body-inctive{
    filter: blur(5px);
}

.theme-toggle-class{
    position: fixed !important;
    right: 400px !important;
    width: 40px !important;
    height: 40px !important;
    top: 20px !important;
    margin-right: 6px !important;
    background-color: var(--card-bg);
    border-radius: 50%;
    z-index: 100000;
}

nav li a{
    color: black !important;
}

/*---------------------modal members-----------------------*/

#container-members-modal{
    position: fixed;
    padding: 20px;
    top: calc(100% - 230px);
    left: 30px;
    z-index: 99999999;
    
    width: 430px;
    background-color: var(--card-bg);
    border-radius: 7px;
    color: var(--text-color);
    -webkit-box-shadow: 0px 0px 14px -4px var(--shadow-color-strong);
    -moz-box-shadow: 0px 0px 14px -4px var(--shadow-color-strong);
    box-shadow: 0px 0px 14px -4px var(--shadow-color-strong);
    transform: translateX(-500px);
    transition: all 1s ease;
}

#view-details-h3 {
    color: white;
    transition: color 0.3s ease;
}

#view-details-img {
    filter: invert(0);
    transition: filter 0.3s ease;
}

[data-theme="light"] #view-details-h3 {
    color: black;
}

[data-theme="dark"] #view-details-h3 {
    color: white;
}

[data-theme="light"] #view-details-img {
    filter: invert(1);
}

[data-theme="dark"] #view-details-img {
    filter: invert(0);
}

#members-modal-container-inter-top{
    display: flex;
    justify-content: space-between;
}

#members-modal-container-inter-top i{
    font-size: 20px;
    cursor: pointer;
}

#members-modal-container-inter-bottom{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 94%;
    margin-left: 6px;
    margin-top: 20px;
}



#members-modal-container-inter-bottom-info{
    width: 240px;
}

#members-modal-container-inter-bottom a{
    margin-left: 10px;
    color: white;
}

#view-details{
    cursor: pointer;
    width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

#view-details-h3{
    font-size: 18px;
}

#members-modal-container-inter-bottom img{
    width: 40px;
}

@keyframes bounceUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(14px);
    }
}

@media (max-width: 540px){
    #container-members-modal{
        top: 100px;
        width: 370px;
        left: 10px;
    }

    #members-modal-container-inter-bottom-info{
        width: 200px;
    }

    #members-modal-container-inter-top-h3{
        font-size: 17px;
    }

    #members-modal-container-inter-bottom a{
        margin-left: 0px;
    }

    #view-details-h3{
        font-size: 17px;
    }

    #members-modal-container-inter-bottom-info-p{
        font-size: 15px;
    }

    #members-modal-container-inter-bottom img{
        width: 35px;
    }
}

@media (max-width: 400px){
    #container-members-modal{
        width: 350px;
    }
}



/*---------------------------------------------------------*/
.all{
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translateX(0);
    animation: slideRight 2s ease forwards;
}

.all-active {
    animation: slideLeftBig 1s ease forwards;
}

.all-inactive {
    animation: slideRightBig 0.5s ease-in-out forwards;
}

@keyframes slideLeftBig {
    from {
        transform: translateX(0);
        padding-left: 0;
        filter:blur(0);
    }
    to {
        filter:blur(5px) grayscale();
        padding-left: 300px;
        transform: translateX(-300px) 
    }
}

@keyframes slideRightBig {
    from {
        filter: blur(5px) grayscale();
        padding-left: 300px;
        transform: translateX(-300px)
    }
    to {
        filter: blur(0);
        transform: translateX(0);
        padding-left: 0;
    }
}

@keyframes slideLeftSmall {
    from {
        filter:blur(0);
    }
    to {
        filter:blur(5px) grayscale();
    }
}

@keyframes slideRightSmall {
    from {
        filter: blur(5px) grayscale();
    }
    to {
        padding-left: 0;
    }
}

@media (max-width: 900px){
    .all-active {
        animation: slideLeftSmall 1s ease forwards;
    }
    
    .all-inactive {
        animation: slideRightSmall 0.5s ease-in-out forwards;
    } 
}



/*------------------------------Header - Menu------------------------------*/

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--header-bg);
    backdrop-filter: blur(4px) grayscale() brightness(2);
    box-shadow: 0 15px 20px -22px black;  
    z-index: 999;
    animation: headerOn 0.5s cubic-bezier(1, 0, 0, 1) forwards;
    
}

.header-off{
    animation: headerOff 0.5s ease-in-out forwards;
}

@keyframes headerOff{
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(-80px);
    }
}

@keyframes headerOn{
    from{
        transform: translateY(-80px);
    }
    to{
        transform: translateY(0);
    }
}







.header-content{
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

.logo-caporale-big{
    width: 200px;
    margin-left: 10px;
    margin-top: 5px;
}

.logo-caporale-small{
    display: none;
    height: 55px;
    margin-left: 28px;
    margin-top: 12px;
}




.reserve-menu{
    position: fixed;
    right: 100px;
    z-index: 100;
    background-color: rgb(15, 15, 15);
    border-radius: 50px;
    padding: 10px;
    padding-left: 0;
    height: 50px;
    top: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    padding: 0 15px;
    z-index: 10002;
    transition: color 500ms, background 600ms, transform 700ms, border 200ms ease;
    animation: social-media-container-active 1s alternate forwards;
}

.reserve-menu-off{
    animation: social-media-container-off 700ms alternate forwards;
}

.icons-social-media{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 100%;
    width: 100%;
    animation: social-media-container-active 2s alternate forwards;
}

.icons-social-media-active{
    display: flex;
   
}

.icons-social-media-inactive{
    display: flex;
    animation: social-media-container-inactive 2s alternate forwards;
}

@keyframes social-media-container-active{
    from{
        transform: translateX(200px);
        filter: blur(20px);
    }to{
        transform: translateX(0);
        filter:  blur(0);
    }
}

@keyframes social-media-container-inactive{
    from{
        transform: translateX(0);
        filter: blur(0);
    }to{
        transform: translateX(200px);
        filter:  blur(20px);
        display: none;
    }
}

#social-media-container{
    position: fixed;
    gap: 20px;
    height: 250px;
    width: 100px;
    right: 1%;
    bottom: 2%;
    z-index: 999;   
}

.icons-social-media i{
    border-radius: 50%;
    font-size: 50px;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0.644);
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: color 700ms, background 800ms, transform 700ms;
}

.icons-social-media i:hover{
    background-color: rgba(0, 0, 0, 0.568);
    color: #ffffff;
    border: 3px solid #ffffff;
    transform: scale(1.05) rotateY(360deg);
    

}

.social-media-container-off{
    animation: social-media-container-off 700ms alternate forwards;
}
 
@media (max-width: 666px){        /*social media icons resposive*/
    .icons-social-media i{
        font-size: 33px;
        width: 60px;
        height: 60px;
        margin-left: -30px;
    }

    #social-media-container{
        width: 70px;
        height: 200px;
        margin-bottom: 15px;
    }
}


@keyframes social-media-container-off{
    from {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateX(-400px);
        filter: blur(30px);
    }
}

@keyframes social-media-container-on {
    from {
        opacity: 0;
        transform: translateX(-400px);
        filter: blur(30px);
        gap: 100px;
    }
    to {
        opacity: 1;
        transform: translateX(0);
        flex-direction: column;
        gap: 20px;
    
    }
}


.reserve-menu:hover{
    background: rgb(255, 255, 255);
    border: 3px solid black;
    box-sizing: border-box;
    transform: scale(1.015);
}

.reserve-menu i{
    color: rgb(143, 142, 142);
    padding: 5px;
    font-size: 26px;
    margin-right: 5px;
    animation: moveIcon 2s infinite alternate forwards;
}

.reserve-menu h2{
    font-size: 25px;
    color: azure;
    font-family: 'Mukta', sans-serif;
    transition: color 500ms;
}

.reserve-h2-small{
    display: none;
    
}

.reserve-menu h2:hover{
    color: rgb(15, 15, 15);
}

@keyframes moveIcon {
    0% {
        color: rgb(255, 255, 255);
    }
    100%{
        color: rgb(15, 15, 15);
        filter: drop-shadow(1px 5px 8px #ffffff);
    }
}


.menu{
    position: fixed;
    height: 100vh;
    width: 300px;
    overflow: hidden;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
    background-color: var(--menu-bg);
    background-image: url('../img/background-menu.jpg'); 
    background-size: 200%; 
    background-position: center; 
    background-position-y: 0;
    z-index: 999;
    overflow-y: auto;
    padding-top: 60px; 
}

.menu-header-off{
    animation: menu-header-off 1s alternate forwards;
}
@keyframes menu-header-off {
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(80px);
    }
}


.menu nav{
    height: 100%;
}

.menu nav ul{
    height: 100%;
    display: flex;
    list-style: none;
    flex-direction: column;
    align-items: center;
}

.menu nav ul li{
    height: 60px;
    display: flex;
    margin: 0 10px;
    align-items: center;

    transition: all 100ms;
}



.menu nav ul li a{
    color: var(--menu-text);
    font-family: 'Protest Strike', sans-serif;

    font-size: 20px;
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.226);
    transition: all 300ms; 
}

.menu nav ul li a:hover{
    transform: scale(1.1);
}

#icon-menu{
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    top: 10px;
    font-size: 25px;
    background: rgb(15, 15, 15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: color 500ms, background 600ms, transform 400ms;
    z-index: 1000;
}

#icon-menu:hover{
    background: rgb(255, 255, 255);
    color: rgb(15, 15, 15);
    border: 3px solid black;
    box-sizing: border-box;
    transform: scale(1.05);
}

#icon-menu-active{
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    top: 10px;
    font-size: 25px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgb(255, 255, 255);
    color: rgb(15, 15, 15);
    border: 3px solid black;
    box-sizing: border-box;
    transition: color 500ms, background 600ms, transform 400ms;
    z-index: 1000;
}

#icon-menu-active:hover{
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: 3px solid black;
    box-sizing: border-box;
    transform: scale(1.05);
}

.icon-menu-active-on{
    display: flex !important;
}

.icon-menu-off{
    display: none;
}

.show-lateral{
    width: 300px;
    transform: translateX(0);
    background-size: 100%;
}

.show-lateral-margin{
    margin-top: 80px;
}

@media (max-width: 673px){
    .logo-caporale-big{
        width: 150px;
        margin-top: 15px;
    }
}


@media (max-width: 600px){
    .logo-caporale-big{
        display: none;
    }

    .logo-caporale-small{
        display: block;
    }

    .reserve-menu i{
        font-size: 20px;
        margin-right: 5px;
    }
    
    .reserve-menu h2{
        font-size: 20px;
        color: azure;
        font-family: 'Mukta', sans-serif;
        transition: color 500ms;
    }

    .reserve-menu{
        right: 90px;
    }

    .theme-toggle-class{
        right: 340px !important;
    }

}

@media (max-width: 500px){

    .reserve-h2-big{
        display: none;
    }

    .reserve-h2-small{
        display: block;
        font-size: 18px !important;
    }

    .theme-toggle-class{
        right: 256px !important;
    }

    #icon-menu{
        right: 7px;
    }

    .reserve-menu{
        right: 74px;
    }
    
    .icon-menu-active-on{
        right: 7px !important;
    }
}

@media (max-width: 430px){
    .logo-caporale-big{
        width: 110px;
        margin-top: 22px;
    }
}

@media (max-width: 385px){
    .logo-caporale-big{
        display: none;
    }

    .logo-caporale-small{
        display: block;
    }


}


footer{
    z-index: 110;
    height: 700px;
    width: 100%;
    background-color: var(--footer-bg);
    overflow: hidden;
}

.container-footer-top{
    background-color: var(--footer-bg);
    width: 100%;
    max-height: 400px;
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;

}

.container-footer-top::before{
    content: '';
    width: 70%;
    height: 6px;
    position: absolute;
    background: rgba(85, 85, 85, 0.733);
    bottom: 0;
    margin: auto;
    border-radius: 20px;
}

.container-footer-logo{
    background-color: rgba(0, 255, 255, 0);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    height: 400px;
    position: relative;   
}

.logo-footer-left{
    height: 340px;
    position: absolute;
    opacity: 0;
}

.logo-footer-letra{
    
    position: absolute;
    width: 370px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo-footer-right{
    height: 340px;
    position: absolute;
    right: 0;
    opacity: 0;
}

/*---------------Movements footer------------------*/

.logo-footer-active{
    opacity: 1;
}

.logo-footer-left-moveIn{
    animation: left-moveIn 1500ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.logo-footer-left-moveOut{
    animation: left-moveOut 700ms ease;
}

.logo-footer-right-moveIn{
    animation: right-moveIn 1500ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.logo-footer-right-moveOut{
    animation: right-moveOut 700ms ease;
}

@keyframes left-moveIn {
    from{
        transform: translateX(-400px);
        opacity: 0;
        filter: blur(10px);
    }to {
        transform: translateX(0);
        opacity: 1 ;
        filter: blur(0);
    }
}

@keyframes left-moveOut {
    from{
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }to {
        transform: translateX(-400px);
        opacity: 0 ;
        filter: blur(10px);
    }
}

@keyframes right-moveIn {
    from{
        transform: translateX(400px);
        opacity: 0;
        filter: blur(10px);
    }to {
        transform: translateX(0);
        opacity: 1 ;
        filter: blur(0);
    }
}

@keyframes right-moveOut {
    from{
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }to {
        transform: translateX(400px);
        opacity: 0 ;
        filter: blur(10px);
    }
}

/*--------------------------------------------------------*/

.container-footer-data{
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: row;
    padding: 30px;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    
}

.container-footer-data p{
    font-family: 'Mukta', sans-serif;
    color: var(--footer-text);
    
}

.container-footer-data-left{
    font-size: 20px;

}

.container-footer-data-center{
    font-size: 27px;
    height: 300px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.container-footer-data-center h2{
    font-family: 'Mukta', sans-serif;
    font-weight: 900;
    color: var(--footer-text);
}

.container-redes-footer{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
    padding: 10px 0;
}

.redes-footer{
    font-size: 40px;
    width: 70px;
    height: 70px;
    background-color: rgb(7, 7, 7);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-footer-data-right{
    font-size: 25px;
    text-align: right;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.container-footer-data-right-bottom{
    font-size: 18px;
}

@media (max-width: 930px){
    footer{
        height: 100%;
    }
    
    .container-footer-data{
        flex-direction: column;
        height: 100%;
    }
    
    .container-footer-data-left{
        display: none;
    }

    .container-footer-data-center{
        position: relative;
        left: 0;
        transform: translateX(0);
        font-size: 25px;
        height: 180px;
    }

    .container-footer-data-right{
        text-align: center;
        line-height: 1.2;
        align-items: center;
        height: 100%;
        gap: 20px;
    }
}

@media (max-width: 480px){
    .container-footer-logo{
        width: 300px;
        height: 300px;
        margin: 20px 0;
    }
    
    .logo-footer-left{
        height: 260px;
    }
    
    .logo-footer-letra{
        width: 250px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .logo-footer-right{
        height: 260px;
    }

    .container-footer-data{
        padding-top: 15px;
    }

    .container-footer-data h2{
        font-size: 45px;
    }
}

@media (max-width: 370px){

}

#theme-toggle {
    position: fixed;
    right: 100px;
    top: 15px;
    width: 50px;
    height: 50px;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#theme-toggle:hover {
    transform: scale(1.1);
}

#theme-toggle i {
    font-size: 24px;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

#theme-toggle:hover i {
    transform: rotate(30deg);
}

.buy-member-button-with-mercado-pago {
    -webkit-box-shadow: 0px 0px 14px 0px var(--shadow-color-strong);
    -moz-box-shadow: 0px 0px 14px 0px var(--shadow-color-strong);
    box-shadow: 0px 0px 14px 0px var(--shadow-color-strong);
}

#buy-member-button-with-msg-internal {
    -webkit-box-shadow: 0px 0px 14px -3px var(--shadow-color-strong);
    -moz-box-shadow: 0px 0px 14px -3px var(--shadow-color-strong);
    box-shadow: 0px 0px 14px -3px var(--shadow-color-strong);
}

.members-cover {
    -webkit-box-shadow: 0px 0px 14px -3px var(--shadow-color-strong);
    -moz-box-shadow: 0px 0px 14px -3px var(--shadow-color-strong);
    box-shadow: 0px 0px 14px -3px var(--shadow-color-strong);
}

/* Carousel Styles */
#carousel-section {
    margin: 50px auto;
    max-width: 900px;
    overflow: hidden;   
}

.carousel-container {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    animation: carousel 30s linear infinite;
    width: fit-content;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 auto;
    height: 150px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.1);
}

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

@media (max-width: 680px){
    .carousel-container{
        height: 100px;
    }

    .carousel-slide{
        height: 100px;
    }

    #carousel-section{
        margin-top: 20px;
    }
}

/* Carousel en el modal */
#members-modal-carousel {
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: relative;
    margin: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

#members-modal-carousel .carousel-track {
    display: flex;
    animation: modalCarousel 20s linear infinite;
    width: fit-content;
    height: 100%;
}

#members-modal-carousel .carousel-slide {
    flex: 0 0 auto;
    height: 100%;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#members-modal-carousel .carousel-slide img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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

.service-content-inter-text{
    position: relative;
    z-index: 1;
    will-change: transform;
}






