:root{
    --main-color:#bc9c67;
    --white-color: #fff;
    --black-color: #000;
    --gradient-bg: linear-gradient(90deg,rgba(212, 164, 84, 1) 0%, rgba(247, 227, 165, 1) 50%, rgba(212, 164, 84, 1) 100%);

    --font-family-primary: "Assistant", sans-serif;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    direction: rtl;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-regular);
    font-size: 20px;
    line-height: 30px;
    color: var(--second-color);
}
h1,h2,h3,h4,h4,h5{
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
}
ul, ol{
    padding-right: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
p{
    margin-bottom: 0;
}
.text-black{
    color: var(--black-color) !important;
}
section, #how_it_work{
    scroll-margin-top: 125px;
}
.global-btn{
    background-color: var(--main-color);
    font-size: 23px;
    line-height: 26px;
    border-radius: 50px;
    font-weight: var(--font-weight-regular);
    padding: 14px 30px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    max-width: fit-content;
}
.global-btn.submit-btn{
    border-radius: 8px;
    font-weight: var(--font-weight-bold);
    padding: 15px 17px !important;
}
.global-btn.submit-btn i{
    font-size: 21px;
    line-height: 23px;
}
.global-btn.submit-btn.rounded{
    border-radius: 50px !important;
}
.global-btn:hover{
    background: none;
    color: var(--main-color);
}
.global-btn.transparent{
    background: none;
    color: var(--main-color);
}
.global-btn.transparent:hover{
    background-color: var(--main-color);
    color: var(--white-color);
}
.global-btn > i{
    margin-right: 10px;
}
.w-fit-content{
    width: fit-content;
}
.min-w-fit-content{
    min-width: fit-content;
}
.max-w-fit-content{
    max-width: fit-content;
}
.mx-w-100{
    max-width: 100% !important;
}
input{
    width: 100%;
    padding: 1.2vh 1.2vw;
    background-color: var(--white-color);
    border-radius: 8px;
    font-weight: var(--font-weight-bold);
    border: 1px solid var(--white-color);
    font-size: 0.9vw;
    line-height: 1.8vh;
}
input::placeholder{
    color: var(--black-color)
}
input:focus{
    box-shadow: none;
    outline-color: var(--main-color);
}
input[type="checkbox"] {
    width: fit-content;
}
.rounded-input > input{
    border-radius: 50px;
}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"]{
    direction: unset;
}
.wpcf7 form .wpcf7-response-output{
    margin: 20px 0 20px;
    text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output{
    color: #dc3232;
    border-color: #dc3232;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color:var(--main-color);
    color:var(--main-color);
}
.wpcf7-not-valid-tip{
    text-align: start;
    font-size: 0.9vw;
    line-height: 2vh;
    position: absolute;
    top: -2.8vh;
}
.wpcf7-list-item{
    margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 0.75vw;
    display: block;
    line-height: 2vh;
    text-align: start;
}
.wpcf7-checkbox label{
    display: flex;
    align-items: start;
    gap: 4px;
    color: var(--white-color);
}
.wpcf7-spinner{
    display: none;
}
.contact-form .wpcf7-submit {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--white-color);
    min-height: 5.3vh;
}
.field-col {
    margin-bottom: 2vh;
}
.text-justify{
    text-align: justify;
}
.text-justify-center{
    text-align: justify;
    text-align-last: center;
}

/**** Hero css start ****/
.hero-wrapper .bg-overlay{
    /* min-height: 100vh; */
    min-height: calc(100vh + 179px);
    z-index: 1;
    object-fit: cover;
    object-position: center center;
}
.hero-wrapper .bg-video{
    width: 100%;
    /* min-height: 100vh; */
    min-height: calc(100vh + 177px);
    object-fit: cover;
    object-position: center center;
}
.hero-wrapper .right-stone-img{
    max-width: 7vw;
}
.hero-wrapper .sticker{
    top: 2vh;
    left: 48vw;
    max-width: 10vw;
}
.hero-content-wrapper .content{
    max-width: 34vw;
    padding: 20px 40px 0;
    z-index: 9;
}
.z-999{
    z-index: 3;
}
.bottom-shape-img{
    max-width: 20vw;
    right: 29vw;
    margin-top: 0;
    margin-bottom: 0 !important;
    bottom: -16.5vh;
}
.left-shape-img{
    max-width: 19vw;
}
.hero-content-wrapper .logo {
    max-width: 9vw;
    margin-bottom: 2vh;
}
.hero-content-wrapper .desc{
    margin-bottom: 2vh;
    font-size: 0.9vw;
    line-height: 3.2vh;
    font-weight: var(--font-weight-regular);
    color: var(--white-color);
}
.hero-content-wrapper .content > .title{
    font-size: 1.6vw;
    line-height: 2.8vh;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(90deg, rgba(212, 164, 84, 1) 0%, rgba(247, 227, 165, 1) 50%, rgba(212, 164, 84, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.6vh;
    position: relative;
}
.hero-content-wrapper .content > .title::before, .hero-content-wrapper .content > .title::after{
    content: '';
    height: 0.8vh;
    width: 7.5vw;
    background-color: var(--main-color);
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    right: 0;
}
.hero-content-wrapper .content > .title::after{
    right: unset;
    left: 0;
}
.hero-content-wrapper .content > .subtitle {
    font-weight: var(--font-weight-regular);
    margin-bottom: 15px;
    color: var(--white-color);
    font-size: 1vw;
    line-height: 3vh;
}
.financial-terms{
    background: var(--gradient-bg);
}
.financial-terms .title {
    font-size: 1.8vw;
    line-height: 4vh;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0;
}
.financial-terms .desc {
    padding-bottom: 1vh;
    font-size: 1.2vw;
    line-height: 3.4vh;
    color: var(--black-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1vh;
}
.condition-text {
    font-weight: var(--font-weight-bold);
    color: var(--main-color);
    font-size: 0.9vw;
    line-height: 2.2vh;
    margin-bottom: 3vh;
}
.feature-list {
    gap: 1.8vw;

}
.feature-list .item > img {
    margin-bottom: 1vh;
    height: 6vh;
    min-height: 6vh;
    object-fit: contain;
}
.feature-list .item > .desc {
    margin-bottom: 0;
    font-size: 0.8vw;
    font-weight: var(--font-weight-bold);
    line-height: 2vh;
}
.button-group {
    gap: 1vw;
    margin-bottom: 3vh;
}
.button-group .global-btn {
    min-width: 7.5vw;
    font-size: 0.9vw;
    line-height: 2.7vh;
    border-width: 0.2vw;
    background-color: rgba(0,0,0,60%);
    border-radius: 50px !important;
    font-weight: var(--font-weight-bold);
    padding: 1vh 2vw;
    color: var(--main-color);
    position: relative;
}
.button-group .global-btn i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
}
.form-title {
    font-size: 1.4vw;
    line-height: 3.2vh;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(90deg, rgba(212, 164, 84, 1) 0%, rgba(247, 227, 165, 1) 50%, rgba(212, 164, 84, 1) 100%);
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2.5vh;
    position: relative;
}
.form-wrap{
    max-width: 38vw;
    padding: 0 40px 28px;
    z-index: 9;
    position: relative;
}
.form-desc{
    font-size: 0.75vw;
    display: block;
    line-height: 2vh;
    text-align: start;
    color: var(--white-color);
    margin-top: 2vh;
}
.copyright-text{
    font-size: 0.7vw;
    line-height: 2vh;
    text-align: start;
    color: var(--white-color);
    position: absolute;
    left: 37vw;
    bottom: -15vh;
    z-index: 9;
}

/* Gallery css start */
.lb-outerContainer{
    border-radius: 0 !important;
    overflow: hidden;
}
.lb-nav a{
    width: 45px !important;
    height: 45px;
    background-position: center center !important;
    background-size: 14px !important;
    border-radius: 50% !important;
    background-color: var(--white-color) !important;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    opacity: 1 !important;
}
.lb-nav a.lb-next{
    margin-right: 15px;
}
.lb-nav a.lb-prev{
    margin-left: 15px;
}
.lightboxOverlay{
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.6) !important;
    opacity: 1 !important;
    backdrop-filter: blur(10px);
}
.lightbox{
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.lb-details{
    display: none;
}
.lb-data{
    top: 10px;
    position: absolute;
    display: block;
    z-index: 99;
    width: 45px !important;
    height: 45px;
    opacity: 1;
    margin-right: 7px;
}
.lb-data .lb-close{
    width: 45px !important;
    height: 45px !important;
    background-position: center center !important;
    background-size: 16px !important;
    border-radius: 50% !important;
    background-color: var(--white-color) !important;
    opacity: 1 !important;
}
.lightbox .lb-image{
    border: 0 !important;
}

/* Global Page */
.privacy-banner{
    min-height: 360px;
    padding: 16px;
    margin-bottom: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.privacy-banner::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}
.page-content{
    margin-bottom: 80px;
}
.page-content ul {
    list-style: disc;
    margin-right: 16px;
}
.page-content h2, .page-content h3 {
    margin-top: 26px;
}
.page-content p {
    margin-bottom: 8px;
    line-height: 28px;
}
.page-content p a{
    color: var(--main-color);
}
.privacy-banner h1 {
    font-size: 50px;
    line-height: 56px;
    margin-bottom: 16px;
    color: var(--white-color);
}
.privacy-banner-content{
    z-index: 9;
    position: relative;
}
.breadcrumbs {
    gap: 10px;
    margin-bottom: 0;
}
.breadcrumbs li {
    color: var(--white-color);
    font-size: 24px;
    line-height: 24px;
    font-weight: var(--font-weight-semibold);
}
.breadcrumbs li a{
    color: var(--main-color);
}
.privacy-links {
    gap: 20px;
    margin-top: 16px;
}
.privacy-links a{
    color: var(--main-color);
    text-decoration: underline;
}

.mobile-menu {
 display: none;
}

@media (max-width: 767px) {
    .mobile-menu {
        background: #FFFFFF;
        padding: 12px;
        position: fixed;
        bottom: 0;
        width: 100%;
        display: block;
	z-index: 1000;
    }

.detail-mob{
        background: #000000;
        border: 2px solid #000000;
        margin-left: 6px;
    }

 .phone-mob{
        background-color: #2bc640;
        border: 2px solid #3aa542;
        margin-right: 6px;
    }
    .detail-mob a, .phone-mob a{
        padding: 10px 0;
        display: block;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }
    .detail-mob a img, .phone-mob a img{
        margin-right: 5px;
    }
    .detail-mob a{
        color: #FFFFFF;
    }
    .phone-mob a{
        color: #FFFFFF;
    }
}