i.material-symbols-outlined {
    max-width: 30px;
}

#main-page {
   position: relative;
   overflow-x: hidden;
   background: var(--color-white);
}

.bt-fx {
  transition: transform 0.2s ease-in-out;
  animation: bg-blink 1.5s ease-in-out infinite;
}

ul.list {
    list-style: disc;
    padding-left: 20px;
}

ul.list-unstyled li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.popup-content {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background: #fff;
    border-radius: var(--border-radius-base);
    border: 1px solid #aaa;
    -webkit-box-shadow: 0px 0px 16px 5px rgba(0,0,0,0.1); 
    box-shadow: 0px 0px 16px 5px rgba(0,0,0,0.1);
}

.popup-content .inner {
    position: relative;
    overflow: hidden;
    padding: 20px;
    padding-top: 25px;
    border-radius: var(--border-radius-base);
}

.popup-content .inner::after {
    position: absolute;
    content: "";
    z-index: 1;
    background: #eee;
    width: 200%;
    height: 100%;
    transform: translateX(-50%);
    border-radius: 50%;
    bottom: -30%;
    left: 50%;
}

.popup-content span {
    position: relative;
    z-index: 2;
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.popup-content span.percentage {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
}

.popup-content span.promo-code {
    font-size: 36px;
    line-height: 1.4;
    color: var(--color-secondary);
    letter-spacing: 1.5px;
}

.popup-content hr {
    background: #ddd;
    position: relative;
    z-index: 9;
    margin-bottom: 15px;
}

.popup-content .bt-close-popup i {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #444;
    color: #fff;
    line-height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.logo-print, .print {
    display: none;
}

@keyframes bg-blink {
  0% {
    background-color: var(--color-primary);
    transform: scale(1);
  }
  50% {
    background-color: var(--color-primary-hover);
    transform: scale(1.05);
  }
  100% {
    background-color: var(--color-primary);
    transform: scale(1);
  }
}

header {
    position: fixed;
    width: 100%;
    z-index: 90;
    transition: .2s all ease;
    background: rgba(255,255,255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scroll {
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

header .logo-content {
    max-width: 150px;
    margin: 10px 0;
}

header .logo-content img {
    width: auto;
    height:auto;
}

header .nav-desktop {
    position: relative;
    padding-left: 90px;
}

header .nav-desktop::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 70%;
    background: #ccc;
    top: 15%;
    left: 45px;
}

header .nav-desktop nav > ul {
    display: inline-block;
}

header .nav-desktop nav > ul > li,
header .nav-bis nav > ul > li {
    display: inline-block;
    margin-right: 35px;
}

header .nav-bis nav > ul > li {
    margin-right: 15px;
}

header .nav-desktop nav > ul > li:last-child,
header .nav-bis nav > ul > li:last-child {
    margin-right: 0;
}

header .nav-desktop nav > ul > li.parent,
header .nav-bis nav > ul > li.parent {
    padding-right: 10px !important;
    background: url(img/arrow-select-b.png) no-repeat;
    background-position: center right;
}

header .nav-desktop nav > ul > li > a,
header .nav-desktop nav > ul > li > span,
header .nav-bis nav > ul > li > a,
header .nav-bis nav > ul > li > span,
header .nav-bis nav > ul > li.select-lang {
    color: var(--color-dark) !important;
    display: inline-flex;
    align-items: center;
    line-height: 80px;
    height: 80px;
    letter-spacing: 1px;
    padding: 0;
    position: relative;
    transition: .2s all ease;
    font-weight: var(--font-weight-base);
}

header .nav-desktop nav > ul > li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive > span,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > span,
header .nav-bis nav > ul > li.parent ul li.menuactive a {
    color: var(--color-secondary) !important;
    position: relative;
    font-weight: var(--font-weight-base);
}

header .nav-desktop nav > ul > li.menuactive > a:after,
header .nav-desktop nav > ul > li.menuactive > span:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: var(--color-secondary);
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

header .nav-desktop nav > ul > li.parent ul,
header .nav-bis nav > ul > li.parent ul {
    position: absolute;
    top: 100%;
    background: rgba(255,255,255, 1);
    padding: 10px 20px;
    -webkit-filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    min-width: 230px;
    visibility: hidden;
    opacity: 0;
    margin-top: 20px;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent ul li {
    display: block;
}

header .nav-bis nav > ul > li.parent ul li {
    display: block;
}

header .nav-desktop nav > ul > li.parent ul li:last-child,
header .nav-bis nav > ul > li.parent ul li:last-child {
    border-bottom: 0;
}

header .nav-desktop nav > ul > li.parent ul li a,
header .nav-bis nav > ul > li.parent ul li a {
    display: block;
    line-height: 40px;
    letter-spacing: .5px;
    color: var(--color-dark);
}

header .nav-desktop nav a:hover,
header .nav-bis nav a:hover {
    color: var(--color-secondary) !important;
}

header .nav-desktop nav > ul > li > ul > li > ul,
header .nav-bis nav > ul > li > ul > li > ul {
    visibility: hiddent;
    opacity: 0;
    transition: .3s;
    top: 0;
    left: calc(100% - 20px);
}

header .nav-desktop nav > ul > li > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li > ul > li > ul > li > ul,
.nav-mobile nav > ul > li > ul > li > ul > li > ul {
    display: none;
}

header .nav-bis nav a {
   display: inline-flex !important;
   align-items: center;
}

header .nav-bis nav > ul > li.parent {
    position: relative;
}

header .nav-bis nav > ul > li.parent ul li a {
    display: block !important;
}

header .nav-bis nav > ul > li.parent ul {
    min-width: inherit !important;
    right: 0;
}

header .nav-bis i {
    background: var(--color-primary);
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    flex: none;
    height: 25px;
    line-height: 25px;
    width: 25px;
    color: var(--color-white);
    margin-right: 5px;
}


/* Nav mobile */

.nav-mobile {
    position: fixed;
    width: 320px;
    height: 100%;
    right: -330px;
    top: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 1.0);
    color: var(--color-white);
    transition: .2s;
    opacity: 0;
}

.nav-mobile.open-nav {
    right: 0;
    padding: 20px;
    opacity: 1;
    transition: .4s;
}

.nav-mobile .nav-item ul li {
    display: inline-block;
    margin-left: .8rem;
}

.nav-mobile .nav-item ul li a {
    color: var(--color-white);
}

.nav-mobile .inner {
    height: 100%;
    overflow: scroll;
    padding-bottom: 120px;
}

.nav-mobile nav ul li {
    padding: 15px 0;
    border-top: 1px dotted #ddd;
}

.nav-mobile nav ul li.parent {
    padding-bottom: 0 !important;
}

.nav-mobile nav ul li.parent > span {
    padding-bottom: 10px;
}

.nav-mobile nav ul li ul li {
    padding-left: 20px;
}

.nav-mobile nav ul li a,
.nav-mobile nav ul li > span {
    display: block;
    color: var(--color-white);
    padding-left: 20px;
}

.nav-mobile nav ul li.menuactive > a {
    color: var(--color-primary); !important;
}

.nav-mobile nav ul li.parent > a {
    margin-bottom: 10px;
}

.nav-mobile nav ul li a:hover {
    color: var(--color-primary);;
}

.bt-open-nav {
    border-radius: 4px;
    overflow: hidden;
    margin-left: 1rem;
    cursor: pointer;
}

.bt-open-nav i {
    background: var(--color-primary);
    color: var(--color-white);
    line-height: 40px !important;
    width: 40px !important;
    height: 40px !important;
    max-width: inherit;
    text-align: center;
    font-size: 30px !important;
}

.bt-open-nav:hover i {
    background: var(--color-primary-hover);
}

.bt-close-nav {
    line-height: 60px;
    padding-left: 15px;
    font-size: 28px;
    cursor: pointer;
}

.bt-close-nav i {
    line-height: 3;
}

.bt-close-nav:hover i {
    color: var(--color-primary);
}

.bt-mask-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    backdrop-filter: blur(2px);
}

.open-nav .bt-mask-nav {
    transition: .3s;
    opacity: 1;
    visibility: visible;
}

.nav-mobile .nav-item a {
    color: var(--color-white);
    letter-spacing: 1px;
}

.nav-mobile .nav-item a:hover {
    color: var(--color-primary);
}

.nav-mobile .nav-item .bt-search {
    font-size: 28px !important;
    margin-left: 15px;
    margin-right: 15px;
}

.nav-mobile .nav-item .bt-search i {
    line-height: 3;
}


/* Divers  */


.filter-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.filter-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(152, 177, 143, .15);
    pointer-events: none;
}

.info-contact{
    font-weight: var(--font-weight-base);
}

.info-contact a {
    color: var(--color-txt);
}

.info-contact i {
    background: var(--color-secondary);
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    flex: none;
    height: 25px;
    line-height: 25px;
    width: 25px;
    color: var(--color-white);
    margin-right: 10px;
}

.alert.alert-success {
    color: #3fe75f !important;
}

.alert.alert-danger {
    color: #df4646 !important;
}

/* Heading */

.heading-content,
.heading-sub-page {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-content {
	position: absolute;
	width: 100%;
	height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: url(img/banner.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    transform: scale(1.5);
    animation: scaleLoop 120s ease-in-out infinite;
}

@keyframes scaleLoop {
  0% {
    transform: scale(1.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

.banner-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(146,1,144, .5);
}

.heading-content .container {
    position: relative;
    min-height: 400px;
    height: 55vh;
    max-height: 800px;
    z-index: 5;
    text-shadow: 0px 0px 6px rgba(0,0,0,0.4);
}

.heading-sub-page .container {
    max-height: 400px;
    padding-top: 80px;
}


/* Booking */

.form-booking-content {
    position: relative;
    z-index: 9;
    background: var(--color-white-hover);
}

.form-booking-content .form-booking {
    position: relative;
    transform: translateY(-50%);
    background: var(--color-white);
    border-radius: var(--border-radius-base);
    box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
}

.form-booking-content .form-booking label {
    font-weight: var(--font-weight-max);
    margin-bottom: .3rem;
}

.form-booking-content .form-booking label span {
    color: var(--color-secondary);
    font-weight: 700;
}

.form-booking-content .info {
    font-size: 14px;
}


/* Teaser */

.teaser-content {
    background: var(--color-white-hover);
}

.teaser-content .teaser {
    position: relative;
    border-radius: var(--border-radius-base);
    border: 1px solid var(--color-secondary);
    border-bottom: 3px solid var(--color-secondary);
    box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
    transform: scale(1);
    transition: .2s all ease;
    margin-top: 46px;
}

.teaser-content .teaser::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--color-secondary);
    transition: .3s all ease;
}

.teaser-content .teaser.active {
    transform: scale(1.04);
}

.teaser-content .teaser.active::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.teaser-content .teaser .icon {
    position: absolute;
    background: var(--color-primary);
    padding: 15px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    border-radius: var(--border-radius-base);
    border: 5px solid var(--color-white-hover);
}

.teaser-content .teaser .icon img {
    transform: rotate(-45deg);
}

.teaser-content .teaser h4 {
    color: var(--color-secondary);
}

.teaser-content .teaser p {
    font-weight: var(--font-weight-max);
}

.teaser-content .teaser h4, .teaser-content .teaser p {
    position: relative;
    z-index: 2;
}

.teaser-content .teaser.active h4, .teaser-content .teaser.active p {
    color: var(--color-white);
}


/* Step by step */

.step-content {
    background: var(--color-white);
}

.step-content .step {
    background: var(--color-white-hover);
    border-radius: var(--border-radius-base);
    border: 1px solid #ddd;
    box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
    overflow: hidden;
}

.step-content .step span {
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--color-white);
    margin-right: .5rem;
}

.step-content .step h4 {
    color: var(--color-secondary);
}

.step-content .step p {
    font-weight: var(--font-weight-max);
}

.step-content .step .img {
    position: relative;
    line-height: 0;
    width: 100%;
    height: 100%;
}

.step-content .step .img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(146,1,144, .4);
}

.step-content .step .img img {
    position: relative;
    idth: 100%;
    height: 100%;
    object-fit: cover;
}


/* Testimonial */

.testimonial-content {
    position: relative;
    overflow: hidden;
}

.testimonial-content .bg-testimonial {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(img/banner.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.testimonial-content .bg-testimonial::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(146,1,144, .5);
}

.testimonial-content .container {
    position: relative;
    z-index: 2;
}

.testimonial-content .testimonial-list {
    display: flex;
    transition: transform 0.6s ease-in-out;
    margin-right: calc(-1 * var(--gutter-x));
    margin-left: calc(-1 * var(--gutter-x));
    margin-bottom: 50px;
}

.testimonial-content .testimonial {
    flex: 1 0 33.3333%;
    box-sizing: border-box;
    padding-right: calc(var(--gutter-x) * 1);
    padding-left: calc(var(--gutter-x) * 1);
    opacity: .6;
    transition: .2s all ease;
    filter: blur(3px);
}

.testimonial-content .testimonial.active {
    opacity: 1;
    filter: blur(0);
}

@media (max-width: 1024px) {
    .testimonial-content .testimonial {
        flex: 1 0 50%;
    }
}

@media (max-width: 700px) {
    .testimonial-content .testimonial {
        flex: 1 0 100%;
    }
}

.testimonial-content .testimonial .inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-white);
    border-radius: var(--border-radius-base);
    border: 1px solid #ddd;
    padding: 2rem;
    padding-bottom: 3.5rem;
    text-align: center;
    height: 100%;
}

.testimonial-content .testimonial .inner .icon {
    width: 50px;
    margin: auto;
}

.testimonial-content .testimonial .inner .star {
    margin-bottom: 1rem;
}

.testimonial-content .testimonial .inner .star span {
    color: var(--color-primary);
}

.testimonial-content .testimonial .inner .star span.null {
    color: var(--color-gray);
}

.testimonial-content .testimonial .inner .img-profil {
    background: var(--color-white);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 100px;
    padding: 10px;
    border-radius: 50%;
    overflow: hidden;
    line-height: 0;
}

.testimonial-content .testimonial .inner .img-profil img {
    border-radius: 50%;
    opacity: .6;
}


/* Footer */

.prefooter-content {
    background: var(--color-dark);
    color: var(--color-white);
}

.prefooter-content .social-link a {
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background: var(--color-secondary);
    padding: 10px;
    border-radius: 50%;
    line-height: 0;
    margin-right: 10px;
}

.prefooter-content .nav-footer a,
footer a {
    color: var(--color-secondary);
}

.prefooter-content .nav-footer a:hover,
footer a:hover {
    color: var(--color-secondary-hover);
}

.prefooter-content .nav-footer {
    list-style: circle;
    padding-left: 18px;
}

.prefooter-content .nav-footer li {
    margin-bottom: 2px;
}

.prefooter-content .nav-footer li::last-child {
    margin-bottom: 0;
}

.prefooter-content .info-contact a {
    color: var(--color-white);
}

.prefooter-content .map-bloc {
    position: relative;
    background: url(img/map-bloc.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: var(--border-radius-base);
    -webkit-box-shadow: inset 0px 0px 23px 15px rgba(0,0,0,0.3); 
    box-shadow: inset 0px 0px 23px 15px rgba(0,0,0,0.3);
}

.prefooter-content .map-bloc::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0, .1);
}

.prefooter-content .map-bloc a {
    position: relative;
    z-index: 2;
}

footer {
    background: var(--color-dark);
    color: var(--color-white);
    border-top: 1px solid #334454;
}

footer .copy {
    font-size: 14px;
}

a.top-scroll {
    position: fixed;
    right: -100px;
    bottom: 30px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 30px;
    border-radius: 50%;
    z-index: 99;
}

a.top-scroll:hover {
    background: var(--color-primary-hover);
}

.box-white {
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius-base);
    border: 1px solid #ddd;
    box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
}

.box-gray {
    padding: 2rem;
    background: var(--color-white-hover);
    border-radius: var(--border-radius-base);
    border: 1px solid #ddd;
    box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
}

/* Sub page */

.service-content .service {
    padding: 0;
    overflow: hidden;
}

.service-content .service .img {
    position: relative;
    line-height: 0;
    width: 100%;
    height: 220px;
}

.service-content .service .img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(146, 1, 144, .4);
}

.service-content .service .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul.column-2 {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

/* Shooping cart */

.shopping-cart {
    background: var(--color-white);
    border-radius: var(--border-radius-base);
    border: 1px solid #ddd;
    box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
}

.shopping-cart table.table-price {
    border-collapse: collapse;
}

.shopping-cart table.table-price tr td {
    border-top: 1px solid #ddd;
    padding: 8px 0;
    font-weight: var(--font-weight-max);
}

.shopping-cart table.table-price tr:first-child td {
    border-top: 0;
    padding-top: 0;
}

.shopping-cart table.table-price tr td:last-child {
    color: var(--color-secondary);
}

.shopping-cart table.table-price tr.total-price {
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: var(--border-radius-min);
}

.shopping-cart table.table-price tr.total-price td {
    padding: 5px 10px;
    border-top: 0;
    font-size: var(--font-size-md);
}

.shopping-cart table.table-price tr.total-price td:last-child {
    color: var(--color-white);
}

.shopping-cart table.table-price .legend-content {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: var(--color-secondary);
    vertical-align: middle;
    line-height: 1;
}

.shopping-cart table.table-price .legend-content legend {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 15px;
    min-width: 270px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-base);
    color: var(--color-dark);
    box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.15);
    cursor: default;
}

.shopping-cart table.table-price .legend-content:hover legend {
    display: block;
}


/* FAQ */

.faq-title {
    width: 100%;
    text-align: left;
    padding: 15px;
    padding-right: 30px;
    font-size: 18px;
    border: none;
    outline: none;
    background: var(--color-white-hover);
    color: var(--color-secondary);
    border-radius: var(--border-radius-base);
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.faq-title.active {
    background: var(--color-secondary);
    color: var(--color-white);
}

.faq-title i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(0);
    font-size: 25px;

}

.faq-title.active i {
    transform: translateY(-50%) rotate(180deg);
}

.faq-txt {
    padding: 0 15px 15px;
  display: none;
}

