/* ========== font css start ========== */


/* Bukra fonts Arabic  */
@font-face {
    font-family: '29LT Bukra';
    src: url('../fonts-bukra/29lt-bukra-bold.eot');
    src: url('../fonts-bukra/29lt-bukra-bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts-bukra/29lt-bukra-bold.woff2') format('woff2'),
        url('../fonts-bukra/29lt-bukra-bold.woff') format('woff'),
        url('../fonts-bukra/29lt-bukra-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: '29LT Bukra';
    src: url('../fonts-bukra/29LTBukra-Medium.eot');
    src: url('../fonts-bukra/29LTBukra-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts-bukra/29LTBukra-Medium.woff2') format('woff2'),
        url('../fonts-bukra/29LTBukra-Medium.woff') format('woff'),
        url('../fonts-bukra/29LTBukra-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/* ========== font css end ========== */

/* ========== reset css start ========== */
:root{
    --body-font: '29LT Bukra';
    --body-font-size: 18px;
    --body-line-height: 1.55rem;
    --body-font-weight: 500;
    --heading-font-weight: 700;
    --cream:#F1EDFA;
    --cream-900: #C9B2F8;
    --cream-800: #F1EBFE;
    --cream-700: #DFD0FD;
    --grey: #000000;
    --grey-700:#B6B6B6;
    --grey-400:#EDEEF0;
    --grey-300:#DDDDDD;
    --dark: #161616;
    --dark-500: #161616;
    --dark-800: #161616;
    --blue: #662ADC;
    --blue-800: #6D30ED;
    --white: #FFFFFF;
    --black: #000000;
}
body{
    font-size: var(--body-font-size);
    font-family: var(--body-font);
    line-height: var(--body-line-height);
    font-weight: var(--body-font-weight);
    color: var(--grey);
}
h1,
h2,
h3,
h4,
h5,
h6{font-weight: var(--heading-font-weight); color: var(--dark);}
h1{font-size: 54px; line-height: 70px;}
h2{font-size: 46px; line-height: 62px;}
h4{font-size: 24px; line-height: 27px;}
h5{font-size: 20px;line-height: 22px;}
a{text-decoration: none;color: var(--grey);}
a:hover{color: var(--blue);}
ul{list-style: none;margin: 0px;padding: 0px;}
img{display: block;max-width: 100%;}
/* ========== reset css end ========== */

/* ========== common class css start ==========  */
.font-16{font-size: 16px !important; line-height: 23px !important;}
.font-15{font-size: 15px !important; line-height: 22px !important;}
.font-14{font-size: 14px !important; line-height: 21px !important;}
.font-13{font-size: 13px !important; line-height: 20px !important;}

.text-dark{color: var(--dark) !important;}
.text-dark-500{color: var(--dark-500) !important;}
.text-dark-800{color: var(--dark-800) !important;}
.text-blue-800{color: var(--blue-800) !important;}
.text-grey{color: var(--grey) !important;}

.bg-cream{background-color: var(--cream) !important;}
.bg-cream-800{background-color: var(--cream-800) !important;}
.bg-grey-400{background-color: var(--grey-400) !important;}
.bg-blue{background-color: var(--blue) !important;}
.bg-blue-800{background-color: var(--blue-800) !important;}

.radius-10{border-radius: 10px !important;}
.radius-12{border-radius: 12px !important;}
.radius-20{border-radius: 20px !important;}

.border-grey-700{
    border: 1px solid var(--grey-700) !important;
}
.border-grey-300{
    border: 1px solid var(--grey-300) !important;
}
.border-bottom-white-200{
    border-bottom: 1px solid #FFFFFF33;
}

.pt-100{padding-top: 100px;}
.pb-100{padding-bottom: 100px;}
.pt-70{padding-top: 70px;}
.pb-70{padding-bottom: 70px;}
.pt-50{padding-top: 50px;}
.pb-50{padding-bottom: 50px;}

.mt-20{margin-top: 20px;}

.gap-12{gap: 12px;}
.gap-40{gap: 40px;}

.mx-width-650{max-width: 650px;}

.row-padding-20.row{
    margin-left: -10px;
    margin-right: -10px;
}
.row-padding-20.row>*{
    padding-right: 10px;
    padding-left: 10px;
}
.row-gap-40{
    row-gap: 40px;
}

.opacity-60{opacity: 0.6;}

.blueHover:hover{
    background-color: var(--blue-800) !important;
    color: var(--white) !important;
    border-color: var(--blue-800) !important;
}
.blueHover:hover img{
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(3081%) hue-rotate(206deg) brightness(119%) contrast(100%);
}
.blueHover:hover svg path{
    stroke: var(--white) !important;
}
/* ========== common class css end ========== */

/* ========== common css start ========== */
.primary-btn,
.secondary-btn{
    font-size: 16px;
    border-radius: 10px;
    width: fit-content;
    min-height: 48px;
    padding-inline: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.primary-btn{
    color: var(--blue-800);
    background-color: var(--white);
    border: 1px solid var(--white);
}
.secondary-btn{
    color: var(--white);
    background-color: var(--blue-800);
    border: 1px solid var(--blue-800);
}
.secondary-btn:hover{
    color: var(--white);
}
#overlay{
    position: absolute;
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #6c30ed59;
    z-index: 1000;
    display: none;
}
/* ========== common css end ========== */

/* ========== header css start ========== */
.site-header .site_nav{
    height: 100px;
}
.site-header .site_nav li{
    padding-inline: 10px;
}
.site-header .site_nav a{
    color: var(--grey-300);
    padding-inline: 10px;
}
.site-header .site_nav a:hover{
    color: var(--white);
}
.site-header .site_nav a.active{
    color: var(--white);
}
.site-header .site_nav a::after{
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
}
.site-header .site_nav a:hover::after{
    width: 100%;
}
.site-header .site_nav a.active::after{
    width: 100%;
}
.site-header .toggle_menu_btn{
    width: 40px;
    aspect-ratio: 1 / 1;
}
/* ========== header css end ========== */

/* ========== home page css start ========== */
/* Banner section  */
.section-banner{
    padding-block: 36px 83px;
    background: linear-gradient(180deg, #6D30ED 0%, #491EA4 100%);
}
.section-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/banner-bg-shap.png) no-repeat, url(../images/banner-mask-two.png) no-repeat;
    background-size: 100% 100%, 100% 100%;
    z-index: 0;
}

/* Explore section */
.section-explore .slick_arrow_css .slick-slider .slick-arrow.slick-next{
    right: 14%;
}
.section-explore .slick_arrow_css .slick-slider .slick-arrow.slick-prev{
    left: 14%;
}
.section-explore .image_block img{
    box-shadow: 0px -6.4px 15.36px 0px #FFFFFF1A, 0px -26.88px 26.88px 0px #FFFFFF17, 0px -60.16px 35.84px 0px #FFFFFF0D, 0px -107.52px 43.52px 0px #FFFFFF03, 0px -167.68px 47.36px 0px #FFFFFF00;
}

/* Work section */
.section-work .icon_block .icon_img{
    width: 100px;
    height: 100px;
    border-radius: 30px 30px 30px 0;
}
.section-work .icon_block .icon_block_item::before{
    content: '';
    height:42px;
    width: calc(100% - 100px);
    position: absolute;
    top: 50px;
    left: calc(50% + 60px);
}
.section-work .icon_block .icon_block_item.first_line::before{
    /* background: url(../images/icon-line-dashed-one.png) no-repeat center center;
    background-size:  100% 100%; */
}
.section-work .icon_block .icon_block_item.second_line::before{
    /* top: 35px;
    height:63px;
    background: url(../images/icon-line-dashed-two.png) no-repeat center center;
    background-size:  100% 100%; */
}
.section-work .icon_block .icon_block_item.last_item_block::before{
    display: none;
}

/* Unique section */
.section-unique .unique_block .unique_block_item{
    padding-block: 36px 50px;
}
.section-unique .unique_block .unique_block_item .image_block,
.section-unique .unique_block .unique_block_item .image_block.noti_image_block img{
    box-shadow: 4px 5px 13px 0px #0000000F, 16px 18px 24px 0px #0000000D, 35px 41px 32px 0px #00000008, 62px 73px 38px 0px #00000003, 97px 115px 42px 0px #00000000;

}
.section-unique .unique_block .unique_block_item .image_block.noti_image_block{
    box-shadow: none;
}
.section-unique .unique_block .unique_block_item .image_block.noti_image_block img:nth-child(2){
    margin-top: -4px;
    width: 92%;
}
.section-unique .unique_block .unique_block_item .image_block.noti_image_block img:nth-child(3){
    margin-top: -3px;
    width: 87%;
}

/* Live offer section */
.section-live-offer{
    padding-block: 250px 100px;
    background: url(../images/live-offer-section-vector-two.png) no-repeat top 78% center, url(../images/live-offer-section-vector-one.png) no-repeat bottom 10% center;
    background-size: 100% auto, 100% auto;
}
.section-live-offer .user_block .other_user,
.section-live-offer .user_block .user_img{
    width: 60px;
    aspect-ratio: 1 / 1;
}
.section-live-offer .user_block .other_user,
.section-live-offer .user_block .user_img:not(:first-child){
    margin-left: -10px;
}
.section-live-offer .user_block .other_user{
    background-color: #E8E1F6;
}
.section-live-offer .offer_live_slider .slick-list{
    overflow: visible;
}
.section-live-offer .offer_live_slider .slider_block_item img{
    object-fit: cover;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.section-live-offer .offer_live_slider .slider_block_item:after{
    content:"";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 50.15%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: block;
    z-index:0;
    border-radius:12px;
}
.section-live-offer .offer_live_slider .slider_block_item .live_text{
    background-color: #D8EDC2;
}
.section-live-offer .offer_live_slider .slider_block_item .upcomming_text{
    background-color: #FFC300;
}
 .section-live-offer .offer_live_slider .slick-list .slick-track{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    gap: 5px;
    margin-left: -2.5px;
}
.section-live-offer .offer_live_slider .slick-slide div,
.section-live-offer .offer_live_slider .slick-slide img{
    height: 100%;width: 100%;
}
.section-live-offer .offer_live_slider .slick-slide{
    transition:  all 0.3s ease;
    height: 240px;
    overflow: hidden;
}
.section-live-offer .offer_live_slider .slick-slide.slick-active:not(.slick-current){
    height: 300px;
}
.section-live-offer .offer_live_slider .slick-slide.slick-active:not(.slick-current) .slider_block_item{
    max-width: 88%;
    margin: 0 auto;
}
.section-live-offer .offer_live_slider .slick-slide.slick-current{
    height: 320px;
}
.section-live-offer .offer_live_slider .slick-slide.slick-current .slider_block_item{
    max-width: 92%;
    margin: 0 auto;
}
.section-live-offer .main_mobile_img{
    margin-top:-70px;
    margin-bottom:-410px;
}
.section-live-offer .main_mobile_img img{
    width: 100%;
}

/* Contact section */
.contact-section{
    padding-block: 70px;
}
.contact-section .contact_title{
    padding: 60px;
}
.contact-section .contact_title .secondary-btn{
    padding-block: 14px;
}
.contact-section .contact_btn{
    height: 75px;
    padding: 10px 30px;
}
/* ========== home page css end ========== */

/* ========= footer css start ========= */
.site-footer .social_link .social_item a{
    width: 28px;
    aspect-ratio: 1 / 1;
}
.site-footer .social_link .social_item a:hover{
    background-color: var(--cream) !important;
}
.site-footer .site_info .privacy_policy_btn::after{
    content: "";
    display: inline-block;
    background-color: #FFFFFF33;
    height: 20px;
    width: 1px;
    position: absolute;
    right: -12px;
    top: 2px;
}
/* ========= footer css end ========= */

/* ========= form common css start ========= */
.form_block input,
.form_block select,
.form_block textarea{
    border:1px solid var(--grey-300);
    border-radius: 10px;
    background-color: var(--white);
    padding: 14px 20px;
    font-weight: 500;
    color: var(--dark);
    width: 100%;
}
.form_block input[type="radio"],
.form_block input[type="checkbox"]{
    padding: 0px;
}
.form_block textarea{
    resize: none;
}
.form_block input::placeholder,
.form_block select::placeholder,
.form_block textarea::placeholder{
    color: var(--grey);
    opacity: 1;
}
.form_block input:focus,
.form_block select:focus,
.form_block textarea:focus {
    box-shadow: none;
    border-color: var(--grey-300);
    outline: none;
}
.form_block input::-ms-input-placeholder,
.form_block select::-ms-select-placeholder,
.form_block textarea::-ms-textarea-placeholder{ /* Edge 12 -18 */
    color: var(--grey);
}
/* ========= form common css end ========= */

/* ========= slick common css start ========= */
.slick_arrow_css .slick-slider .slick-arrow{
    background: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 12;
    box-shadow: 1px 1px 2px 0px #0000001A, 2px 4px 4px 0px #00000017,
                5px 8px 5px 0px #0000000D, 8px 14px 6px 0px #00000003, 13px 22px 7px 0px #00000000;
}
.slick_arrow_css .slick-slider .slick-arrow.slick-next:before,
.slick_arrow_css .slick-slider .slick-arrow.slick-prev:before{
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
}
.slick_arrow_css .slick-slider .slick-arrow.slick-prev:before{
    background: url('../images/purple-arrow-left.png') no-repeat center center;
    background-size: 100% 100%;
}
.slick_arrow_css .slick-slider .slick-arrow.slick-next:before{
    background: url('../images/purple-arrow-right.png') no-repeat center center;
    background-size: 100% 100%;
}
.slick_arrow_css .slick-slider .slick-arrow.slick-next{
    right: 25px;
}
.slick_arrow_css .slick-slider .slick-arrow.slick-prev{
    left: 25px;
}
.slick_arrow_css .slick-dots li{
    width: 6px;
}
.slick_arrow_css .slick-dots li button{
    padding: 0;
}
.slick_arrow_css .slick-dots li button:before{
    opacity: 1;
    background-color: var(--cream-700);
    color: var(--cream-700);
    width: 8px;
    height: 8px;
    border-radius: 20px;
    font-size: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.slick_arrow_css .slick-dots li.slick-active button:before{
    width: 16px;
    background-color: var(--cream-900);
}
.parsley-errors-list {
    margin: 0;
    padding: 0;
}
.parsley-error {
    border-color: #f1556c;
}
.parsley-required , .parsley-minlength , .parsley-maxlength , .parsley-type , .parsley-pattern {
    color: #f1556c;
}
html {
    scroll-behavior: smooth;
}
/* .parsley-errors-list>li {
    list-style: none;
    color: #f1556c;
    margin-top: 5px;
    padding-left: 20px;
    position: relative;
} */
/* .parsley-errors-list>li:before {
    content: "\F159";
    font-family: "Material Design Icons";
    position: absolute;
    left: 2px;
    top: -1px;
} */

.alert-success {
    color: #0e6251;
    background-color: #d1f2eb;
    border-color: #bfece3;
}
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: none;
    opacity: .5;
}

.language_switcher img{
    max-width: 45px;
}
.language_switcher .dropdown-menu{
    border: 1px solid var(--grey-300);
    min-width: auto;
    width: auto;
}
/* ========= slick common css end ========= */
/* ========= slick common css end ========= */


.font_lang_css {
    font-weight: 500;
    color: #FFFFFF; /* Default for desktop */
}

/* Mobile view: up to 767px */
@media (max-width: 767px) {
    .font_lang_css {
        color: #000000;
    }
    .form-control, textarea {
        font-size: 0.8rem !important;
    }
}
.site-logo{
    height: 54px;
    width: 54px;
}
.language-switcher,
.language-option {
    border-width: 2px;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: 500;
}

@media (max-width: 767px) {

    .language-switcher,
    .language-option {
        border-width: 2px;
        border: 2px solid #000000 !important;
        color: #000000 !important;
        font-weight: 500;
    }

    .header-btn {
        padding-left: 9px;
        padding-top: 3px;
    }
}

