/* common css ******************************************************************************/
/* Cera-Pro  */
@font-face {
    font-family: "Cera-Pro-Light";
    src: url("../fonts/Cera-pro/Cera-Pro-Light.otf");
}

@font-face {
    font-family: "Cera-Pro-Regular";
    src: url("../fonts/Cera-pro/Cera-Pro-Regular.otf");
}

@font-face {
    font-family: "Cera-Pro-Medium";
    src: url("../fonts/Cera-pro/Cera-Pro-Medium.otf");
}

@font-face {
    font-family: "Cera-Pro-Bold";
    src: url("../fonts/Cera-pro/Cera-Pro-Bold.otf");
}

@font-face {
    font-family: "Cera-Pro-Black";
    src: url("../fonts/Cera-pro/Cera-Pro-Black.otf");
}

/* Montserrat */

@font-face {
    font-family: "Montserrat-Regular";
    src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
}

@font-face {
    font-family: "Montserrat-Medium";
    src: url("../fonts/Montserrat/Montserrat-Medium.ttf");
}

@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf");
}

/* Candlescript */

@font-face {
    font-family: "Candlescript-Regular";
    src: url("../fonts/Candlescript/Candlescript.otf");
}

/* Photograph-Signature */

@font-face {
    font-family: "Photograph-Signature";
    src: url("../fonts/Photograph-Signature/Photograph-Signature.ttf");
}

:root {
    --white: #fff;
    --black: #000;
    --black_231405: #231405;
    --black_04050A: #04050A;
    --black_101010: #101010;

    --gray_A7A7A7: #A7A7A7;

    --yellow_E7CD6D: #E7CD6D;
    --yellow_E9D070: #E9D070;
    --yellow_B98F34: #B98F34;
    --yellow_D4BC64: #D4BC64;


    --hero-bottom-gradient: linear-gradient(hsla(0.08, 0.75, 0.08, 100), hsla(0.13.0.38, 0.25, 0));


    --CeraPro_Light: "Cera-Pro-Light";
    --CeraPro_Regular: "Cera-Pro-Regular";
    --CeraPro_Medium: "Cera-Pro-Medium";
    --CeraPro_Bold: "Cera-Pro-Bold";
    --CeraPro_Black: "Cera-Pro-Black";

    --Montserrat_Regular: "Montserrat-Regular";
    --Montserrat_Medium: "Montserrat-Medium";
    --Montserrat_SemiBold: "Montserrat-SemiBold";


    --Candlescript_Regular: "Candlescript-Regular";

    --Photograph_Signature: "Photograph-Signature";

    --gradient_btn: linear-gradient(#A9873D, #E9D070, #A9873D);

    --transition: transform 300ms ease-out;



}

.white {
    color: var(--white);
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}

body {
    background: var(--black_231405);
    font-family: 'Roboto', sans-serif;
    font-family: 'Poppins', sans-serif;
}

body.show {
    position: fixed;
    top: 0;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--yellow_E9D070);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 76px;
}

h3 {
    font-family: var(--CeraPro_Bold);
    font-size: clamp(1.5rem, 1.528vw + 1.042rem, 2.875rem);
    line-height: clamp(1.7rem, 1.653vw + 1.754rem, 3.738rem);
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--yellow_E9D070);
}

p:last-child {
    margin-bottom: 0;
}

.small {
    font-size: 16px;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    color: var(--yellow_E9D070);
    position: relative;
    font-family: var(--Photograph_Signature);
}

.section-heading p {
    font-family: var(--CeraPro_Light);
}

.section-heading h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 247px;
    height: 2px;
    background: var(--yellow_B98F34);
    left: 50%;
    transform: translateX(-50%);
}

.btn-common {
    font-size: 20px;
    padding: 20px 40px;
    background: transparent;
    color: var(--yellow_E9D070) !important;
    border-radius: 50px;
    border: 1px solid var(--yellow_E9D070);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--CeraPro_Medium);
    text-transform: uppercase;

}


.btn-common:hover {
    animation: rotate 0.7s ease-in-out both;
}

.btn-common:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.btn-common:hover i {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(3deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-3deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

@keyframes storm {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }

    25% {
        transform: translate3d(4px, 0, 0) translateZ(0);
    }

    50% {
        transform: translate3d(-3px, 0, 0) translateZ(0);
    }

    75% {
        transform: translate3d(2px, 0, 0) translateZ(0);
    }

    100% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
}

.btn-gradient {
    background: var(--gradient_btn);
}

.btn-common img {
    max-width: 30px;
    margin-left: 30px;
}

section {
    padding-bottom: 100px;
    overflow: hidden;
}

.bg {
    padding: 100px 0;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

img,
video {
    max-width: 100%;
}

.button-box {
    padding-top: 20px;
}

.button-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

.owl-nav {
    margin-top: 0;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button.owl-prev {
    left: -10%;
}

.owl-nav button.owl-next {
    right: -10%;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}

.form-control-common {
    background: var(--white);
    border: 1px solid var(--black);
    font-size: 20px;
    padding: 15px 50px 15px 20px;
    width: 100%;
    appearance: textfield;
    color: var(--black);
    border-radius: 0;
    box-shadow: none;
    resize: none;
    outline: none;
}

.input-group {
    padding-bottom: 30px;
}

.padding-t {
    padding-top: 80px;
}



/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

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

#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    /* box-shadow: 0 0 10px 2px #000; */
    backdrop-filter: blur(30px);
}

#header {
    background: transparent;
    padding: 15px 0;
    transition: .5s all;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 99;
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo-box img {
    max-width: 220px;
    width: 100%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}

#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--yellow_B98F34);
    transition: .5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}

#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}

#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}

#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}

#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}

#header .button-box {
    margin-left: 20px;
    padding-top: 0;
}

.homeBanner-box .button-box .btn-common,
#header .button-box .btn-common {
    color: var(--black_04050A) !important;
    font-family: var(--Montserrat_SemiBold);
    text-transform: uppercase;
    border-radius: 50px;
}

#header .main-nav nav ul li {
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

#header .main-nav nav ul li a {
    color: var(--white);
    padding: 5px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--yellow_E7CD6D);
    font-family: var(--Montserrat_Regular);
}



#header .main-nav nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: var(--yellow_E7CD6D);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

#header .main-nav nav ul li a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

#header .main-nav nav ul li:first-child a::before {
    display: none;
}

/* homeBanner css ******************************************************************************/

#homeBanner .homeBanner-part .video-box {
    position: relative;
}

#homeBanner .homeBanner-part video {
    width: 100%;
    height: 100%;
}

#homeBanner .homeBanner-part .video-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 250px;
    width: 100%;
    background: linear-gradient(#040404, #00000000);
}

#homeBanner .homeBanner-part .video-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 350px;
    width: 100%;
    background: linear-gradient(#00000000, #231405);
}

/* about section css ******************************************************************************/
#about {
    overflow: visible;
    overflow-x: clip;
}

.about-part {
    padding-top: 70px;
}

.about-part .section-heading h2 {
    font-family: var(--CeraPro_Medium);
}

.about-part .section-heading h2 span {
    font-family: var(--Candlescript_Regular);
}


#about .border-line {
    outline: 1px solid var(--yellow_D4BC64);
    margin-inline: auto;
    outline-offset: -60px;
    position: relative;
    z-index: 9;
}

.flot-img {
    position: absolute;
}

#about .card-red {
    top: 43%;
    right: 40%;
    animation: cardRotate infinite 1s ease-in-out;
}

@keyframes cardRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

#about .coin-red {
    top: -1%;
    right: 10%;
    max-width: 150px;
}

#about .coin-black {
    left: 1%;
    top: 37%;
    max-width: 120px;
}

.about-box {
    width: 90%;
    margin-inline: auto;
    padding-block: 50px 60px;
    padding-inline: clamp(1.875rem, 5vw, 7.5rem);
    position: relative;
}

.about-box .section-heading {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    background: var(--black_231405);
    width: 40%;
}

.about-box .section-heading h2::after {
    bottom: 10px;
    width: 150px;
    left: 53%;
}

.about-box-wrapper {
    padding-top: 130px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    padding-bottom: 20px;
}

.about-box-wrapper .img-box {
    position: relative;
    padding-bottom: 30px;
}

.about-box-wrapper .img-box::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: -1px;
    height: 100%;
    width: 103%;
    background: url('../images/img-border-new.png');
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.about-box-wrapper .img-box img {
    filter: grayscale(0.9);
}


.about-box-wrapper .text-box p {
    margin: 50px 0;
}

.about-us-luxury-section .row {
    gap: 12px;
    width: 100%;
}

#about .parent-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}



.parent-wrapper .box3 {
    grid-column: span 2 / span 2;
}

.about-us-luxury-section .video-box {
    position: relative;
    z-index: -1;
}

.about-us-luxury-section .video-box video {
    height: 100%;
    display: block;
}

.about-us-luxury-section .video-box .title-box {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.about-us-luxury-section .video-box .title-box p {
    font-family: var(--Photograph_Signature);
    font-size: 5.5rem;
    line-height: 0;
}

.about-us-luxury-section .video-box .title-box span {
    font-family: var(--CeraPro_Medium);
    font-size: 1.3rem;
    display: block;
    text-transform: uppercase;
    color: var(--yellow_E9D070);
}

.about-us-luxury-section .video-box .title-box img {
    transition: var(--transition);
}

.parent-wrapper .box1 .title-box p {
    line-height: 1;
    margin-bottom: 0;
}

.parent-wrapper .box2 .title-box p {
    line-height: 0;
}

.parent-wrapper .box3 .title-box p {
    line-height: 0.8;
}

.parent-wrapper .box3 .title-box span {
    font-family: var(--CeraPro_Black);
    font-size: 2.5rem;
}

.about-us-luxury-section .box:hover img {
    transform: translateY(-15px);
}

/* Events section css ******************************************************************************/

#events .events-part {
    background: var(--black);
}

.event-img-wrapper {
    display: grid;
    grid-template-columns: 35% 20% 45%;
    grid-template-rows: 60% 40%;
    gap: 8px;
}

.event-img-wrapper .img-box1 {
    grid-row: span 2 / span 2;
}


.event-img-wrapper .img-box3 {
    grid-column-start: 2;
    grid-row-start: 2;
    position: relative;
}

.event-img-wrapper .img-box3 button {
    position: absolute;
    top: -15%;
    left: -40%;
    background: url('../images/button-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    text-transform: uppercase;
    padding: 30px 45px;
    border: none;
    font-size: 2rem;
    font-family: var(--CeraPro_Black);
}

.event-img-wrapper .img-box3 button span {
    color: rgba(130, 76, 17);
}

.event-img-wrapper .img-box4 {
    grid-column-start: 3;
    grid-row-start: 1;
}

.event-img-wrapper .img-box5 {
    grid-column-start: 3;
}

.event-img-wrapper .img-box img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(1);
    transition: var(--transition);
}

.event-img-wrapper .img-box:hover img {
    filter: grayscale(0);
}

/* section css ******************************************************************************/
#fun_luxury {
    overflow: visible;
    overflow-x: clip;
}

#fun_luxury .fun-luxury-part {
    /* background: var(--black_101010) ,url('../images/Fun&Luxury-bg.png'); */
    background: url('../images/Fun&Luxury-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 70px;
    position: relative;
}

#fun_luxury .card-red {
    top: 13%;
    left: 8%;
    pointer-events: none;
    animation: cardRotate infinite 1s ease-in-out;
    transform: scale(1.5);
}

#fun_luxury .wheel {
    top: -15%;
    right: -10%;
    max-width: 640px;
}

#fun_luxury .fun-luxury-part .fun-luxury-box {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

#fun_luxury .section-heading p {
    font-family: var(--CeraPro_Light);
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 2.3rem;
    position: relative;
    bottom: -20px;
}

.fun-luxury-slider .owl-item {
    transform: scale(0.8);
}

.fun-luxury-slider .owl-item .img-box {
    border: 1px solid var(--yellow_E9D070);
    border-radius: 50%;
    padding: 40px;
}

.fun-luxury-slider .owl-item .img-box img {
    filter: grayscale(1);
    border-radius: 50%;
}

.fun-luxury-slider .owl-item.active.center {
    transform: scale(1);
}

.fun-luxury-slider .owl-item.active.center img {
    filter: grayscale(0);
}

.fun-luxury-slider .item {
    text-align: center;
    padding-bottom: 20px;
}

.fun-luxury-slider .item h4 {
    font-family: var(--CeraPro_Black);
    margin-top: 25px;
    text-transform: uppercase;
    width: 50%;
    font-size: 1.8rem;
    margin-inline: auto;
    position: relative;
    text-wrap-style: balance;
}

.fun-luxury-slider .item h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: var(--yellow_E9D070);
}

/* Hall-of-fame css ******************************************************************************/
#hall_of_fame {
    overflow: visible;
    overflow-x: clip;
}

.hall-of-fame-part {
    /* height: 900px; */
    position: relative;
    background: url('../images/hall-of-frame-bg.png');
    background-size: 100% 100%;
    background-position: center;
}

.hall-of-fame-slider {
    position: relative;
    top: -150px;
}

#hall_of_fame .item {
    position: relative;
    display: flex;
    justify-content: center;
}

#hall_of_fame .item video {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--yellow_E9D070);
    height: 600px;
}

#hall_of_fame .item .video-control-symbol {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

#hall_of_fame .item .video-control-symbol .ply-icon {
    height: 50px;
    width: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hall_of_fame .item .ply-icon svg {
    height: 90%;
    width: 90%;
    fill: #E9D070;
}


#hall_of_fame .item .video-control:not(.playing) .video-control-pause,
#hall_of_fame .item .video-control.playing .video-control-play {
    display: none;
}

#hall_of_fame .item .video-control-symbol {
    font: 1.75em/0 Apple Color Emoji;
    vertical-align: -0.15em;
}

.hall-of-fame-part .right-shap {
    max-width: 650px;
    right: 0;
    mix-blend-mode: screen;
    top: 23%;
}

.hall-of-fame-part .left-shap {
    left: 0;
    top: 32%;
    mix-blend-mode: screen;
}

.hall-of-fame-part .golden-dice {
    right: 7%;
    top: -5%;
    max-width: 200px;
}


#hall_of_fame .star-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hall_of_fame .star-box img {
    max-width: 50vw;
}

#hall_of_fame .star-box .section-heading {
    position: absolute;
    margin-bottom: -140px;
}

#hall_of_fame .star-box .section-heading h2::after {
    display: none;
}

#hall_of_fame .star-box .section-heading p {
    font-size: 2.3rem;
    margin-bottom: 0;
}

/* Testimonial css ******************************************************************************/

#testimonial {
    overflow: visible;
    overflow-x: clip;
    margin-top: -11px;
}

.testimonial-part {
    background: url('../images/testimonial-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.testimonial-slider-box {
    padding-left: clamp(1rem, 10vw, 11.25rem);
    padding-top: 40px;
}

.testimonial-slider-box .owl-item img.profile {
    width: auto;
    max-width: 250px;
    border-radius: 42px;
}

#testimonial .review-box {
    display: flex;
    max-width: 95%;
    padding: 20px 60px 20px 16px;
    border: 1px solid var(--yellow_E9D070);
    border-radius: 42px;
    column-gap: 8%;
    position: relative;
}

#testimonial .review-box .img-box {
    flex-shrink: 0;
}

#testimonial .review-box .review-text img.star-img {
    width: auto !important;
}

#testimonial .review-box .review-text {
    padding-top: 35px;
}

#testimonial .review-box .review-text h4 {
    text-transform: uppercase;
    font-family: var(--CeraPro_Black);
}

#testimonial .review-box .review-text p {
    color: var(--white);
    margin: 30px 0;
    font-family: var(--CeraPro_Light);
    font-size: 1.4rem;
    max-width: 80%;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden; */
}

#testimonial .review-box .review-text span {
    font-family: var(--Montserrat_Medium);
    text-transform: capitalize;
    color: var(--white);
    font-size: 16px;
}

#testimonial .review-box img.quote {
    max-width: 150px;
    position: absolute;
    right: 80px;
    bottom: 40px;
}


#testimonial img.golden-dice {
    max-width: 200px;
    top: -50px;
    left: -55px;
}

#testimonial img.card-red {
    right: 10%;
    top: -7%;
    animation: cardRotate infinite 1s ease-in-out;

}

#testimonial img.card-black {
    max-width: 150px;
    left: 5%;
    bottom: -11%;
    animation: cardRotate infinite 1s ease-in-out;
}

/* FAQ css ******************************************************************************/

.FAQ-part {
    padding: 70px 0;
    background: url('../images/FAQ-bg.png');
    background-position: center;
    background-size: cover;
}

.FAQ-part .section-heading h2 {
    font-family: var(--CeraPro_Light);
    text-transform: uppercase;
    font-size: 2.5rem;
}

.FAQ-part .section-heading p {
    font-family: var(--Photograph_Signature);
    text-transform: capitalize;
    font-size: 5rem;
    margin-bottom: 0;
}

.FAQ-part .section-heading h2::after {
    bottom: -14px;
}

.FAQ-part .accordion-item,
.FAQ-part .accordion-header,
.FAQ-part .accordion-button {
    background: transparent;
}

.FAQ-part .accordion-button {
    color: var(--yellow_E9D070);
    font-family: var(--CeraPro_Light);
    font-size: 1.4rem;
    padding-left: 0;
    padding-block: 20px;
}
.FAQ-part .accordion-button span{
    flex-grow: 1;
    /* text-align: center; */
}
.accordion-body p {
    color: var(--white);
    font-size: 1.2rem;
    font-family: var(--CeraPro_Light);
    text-transform: capitalize;
}
.accordion-body ul{
    margin-left: 20px;
    margin-bottom: 12px;
}
.accordion-body ul li{
    color: var(--white);
    font-size: 1.2rem;
    font-family: var(--CeraPro_Light);
    text-transform: capitalize;
    list-style: disc;
}

.FAQ-part .accordion-button:not(.collapsed),
.FAQ-part .accordion-button:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.FAQ-part .accordion-button::after {
    width: 11px;
    height: 11px;
    /* border-radius: 100%; */
    /* background-color: var(--bs-danger); */
    background-image: url('../images/Polygon-open.png') !important;
    background-size: 100% 100%;
    transform: unset;
}

.FAQ-part .accordion-button.collapsed::after {
    /* background-color: var(--bs-gray-300); */
    background-image: url('../images/Polygon-close.png') !important;

}

.FAQ-part .accordion-button:not(.collapsed)::after {
    transform: rotate(0) !important;
}

/* footer css ******************************************************************************/
#footer {
    background: var(--black);
}

#footer p,
#footer a,
#footer li {
    color: var(--gray_A7A7A7);
    font-family: var(--CeraPro_Light);

}

#footer .top-box {
    padding-top: 70px;
}

#footer .top-box .logo-box img {
    /* max-width: 220px; */
    margin-bottom: 30px;
}

#footer .top-box .phone-number p a,
#footer .top-box .phone-number p {
    color: var(--white);
    font-family: var(--CeraPro_Medium);
}

#footer .top-box .phone-number p span {
    font-family: var(--CeraPro_Light);
    display: inline;
}

#footer .top-box .link-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 10px;
    margin-top: 20px;
    justify-content: end;
}

#footer .top-box .link-box ul li {
    color: var(--white);
    font-family: var(--CeraPro_Medium);
    font-size: 20px;
}

#footer .top-box .link-box ul li a {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 1px solid var(--gray_A7A7A7);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

#footer .top-box .link-box ul li a i {
    font-size: 24px;
    transition: var(--transition);
}

#footer .top-box .link-box ul li:hover a {
    border: 1px solid var(--yellow_E9D070);
}

#footer .top-box .link-box ul li:hover i {
    color: var(--yellow_E9D070);
}

#footer .end-box {
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid gray;
}

#footer .end-box .link-box ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#footer .end-box .link-box ul li,
#footer .end-box .link-box ul li a {
    font-size: 20px;
}

#footer .subscribe-container {
    display: flex;
    align-items: center;
    border-radius: 50px;
    /* overflow: hidden; */
}

#footer .subscribe-input {
    border: none;
    padding: 18px 20px;
    border-radius: 50px;
    outline: none;
    width: 300px;
    position: relative;
    z-index: 2;
    width: 100%;
    text-transform: lowercase;
}

#footer .subscribe-input::placeholder {
    text-transform: capitalize;
}

#footer .subscribe-button {
    border: none;
    padding: 16px 20px;
    color: var(--black);
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    width: 34%;
    font-family: var(--CeraPro_Medium);
    margin-left: -5%;
    font-size: 18px;
}

/* footer CSS changes after dynamic  */

#footer .subscribe-container p{
    display: flex;
    position: relative;
}
#footer .subscribe-container p br{
    display: none;
}

#footer .subscribe-container .wpcf7-spinner{
    display: none;
}

#footer .subscribe-container .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -30px;
    z-index: 9;
    font-size: 18px;
}
#footer .wpcf7 form .wpcf7-response-output {
    color: var(--white);
    font-size: 14px;
    margin-top: 35px;
}

/* PRELOADER CSS */
.page-loader{
	width: 100%;
	height: 100vh;
	position: absolute;
	background: var(--black);
	z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* SPINNER ANIMATION */
.spinner {
	position: relative;
	/* top: 35%; */
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;

  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}