:root {
    --inter: "Inter", sans-serif;
    --poppins: "Poppins", sans-serif;
    --roboto: "Roboto", sans-serif;
}
:root {
    --black-bold: 900;
    --extra-bold: 800;
    --bold: 700;
    --semi-bold: 600;
    --medium: 500;
    --light: 300;
    --regular: 400;
}
:root {
    --font-color: #333333;
    --body-bg: #08091d;
    --table-bg: #141637;
    --body-color: #bbcaf0;
    --text-white: #fff;
    --text-white-light: #f2f6ff;
    --border-color: #232541;
    --border-color-2: #323458;
    --btn-theme-color: linear-gradient(73.86deg, #8f5bf9 -30.86%, #4407c1 57.88%);
    --nano-gradient: linear-gradient(45deg, #8f5bf9, #4407c1, rgba(250, 250, 250, 0.4), #7209b7);
    --side-overlay: linear-gradient(89.04deg, #08091d 17.41%, rgba(8, 9, 29, 0) 99.23%);
    --yellow: #e5bf45;
    --gray: #bbcaf0;
    --blue: #5965f1;
    --red: #dc3869;
    --purple: #6e38dc;
    --dark-200: #232541;
    --gradient-blue: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #5965f1;
    --gradient-purple: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #6e38dc;
    --gradient-paste: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #2fadad, #2fadad);
}
:root {
    --text-12: 12px;
    --text-13: 13px;
    --text-15: 15px;
    --text-16: 16px;
    --text-17: 17px;
    --text-18: 18px;
    --text-19: 19px;
    --text-20: 20px;
    --text-24: 24px;
    --text-30: 30px;
    --text-48: 48px;
    --text-90: 90px;
}
:root {
    --ease-in: 0.4s ease-in;
    --smooth: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-bar button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}
.line {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.preloader-area {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--body-bg);
    z-index: 999999;
    display: flex;
    align-items: center;
}
.preloader-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader-wrap .ring {
    position: relative;
    width: 150px;
    height: 150px;
    margin: -30px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top: 4px solid #6e38dc;
}
.preloader-wrap .ring::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: #6e38dc;
    box-shadow: 0 0 0 5px rgba(111, 56, 220, 0.5), 0 0 0 10px rgba(111, 56, 220, 0.5);
}
.preloader-wrap .ring:nth-child(1) {
    animation: circle2 2s linear infinite;
}
.preloader-wrap .ring:nth-child(2) {
    animation: circle1 2s linear infinite;
}
.preloader-wrap .ring:nth-child(3) {
    position: absolute;
    top: -66.66px;
    animation: circle 2s linear infinite;
}
@keyframes circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes circle1 {
    0% {
        transform: rotate(120deg);
    }
    100% {
        transform: rotate(480deg);
    }
}
@keyframes circle2 {
    0% {
        transform: rotate(240deg);
    }
    100% {
        transform: rotate(600deg);
    }
}
@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}
.header-area {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--body-bg);
    transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header-area.fixed {
    position: fixed;
    z-index: 99999;
}
.header-area.fixed .header-overlay {
    top: -100px;
}
.header-area.fixed .header-navbar > ul > li {
    padding: 25px 24px;
}
@media (max-width: 1199px) {
    .header-area.fixed .header-navbar > ul > li {
        padding: 8px 0px;
    }
}
.header-area .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    transition: var(--smooth);
}
@media (max-width: 1099px) {
    .header-area {
        padding: 15px 0px;
    }
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo a svg {
    max-width: 120px;
}
.header-navbar ul li a {
    color: var(--text-white);
    text-transform: initial;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    display: inline-block;
    transition: 0.4s linear;
    position: relative;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(to right, #fff, #fff, #fff);
    background-size: 100% 1px, 0 1px;
    background-position: left bottom;
    background-repeat: no-repeat;
}
.header-navbar ul li a:hover {
    background-size: 0 1px, 100% 1px;
}
@media (min-width: 1100px) {
    .header-navbar > ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-navbar > ul > li {
        padding: 32px 24px;
        position: relative;
        transition: var(--smooth);
    }
}
@media (min-width: 1100px) and (max-width: 1199px) {
    .header-navbar > ul > li {
        padding: 30px 18px;
    }
}
@media (min-width: 1100px) {
    .header-navbar > ul > li:first-child {
        padding-left: 0px;
    }
    .header-navbar > ul > li > a {
        display: flex;
        grid-gap: 5px;
        align-items: center;
        position: relative;
    }
    .header-navbar > ul > li > a i {
        position: absolute;
        right: -20px;
        top: 50%;
        transform: rotateX(0deg) translate(0%, -50%);
        transition: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .header-navbar > ul > li:hover a i {
        transform: rotateX(-180deg) translate(0%, calc(50% + 2px));
    }
    .header-navbar > ul > li:hover .submenu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
    .header-navbar > ul > li:hover .submenu li {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
    }
    .header-navbar > ul > li:hover .submenu li:nth-child(1) {
        transition-delay: 0.1s;
    }
    .header-navbar > ul > li:hover .submenu li:nth-child(2) {
        transition-delay: 0.3s;
    }
    .header-navbar > ul > li:hover .submenu li:nth-child(3) {
        transition-delay: 0.5s;
    }
    .header-navbar > ul > li:hover .submenu li:nth-child(4) {
        transition-delay: 0.7s;
    }
    .header-navbar > ul > li:hover .submenu li:nth-child(5) {
        transition-delay: 0.9s;
    }
    .header-navbar > ul > li:hover .submenu li:nth-child(6) {
        transition-delay: 1.1s;
    }
    .header-navbar > ul > li:hover .submenu li:nth-child(7) {
        transition-delay: 1.1s;
    }
    .header-navbar > ul > li .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 15px;
        background: linear-gradient(0deg, rgba(113, 9, 183, 0.1), rgba(113, 9, 183, 0.1)), rgba(113, 9, 183, 0.1);
        background: -webkit-linear-gradient(0deg, rgba(113, 9, 183, 0.1), rgba(113, 9, 183, 0.1)), rgba(113, 9, 183, 0.1);
        background: -moz-linear-gradient(0deg, #250848, #250848), #250848;
        min-width: 150px;
        border-radius: 5px;
        transform: translateY(-25px) scale(0.95);
        transition: 600ms cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
        display: block !important;
        backdrop-filter: blur(30px);
    }
    .header-navbar > ul > li .submenu li {
        padding: 5px 0px;
        transform: translateY(15px);
        opacity: 0;
        visibility: hidden;
        transition: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .header-navbar > ul > li .submenu li a:hover {
        transform: translate(5px);
    }
}
@media (max-width: 1099px) {
    .header-navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        z-index: 9999999;
        height: calc(100vh - 80px);
        overflow: hidden;
        min-width: 220px;
        max-width: 350px;
        padding: 20px 30px;
        transition: 600ms cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
        opacity: 0;
    }
    .header-navbar.show {
        visibility: visible;
        opacity: 1;
        left: 0;
    }
    .header-navbar:after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        background: url(../img/mobile-nav-bg.jpg);
        opacity: 1;
        background-size: cover;
        transform: scale(1.1);
    }
    .header-navbar ul li {
        padding: 8px 0px;
    }
    .header-navbar ul li.active a i {
        transform: rotateX(180deg);
    }
    .header-navbar ul li a {
        display: flex;
        justify-content: space-between;
    }
    .header-navbar ul li a i {
        transition: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .header-navbar ul li a:hover {
        background-size: 0 0px, 0% 0px;
    }
    .header-navbar ul li .submenu {
        display: none;
        padding: 15px 10px 10px;
    }
}
.header_contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.toggle-bar {
    margin-left: 10px;
    display: none;
}
@media (max-width: 1099px) {
    .toggle-bar {
        display: block;
    }
}
.toggle-bar button svg {
    width: 35px;
}
.asdfas {
    delay: flex;
}


.banner-area {
    margin: 25px 0px 20px;
}

.banner-wrapper{min-height: 260px;}
@media (min-width: 1100px) {
    .banner-wrapper, .banner-slider-area, .owl-carousel .owl-stage-outer {min-height: 326px;}
}

.banner-side-overlay {
    position: relative;
}
.banner-side-overlay:after,
.banner-side-overlay:before {
    position: absolute;
    content: "";
    top: 0;
    width: 122px;
    height: 100%;
    z-index: 2;
}
@media (max-width: 991px) {
    .banner-side-overlay:after,
    .banner-side-overlay:before {
        width: 40px;
    }
}
.banner-side-overlay:after {
    background: linear-gradient(89.04deg, #08091d 17.41%, rgba(8, 9, 29, 0) 99.23%);
    transform: rotate(-180deg);
    right: 0;
}
.banner-side-overlay:before {
    background: linear-gradient(89.04deg, #08091d 17.41%, rgba(8, 9, 29, 0) 99.23%);
    left: 0;
}
.banner-single-slider {
    position: relative;
    z-index: 1;
}
.banner-single-slider .banner-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    border-radius: 10px;
}
.banner-single-slider .banner-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-single-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* grid-gap: 100px; */
    padding: 38px 0px 38px 80px;
    margin: 15px;
}
@media (max-width: 1199px) {
    .banner-single-slider {
        padding: 38px 0px 38px 38px;
        grid-gap: 50px;
    }
}
@media (max-width: 991px) {
    .banner-single-slider {
        padding: 25px 0px 25px 35px;
    }
}
@media (max-width: 575px) {
    .banner-single-slider {
        padding: 25px 35px;
    }
}
.bss-content-wrap {
    /* max-width: 300px; */
}
.bss-content-wrap a {
    color: #ffffff;
}
.bss-content-wrap h3,
.bss-content-wrap .title {
    display: block;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--text-white);
}
@media (max-width: 767px) {
    .bss-content-wrap h3,
    .bss-content-wrap .title {
        font-size: 24px;
    }
}
.bss-content-wrap h3 strong,
.bss-content-wrap .title strong {
    font-weight: 900;
    font-size: 50px;
    line-height: 68px;
    letter-spacing: -0.02em;
}
@media (max-width: 575px) {
    .bss-content-wrap h3,
    .bss-content-wrap .title {
        font-size: 24px;
    }
    .bss-content-wrap h3 strong,
    .bss-content-wrap .title strong {
        font-size: 35px;
        line-height: 1.2;
    }
}
.bss-content-wrap .btn {
    overflow: hidden;
    width: 250px;
}
.bss-content-wrap .btn:hover {
    transition-delay: 0s !important;
}
.author {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.author {
    margin-bottom: 16px;
}
.author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}
.home .author img {
    width: 40px;
    height: 40px;
}

.author span {
    font-family: var(--inter);
    font-weight: 700;
    font-size: 24px;
    line-height: 17px;
    color: var(--text-white-light);
}
@media (max-width: 575px) {
    .author {
        margin-bottom: 20px;
    }
}
.bss-image-wrap {
    min-height: 210px;
    min-width: 210px;
    position: relative;
}
@media (max-width: 767px) {
    .bss-image-wrap {
        min-height: 200px;
        min-width: 200px;
    }
}
@media (max-width: 575px) {
    .bss-image-wrap {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
        height: auto;
        margin: 0 !important;
    }
}
.bss-image-wrap img {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scale(1.2);
    height: 100%;
    width: 100%;
}
@media (max-width: 575px) {
    .bss-image-wrap img {
        width: 80%;
        height: 80%;
        margin: 0;
    }
}
.banner-slider-img-1 {
    max-width: 210px;
    max-height: 275px;
    margin-bottom: -20px;
}
.banner-slider-img-2 {
    min-height: 220px;
    min-width: 240px;
    margin-bottom: -15px;
}
.banner-slider-img-3 {
    width: 250px;
    height: 265px;
    margin-top: -56px;
    margin-bottom: -21px;
}
@media (max-width: 991px) {
    .banner-slider-img-3 {
        width: 224px;
        height: 240px;
    }
}
@media (max-width: 767px) {
    .banner-slider-img-3 {
        margin-bottom: -25px;
        height: 230px;
    }
}
@media (max-width: 575px) {
    .banner-slider-img-3 {
        margin-bottom: 19px !important;
        width: 140px;
    }
}
.relative {
    position: relative;
    z-index: 1;
}
.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}
.slider-navigation svg {
    max-width: 20px;
    max-height: 20px;
    transition: var(--smooth);
}
.slider-navigation:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    z-index: -1;
    background: var(--btn-theme-color);
    opacity: 0;
    transition: var(--smooth);
}
.slider-navigation:before {
    position: absolute;
    content: "";
    background: var(--nano-gradient);
    top: -2px;
    left: -2px;
    background-size: 300%;
    z-index: -1;
    filter: blur(3px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity var(--smooth);
    border-radius: 5px;
}
.slider-navigation:hover {
    border-color: transparent;
}
.slider-navigation:hover svg path {
    fill: var(--text-white);
}
.slider-navigation:hover:after,
.slider-navigation:hover:before {
    opacity: 1;
}
.customNextBtn {
    right: 35px;
}
@media (max-width: 991px) {
    .customNextBtn {
        right: 0px;
    }
}
.customPrevBtn {
    left: 35px;
}
@media (max-width: 991px) {
    .customPrevBtn {
        left: 0px;
    }
}
/*
.banner-slider-area .owl-item .bss-content-wrap h3,
.banner-slider-area .owl-item .bss-content-wrap .author,
.banner-slider-area .owl-item .bss-content-wrap .btn {
    transform: translateY(70px) scale(0.8);
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
}
*/

.banner-slider-area .owl-item .bss-image-wrap img {
    transform: scale(1.4);
    opacity: 0;
    transition: 800ms cubic-bezier(0.4, 0, 0.2, 1);
}
/*
.banner-slider-area .owl-item.active .bss-content-wrap h3 {
    transition-delay: 0.1s;
}
.banner-slider-area .owl-item.active .bss-content-wrap .author {
    transition-delay: 0.3s;
}
.banner-slider-area .owl-item.active .bss-content-wrap .btn {
    transition-delay: 0.4s;
}
.banner-slider-area .owl-item.active .bss-content-wrap h3,
.banner-slider-area .owl-item.active .bss-content-wrap .author,
.banner-slider-area .owl-item.active .bss-content-wrap .btn {
    transform: translateY(0px) scale(1);
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    display: inline-flex;
}
*/
.banner-slider-area .owl-item.active .bss-image-wrap img {
    transition-delay: 0.3s;
    transform: scale(1.2);
    opacity: 1;
}
.section-padding {
    padding: 40px 0px;
}
@media (max-width: 767px) {
    .section-padding {
        padding: 25px 0px;
    }
}
.border-line {
    border-bottom: 1px solid var(--border-color);
}
.section-heading {
    text-align: center;
}
.section-heading h1,
.section-heading h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 8px;
}
@media (max-width: 767px) {
    .section-heading h1,
    .section-heading h2 {
        font-size: 24px;
        line-height: 1.5;
    }
}
.section-heading p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.custom-table {
    border-spacing: 0px 20px !important;
    border-bottom: 0px !important;
    margin-bottom: 20px !important;
}
.custom-table .table-header {
    height: 0px;
}
.custom-table .table-header tr th {
    padding: 0px;
    height: 0px;
    border: none;
}
.custom-table .table-header tr th:after,
.custom-table .table-header tr th:before {
    display: none;
}
.custom-table .table-body tr {
    display: table;
    margin-bottom: 20px;
    background-color: transparent !important;
    position: relative;
    width: 100%;
}
.custom-table .table-body tr td {
    background-color: var(--table-bg) !important;
    border: none !important;
    padding: 10px 25px 20px 15px !important;
}
.custom-table .table-body tr td:first-child {
    border-radius: 11px 0px 0px 11px;
}
@media (max-width: 991px) {
    .custom-table .table-body tr td:first-child {
        padding-left: 50px !important;
    }
}
.custom-table .table-body tr td:first-child:before {
    left: 15px !important;
    background: var(--btn-theme-color);
    border: none !important;
    height: 25px !important;
    width: 25px !important;
    display: flex !important;
    justify-content: center;
    font-weight: 500;
    align-items: center;
}
.custom-table .table-body tr td:last-child {
    border-radius: 0px 11px 11px 0px;
    width: 230px;
    padding-right: 15px !important;
}
.custom-table .table-body tr td:last-child .btn {
    margin: 0px 0px 0px auto;
}
.custom-table .table-body tr td.child {
    padding-left: 15px !important;
}
.custom-table .table-body tr td.child ul {
    width: 100%;
}
.custom-table .table-body tr td.child ul li {
    padding: 15px 0px !important;
    border-color: var(--border-color) !important;
}
.custom-table .table-body tr td.child ul li .product-dtls-content {
    margin-top: 0px;
    text-align: left;
}
.custom-table .table-body tr td.child ul li .btn {
    margin: 0px;
}
.custom-table .table-body tr td.child .translate-7 {
    transform: translateY(0px);
}
.product-top {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}
.product-top .product-image a {
    display: block;
}
.product-top .product-image a img {
    min-height: 48px;
    min-width: 48px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 10px;
}
.product-top .product-image img {
    min-height: 48px;
    min-width: 48px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 10px;
}
.product-top .product-content h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}
.product-top .product-content h3 a {
    color: var(--text-white-light);
}
.product-top .product-content span {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    display: block;
    color: var(--text-white-light);
}
.product-top .product-content span a {
    color: var(--text-white-light);
}
.product-top .product-content ul {
    display: flex;
    align-items: center;
}
.product-top .product-content ul li {
    padding: 0px 2px;
}
.product-top .product-content ul li a svg {
    height: 14px;
    width: 14px;
}
.product-top .product-content ul li a svg path {
    fill: var(--yellow);
}
.product-top .product-content ul li:last-child a svg {
    height: 14px;
    width: 14px;
    opacity: 0.4;
}
.product-top .product-content ul li svg.svg-gray path {
    fill: var(--gray);
}
.product-option .badge-list {
    position: absolute;
    bottom: -10px;
}
.product-option .badge-list span {
    margin: 0px 2px;
}
.product-option .badge-list span:last-child {
    margin-left: 0px;
}
.badge {
    padding: 4px 6px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    color: var(--text-white);
}
.badge:hover {
    color: var(--text-white) !important;
}
.badge-sm {
    font-weight: 700;
    font-size: 10px;
    line-height: 1.4;
    text-transform: uppercase;
}
.badge-md {
    padding: 4px !important;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}
.badge-blue {
    background-color: var(--blue);
}
.badge-red {
    background-color: var(--red);
}
.badge-purple {
    background-color: var(--purple);
}
.badge-dark {
    background-color: var(--dark-200);
}
.product-dtls-content {
    text-align: center;
}
.product-dtls-content {
    margin-top: 5px;
}
.product-dtls-content span {
    display: inline-block;
    margin-bottom: 3px;
}
.product-dtls-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
}
.translate-7 {
    transform: translateY(7px);
}
.badge-info {
    padding: 8px;
    position: relative;
}
.badge-info.btn-nano:after {
    filter: blur(2px);
    border-radius: 3px;
}
.badge-info svg {
    width: 20px;
    height: 20px;
}
.badge-info svg path {
    transition: var(--smooth);
    fill: var(--text-white);
}
.dtr-title {
    display: none !important;
}
.game-card {
    border-radius: 8px;
    border: 1px solid var(--border-color-2);
    background-color: var(--table-bg);
    position: relative;
    margin: 5px 0px;
    transition: var(--smooth);
}
.game-card:after {
    filter: blur(4px);
    border-radius: 5px;
}
.game-card:hover {
    border-color: transparent;
}
.game-card-image {
    display: block;
    overflow: hidden;
    border-radius: 8px 8px 0px 0px;
}
.game-card-image img {
    width: 100%;
    object-fit: cover;
    transform: scale(1.1);
    height: auto;
}
.game-card-content {
    border-top: 1px solid var(--border-color-2);
    padding: 33px 28px 28px;
    text-align: center;
    position: relative;
    background-color: var(--table-bg);
    border-radius: 0px 0px 8px 8px;
    min-height: 140px;
}
.game-card-content ul {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
}
.game-card-content ul li {
    margin: 0px 4px;
}
.game-card-content h3 a {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-white-light);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.game-card-content span,
.game-card-content > a {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-white-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    display: block;
}
.game-card-content p {
    font-size: 14px;
    line-height: 1.3;
    text-transform: capitalize;
}
.n-badge {
    min-height: 40px;
    min-width: 40px;
    border-radius: 8px;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--text-white);
}
.n-badge-blue {
    background: var(--gradient-blue);
}
.n-badge-purple {
    background: var(--gradient-purple);
}
.n-badge-paste {
    background: var(--gradient-paste);
    font-size: 13px !important;
}
.game-slider-wrap .slider-navigation {
    background-color: #08091d;
}
.game-slider-wrap .Next {
    right: 30px;
}
@media (max-width: 767px) {
    .game-slider-wrap .Next {
        right: 0px;
    }
}
.game-slider-wrap .Prev {
    left: 30px;
}
@media (max-width: 767px) {
    .game-slider-wrap .Prev {
        left: 0px;
    }
}
.game-slider-wrap:before,
.game-slider-wrap:after {
    width: 190px;
    pointer-events: none;
}
@media (max-width: 767px) {
    .game-slider-wrap:before,
    .game-slider-wrap:after {
        width: 70px;
    }
}
.game-slider-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.usn {
    user-select: none;
}
.blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    grid-gap: 20px;
}
@media (max-width: 991px) {
    .blog-card {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 575px) {
    .blog-card {
        grid-template-columns: 1fr;
    }
}
.blog-single-card {
    height: 100%;
    border-radius: 12px;
    background-color: var(--table-bg);
    border: 1px solid var(--border-color-2);
    transition: var(--smooth);
}
@media (max-width: 575px) {
    .blog-single-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
.blog-single-card.btn-nano:after {
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
}
.blog-single-card:hover {
    border-color: transparent;
}
.blog-single-card:hover .blog-card-img img {
    transform: scale(1.15);
}
.blog-card-img {
    max-height: 250px;
    border-radius: 12px 12px 0px 0px;
    overflow: hidden;
    display: block;
}
.blog-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card-content {
    background-color: var(--table-bg);
    padding: 23px 8px 20px 15px;
    position: relative;
    border-radius: 0px 0px 12px 12px;
}
.blog-card-content ul {
    display: flex;
    align-items: center;
    position: absolute;
    top: -11px;
    left: 15px;
    z-index: 9;
}
.blog-card-content ul li {
    margin-right: 4px;
}
.blog-card-content h3 {
    margin-bottom: 8px;
}
.blog-card-content h3 a {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-white-light);
    transition: var(--smooth);
}
.blog-card-content h3 a:hover {
    color: var(--purple);
}
.blog-card-content P {
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
}
.date {
    margin-bottom: 8px;
}
.date span {
    font-weight: 700;
    font-size: 10px;
    line-height: 14px;
    display: block;
    text-transform: uppercase;
}
.blog-more-button {
    margin-top: 40px;
}
.blog-more-button .btn {
    width: 250px;
    margin: 0 auto;
}
.author-card-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    grid-gap: 20px;
}
@media (max-width: 767px) {
    .author-card-wrap {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .author-card-wrap {
        grid-template-columns: 1fr;
    }
}
.single-author-card {
    border-radius: 12px;
    background-color: var(--table-bg);
    border: 1px solid var(--border-color-2);
    height: 100%;
    transition: var(--smooth);
}
.single-author-card:hover {
    transform: translateY(-7px);
}
.single-author-card:hover .author-card-img img {
    transform: scale(1.15);
}
.author-card-img {
    border-radius: 12px 12px 0px 0px;
    width: 100%;
    overflow: hidden;
}
.author-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease-in;
    transform: scale(1.02);
}
.author-card-content {
    background-color: var(--table-bg);
    border-radius: 0px 0px 12px 12px;
    text-align: center;
    padding: 16px 20px 20px;
}
.author-card-content h3 {
    margin-bottom: 3px;
}
.author-card-content h3 a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-white-light);
    text-transform: capitalize;
    transition: var(--smooth);
}
.author-card-content h3 a:hover {
    color: var(--purple);
}
.author-card-content p {
    font-weight: 400;
    font-size: 14px;
}
.author-button {
    margin-top: 50px;
}
.author-button .btn {
    margin: 0 auto;
    width: 250px;
    text-align: center;
    padding: 14px 24px;
}
@media (max-width: 767px) {
    .author-button {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .section-heading.mb-15 {
        margin-bottom: 0px;
    }
}
@media (max-width: 767px) {
    .section-heading.mb-50 {
        margin-bottom: 30px;
    }
}
.subscribe-area {
    margin: 40px 0px 30px;
}
.subscribe-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-radius: 15px;
    background-color: var(--table-bg);
    overflow: hidden;
}
@media (max-width: 991px) {
    .subscribe-wrap {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}
.subscribe-content {
    padding: 50px 20px 50px 80px;
    max-width: 650px;
}
@media (max-width: 991px) {
    .subscribe-content {
        padding: 50px;
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .subscribe-content {
        padding: 50px 25px;
    }
}
@media (max-width: 575px) {
    .subscribe-content {
        padding: 30px 25px;
    }
}
.subscribe-content .title {
    font-family: var(--poppins);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--text-white-light);
    margin-bottom: 20px;
    display: block;
}
@media (max-width: 991px) {
    .subscribe-content .title {
        max-width: 280px;
        margin: 0 auto 30px;
    }
    .subscribe-content .title span {
        display: none;
    }
}
@media (max-width: 575px) {
    .subscribe-content .title {
        font-size: 20px;
        line-height: 1.4;
    }
}
.subscribe-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
}
@media (max-width: 991px) {
    .subscribe-content p {
        display: none;
    }
}
.subscribe-image {
    max-width: 400px;
    position: relative;
    z-index: 1;
    padding-right: 60px;
}
@media (max-width: 991px) {
    .subscribe-image {
        margin: 0 auto;
    }
}
.subscribe-image img.subscribe-bg {
    position: absolute;
    top: 0px;
    right: 15px;
    z-index: -1;
    height: auto;
    animation: rotate 30s linear infinite;
    border-radius: 50%;
}
@media (max-width: 400px) {
    .subscribe-image img.subscribe-bg {
        width: 200px;
        height: 200px;
    }
}
.subscribe-image img.subscribe-image {
    max-width: 435px;
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 0px;
    height: calc(100% + 20px);
}
@media (max-width: 400px) {
    .subscribe-image img.subscribe-image {
        max-width: 400px;
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.subscribe-from {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 12px;
}
@media (max-width: 991px) {
    .subscribe-from {
        flex-direction: column;
        grid-gap: 20px;
    }
}
.subscribe-from input {
    width: 100%;
    background: #0f112b;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 9px;
    border: 1px solid transparent;
    font-family: var(--inter);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #ffffff;
    height: 52px;
    padding: 14px 16px;
}
.subscribe-from input::placeholder {
    opacity: 0.8;
}
.subscribe-from input:focus {
    outline: 0;
    border-color: var(--purple);
}
@media (max-width: 991px) {
    .subscribe-from input {
        text-align: center;
    }
}
.subscribe-from .btn {
    min-width: 185px;
    padding: 14px 24px;
    text-align: center;
    z-index: 1;
}
.large-space {
    margin-bottom: 200px;
}
@media (max-width: 1199px) {
    .large-space {
        margin-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .large-space {
        margin-bottom: 70px;
    }
}
@media (max-width: 575px) {
    .large-space {
        margin-bottom: 35px;
    }
}
.page-content-area {
    margin: 50px 0px;
}

.page-content-wrapper .wp-caption{
    max-width: 100%;
    margin-top: 20px;
}

.page-content-wrapper table {margin-top: 20px;}

@media (max-width: 767px) {
    .page-content-area {
        margin-bottom: 25px;
    }
}
.page-content-wrapper {
    padding: 25px 80px 80px 80px;
    background-color: var(--table-bg);
    border-radius: 15px;
}
@media (max-width: 991px) {
    .page-content-wrapper {
        padding: 15px 35px 50px 35px;
    }
}
@media (max-width: 991px) {
    .page-content-wrapper {
        padding: 10px 15px 35px 15px;
    }
}
.page-content-wrapper h1,
.page-content-wrapper h2,
.page-content-wrapper h3,
.page-content-wrapper h4,
.page-content-wrapper .acdn-title {
    margin-top: 30px;
    font-family: var(--poppins);
    font-weight: 600;
    color: var(--text-white);
}
@media (max-width: 991px) {
    .page-content-wrapper h1,
    .page-content-wrapper h2,
    .page-content-wrapper h3,
    .page-content-wrapper h4,
    .page-content-wrapper .acdn-title {
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .page-content-wrapper h1,
    .page-content-wrapper h2,
    .page-content-wrapper h3,
    .page-content-wrapper h4,
    .page-content-wrapper .acdn-title {
        font-size: 20px;
        line-height: 1.5;
        margin-top: 25px;
    }
}
.page-content-wrapper h3 {
    font-size: 22px;
}
@media (max-width: 575px) {
    .page-content-wrapper h3 {
        font-size: 20px;
    }
}
.page-content-wrapper h4 {
    font-size: 20px;
}
@media (max-width: 575px) {
    .page-content-wrapper h4 {
        font-size: 18px;
    }
}
.page-content-wrapper .acdn-title {
    display: block;
}
.page-content-wrapper p {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
@media (max-width: 575px) {
    .page-content-wrapper p {
        margin-top: 15px;
    }
}
.page-content-wrapper > ol {
    margin-top: 20px;
}
@media (max-width: 575px) {
    .page-content-wrapper > ol {
        margin-top: 15px;
    }
}
.page-content-wrapper > ol li {
    list-style-type: decimal;
    margin-left: 20px;
}
.page-content-wrapper > ul {
    margin-top: 20px;
}
@media (max-width: 575px) {
    .page-content-wrapper > ul {
        margin-top: 15px;
    }
}
.page-content-wrapper > ul li {
    font-size: 14px;
    list-style-type: disc;
    margin-left: 20px;
}
.page-content-wrapper table {
    width: 100% !important;
    overflow-x: auto;
}
.page-content-wrapper table td {
    padding: 10px 10px 10px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-content-wrapper table td:last-child {
    padding-right: 0;
}
.page-content-wrapper .ctw-l {
    color: var(--text-white);
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.clr-white {
    color: var(--text-white);
}
.cpt-40 {
    padding-top: 40px;
}
@media (max-width: 991px) {
    .cpt-40 {
        padding-top: 0;
    }
}
.dot-style-none li {
    list-style: none;
    margin-left: 0;
}
.accordion {
    margin: 30px 0px;
}
.accordion-item {
    margin-bottom: 15px;
}
.accordion-item .accordion-header .accordion-button {
    background-color: var(--border-color);
    color: var(--text-white);
    padding: 12px 75px 12px 24px;
    border-radius: 12px !important;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: #ffffff;
    position: relative;
    text-align: left;
}
@media (max-width: 575px) {
    .accordion-item .accordion-header .accordion-button {
        font-size: 15px;
        line-height: 20px;
        text-align: left;
        padding: 12px 70px 12px 15px;
    }
}
.accordion-item .accordion-header .accordion-button span {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 54px;
    background: linear-gradient(73.86deg, #8f5bf9 -30.86%, #4407c1 57.88%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 12px 12px;
}
.accordion-item .accordion-header .accordion-button span svg {
    height: auto;
    width: 15px;
    transform: rotateX(0deg);
    display: block;
    transition: var(--smooth);
}
.accordion-item .accordion-header .accordion-button:after {
    display: none;
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
    border-radius: 12px 12px 0px 0px !important;
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) span {
    border-radius: 12px 12px 0px 0px;
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) span svg {
    transform: rotateX(180deg);
}
.accordion-item .accordion-header .accordion-button:focus {
    outline: 0;
    box-shadow: none;
    border-color: transparent;
}
.accordion-collapse .accordion-body {
    background-color: #0f112b;
    border-radius: 0px 0px 12px 12px !important;
    border: 1px solid var(--border-color-2);
    border-top: 0px;
    padding: 24px 84px 24px 24px;
}
@media (max-width: 575px) {
    .accordion-collapse .accordion-body {
        padding: 24px;
    }
}
.accordion-collapse .accordion-body p {
    margin-top: 0px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #bbcaf0;
}
.accordion-collapse .accordion-body > ol {
    margin-top: 20px;
}
@media (max-width: 575px) {
    .accordion-collapse .accordion-body > ol {
        margin-top: 15px;
    }
}
.accordion-collapse .accordion-body > ol li {
    list-style-type: decimal;
    margin-left: 20px;
}
.accordion-collapse .accordion-body > ul {
    margin-top: 20px;
}
@media (max-width: 575px) {
    .accordion-collapse .accordion-body > ul {
        margin-top: 15px;
    }
}
.accordion-collapse .accordion-body > ul li {
    list-style-type: disc;
    margin-left: 20px;
}
.footer-area {
    padding: 50px 0px;
}
@media (max-width: 767px) {
    .footer-area {
        padding: 25px 0px;
    }
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    grid-gap: 20px;
}
@media (max-width: 1199px) {
    .footer-wrap {
        flex-wrap: wrap;
        justify-content: flex-start;
        grid-gap: 35px;
    }
}
.ftr-logo-area {
    min-width: 165px;
}
.ftr-logo-area .ftr-logo {
    margin-bottom: 24px;
}
.ftr-logo-area .ftr-logo a {
    width: 90px;
}
.ftr-logo-area .ftr-logo a img {
    max-width: 100%;
}
.social-icon h3,
.social-icon span {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: var(--text-white);
    margin-bottom: 24px;
}
.social-icon ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 12px;
    flex-wrap: wrap;
}
.social-icon ul li {
    height: 32px;
    width: 32px;
}
.social-icon ul li a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #565a90;
    background-color: var(--body-bg);
    border-radius: 4px;
    transition: var(--smooth);
}
.social-icon ul li a svg {
    max-width: 16px;
    max-height: 16px;
}
.social-icon ul li a svg path {
    transition: var(--smooth);
}
.social-icon ul li a:hover {
    border-color: transparent;
}
.social-icon ul li a:hover svg path {
    fill: var(--purple);
}
.social-icon ul li a.btn-nano:after {
    filter: blur(2px);
    border-radius: 4px;
}
.ftr-single-menu h3,
.ftr-single-menu span {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-white);
    margin-bottom: 15px;
}
.ftr-single-menu ul li {
    padding-bottom: 16px;
}
.ftr-single-menu ul li:last-child {
    padding-bottom: 0px;
}
.ftr-single-menu ul li a {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--body-color);
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(to right, #fff, #fff, #fff);
    background-size: 100% 1px, 0 1px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: var(--smooth);
}
.ftr-single-menu ul li a:hover {
    background-size: 0 1px, 100% 1px;
    color: var(--text-white);
}
.menu-double {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 30px;
}
.footer-dtls-area {
    padding: 10px 0px 30px;
}
.footer-dtls-area .ftr-dtls-wrap p {
    font-weight: 700;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #374362;
    margin-bottom: 15px;
}
.footer-dtls-area .ftr-dtls-wrap p:last-child {
    margin-bottom: 0px;
}
.ftr-bottom {
    padding-bottom: 20px;
}
.ftr-bottom span {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    text-align: center;
    display: block;
}
.single-page-banner-area {
    margin-top: 40px;
}
.single-banner-wrap {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(15, 17, 47, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 991px) {
    .single-banner-wrap {
        align-items: flex-end;
    }
}
.single-banner-wrap .single-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 20px;
}
.single-banner-content {
    padding: 40px 50px 40px 120px;
    flex: 1;
}
@media (max-width: 991px) {
    .single-banner-content {
        padding: 40px 50px;
    }
}
@media (max-width: 767px) {
    .single-banner-content {
        padding: 30px 15px;
    }
}
.single-banner-content h3,
.single-banner-content .title {
    display: block;
    color: var(--text-white);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
}
.single-banner-content h3 strong,
.single-banner-content .title strong {
    font-weight: 900;
    font-size: 52px;
    line-height: 68px;
    letter-spacing: -0.02em;
    display: block;
}
@media (max-width: 575px) {
    .single-banner-content h3,
    .single-banner-content .title {
        font-size: 25px;
    }
    .single-banner-content h3 strong,
    .single-banner-content .title strong {
        font-size: 40px;
        line-height: 1.3;
    }
}
.single-banner-content .author {
    margin-top: 8px;
}
.single-banner-content .btn {
    display: inline-flex;
    margin-top: 28px;
}
.single-banner-img {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
}
@media (max-width: 991px) {
    .single-banner-img {
        padding-right: 30px;
    }
}
@media (max-width: 767px) {
    .single-banner-img {
        padding-right: 0px;
        padding-bottom: 10px;
    }
}
@media (max-width: 575px) {
    .single-banner-img {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
        height: auto;
    }
}
.single-banner-img img {
    max-width: 400px;
    margin-top: -35px;
    height: calc(100% + 30px);
}
@media (max-width: 991px) {
    .single-banner-img img {
        max-width: 300px;
    }
}
@media (max-width: 767px) {
    .single-banner-img img {
        max-width: 250px;
    }
}
@media (max-width: 575px) {
    .single-banner-img img {
        width: 70%;
        height: 70%;
        margin: 0;
    }
}
.single-banner-badge ul {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 10px;
}
@media (max-width: 767px) {
    .single-banner-badge ul {
        grid-gap: 10px;
    }
}
@media (max-width: 575px) {
    .single-banner-badge ul {
        display: flex;
        grid-template-columns: 1fr 1fr;
    }
}
.single-banner-badge ul li a {
    padding: 8px 12px;
    display: block;
    background: var(--table-bg);
    border-radius: 12px;
    color: var(--body-color);
    transition: var(--smooth);
    text-align: center;
}
@media (max-width: 575px) {
    .single-banner-badge ul li a {
        font-size: 12px;
    }
}
.single-banner-badge ul li a:hover {
    color: var(--text-white);
}
.single-banner-badge ul li a.active {
    color: var(--text-white);
}
.section-margin {
    margin: 50px 0px;
}
.spins-heading {
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .spins-heading {
        margin-bottom: 30px;
    }
}
.comon-design {
    text-align: left;
}
.comon-design h1,
.comon-design h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: var(--text-white-light);
    margin-bottom: 8px;
}
.comon-design p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}
.comon-design ul {
    list-style: disc;
}
.comon-design ul li {
    margin-bottom: 20px;
    list-style-type: disc;
    margin-left: 20px;
}
.comon-design ul li:last-child {
    margin-bottom: 0px;
}
.comon-design ul li svg {
    width: 20px;
}
.comon-design ul li span {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--body-color);
    display: block;
}
.spins-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
@media (max-width: 991px) {
    .spins-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 575px) {
    .spins-wrapper {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
.spins-single-card {
    background-color: var(--table-bg);
    border-radius: 12px;
    padding: 0px 20px 20px 20px;
    position: relative;
}
.spins-single-card .spin-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 5px;
    margin-top: -4px;
    margin-bottom: 10px;
}
.spin-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 15px;
    margin-bottom: 30px;
}
.spin-heading-wrap .product-top {
    grid-gap: 12px;
}
.spin-single-content {
    text-align: center;
    margin-bottom: 20px;
}
.spin-single-content h3,
.spin-single-content span {
    display: block;
    font-weight: 700;
    font-size: 36px;
    line-height: 20px;
    color: var(--text-white-light);
    margin-bottom: 8px;
}
.spin-single-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
.spin-single-button .btn {
    display: table;
    margin: 0 auto;
}
.side-card-shape {
    padding: 20px;
    border-radius: 12px;
    background-color: var(--table-bg);
    margin-bottom: 20px;
}
.trust-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-game .trust-logo-card {
    background: #F8F8F8;
}

.trust-logo-card img {
    max-width: 100%;
}
.sidebar-info-area h3,
.sidebar-info-area span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-white);
    margin-bottom: 8px;
}
.sidebar-info-area span {
    display: block;
}
.sidebar-info-list ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 30px;
    margin-bottom: 4px;
}
.sidebar-info-list ul li:last-child {
    margin-bottom: 0px;
}
.sil-left {
    display: flex;
    align-items: center;
    grid-gap: 14px;
}
.sil-left svg {
    max-width: 15px;
}
.sil-left svg path {
    fill: var(--text-white);
}
.sil-left span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-white);
}
.sil-right {
    text-align: right;
}
.sil-right span {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-white);
}
.side-waring {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.side-waring img {
    margin-bottom: 15px;
    max-width: 36px;
}
.side-waring .title {
    font-weight: 900;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 15px;
    display: block;
}
.side-waring .content {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: block;
}
.draw-comon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.draw-comon .lucky-draw-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    z-index: 2;
}
.draw-comon img {
    margin-bottom: 20px;
    max-width: 210px;
    height: auto;
}
.draw-comon > .badge {
    padding: 12px !important;
    line-height: 1;
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
}
.draw-comon p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-top: 5px;
}
.draw-comon .btn {
    margin-top: 5px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}
.sidebar-subscribe h3,
.sidebar-subscribe span,
.side-ads h3,
.side-ads span {
    text-align: center;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
}
.sidebar-subscribe span,
.side-ads span {
    display: block;
    color: var(--text-white);
}
.sidebar-subscribe img,
.side-ads img {
    max-width: 250px;
    margin: 0 auto;
}
.subs-input {
    margin-bottom: 20px;
}
.subs-input input {
    background: #0f112b;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 9px;
    height: 50px;
    text-align: center;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #ffffff;
    padding: 12px 15px 16px;
    border: 1px solid transparent;
    transition: var(--smooth);
}
.subs-input input::placeholder {
    opacity: 0.6;
    color: var(--text-white);
}
.subs-input input:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--purple);
}
.subs-input .btn {
    margin: 0 auto;
    margin-top: 20px;
    padding: 8px 24px !important;
}
.single-mble-table {
    position: relative;
    background-color: var(--table-bg);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    grid-gap: 30px;
}
.single-mble-table:last-child {
    margin-bottom: 0;
}
.single-mble-table .badge-list {
    position: absolute;
    top: -12px;
    left: 20px;
}
.single-mble-table li {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 30px;
}
.single-mble-table li.first-child {
    justify-content: space-between;
}
.single-mble-table li .badge-md {
    font-size: 24px;
    padding: 4px 8px !important;
}
.bg-body {
    background-color: var(--body-bg) !important;
}
.casino-ligne-card {
    padding: 80px;
    background-color: var(--table-bg);
    border-radius: 16px;
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .casino-ligne-card {
        padding: 50px;
    }
}
@media (max-width: 991px) {
    .casino-ligne-card {
        padding: 25px 15px;
    }
}
.casino-ligne-card h3,
.casino-ligne-card h2 {
    font-family: var(--poppins);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--text-white-light);
    margin-bottom: 8px;
}
.casino-ligne-card p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}
.casino-table-wrapper {
    margin-top: 20px;
    overflow: hidden;
}
@media (max-width: 500px) {
    .casino-table-wrapper ul {
        overflow-x: auto;
    }
}
.casino-table-wrapper ul li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    padding: 12px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575px) {
    .casino-table-wrapper ul li {
        grid-gap: 20px;
        white-space: nowrap;
    }
}
.casino-table-wrapper ul li .ctw-l {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 17px;
}
.casino-table-wrapper ul li .ctw-l svg {
    max-height: 15px;
    max-width: 15px;
}
.casino-table-wrapper ul li .ctw-l svg path {
    fill: var(--text-white);
}
.casino-table-wrapper ul li .ctw-l span {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    display: block;
    color: var(--text-white);
}
@media (max-width: 575px) {
    .casino-table-wrapper ul li .ctw-l span {
        line-height: 1.5;
    }
}
.casino-table-wrapper ul li .ctw-r {
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
}
@media (max-width: 575px) {
    .casino-table-wrapper ul li .ctw-r {
        margin: 0px;
        padding-left: 25px;
    }
}
.casino-table-wrapper ul li .ctw-r span {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    display: block;
    color: #ffffff;
}
@media (max-width: 575px) {
    .casino-table-wrapper ul li .ctw-r span {
        color: var(--body-color);
        line-height: 1.5;
    }
}
.casino-table-wrapper .casino-button {
    margin-bottom: 20px;
    margin-top: 20px;
}
.casino-table-wrapper .casino-button .btn {
    margin: 0 auto;
}
.casino-table-wrapper p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.casino-table-card-wrap {
    counter-reset: section;
}

.casino-table-single-card {
    margin-bottom: 20px;
    padding: 40px 80px;
    background: var(--table-bg);
    border-radius: 16px;
}
@media (max-width: 991px) {
    .casino-table-single-card {
        padding: 35px;
    }
}
@media (max-width: 575px) {
    .casino-table-single-card {
        padding: 25px 15px;
    }
}
.casino-table-single-card > h3 {
    font-family: var(--poppins);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--text-white-light);
    margin-bottom: 20px;
    position: relative;
}

@media (max-width: 575px) {
    .casino-table-single-card > h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
.casino-table-single-card p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.casino-table-single-card > ul {
    margin-left: 15px;
    margin-top: 20px;
}
@media (max-width: 575px) {
    .casino-table-single-card > ul {
        margin-top: 10px;
    }
}
.casino-table-single-card > ul li {
    padding-bottom: 0px;
    font-size: 14px;
    list-style-type: disc;
}
@media (max-width: 575px) {
    .casino-table-single-card > ul li {
        padding-bottom: 10px;
    }
}
.casino-table-single-card > ul li:last-child {
    padding-bottom: 0px;
}
.casino-table-single-card > ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--body-color);
    transition: var(--smooth);
    position: relative;
    padding-left: 10px;
}
.casino-table-single-card > ul li a:after {
    position: absolute;
    content: "";
    top: 6px;
    left: 0;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: var(--body-color);
    transition: var(--smooth);
}
.casino-table-single-card > ul li a:hover {
    color: var(--purple);
}
.casino-table-single-card > ul li a:hover:after {
    background: var(--purple);
}
.casino-table-single-card .data-table-wrap .custom-table .table-body tr td {
    background-color: var(--body-bg) !important;
}
.data-table-wrap {
    margin: 50px 0 20px 0;
}
@media (min-width: 991px) {

    .single-casino .page-content-wrapper .data-table-wrap {
       margin: 50px 0 30px 0; 
    }

    .single-casino .page-content-wrapper .custom-table .table-body tr {
        margin-bottom: 0px;
    }
}
.casino-table-single-card .casino-button .btn {
    display: table;
    margin: 0 auto;
}
.simple-table {
    width: 100%;
    overflow-x: auto;
}
.simple-table table {
    width: 100%;
}
/*
@media (max-width: 575px) {
    .simple-table table {
        width: 500px;
        overflow-x: auto;
    }
}
*/
.simple-table .ctw-l {
    color: var(--text-white);
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.simple-table td {
    padding: 10px 10px 10px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.simple-table td:last-child {
    padding-right: 0;
}
.badge-top ul {
    margin-top: 0px;
    margin-bottom: 20px;
}
.casino-area {
    margin: 50px 0px 40px;
}
@media (max-width: 767px) {
    .casino-area {
        margin: 35px 0px;
    }
}
.casino-main-content .custom-table {
    margin-bottom: 0px !important;
    transform: translateY(-10px);
}
.casino-profile-dtls {
    padding: 40px;
    background-color: var(--table-bg);
    border-radius: 12px;
    margin-bottom: 20px;
}
.casino-profile-dtls .comon-design h1,
.casino-profile-dtls .comon-design h2 {
    line-height: 38px;
    margin-bottom: 12px;
}
@media (max-width: 575px) {
    .casino-profile-dtls .comon-design h1,
    .casino-profile-dtls .comon-design h2 {
        font-size: 24px;
    }
}
.casino-profile-dtls .comon-design p {
    margin-bottom: 20px;
    line-height: 19px;
}
.casino-profile-dtls .comon-design ul li {
    margin-bottom: 15px;
}
.casino-profile-dtls .table-card-design {
    margin-top: 25px;
}
.les-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .les-area {
        grid-template-columns: 1fr;
    }
}
.les-single-card {
    padding: 20px 40px;
    border-radius: 12px;
}
@media (max-width: 767px) {
    .les-single-card {
        padding: 20px;
    }
}
.les-single-card h3,
.les-single-card span {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}
.les-single-card ul li {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.les-single-card ul li:last-child {
    margin-bottom: 0;
}
.les-single-card ul li svg {
    margin-right: 10px;
    max-width: 18px;
    margin-top: 2px;
}
.les-single-card ul li span {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    color: var(--text-white);
    display: block;
}
.les-single-card.les-sucess {
    background: #0e2929;
}
.les-single-card.les-sucess h3,
.les-single-card.les-sucess span {
    color: #059669;
}
.les-single-card.les-danger {
    background: #321724;
}
.les-single-card.les-danger h3,
.les-single-card.les-danger span {
    color: #dc2647;
}
.waring-area {
    padding: 20px 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 10px;
    background-color: var(--table-bg);
}
@media (max-width: 767px) {
    .waring-area {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .waring-img:last-child {
        display: none;
    }
}
.waring-img img {
    min-width: 36px;
    max-width: 36px;
}
.waring-content {
    flex: 1;
    text-align: center;
}
.waring-content .title {
    font-weight: 900;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 15px;
    display: block;
}
.waring-content .content {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: block;
}
.casino-video-wrap {
    border-radius: 12px;
    padding: 50px;
    background-color: var(--table-bg);
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .casino-video-wrap {
        padding: 30px;
    }
}
.casino-video-wrap h2,
.casino-video-wrap h3 {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    margin-bottom: 25px;
}
.casino-video-wrap h2 span,
.casino-video-wrap h3 span {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #ffffff;
}
.video {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
}
.video:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    width: 100%;
    height: 125px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 13.33%, rgba(0, 0, 0, 0) 50%);
}
.video iframe {
    width: 100%;
    height: 360px;
    border-radius: 12px;
}
.author-info-area {
    margin-top: 20px;
    padding: 20px 80px;
    background-color: var(--table-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .author-info-area {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.author-info-profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 8px;
    flex-wrap: wrap;
}
.author-info-profile .author-info-img {
    border-radius: 12px;
    overflow: hidden;
    width: 65px;
    height: 65px;
}
.author-info-profile .author-info-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.author-info-profile .author-info-content h3,
.author-info-profile .author-info-content .title {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 14px;
    color: var(--text-white);
    margin-bottom: 15px;
}
.author-info-profile .author-info-content h3 a,
.author-info-profile .author-info-content h3 .name,
.author-info-profile .author-info-content .title a,
.author-info-profile .author-info-content .title .name {
    padding-left: 5px;
    font-weight: 600;
    color: var(--text-white);
    display: block;
}
.author-info-profile .author-info-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 14px;
    color: var(--text-white);
}
.author-info-review .author-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 10px;
    margin-bottom: 15px;
}
.author-info-review .author-check ul {
    display: flex;
    align-items: center;
    grid-gap: 4px;
}
.author-info-review .author-check p {
    font-weight: 400;
    font-size: 16px;
    line-height: 14px;
    color: var(--text-white);
}
.author-date p {
    font-weight: 600;
    font-size: 16px;
    line-height: 14px;
    color: var(--text-white);
}
.author-date p span {
    display: inline-block;
    font-weight: 400;
}
.page-ms-banner-title {
    text-align: center;
    max-width: 1035px;
    margin: 55px auto 0px;
}
@media (max-width: 575px) {
    .page-ms-banner-title {
        margin: 40px auto 0px;
    }
}
.page-ms-banner-title h1,
.page-ms-banner-title h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 10px;
}
@media (max-width: 575px) {
    .page-ms-banner-title h1,
    .page-ms-banner-title h2 {
        font-size: 30px;
    }
}
.page-ms-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
@media (max-width: 991px) {
    .page-ms-gallery-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    .page-ms-gallery-wrapper {
        grid-template-columns: 1fr;
    }
}
.page-ms-gallery-wrapper .game-card {
    margin: 0;
}
.page-ms-gallery-top {
    display: flex;
    grid-gap: 20px;
    margin: 60px 0px 30px;
    flex-wrap: wrap;
}
@media (max-width: 575px) {
    .page-ms-gallery-top {
        margin: 40px 0px 20px;
    }
}
.input-box input,
.input-box .select-active,
.select-box input,
.select-box .select-active {
    background-color: var(--table-bg);
    border-radius: 9px;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 12px 16px;
    width: 100%;
    font-size: 16px;
    color: var(--text-white);
}
.input-box input::-moz-placeholder,
.input-box .select-active::-moz-placeholder,
.select-box input::-moz-placeholder,
.select-box .select-active::-moz-placeholder {
    color: var(--text-white);
}
.input-box input::placeholder,
.input-box .select-active::placeholder,
.select-box input::placeholder,
.select-box .select-active::placeholder {
    color: var(--text-white);
}
.input-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 320px;
    width: 100%;
    position: relative;
}
.input-box input {
    width: 100%;
    padding-right: 50px;
}
.input-box i {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    color: var(--text-white);
    cursor: pointer;
}
.select-box .select-active {
    padding-right: 40px;
}
.select-box .select-active:after {
    content: "\F282";
    font-family: bootstrap-icons !important;
    right: 16px;
    top: 50%;
    transform-origin: unset;
    transform: rotateX(0deg) translateY(-50%);
    font-size: 14px;
    width: auto;
    transition: all 0.3s ease;
}
.select-box .select-active .list {
    background-color: var(--table-bg);
    border-radius: 5px;
    margin-top: 4px;
}
.select-box .select-active .option {
    color: var(--text-white);
}
.select-box .select-active .option:hover,
.select-box .select-active .option.focus,
.select-box .select-active .option.selected.focus {
    background-color: var(--text-white);
    color: var(--table-bg);
}
.select-box .select-active.open::after {
    transform: rotateX(-180deg) translate(0%, calc(50% + 0px));
}
.borderlesSelect-box {
    display: flex;
    align-items: center;
    max-width: 220px;
    width: 100%;
}
.borderlesSelect-box label {
    display: block;
    width: 70px;
}
.borderlesSelect-box .select-active {
    flex: 1;
    background-color: transparent;
    padding: 0;
    padding-left: 10px;
}
.single-mcs-banner {
    padding: 55px 20px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border: 3px solid #141531;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    position: relative;
}
.single-mcs-banner h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-white);
    font-family: var(--roboto);
}
.single-mcs-banner p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--roboto);
    margin-top: 20px;
    color: var(--text-white);
}
.single-mcs-banner button {
    margin-top: 30px;
}
.single-mcs-banner .button {
    position: absolute;
    top: 10px;
    right: 10px;
}
.single-mcs-banner .button a {
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    background: var(--table-bg);
    border-radius: 12px;
    color: var(--text-white);
    transition: var(--smooth);
    text-align: center;
    grid-gap: 8px;
}
.jouer-wrapper {
    max-width: 285px;
    margin: 28px auto 0px;
    text-align: left;
}
.single-jouer {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 4px 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.single-jouer:last-child {
    margin-bottom: 0;
}
.single-jouer img {
    width: 44px;
    height: 44px;
    margin-right: 10px;
}
.single-jouer h4 {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-white);
}
.single-mcs-gallery {
    margin-bottom: 20px;
}
.single-mcs-gallery .title h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 575px) {
    .single-mcs-gallery .title h2 {
        font-size: 24px;
    }
}
.single-mcs-gallery .gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}
@media (max-width: 575px) {
    .single-mcs-gallery .gallery-wrapper {
        grid-template-columns: 1fr;
    }
}
.nos-offer-wrapper {
    margin-bottom: 20px;
}
.nos-offer-wrapper .title h6,
.nos-offer-wrapper .title span {
    display: block;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--roboto);
    line-height: 1.2;
    margin-bottom: 10px;
}
.single-nos-offer {
    display: flex;
    align-items: center;
    background: var(--table-bg);
    margin-bottom: 16px;
    border-radius: 11px;
    padding: 8px 16px;
    justify-content: space-between;
}
.single-nos-offer:last-child {
    margin-bottom: 0;
}
.single-nos-offer .arrow {
    background: #08091d;
    border: 1px solid #323458;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: var(--body-color);
    font-size: 16px;
    font-weight: 900;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.page-pvdr-banner {
    display: grid;
    grid-gap: 55px 40px;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
    .page-pvdr-banner {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 40px 30px;
    }
}
@media (max-width: 767px) {
    .page-pvdr-banner {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}
@media (max-width: 575px) {
    .page-pvdr-banner {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}
.single-page-pvdr {
    border-radius: 12px;
    overflow: hidden;
}
.single-page-pvdr:hover .thumb img {
    transform: scale(1.1);
}
.single-page-pvdr .thumb {
    overflow: hidden;
}
.single-page-pvdr .thumb img {
    border-radius: 12px 12px 0px 0px;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}
.single-page-pvdr .content {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #141637;
    border: 1px solid #323458;
    border-radius: 0px 0px 12px 12px;
}
@media (max-width: 1199px) {
    .single-page-pvdr .content {
        padding: 15px;
    }
}
.single-page-pvdr .content .link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: var(--text-white);
}
.single-page-pvdr .content .button {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 8px;
    background: #6d77f3;
    border-radius: 8px;
    color: var(--text-white);
}
.blog-banner .single-banner-content {
    padding: 40px 20px 40px 120px;
}
@media (max-width: 991px) {
    .blog-banner .single-banner-content {
        padding: 40px;
    }
}
@media (max-width: 575px) {
    .blog-banner .single-banner-content {
        padding: 30px 20px;
    }
}
.blog-banner .single-banner-content .title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
    color: var(--text-white);
    display: block;
    margin-bottom: 15px;
    width: 100%;
}
@media (min-width: 991px) {
    .blog-banner .single-banner-content .title {
        width: 75%;
        font-size: 20px;
        margin-bottom: 10px;
    }
}
.blog-banner .single-banner-content h3 {
    letter-spacing: 0;
}
@media (max-width: 767px) {
    .blog-banner .single-banner-content h3 {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .blog-banner .single-banner-content h3 {
        font-size: 20px;
    }
}
.blog-banner .single-banner-content h3 strong {
    letter-spacing: 0;
    line-height: 1;
}
@media (max-width: 767px) {
    .blog-banner .single-banner-content h3 strong {
        font-size: 40px;
    }
}
@media (max-width: 575px) {
    .blog-banner .single-banner-content h3 strong {
        font-size: 34px;
    }
}
.blog-banner .single-banner-content span {
    display: block;
    margin-top: 10px;
    width: 100%;
}
@media (min-width: 991px) {
    .blog-banner .single-banner-content span {
        display: block;
        margin-top: 10px;
        width: 60%;
    }
}
.blog-banner .single-banner-content button {
    padding: 15px 100px;
}
.blog-banner .single-banner-content a {
    color: #fff;
}
@media (max-width: 575px) {
    .blog-banner .single-banner-content button {
        padding: 15px 30px;
    }
}
@media (max-width: 991px) {
    .blog-banner .single-banner-img {
        display: none;
    }
}
.blog-banner .single-banner-img img {
    max-width: 400px;
    margin-top: -35px;
    height: calc(100% + 30px);
    width: 100%;
    bottom: 0;
    position: absolute;
    height: 100%;
}
@media (max-width: 1199px) {
    .blog-banner .single-banner-img img {
        max-width: 240px;
    }
}
.blog-slider-area {
    margin-top: 65px;
}
.blog-slider-title {
    text-align: center;
    margin-bottom: 20px;
}
.blog-slider-title h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .blog-slider-title h2 {
        font-size: 28px;
    }
}
.blog-slider-wrapper .slider-navigation {
    background: #08091d;
    border: 1px solid #323458;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}
.blog-slider-wrapper .slider-navigation i {
    color: var(--body-color);
}
.blog-slider-wrapper .prev {
    left: -15px;
}
@media (max-width: 991px) {
    .blog-slider-wrapper .prev {
        left: -10px;
    }
}
.blog-slider-wrapper .next {
    right: -15px;
}
@media (max-width: 991px) {
    .blog-slider-wrapper .next {
        right: -10px;
    }
}
.blog-single-slider {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(50, 52, 88, 0.5);
}
.blog-single-slider::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.blog-single-slider.blog-single-slider1::before {
    background: linear-gradient(0.27deg, #7f1610 7.3%, rgba(122, 18, 15, 0) 67.85%);
}
.blog-single-slider.blog-single-slider2::before {
    background: linear-gradient(360deg, #5612b4 11.58%, rgba(86, 18, 180, 0) 105.79%);
}
.blog-single-slider.blog-single-slider3::before {
    background: linear-gradient(0.3deg, #25604b 7.31%, rgba(38, 93, 77, 0) 99.76%);
}
.blog-single-slider.blog-single-slider4::before {
    background: linear-gradient(0.3deg, #1d108f 7.31%, rgba(38, 93, 77, 0) 99.76%, #e5e5e5 99.76%);
}
.blog-single-slider.blog-single-slider5::before {
    background: linear-gradient(0.3deg, #2e0005 7.31%, rgba(38, 93, 77, 0) 99.76%, rgba(46, 0, 5, 0.27) 99.76%);
}
.blog-single-slider img {
    border-radius: 12px;
    width: 100%;
}
.blog-single-slider a {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    display: block;
    color: var(--text-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    z-index: 9;
}
.article-banner {
    border-radius: 12px;
    overflow: hidden;
}
.article-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-banner .content {
    background: var(--table-bg);
    padding: 20px;
}
.article-banner .content ul {
    display: flex;
    grid-gap: 10px;
    margin-top: -35px;
    margin-bottom: 15px;
}
.article-banner .content h1 {
    font-size: 16px;
    font-family: var(--roboto);
    font-weight: 700;
    line-height: 1.4;
}
.single-article {
    padding: 12px 20px 20px 20px;
    background: var(--table-bg);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single-article .content .lucky-draw-badge {
    margin-top: -25px;
    margin-bottom: 12px;
    display: flex;
    grid-gap: 10px;
}
.single-article .content .date {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}
.single-article .content > span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-white);
    display: block;
}
.single-article > a {
    background: #08091d;
    border: 1px solid #323458;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-top: 20px;
}
@media (max-width: 1199px) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }
}
.article-wrapper .single-article {
    margin-bottom: 0;
}
.article-wrapper .single-article > a {
    margin-right: 0px;
}
.article-wrapper .single-article:first-child {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.article-wrapper .single-article:first-child > a {
    transform: rotateY(180deg);
}
@media (max-width: 991px) {
    .article-wrapper .single-article:first-child {
        flex-direction: unset;
        justify-content: space-between;
    }
    .article-wrapper .single-article:first-child > a {
        transform: rotateY(0deg);
    }
}