@font-face { font-family: 'Shabnam'; src: url('../../assets/fonts/Shabnam.ttf'); font-display: swap; }
@font-face { font-family: 'ShabnamBold'; src: url('../../assets/fonts/Shabnam-Bold.ttf'); font-display: swap; }
@font-face { font-family: 'ShabnamLight'; src: url('../../assets/fonts/Shabnam-Light.ttf'); font-display: swap; }
@font-face { font-family: 'ShabnamMedium'; src: url('../../assets/fonts/Shabnam-Medium.ttf'); font-display: swap; }
@font-face { font-family: 'ShabnamThin'; src: url('../../assets/fonts/Shabnam-Thin.ttf'); font-display: swap; }

@font-face { font-family: 'VazirmatnBlack'; src: url('../../assets/fonts/Vazirmatn-Black.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnBold'; src: url('../../assets/fonts/Vazirmatn-Bold.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnExtraBold'; src: url('../../assets/fonts/Vazirmatn-ExtraBold.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnExtraLight'; src: url('../../assets/fonts/Vazirmatn-ExtraLight.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnLight'; src: url('../../assets/fonts/Vazirmatn-Light.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnMedium'; src: url('../../assets/fonts/Vazirmatn-Medium.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnRegular'; src: url('../../assets/fonts/Vazirmatn-Regular.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnSemiBold'; src: url('../../assets/fonts/Vazirmatn-SemiBold.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnThin'; src: url('../../assets/fonts/Vazirmatn-Thin.ttf'); font-display: swap; }
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #FE5900;
    --header: #030523;
    --text: #434343;
    --border: #FCFCFC;
    --bg: #F5F6F6;
    --bg2: #030523;
    --bg3: #F7F3EE;
    --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/* 01.3 Buttons */
.theme-btn {
    font-size: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 58px;
    line-height: 58px;
    background-color: var(--theme);
    overflow: hidden;
    display: inline-block;
    padding: 0 34px;
    color: var(--white);
    border-radius: 10px;
}
@media (max-width: 575px) {
    .theme-btn {
        font-size: 14px;
        padding: 0 25px;
        height: 52px;
        line-height: 52px;
    }
}
.theme-btn::before {
    content: "";
    position: absolute;
    width: 0;
    top: -10px;
    height: 0;
    background-color: var(--header);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    z-index: -1;
}
.theme-btn.bg-white {
    color: var(--header);
    background-color: var(--white);
}
.theme-btn.bg-white::before {
    background-color: var(--theme);
}
.theme-btn i {
    margin-right: 10px;
}
.theme-btn:hover {
    color: var(--white);
}
.theme-btn:hover::before {
    width: 800px;
    height: 800px;
    display: inline-block;
}

@keyframes slideRight {
    49% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes slideUp {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
.link-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--theme);
    text-decoration: underline;
}
.link-btn i {
    margin-right: 6px;
}

/* 01.4 Typography */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: iranyekan;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
}

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

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: iranyekan;
    margin: 0px;
    padding: 0;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
}

h1 {
    font-size: 100px;
    font-weight: 900;
    line-height: 109%;
}
@media (max-width: 1600px) {
    h1 {
        font-size: 85px;
    }
}
@media (max-width: 1199px) {
    h1 {
        font-size: 75px;
    }
}
@media (max-width: 991px) {
    h1 {
        font-size: 65px;
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 55px;
    }
}
@media (max-width: 575px) {
    h1 {
        font-size: 38px;
    }
}
@media (max-width: 470px) {
    h1 {
        font-size: 30px;
    }
}

h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 120%;
    letter-spacing: 0.5px;
}
@media (max-width: 1399px) {
    h2 {
        font-size: 44px;
    }
}
@media (max-width: 1199px) {
    h2 {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    h2 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}
@media (max-width: 575px) {
    h2 {
        font-size: 24px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 900;
    line-height: 134%;
}
@media (max-width: 575px) {
    h3 {
        font-size: 22px;
        line-height: 145%;
    }
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 700;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

span {
    margin: 0px;
    font-family: 'VazirmatnMedium';
}

/*==========================================================================
    02. Template Sections
==========================================================================*/
/* 02.1 About */
.about-wrapper .about-image {
    position: relative;
}
@media (max-width: 1199px) {
    .about-wrapper .about-image img {
        width: 100%;
        height: 100%;
    }
}
.about-wrapper .about-image .thumb1 {
    position: absolute;
    right: -70px;
    bottom: 80px;
}
@media (max-width: 767px) {
    .about-wrapper .about-image .thumb1 {
        right: 0;
    }
}
@media (max-width: 575px) {
    .about-wrapper .about-image .thumb1 {
        max-width: 140px;
    }
}
.about-wrapper .about-image .thumb2 {
    position: absolute;
    left: 50px;
    top: 50px;
}
@media (max-width: 575px) {
    .about-wrapper .about-image .thumb2 {
        max-width: 140px;
    }
}
.about-wrapper .about-content .about-text {
    margin-top: 25px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 25px;
}
.about-wrapper .about-content .about-list-items {
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
@media (max-width: 1199px) {
    .about-wrapper .about-content .about-list-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.about-wrapper .about-content .about-list-items ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--header);
}
.about-wrapper .about-content .about-list-items ul li:not(:last-child) {
    margin-bottom: 18px;
}
.about-wrapper .about-content .about-list-items ul li i {
    color: var(--theme);
    font-size: 20px;
}

.about-section {
    position: relative;
    z-index: 9;
}
.about-section .left-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
@media (max-width: 1199px) {
    .about-section .left-shape {
        display: none;
    }
}
.about-section .right-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
}
@media (max-width: 1199px) {
    .about-section .right-shape {
        display: none;
    }
}
.about-section .right-shape img {
    height: 100%;
}

.about-wrapper-2 .about-image-items {
    position: relative;
    z-index: 9;
}
.about-wrapper-2 .about-image-items .about-image {
    max-width: 472px;
    position: relative;
}
.about-wrapper-2 .about-image-items .about-image .text-circle {
    position: absolute;
    bottom: 30px;
    left: -60px;
    z-index: 9;
    animation: cir36 10s linear infinite;
}
@media (max-width: 1199px) {
    .about-wrapper-2 .about-image-items .about-image .text-circle {
        left: initial;
        right: 0;
    }
}
.about-wrapper-2 .about-image-items .about-image .text-circle .ball-cicrle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FFEEE7;
    text-align: center;
    line-height: 100px;
}
.about-wrapper-2 .about-image-items .about-image .text-circle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    transform: translate(-50%, -50%);
    width: 188px;
    height: 188px;
    background-color: #F5F6F6;
    border-radius: 50%;
    z-index: -1;
}
.about-wrapper-2 .about-image-items .about-image .text-circle img {
    width: initial;
    height: initial;
}
.about-wrapper-2 .about-image-items .about-image img {
    width: 100%;
    height: 100%;
}
.about-wrapper-2 .about-image-items .about-sm-img {
    position: absolute;
    max-width: 254px;
    top: 14%;
    left: -1%;
    border-radius: 254px;
    border: 6px solid var(--theme);
}
@media (max-width: 470px) {
    .about-wrapper-2 .about-image-items .about-sm-img {
        max-width: 140px;
        border-radius: 2px solid var(--theme);
        border-radius: 50%;
    }
}
.about-wrapper-2 .about-image-items .about-sm-img img {
    width: 100%;
    height: 100%;
}
.about-wrapper-2 .about-image-items .about-sm-img .img {
    position: absolute;
    z-index: -1;
    top: -30%;
    left: 20%;
}
.about-wrapper-2 .about-content {
    margin-right: 40px;
}
@media (max-width: 1199px) {
    .about-wrapper-2 .about-content {
        margin-right: 0;
    }
}
.about-wrapper-2 .about-content .about-text {
    margin-top: 25px;
    font-size: 16px;
}
.about-wrapper-2 .about-content h5 {
    font-size: 20px;
    font-weight: 700;
    font-family: iranyekan;
    margin-top: 20px;
}
.about-wrapper-2 .about-content .text-area {
    display: flex;
    align-items: end;
    margin-top: 20px;
    gap: 20px;
}
.about-wrapper-2 .about-content .text-area h3 {
    font-size: 40px;
    font-weight: 900;
}
.about-wrapper-2 .about-content .text-area p {
    color: #464E5E;
}
.about-wrapper-2 .about-content .theme-btn {
    margin-top: 50px;
}

.about-section-2 {
    position: relative;
    z-index: 9;
}
.about-section-2 .vec-shape {
    position: absolute;
    bottom: 250px;
    right: 0;
    z-index: -1;
}
@media (max-width: 1899px) {
    .about-section-2 .vec-shape {
        display: none;
    }
}

.about-wrapper-3 .about-left-items .about-image {
    position: relative;
    z-index: 9;
}
.about-wrapper-3 .about-left-items .about-image img {
    width: 100%;
    height: 100%;
}
.about-wrapper-3 .about-left-items .about-image .thumb {
    max-width: 260px;
    position: absolute;
    bottom: -2%;
    left: 3%;
}
@media (max-width: 1199px) {
    .about-wrapper-3 .about-left-items .about-image .thumb {
        max-width: 180px;
        bottom: 0;
    }
}
.about-wrapper-3 .about-content {
    margin-right: 30px;
}
@media (max-width: 1199px) {
    .about-wrapper-3 .about-content {
        margin-right: 0;
    }
}
.about-wrapper-3 .about-content .section-title h6 {
    color: var(--header);
    font-family: iranyekan;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 6px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    display: inline-block;
}
.about-wrapper-3 .about-content .section-title h6::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #FE5900 0%, rgba(201, 203, 223, 0) 100%);
}
.about-wrapper-3 .about-content .section-title h6::after {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, #FE5900 0%, rgba(201, 203, 223, 0) 100%);
}
.about-wrapper-3 .about-content .about-text {
    margin-top: 25px;
    margin-bottom: 30px;
}
.about-wrapper-3 .about-content .list-box {
    margin-top: 20px;
}
.about-wrapper-3 .about-content .list-box .list-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.about-wrapper-3 .about-content .list-box .list-content i {
    color: var(--theme);
}
.about-wrapper-3 .about-content .list-box .list-content h5 {
    font-family: iranyekan;
    font-size: 18px;
    font-weight: 700;
}
.about-wrapper-3 .about-content .theme-btn {
    margin-top: 50px;
}
@media (max-width: 767px) {
    .about-wrapper-3 .about-content .theme-btn {
        margin-top: 30px;
    }
}

.about-section-3 {
    position: relative;
}
.about-section-3 .stoke-title2 {
    color: var(--header);
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.06;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
}
@media (max-width: 1199px) {
    .about-section-3 .stoke-title2 {
        display: none;
    }
}
.about-section-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #030523;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

/* 02.2 Animation */
@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}
@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}
@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}
@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@-webkit-keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}
@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}
@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        right: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes criss-cross-right {
    0% {
        left: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(25%);
    }
    100% {
        transform: translateX(50%);
    }
}
@keyframes zoom {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.5);
    }
}
@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}
@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}
@keyframes moving {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translateX(-50px);
    }
    50% {
        transform: translatey(-40px);
    }
    100% {
        transform: translatey(0px);
    }
}
/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
@keyframes animate-positive {
    0% {
        width: 0;
    }
}
@keyframes scale {
    0% {
        top: -1000px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.animation-infinite {
    animation: ShapeAnim 50s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
}

@keyframes ShapeAnim {
    0% {
        background-position: top left;
    }
    100% {
        background-position: top left 3000px;
    }
}
.splt-txt .whitespace {
    width: 8px;
}

.splt-txt.animated .char {
    -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
    width: 20px;
}

@media (max-width: 991px) {
    .splt-txt-bounce .whitespace {
        width: 10px;
    }
}
.splt-txt-bounce.animated .char {
    -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

/* 02.3 Brand */
.sponsor-wrapper .sponsor-image {
    text-align: center;
    padding: 25px 40px;
}
@media (max-width: 1399px) {
    .sponsor-wrapper .sponsor-image {
        padding: 20px;
        border: 1px solid rgba(199, 201, 206, 0.24) !important;
    }
    .sponsor-wrapper .sponsor-image img {
        width: initial !important;
    }
}
.sponsor-wrapper .sponsor-image img {
    width: 100%;
    height: 64px;
}
@media (max-width: 767px) {
    .sponsor-wrapper .sponsor-image img {
        height: initial;
        width: 70px !important;
    }
}
.sponsor-wrapper .theme-btn {
    margin-right: 20px;
    padding: 0 24px;
}
.sponsor-wrapper .bb-left {
    border-right: 1px solid rgba(199, 201, 206, 0.24);
}
.sponsor-wrapper .bb-right {
    border-left: 1px solid rgba(199, 201, 206, 0.24);
}
.sponsor-wrapper .bb-bottom {
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
}
.sponsor-wrapper .bb-top {
    border-top: 1px solid rgba(199, 201, 206, 0.24);
}

.brand-logo-3 {
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(199, 201, 206, 0.24);
    padding: 30px 0;
}

.sponsor-wrapper-21 {
    margin-top: 60px;
}
@media (max-width: 1199px) {
    .sponsor-wrapper-21 {
        margin-top: 30px;
    }
}
.sponsor-wrapper-21 .table-responsive {
    overflow: hidden;
}
@media (max-width: 1399px) {
    .sponsor-wrapper-21 .table-responsive {
        overflow-x: auto;
    }
    .sponsor-wrapper-21 .table-responsive .sponsor-wrap {
        width: 1500px;
    }
}
.sponsor-wrapper-21 .sponsor-box-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img {
    width: 180px;
    height: 148px;
    border: 1px solid rgba(199, 201, 206, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-none {
    border-top: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-bottom {
    border-bottom: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-left {
    border-right: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-right {
    border-left: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-none {
    border: none !important;
}


.contact-box-wrapper .map-area iframe {
    width: 100%;
    height: 628px;
}
.contact-box-wrapper .gt-contact-right-items {
    border-radius: 0;
    background-color: var(--bg);
    padding: 43px;
}
@media (max-width: 767px) {
    .contact-box-wrapper .gt-contact-right-items {
        padding: 30px;
    }
}
.contact-box-wrapper .gt-contact-right-items h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box {
    margin-top: 30px;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box h4 {
    margin-bottom: 15px;
    font-family: iranyekan;
    font-size: 18px;
    font-weight: 700;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box .form-clt input, .contact-box-wrapper .gt-contact-right-items .contact-form-box .form-clt textarea {
    border-radius: 0;
    border: none;
    background: var(--white);
    line-height: 1;
    padding: 20px 25px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text);
    font-weight: 600;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box .form-clt textarea {
    padding-bottom: 110px;
}

/* 02.5 Call To Action */
.cta-banner-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
}
@media (max-width: 1199px) {
    .cta-banner-wrapper {
        display: grid;
        gap: 30px;
        justify-content: center;
        padding-left: 0;
        padding: 30px;
        text-align: center;
    }
}
.cta-banner-wrapper .cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 1199px) {
    .cta-banner-wrapper .cta-left {
        display: grid;
        gap: 20px;
        justify-content: center;
    }
}
.cta-banner-wrapper .cta-left h2 {
    color: var(--white);
    font-size: 48px;
}
@media (max-width: 575px) {
    .cta-banner-wrapper .cta-left h2 {
        font-size: 35px;
    }
}
.cta-banner-wrapper .cta-left h2 span {
    font-size: 40px;
}
.cta-banner-wrapper .right-image {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper .right-image {
        display: none;
    }
}
.cta-banner-wrapper .right-image img {
    height: 100%;
}

/* 02.6 Match */
.ranking-wrapper .ranking-table-1 {
    margin-top: 60px;
}
@media (max-width: 991px) {
    .ranking-wrapper .ranking-table-1 {
        margin-top: 30px;
    }
}
.ranking-wrapper .ranking-table-1 .top-content {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    align-items: end;
    justify-content: space-between;
}
@media (max-width: 575px) {
    .ranking-wrapper .ranking-table-1 .top-content {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}
.ranking-wrapper .ranking-table-1 .top-content .content h3 {
    margin-bottom: 7px;
}
.ranking-wrapper .ranking-table-1 .top-content .content P {
    color: rgba(255, 255, 255, 0.8);
}
.ranking-wrapper .ranking-table-1 .top-content .rank-text {
    text-decoration: underline;
    color: var(--theme);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
.ranking-wrapper .ranking-table-1 table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1399px) {
    .ranking-wrapper .ranking-table-1 table {
        width: 800px;
    }
}
.ranking-wrapper .ranking-table-1 table th, .ranking-wrapper .ranking-table-1 table td {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.ranking-wrapper .ranking-table-1 table thead th {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.ranking-wrapper .ranking-table-1 table .rank {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
.ranking-wrapper .ranking-table-1 table .club {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-bottom: 1px solid rgba(199, 201, 206, 0.16) !important;
}
.ranking-wrapper .ranking-table-1 table .club.bb-none {
    border-bottom: none !important;
}
.ranking-wrapper .ranking-table-1 table .club img {
    width: 32px;
    height: auto;
    display: block;
}
.ranking-wrapper .ranking-table-1 table .points {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.ranking-wrapper .ranking-table-1 table .pos {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.ranking-wrapper .ranking-table-1 table .pos.negative {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.match-box-items {
    background-color: #F5F6F6;
    text-align: center;
    padding: 32px;
}
@media (max-width: 1199px) {
    .match-box-items {
        padding: 30px 25px;
    }
}
.match-box-items h3 {
    font-size: 32px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.4);
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.match-box-items h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
    font-family: 'iranyekan' !important;
}
.match-box-items .match-schedule {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    margin-top: 25px;
}
@media (max-width: 1199px) {
    .match-box-items .match-schedule {
        gap: 15px;
    }
}
.match-box-items .match-schedule span {
    display: block;
    margin-top: 5px;
}
.match-box-items .match-schedule .match-date {
    background-color: var(--white);
    padding: 12px 24px;
    line-height: 1;
}
@media (max-width: 1199px) {
    .match-box-items .match-schedule .match-date {
        padding: 10px 16px;
    }
}
.match-box-items .match-schedule .match-date span {
    color: var(--header);
    font-size: 24px;
    font-weight: 900;
    font-family: iranyekan;
}
@media (max-width: 1199px) {
    .match-box-items .match-schedule .match-date span {
        font-size: 16px;
    }
}
.match-box-items .match-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 35px;
    justify-content: center;
}
@media (max-width: 1399px) {
    .match-box-items .match-btn {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.match-box-items .match-btn .theme-btn {
    height: 52px;
    line-height: 52px;
    padding: 0 30px;
    background-color: #464E5E;
    border: 1px solid transparent;
}
@media (max-width: 1600px) {
    .match-box-items .match-btn .theme-btn {
        padding: 0 15px;
    }
}
.match-box-items .match-btn .theme-btn::before {
    background-color: var(--theme);
}
.match-box-items .match-btn .theme-btn:hover {
    border: 1px solid var(--theme);
}
.match-box-items .match-btn .theme-btn.style-2 {
    background-color: transparent;
    border: 1px solid #464E5E;
    color: var(--header);
}
.match-box-items .match-btn .theme-btn.style-2::before {
    background-color: var(--theme);
}
.match-box-items .match-btn .theme-btn.style-2 svg path {
    fill: var(--header);
    transition: all 0.4s ease-in-out;
}
.match-box-items .match-btn .theme-btn.style-2:hover {
    color: var(--white);
    border: 1px solid var(--theme);
}
.match-box-items .match-btn .theme-btn.style-2:hover svg path {
    fill: var(--white);
}

@media (max-width: 991px) {
    .match-result-wrapper {
        padding: 40px 0;
    }
    .match-result-wrapper .array-button-2 {
        display: flex !important;
        justify-content: center;
    }
}
.match-result-wrapper .left-headling {
    color: var(--header);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    .match-result-wrapper .left-headling {
        text-align: center;
    }
}
.match-result-wrapper .match-result-item {
    border-right: 1px solid #C7C9CE;
    padding: 32px 16px;
    position: relative;
}
@media (max-width: 991px) {
    .match-result-wrapper .match-result-item {
        border-right: none;
        background-color: var(--white);
    }
}
.match-result-wrapper .match-result-item .arrow-shape {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.match-result-wrapper .match-result-item p {
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    text-transform: uppercase;
    text-align: center;
}
.match-result-wrapper .match-result-item ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.match-result-wrapper .match-result-item ul li:not(:last-child) {
    margin-bottom: 10px;
}
.match-result-wrapper .match-result-item ul li .match-left {
    color: var(--header);
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.match-result-wrapper .match-result-item ul li .match-right {
    display: grid;
    align-items: center;
}
.match-result-wrapper .match-result-item ul li .match-right span {
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
}
.match-result-wrapper .swiper-slide-duplicate-next {
    border-left: 1px solid #C7C9CE;
}
.match-result-wrapper .swiper-slide-duplicate-prev {
    border-left: 1px solid #C7C9CE;
}

.ticket-box-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    padding: 25px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    gap: 40px;
    background-color: var(--white);
    position: relative;
    padding-right: 42px;
    overflow: hidden;
}
.ticket-box-items .circle2 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F5F6F6;
    position: absolute;
    bottom: -14px;
    right: 92px;
}
.ticket-box-items .circle-list {
    display: grid;
    align-items: center;
    gap: 18px;
    position: absolute;
    right: -18px;
}
.ticket-box-items .circle-list .circle-1 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F5F6F6;
}
.ticket-box-items .circle1 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F5F6F6;
    position: absolute;
    top: -14px;
    right: 92px;
}
.ticket-box-items .mask-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ticket-box-items .ticket-left {
    position: relative;
    z-index: 9;
    border-left: 1px dashed #C7C9CE;
    padding-left: 27px;
}
.ticket-box-items .ticket-left p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.ticket-box-items .ticket-left .number {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--header);
    font-family: iranyekan;
    writing-mode: vertical-rl;
    transform: rotate(0deg);
    margin-top: 8px;
}
.ticket-box-items .ticket-left h6 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.ticket-box-items .content {
    position: relative;
    z-index: 9;
}
.ticket-box-items .content span {
    margin-bottom: 10px;
    display: inline-block;
}
.ticket-box-items .content span img {
    margin-left: 6px;
}
.ticket-box-items .content span b {
    font-weight: 700;
    color: var(--header);
}
.ticket-box-items .content .match-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.ticket-box-items .content .match-list h3 {
    font-size: 20px;
}
.ticket-box-items .content .theme-btn {
    height: 49px;
    line-height: 49px;
    padding: 0 22px;
}

.ticket-scaner {
    background-color: #030523;
    padding: 21px 20px;
    margin-top: 30px;
    text-align: center;
}
.ticket-scaner h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}
.ticket-scaner .theme-btn {
    font-size: 14px;
    padding: 0 16px;
    margin-top: 17px;
}
.ticket-scaner .theme-btn::before {
    background-color: var(--white);
}
.ticket-scaner .theme-btn:hover {
    color: var(--header);
}

.upcooming-match-wrapper .upcomming-match-items-2 {
    background-color: #F5F6F6;
    padding: 24px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .top-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--theme);
    padding-bottom: 15px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .top-head h6 {
    font-size: 14px;
    font-weight: 700;
    font-family: iranyekan;
}
.upcooming-match-wrapper .upcomming-match-items-2 .top-head h6 span {
    font-weight: 600;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li:not(:last-child) {
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li img {
    width: initial;
    height: initial;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li span {
    font-weight: 700;
    color: var(--header);
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list h3 span {
    font-size: 16px;
    font-weight: 600;
    font-family: iranyekan;
    color: #464E5E;
}
.upcooming-match-wrapper .upcomming-match-items-2 .bottom-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(199, 201, 206, 0.24);
    margin-top: 15px;
    padding-top: 12px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .bottom-head p {
    font-size: 14px;
    color: var(--header);
    font-weight: 600;
}
.upcooming-match-wrapper .upcomming-match-items-2 .bottom-head span {
    font-size: 14px;
    color: var(--header);
    font-weight: 700;
}
.upcooming-match-wrapper .upcomming-match-slider {
    height: 475px;
}
@media (max-width: 1399px) {
    .upcooming-match-wrapper .upcomming-match-slider {
        height: 530px;
    }
}
@media (max-width: 1199px) {
    .upcooming-match-wrapper .upcomming-match-slider {
        height: 475px;
    }
}
@media (max-width: 767px) {
    .upcooming-match-wrapper .upcomming-match-slider {
        height: 242px;
    }
}
.upcooming-match-wrapper .fifa-ranking-box {
    padding: 50px 48px;
    background-color: #F5F6F6;
}
@media (max-width: 991px) {
    .upcooming-match-wrapper .fifa-ranking-box {
        padding: 35px;
    }
}
@media (max-width: 575px) {
    .upcooming-match-wrapper .fifa-ranking-box {
        padding: 28px;
    }
}
.upcooming-match-wrapper .fifa-ranking-box h3 {
    font-size: 32px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 25px;
    margin-bottom: 28px;
}
.upcooming-match-wrapper .fifa-ranking-box table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 16px;
    border-radius: 0;
    font-weight: 600;
    overflow: hidden;
}
@media (max-width: 767px) {
    .upcooming-match-wrapper .fifa-ranking-box table {
        width: 700px;
    }
}
.upcooming-match-wrapper .fifa-ranking-box thead {
    background: #ffecec;
    color: var(--header);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}
.upcooming-match-wrapper .fifa-ranking-box thead th {
    padding: 15px;
    color: var(--header);
    font-weight: 600;
    font-size: 16px;
}
.upcooming-match-wrapper .fifa-ranking-box tbody tr {
    background: #fff;
    border-bottom: 1px solid #eee;
}
.upcooming-match-wrapper .fifa-ranking-box tbody tr:nth-child(even) {
    background: #f9f9f9;
}
.upcooming-match-wrapper .fifa-ranking-box tbody td {
    padding: 15px;
    text-align: center;
    font-weight: 700;
    color: #464E5E;
    font-size: 18px;
}
.upcooming-match-wrapper .fifa-ranking-box .rank {
    color: #464E5E;
    font-weight: 700;
}
.upcooming-match-wrapper .fifa-ranking-box .country {
    text-align: right;
    font-weight: bold;
    color: #0a0a23;
    white-space: nowrap;
}
.upcooming-match-wrapper .fifa-ranking-box .country img {
    width: 30px;
    height: 20px;
    vertical-align: middle;
    margin-left: 10px;
    border: 1px solid #ddd;
}
.upcooming-match-wrapper .fifa-ranking-box .change {
    color: #666;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.upcooming-match-wrapper .fifa-ranking-box .circle {
    border: 1px solid #bbb;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.match-start-wrapper-3 {
    margin-top: -125px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1199px) {
    .match-start-wrapper-3 {
        margin-top: 80px;
    }
}
.match-start-wrapper-3 .match-start-box-3 {
    position: relative;
    text-align: center;
    z-index: 9;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3 {
        background-image: none !important;
        background-color: #030523;
    }
}
.match-start-wrapper-3 .match-start-box-3.style-top {
    margin-top: -10px;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3.style-top {
        margin-top: 0;
    }
}
.match-start-wrapper-3 .match-start-box-3 .content {
    padding: 40px 0;
    margin-right: 60px;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3 .content {
        margin-right: 0;
        text-align: center;
    }
}
.match-start-wrapper-3 .match-start-box-3 .content.style-2 {
    margin-right: 0;
    margin-right: -40px;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3 .content.style-2 {
        margin-right: 0;
        text-align: center;
    }
}
.match-start-wrapper-3 .match-start-box-3 .left-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3 .left-shape {
        display: none;
    }
}
.match-start-wrapper-3 .match-start-box-3 h3 {
    color: var(--white);
    margin-bottom: 9px;
}
.match-start-wrapper-3 .match-start-box-3 p {
    color: var(--white);
    margin-bottom: 20px;
}
.match-start-wrapper-3 .match-start-box-3 h2 {
    font-size: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--white);
}
.match-start-wrapper-3 .match-start-box-3 h2 span {
    font-size: 18px;
    font-weight: 700;
    font-family: iranyekan;
    color: var(--white);
    opacity: 0.7;
}
.match-start-wrapper-3 .match-start-box-3 .theme-btn {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
}
.match-start-wrapper-3 .match-start-box-3 .theme-btn::before {
    background-color: var(--white);
}
.match-start-wrapper-3 .match-start-box-3 .theme-btn:hover {
    color: var(--header);
}
.match-start-wrapper-3 .match-vs-start {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    background-color: #F5F6F6;
    backdrop-filter: blur(215.5px);
    height: 100%;
    padding: 63px 0;
}
.match-start-wrapper-3 .match-vs-start .vs-text {
    color: #030523;
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: iranyekan;
}

.ranking-wrapper-3 .ranking-box-3-items {
    /* =========================
     Responsive (max-width: 1399px)
     ========================= */
}
.ranking-wrapper-3 .ranking-box-3-items .score-table {
    width: 100%;
    overflow-x: auto;
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-family: iranyekan;
    font-weight: 600;
    background: #030523;
    color: var(--white);
}
@media (max-width: 1199px) {
    .ranking-wrapper-3 .ranking-box-3-items .score-table table {
        width: 800px;
    }
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table thead {
    background: #030523;
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table thead th {
    padding: 12px 10px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    border-left: 1px solid rgba(199, 201, 206, 0.16);
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td {
    padding: 12px 12px;
    border-top: 1px solid rgba(199, 201, 206, 0.16);
    border-left: 1px solid rgba(199, 201, 206, 0.16);
    font-size: 15px;
    font-weight: 700;
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td:first-child {
    font-weight: bold;
    color: var(--white);
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td img {
    width: 32px;
    height: 32px;
    margin-left: 8px;
    vertical-align: middle;
}
@media (max-width: 1399px) {
    .ranking-wrapper-3 .ranking-box-3-items .score-table table thead th {
        font-size: 12px;
        padding: 12px 8px;
    }
    .ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td {
        font-size: 13px;
        padding: 10px 8px;
    }
    .ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td img {
        width: 26px;
        height: 26px;
        margin-left: 6px;
    }
}
.ranking-wrapper-3 .bg-white-01 {
    background: rgba(255, 255, 255, 0.1);
}
.ranking-wrapper-3 .man-image {
    height: 450px;
}
@media (max-width: 1399px) {
    .ranking-wrapper-3 .man-image {
        height: 400px;
    }
}
@media (max-width: 1199px) {
    .ranking-wrapper-3 .man-image {
        height: 396px;
    }
}
@media (max-width: 991px) {
    .ranking-wrapper-3 .man-image {
        height: initial;
    }
}
.ranking-wrapper-3 .man-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournaments-league-wrapper-3 .tournaments-league-box {
    position: relative;
    z-index: 9;
    margin-top: 30px;
}
@media (max-width: 575px) {
    .tournaments-league-wrapper-3 .tournaments-league-box {
        background-color: #fff;
        padding: 20px;
    }
}
.tournaments-league-wrapper-3 .tournaments-league-box .thumb {
    margin: 0 auto;
    padding: 12px;
}
.tournaments-league-wrapper-3 .tournaments-league-box .thumb img {
    width: 100%;
    height: 100%;
}
.tournaments-league-wrapper-3 .tournaments-league-box::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 238 232"><path fill-rule="evenodd" clip-rule="evenodd" d="M237.839 0H119.019H0.161465C-5.07895 194.525 118.981 232 118.981 232C118.981 232 243.079 194.525 237.839 0Z" /></svg>');
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: cover;
    background-color: #fff;
    z-index: -1;
}
@media (max-width: 575px) {
    .tournaments-league-wrapper-3 .tournaments-league-box::before {
        display: none;
    }
}
.tournaments-league-wrapper-3 .tournaments-league-box h3 {
    font-size: 20px;
    text-align: center;
}
.tournaments-league-wrapper-3 .tournaments-league-box .icon {
    text-align: center;
    margin-top: 25px;
    position: relative;
    z-index: 9;
    padding-bottom: 26px;
}
.tournaments-league-wrapper-3 .tournaments-league-box .icon .icon-bg {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    z-index: -1;
    padding-bottom: 0;
}

.upcoming-match-box-items-3 {
    margin-top: 30px;
    background-color: var(--white);
    padding: 26px 30px;
}
.upcoming-match-box-items-3 .top-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .upcoming-match-box-items-3 .top-items {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
}
.upcoming-match-box-items-3 .top-items p {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--header);
}
.upcoming-match-box-items-3 .top-items span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #464E5E;
}
.upcoming-match-box-items-3 .match-logo-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}
.upcoming-match-box-items-3 .match-logo-items .content {
    text-align: center;
    max-width: 200px;
    width: 100%;
}
.upcoming-match-box-items-3 .match-logo-items .content p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #464E5E;
    margin-top: 5px;
}
.upcoming-match-box-items-3 .bottom-items {
    border-top: 1px solid rgba(199, 201, 206, 0.24);
    margin-top: 24px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .upcoming-match-box-items-3 .bottom-items {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
}
.upcoming-match-box-items-3 .bottom-items p {
    color: var(--header);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.upcoming-match-section {
    margin-top: -130px;
    padding-top: 220px !important;
}

.team-box-items-3 {
    margin-top: 30px;
    background-color: #F5F6F6;
}
.team-box-items-3 .thumb img {
    width: 100%;
    height: 100%;
}
.team-box-items-3 .content {
    padding: 28px 24px;
    position: relative;
}
.team-box-items-3 .content .flag-image {
    position: absolute;
    left: 24px;
    top: 28px;
}
.team-box-items-3 .content h3 {
    margin-bottom: 5px;
}
.team-box-items-3 .content h3 a:hover {
    color: var(--theme);
}
.team-box-items-3 .content p {
    font-size: 15px;
    font-weight: 700;
    margin-top: 15px;
}
.team-box-items-3 .content p b {
    color: #030523;
}
.team-box-items-3 .content .theme-color-text {
    color: var(--theme);
    font-size: 16px;
    font-weight: 700;
}

.match-moments-image {
    margin-top: 26px;
    position: relative;
    overflow: hidden;
}
.match-moments-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    top: 0;
    bottom: 0px;
    left: 0;
    background: rgba(29, 29, 29, 0.6);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    width: 100%;
    height: 100%;
    z-index: 9;
}
.match-moments-image img {
    width: 100%;
    height: 100%;
}
.match-moments-image .gt-icon {
    display: inline-block;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}
.match-moments-image:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}
.match-moments-image:hover .gt-icon {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1399px) {
    .score-wrapper-3 .score-logo {
        max-width: 288px;
        margin: 0 auto;
    }
    .score-wrapper-3 .score-logo img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 767px) {
    .score-wrapper-3 .score-logo {
        max-width: 180px;
    }
}
@media (max-width: 575px) {
    .score-wrapper-3 .score-logo {
        max-width: 140px;
    }
}
.score-wrapper-3 .score-content .score-box-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.32);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .score-wrapper-3 .score-content .score-box-items {
        flex-wrap: wrap;
        gap: 16px;
    }
}
.score-wrapper-3 .score-content .score-box-items .content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.score-wrapper-3 .score-content .score-box-items .content h3 {
    color: var(--white);
    text-align: right;
}
@media (max-width: 1399px) {
    .score-wrapper-3 .score-content .score-box-items .content h3 {
        font-size: 20px;
    }
}
.score-wrapper-3 .score-content .score-box-items .content .title-box {
    background-color: var(--theme);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
}
.score-wrapper-3 .score-content .score-box-items .content .title-box.bg-2 {
    background: rgba(70, 78, 94, 0.32);
    backdrop-filter: blur(9.5px);
}
.score-wrapper-3 .score-content .score-box-items .content .title-box h4 {
    font-size: 20px;
    color: var(--white);
    font-weight: 900;
}
.score-wrapper-3 .score-content .score-box-items .content .title-box h2 {
    font-size: 40px;
    color: var(--white);
    font-weight: 900;
    font-family: 'iranyekan' !important;
}
@media (max-width: 1399px) {
    .score-wrapper-3 .score-content .score-box-items .content .title-box h2 {
        font-size: 28px;
    }
}
.score-wrapper-3 .score-content ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .score-wrapper-3 .score-content ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}
.score-wrapper-3 .score-content ul li {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
    font-family: 'iranyekan';
}

.score-section-3 {
    position: relative;
    z-index: 9;
}
.score-section-3 .shape-1 {
    position: absolute;
    top: 0;
    right: 17%;
    z-index: -1;
}
@media (max-width: 1600px) {
    .score-section-3 .shape-1 {
        right: 6%;
    }
}
@media (max-width: 1399px) {
    .score-section-3 .shape-1 {
        display: none;
    }
}
.score-section-3 .shape-2 {
    position: absolute;
    bottom: 0;
    right: 11%;
    z-index: -1;
}
@media (max-width: 1600px) {
    .score-section-3 .shape-2 {
        right: 0;
    }
}
@media (max-width: 1399px) {
    .score-section-3 .shape-2 {
        display: none;
    }
}
.score-section-3 .shape-3 {
    position: absolute;
    top: 0;
    left: 12%;
    z-index: -1;
}
@media (max-width: 1600px) {
    .score-section-3 .shape-3 {
        left: 0;
    }
}
@media (max-width: 1399px) {
    .score-section-3 .shape-3 {
        display: none;
    }
}
.score-section-3 .shape-4 {
    position: absolute;
    bottom: 0;
    left: 17%;
    z-index: -1;
}
@media (max-width: 1600px) {
    .score-section-3 .shape-4 {
        left: 6%;
    }
}
@media (max-width: 1399px) {
    .score-section-3 .shape-4 {
        display: none;
    }
}

.match-moments-section .nav {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0;
}
@media (max-width: 1199px) {
    .match-moments-section .nav {
        flex-wrap: wrap;
        gap: 14px;
    }
}
.match-moments-section .nav .nav-item {
    padding: 0;
}
.match-moments-section .nav .nav-item .nav-link {
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
}
.match-moments-section .nav .nav-item .nav-link i {
    margin-right: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.match-moments-section .nav .nav-item .nav-link.active {
    color: var(--theme);
    text-decoration: underline;
}
.match-moments-section .nav .nav-item .nav-link.active i {
    opacity: 1;
    visibility: visible;
}

.ticket-wrapper p {
    font-size: 16px;
    font-weight: 600;
    color: #464E5E;
}
.ticket-wrapper .calender-list {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 20px;
    margin-bottom: 25px;
}
@media (max-width: 1199px) {
    .ticket-wrapper .calender-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .calender-list li {
    color: var(--header);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ticket-wrapper .ticket-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .ticket-wrapper .ticket-title {
        font-size: 26px;
    }
}
.ticket-wrapper .check-list li:not(:last-child) {
    margin-bottom: 15px;
}
.ticket-wrapper .check-list li i {
    color: var(--theme);
    margin-left: 5px;
    font-size: 20px;
}
.ticket-wrapper .check-list li b {
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
    margin-left: 6px;
}
.ticket-wrapper .form-clt {
    max-width: 250px;
    width: 100%;
    display: inline-block;
}
.ticket-wrapper .form-clt .form .single-select {
    border: 1px solid var(--theme);
    background-color: transparent;
    width: 100%;
    padding: 17px 30px;
    height: initial;
    line-height: initial;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    letter-spacing: 0.5px;
    border-radius: 0;
}
.ticket-wrapper .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--header);
    border-left: 2px solid var(--header);
    width: 8px;
    height: 8px;
    left: 30px;
}
.ticket-wrapper .form-clt .form .single-select .list {
    width: 100%;
}
.ticket-wrapper .ticket-list-items {
    background-color: var(--bg);
    display: block;
    padding: 32px;
}
.ticket-wrapper .ticket-list-items .ticket-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 32px;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-list-items .ticket-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .ticket-list-items h3 {
    font-size: 32px;
    font-weight: 900;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.ticket-wrapper .ticket-list-items .left-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.ticket-wrapper .ticket-list-items .left-item h4 {
    font-size: 24px;
    font-weight: 900;
}
@media (max-width: 1399px) {
    .ticket-wrapper .ticket-list-items .left-item h4 {
        font-size: 18px;
    }
}
.ticket-wrapper .ticket-list-items .right-items {
    display: flex;
    align-items: center;
    gap: 24px;
}
.ticket-wrapper .ticket-list-items .right-items h5 {
    font-size: 20px;
    font-weight: 900;
    color: var(--header);
}
.ticket-wrapper .ticket-list-items .right-items h5 sub {
    font-size: 14px;
    color: var(--text);
    font-family: iranyekan;
    margin-right: 5px;
}
.ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity {
    border-radius: 0;
    border: 1px solid rgba(199, 201, 206, 0.24);
}
@media (max-width: 767px) {
    .ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity {
        flex-basis: 100%;
    }
}
.ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity button i {
    font-size: 18px;
    color: var(--header);
}
.ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity .quantityValue {
    width: 40px;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    font-family: iranyekan;
    padding: 0;
    color: var(--header);
    border: unset;
    background: transparent;
}
.ticket-wrapper .ticket-list-items .quantity-items {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-list-items .quantity-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .ticket-list-items .quantity-items .quantity-list {
    display: flex;
    align-items: center;
    gap: 70px;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-list-items .quantity-items .quantity-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .ticket-list-items .quantity-items .quantity-list p {
    font-size: 16px;
    font-weight: 600;
}
.ticket-wrapper .ticket-list-items .quantity-items .quantity-list p b {
    color: #030523;
    font-weight: 700;
}
.ticket-wrapper .ticket-details-information {
    margin-right: 40px;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-details-information {
        margin-right: 0;
    }
}
.ticket-wrapper .ticket-details-information h3 {
    font-size: 32px;
    font-weight: 900;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.ticket-wrapper .ticket-details-information ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-details-information ul li {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .ticket-details-information ul li:not(:last-child) {
    margin-bottom: 15px;
}
.ticket-wrapper .ticket-details-information ul li span {
    flex-basis: 50%;
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
}

.latest-world-ranking-wrapper .content {
    border-bottom: 1px solid rgba(199, 201, 206, 0.16);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.latest-world-ranking-wrapper .content h3 {
    font-size: 32px;
}
.latest-world-ranking-wrapper .content .text-item {
    display: flex;
    align-items: center;
    gap: 72px;
    margin-top: 10px;
}
@media (max-width: 1199px) {
    .latest-world-ranking-wrapper .content .text-item {
        gap: 10px;
        flex-wrap: wrap;
    }
}
.latest-world-ranking-wrapper .ranking-category-items {
    margin-bottom: 35px;
}
.latest-world-ranking-wrapper .ranking-category-items .filter-btn {
    display: inline-block;
    background-color: var(--theme);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    height: 50px;
    line-height: 50px;
    padding: 0 35px;
}
.latest-world-ranking-wrapper .ranking-category-items .filter-btn img {
    margin-right: 10px;
}
.latest-world-ranking-wrapper .ranking-category-items .filter-btn:hover {
    background-color: var(--header);
}
.latest-world-ranking-wrapper .ranking-category-items .form-clt .form .single-select {
    border: 1px solid rgba(199, 201, 206, 0.24);
    background-color: transparent;
    width: 100%;
    padding: 17px 18px;
    height: initial;
    line-height: initial;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    border-radius: 0;
}
.latest-world-ranking-wrapper .ranking-category-items .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--header);
    border-left: 2px solid var(--header);
    width: 8px;
    height: 8px;
    left: 12px;
}
.latest-world-ranking-wrapper .ranking-category-items .form-clt .form .single-select .list {
    width: 100%;
}
.latest-world-ranking-wrapper .ranking-box-style {
    background-color: #F5F6F6;
    text-align: center;
    padding: 30px 18px;
}
.latest-world-ranking-wrapper .ranking-box-style p {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    margin-top: 15px;
    line-height: 1;
}
.latest-world-ranking-wrapper .ranking-box-style span {
    font-size: 14px;
    font-weight: 600;
}
.latest-world-ranking-wrapper .ranking-box-style h3 {
    font-size: 32px;
    font-weight: 900;
    margin-top: 7px;
}
.latest-world-ranking-wrapper .ranking-box-style .color-theme {
    color: var(--theme);
}
.latest-world-ranking-wrapper .ranking-box-style .color-theme2 {
    color: #881C0B;
}
.latest-world-ranking-wrapper .latest-world-ranking-table {
    margin-top: 70px;
}
@media (max-width: 767px) {
    .latest-world-ranking-wrapper .latest-world-ranking-table {
        margin-top: 40px;
    }
}
.latest-world-ranking-wrapper .latest-world-ranking-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
@media (max-width: 1399px) {
    .latest-world-ranking-wrapper .latest-world-ranking-table table {
        width: 1100px;
    }
}
.latest-world-ranking-wrapper .latest-world-ranking-table table thead {
    background: #f7f7f7;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table th, .latest-world-ranking-wrapper .latest-world-ranking-table table td {
    padding: 14px 15px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
}
.latest-world-ranking-wrapper .latest-world-ranking-table table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--text);
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .positive {
    color: green;
    font-weight: 600;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .negative {
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 28px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-left: 5px;
    padding: 0;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge.w {
    background: var(--theme);
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge.d {
    background: #464E5E;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge.l {
    background: #030523;
}

.club-lineup-wrapper .club-lineup-left .club-lineup-head {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 24px;
    margin-bottom: 35px;
}
.club-lineup-wrapper .club-lineup-left .club-lineup-head h3 {
    font-size: 32px;
}
.club-lineup-wrapper .club-lineup-left .club-lineup-head span {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--header);
}
.club-lineup-wrapper .club-lineup-left .club-lineup-head span img {
    margin-left: 8px;
}
.club-lineup-wrapper .club-lineup-left ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.club-lineup-wrapper .club-lineup-left ul li:not(:last-child) {
    margin-bottom: 30px;
}
.club-lineup-wrapper .club-lineup-left ul li .lineup-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.club-lineup-wrapper .club-lineup-left ul li .lineup-item .content h3 {
    font-size: 20px;
    font-weight: 900;
}
.club-lineup-wrapper .club-lineup-left ul li .lineup-item .content h3 span {
    font-size: 16px;
    font-weight: 600;
    font-family: iranyekan;
}
.club-lineup-wrapper .club-lineup-left ul li .number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #F5F6F6;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
}
.club-lineup-wrapper .match-information-box {
    border-right: 1px solid rgba(199, 201, 206, 0.24);
    margin-right: 40px;
    padding-right: 40px;
}
@media (max-width: 1199px) {
    .club-lineup-wrapper .match-information-box {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }
}
.club-lineup-wrapper .match-information-box ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.club-lineup-wrapper .match-information-box ul li:not(:last-child) {
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 31px;
    margin-bottom: 31px;
}
.club-lineup-wrapper .match-information-box ul li .color-text-1 {
    color: var(--theme);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: iranyekan;
}
@media (max-width: 575px) {
    .club-lineup-wrapper .match-information-box ul li .color-text-1 {
        font-size: 25px;
    }
}
.club-lineup-wrapper .match-information-box ul li .sub-text {
    color: #464E5E;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.club-lineup-wrapper .match-information-box ul li .color-text-2 {
    color: var(--header);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: iranyekan;
}
@media (max-width: 575px) {
    .club-lineup-wrapper .match-information-box ul li .color-text-2 {
        font-size: 25px;
    }
}
.club-lineup-wrapper .match-information-box .match-head-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 26px;
    margin-bottom: 26px;
}
@media (max-width: 767px) {
    .club-lineup-wrapper .match-information-box .match-head-title {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.club-lineup-wrapper .match-information-box .match-head-title span {
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
    display: flex;
    align-items: center;
    gap: 16px;
}
.club-lineup-wrapper .match-information-box .match-head-title h3 {
    font-size: 32px;
}
@media (max-width: 575px) {
    .club-lineup-wrapper .match-information-box .match-head-title h3 {
        font-size: 26px;
    }
}

.lineup-bg-wrapper {
    padding: 48px;
    margin-top: 240px;
}
@media (max-width: 991px) {
    .lineup-bg-wrapper {
        margin-top: 140px;
    }
}
.lineup-bg-wrapper .lineup-content {
    text-align: center;
    margin-bottom: 40px;
}
.lineup-bg-wrapper .text-item {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin-top: 10px;
}
@media (max-width: 575px) {
    .lineup-bg-wrapper .text-item {
        flex-wrap: wrap;
        gap: 18px;
    }
}
.lineup-bg-wrapper .lineup-result-items {
    display: flex;
    justify-content: center;
    gap: 100px;
}
@media (max-width: 1199px) {
    .lineup-bg-wrapper .lineup-result-items {
        gap: 30px;
    }
}
@media (max-width: 991px) {
    .lineup-bg-wrapper .lineup-result-items {
        display: grid;
        gap: 30px;
        justify-content: start;
    }
}
@media (max-width: 991px) {
    .lineup-bg-wrapper .lineup-result-items .left-item p {
        text-align: left !important;
    }
}
.lineup-bg-wrapper .lineup-result-items .left-item .thumb {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .lineup-bg-wrapper .lineup-result-items .left-item .thumb {
        margin-bottom: 15px;
        display: grid;
    }
}
.lineup-bg-wrapper .lineup-result-items .left-item .thumb h3 {
    font-size: 32px;
}
@media (max-width: 575px) {
    .lineup-bg-wrapper .lineup-result-items .left-item .thumb h3 {
        font-size: 25px;
    }
}
.lineup-bg-wrapper .lineup-result-items .score-result {
    display: inline-block;
    height: 56px;
    line-height: 56px;
    padding: 0 30px;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.playing-ranking-items {
    display: flex;
    align-items: center;
}
@media (max-width: 1399px) {
    .playing-ranking-items {
        display: block;
    }
}
.playing-ranking-items .thumb {
    max-width: 368px;
}
@media (max-width: 1399px) {
    .playing-ranking-items .thumb {
        max-width: initial;
        margin-bottom: 30px;
    }
}
.playing-ranking-items .thumb img {
    width: 100%;
    height: 100%;
}
.playing-ranking-items .content {
    border-right: 4px solid var(--theme);
    background: linear-gradient(270deg, rgba(254, 89, 0, 0) 88.44%, var(--Primary-500, rgba(254, 89, 0, 0.08)) 98.58%), var(--BG-Sedentary, #F5F6F6);
    padding: 28px 32px;
    max-width: 500px;
    width: 100%;
}
@media (max-width: 1399px) {
    .playing-ranking-items .content {
        max-width: initial;
    }
}
.playing-ranking-items .content .top-content {
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.playing-ranking-items .content .sub-content p {
    font-size: 14px;
    font-weight: 600;
}
.playing-ranking-items .content .theme-btn {
    height: 48px;
    line-height: 48px;
    padding: 0 18px;
    margin-top: 25px;
}
.playing-ranking-items .content table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 16px;
}
@media (max-width: 1399px) {
    .playing-ranking-items .content table {
        width: 600px;
    }
}
.playing-ranking-items .content thead {
    background: #f9f9f9;
}
.playing-ranking-items .content thead th {
    padding: 10px 10px;
    font-weight: 700;
    color: #030523;
    font-size: 16px;
    border-bottom: 2px solid #eee;
}
.playing-ranking-items .content tbody td {
    padding: 10px 10px;
    font-weight: 600;
    color: #030523;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}
.playing-ranking-items .content tbody tr:last-child td {
    border-bottom: none;
}

.playing-result-box2 {
    background-color: #F5F6F6;
    padding: 26px 30px;
}
@media (max-width: 1399px) {
    .playing-result-box2 {
        height: 500px;
        overflow-y: auto;
        overflow-x: hidden;
    }
}
.playing-result-box2.style-2 {
    background-color: var(--white);
    padding: 35px 30px;
}
.playing-result-box2.style-2 .match-result-box {
    padding-top: 22px;
    margin-bottom: 22px;
    border-top: 1px solid 1px solid rgba(199, 201, 206, 0.24);
}
.playing-result-box2 h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}
.playing-result-box2 .match-result-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(199, 201, 206, 0.24);
    padding-top: 15px;
    margin-bottom: 15px;
}
@media (max-width: 1399px) {
    .playing-result-box2 .match-result-box {
        display: grid;
        justify-content: center;
    }
}
.playing-result-box2 .match-result-box .match-result {
    text-align: center;
    margin: 0 auto;
}
.playing-result-box2 .match-result-box .match-result p {
    font-weight: 700;
    color: #030523;
    margin-top: 10px;
}
.playing-result-box2 .match-result-box .content {
    text-align: center;
}
.playing-result-box2 .match-result-box .result-box {
    text-align: center;
    border: 1px solid rgba(199, 201, 206, 0.16);
    padding: 12px 24px;
    margin-top: 12px;
}
.playing-result-box2 .match-result-box .result-box h4 {
    font-size: 15px;
    font-weight: 900;
}

.upcoming-match-section {
    position: relative;
}
.upcoming-match-section .section-title {
    z-index: initial;
}
.upcoming-match-section .array-button-2 {
    position: relative;
    z-index: 99;
}
@media (max-width: 1199px) {
    .upcoming-match-section .array-button-2 {
        display: none !important;
    }
}
.upcoming-match-section .array-button-2 .array-prev2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
}
.upcoming-match-section .array-button-2 .array-next2 {
    position: absolute;
    top: 0;
    left: 0;
}

/* 02.7 Feature */
.counter-wrapper {
    display: flex;
    justify-content: space-between;
    background-color: var(--white);
    padding: 40px 32px;
    margin-bottom: -80px;
    position: relative;
    z-index: 99;
}
@media (max-width: 1199px) {
    .counter-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
    }
}
.counter-wrapper .counter-items {
    border-left: 1px solid #C7C9CE;
    padding-left: 50px;
}
@media (max-width: 1399px) {
    .counter-wrapper .counter-items {
        padding-left: 0;
        border-left: none;
    }
}
.counter-wrapper .counter-items.border-none {
    border-left: none;
    padding-left: 0;
}
.counter-wrapper .counter-items h6 {
    font-family: iranyekan;
    font-size: 20px;
    font-weight: 700;
}
.counter-wrapper .counter-items .icon-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}
.counter-wrapper .counter-items .icon-box h2 {
    font-size: 40px;
    color: var(--theme);
    font-weight: 900;
}

.feature-progress-wrapper {
    margin-top: -150px;
    position: relative;
    z-index: 99;
}
@media (max-width: 991px) {
    .feature-progress-wrapper {
        margin-top: 80px;
    }
}
.feature-progress-wrapper .content {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-top: -180px;
}
@media (max-width: 991px) {
    .feature-progress-wrapper .content {
        margin-top: 0;
        flex-wrap: wrap;
        gap: 30px;
    }
}
.feature-progress-wrapper .content .list-item ul {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-progress-wrapper .content .list-item ul li .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--theme);
}
.feature-progress-wrapper .content .list-item ul .box-list {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(199, 201, 206, 0.24);
    padding: 12px 16px;
    line-height: 1;
}
.feature-progress-wrapper .content h3 {
    font-size: 40px;
    font-weight: 900;
}
@media (max-width: 1199px) {
    .feature-progress-wrapper .content h3 {
        font-size: 33px;
    }
}
@media (max-width: 767px) {
    .feature-progress-wrapper .content h3 {
        font-size: 35px;
    }
}
@media (max-width: 575px) {
    .feature-progress-wrapper .content h3 {
        font-size: 30px;
    }
}
.feature-progress-wrapper .content h3 span {
    color: var(--theme);
}
.feature-progress-wrapper .feature-progress-thumb {
    position: relative;
}
@media (max-width: 1399px) {
    .feature-progress-wrapper .feature-progress-thumb img {
        width: 100%;
        height: 100%;
    }
}
.feature-progress-wrapper .feature-progress-thumb .video-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 1199px) {
    .feature-progress-wrapper .feature-progress-thumb .video-btn {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.basketball-leagues-items .content {
    text-align: center;
    border: 1px solid rgba(199, 201, 206, 0.24);
    padding: 40px 45px;
}
.basketball-leagues-items .themb img {
    width: 100%;
    height: 100%;
}

.hottest-box-items-3 {
    margin-top: 30px;
}
.hottest-box-items-3 .hottest-thumb {
    position: relative;
    height: 450px;
}
.hottest-box-items-3 .hottest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hottest-box-items-3 .hottest-thumb .post-box {
    position: absolute;
    display: inline-block;
    font-weight: 700;
    color: var(--header);
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--white);
    padding: 11px 19px;
    border-radius: 100px;
    line-height: 1;
}
.hottest-box-items-3 .hottest-thumb .post-box-2 {
    position: absolute;
    display: inline-block;
    font-weight: 700;
    color: var(--header);
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--white);
    padding: 11px 19px;
    border-radius: 100px;
    line-height: 1;
}
@media (max-width: 1199px) {
    .hottest-box-items-3 .hottest-thumb .post-box-2 {
        bottom: initial;
        top: 24px;
    }
}
.hottest-box-items-3 .hottest-thumb .video-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hottest-box-items-3 .hottest-thumb .hottest-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.hottest-box-items-3 .hottest-thumb .hottest-content h3 a {
    color: var(--white);
}
.hottest-box-items-3 .hottest-thumb .hottest-content h3 a:hover {
    color: var(--theme);
}
.hottest-box-items-3 .hottest-thumb .hottest-content p {
    color: var(--white);
}

.trophy-section {
    margin-top: -67px;
    margin-bottom: -42px;
}

/* 02.8 Footer */
.footer-subscribe-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 80px;
}
@media (max-width: 1399px) {
    .footer-subscribe-wrapper {
        flex-wrap: wrap;
        justify-content: start;
        gap: 25px;
    }
}
.footer-subscribe-wrapper h3 {
    color: var(--white);
}
.footer-subscribe-wrapper form {
    max-width: 490px;
    width: 100%;
    position: relative;
}
.footer-subscribe-wrapper form input {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    border: none;
    outline: none;
    width: 100%;
    padding: 20px 20px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-subscribe-wrapper form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.footer-subscribe-wrapper form button {
    position: absolute;
    left: 5px;
    bottom: 0;
    top: 5px;
}
.footer-subscribe-wrapper .footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}
@media (max-width: 767px) {
    .footer-subscribe-wrapper .footer-right {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.footer-subscribe-wrapper .footer-right .social-icon {
    gap: 16px;
}
.footer-subscribe-wrapper .footer-right .social-icon a {
    display: inline-block;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(46px);
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
}
.footer-subscribe-wrapper .footer-right .social-icon a:hover {
    background-color: var(--theme);
}

.footer-widget-wrapper {
    padding: 50px 0 80px;
}
.footer-widget-wrapper .footer-widget-items {
    margin-top: 30px;
}
.footer-widget-wrapper .widget-head {
    margin-bottom: 30px;
}
.footer-widget-wrapper .widget-head h3 {
    color: #ffffff;
    font-size: 20px;
}
.footer-widget-wrapper .footer-content p {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .list-area li a {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .list-area li a:hover {
    color: var(--theme);
}
.footer-widget-wrapper .list-area li:not(:last-child) {
    margin-bottom: 15px;
}
.footer-widget-wrapper .footer-contact-list li {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-contact-list li a {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-contact-list li:not(:last-child) {
    margin-bottom: 15px;
}
.footer-widget-wrapper .app-items {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-widget-wrapper .footer-form form {
    position: relative;
}
.footer-widget-wrapper .footer-form form input {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    border: none;
    outline: none;
    width: 100%;
    padding: 20px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}
.footer-widget-wrapper .footer-form form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-form form button {
    position: absolute;
    left: 5px;
    bottom: 0;
    top: 5px;
}
.footer-widget-wrapper .footer-form form button .theme-btn {
    padding: 0 24px;
}
.footer-widget-wrapper .footer-form .form-check {
    margin-top: 20px !important;
    margin: 0;
    padding: 0;
}
@media (max-width: 1399px) {
    .footer-widget-wrapper .footer-form .form-check {
        margin-top: 0;
    }
}
.footer-widget-wrapper .footer-form .form-check .form-check-input {
    float: left;
    margin-right: 0;
    transform: translateY(0);
    width: 16px;
    height: 16px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
}
.footer-widget-wrapper .footer-form .form-check .form-check-input:checked {
    background-color: var(--theme);
    border-color: var(--theme);
}
.footer-widget-wrapper .footer-form .form-check .form-check-label {
    margin-right: 10px;
    color: var(--white);
    font-weight: 600;
    opacity: 0.8;
    font-size: 14px;
}
.footer-widget-wrapper .footer-form .form-check .form-check-label a {
    text-decoration: underline;
    color: var(--white);
}
@media (max-width: 575px) {
    .footer-widget-wrapper .footer-form .form-check .form-check-label {
        margin-right: 22px;
        font-size: 14px;
    }
}
.footer-widget-wrapper .footer-form .social-icon {
    margin-top: 30px;
    gap: 12px;
}
.footer-widget-wrapper .footer-form .social-icon a {
    display: inline-block;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(46px);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
}
.footer-widget-wrapper .footer-form .social-icon a:hover {
    background-color: var(--theme);
}
.footer-widget-wrapper .footer-post-items li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-widget-wrapper .footer-post-items li:not(:last-child) {
    margin-bottom: 24px;
}
.footer-widget-wrapper .footer-post-items li .content {
    max-width: 296px;
}
.footer-widget-wrapper .footer-post-items li .content .top-text {
    color: var(--white);
    opacity: 0.7;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}
.footer-widget-wrapper .footer-post-items li .content h6 {
    font-size: 16px;
    font-weight: 700;
    font-family: iranyekan;
    line-height: 150%;
}
.footer-widget-wrapper .footer-post-items li .content h6 a {
    color: var(--white);
}
.footer-widget-wrapper .footer-post-items li .content h6 a:hover {
    color: var(--theme);
}

.footer-bottom {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .footer-bottom {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}
.footer-bottom.style-3 {
    border-top: 1px solid rgba(199, 201, 206, 0.24);
    background: #030523;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 99;
}
.footer-bottom.style-3 .footer-bottom-wrapper-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 575px) {
    .footer-bottom.style-3 .footer-bottom-wrapper-3 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
.footer-bottom.style-3 .social-icon {
    gap: 12px;
}
.footer-bottom.style-3 .social-icon a {
    display: inline-block;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(46px);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
}
.footer-bottom.style-3 .social-icon a:hover {
    background-color: var(--theme);
}
.footer-bottom p {
    color: var(--white);
    font-weight: 700;
}
.footer-bottom p b {
    color: var(--theme);
}
.footer-bottom .footer-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-bottom .footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    background-image: linear-gradient(var(--theme-color), var(--theme-color));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
}
.footer-bottom .footer-menu li a:hover {
    background-size: 100% 1px;
    color: var(--theme);
}

.footer-instagram-wrapper {
    padding: 100px 0 100px;
}
.footer-instagram-wrapper .footer-instagram-image {
    position: relative;
    overflow: hidden;
}
.footer-instagram-wrapper .footer-instagram-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    top: 0;
    bottom: 0px;
    left: 0;
    background: rgba(29, 29, 29, 0.6);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    width: 100%;
    height: 100%;
    z-index: 9;
}
.footer-instagram-wrapper .footer-instagram-image .gt-icon {
    display: inline-block;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}
.footer-instagram-wrapper .footer-instagram-image img {
    width: 100%;
    height: 100%;
}
.footer-instagram-wrapper .footer-instagram-image:hover .gt-icon {
    top: 50%;
    opacity: 1;
    visibility: visible;
}
.footer-instagram-wrapper .footer-instagram-image:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.footer-logo-item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1399px) {
    .footer-logo-item {
        justify-content: center;
        border-bottom: 1px solid rgba(199, 201, 206, 0.24);
        padding-bottom: 50px;
    }
    .footer-logo-item .border-img {
        display: none !important;
    }
}

.footer-bottom-2 {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(46px);
    text-align: center;
    padding: 28px 0;
}
.footer-bottom-2 p {
    text-align: center;
    font-weight: 700;
    color: var(--white);
}
.footer-bottom-2 p b {
    color: var(--theme);
}

.footer-top-wrapper-3 {
    padding: 100px 0 50px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
}
.footer-top-wrapper-3 p {
    color: var(--white);
    opacity: 0.88;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    max-width: 376px;
    margin-right: 70px;
}
@media (max-width: 1199px) {
    .footer-top-wrapper-3 p {
        margin-right: 0;
    }
}
.footer-top-wrapper-3 ul li {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.88;
}
.footer-top-wrapper-3 ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer-top-wrapper-3 ul li a {
    color: var(--white);
    opacity: 0.88;
}

.footer-left-40 {
    margin-right: 60px;
}
@media (max-width: 1399px) {
    .footer-left-40 {
        margin-right: 0;
    }
}

.style-right-30 {
    margin-left: 20px;
}
@media (max-width: 1199px) {
    .style-right-30 {
        margin-left: 0;
    }
}
.style-right-30 .theme-btn {
    padding: 0 22px;
}

.footer-section-3 {
    position: relative;
}
.footer-section-3::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 39%;
    width: 1px;
    height: 100%;
    content: "";
    background: rgba(199, 201, 206, 0.24);
}
@media (max-width: 1600px) {
    .footer-section-3::before {
        right: 36%;
    }
}
@media (max-width: 1399px) {
    .footer-section-3::before {
        display: none;
    }
}
.footer-section-3::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 63%;
    width: 1px;
    height: 100%;
    content: "";
    background: rgba(199, 201, 206, 0.24);
}
@media (max-width: 1600px) {
    .footer-section-3::after {
        right: 66%;
    }
}
@media (max-width: 1399px) {
    .footer-section-3::after {
        display: none;
    }
}

/* 02.9 Header */
@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.header-main .main-menu ul {
    margin-bottom: 0;
}
.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 45px;
}
.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}
.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    font-family: iranyekan;
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
    margin-right: 4px;
    font-size: 14px;
}
.header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 115%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    padding: 20px 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    border-top: 6px solid var(--theme);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}
.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    line-height: 38px;
    padding: 0px 32px 0px 0px;
    padding-left: 22px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--theme);
    right: 14px;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 12px;
    right: 243px;
    visibility: hidden;
    opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
    margin-right: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
    width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
    width: 800px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    right: -90px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
    text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
    padding: 5px 15px;
    color: var(--white) !important;
    min-width: 130px;
    width: 100%;
    text-align: center;
    justify-content: center;
    background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn:hover {
    background-color: var(--header) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    font-family: iranyekan;
}
.header-main .main-menu ul li:hover > a {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}
.header-main .header-right {
    gap: 30px;
}
@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}
.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 {
    position: absolute;
    z-index: 9999;
    width: 100%;
    right: 0;
}
@media (max-width: 575px) {
    .header-1 .logo img {
        width: 150px;
    }
}
@media (max-width: 470px) {
    .header-1 .logo img {
        width: 50px;
    }
}
.header-1 .container {
    max-width: 1800px;
}
.header-1 .sidebar__toggle {
    cursor: pointer;
}
.header-1 .sidebar__toggle .header-bar {
    position: relative;
    width: 40px;
    height: 11px;
}
.header-1 .sidebar__toggle .header-bar span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: inline-block;
    transition: all 0.3s;
    right: 0;
    background: var(--header);
    overflow: hidden;
}
.header-1 .sidebar__toggle .header-bar span:first-child {
    top: 0;
    background: var(--white);
    right: 0;
    width: 40px;
}
.header-1 .sidebar__toggle .header-bar span:last-child {
    bottom: 0;
    background: var(--white);
    width: 40px;
}
.header-1 .sidebar__toggle .header-bar.active span:first-child {
    transform: rotate(45deg) translate(3px, 9px);
}
.header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
    opacity: 0;
}
.header-1 .sidebar__toggle .header-bar.active span:last-child {
    transform: rotate(-45deg) translate(3px, -9px);
}
.header-1 .sidebar__toggle .header-bar:hover {
    cursor: pointer;
}
.header-1.header-3 .container {
    max-width: 1720px;
}
@media (max-width: 575px) {
    .header-1.header-3 .logo img {
        width: 150px;
    }
}
@media (max-width: 470px) {
    .header-1.header-3 .logo img {
        width: 130px;
    }
}
.header-1.header-3 .mega-menu-wrapper {
    background-color: var(--white);
    padding: 0 24px;
}
.header-1.header-3 .header-main .main-menu ul li a {
    color: var(--header);
}
.header-1.header-3 .header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.header-1.header-3 .sidebar__toggle .header-bar span {
    background: var(--header);
}
.header-1.header-3 .sidebar__toggle .header-bar span:first-child {
    background: var(--header);
}
.header-1.header-3 .sidebar__toggle .header-bar span:last-child {
    background: var(--header);
}

.header-2 {
    background-color: #030523;
}
.header-2 .container {
    max-width: 1610px;
}
@media (max-width: 575px) {
    .header-2 .logo img {
        width: 150px;
    }
}
@media (max-width: 470px) {
    .header-2 .logo img {
        width: 130px;
    }
}
.header-2 .header-btn {
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 1199px) {
    .header-2 .header-btn {
        display: none;
    }
}
.header-2 .header-btn .theme-btn {
    border: 1px solid transparent;
}
.header-2 .header-btn .theme-btn.border-btn {
    background-color: transparent;
    border: 1px solid var(--white);
}
.header-2 .header-btn .theme-btn.border-btn::before {
    background-color: var(--theme);
}
.header-2 .header-btn .theme-btn.border-btn:hover {
    border: 1px solid var(--theme);
}
.header-2 .sidebar__toggle {
    cursor: pointer;
}
.header-2 .sidebar__toggle .header-bar {
    position: relative;
    width: 40px;
    height: 11px;
}
.header-2 .sidebar__toggle .header-bar span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: inline-block;
    transition: all 0.3s;
    right: 0;
    background: var(--header);
    overflow: hidden;
}
.header-2 .sidebar__toggle .header-bar span:first-child {
    top: 0;
    background: var(--white);
    right: 0;
    width: 40px;
}
.header-2 .sidebar__toggle .header-bar span:last-child {
    bottom: 0;
    background: var(--white);
    width: 40px;
}
.header-2 .sidebar__toggle .header-bar.active span:first-child {
    transform: rotate(45deg) translate(3px, 9px);
}
.header-2 .sidebar__toggle .header-bar.active span:nth-child(2) {
    opacity: 0;
}
.header-2 .sidebar__toggle .header-bar.active span:last-child {
    transform: rotate(-45deg) translate(3px, -9px);
}
.header-2 .sidebar__toggle .header-bar:hover {
    cursor: pointer;
}

.header-top-section {
    position: relative;
    z-index: 999;
    padding: 12px 0;
}
@media (max-width: 991px) {
    .header-top-section {
        display: none;
    }
}
.header-top-section .container {
    max-width: 1610px;
}
.header-top-section .header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-top-section .header-top-wrapper p {
    font-size: 16px;
    font-weight: 700;
}
.header-top-section .header-top-wrapper p a {
    color: var(--theme);
    text-decoration: underline;
}
.header-top-section .header-top-wrapper .form-clt {
    max-width: 125px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-top-section .header-top-wrapper .form-clt .form {
    max-width: 110px;
    width: 100%;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select {
    border: none;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    line-height: initial;
    height: initial;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select span {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select .list {
    width: 100%;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select::after {
    left: 0;
    width: 8px;
    height: 8px;
    top: 43%;
    border-bottom: 2px solid var(--text);
    border-left: 2px solid var(--text);
}
.header-top-section.header-section-2 {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(50px);
    z-index: 99999;
    position: relative;
}
.header-top-section.header-section-2 .container {
    max-width: 1720px;
}
.header-top-section.header-section-2 .header-top-wrapper p {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}
.header-top-section.header-section-2 .header-top-wrapper .top-left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-top-section.header-section-2 .header-top-wrapper .top-left .social-icon {
    gap: 12px;
}
.header-top-section.header-section-2 .header-top-wrapper .top-left .social-icon a {
    display: inline-block;
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text);
}
.header-top-section.header-section-2 .header-top-wrapper .top-left .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.header-top-section.header-section-2 .header-top-wrapper .top-right {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 365px;
    width: 100%;
}
.header-top-section.header-section-2 .header-top-wrapper .top-right p {
    font-weight: 700;
}
.header-top-section.header-section-2 .header-top-wrapper .top-right p b {
    font-weight: 700;
    color: var(--theme);
}
.header-top-section.header-section-2 .header-top-wrapper .top-right .form-clt .form .single-select span {
    color: var(--white);
}
.header-top-section.header-section-2 .header-top-wrapper .top-right .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
}

.header-top-section-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.9s;
    background-color: #060718;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-1 .header-main .main-menu ul li a {
    color: #ffffff;
}
.sticky.header-1 .header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.sticky.header-1 .sidebar__toggle .header-bar span {
    background: var(--header);
}
.sticky.header-1 .sidebar__toggle .header-bar span:first-child {
    background: #ffffff;
}
.sticky.header-1 .sidebar__toggle .header-bar span:last-child {
    background: #ffffff;
}
.sticky.header-2 {
    background-color: #030523;
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-right: 2px solid var(--theme);
    position: fixed;
    left: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(-200% + 80px));
    -moz-transform: translateX(calc(-200% + 80px));
    -ms-transform: translateX(calc(-200% + 80px));
    -o-transform: translateX(calc(-200% + 80px));
    transform: translateX(calc(-200% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content h4 {
    font-weight: 700;
}
.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
    margin-top: 16px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-left: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 20px 40px;
    text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: var(--bg);
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border-radius: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    left: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}
@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}
.gt-breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.gt-breadcrumb-wrapper.bg-before {
    position: relative;
}
.gt-breadcrumb-wrapper.bg-before::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    top: 66%;
    background-color: var(--white);
}
.gt-breadcrumb-wrapper .gt-page-heading {
    position: relative;
    padding: 260px 0 130px;
    z-index: 9;
}
@media (max-width: 1199px) {
    .gt-breadcrumb-wrapper .gt-page-heading {
        padding-top: 220px;
    }
}
@media (max-width: 991px) {
    .gt-breadcrumb-wrapper .gt-page-heading {
        padding-top: 180px;
    }
}
@media (max-width: 767px) {
    .gt-breadcrumb-wrapper .gt-page-heading {
        text-align: center;
        padding-top: 150px;
        padding-bottom: 120px;
    }
}
.gt-breadcrumb-wrapper .gt-page-heading h1 {
    color: var(--white);
    font-size: 72px;
    position: relative;
    text-transform: uppercase;
    z-index: 9;
    font-weight: 900;
    letter-spacing: 0.36px;
}
@media (max-width: 767px) {
    .gt-breadcrumb-wrapper .gt-page-heading h1 {
        font-size: 60px;
    }
}
@media (max-width: 575px) {
    .gt-breadcrumb-wrapper .gt-page-heading h1 {
        font-size: 50px;
    }
}
@media (max-width: 470px) {
    .gt-breadcrumb-wrapper .gt-page-heading h1 {
        font-size: 40px;
    }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
    display: inline-flex;
    margin-top: 20px;
    gap: 10px;
}
@media (max-width: 575px) {
    .gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
        margin-top: 15px;
    }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a {
    color: var(--white);
    transition: all 0.4s ease-in-out;
    opacity: 0.7;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a:hover {
    color: var(--theme);
    opacity: 1;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a i {
    color: var(--theme);
    margin-left: 5px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li i {
    color: var(--white);
}

.gt-error-items {
    text-align: center;
    position: relative;
}
.gt-error-items .gt-error-image {
    margin-bottom: 50px;
}
.gt-error-items .gt-error-image img {
    width: 100%;
    height: 100%;
}
.gt-error-items h2 {
    margin-bottom: 15px;
}
@media (max-width: 575px) {
    .gt-error-items h2 {
        font-size: 30px;
    }
}
.gt-error-items p {
    margin-bottom: 48px;
    max-width: 872px;
}
@media (max-width: 767px) {
    .gt-error-items p {
        margin-bottom: 30px;
    }
}
.gt-error-items .gt-theme-btn .gt-icon-btn {
    background-color: var(--header);
}
.gt-error-items .gt-theme-btn .gt-icon-btn::after {
    background-color: var(--theme);
}

/* 02.10 Helping */
.array-button-2 {
    gap: 16px;
    position: relative;
    z-index: 9;
    margin-top: 37px;
}
.array-button-2.style-3 .array-prev2 {
    transform: rotate(0deg);
}
.array-button-2.style-3 .array-prev2 i {
    transform: rotate(0deg);
}
.array-button-2.style-3 .array-prev2:hover i {
    color: var(--white);
}
.array-button-2.style-3 .array-next2 {
    transform: rotate(0deg);
}
.array-button-2.style-3 .array-next2 i {
    transform: rotate(0deg);
}
.array-button-2.style-3 .array-next2:hover i {
    color: var(--white);
}
@media (max-width: 1199px) {
    .array-button-2 {
        flex-wrap: wrap;
    }
}
.array-button-2 .array-prev2 {
    width: 55px;
    height: 55px;
    line-height: 50px;
    text-align: center;
    background-color: transparent;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
    .array-button-2 .array-prev2 {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
.array-button-2 .array-prev2 i {
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}
.array-button-2 .array-prev2:hover {
    background-color: var(--theme);
    color: var(--header);
    border: 1px solid var(--theme);
}
.array-button-2 .array-prev2:hover svg path {
    fill: var(--white);
}
.array-button-2 .array-next2 {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background-color: transparent;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
    .array-button-2 .array-next2 {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
.array-button-2 .array-next2 i {
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}
.array-button-2 .array-next2:hover {
    background-color: var(--theme);
    color: var(--header);
    border: 1px solid var(--theme);
}
.array-button-2 .array-next2:hover svg path {
    fill: var(--white);
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.sticky-style {
    position: sticky !important;
    top: 100px;
}

.gt-slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.gt-brand-slide-element {
    width: auto;
    display: inline-block;
}

.p-relative {
    position: relative;
}

.ripple {
    position: relative;
}
.ripple::before, .ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(254, 89, 0, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}
.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
}
.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
}

.page-nav-wrap {
    margin-top: 60px;
}
.page-nav-wrap ul li {
    display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
    background-color: var(--theme);
    color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 0;
    background: #F4F4F4;
    color: var(--header);
    font-weight: 900;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
    border-radius: 0;
    font-family: iranyekan;
}
.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--white);
}
@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}
.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
    color: var(--white);
}

/* 02.11 Hero */
.hero-1 {
    padding: 100px 0 0;
    padding-left: 100px;
    position: relative;
    overflow: hidden;
}
.hero-1 .tilt_scale {
    transition: transform 0.2s ease;
    display: inline-block;
}
@media (max-width: 1600px) {
    .hero-1 {
        padding-left: 280px;
    }
}
@media (max-width: 1399px) {
    .hero-1 {
        padding-left: 0;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .hero-1 {
        padding-top: 180px;
        padding-bottom: 0;
    }
}
@media (max-width: 767px) {
    .hero-1 {
        padding-top: 150px;
    }
}
@media (max-width: 575px) {
    .hero-1 {
        padding-top: 130px;
    }
}
.hero-1 .right-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}
@media (max-width: 1199px) {
    .hero-1 .right-shape {
        display: none;
    }
}
.hero-1 .container {
    max-width: 1720px;
}
@media (max-width: 991px) {
    .hero-1 .hero-content {
        text-align: center;
    }
}
.hero-1 .hero-content h6 {
    color: var(--theme);
    font-size: 20px;
    font-weight: 700;
    font-family: VazirmatnBlack;
    margin-bottom: 20px;
}
@media (max-width: 470px) {
    .hero-1 .hero-content h6 {
        font-size: 16px;
    }
}
.hero-1 .hero-content h1 {
    color: var(--white);
    letter-spacing: -1px;
}
@media (max-width: 1600px) {
    .hero-1 .hero-content h1 {
        font-size: 75px;
    }
}
@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        font-size: 62px;
    }
}
@media (max-width: 991px) {
    .hero-1 .hero-content h1 {
        font-size: 68px;
    }
}
@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 55px;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 48px;
    }
}
@media (max-width: 470px) {
    .hero-1 .hero-content h1 {
        font-size: 42px;
    }
}
.hero-1 .hero-content h1 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--theme);
    font-family: iranyekan;
    color: transparent;
}
.hero-1 .hero-content p {
    color: var(--white);
    line-height: 150%;
    margin-top: 24px;
    max-width: 785px;
}
.hero-1 .hero-content .hero-btn {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 991px) {
    .hero-1 .hero-content .hero-btn {
        flex-wrap: wrap;
        margin-top: 30px;
        justify-content: center;
    }
}
.hero-1 .hero-image {
    position: relative;
    z-index: 9;
}
@media (max-width: 1399px) {
    .hero-1 .hero-image img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 767px) {
    .hero-1 .hero-image {
        text-align: center;
    }
}
.hero-1 .hero-image .hero-image-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
@media (max-width: 1399px) {
    .hero-1 .hero-image .hero-image-bg {
        display: none;
    }
}

.hero-2 {
    padding: 190px 0 280px;
    position: relative;
    z-index: 9;
}
@media (max-width: 991px) {
    .hero-2 {
        padding: 150px 0 150px;
    }
}
@media (max-width: 767px) {
    .hero-2 {
        padding: 140px 0 140px;
    }
}
@media (max-width: 575px) {
    .hero-2 {
        padding: 100px 0 130px;
    }
}
.hero-2 .vec-shape1 {
    position: absolute;
    top: 0;
    right: 35%;
    z-index: -1;
}
@media (max-width: 1199px) {
    .hero-2 .vec-shape1 {
        display: none;
    }
}
.hero-2 .vec-shape2 {
    position: absolute;
    left: 0;
    top: 20%;
    z-index: -1;
}
@media (max-width: 1199px) {
    .hero-2 .vec-shape2 {
        display: none;
    }
}
.hero-2::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(251deg, var(--Text-Primary, #030523) 7.32%, rgba(3, 5, 35, 0.48) 80.97%);
    z-index: -1;
}
.hero-2 .stoke-title {
    text-align: center;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: var(--white);
    font-size: 200px;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: transparent;
    opacity: 0.16;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
@media (max-width: 1199px) {
    .hero-2 .stoke-title {
        display: none;
    }
}
.hero-2 .container {
    max-width: 1719px;
}
@media (max-width: 991px) {
    .hero-2 .hero-content {
        margin: 0 auto;
        text-align: center;
    }
}
.hero-2 .hero-content h6 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    font-family: iranyekan;
    margin-bottom: 15px;
}
.hero-2 .hero-content h1 {
    color: var(--white);
    letter-spacing: -1px;
}
@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        line-height: 140%;
    }
}
.hero-2 .hero-content h1 span {
    color: var(--theme);
}
.hero-2 .hero-content p {
    color: var(--white);
    line-height: 150%;
    margin-top: 24px;
    max-width: 785px;
}
@media (max-width: 991px) {
    .hero-2 .hero-content p {
        margin: 30px auto 0;
    }
}
@media (max-width: 470px) {
    .hero-2 .hero-content p {
        font-size: 15px;
        line-height: 180%;
    }
}
.hero-2 .hero-content .hero-btn {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 1199px) {
    .hero-2 .hero-content .hero-btn {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media (max-width: 991px) {
    .hero-2 .hero-content .hero-btn {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .hero-2 .hero-content .hero-btn {
        margin-top: 30px;
    }
}

.hero-3 {
    padding: 280px 0 270px;
    position: relative;
}
@media (max-width: 1199px) {
    .hero-3 {
        padding: 230px 0 150px;
    }
}
@media (max-width: 767px) {
    .hero-3 {
        padding: 160px 0 160px;
    }
}
@media (max-width: 575px) {
    .hero-3 {
        padding: 140px 0 140px;
    }
}
.hero-3 .left-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
@media (max-width: 1199px) {
    .hero-3 .left-shape {
        display: none;
    }
}
.hero-3 .left-shape img {
    height: 100%;
}
.hero-3 .stoke-title2 {
    color: rgba(255, 255, 255, 0.08);
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    position: absolute;
    top: 22%;
    left: 0;
    bottom: 0;
    z-index: 22;
}
@media (max-width: 1199px) {
    .hero-3 .stoke-title2 {
        display: none;
    }
}
.hero-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.24);
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    color: transparent;
    display: block;
}
.hero-3 .container {
    max-width: 1665px;
}
.hero-3 .hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
}
.hero-3 .hero-bg::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(251deg, var(--Text-Primary, rgba(3, 5, 35, 0.72)) 7.32%, rgba(3, 5, 35, 0.35) 80.97%);
}
.hero-3 .hero-content {
    position: relative;
    z-index: 3;
}
.hero-3 .hero-content h6 {
    color: var(--white);
    font-family: iranyekan;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, rgba(3, 5, 35, 0) 0%, var(--theme) 100%);
    border-bottom: 2px solid transparent;
    border-image-slice: 2;
    display: inline-block;
    padding-bottom: 5px;
}
@media (max-width: 1199px) {
    .hero-3 .hero-content h6 {
        border-bottom: none;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-content h6 {
        font-size: 15px;
    }
}
.hero-3 .hero-content h1 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 108px;
}
@media (max-width: 1399px) {
    .hero-3 .hero-content h1 {
        font-size: 85px;
    }
}
@media (max-width: 1199px) {
    .hero-3 .hero-content h1 {
        font-size: 72px;
        line-height: 140%;
    }
}
@media (max-width: 991px) {
    .hero-3 .hero-content h1 {
        font-size: 70px;
    }
}
@media (max-width: 767px) {
    .hero-3 .hero-content h1 {
        font-size: 55px;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-content h1 {
        font-size: 40px;
    }
}
@media (max-width: 470px) {
    .hero-3 .hero-content h1 {
        font-size: 35px;
    }
}
.hero-3 .hero-content p {
    color: var(--white);
    opacity: 0.88;
    max-width: 745px;
    margin-top: 30px;
}
@media (max-width: 1199px) {
    .hero-3 .hero-content p {
        margin-top: 10px;
    }
}
.hero-3 .hero-content .hero-btn {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 1199px) {
    .hero-3 .hero-content .hero-btn {
        flex-wrap: wrap;
        margin-top: 30px;
        flex-wrap: wrap;
    }
}

.hero-section-3 {
    position: relative;
}
.hero-section-3 .swiper-slide.swiper-slide-active .hero-bg {
    -webkit-transform: scale(1.19);
    -moz-transform: scale(1.19);
    transform: scale(1.19);
}
.hero-section-3 .gt-product-dot {
    border: 1px solid rgba(199, 201, 206, 0.24);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(50px);
    padding: 20px;
    position: absolute;
    bottom: 180px;
    left: 100px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 375px;
    right: unset !important;
}
@media (max-width: 1199px) {
    .hero-section-3 .gt-product-dot {
        display: none;
    }
}
.hero-section-3 .gt-product-dot .dot-content img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid transparent;
}
.hero-section-3 .gt-product-dot .swiper-pagination-bullet {
    cursor: pointer;
    width: 100px;
    height: 100px;
    opacity: 1;
    border: 1px solid transparent;
    margin: 0;
    padding: 0;
}
.hero-section-3 .gt-product-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid var(--theme);
}
.hero-section-3 .gt-product-dot .swiper-pagination-bullet.swiper-pagination-bullet-active img {
    border: 1px solid var(--theme);
}

/* 02.12 MeanMenu */
.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #E5E5E5 !important;
    border: none;
    font-family: iranyekan;
}
.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
    display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
    display: inline-block;
    font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

/* 02.13 News */
.news-thumb1 {
    margin-top: 30px;
    position: relative;
}
@media (max-width: 991px) {
    .news-thumb1 {
        height: 600px;
    }
}
.news-thumb1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-thumb1 .video-box {
    position: absolute;
    top: 32px;
    left: 32px;
    padding: 8px 8px 8px 18px;
    background-color: #FFEEE7;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #030523;
    border-radius: 100px;
    line-height: 1;
}
.news-thumb1 .video-box i {
    font-size: 36px;
    color: var(--theme);
}
.news-thumb1 .news-content {
    position: absolute;
    right: 32px;
    bottom: 32px;
    left: 32px;
}
.news-thumb1 .news-content span {
    display: inline-block;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 100px;
}
.news-thumb1 .news-content ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.news-thumb1 .news-content ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}
.news-thumb1 .news-content h3 a {
    color: var(--white);
}
.news-thumb1 .news-content h3 a:hover {
    color: var(--theme);
}

.news-box-items {
    margin-top: 30px;
    margin-bottom: 15px;
    background-color: #F5F6F6;
}
.news-box-items .thumb {
    position: relative;
}
.news-box-items .thumb img {
    width: 100%;
    height: 225px;
}
.news-box-items .thumb .video-box {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 8px 8px 18px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #020202;
    border-radius: 30px;
    line-height: 1;
}
.news-box-items .thumb .video-box i {
    font-size: 27px;
    color: var(--theme);
}
.news-box-items .content {
    padding: 40px 30px;
    padding-top: 0;
    margin-top: -18px;
    position: relative;
    z-index: 9;
}
.news-box-items .content span {
    background-color: var(--theme);
    color: var(--white);
    display: inline-block;
    padding: 4px 20px;
    border-radius: 100px;
}
.news-box-items .content ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.news-box-items .content ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
}
@media (max-width: 1399px) {
    .news-box-items .content h3 {
        font-size: 20px;
    }
}
@media (max-width: 1199px) {
    .news-box-items .content h3 {
        font-size: 22px;
    }
}
.news-box-items .content h3 a:hover {
    color: var(--theme);
}

.club-blog-items {
    margin-top: 30px;
}
.club-blog-items .thumb img {
    width: 100%;
    height: 220px;
}
.club-blog-items .content {
    padding: 24px;
    background-color: var(--white);
    margin-right: 24px;
    margin-left: 24px;
    margin-top: -61px;
    position: relative;
    z-index: 99;
}
@media (max-width: 1399px) {
    .club-blog-items .content {
        margin-right: 20px;
        margin-right: 20px;
        padding: 20px;
    }
}
.club-blog-items .content ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
@media (max-width: 1399px) {
    .club-blog-items .content ul {
        flex-wrap: wrap;
        gap: 12px;
    }
}
.club-blog-items .content ul li {
    color: var(--text);
}
.club-blog-items .content ul li span {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}
.club-blog-items .content ul li span i {
    margin-left: 8px;
}
.club-blog-items .content ul li span b {
    color: var(--theme);
}
.club-blog-items .content h3 {
    margin-bottom: 22px;
}
@media (max-width: 1399px) {
    .club-blog-items .content h3 {
        font-size: 21px;
    }
}
@media (max-width: 1199px) {
    .club-blog-items .content h3 {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .club-blog-items .content h3 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .club-blog-items .content h3 {
        font-size: 18px;
    }
}
.club-blog-items .content h3 a:hover {
    color: var(--theme);
}

.club-table-score .scoreboard {
    border: 1px solid rgba(199, 201, 206, 0.16);
    background: var(--white);
    padding: 25px 40px;
}
.club-table-score .scoreboard .match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.club-table-score .scoreboard .match .team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text);
    justify-content: end;
    flex-basis: 25%;
}
.club-table-score .scoreboard .match .team img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.club-table-score .scoreboard .match .score {
    border: 1px solid rgba(199, 201, 206, 0.24);
    padding: 8px 18px;
    font-size: 22px;
    font-weight: bold;
    color: #111;
    background-color: red;
}

.news-box-items-2 {
    margin-top: 30px;
}
.news-box-items-2 .thumb {
    position: relative;
}
.news-box-items-2 .thumb .post-box {
    padding: 12px 16px;
    background-color: var(--theme);
    border-radius: 100px;
    color: var(--white);
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: 30px;
    right: 30px;
}
.news-box-items-2 .thumb img {
    width: 100%;
    height: 100%;
}
.news-box-items-2 .news-content {
    margin-top: 24px;
}
.news-box-items-2 .news-content ul {
    display: flex;
    align-items: center;
    gap: 80px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.16);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.news-box-items-2 .news-content ul li {
    color: var(--white);
}
.news-box-items-2 .news-content h3 {
    margin-bottom: 24px;
}
.news-box-items-2 .news-content h3 a {
    color: var(--white);
}
.news-box-items-2 .news-content h3 a:hover {
    color: var(--theme);
}

.news-table-right-items {
    background-color: var(--white);
    padding: 32px;
}
.news-table-right-items h3 {
    font-size: 32px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.16);
    padding-bottom: 24px;
    margin-bottom: 20px;
}
.news-table-right-items table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border-radius: 0;
}
@media (max-width: 1399px) {
    .news-table-right-items table {
        width: 700px;
    }
}
.news-table-right-items table thead th {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--header);
    text-align: center;
    font-weight: 700;
    padding-bottom: 15px;
}
.news-table-right-items table tbody tr {
    border: 1px solid #eee;
}
.news-table-right-items table tbody td {
    padding: 15px 9px;
    font-weight: 600;
    color: #0a1633;
}
@media (max-width: 1399px) {
    .news-table-right-items table {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .news-table-right-items table thead th {
        font-size: 16px;
        padding: 10px 6px;
    }
    .news-table-right-items table tbody td {
        padding: 10px 6px;
        font-size: 14px;
    }
}
.news-table-right-items .rank {
    width: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.news-table-right-items .team {
    display: flex;
    align-items: center;
    gap: 12px;
}
.news-table-right-items .team-name {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 16px;
    color: var(--header);
}
.news-table-right-items .stats {
    text-align: center;
}
.news-table-right-items .last-10 {
    text-align: center;
    font-weight: bold;
}
.news-table-right-items .badge {
    padding: 9px 14px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    color: #fff;
    background-color: #FE5900;
}

.news-list-items {
    background-color: var(--white);
    display: flex;
    align-items: center;
    margin-top: 30px;
}
@media (max-width: 1399px) {
    .news-list-items {
        display: block;
    }
}
.news-list-items .thumb {
    max-width: 256px;
    position: relative;
}
@media (max-width: 1399px) {
    .news-list-items .thumb {
        max-width: initial;
    }
}
.news-list-items .thumb img {
    width: 100%;
    height: 100%;
}
.news-list-items .content {
    padding: 0 30px;
}
@media (max-width: 1399px) {
    .news-list-items .content {
        padding: 25px;
    }
}
.news-list-items .content ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #C7C9CE;
    padding-bottom: 20px;
}
.news-list-items .content ul li {
    color: var(--text);
}
.news-list-items .content ul li span {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}
.news-list-items .content ul li span i {
    margin-left: 8px;
}
.news-list-items .content ul li span b {
    color: var(--theme);
}
.news-list-items .content h3 {
    margin-bottom: 15px;
}
.news-list-items .content h3 a:hover {
    color: var(--theme);
}

.news-section-2 {
    position: relative;
    z-index: 9;
}
.news-section-2 .vec-dot {
    position: absolute;
    top: -40%;
    left: 0;
    z-index: -1;
}
.news-section-2 .vec-circle {
    position: absolute;
    left: 0;
    top: 30%;
    z-index: -1;
}

.hottest-box-items {
    margin-top: 30px;
}
.hottest-box-items .hottest-thumb {
    position: relative;
}
.hottest-box-items .hottest-thumb img {
    width: 100%;
    height: 100%;
}
.hottest-box-items .hottest-thumb .video-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hottest-box-items .hottest-thumb .post-box {
    position: absolute;
    display: inline-block;
    font-weight: 700;
    color: var(--header);
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--white);
    padding: 11px 19px;
    border-radius: 100px;
    line-height: 1;
}
.hottest-box-items .hottest-content {
    margin-top: 25px;
}
.hottest-box-items .hottest-content ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}
.hottest-box-items .hottest-content ul li {
    font-size: 16px;
    font-weight: 600;
}
.hottest-box-items .hottest-content ul li span {
    color: var(--theme);
}
.hottest-box-items .hottest-content h3 a:hover {
    color: var(--theme);
}

.hottest-hoop-wrap-content {
    background-color: #F5F6F6;
    padding: 48px;
}
@media (max-width: 1199px) {
    .hottest-hoop-wrap-content {
        padding: 35px;
    }
}
@media (max-width: 575px) {
    .hottest-hoop-wrap-content {
        padding: 30px;
    }
}
@media (max-width: 470px) {
    .hottest-hoop-wrap-content {
        padding: 25px;
    }
}
.hottest-hoop-wrap-content .post-tag {
    display: inline-block;
    padding: 9px 19px;
    background-color: var(--white);
    border-radius: 100px;
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.hottest-hoop-wrap-content ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
    margin-top: 25px;
}
.hottest-hoop-wrap-content ul li {
    font-size: 16px;
    font-weight: 600;
}
.hottest-hoop-wrap-content ul li span {
    color: var(--theme);
}
.hottest-hoop-wrap-content p {
    margin-top: 25px;
}
.hottest-hoop-wrap-content .theme-btn {
    margin-top: 40px;
}

.hottest-hoop-wrap-thumb {
    height: 510px;
    position: relative;
}
.hottest-hoop-wrap-thumb .video-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hottest-hoop-wrap-thumb .post-box {
    position: absolute;
    display: inline-block;
    font-weight: 700;
    color: var(--header);
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--white);
    padding: 11px 19px;
    border-radius: 100px;
    line-height: 1;
}
.hottest-hoop-wrap-thumb img {
    width: 100%;
    height: 100%;
}

.hottest-hoop-wrapper {
    background-color: #F5F6F6;
    margin-top: 50px;
}

.news-box-items-3 {
    margin-top: 30px;
}
.news-box-items-3 .thumb img {
    width: 100%;
    height: 100%;
}
.news-box-items-3 .content {
    background-color: var(--white);
    padding: 20px;
}
.news-box-items-3 .content ul {
    display: flex;
    gap: 30px;
}
@media (max-width: 1199px) {
    .news-box-items-3 .content ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.news-box-items-3 .content ul li span i {
    margin-left: 8px;
}
.news-box-items-3 .content h3 {
    margin-top: 10px;
}
.news-box-items-3 .content h3 a:hover {
    color: var(--theme);
}
.news-box-items-3 .content .link-btn {
    margin-top: 20px;
}
.news-box-items-3 .content .link-btn:hover {
    color: var(--header);
}

.news-content-3 {
    background-color: var(--white);
    padding: 31px 24px;
    margin-top: 30px;
}
.news-content-3 ul {
    display: flex;
    gap: 30px;
}
@media (max-width: 1199px) {
    .news-content-3 ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.news-content-3 ul li span i {
    margin-left: 8px;
}
.news-content-3 h3 {
    margin-top: 10px;
}
.news-content-3 h3 a:hover {
    color: var(--theme);
}
.news-content-3 .link-btn {
    margin-top: 20px;
}
.news-content-3 .link-btn:hover {
    color: var(--header);
}

.news-section-3 {
    position: relative;
}
.news-section-3 .stoke-title2 {
    color: #030523;
    font-family: iranyekan;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.03;
    position: absolute;
    top: 5%;
    right: 15%;
    left: 0;
}
@media (max-width: 1399px) {
    .news-section-3 .stoke-title2 {
        display: none;
    }
}
.news-section-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #030523;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

.ranking-secion-3 {
    position: relative;
}
.ranking-secion-3 .stoke-title2 {
    color: #fff;
    font-size: 156px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.04;
    writing-mode: vertical-rl;
    position: absolute;
    top: 70px;
    left: 20px;
    bottom: 0;
}
@media (max-width: 1399px) {
    .ranking-secion-3 .stoke-title2 {
        display: none;
    }
}
.ranking-secion-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    font-size: 156px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

.team-section-3 {
    position: relative;
}
.team-section-3 .stoke-title2 {
    color: #030523;
    font-family: iranyekan;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.03;
    position: absolute;
    top: 3%;
    right: 52%;
    transform: translateX(50%);
    left: 0;
}
@media (max-width: 1399px) {
    .team-section-3 .stoke-title2 {
        display: none;
    }
}
.team-section-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #030523;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

.highlights-match-section {
    position: relative;
}
.highlights-match-section .stoke-title2 {
    color: #030523;
    font-family: iranyekan;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.03;
    position: absolute;
    top: 2%;
    right: 15%;
    left: 0;
}
.highlights-match-section .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #030523;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
    margin-bottom: 30px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image {
    overflow: hidden;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
    width: 100%;
    height: 100%;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 15px;
}
@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list li i {
    margin-left: 10px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 900;
}
@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
        font-size: 25px;
    }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn {
    padding: 0 30px;
    border: 1px solid var(--theme);
    background: transparent;
    color: var(--theme);
    margin-top: 24px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn::before {
    background-color: var(--theme);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn:hover {
    color: var(--white);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.gt-news-details-wrapper .gt-details-image img {
    width: 100%;
    height: 100%;
}
.gt-news-details-wrapper .gt-news-details-content {
    margin-top: 24px;
}
.gt-news-details-wrapper .gt-news-details-content h3 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 900;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content h3 {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .gt-news-details-wrapper .gt-news-details-content h3 {
        font-size: 25px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list {
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item {
    margin-bottom: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
    font-weight: 800;
    font-size: 24px;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
        font-size: 20px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list {
    margin-top: 20px;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li {
    font-size: 16px;
    font-weight: 800;
    color: var(--header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li:not(:last-child) {
    margin-bottom: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li i {
    color: var(--theme);
    margin-left: 8px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber {
    padding: 30px 40px;
    border: 1.5px solid var(--theme);
    margin-top: 20px;
}
@media (max-width: 575px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-sideber {
        padding: 30px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber h6 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info .image {
    border-radius: 100%;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info h4 {
    font-size: 20px;
    font-weight: 700;
}
.gt-news-details-wrapper .gt-news-details-content .news-title {
    font-size: 22px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: iranyekan;
}
.gt-news-details-wrapper .gt-news-details-content .text {
    font-size: 24px;
    margin-top: 30px;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .text {
        font-size: 20px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap {
    border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
    padding: 30px 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud span {
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    color: var(--header);
    font-family: iranyekan;
    margin-left: 10px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
    display: ruby-text;
    padding: 14px 26px;
    line-height: 1;
    background: #F5F6F6;
    margin-left: 8px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
        padding: 10px 20px;
    }
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
        margin-bottom: 15px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a {
    font-size: 16px;
    color: var(--header);
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: var(--bg);
    border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:not(:last-child) {
    margin-left: 10px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:hover {
    color: var(--white);
    background-color: var(--theme);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area {
    margin-top: 40px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area h3 {
    font-size: 28px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
    border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}
@media (max-width: 575px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .head .con h5 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 22px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply {
    padding: 5px 18px;
    font-weight: 600;
    background-color: var(--theme);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply:hover {
    background-color: var(--header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap {
    background-color: var(--bg);
    padding: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap h3 {
    margin-bottom: 30px;
    border-bottom: 1.2px solid rgba(102, 102, 102, 0.24);
    padding-bottom: 24px;
    margin-bottom: 24px;
    font-size: 28px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt span {
    color: var(--header);
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--border);
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text);
    background-color: var(--white);
    border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input::placeholder, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea::placeholder {
    color: var(--text);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
    resize: none;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap button.theme-btn {
    background-color: var(--theme);
    color: var(--white);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap button.theme-btn::before {
    background-color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget {
    margin-bottom: 40px;
    background-color: #F5F6F6;
    padding: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
    width: 100%;
    position: relative;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
    background-color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 20px;
    width: 100%;
    border: none;
    color: var(--text);
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
    position: absolute;
    left: -2px;
    top: 0;
    width: 58px;
    border-radius: 8px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
    background-color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
    border-bottom: 1.5px solid rgba(129, 129, 129, 0.24);
    padding-bottom: 16px;
    margin-bottom: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
    font-weight: 800;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
    margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    padding: 18px 22px;
    line-height: 1;
    text-transform: uppercase;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
    color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
    transition: all 0.4s ease-in-out;
    color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
    margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
    font-weight: 400;
    color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
    background-color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
    color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i, .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
    color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1199px) {
    .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
        flex-wrap: wrap;
    }
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
    margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    font-family: iranyekan;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 a:hover {
    color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
    color: var(--text);
    font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
    display: inline-block;
    padding: 12px 18px;
    line-height: 1;
    font-weight: 600;
    background: var(--white);
    margin-left: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
    margin-left: 0;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

/* 02.14 Preloader */
.back-to-top {
    border-radius: 0 !important;
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 999;
    left: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top:hover {
    background-color: var(--header);
    color: var(--white);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.cursor-outer {
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme);
    background-color: var(--theme);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.34;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
    opacity: 0.14;
}

.cursor-outer.cursor-big {
    opacity: 0;
}

.mouseCursor {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

.mouseCursor.cursor-big {
    width: 20px;
    height: 20px;
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
}

.cursor-inner {
    -webkit-margin-start: -3px;
    margin-inline-start: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--theme);
    opacity: 1;
    -webkit-transition: all 0.24s ease-out 0s;
    transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
    color: var(--text);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.cursor-inner.cursor-big span {
    opacity: 1;
}

.cursor-inner.cursor-hover {
    -webkit-margin-start: -10px;
    margin-inline-start: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--theme);
    border: 1px solid #686363;
    opacity: 0;
}

/* 02.15 Section */
.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}
.section-title h3 {
    font-size: 32px;
}
.section-title.style-2 h2 span {
    color: var(--theme);
    -webkit-text-stroke-width: initial;
}
@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}
.section-title h6 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--theme);
    font-family: iranyekan;
    position: relative;
    margin-bottom: 15px;
}
.section-title h2 {
    text-transform: uppercase;
}
.section-title h2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--theme);
    letter-spacing: 0.5px;
    color: transparent;
}
.section-title h2 .text-weight-700 {
    font-weight: 700;
    color: var(--header);
    letter-spacing: initial;
    -webkit-text-stroke-width: initial;
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}
.section-title-area .section-title {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg);
}

.section-padding {
    padding: 54px 0;
}
@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

/* 02.16 Team */
.our-club-payer-item {
    margin-top: 30px;
}
.our-club-payer-item .player-image {
    position: relative;
}
.our-club-payer-item .player-image img {
    width: 100%;
    height: 100%;
}
.our-club-payer-item .player-image .number {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.24);
    top: 20px;
    left: 20px;
    position: absolute;
    background: transparent;
    color: transparent;
    transition: all 0.4s ease-in-out;
}
.our-club-payer-item .player-image .number.style-2 {
    -webkit-text-stroke-color: var(--white);
}
.our-club-payer-item .player-image .player-content {
    position: absolute;
    bottom: 45px;
    text-align: center;
    right: 40px;
    left: 40px;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .player-content {
        right: 30px;
        left: 30px;
    }
}
.our-club-payer-item .player-image .player-content h4 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .player-content h4 {
        font-size: 20px;
    }
}
.our-club-payer-item .player-image .player-content h4 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    background: #fe5900;
    padding: 6px 8px 6px 8px;
    border-radius: 32px;
    font-size: 17px;
}
.our-club-payer-item .player-image .player-content h4 a:hover {
    color: #fff;
    background-size: 100% 2px;
    background: #040523;
}
.our-club-payer-item .player-image .player-content p {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
.our-club-payer-item .player-image .content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: -23px;
    right: 30px;
    left: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    border-top: 1px solid rgba(199, 201, 206, 0.16);
    padding-top: 16px;
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .content-item {
        right: 20px;
        left: 20px;
    }
}
.our-club-payer-item .player-image .content-item .content {
    text-align: center;
}
.our-club-payer-item .player-image .content-item .content h6 {
    text-transform: uppercase;
    font-family: iranyekan;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .content-item .content h6 {
        font-size: 12px;
    }
}
@media (max-width: 1399px) {
    .our-club-payer-item .player-image .content-item .content h6 {
        font-size: 14px;
    }
}
.our-club-payer-item .player-image .content-item .content h5 {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .content-item .content h5 {
        font-size: 20px;
    }
}
.our-club-payer-item .player-image .content-item .content span {
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    display: inline-block;
}
.our-club-payer-item .player-image .content-item .content .title {
    color: var(--theme);
    font-size: 16px;
    font-weight: 700;
}
.our-club-payer-item:hover .player-image .player-content {
    margin-bottom: 100px;
}
.our-club-payer-item:hover .player-image .number {
    background: transparent;
    color: var(--white);
    -webkit-text-stroke-width: var(--white);
    -webkit-text-stroke-color: var(--white);
    opacity: 1;
}
.our-club-payer-item:hover .player-image .number.style-2 {
    -webkit-text-stroke-width: var(--white);
    -webkit-text-stroke-color: var(--white);
    color: var(--white);
    opacity: 1;
}
.our-club-payer-item:hover .player-image .content-item {
    opacity: 1;
    visibility: visible;
    bottom: 23px;
}

.team-images-items .themb {
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.team-images-items .themb::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(3, 5, 35, 0) 32.76%, var(--Text-Primary, #030523) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.team-images-items .themb img {
    width: 100%;
    height: 100%;
}
.team-images-items .themb .social-icon {
    display: grid;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 20px;
    right: -20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 9;
}
.team-images-items .themb .social-icon a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--header);
    font-size: 14px;
}
.team-images-items .themb .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.team-images-items .content {
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: -24px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}
.team-images-items .content img {
    width: initial;
    height: initial;
}
.team-images-items .content h3 a {
    color: var(--white);
}
.team-images-items .content h3 a:hover {
    color: var(--theme);
}
.team-images-items .content span {
    color: var(--white);
}
.team-images-items .content .last-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.team-images-items .content .last-name p {
    color: rgba(255, 255, 255, 0.7);
}
.team-images-items .content .last-name .flag-name {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(44px);
    padding: 8px;
    color: var(--white);
}
.team-images-items .content .last-name .flag-name img {
    margin-left: 8px;
}
.team-images-items:hover .themb::before {
    opacity: 1;
    visibility: visible;
}
.team-images-items:hover .themb .social-icon {
    opacity: 1;
    visibility: visible;
    right: 20px;
}
.team-images-items:hover .themb .content {
    bottom: 24px;
    opacity: 1;
    visibility: visible;
}

.team-content-box {
    margin-right: 25px;
}
@media (max-width: 1399px) {
    .team-content-box {
        margin-right: 0;
    }
}
.team-content-box .team-text {
    margin-top: 25px;
    margin-bottom: 50px;
    opacity: 0.8;
}
.team-content-box .theme-btn::before {
    background-color: var(--white);
}
.team-content-box .theme-btn:hover {
    color: var(--header);
}

.team-details-wrapper {
    margin-bottom: 100px;
}
.team-details-wrapper .team-details-image {
    position: relative;
}
.team-details-wrapper .team-details-image .number {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.24);
    top: 20px;
    left: 20px;
    position: absolute;
    background: transparent;
    color: transparent;
    transition: all 0.4s ease-in-out;
}
.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
}
.team-details-wrapper .team-details-content {
    margin-right: 40px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content {
        margin-right: 0;
    }
}
.team-details-wrapper .team-details-content .top-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(199, 201, 206, 0.32);
    padding-top: 24px;
    margin-top: 24px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .top-details {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.team-details-wrapper .team-details-content .top-details .left-details {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .top-details .left-details {
        flex-wrap: wrap;
    }
}
.team-details-wrapper .team-details-content .top-details .left-details p {
    font-weight: 700;
}
.team-details-wrapper .team-details-content .top-details .left-details span {
    color: var(--header);
    font-size: 18px;
    font-weight: 700;
}
.team-details-wrapper .team-details-content .top-details .left-details span img {
    margin-right: 6px;
}
.team-details-wrapper .team-details-content .top-details .right-details {
    display: flex;
    align-items: center;
}
.team-details-wrapper .team-details-content .top-details .right-details p {
    font-weight: 700;
    margin-left: 12px;
}
.team-details-wrapper .team-details-content .top-details .right-details span {
    color: var(--header);
    font-size: 18px;
    font-weight: 700;
}
.team-details-wrapper .team-details-content ul {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 20px;
    margin-bottom: 30px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.team-details-wrapper .team-details-content ul li {
    font-size: 16px;
    font-weight: 700;
}
.team-details-wrapper .team-details-content ul li b {
    color: var(--header);
}
.team-details-wrapper .team-details-content .social-icon {
    margin-top: 48px;
    gap: 16px;
}
.team-details-wrapper .team-details-content .social-icon span {
    font-weight: 700;
    color: var(--header);
    display: inline-block;
    margin-left: 12px;
}
.team-details-wrapper .team-details-content .social-icon a {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bg);
}
.team-details-wrapper .team-details-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.trophy-box-item {
    text-align: center;
}
.trophy-box-item .content {
    margin-top: 20px;
}
.trophy-box-item .content span {
    color: var(--theme);
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
}

.gallery-thumb-inner {
    margin-top: 30px;
    position: relative;
}
.gallery-thumb-inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    top: 0;
    bottom: 0px;
    left: 0;
    background: rgba(29, 29, 29, 0.6);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    width: 100%;
    height: 100%;
    z-index: 9;
}
.gallery-thumb-inner .gt-icon {
    display: inline-block;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}
.gallery-thumb-inner img {
    width: 100%;
    height: 100%;
}
.gallery-thumb-inner:hover .gt-icon {
    top: 50%;
    opacity: 1;
    visibility: visible;
}
.gallery-thumb-inner:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.gallery-section .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}
.gallery-section .nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--bg);
    color: var(--header);
    text-align: center;
    padding: 16px 28px;
    line-height: 1;
}
.gallery-section .nav .nav-item .nav-link i {
    margin-right: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.gallery-section .nav .nav-item .nav-link.active {
    background-color: var(--theme);
    color: var(--white);
}
.gallery-section .nav .nav-item .nav-link.active i {
    opacity: 1;
    visibility: visible;
}

/* 02.17 Testimonial */
.testimonial-box-slider {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(90px);
    padding: 64px 48px;
}
@media (max-width: 1199px) {
    .testimonial-box-slider {
        padding: 44px 35px;
    }
}
@media (max-width: 575px) {
    .testimonial-box-slider {
        padding: 40px 30px;
    }
}
.testimonial-box-slider .quote-icon {
    margin-bottom: 25px;
}
.testimonial-box-slider p {
    color: #ABABAB;
    font-size: 20px;
    /* font-style: italic; */
    font-weight: 900;
    line-height: 200%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
@media (max-width: 1399px) {
    .testimonial-box-slider p {
        font-size: 21px;
    }
}
@media (max-width: 991px) {
    .testimonial-box-slider p {
        font-size: 19px;
    }
}
@media (max-width: 575px) {
    .testimonial-box-slider p {
        font-size: 16px;
    }
}
.testimonial-box-slider .client-info-items {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(66px);
    padding: 27px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1399px) {
    .testimonial-box-slider .client-info-items {
        background-color: #0B0E13;
    }
}
@media (max-width: 1199px) {
    .testimonial-box-slider .client-info-items {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
        margin-top: 20px;
    }
}
.testimonial-box-slider .client-info-items .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 80px;
}
@media (max-width: 1399px) {
    .testimonial-box-slider .client-info-items .client-info {
        padding-left: 0;
        border-left: none;
    }
}
.testimonial-box-slider .client-info-items .client-info img {
}
.testimonial-box-slider .client-info-items .client-info .content h4 {
    font-size: 24px;
    font-family: iranyekan;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFF;
}
@media (max-width: 575px) {
    .testimonial-box-slider .client-info-items .client-info .content h4 {
        font-size: 18px;
    }
}
.testimonial-box-slider .client-info-items .client-info .content span {
    color: #FFF;
    font-weight: 600;
    opacity: 0.7;
}
.testimonial-box-slider .client-info-items .star {
    color: var(--theme);
}

.testimonial-right-items {
    margin-right: 30px;
}
@media (max-width: 1399px) {
    .testimonial-right-items {
        margin-right: 0;
    }
    .testimonial-right-items .image img {
        width: 100%;
        height: 100%;
    }
}
.testimonial-right-items .section-title {
    margin-bottom: 45px;
}
.testimonial-right-items .testi-count {
    border: 1px solid rgba(199, 201, 206, 0.24);
    text-align: center;
    padding: 40px 20px;
}
.testimonial-right-items .array-button {
    gap: 16px;
    position: relative;
    z-index: 9;
    margin-top: 37px;
}
@media (max-width: 991px) {
    .testimonial-right-items .array-button {
        display: none !important;
    }
}
.testimonial-right-items .array-button .array-prev {
    width: 55px;
    height: 55px;
    line-height: 50px;
    text-align: center;
    background-color: transparent;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
    .testimonial-right-items .array-button .array-prev {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
.testimonial-right-items .array-button .array-prev i {
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}
.testimonial-right-items .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--header);
    border: 1px solid var(--theme);
}
.testimonial-right-items .array-button .array-prev:hover svg path {
    fill: var(--white);
}
.testimonial-right-items .array-button .array-next {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background-color: transparent;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
    .testimonial-right-items .array-button .array-next {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
.testimonial-right-items .array-button .array-next i {
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}
.testimonial-right-items .array-button .array-next:hover {
    background-color: var(--theme);
    color: var(--header);
    border: 1px solid var(--theme);
}
.testimonial-right-items .array-button .array-next:hover svg path {
    fill: var(--white);
}

.testimonial-wrapper {
    margin-top: 55px;
}

.testimonial-box-4 h3 {
    font-size: 30px;
    color: var(--white);
    line-height: 140%;
}
@media (max-width: 1399px) {
    .testimonial-box-4 h3 {
        font-size: 26px;
        line-height: 160%;
    }
}
@media (max-width: 1199px) {
    .testimonial-box-4 h3 {
        font-size: 24px;
    }
}
@media (max-width: 991px) {
    .testimonial-box-4 h3 {
        font-size: 21px;
    }
}
@media (max-width: 767px) {
    .testimonial-box-4 h3 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .testimonial-box-4 h3 {
        font-size: 18px;
    }
}
.testimonial-box-4 .client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.testimonial-box-4 .client-info h4 {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
@media (max-width: 1399px) {
    .testimonial-box-4 .client-info h4 {
        font-size: 18px;
    }
}
.testimonial-box-4 .client-info p {
    color: var(--white);
    opacity: 0.7;
}

@media (max-width: 1399px) {
    .testimonial-section-4 {
        padding: 100px 0;
    }
}
@media (max-width: 1399px) {
    .testimonial-section-4 .testimonial-image img {
        width: 100%;
        height: 100%;
    }
}/*# sourceMappingURL=main.css.map */
.slick-slider,.owl-carousel{direction:ltr!important;}
body,h1,h2,h3,h4,h5,a,p{font-family: VazirmatnBlack !important;}
.fa-chevron-right,.fa-chevron-left,.fa-arrow-left,.button-next,.button-prev,.match-start-wrapper-3 .match-start-box-3 .left-shape img,.array-next2,.array-prev2,.hero-3 .left-shape img{    transform: scale(-1);}
.owl-item{direction:rtl;}
@font-face {
    font-weight:300;
    font-family: 'iranyekan';
    src: url('fonts/iransansnormal/IRANSansIRANSans--normal.woff') format('woff'), /* Pretty Modern Browsers */
    url('fonts/iransansnormal/IRANSansIRANSans--normal.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('fonts/iransansnormal/IRANSansIRANSans--normal.svg') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'iranyekan';
    src: url('fonts/iranyekanweblight/iranyekanweblightfanum.woff') format('woff'), /* Pretty Modern Browsers */
    url('fonts/iranyekanweblight/iranyekanweblightfanum.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('fonts/iranyekanweblight/iranyekanweblightfanum.svg') format('svg'); /* Legacy iOS */
    font-weight:500;
}

@font-face {
    font-family: 'iranyekan';
    src: url('fonts/iranyekanwebboldfanum/iranyekanwebboldfanum.woff') format('woff'), /* Pretty Modern Browsers */
    url('fonts/iranyekanwebboldfanum/iranyekanwebboldfanum.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('fonts/iranyekanwebboldfanum/iranyekanwebboldfanum.svg') format('svg'); /* Legacy iOS */
    font-weight:700;
}
@font-face {
    font-family: 'iranyekan';
    src: url('fonts/iransansBolder/IRANSansIRANSans-Bolder-normal.woff') format('woff'), /* Pretty Modern Browsers */
    url('fonts/iransansBolder/IRANSansIRANSans-Bolder-normal.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('fonts/iransansBolder/IRANSansIRANSans-Bolder-normal.svg') format('svg'); /* Legacy iOS */
    font-weight:bold;
}
.slick-track{  direction:rtl; }

#laral-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, #151515 0%, #0b0b0b 55%, #000 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#laral-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.laral-loader-inner {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laral-loader-logo {
    width: 120px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.laral-loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top-color: #ffffff;
    border-right-color: #d6d6d6;
    animation: laralSpin 1.1s linear infinite;
}

.laral-loader-ring::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.14);
}

@keyframes laralSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

body.laral-loading {
    overflow: hidden;
}

@media (max-width: 576px) {
    .laral-loader-inner {
        width: 170px;
        height: 170px;
    }

    .laral-loader-logo {
        width: 95px;
    }
}

.dp-contact-section {
    padding: 72px 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(239, 120, 51, 0.11), transparent 32%),
        #f8fafc;
    direction: rtl;
}

.dp-contact-container {
    width: min(100%, 1200px);
    margin: 0 auto;
}

/* Heading */
.dp-contact-heading {
    max-width: 620px;
    margin: 0 auto 34px;
    text-align: center;
}

.dp-contact-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #e85d20;
    background-color: rgba(232, 93, 32, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
}

.dp-contact-heading__title {
    margin: 0;
    color: #172033;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.45;
}

.dp-contact-heading__description {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.9;
}

.dp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.dp-contact-card {
    position: relative;
    min-height: 285px;
    padding: 30px 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background-color: #ffffff;
    text-align: center;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.dp-contact-card::before {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(232, 93, 32, 0.06);
    content: "";
    transition: transform 0.45s ease;
}

/* Hover */
.dp-contact-card:hover {
    z-index: 1;
    border-color: rgba(232, 93, 32, 0.55);
    box-shadow: 0 18px 38px rgba(20, 30, 50, 0.13);
    transform: translateY(-7px);
}

.dp-contact-card:hover::before {
    transform: scale(1.3);
}

.dp-contact-card__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #f47a3d, #df4d18);
    box-shadow: 0 10px 20px rgba(232, 93, 32, 0.25);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.dp-contact-card__icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dp-contact-card:hover .dp-contact-card__icon {
    box-shadow: 8px 13px 24px rgba(232, 93, 32, 0.32);
    transform: translateX(9px) rotate(8deg);
}

.dp-contact-card__icon--email {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.dp-contact-card__icon--address {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.dp-contact-card__icon--phone {
    background: linear-gradient(135deg, #14b8a6, #059669);
}

.dp-contact-card__title {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 800;
}

.dp-contact-card__value {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 12px;
    color: #e85d20;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}

.dp-contact-card__value:hover {
    color: #bd3d10;
}

.dp-contact-card__value--ltr {
    direction: ltr;
    unicode-bidi: embed;
}

.dp-contact-card__detail {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 0.88rem;
    line-height: 2;
}

.dp-contact-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.dp-contact-reveal.dp-contact-reveal--active {
    opacity: 1;
    transform: translateY(0);
}

.dp-contact-card:nth-child(2) {
    transition-delay: 0.12s;
}

.dp-contact-card:nth-child(3) {
    transition-delay: 0.24s;
}

@media (min-width: 650px) {
    .dp-contact-section {
        padding: 88px 24px;
    }

    .dp-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (min-width: 992px) {
    .dp-contact-section {
        padding: 105px 30px;
    }

    .dp-contact-heading {
        margin-bottom: 48px;
    }

    .dp-contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

    .dp-contact-card {
        padding: 36px 28px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .dp-contact-card,
    .dp-contact-card__icon,
    .dp-contact-card::before,
    .dp-contact-reveal {
        transition: none !important;
    }

    .dp-contact-reveal {
        opacity: 1;
        transform: none;
    }
}

.lrl-support-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999999;
    direction: rtl;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.lrl-support-widget.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lrl-support-toggle {
    width: 68px;
    height: 68px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, #08d9c4, #00aeea);
    box-shadow:
        0 0 0 0 rgba(0, 210, 210, 0.45),
        0 12px 30px rgba(0, 210, 210, 0.28);
    animation: lrlSupportPulse 1.8s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lrl-support-toggle:hover {
    transform: scale(1.06);
}

.lrl-support-toggle i {
    transform: none !important;
    transition: none !important;
}

.lrl-support-widget.is-open .lrl-support-toggle i {
    transform: none !important;
}

@keyframes lrlSupportPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(0, 210, 210, 0.55),
            0 12px 30px rgba(0, 210, 210, 0.28);
        filter: brightness(1);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(0, 210, 210, 0.06),
            0 0 24px rgba(0, 210, 210, 0.75),
            0 14px 34px rgba(0, 210, 210, 0.35);
        filter: brightness(1.12);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(0, 210, 210, 0.45),
            0 12px 30px rgba(0, 210, 210, 0.28);
        filter: brightness(1);
    }
}

.lrl-support-options {
    position: absolute;
    right: 0;
    bottom: 82px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none;
}

.lrl-support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.85);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.35s ease;
}

.lrl-support-widget.is-open .lrl-support-options {
    pointer-events: auto;
}

.lrl-support-widget.is-open .lrl-support-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lrl-support-widget.is-open .lrl-support-item:nth-child(1) {
    transition-delay: 0.05s;
}

.lrl-support-widget.is-open .lrl-support-item:nth-child(2) {
    transition-delay: 0.12s;
}

.lrl-support-widget.is-open .lrl-support-item:nth-child(3) {
    transition-delay: 0.19s;
}

.lrl-support-label {
    order: 1;
    min-width: 145px;
    padding: 11px 18px;
    border-radius: 13px;
    background: #fff;
    color: #20202b;
    font-family: 'VazirmatnMedium', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    direction: ltr;
    flex-direction: row;
    justify-content: flex-start;
}

.lrl-support-icon {
    order: 1;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.lrl-support-item:hover .lrl-support-icon {
    transform: scale(1.08);
}

.lrl-support-item--instagram .lrl-support-icon {
    background: linear-gradient(
        135deg,
        #feda75 0%,
        #fa7e1e 25%,
        #d62976 55%,
        #962fbf 78%,
        #4f5bd5 100%
    );
}

.lrl-support-item--telegram .lrl-support-icon {
    background: #229ed9;
}

.lrl-support-item--phone .lrl-support-icon {
    background: linear-gradient(135deg, #38d66b, #16a637);
}

@media (max-width: 768px) {
    .lrl-support-widget {
        right: 12px;
        bottom: 14px;
    }

    .lrl-support-toggle {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .lrl-support-options {
        bottom: 70px;
        gap: 10px;
    }

    .lrl-support-label {
        order: 2;
        min-width: 120px;
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 10px;
    }

    .lrl-support-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 22px;
    }
}

.fbs-courses-section {
    width: min(1140px, calc(100% - 32px));
    margin: 70px auto;
    position: relative;
}

/* Header */
.fbs-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.fbs-section-title-box {
    text-align: right;
}

.fbs-section-title {
    margin: 0;
    color: #101010;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.8;
}

.fbs-title-underline {
    position: relative;
    display: inline-block;
}

.fbs-title-underline::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: var(--fbs-primary);
}

.fbs-all-courses-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    height: 46px;
    padding: 0 18px;
    border: 1.5px solid #d0d7de;
    border-radius: 10px;
    background: #ffffff;
    color: #424242;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--fbs-transition);
}

.fbs-all-courses-link:hover {
    border-color: var(--fbs-primary);
    color: var(--fbs-primary);
    transform: translateY(-2px);
}

.fbs-all-courses-arrow {
    font-size: 20px;
    line-height: 1;
}

/* Filters */
.fbs-filter-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
    direction: rtl;
}

.fbs-filter-button {
    min-width: 72px;
    padding: 10px 20px;
    border: 1px solid #d5dbe3;
    border-radius: 9px;
    background: var(--fbs-filter-bg);
    color: #334155;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.fbs-filter-button:hover {
    background: var(--fbs-filter-bg-hover);
    border-color: #94a3b8;
    color: #0f172a;
}

.fbs-filter-button.fbs-active {
    border-color: #fe5900;
    background: var(--fbs-primary);
    color: #ffffff;
    box-shadow: 0 5px 14px rgba(239, 60, 36, 0.22);
    background: #ff5900;
}

/* Slider */
.fbs-slider-wrapper {
    position: relative;
    padding: 4px 0;
}

.fbs-slider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 4px 2px 14px;
}

.fbs-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

/* Card */
.fbs-course-card {
    position: relative;
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
    overflow: hidden;
    border: 1.5px solid #dbdbdb;
    border-radius: 10px;
    background: var(--fbs-white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform var(--fbs-transition), box-shadow var(--fbs-transition), border-color var(--fbs-transition);
}

.fbs-course-card:hover {
    transform: translateY(-6px);
    border-color: #b3b3b3;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.fbs-course-image-wrapper {
    position: relative;
    height: 175px;
    overflow: hidden;
    background: #e2e8f0;
    border-bottom: 1px solid var(--fbs-border);
}

.fbs-course-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fbs-course-card:hover .fbs-course-image {
    transform: scale(1.08);
}

.fbs-course-discount {
    position: absolute;
    top: 16px;
    right: 0;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 5px 0 0 5px;
    background: var(--fbs-primary);
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}

.fbs-course-level {
    position: absolute;
    bottom: 9px;
    right: 9px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 4px;
    background: var(--fbs-secondary);
    color: #fff;
    font-size: 11px;
}

.fbs-course-content {
    padding: 13px 15px 16px;
}

.fbs-course-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    margin-bottom: 9px;
    color: #777;
    font-size: 12px;
    white-space: nowrap;
}

.fbs-course-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fbs-star {
    color: #f7bf12;
    font-size: 17px;
}

.fbs-course-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fbs-clock {
    font-size: 15px;
}

.fbs-course-title {
    min-height: 28px;
    margin: 0 0 5px;
    color: #171717;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.7;
}

.fbs-course-type {
    margin: 0 0 10px;
    color: #777;
    font-size: 13px;
}

.fbs-course-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 12px;
    white-space: nowrap;
}

.fbs-location-icon {
    color: #555;
    font-size: 17px;
}

/* Arrows */
.fbs-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%);
    transition: var(--fbs-transition);
}

.fbs-slider-arrow:hover {
    background: var(--fbs-primary);
    color: #fff;
    border-color: var(--fbs-primary);
}

.fbs-slider-arrow.fbs-arrow-next {
    right: -20px;
}

.fbs-slider-arrow.fbs-arrow-prev {
    left: -20px;
}

/* Scroll reveal */
.fbs-reveal {
    opacity: 0;
    transform: translateY(45px) scale(0.97);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.22, .61, .36, 1);
}

.fbs-reveal.fbs-is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fbs-course-card:nth-child(2) { transition-delay: 0.08s; }
.fbs-course-card:nth-child(3) { transition-delay: 0.16s; }
.fbs-course-card:nth-child(4) { transition-delay: 0.24s; }

/* Tablet */
@media (max-width: 1000px) {
    .fbs-course-card {
        flex-basis: calc((100% - 48px) / 3);
    }
}

/* Mobile */
@media (max-width: 700px) {
    .fbs-courses-section {
        width: min(100% - 24px, 520px);
        margin: 40px auto;
    }

    .fbs-section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 18px;
    }

    .fbs-section-title {
        font-size: 22px;
    }

    .fbs-all-courses-link {
        width: 100%;
        min-width: 0;
    }

    .fbs-filter-list {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .fbs-filter-button {
        flex: 0 0 auto;
        padding: 9px 17px;
        font-size: 13px;
    }

    .fbs-course-card {
        flex-basis: 100%;
    }

    .fbs-course-image-wrapper {
        height: 190px;
    }

    .fbs-slider-arrow {
        width: 37px;
        height: 37px;
        font-size: 21px;
    }

    .fbs-slider-arrow.fbs-arrow-next {
        right: -8px;
    }

    .fbs-slider-arrow.fbs-arrow-prev {
        left: -8px;
    }

    .fbs-slider-viewport {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fbs-slider-track,
    .fbs-reveal,
    .fbs-course-card,
    .fbs-course-image {
        transition: none !important;
    }
}


/* =========================
   Main Section
========================= */

.lrl-course-section {
    width: 100%;
    padding: 70px 20px 55px;
    overflow: hidden;
    background: #ffffff;
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
}

.lrl-course-container {
    width: min(100%, 1180px);
    margin: 0 auto;
}

/* =========================
   Heading
========================= */

.lrl-course-heading {
    margin: 0 auto 38px;
    text-align: center;
}

.lrl-course-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #fe5900;
    font-size: 15px;
    font-weight: 700;
    font-family: "VazirmatnBlack";
}

.lrl-course-title {
    margin: 0;
    color: #24325b;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.5;
    font-weight: 900;
}

.lrl-course-description {
    max-width: 720px;
    margin: 14px auto 0;
    color: #8990a3;
    font-size: 14px;
    line-height: 2;
}

/* =========================
   Cards Grid
========================= */

.lrl-course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.lrl-course-card {
    position: relative;
    min-width: 0;
    padding: 28px 30px 25px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(228, 230, 238, 0.8);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 12px 35px rgba(38, 48, 85, 0.06),
        0 3px 12px rgba(38, 48, 85, 0.03);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.lrl-course-card::before {
    position: absolute;
    content: "";
    top: -100px;
    left: 50%;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(254, 89, 0, 0.025);
    transform: translateX(-50%);
    pointer-events: none;
}

.lrl-course-card:hover {
    border-color: rgba(254, 89, 0, 0.18);
    transform: translateY(-8px);
    box-shadow:
        0 22px 45px rgba(38, 48, 85, 0.11),
        0 4px 15px rgba(254, 89, 0, 0.06);
}

/* =========================
   3D Image Area
========================= */

.lrl-course-image-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 145px;
    margin-bottom: 18px;
    isolation: isolate;
}

.lrl-course-image-glow {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 145px;
    height: 105px;
    border-radius: 50%;
    background:
        radial-gradient(
            ellipse,
            rgba(255, 191, 102, 0.48) 0%,
            rgba(255, 220, 164, 0.20) 42%,
            rgba(255, 255, 255, 0) 76%
        );
    filter: blur(8px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.lrl-course-card--right .lrl-course-image-glow {
    background:
        radial-gradient(
            ellipse,
            rgba(255, 187, 91, 0.52) 0%,
            rgba(255, 222, 160, 0.22) 45%,
            transparent 78%
        );
}

.lrl-course-card--center .lrl-course-image-glow {
    background:
        radial-gradient(
            ellipse,
            rgba(76, 222, 245, 0.43) 0%,
            rgba(153, 236, 255, 0.18) 45%,
            transparent 78%
        );
}

.lrl-course-card--left .lrl-course-image-glow {
    background:
        radial-gradient(
            ellipse,
            rgba(255, 221, 96, 0.50) 0%,
            rgba(255, 235, 175, 0.20) 45%,
            transparent 78%
        );
}

.lrl-course-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: lrlCourseFloat 4s ease-in-out infinite;
    user-select: none;
}

/* =========================
   Card Content
========================= */

.lrl-course-card-title {
    position: relative;
    z-index: 2;
    margin: 0 0 11px;
    color: #1e2d55;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 900;
}

.lrl-course-count {
    margin-bottom: 12px;
    color: #5b4383;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    font-family: 'VazirmatnBlack';
}

.lrl-course-card-text {
    max-width: 245px;
    min-height: 54px;
    margin: 0 auto;
    color: #4a4d56;
    font-size: 13px;
    line-height: 2;
}

.lrl-course-divider {
    width: 100%;
    height: 1px;
    margin: 20px 0 14px;
    border-top: 1px dashed #e2e4e9;
}

.lrl-course-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #718096;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.lrl-course-link:hover {
    gap: 15px;
    color: #fe5900;
}

.lrl-course-link i {
    font-size: 11px;
}

/* =========================
   Animations
========================= */

@keyframes lrlCourseFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.lrl-course-reveal {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.lrl-course-card--right {
    transform: translateX(80px);
}

.lrl-course-card--center {
    transform: translateY(65px);
}

.lrl-course-card--left {
    transform: translateX(-80px);
}

.lrl-course-reveal.lrl-course-is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.lrl-course-heading {
    opacity: 0;
    transform: translateY(-25px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.lrl-course-heading.lrl-course-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lrl-course-card--right {
    transition-delay: 0.05s;
}

.lrl-course-card--center {
    transition-delay: 0.2s;
}

.lrl-course-card--left {
    transition-delay: 0.35s;
}

/* =========================
   Tablet
========================= */

@media (max-width: 992px) {
    .lrl-course-section {
        padding: 58px 18px 45px;
    }

    .lrl-course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .lrl-course-card {
        padding: 25px 22px 23px;
    }

    .lrl-course-image-box {
        height: 135px;
    }

    .lrl-course-title {
        font-size: 30px;
    }

    .lrl-course-card-title {
        font-size: 18px;
    }

    .lrl-course-card-text {
        font-size: 12px;
    }

    .lrl-course-card--right,
    .lrl-course-card--center,
    .lrl-course-card--left {
        transform: translateY(45px);
    }

    .lrl-course-card--right.lrl-course-is-visible,
    .lrl-course-card--center.lrl-course-is-visible,
    .lrl-course-card--left.lrl-course-is-visible {
        transform: translateY(0);
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 600px) {
    .lrl-course-section {
        padding: 45px 12px 35px;
    }

    .lrl-course-heading {
        margin-bottom: 27px;
    }

    .lrl-course-eyebrow {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .lrl-course-title {
        font-size: 24px;
        line-height: 1.7;
    }

    .lrl-course-description {
        margin-top: 9px;
        font-size: 12px;
        line-height: 2;
    }

    .lrl-course-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lrl-course-card {
        width: 100%;
        padding: 24px 22px 22px;
        border-radius: 23px;
    }

    .lrl-course-image-box {
        height: 135px;
        margin-bottom: 14px;
    }

    .lrl-course-image {
        width: 105px;
        height: 105px;
    }

    .lrl-course-image-glow {
        width: 125px;
        height: 90px;
    }

    .lrl-course-card-title {
        font-size: 18px;
    }

    .lrl-course-count {
        font-size: 25px;
    }

    .lrl-course-card-text {
        max-width: 270px;
        font-size: 12px;
    }

    .lrl-course-divider {
        margin-top: 17px;
        margin-bottom: 13px;
    }

    .lrl-course-link {
        font-size: 12px;
    }

    .lrl-course-card--right,
    .lrl-course-card--center,
    .lrl-course-card--left {
        transform: translateY(45px);
    }

    .lrl-course-card--right.lrl-course-is-visible,
    .lrl-course-card--center.lrl-course-is-visible,
    .lrl-course-card--left.lrl-course-is-visible {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lrl-course-image,
    .lrl-course-reveal,
    .lrl-course-heading {
        animation: none;
        transition: none;
    }
}

/* ===============================
   ABOUMOSLEM COURSES
================================ */
.lrl-abu-courses-section {
    width: 100%;
    padding: 55px 20px 35px;
    overflow: hidden;
    background: #f3f8fc;
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
}

.lrl-abu-courses-container {
    width: min(100%, 1280px);
    margin: 0 auto;
}

.lrl-abu-courses-heading {
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}

.lrl-abu-courses-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #fe5900;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.lrl-abu-courses-title {
    margin: 0;
    color: #24325b;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.5;
    font-weight: 900;
    text-align: center;
}

.lrl-abu-courses-subtitle {
    margin: 8px 0 0;
    color: #8990a3;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

.lrl-abu-slider-wrapper {
    position: relative;
    padding: 0 16px;
}

.lrl-abu-slider {
    overflow: hidden;
    padding: 5px 0 15px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.lrl-abu-slider.lrl-abu-is-dragging {
    cursor: grabbing;
}

.lrl-abu-slider-track {
    display: flex;
    gap: 24px;
    direction: ltr;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.lrl-abu-course-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    overflow: hidden;
    padding: 15px;
    border: 1px solid #e1e8ed;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(31, 60, 83, 0.06);
    direction: rtl;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lrl-abu-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(31, 60, 83, 0.13);
}

.lrl-abu-course-image {
    position: relative;
    width: 100%;
    height: 215px;
    overflow: hidden;
    border-radius: 8px;
    background: #080808;
}

.lrl-abu-course-image::after {
    position: absolute;
    content: "";
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%,
        rgba(255, 32, 58, 0.12),
        transparent 62%);
}

.lrl-abu-course-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.lrl-abu-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 2px 0;
    color: #888;
    font-size: 12px;
}

.lrl-abu-rating {
    color: #f19a12;
    white-space: nowrap;
}

.lrl-abu-rating i {
    margin-left: 3px;
    font-size: 17px;
}

.lrl-abu-rating-label {
    white-space: nowrap;
    font-family: 'VazirmatnMedium';
}

.lrl-abu-course-card-title {
    min-height: 48px;
    margin: 15px 0 11px;
    color: #202020;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 900;
}

.lrl-abu-course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 37px;
    color: #777;
    font-size: 11px;
    margin-top: 10px;
}

.lrl-abu-course-meta b {
    margin-right: 4px;
    color: #333;
    font-weight: 700;
}

.lrl-abu-status {
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}

.lrl-abu-status--success {
    background: #13c58b;
    font-family: 'VazirmatnBlack';
}

.lrl-abu-status--pending {
    background: #f39100;
}

.lrl-abu-course-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 9px;
    padding: 13px 12px;
    border-radius: 6px;
    background: #f1f2f3;
}

.lrl-abu-course-info > div {
    position: relative;
    min-width: 0;
    padding-right: 24px;
    font-family: 'VazirmatnBlack';
}

.lrl-abu-course-info span,
.lrl-abu-course-info strong {
    display: block;
}

.lrl-abu-course-info span {
    margin-bottom: 4px;
    color: #888;
    font-size: 10px;
    font-family: 'VazirmatnBlack';
}

.lrl-abu-course-info strong {
    overflow: hidden;
    color: #222;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lrl-abu-course-info i {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #ffffff;
    font-size: 23px;
}

.lrl-abu-course-info > div:last-child i {
    color: #f19a12;
}

.lrl-abu-course-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
}

.lrl-abu-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 113px;
    min-height: 48px;
    padding: 0 15px;
    border-radius: 5px;
    color: #fff;
    background: #087ef5;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    font-family: 'VazirmatnBlack';
}

.lrl-abu-register-btn:hover {
    background: #0567d1;
    transform: translateY(-3px);
}

.lrl-abu-price {
    text-align: right;
}

.lrl-abu-price strong {
    display: block;
    color: #12b879;
    font-size: 23px;
    line-height: 1.2;
    font-family: 'VazirmatnBlack';
    font-weight: 900;
}

.lrl-abu-price span {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 11px;
}

.lrl-abu-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #fe5900;
    cursor: pointer;
    opacity: 0;
    box-shadow: 0 8px 20px rgba(254, 89, 0, 0.3);
    transform: translateY(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.lrl-abu-slider-wrapper:hover .lrl-abu-slider-arrow {
    opacity: 1;
}

.lrl-abu-slider-arrow:hover {
    background: #db4900;
    transform: translateY(-50%) scale(1.08);
}

.lrl-abu-slider-arrow--next {
    right: -5px;
}

.lrl-abu-slider-arrow--prev {
    left: -5px;
}

.lrl-abu-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 18px;
    margin-top: 5px;
}

.lrl-abu-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c9d0d5;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.lrl-abu-slider-dot.is-active {
    width: 20px;
    border-radius: 10px;
    background: #fe8b00;
}

.lrl-abu-reveal {
    opacity: 0;
    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.lrl-abu-reveal:nth-child(odd) {
    transform: translateX(70px);
}

.lrl-abu-reveal:nth-child(even) {
    transform: translateX(-70px);
}

.lrl-abu-reveal.lrl-abu-is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Tablet */
@media (max-width: 1050px) {
    .lrl-abu-courses-section {
        padding: 45px 16px 30px;
    }

    .lrl-abu-course-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .lrl-abu-slider-arrow {
        opacity: 1;
    }

    .lrl-abu-course-image {
        height: 205px;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .lrl-abu-courses-section {
        padding: 38px 10px 25px;
    }

    .lrl-abu-courses-heading {
        margin-bottom: 22px;
        text-align: center;
    }

    .lrl-abu-courses-eyebrow {
        font-size: 13px;
    }

    .lrl-abu-courses-title {
        font-size: 24px;
    }

    .lrl-abu-courses-subtitle {
        font-size: 12px;
    }

    .lrl-abu-slider-wrapper {
        padding: 0 4px;
    }

    .lrl-abu-slider-track {
        gap: 12px;
    }

    .lrl-abu-course-card {
        flex-basis: 100%;
        padding: 10px;
        border-radius: 15px;
    }

    .lrl-abu-course-image {
        height: 190px;
    }

    .lrl-abu-course-card-title {
        font-size: 16px;
    }

    .lrl-abu-course-info {
        padding: 12px 9px;
    }

    .lrl-abu-course-info strong {
        font-size: 11px;
    }

    .lrl-abu-register-btn {
        min-width: 100px;
        min-height: 44px;
        font-size: 14px;
    }

    .lrl-abu-price strong {
        font-size: 20px;
    }

    .lrl-abu-slider-arrow {
        width: 34px;
        height: 34px;
        opacity: 1;
        font-size: 12px;
    }

    .lrl-abu-slider-arrow--next {
        right: -2px;
    }

    .lrl-abu-slider-arrow--prev {
        left: -2px;
    }

    .lrl-abu-slider-dots {
        margin-top: 8px;
    }

    .lrl-abu-reveal:nth-child(odd),
    .lrl-abu-reveal:nth-child(even) {
        transform: translateY(35px);
    }

    .lrl-abu-reveal.lrl-abu-is-visible {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lrl-abu-slider-track,
    .lrl-abu-reveal,
    .lrl-abu-course-card,
    .lrl-abu-register-btn {
        transition: none;
    }
}


/* =========================================
   Status Modal
========================================= */

.status-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    direction: rtl;
    font-family: inherit;
}

.status-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 30, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: statusModalOverlayShow 0.25s ease forwards;
}

.status-modal__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 410px;
    padding: 44px 32px 30px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 24px;
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.3);
    animation: statusModalContentShow 0.35s ease forwards;
}

.status-modal__close {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    cursor: pointer;
    background: #f4f6f9;
    border: none;
    border-radius: 11px;
    transition: all 0.2s ease;
}

.status-modal__close:hover {
    background: #e7ebf0;
    transform: rotate(90deg);
}

.status-modal__close span {
    position: absolute;
    width: 17px;
    height: 2px;
    background-color: #64748b;
    border-radius: 20px;
}

.status-modal__close span:first-child {
    transform: rotate(45deg);
}

.status-modal__close span:last-child {
    transform: rotate(-45deg);
}

.status-modal__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin: 0 auto 21px;
    color: #ffffff;
    border-radius: 50%;
}

.status-modal__icon svg {
    width: 43px;
    height: 43px;
}

.status-modal--success .status-modal__icon {
    background: linear-gradient(135deg, #22c55e, #059669);
    box-shadow: 0 13px 28px rgba(5, 150, 105, 0.3);
}

.status-modal--success .status-modal__confirm {
    background: linear-gradient(135deg, #22c55e, #059669);
    box-shadow: 0 10px 22px rgba(5, 150, 105, 0.23);
}

.status-modal--error .status-modal__icon {
    background: linear-gradient(135deg, #fb5b5b, #dc2626);
    box-shadow: 0 13px 28px rgba(220, 38, 38, 0.28);
}

.status-modal--error .status-modal__confirm {
    background: linear-gradient(135deg, #fb5b5b, #dc2626);
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.23);
}

.status-modal__title {
    margin: 0 0 11px;
    color: #172033;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.6;
}

.status-modal__message {
    margin: 0 0 27px;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
}

.status-modal__confirm {
    width: 100%;
    min-height: 49px;
    padding: 11px 20px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 13px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.status-modal__confirm:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
}

.status-modal__confirm:active {
    transform: translateY(0) scale(0.98);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  */
.status-modal.is-closing .status-modal__overlay {
    animation: statusModalOverlayHide 0.25s ease forwards;
}

.status-modal.is-closing .status-modal__content {
    animation: statusModalContentHide 0.25s ease forwards;
}

@keyframes statusModalOverlayShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes statusModalContentShow {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes statusModalOverlayHide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes statusModalContentHide {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(18px) scale(0.95);
    }
}

@media (max-width: 480px) {
    .status-modal {
        padding: 16px;
    }

    .status-modal__content {
        padding: 42px 22px 24px;
        border-radius: 20px;
    }

    .status-modal__icon {
        width: 76px;
        height: 76px;
    }

    .status-modal__title {
        font-size: 20px;
    }

    .status-modal__message {
        font-size: 14px;
    }
}

/* =========================================
   LARAL | ABUMOSLEM FAQ 2
   Unique prefix: lrl-abu-faq2-
========================================= */

.lrl-abu-faq2-section {
    width: 100%;
    overflow: hidden;
    padding: 70px 18px;
    direction: rtl;
    background:
        radial-gradient(circle at 10% 20%, rgba(215, 0, 0, 0.035), transparent 24%),
        #ffffff;
    font-family: Vazirmatn, IRANSans, sans-serif;
}

.lrl-abu-faq2-container {
    width: min(100%, 1050px);
    margin: 0 auto;
}

.lrl-abu-faq2-heading {
    margin-bottom: 25px;
    text-align: center;
}

.lrl-abu-faq2-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #d8070b;
    font-size: 13px;
    font-weight: 800;
}

.lrl-abu-faq2-title {
    margin: 0;
    color: #101010;
    font-size: clamp(27px, 3.2vw, 39px);
    font-weight: 900;
    line-height: 1.5;
}

.lrl-abu-faq2-subtitle {
    margin: 5px 0 0;
    color: #747474;
    font-size: 14px;
    line-height: 1.9;
}

.lrl-abu-faq2-list {
    display: grid;
    gap: 8px;
}

.lrl-abu-faq2-item {
    overflow: hidden;
    border: 1px solid #ececef;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 5px 16px rgba(20, 25, 35, 0.035);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.lrl-abu-faq2-item--active {
    border-color: #e5e6e9;
    box-shadow: 0 8px 20px rgba(20, 25, 35, 0.06);
}

.lrl-abu-faq2-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 12px 17px;
    border: 0;
    color: #141414;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    text-align: right;
}

.lrl-abu-faq2-question-text {
    padding-left: 15px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.7;
}

.lrl-abu-faq2-icon {
    position: relative;
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    border: 1.5px solid #fe5900;
    border-radius: 50%;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.lrl-abu-faq2-icon::before,
.lrl-abu-faq2-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    content: "";
    border-radius: 5px;
    background: #fe5900;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease, transform 0.3s ease;
}

.lrl-abu-faq2-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.lrl-abu-faq2-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s ease;
}

.lrl-abu-faq2-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 56px 0 17px;
    color: #5d5d5d;
    font-size: 14px;
    line-height: 2.15;
    transition: padding 0.45s ease;
    font-family: 'VazirmatnMedium';
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-answer {
    grid-template-rows: 1fr;
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-answer-inner {
    padding-top: 0;
    padding-bottom: 18px;
    font-family: 'VazirmatnMedium';
    padding-right: 18px;
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-icon {
    border-color: #fe5900;
    background: #fe5900;
    transform: rotate(180deg);
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-icon::before,
.lrl-abu-faq2-item--active .lrl-abu-faq2-icon::after {
    background: #ffffff;
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.lrl-abu-faq2-contact-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 245px;
    margin-top: 28px;
    overflow: hidden;
    border-radius: 12px;
    background:
        radial-gradient(circle at 79% 46%, rgba(221, 17, 21, 0.46), transparent 23%),
        linear-gradient(110deg, #080b1c 0%, #0b0b1d 62%, #290812 100%);
    box-shadow: 0 12px 28px rgba(12, 12, 25, 0.12);
}

.lrl-abu-faq2-contact-banner::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(5, 7, 20, 0.2) 0%,
        rgba(5, 7, 20, 0.58) 45%,
        rgba(5, 7, 20, 0.92) 100%
    );
}

.lrl-abu-faq2-contact-content {
    position: relative;
    z-index: 2;
    width: 58%;
    padding: 32px 35px;
    color: #ffffff;
}

.lrl-abu-faq2-contact-content h3 {
    margin: 0;
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.4;
    color: #ffffff;
}

.lrl-abu-faq2-contact-content p {
    max-width: 450px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 2;
}

.lrl-abu-faq2-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.lrl-abu-faq2-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 140px;
    min-height: 43px;
    padding: 14px 17px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lrl-abu-faq2-contact-btn:hover {
    transform: translateY(-4px);
}

.lrl-abu-faq2-contact-btn--red {
    color: #ffffff;
    background: #df1015;
    box-shadow: 0 8px 18px rgba(223, 16, 21, 0.28);
    font-size: 16px;
}

.lrl-abu-faq2-contact-btn--white {
    color: #1b1b1b;
    background: #ffffff;
}

.lrl-abu-faq2-contact-image-wrap {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lrl-abu-faq2-contact-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lrl-abu-faq2-scroll-left,
.lrl-abu-faq2-scroll-right {
    opacity: 1;
}

.lrl-abu-faq2-scroll-left.lrl-abu-faq2-animate {
    animation: lrl-abu-faq2-enter-left 0.8s cubic-bezier(.22, .61, .36, 1) both;
}

.lrl-abu-faq2-scroll-right.lrl-abu-faq2-animate {
    animation: lrl-abu-faq2-enter-right 0.8s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes lrl-abu-faq2-enter-left {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lrl-abu-faq2-enter-right {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 850px) {
    .lrl-abu-faq2-section {
        padding: 55px 15px;
    }

    .lrl-abu-faq2-contact-content {
        width: 62%;
        padding: 28px 25px;
    }

    .lrl-abu-faq2-contact-image-wrap {
        left: -2%;
        width: 44%;
    }
}

@media (max-width: 640px) {
    .lrl-abu-faq2-section {
        padding: 42px 10px;
    }

    .lrl-abu-faq2-heading {
        margin-bottom: 20px;
    }

    .lrl-abu-faq2-title {
        font-size: 27px;
    }

    .lrl-abu-faq2-subtitle {
        font-size: 12px;
    }

    .lrl-abu-faq2-list {
        gap: 7px;
    }

    .lrl-abu-faq2-item {
        border-radius: 10px;
    }

    .lrl-abu-faq2-question {
        min-height: 51px;
        padding: 10px 12px;
    }

    .lrl-abu-faq2-question-text {
        padding-left: 10px;
        font-size: 12px;
    }

    .lrl-abu-faq2-icon {
        flex-basis: 21px;
        width: 21px;
        height: 21px;
    }

    .lrl-abu-faq2-answer-inner {
        padding-right: 43px;
        padding-left: 12px;
        font-size: 11px;
        line-height: 2;
    }

    .lrl-abu-faq2-contact-banner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 420px;
        margin-top: 20px;
    }

    .lrl-abu-faq2-contact-content {
        z-index: 3;
        width: 100%;
        padding: 27px 18px 15px;
        text-align: center;
    }

    .lrl-abu-faq2-contact-content h3 {
        font-size: 27px;
    }

    .lrl-abu-faq2-contact-content p {
        margin-right: auto;
        margin-left: auto;
        font-size: 11px;
    }

    .lrl-abu-faq2-contact-actions {
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .lrl-abu-faq2-contact-btn {
        min-width: 125px;
        min-height: 40px;
        padding: 0 11px;
        font-size: 11px;
    }

    .lrl-abu-faq2-contact-image-wrap {
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }

    .lrl-abu-faq2-contact-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }

    .lrl-abu-faq2-scroll-left.lrl-abu-faq2-animate,
    .lrl-abu-faq2-scroll-right.lrl-abu-faq2-animate {
        animation-name: lrl-abu-faq2-enter-bottom;
    }
}

@keyframes lrl-abu-faq2-enter-bottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lrl-abu-faq2-item,
    .lrl-abu-faq2-answer,
    .lrl-abu-faq2-answer-inner,
    .lrl-abu-faq2-contact-btn {
        transition: none;
    }

    .lrl-abu-faq2-scroll-left.lrl-abu-faq2-animate,
    .lrl-abu-faq2-scroll-right.lrl-abu-faq2-animate {
        animation: none;
    }
}

.comment-admin-answer {
    position: relative;
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid rgba(254, 89, 0, 0.18);
    border-right: 4px solid #fe5900;
    border-radius: 10px;
    background: #fff7f2;
}

.comment-admin-answer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-admin-answer__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fe5900;
    font-size: 15px;
    font-weight: 700;
}

.comment-admin-answer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: #fe5900;
    font-size: 12px;
}

.comment-admin-answer__text {
    margin: 0 !important;
    color: #555;
    font-size: 14px;
    line-height: 2;
}

/* Ø­Ø§Ù„Øª Ù…ÙˆØ¨Ø§ÛŒÙ„ */
@media (max-width: 575px) {
    .comment-admin-answer {
        padding: 15px;
    }

    .comment-admin-answer__text {
        font-size: 13px;
    }
}
/* Details Blog Css Responsiv Mobile */

.news-standard-section,
.gt-news-details-wrapper,
.gt-news-details-content,
.gt-comments-area,
.gt-blog-single-comment,
.gt-blog-single-comment .gt-content {
    max-width: 100%;
}

.gt-details-image img,
.gt-recent-thumb img {
    display: block;
    max-width: 100%;
    height: auto;
}

.gt-blog-single-comment,
.gt-blog-single-comment p,
.gt-blog-single-comment span,
.gt-blog-single-comment h5,
.gt-blog-single-comment a,
.comment-admin-answer,
.comment-admin-answer__text {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.gt-blog-single-comment .gt-content {
    min-width: 0;
    flex: 1 1 auto;
}

.comment-admin-answer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.gt-comment-form-wrap input,
.gt-comment-form-wrap textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.gt-comment-form-wrap textarea {
    min-height: 150px;
}

@media (max-width: 575.98px) {

    .gt-blog-single-comment {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .gt-blog-single-comment .image {
        flex: 0 0 auto;
    }

    .gt-blog-single-comment .image img {
        width: 48px !important;
        height: 48px;
        object-fit: cover;
        border-radius: 50%;
    }

    .gt-blog-single-comment .gt-content {
        width: 100%;
        min-width: 0;
    }

    .gt-blog-single-comment .head {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 6px !important;
    }

    .gt-blog-single-comment .head .con {
        width: 100%;
    }

    .gt-blog-single-comment .head h5 {
        margin-bottom: 4px;
        font-size: 17px;
    }

    .gt-blog-single-comment .head span {
        display: block;
        font-size: 12px;
        line-height: 1.9;
    }

    .gt-blog-single-comment .mt-30 {
        margin-top: 18px !important;
    }

    .comment-admin-answer {
        margin-top: 16px;
        padding: 14px !important;
        border-radius: 10px;
    }

    .comment-admin-answer__title {
        font-size: 14px;
    }

    .comment-admin-answer__text {
        font-size: 13px;
        line-height: 2;
    }

    .gt-tag-share-wrap .tagcloud {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }

    .gt-tag-share-wrap .tagcloud a {
        margin: 0 !important;
    }

    .gt-news-details-content > h3 {
        font-size: 22px;
        line-height: 1.8;
        overflow-wrap: anywhere;
    }

    .gt-comment-form-wrap .theme-btn {
        width: 100%;
        justify-content: center;
    }

    .gt-recent-items {
        max-width: 100%;
    }

    .gt-recent-content {
        min-width: 0;
    }

    .gt-recent-content h5,
    .gt-recent-content h5 a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

.comment-admin-answer {
    position: relative;
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid rgba(254, 89, 0, 0.18);
    border-right: 4px solid #fe5900;
    border-radius: 10px;
    background: #fff7f2;
}

.comment-admin-answer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-admin-answer__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fe5900;
    font-size: 15px;
    font-weight: 700;
}

.comment-admin-answer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: #fe5900;
    font-size: 12px;
}

.comment-admin-answer__text {
    margin: 0 !important;
    color: #555;
    font-size: 14px;
    line-height: 2;
}

@media (max-width: 575px) {
    .comment-admin-answer {
        padding: 15px;
    }

    .comment-admin-answer__text {
        font-size: 13px;
    }
}

/* End Details Blog Css Responsiv Mobile */

/* START PAGE ORDER */
/* =========================================
LRL ABU - COURSE ORDER
========================================= */

.lrl-abu-order-section {
    position: relative;
    padding: 90px 0 110px;
    background:
        radial-gradient(circle at 10% 20%, rgba(210, 0, 0, .06), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 0, 0, .05), transparent 30%),
        #f7f7f7;
    direction: rtl;
    overflow: hidden;
}

.lrl-abu-order-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(190, 0, 0, .035);
    top: -200px;
    right: -180px;
    filter: blur(20px);
}

.lrl-abu-order-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================
HEADER
========================================= */

.lrl-abu-order-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
    animation: lrlAbuFadeUp .7s ease both;
}

.lrl-abu-order-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    border-radius: 50px;
    background: rgba(190, 0, 0, .08);
    color: #b00000;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.lrl-abu-order-header h2 {
    margin: 0;
    color: #161616;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.5;
}

.lrl-abu-order-header h2 span {
    color: #b00000;
}

.lrl-abu-order-header p {
    margin: 13px 0 0;
    color: #777;
    font-size: 15px;
}

/* =========================================
MAIN BOX
========================================= */

.lrl-abu-order-box {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, .7fr);
    direction: ltr;
    gap: 28px;
    max-width: 1100px;
    margin: auto;
    align-items: start;
}

.lrl-abu-order-content,
.lrl-abu-order-summary {
    direction: rtl;
}

/* =========================================
CONTENT
========================================= */

.lrl-abu-order-content {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .07);
    border: 1px solid rgba(0, 0, 0, .045);
    animation: lrlAbuFadeUp .8s ease both;
}

/* =========================================
COURSE INFO
========================================= */

.lrl-abu-course-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: #fafafa;
    margin-bottom: 35px;
}

.lrl-abu-course-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b00000;
    color: #fff;
    border-radius: 16px;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(176, 0, 0, .2);
}

.lrl-abu-course-info span {
    display: block;
    color: #999;
    font-size: 12px;
    margin-bottom: 4px;
}

.lrl-abu-course-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #222;
}

/* =========================================
STEP TITLE
========================================= */

.lrl-abu-step-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 23px;
}

.lrl-abu-step-title > span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    color: #fff;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
}

.lrl-abu-step-title h3 {
    margin: 0 0 3px;
    font-size: 17px;
    font-weight: 850;
    color: #222;
}

.lrl-abu-step-title p {
    margin: 0;
    font-size: 12px;
    color: #999;
}

.lrl-abu-payment-step {
    margin-top: 35px;
}

/* =========================================
SELECT
========================================= */

.lrl-abu-form-group {
    margin-bottom: 10px;
}

.lrl-abu-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.lrl-abu-form-group label i {
    color: #b00000;
}

.lrl-abu-select-wrapper {
    position: relative;
}

.lrl-abu-select {
    width: 100%;
    height: 60px;
    border: 1px solid #e7e7e7;
    border-radius: 15px;
    background: #fafafa;
    padding: 0 18px 0 50px;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: .25s ease;
}

.lrl-abu-select:hover,
.lrl-abu-select:focus {
    border-color: #b00000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(176, 0, 0, .06);
}

.lrl-abu-select-wrapper > i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #777;
}

.lrl-abu-form-group small {
    display: block;
    color: #aaa;
    font-size: 11px;
    margin-top: 9px;
}

/* =========================================
PAYMENT TABS
========================================= */

.lrl-abu-payment-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.lrl-abu-payment-tab {
    position: relative;
    display: flex;
    align-items: center;
    text-align: right;
    gap: 12px;
    min-height: 82px;
    padding: 15px;
    border: 1px solid #e9e9e9;
    border-radius: 17px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: .3s ease;
}

.lrl-abu-payment-tab:hover {
    transform: translateY(-2px);
    border-color: #d4d4d4;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.lrl-abu-payment-tab.active {
    border-color: #b00000;
    background: rgba(176, 0, 0, .035);
    box-shadow: 0 8px 25px rgba(176, 0, 0, .08);
}

.lrl-abu-payment-tab-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    border-radius: 13px;
    color: #555;
    transition: .3s ease;
}

.lrl-abu-payment-tab.active .lrl-abu-payment-tab-icon {
    background: #b00000;
    color: #fff;
}

.lrl-abu-payment-tab strong {
    display: block;
    font-size: 13px;
    color: #222;
    margin-bottom: 5px;
}

.lrl-abu-payment-tab span {
    display: block;
    font-size: 10px;
    color: #999;
}

.lrl-abu-tab-check {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b00000;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    opacity: 0;
    transform: scale(.5);
    transition: .25s ease;
}

.lrl-abu-payment-tab.active .lrl-abu-tab-check {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
PAYMENT BOX
========================================= */

.lrl-abu-payment-box {
    display: none;
    margin-top: 18px;
    padding: 20px;
    border-radius: 17px;
    background: #fafafa;
    animation: lrlAbuSlideDown .35s ease both;
}

.lrl-abu-payment-box.active {
    display: block;
}

/* =========================================
DISCOUNT
========================================= */

.lrl-abu-discount-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.lrl-abu-discount-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 0, 0, .08);
    color: #b00000;
    border-radius: 12px;
}

.lrl-abu-discount-header h4 {
    margin: 0 0 3px;
    font-size: 13px;
    color: #222;
}

.lrl-abu-discount-header p {
    margin: 0;
    font-size: 10px;
    color: #999;
}

.lrl-abu-discount-form {
    display: flex;
    gap: 10px;
}

.lrl-abu-discount-form input {
    width: 100%;
    color: #181818;
    height: 52px;
    border: 1px solid #e6e6e6;
    background: #fff;
    border-radius: 13px;
    outline: none;
    padding: 0 15px;
    font-family: inherit;
    font-size: 15px;
    transition: .25s ease;
}

.lrl-abu-discount-form input:focus {
    border-color: #b00000;
    box-shadow: 0 0 0 4px rgba(176, 0, 0, .05);
}

.lrl-abu-discount-form button {
    min-width: 135px;
    border: 0;
    border-radius: 13px;
    background: #181818;
    color: #fff;
    font-family: inherit;
    font-size: 11px;
    cursor: pointer;
    transition: .3s ease;
}

.lrl-abu-discount-form button:hover {
    background: #b00000;
}

.lrl-abu-discount-message {
    display: none;
    margin-top: 10px;
    font-size: 11px;
}

.lrl-abu-discount-message.success {
    display: block;
    color: #159447;
}

.lrl-abu-discount-message.error {
    display: block;
    color: #d00000;
}

/* =========================================
INSTALLMENT
========================================= */

.lrl-abu-installment-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.lrl-abu-installment-alert-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 0, 0, .08);
    color: #b00000;
    border-radius: 12px;
}

.lrl-abu-installment-alert strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #222;
}

.lrl-abu-installment-alert p {
    margin: 0;
    color: #888;
    font-size: 11px;
    line-height: 2;
}

.lrl-abu-installment-alert b {
    color: #b00000;
}

/* =========================================
ACTION
========================================= */

.lrl-abu-order-action {
    margin-top: 25px;
}

.lrl-abu-submit-btn {
    width: 100%;
    min-height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #a90000, #d00000);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 13px 30px rgba(176, 0, 0, .2);
    transition: .3s ease;
}

.lrl-abu-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 35px rgba(176, 0, 0, .28);
}

.lrl-abu-submit-btn:active {
    transform: translateY(0);
}

/* =========================================
SUMMARY
========================================= */

.lrl-abu-order-summary {
    position: sticky;
    top: 25px;
    padding: 27px;
    border-radius: 25px;
    background: #171717;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .16);
    animation: lrlAbuFadeUp .9s ease both;
}

.lrl-abu-order-summary::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(190, 0, 0, .15);
    top: -120px;
    left: -90px;
    filter: blur(10px);
}

.lrl-abu-summary-top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.lrl-abu-summary-logo {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #b00000;
    color: #fff;
}

.lrl-abu-summary-top span {
    font-size: 14px;
    font-weight: 800;
}

.lrl-abu-summary-course {
    position: relative;
    padding: 17px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .055);
    margin-bottom: 16px;
}

.lrl-abu-summary-course span {
    display: block;
    color: #888;
    font-size: 10px;
    margin-bottom: 7px;
}

.lrl-abu-summary-course strong {
    font-size: 14px;
    line-height: 1.8;
}

.lrl-abu-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.lrl-abu-summary-line span {
    color: #888;
    font-size: 11px;
}

.lrl-abu-summary-line strong {
    color: #fff;
    font-size: 11px;
}

.lrl-abu-summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 18px 0;
}

.lrl-abu-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lrl-abu-total > span {
    color: #aaa;
    font-size: 12px;
}

.lrl-abu-total strong {
    color: #fff;
    font-size: 23px;
}

.lrl-abu-total small {
    font-size: 9px;
    color: #aaa;
    font-weight: 400;
}

.lrl-abu-security {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.lrl-abu-security > div {
    color: #67d48a;
}

.lrl-abu-security p {
    margin: 0;
    color: #777;
    font-size: 9px;
    line-height: 1.8;
}

/* =========================================
ANIMATIONS
========================================= */

@keyframes lrlAbuFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }


}

@keyframes lrlAbuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================
TABLET
========================================= */

@media (max-width: 991px) {

    .lrl-abu-order-section {
        padding: 70px 0 80px;
    }

    .lrl-abu-order-box {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .lrl-abu-order-summary {
        position: relative;
        top: auto;
        order: -1;
    }

}

/* =========================================
MOBILE
========================================= */

@media (max-width: 575px) {

    .lrl-abu-order-section {
        padding: 55px 14px 65px;
    }

    .lrl-abu-order-header {
        margin-bottom: 35px;
    }

    .lrl-abu-order-header h2 {
        font-size: 27px;
    }

    .lrl-abu-order-header p {
        font-size: 12px;
        line-height: 2;
    }

    .lrl-abu-order-content {
        padding: 19px;
        border-radius: 20px;
    }

    .lrl-abu-course-info {
        padding: 14px;
    }

    .lrl-abu-course-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .lrl-abu-payment-tabs {
        grid-template-columns: 1fr;
    }

    .lrl-abu-payment-tab {
        min-height: 72px;
    }

    .lrl-abu-discount-form {
        flex-direction: column;
    }

    .lrl-abu-discount-form button {
        min-height: 50px;
    }

    .lrl-abu-order-summary {
        padding: 21px;
        border-radius: 20px;
    }

    .lrl-abu-total strong {
        font-size: 20px;
    }

    .lrl-abu-select {
        height: 56px;
        font-size: 12px;
    }
}

/* END PAGE ORDER */

/* =========================================================
   HEADER AUTH BUTTONS
   ========================================================= */
.header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 18px;
}

.header-login-btn {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border-radius: 10px;

    border: 1px solid rgba(255, 145, 0, 0.45);
    background: rgba(255, 145, 0, 0.06);
    color: #f28c00;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}

.header-login-btn:hover {
    color: #fff;
    background: #f28c00;
    border-color: #f28c00;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(242, 140, 0, 0.25);
}


.header-register-btn {
    position: relative;

    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 20px;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #ffad33,
        #f07800
    );

    color: #fff;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    overflow: hidden;

    box-shadow: 0 8px 20px rgba(242, 140, 0, 0.25);

    transition: all 0.3s ease;
}

.header-register-btn::before {
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.6s ease;
}

.header-register-btn:hover::before {
    left: 140%;
}
.header-register-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(242, 140, 0, 0.35);
}
.header-register-btn i {
    font-size: 12px;

    transition: transform 0.3s ease;
}

.header-register-btn:hover i {
    transform: translate(-3px, -3px);
}

.header-account-btn {
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-left: 18px;
    padding: 0 20px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #ffad33,
        #f07800
    );

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(242, 140, 0, 0.22);

    transition: all 0.3s ease;
}

.header-account-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(242, 140, 0, 0.35);
}

.header-account-btn > i:last-child {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.header-account-btn:hover > i:last-child {
    transform: translateX(-4px);
}
@media (max-width: 1199px) {

    .header-auth-buttons {
        display: flex !important;
        align-items: center;
        gap: 6px;
        margin-left: 10px;
    }
    .header-login-btn,
    .header-register-btn,
    .header-account-btn {
        height: 38px;
        padding: 0 12px;
        border-radius: 8px;
        font-size: 12px;
    }
    .header-login-btn {
        gap: 5px;
    }
    .header-register-btn {
        gap: 5px;
    }
    .header-account-btn {
        display: inline-flex !important;
        margin-left: 10px;
        gap: 6px;
    }
    .header-login-btn i,
    .header-register-btn i,
    .header-account-btn i {
        font-size: 10px;
    }
}

/* =========================================
   ABUMOSLEM STORIES
========================================= */

.abu-stories-section {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(190, 20, 35, 0.10),
            transparent 40%
        ),
        #080808;
}


.abu-stories-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}


/* =========================================
   HEADER
========================================= */

.abu-stories-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}


.abu-stories-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;

    color: #d7192f;
    font-size: 13px;
    font-weight: 700;
}


.abu-stories-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #d7192f;
    border-radius: 10px;
}


.abu-stories-title {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.2;
}


/* =========================================
   NAVIGATION
========================================= */

.abu-stories-navigation {
    display: flex;
    gap: 10px;
}


.abu-story-nav-btn {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;

    background: rgba(255,255,255,0.06);
    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.abu-story-nav-btn:hover {
    transform: translateY(-3px);
    background: #d7192f;
    border-color: #d7192f;
}


/* =========================================
   SLIDER
========================================= */

.abu-stories-wrapper {
    width: 100%;
    overflow: hidden;
}


.abu-stories-track {
    display: flex;
    gap: 18px;

    direction: rtl;

    overflow-x: auto;
    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 5px 0 20px;
}


.abu-stories-track::-webkit-scrollbar {
    display: none;
}


/* =========================================
   STORY CARD
========================================= */

.abu-story-card {
    position: relative;

    flex: 0 0 235px;

    height: 390px;

    border-radius: 24px;

    overflow: hidden;

    cursor: pointer;

    background: #151515;

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.abu-story-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 70px rgba(0,0,0,.55);
}


.abu-story-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


.abu-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1);
}


.abu-story-card:hover
.abu-story-image img {
    transform: scale(1.07);
}


/* =========================================
   CARD GRADIENT
========================================= */

.abu-story-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.15) 0%,
            transparent 35%,
            rgba(0,0,0,.75) 100%
        );
}


/* =========================================
   CARD USER
========================================= */

.abu-story-info {
    position: absolute;

    top: 18px;
    right: 18px;
    left: 18px;

    z-index: 2;
}


.abu-story-user {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;
}


.abu-story-avatar {
    width: 38px;
    height: 38px;

    padding: 2px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #d7192f,
            #ff5265,
            #7d101b
        );
}


.abu-story-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
    background: #111;
}


.abu-story-user strong {
    display: block;

    font-size: 13px;
    font-weight: 800;
}


.abu-story-user span {
    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.65);

    font-size: 11px;
}


/* =========================================
   STORY VIEWER
========================================= */

.abu-story-viewer {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


.abu-story-viewer.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}


/* =========================================
   BACKDROP
========================================= */

.abu-story-viewer-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(0,0,0,.92);

    backdrop-filter: blur(18px);
}


/* =========================================
   VIEWER CONTENT
========================================= */

.abu-story-viewer-content {
    position: relative;

    width: min(430px, 92vw);
    height: min(780px, 90vh);

    overflow: hidden;

    border-radius: 24px;

    background: #101010;

    box-shadow:
        0 40px 120px rgba(0,0,0,.7);

    transform: scale(.92);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);
}


.abu-story-viewer.active
.abu-story-viewer-content {
    transform: scale(1);
}


/* =========================================
   PROGRESS BARS
========================================= */

.abu-story-progress {
    position: absolute;

    top: 12px;
    right: 12px;
    left: 12px;

    z-index: 20;

    display: flex;

    gap: 5px;
}


.abu-story-progress-item {
    flex: 1;

    height: 3px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255,255,255,.25);
}


.abu-story-progress-fill {
    width: 0%;
    height: 100%;

    background: #fff;

    border-radius: inherit;
}


/* =========================================
   VIEWER TOP
========================================= */

.abu-story-viewer-top {
    position: absolute;

    top: 25px;
    right: 18px;
    left: 18px;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.abu-story-viewer-user {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;
}


.abu-story-viewer-avatar {
    width: 40px;
    height: 40px;

    padding: 2px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #d7192f,
            #ff5265
        );
}


.abu-story-viewer-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    background: #111;
}


.abu-story-viewer-user-info strong {
    display: block;

    font-size: 13px;
}


.abu-story-viewer-user-info span {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.65);

    font-size: 11px;
}


/* =========================================
   CLOSE
========================================= */

.abu-story-close {
    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 50%;

    background: rgba(0,0,0,.35);

    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background .3s ease,
        transform .3s ease;
}


.abu-story-close:hover {
    background: rgba(215,25,47,.9);
    transform: rotate(90deg);
}


/* =========================================
   VIEWER IMAGE
========================================= */

.abu-story-viewer-image-wrapper {
    position: relative;

    width: 100%;
    height: 100%;
}


.abu-story-viewer-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    opacity: 0;

    transform: scale(1.03);

    transition:
        opacity .35s ease,
        transform .5s ease;
}


.abu-story-viewer-image.loaded {
    opacity: 1;
    transform: scale(1);
}


/* =========================================
   CLICK ZONES
========================================= */

.abu-story-click-zone {
    position: absolute;

    top: 0;
    bottom: 0;

    width: 50%;

    z-index: 5;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.abu-story-click-prev {
    right: 0;
}


.abu-story-click-next {
    left: 0;
}


/* =========================================
   ARROWS
========================================= */

.abu-story-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50%;

    background: rgba(0,0,0,.4);

    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(10px);

    transform: translateY(-50%);

    transition:
        background .3s ease,
        transform .3s ease;
}


.abu-story-arrow:hover {
    background: #d7192f;
}


.abu-story-arrow-prev {
    right: 15px;
}


.abu-story-arrow-next {
    left: 15px;
}


/* =========================================
   BOTTOM CONTENT
========================================= */

.abu-story-viewer-bottom {
    position: absolute;

    right: 25px;
    bottom: 30px;
    left: 25px;

    z-index: 10;

    color: #fff;

    pointer-events: none;
}


.abu-story-viewer-bottom h2 {
    margin: 0;

    font-size: 25px;
    font-weight: 900;

    line-height: 1.4;

    text-shadow:
        0 4px 20px rgba(0,0,0,.8);
}


.abu-story-bottom-line {
    width: 45px;
    height: 3px;

    margin-top: 12px;

    border-radius: 10px;

    background: #d7192f;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .abu-stories-section {
        padding: 55px 0;
    }


    .abu-stories-container {
        padding: 0 18px;
    }


    .abu-stories-header {
        margin-bottom: 25px;
    }


    .abu-stories-navigation {
        display: none;
    }


    .abu-story-card {
        flex-basis: 175px;
        height: 285px;

        border-radius: 20px;
    }


    .abu-story-viewer {
        padding: 0;
    }


    .abu-story-viewer-content {
        width: 100vw;
        height: 100vh;

        max-width: none;
        max-height: none;

        border-radius: 0;
    }


    .abu-story-viewer-top {
        top: 25px;
    }


    .abu-story-arrow {
        display: none;
    }


    .abu-story-viewer-bottom {
        right: 20px;
        bottom: 35px;
        left: 20px;
    }


    .abu-story-viewer-bottom h2 {
        font-size: 21px;
    }

}


@media (max-width: 480px) {

    .abu-story-card {
        flex-basis: 155px;
        height: 255px;
    }

}
/* ============================================
   Button All Blog
   ============================================ */
.view-all-blogs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #ffad33, #f07800);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.35);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 10px;
}

.view-all-blogs-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e64a19 0%, #ff5722 50%, #ff8c00 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.view-all-blogs-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: right 0.6s ease;
    z-index: -1;
}

.view-all-blogs-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.5);
}

.view-all-blogs-btn:hover::before {
    opacity: 1;
}

.view-all-blogs-btn:hover::after {
    right: 100%;
}

.view-all-blogs-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.view-all-blogs-btn:hover i {
    transform: translateX(-5px);
}

.view-all-blogs-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

@media (max-width: 767px) {
    .view-all-blogs-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
/* ============================================
   End Button All Blog
   ============================================ */
@font-face { font-family: 'Shabnam'; src: url('../../assets/fonts/Shabnam.ttf'); font-display: swap; }
@font-face { font-family: 'ShabnamBold'; src: url('../../assets/fonts/Shabnam-Bold.ttf'); font-display: swap; }
@font-face { font-family: 'ShabnamLight'; src: url('../../assets/fonts/Shabnam-Light.ttf'); font-display: swap; }
@font-face { font-family: 'ShabnamMedium'; src: url('../../assets/fonts/Shabnam-Medium.ttf'); font-display: swap; }
@font-face { font-family: 'ShabnamThin'; src: url('../../assets/fonts/Shabnam-Thin.ttf'); font-display: swap; }

@font-face { font-family: 'VazirmatnBlack'; src: url('../../assets/fonts/Vazirmatn-Black.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnBold'; src: url('../../assets/fonts/Vazirmatn-Bold.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnExtraBold'; src: url('../../assets/fonts/Vazirmatn-ExtraBold.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnExtraLight'; src: url('../../assets/fonts/Vazirmatn-ExtraLight.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnLight'; src: url('../../assets/fonts/Vazirmatn-Light.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnMedium'; src: url('../../assets/fonts/Vazirmatn-Medium.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnRegular'; src: url('../../assets/fonts/Vazirmatn-Regular.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnSemiBold'; src: url('../../assets/fonts/Vazirmatn-SemiBold.ttf'); font-display: swap; }
@font-face { font-family: 'VazirmatnThin'; src: url('../../assets/fonts/Vazirmatn-Thin.ttf'); font-display: swap; }
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #FE5900;
    --header: #030523;
    --text: #434343;
    --border: #FCFCFC;
    --bg: #F5F6F6;
    --bg2: #030523;
    --bg3: #F7F3EE;
    --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/* 01.3 Buttons */
.theme-btn {
    font-size: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 58px;
    line-height: 58px;
    background: linear-gradient(        135deg,        #ffad33,        #f07800    );
    overflow: hidden;
    display: inline-block;
    padding: 0 34px;
    color: var(--white);
    border-radius: 10px;
}
@media (max-width: 575px) {
    .theme-btn {
        font-size: 14px;
        padding: 0 25px;
        height: 52px;
        line-height: 52px;
    }
}
.theme-btn::before {
    content: "";
    position: absolute;
    width: 0;
    top: -10px;
    height: 0;
    background-color: var(--header);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    z-index: -1;
}
.theme-btn.bg-white {
    color: var(--header);
    background-color: var(--white);
}
.theme-btn.bg-white::before {
    background-color: var(--theme);
}
.theme-btn i {
    margin-right: 10px;
}
.theme-btn:hover {
    color: var(--white);
}
.theme-btn:hover::before {
    width: 800px;
    height: 800px;
    display: inline-block;
}

@keyframes slideRight {
    49% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes slideUp {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
.link-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--theme);
    text-decoration: underline;
}
.link-btn i {
    margin-right: 6px;
}

/* 01.4 Typography */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: iranyekan;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
}

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

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: iranyekan;
    margin: 0px;
    padding: 0;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
}

h1 {
    font-size: 100px;
    font-weight: 900;
    line-height: 109%;
}
@media (max-width: 1600px) {
    h1 {
        font-size: 85px;
    }
}
@media (max-width: 1199px) {
    h1 {
        font-size: 75px;
    }
}
@media (max-width: 991px) {
    h1 {
        font-size: 65px;
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 55px;
    }
}
@media (max-width: 575px) {
    h1 {
        font-size: 38px;
    }
}
@media (max-width: 470px) {
    h1 {
        font-size: 30px;
    }
}

h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 120%;
    letter-spacing: 0.5px;
}
@media (max-width: 1399px) {
    h2 {
        font-size: 44px;
    }
}
@media (max-width: 1199px) {
    h2 {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    h2 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}
@media (max-width: 575px) {
    h2 {
        font-size: 24px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 900;
    line-height: 134%;
}
@media (max-width: 575px) {
    h3 {
        font-size: 22px;
        line-height: 145%;
    }
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 700;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

span {
    margin: 0px;
    font-family: 'VazirmatnMedium';
}

/*==========================================================================
    02. Template Sections
==========================================================================*/
/* 02.1 About */
.about-wrapper .about-image {
    position: relative;
}
@media (max-width: 1199px) {
    .about-wrapper .about-image img {
        width: 100%;
        height: 100%;
    }
}
.about-wrapper .about-image .thumb1 {
    position: absolute;
    right: -70px;
    bottom: 80px;
}
@media (max-width: 767px) {
    .about-wrapper .about-image .thumb1 {
        right: 0;
    }
}
@media (max-width: 575px) {
    .about-wrapper .about-image .thumb1 {
        max-width: 140px;
    }
}
.about-wrapper .about-image .thumb2 {
    position: absolute;
    left: 50px;
    top: 50px;
}
@media (max-width: 575px) {
    .about-wrapper .about-image .thumb2 {
        max-width: 140px;
    }
}
.about-wrapper .about-content .about-text {
    margin-top: 25px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 25px;
}
.about-wrapper .about-content .about-list-items {
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
@media (max-width: 1199px) {
    .about-wrapper .about-content .about-list-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.about-wrapper .about-content .about-list-items ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--header);
}
.about-wrapper .about-content .about-list-items ul li:not(:last-child) {
    margin-bottom: 18px;
}
.about-wrapper .about-content .about-list-items ul li i {
    color: var(--theme);
    font-size: 20px;
}

.about-section {
    position: relative;
    z-index: 9;
}
.about-section .left-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
@media (max-width: 1199px) {
    .about-section .left-shape {
        display: none;
    }
}
.about-section .right-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
}
@media (max-width: 1199px) {
    .about-section .right-shape {
        display: none;
    }
}
.about-section .right-shape img {
    height: 100%;
}

.about-wrapper-2 .about-image-items {
    position: relative;
    z-index: 9;
}
.about-wrapper-2 .about-image-items .about-image {
    max-width: 472px;
    position: relative;
}
.about-wrapper-2 .about-image-items .about-image .text-circle {
    position: absolute;
    bottom: 30px;
    left: -60px;
    z-index: 9;
    animation: cir36 10s linear infinite;
}
@media (max-width: 1199px) {
    .about-wrapper-2 .about-image-items .about-image .text-circle {
        left: initial;
        right: 0;
    }
}
.about-wrapper-2 .about-image-items .about-image .text-circle .ball-cicrle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FFEEE7;
    text-align: center;
    line-height: 100px;
}
.about-wrapper-2 .about-image-items .about-image .text-circle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    transform: translate(-50%, -50%);
    width: 188px;
    height: 188px;
    background-color: #F5F6F6;
    border-radius: 50%;
    z-index: -1;
}
.about-wrapper-2 .about-image-items .about-image .text-circle img {
    width: initial;
    height: initial;
}
.about-wrapper-2 .about-image-items .about-image img {
    width: 100%;
    height: 100%;
}
.about-wrapper-2 .about-image-items .about-sm-img {
    position: absolute;
    max-width: 254px;
    top: 14%;
    left: -1%;
    border-radius: 254px;
    border: 6px solid var(--theme);
}
@media (max-width: 470px) {
    .about-wrapper-2 .about-image-items .about-sm-img {
        max-width: 140px;
        border-radius: 2px solid var(--theme);
        border-radius: 50%;
    }
}
.about-wrapper-2 .about-image-items .about-sm-img img {
    width: 100%;
    height: 100%;
}
.about-wrapper-2 .about-image-items .about-sm-img .img {
    position: absolute;
    z-index: -1;
    top: -30%;
    left: 20%;
}
.about-wrapper-2 .about-content {
    margin-right: 40px;
}
@media (max-width: 1199px) {
    .about-wrapper-2 .about-content {
        margin-right: 0;
    }
}
.about-wrapper-2 .about-content .about-text {
    margin-top: 25px;
    font-size: 16px;
}
.about-wrapper-2 .about-content h5 {
    font-size: 20px;
    font-weight: 700;
    font-family: iranyekan;
    margin-top: 20px;
}
.about-wrapper-2 .about-content .text-area {
    display: flex;
    align-items: end;
    margin-top: 20px;
    gap: 20px;
}
.about-wrapper-2 .about-content .text-area h3 {
    font-size: 40px;
    font-weight: 900;
}
.about-wrapper-2 .about-content .text-area p {
    color: #464E5E;
}
.about-wrapper-2 .about-content .theme-btn {
    margin-top: 50px;
}

.about-section-2 {
    position: relative;
    z-index: 9;
}
.about-section-2 .vec-shape {
    position: absolute;
    bottom: 250px;
    right: 0;
    z-index: -1;
}
@media (max-width: 1899px) {
    .about-section-2 .vec-shape {
        display: none;
    }
}

.about-wrapper-3 .about-left-items .about-image {
    position: relative;
    z-index: 9;
}
.about-wrapper-3 .about-left-items .about-image img {
    width: 100%;
    height: 100%;
}
.about-wrapper-3 .about-left-items .about-image .thumb {
    max-width: 260px;
    position: absolute;
    bottom: -2%;
    left: 3%;
}
@media (max-width: 1199px) {
    .about-wrapper-3 .about-left-items .about-image .thumb {
        max-width: 180px;
        bottom: 0;
    }
}
.about-wrapper-3 .about-content {
    margin-right: 30px;
}
@media (max-width: 1199px) {
    .about-wrapper-3 .about-content {
        margin-right: 0;
    }
}
.about-wrapper-3 .about-content .section-title h6 {
    color: var(--header);
    font-family: iranyekan;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 6px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    display: inline-block;
}
.about-wrapper-3 .about-content .section-title h6::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #FE5900 0%, rgba(201, 203, 223, 0) 100%);
}
.about-wrapper-3 .about-content .section-title h6::after {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, #FE5900 0%, rgba(201, 203, 223, 0) 100%);
}
.about-wrapper-3 .about-content .about-text {
    margin-top: 25px;
    margin-bottom: 30px;
}
.about-wrapper-3 .about-content .list-box {
    margin-top: 20px;
}
.about-wrapper-3 .about-content .list-box .list-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.about-wrapper-3 .about-content .list-box .list-content i {
    color: var(--theme);
}
.about-wrapper-3 .about-content .list-box .list-content h5 {
    font-family: iranyekan;
    font-size: 18px;
    font-weight: 700;
}
.about-wrapper-3 .about-content .theme-btn {
    margin-top: 50px;
}
@media (max-width: 767px) {
    .about-wrapper-3 .about-content .theme-btn {
        margin-top: 30px;
    }
}

.about-section-3 {
    position: relative;
}
.about-section-3 .stoke-title2 {
    color: var(--header);
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.06;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
}
@media (max-width: 1199px) {
    .about-section-3 .stoke-title2 {
        display: none;
    }
}
.about-section-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #030523;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

/* 02.2 Animation */
@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}
@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}
@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}
@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@-webkit-keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}
@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}
@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        right: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes criss-cross-right {
    0% {
        left: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(25%);
    }
    100% {
        transform: translateX(50%);
    }
}
@keyframes zoom {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.5);
    }
}
@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}
@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}
@keyframes moving {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translateX(-50px);
    }
    50% {
        transform: translatey(-40px);
    }
    100% {
        transform: translatey(0px);
    }
}
/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
@keyframes animate-positive {
    0% {
        width: 0;
    }
}
@keyframes scale {
    0% {
        top: -1000px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.animation-infinite {
    animation: ShapeAnim 50s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
}

@keyframes ShapeAnim {
    0% {
        background-position: top left;
    }
    100% {
        background-position: top left 3000px;
    }
}
.splt-txt .whitespace {
    width: 8px;
}

.splt-txt.animated .char {
    -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
    width: 20px;
}

@media (max-width: 991px) {
    .splt-txt-bounce .whitespace {
        width: 10px;
    }
}
.splt-txt-bounce.animated .char {
    -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

/* 02.3 Brand */
.sponsor-wrapper .sponsor-image {
    text-align: center;
    padding: 25px 40px;
}
@media (max-width: 1399px) {
    .sponsor-wrapper .sponsor-image {
        padding: 20px;
        border: 1px solid rgba(199, 201, 206, 0.24) !important;
    }
    .sponsor-wrapper .sponsor-image img {
        width: initial !important;
    }
}
.sponsor-wrapper .sponsor-image img {
    width: 100%;
    height: 64px;
}
@media (max-width: 767px) {
    .sponsor-wrapper .sponsor-image img {
        height: initial;
        width: 70px !important;
    }
}
.sponsor-wrapper .theme-btn {
    margin-right: 20px;
    padding: 0 24px;
}
.sponsor-wrapper .bb-left {
    border-right: 1px solid rgba(199, 201, 206, 0.24);
}
.sponsor-wrapper .bb-right {
    border-left: 1px solid rgba(199, 201, 206, 0.24);
}
.sponsor-wrapper .bb-bottom {
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
}
.sponsor-wrapper .bb-top {
    border-top: 1px solid rgba(199, 201, 206, 0.24);
}

.brand-logo-3 {
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(199, 201, 206, 0.24);
    padding: 30px 0;
}

.sponsor-wrapper-21 {
    margin-top: 60px;
}
@media (max-width: 1199px) {
    .sponsor-wrapper-21 {
        margin-top: 30px;
    }
}
.sponsor-wrapper-21 .table-responsive {
    overflow: hidden;
}
@media (max-width: 1399px) {
    .sponsor-wrapper-21 .table-responsive {
        overflow-x: auto;
    }
    .sponsor-wrapper-21 .table-responsive .sponsor-wrap {
        width: 1500px;
    }
}
.sponsor-wrapper-21 .sponsor-box-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img {
    width: 180px;
    height: 148px;
    border: 1px solid rgba(199, 201, 206, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-none {
    border-top: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-bottom {
    border-bottom: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-left {
    border-right: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-top-right {
    border-left: none;
}
.sponsor-wrapper-21 .sponsor-box-items .sponsor-img.bb-none {
    border: none !important;
}


.contact-box-wrapper .map-area iframe {
    width: 100%;
    height: 628px;
}
.contact-box-wrapper .gt-contact-right-items {
    border-radius: 0;
    background-color: var(--bg);
    padding: 43px;
}
@media (max-width: 767px) {
    .contact-box-wrapper .gt-contact-right-items {
        padding: 30px;
    }
}
.contact-box-wrapper .gt-contact-right-items h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box {
    margin-top: 30px;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box h4 {
    margin-bottom: 15px;
    font-family: iranyekan;
    font-size: 18px;
    font-weight: 700;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box .form-clt input, .contact-box-wrapper .gt-contact-right-items .contact-form-box .form-clt textarea {
    border-radius: 0;
    border: none;
    background: var(--white);
    line-height: 1;
    padding: 20px 25px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text);
    font-weight: 600;
}
.contact-box-wrapper .gt-contact-right-items .contact-form-box .form-clt textarea {
    padding-bottom: 110px;
}

/* 02.5 Call To Action */
.cta-banner-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
}
@media (max-width: 1199px) {
    .cta-banner-wrapper {
        display: grid;
        gap: 30px;
        justify-content: center;
        padding-left: 0;
        padding: 30px;
        text-align: center;
    }
}
.cta-banner-wrapper .cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 1199px) {
    .cta-banner-wrapper .cta-left {
        display: grid;
        gap: 20px;
        justify-content: center;
    }
}
.cta-banner-wrapper .cta-left h2 {
    color: var(--white);
    font-size: 48px;
}
@media (max-width: 575px) {
    .cta-banner-wrapper .cta-left h2 {
        font-size: 35px;
    }
}
.cta-banner-wrapper .cta-left h2 span {
    font-size: 40px;
}
.cta-banner-wrapper .right-image {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
}
@media (max-width: 1399px) {
    .cta-banner-wrapper .right-image {
        display: none;
    }
}
.cta-banner-wrapper .right-image img {
    height: 100%;
}

/* 02.6 Match */
.ranking-wrapper .ranking-table-1 {
    margin-top: 60px;
}
@media (max-width: 991px) {
    .ranking-wrapper .ranking-table-1 {
        margin-top: 30px;
    }
}
.ranking-wrapper .ranking-table-1 .top-content {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    align-items: end;
    justify-content: space-between;
}
@media (max-width: 575px) {
    .ranking-wrapper .ranking-table-1 .top-content {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}
.ranking-wrapper .ranking-table-1 .top-content .content h3 {
    margin-bottom: 7px;
}
.ranking-wrapper .ranking-table-1 .top-content .content P {
    color: rgba(255, 255, 255, 0.8);
}
.ranking-wrapper .ranking-table-1 .top-content .rank-text {
    text-decoration: underline;
    color: var(--theme);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
.ranking-wrapper .ranking-table-1 table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1399px) {
    .ranking-wrapper .ranking-table-1 table {
        width: 800px;
    }
}
.ranking-wrapper .ranking-table-1 table th, .ranking-wrapper .ranking-table-1 table td {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.ranking-wrapper .ranking-table-1 table thead th {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.ranking-wrapper .ranking-table-1 table .rank {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
.ranking-wrapper .ranking-table-1 table .club {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-bottom: 1px solid rgba(199, 201, 206, 0.16) !important;
}
.ranking-wrapper .ranking-table-1 table .club.bb-none {
    border-bottom: none !important;
}
.ranking-wrapper .ranking-table-1 table .club img {
    width: 32px;
    height: auto;
    display: block;
}
.ranking-wrapper .ranking-table-1 table .points {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.ranking-wrapper .ranking-table-1 table .pos {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.ranking-wrapper .ranking-table-1 table .pos.negative {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.match-box-items {
    background-color: #F5F6F6;
    text-align: center;
    padding: 32px;
    border-radius: 13px;
    height: 315px;
}
@media (max-width: 1199px) {
    .match-box-items {
        padding: 30px 25px;
    }
}
.match-box-items h3 {
    font-size: 32px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.4);
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.match-box-items h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
    font-family: 'iranyekan' !important;
}
.match-box-items .match-schedule {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    margin-top: 25px;
}
@media (max-width: 1199px) {
    .match-box-items .match-schedule {
        gap: 15px;
    }
}
.match-box-items .match-schedule span {
    display: block;
    margin-top: 5px;
}
.match-box-items .match-schedule .match-date {
    background-color: var(--white);
    padding: 12px 24px;
    line-height: 1;
}
@media (max-width: 1199px) {
    .match-box-items .match-schedule .match-date {
        padding: 10px 16px;
    }
}
.match-box-items .match-schedule .match-date span {
    color: var(--header);
    font-size: 24px;
    font-weight: 900;
    font-family: iranyekan;
}
@media (max-width: 1199px) {
    .match-box-items .match-schedule .match-date span {
        font-size: 16px;
    }
}
.match-box-items .match-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 35px;
    justify-content: center;
}
@media (max-width: 1399px) {
    .match-box-items .match-btn {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.match-box-items .match-btn .theme-btn {
    height: 52px;
    line-height: 52px;
    padding: 0 30px;
    background-color: #464E5E;
    border: 1px solid transparent;
}
@media (max-width: 1600px) {
    .match-box-items .match-btn .theme-btn {
        padding: 0 15px;
    }
}
.match-box-items .match-btn .theme-btn::before {
    background-color: var(--theme);
}
.match-box-items .match-btn .theme-btn:hover {
    border: 1px solid var(--theme);
}
.match-box-items .match-btn .theme-btn.style-2 {
    background-color: transparent;
    border: 1px solid #464E5E;
    color: var(--header);
}
.match-box-items .match-btn .theme-btn.style-2::before {
    background-color: var(--theme);
}
.match-box-items .match-btn .theme-btn.style-2 svg path {
    fill: var(--header);
    transition: all 0.4s ease-in-out;
}
.match-box-items .match-btn .theme-btn.style-2:hover {
    color: var(--white);
    border: 1px solid var(--theme);
}
.match-box-items .match-btn .theme-btn.style-2:hover svg path {
    fill: var(--white);
}

@media (max-width: 991px) {
    .match-result-wrapper {
        padding: 40px 0;
    }
    .match-result-wrapper .array-button-2 {
        display: flex !important;
        justify-content: center;
    }
}
.match-result-wrapper .left-headling {
    color: var(--header);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    .match-result-wrapper .left-headling {
        text-align: center;
    }
}
.match-result-wrapper .match-result-item {
    border-right: 1px solid #C7C9CE;
    padding: 32px 16px;
    position: relative;
}
@media (max-width: 991px) {
    .match-result-wrapper .match-result-item {
        border-right: none;
        background-color: var(--white);
    }
}
.match-result-wrapper .match-result-item .arrow-shape {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.match-result-wrapper .match-result-item p {
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    text-transform: uppercase;
    text-align: center;
}
.match-result-wrapper .match-result-item ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.match-result-wrapper .match-result-item ul li:not(:last-child) {
    margin-bottom: 10px;
}
.match-result-wrapper .match-result-item ul li .match-left {
    color: var(--header);
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.match-result-wrapper .match-result-item ul li .match-right {
    display: grid;
    align-items: center;
}
.match-result-wrapper .match-result-item ul li .match-right span {
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
}
.match-result-wrapper .swiper-slide-duplicate-next {
    border-left: 1px solid #C7C9CE;
}
.match-result-wrapper .swiper-slide-duplicate-prev {
    border-left: 1px solid #C7C9CE;
}

.ticket-box-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    padding: 25px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    gap: 40px;
    background-color: var(--white);
    position: relative;
    padding-right: 42px;
    overflow: hidden;
}
.ticket-box-items .circle2 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F5F6F6;
    position: absolute;
    bottom: -14px;
    right: 92px;
}
.ticket-box-items .circle-list {
    display: grid;
    align-items: center;
    gap: 18px;
    position: absolute;
    right: -18px;
}
.ticket-box-items .circle-list .circle-1 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F5F6F6;
}
.ticket-box-items .circle1 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F5F6F6;
    position: absolute;
    top: -14px;
    right: 92px;
}
.ticket-box-items .mask-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ticket-box-items .ticket-left {
    position: relative;
    z-index: 9;
    border-left: 1px dashed #C7C9CE;
    padding-left: 27px;
}
.ticket-box-items .ticket-left p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.ticket-box-items .ticket-left .number {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--header);
    font-family: iranyekan;
    writing-mode: vertical-rl;
    transform: rotate(0deg);
    margin-top: 8px;
}
.ticket-box-items .ticket-left h6 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.ticket-box-items .content {
    position: relative;
    z-index: 9;
}
.ticket-box-items .content span {
    margin-bottom: 10px;
    display: inline-block;
}
.ticket-box-items .content span img {
    margin-left: 6px;
}
.ticket-box-items .content span b {
    font-weight: 700;
    color: var(--header);
}
.ticket-box-items .content .match-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.ticket-box-items .content .match-list h3 {
    font-size: 20px;
}
.ticket-box-items .content .theme-btn {
    height: 49px;
    line-height: 49px;
    padding: 0 22px;
}

.ticket-scaner {
    background-color: #030523;
    padding: 21px 20px;
    margin-top: 30px;
    text-align: center;
}
.ticket-scaner h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}
.ticket-scaner .theme-btn {
    font-size: 14px;
    padding: 0 16px;
    margin-top: 17px;
}
.ticket-scaner .theme-btn::before {
    background-color: var(--white);
}
.ticket-scaner .theme-btn:hover {
    color: var(--header);
}

.upcooming-match-wrapper .upcomming-match-items-2 {
    background-color: #F5F6F6;
    padding: 24px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .top-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--theme);
    padding-bottom: 15px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .top-head h6 {
    font-size: 14px;
    font-weight: 700;
    font-family: iranyekan;
}
.upcooming-match-wrapper .upcomming-match-items-2 .top-head h6 span {
    font-weight: 600;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li:not(:last-child) {
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li img {
    width: initial;
    height: initial;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list ul li span {
    font-weight: 700;
    color: var(--header);
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .match-list h3 span {
    font-size: 16px;
    font-weight: 600;
    font-family: iranyekan;
    color: #464E5E;
}
.upcooming-match-wrapper .upcomming-match-items-2 .bottom-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(199, 201, 206, 0.24);
    margin-top: 15px;
    padding-top: 12px;
}
.upcooming-match-wrapper .upcomming-match-items-2 .bottom-head p {
    font-size: 14px;
    color: var(--header);
    font-weight: 600;
}
.upcooming-match-wrapper .upcomming-match-items-2 .bottom-head span {
    font-size: 14px;
    color: var(--header);
    font-weight: 700;
}
.upcooming-match-wrapper .upcomming-match-slider {
    height: 475px;
}
@media (max-width: 1399px) {
    .upcooming-match-wrapper .upcomming-match-slider {
        height: 530px;
    }
}
@media (max-width: 1199px) {
    .upcooming-match-wrapper .upcomming-match-slider {
        height: 475px;
    }
}
@media (max-width: 767px) {
    .upcooming-match-wrapper .upcomming-match-slider {
        height: 242px;
    }
}
.upcooming-match-wrapper .fifa-ranking-box {
    padding: 50px 48px;
    background-color: #F5F6F6;
}
@media (max-width: 991px) {
    .upcooming-match-wrapper .fifa-ranking-box {
        padding: 35px;
    }
}
@media (max-width: 575px) {
    .upcooming-match-wrapper .fifa-ranking-box {
        padding: 28px;
    }
}
.upcooming-match-wrapper .fifa-ranking-box h3 {
    font-size: 32px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 25px;
    margin-bottom: 28px;
}
.upcooming-match-wrapper .fifa-ranking-box table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 16px;
    border-radius: 0;
    font-weight: 600;
    overflow: hidden;
}
@media (max-width: 767px) {
    .upcooming-match-wrapper .fifa-ranking-box table {
        width: 700px;
    }
}
.upcooming-match-wrapper .fifa-ranking-box thead {
    background: #ffecec;
    color: var(--header);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}
.upcooming-match-wrapper .fifa-ranking-box thead th {
    padding: 15px;
    color: var(--header);
    font-weight: 600;
    font-size: 16px;
}
.upcooming-match-wrapper .fifa-ranking-box tbody tr {
    background: #fff;
    border-bottom: 1px solid #eee;
}
.upcooming-match-wrapper .fifa-ranking-box tbody tr:nth-child(even) {
    background: #f9f9f9;
}
.upcooming-match-wrapper .fifa-ranking-box tbody td {
    padding: 15px;
    text-align: center;
    font-weight: 700;
    color: #464E5E;
    font-size: 18px;
}
.upcooming-match-wrapper .fifa-ranking-box .rank {
    color: #464E5E;
    font-weight: 700;
}
.upcooming-match-wrapper .fifa-ranking-box .country {
    text-align: right;
    font-weight: bold;
    color: #0a0a23;
    white-space: nowrap;
}
.upcooming-match-wrapper .fifa-ranking-box .country img {
    width: 30px;
    height: 20px;
    vertical-align: middle;
    margin-left: 10px;
    border: 1px solid #ddd;
}
.upcooming-match-wrapper .fifa-ranking-box .change {
    color: #666;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.upcooming-match-wrapper .fifa-ranking-box .circle {
    border: 1px solid #bbb;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.match-start-wrapper-3 {
    margin-top: -125px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1199px) {
    .match-start-wrapper-3 {
        margin-top: 80px;
    }
}
.match-start-wrapper-3 .match-start-box-3 {
    position: relative;
    text-align: center;
    z-index: 9;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3 {
        background-image: none !important;
        background-color: #030523;
    }
}
.match-start-wrapper-3 .match-start-box-3.style-top {
    margin-top: -10px;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3.style-top {
        margin-top: 0;
    }
}
.match-start-wrapper-3 .match-start-box-3 .content {
    padding: 40px 0;
    margin-right: 60px;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3 .content {
        margin-right: 0;
        text-align: center;
    }
}
.match-start-wrapper-3 .match-start-box-3 .content.style-2 {
    margin-right: 0;
    margin-right: -40px;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3 .content.style-2 {
        margin-right: 0;
        text-align: center;
    }
}
.match-start-wrapper-3 .match-start-box-3 .left-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
@media (max-width: 1399px) {
    .match-start-wrapper-3 .match-start-box-3 .left-shape {
        display: none;
    }
}
.match-start-wrapper-3 .match-start-box-3 h3 {
    color: var(--white);
    margin-bottom: 9px;
}
.match-start-wrapper-3 .match-start-box-3 p {
    color: var(--white);
    margin-bottom: 20px;
}
.match-start-wrapper-3 .match-start-box-3 h2 {
    font-size: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--white);
}
.match-start-wrapper-3 .match-start-box-3 h2 span {
    font-size: 18px;
    font-weight: 700;
    font-family: iranyekan;
    color: var(--white);
    opacity: 0.7;
}
.match-start-wrapper-3 .match-start-box-3 .theme-btn {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
}
.match-start-wrapper-3 .match-start-box-3 .theme-btn::before {
    background-color: var(--white);
}
.match-start-wrapper-3 .match-start-box-3 .theme-btn:hover {
    color: var(--header);
}
.match-start-wrapper-3 .match-vs-start {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    background-color: #F5F6F6;
    backdrop-filter: blur(215.5px);
    height: 100%;
    padding: 63px 0;
}
.match-start-wrapper-3 .match-vs-start .vs-text {
    color: #030523;
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: iranyekan;
}

.ranking-wrapper-3 .ranking-box-3-items {
    /* =========================
     Responsive (max-width: 1399px)
     ========================= */
}
.ranking-wrapper-3 .ranking-box-3-items .score-table {
    width: 100%;
    overflow-x: auto;
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-family: iranyekan;
    font-weight: 600;
    background: #030523;
    color: var(--white);
}
@media (max-width: 1199px) {
    .ranking-wrapper-3 .ranking-box-3-items .score-table table {
        width: 800px;
    }
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table thead {
    background: #030523;
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table thead th {
    padding: 12px 10px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    border-left: 1px solid rgba(199, 201, 206, 0.16);
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td {
    padding: 12px 12px;
    border-top: 1px solid rgba(199, 201, 206, 0.16);
    border-left: 1px solid rgba(199, 201, 206, 0.16);
    font-size: 15px;
    font-weight: 700;
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td:first-child {
    font-weight: bold;
    color: var(--white);
}
.ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td img {
    width: 32px;
    height: 32px;
    margin-left: 8px;
    vertical-align: middle;
}
@media (max-width: 1399px) {
    .ranking-wrapper-3 .ranking-box-3-items .score-table table thead th {
        font-size: 12px;
        padding: 12px 8px;
    }
    .ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td {
        font-size: 13px;
        padding: 10px 8px;
    }
    .ranking-wrapper-3 .ranking-box-3-items .score-table table tbody td img {
        width: 26px;
        height: 26px;
        margin-left: 6px;
    }
}
.ranking-wrapper-3 .bg-white-01 {
    background: rgba(255, 255, 255, 0.1);
}
.ranking-wrapper-3 .man-image {
    height: 450px;
}
@media (max-width: 1399px) {
    .ranking-wrapper-3 .man-image {
        height: 400px;
    }
}
@media (max-width: 1199px) {
    .ranking-wrapper-3 .man-image {
        height: 396px;
    }
}
@media (max-width: 991px) {
    .ranking-wrapper-3 .man-image {
        height: initial;
    }
}
.ranking-wrapper-3 .man-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tournaments-league-wrapper-3 .tournaments-league-box {
    position: relative;
    z-index: 9;
    margin-top: 30px;
}
@media (max-width: 575px) {
    .tournaments-league-wrapper-3 .tournaments-league-box {
        background-color: #fff;
        padding: 20px;
    }
}
.tournaments-league-wrapper-3 .tournaments-league-box .thumb {
    margin: 0 auto;
    padding: 12px;
}
.tournaments-league-wrapper-3 .tournaments-league-box .thumb img {
    width: 100%;
    height: 100%;
}
.tournaments-league-wrapper-3 .tournaments-league-box::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 238 232"><path fill-rule="evenodd" clip-rule="evenodd" d="M237.839 0H119.019H0.161465C-5.07895 194.525 118.981 232 118.981 232C118.981 232 243.079 194.525 237.839 0Z" /></svg>');
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: cover;
    background-color: #fff;
    z-index: -1;
}
@media (max-width: 575px) {
    .tournaments-league-wrapper-3 .tournaments-league-box::before {
        display: none;
    }
}
.tournaments-league-wrapper-3 .tournaments-league-box h3 {
    font-size: 20px;
    text-align: center;
}
.tournaments-league-wrapper-3 .tournaments-league-box .icon {
    text-align: center;
    margin-top: 25px;
    position: relative;
    z-index: 9;
    padding-bottom: 26px;
}
.tournaments-league-wrapper-3 .tournaments-league-box .icon .icon-bg {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    z-index: -1;
    padding-bottom: 0;
}

.upcoming-match-box-items-3 {
    margin-top: 30px;
    background-color: var(--white);
    padding: 26px 30px;
}
.upcoming-match-box-items-3 .top-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .upcoming-match-box-items-3 .top-items {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
}
.upcoming-match-box-items-3 .top-items p {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--header);
}
.upcoming-match-box-items-3 .top-items span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #464E5E;
}
.upcoming-match-box-items-3 .match-logo-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}
.upcoming-match-box-items-3 .match-logo-items .content {
    text-align: center;
    max-width: 200px;
    width: 100%;
}
.upcoming-match-box-items-3 .match-logo-items .content p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #464E5E;
    margin-top: 5px;
}
.upcoming-match-box-items-3 .bottom-items {
    border-top: 1px solid rgba(199, 201, 206, 0.24);
    margin-top: 24px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .upcoming-match-box-items-3 .bottom-items {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
}
.upcoming-match-box-items-3 .bottom-items p {
    color: var(--header);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.upcoming-match-section {
    margin-top: -130px;
    padding-top: 220px !important;
}

.team-box-items-3 {
    margin-top: 30px;
    background-color: #F5F6F6;
}
.team-box-items-3 .thumb img {
    width: 100%;
    height: 100%;
}
.team-box-items-3 .content {
    padding: 28px 24px;
    position: relative;
}
.team-box-items-3 .content .flag-image {
    position: absolute;
    left: 24px;
    top: 28px;
}
.team-box-items-3 .content h3 {
    margin-bottom: 5px;
}
.team-box-items-3 .content h3 a:hover {
    color: var(--theme);
}
.team-box-items-3 .content p {
    font-size: 15px;
    font-weight: 700;
    margin-top: 15px;
}
.team-box-items-3 .content p b {
    color: #030523;
}
.team-box-items-3 .content .theme-color-text {
    color: var(--theme);
    font-size: 16px;
    font-weight: 700;
}

.match-moments-image {
    margin-top: 26px;
    position: relative;
    overflow: hidden;
}
.match-moments-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    top: 0;
    bottom: 0px;
    left: 0;
    background: rgba(29, 29, 29, 0.6);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    width: 100%;
    height: 100%;
    z-index: 9;
}
.match-moments-image img {
    width: 100%;
    height: 100%;
}
.match-moments-image .gt-icon {
    display: inline-block;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}
.match-moments-image:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}
.match-moments-image:hover .gt-icon {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1399px) {
    .score-wrapper-3 .score-logo {
        max-width: 288px;
        margin: 0 auto;
    }
    .score-wrapper-3 .score-logo img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 767px) {
    .score-wrapper-3 .score-logo {
        max-width: 180px;
    }
}
@media (max-width: 575px) {
    .score-wrapper-3 .score-logo {
        max-width: 140px;
    }
}
.score-wrapper-3 .score-content .score-box-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.32);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .score-wrapper-3 .score-content .score-box-items {
        flex-wrap: wrap;
        gap: 16px;
    }
}
.score-wrapper-3 .score-content .score-box-items .content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.score-wrapper-3 .score-content .score-box-items .content h3 {
    color: var(--white);
    text-align: right;
}
@media (max-width: 1399px) {
    .score-wrapper-3 .score-content .score-box-items .content h3 {
        font-size: 20px;
    }
}
.score-wrapper-3 .score-content .score-box-items .content .title-box {
    background-color: var(--theme);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
}
.score-wrapper-3 .score-content .score-box-items .content .title-box.bg-2 {
    background: rgba(70, 78, 94, 0.32);
    backdrop-filter: blur(9.5px);
}
.score-wrapper-3 .score-content .score-box-items .content .title-box h4 {
    font-size: 20px;
    color: var(--white);
    font-weight: 900;
}
.score-wrapper-3 .score-content .score-box-items .content .title-box h2 {
    font-size: 40px;
    color: var(--white);
    font-weight: 900;
    font-family: 'iranyekan' !important;
}
@media (max-width: 1399px) {
    .score-wrapper-3 .score-content .score-box-items .content .title-box h2 {
        font-size: 28px;
    }
}
.score-wrapper-3 .score-content ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .score-wrapper-3 .score-content ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}
.score-wrapper-3 .score-content ul li {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
    font-family: 'iranyekan';
}

.score-section-3 {
    position: relative;
    z-index: 9;
}
.score-section-3 .shape-1 {
    position: absolute;
    top: 0;
    right: 17%;
    z-index: -1;
}
@media (max-width: 1600px) {
    .score-section-3 .shape-1 {
        right: 6%;
    }
}
@media (max-width: 1399px) {
    .score-section-3 .shape-1 {
        display: none;
    }
}
.score-section-3 .shape-2 {
    position: absolute;
    bottom: 0;
    right: 11%;
    z-index: -1;
}
@media (max-width: 1600px) {
    .score-section-3 .shape-2 {
        right: 0;
    }
}
@media (max-width: 1399px) {
    .score-section-3 .shape-2 {
        display: none;
    }
}
.score-section-3 .shape-3 {
    position: absolute;
    top: 0;
    left: 12%;
    z-index: -1;
}
@media (max-width: 1600px) {
    .score-section-3 .shape-3 {
        left: 0;
    }
}
@media (max-width: 1399px) {
    .score-section-3 .shape-3 {
        display: none;
    }
}
.score-section-3 .shape-4 {
    position: absolute;
    bottom: 0;
    left: 17%;
    z-index: -1;
}
@media (max-width: 1600px) {
    .score-section-3 .shape-4 {
        left: 6%;
    }
}
@media (max-width: 1399px) {
    .score-section-3 .shape-4 {
        display: none;
    }
}

.match-moments-section .nav {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0;
}
@media (max-width: 1199px) {
    .match-moments-section .nav {
        flex-wrap: wrap;
        gap: 14px;
    }
}
.match-moments-section .nav .nav-item {
    padding: 0;
}
.match-moments-section .nav .nav-item .nav-link {
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
}
.match-moments-section .nav .nav-item .nav-link i {
    margin-right: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.match-moments-section .nav .nav-item .nav-link.active {
    color: var(--theme);
    text-decoration: underline;
}
.match-moments-section .nav .nav-item .nav-link.active i {
    opacity: 1;
    visibility: visible;
}

.ticket-wrapper p {
    font-size: 16px;
    font-weight: 600;
    color: #464E5E;
}
.ticket-wrapper .calender-list {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 20px;
    margin-bottom: 25px;
}
@media (max-width: 1199px) {
    .ticket-wrapper .calender-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .calender-list li {
    color: var(--header);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ticket-wrapper .ticket-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .ticket-wrapper .ticket-title {
        font-size: 26px;
    }
}
.ticket-wrapper .check-list li:not(:last-child) {
    margin-bottom: 15px;
}
.ticket-wrapper .check-list li i {
    color: var(--theme);
    margin-left: 5px;
    font-size: 20px;
}
.ticket-wrapper .check-list li b {
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
    margin-left: 6px;
}
.ticket-wrapper .form-clt {
    max-width: 250px;
    width: 100%;
    display: inline-block;
}
.ticket-wrapper .form-clt .form .single-select {
    border: 1px solid var(--theme);
    background-color: transparent;
    width: 100%;
    padding: 17px 30px;
    height: initial;
    line-height: initial;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    letter-spacing: 0.5px;
    border-radius: 0;
}
.ticket-wrapper .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--header);
    border-left: 2px solid var(--header);
    width: 8px;
    height: 8px;
    left: 30px;
}
.ticket-wrapper .form-clt .form .single-select .list {
    width: 100%;
}
.ticket-wrapper .ticket-list-items {
    background-color: var(--bg);
    display: block;
    padding: 32px;
}
.ticket-wrapper .ticket-list-items .ticket-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 32px;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-list-items .ticket-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .ticket-list-items h3 {
    font-size: 32px;
    font-weight: 900;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.ticket-wrapper .ticket-list-items .left-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.ticket-wrapper .ticket-list-items .left-item h4 {
    font-size: 24px;
    font-weight: 900;
}
@media (max-width: 1399px) {
    .ticket-wrapper .ticket-list-items .left-item h4 {
        font-size: 18px;
    }
}
.ticket-wrapper .ticket-list-items .right-items {
    display: flex;
    align-items: center;
    gap: 24px;
}
.ticket-wrapper .ticket-list-items .right-items h5 {
    font-size: 20px;
    font-weight: 900;
    color: var(--header);
}
.ticket-wrapper .ticket-list-items .right-items h5 sub {
    font-size: 14px;
    color: var(--text);
    font-family: iranyekan;
    margin-right: 5px;
}
.ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity {
    border-radius: 0;
    border: 1px solid rgba(199, 201, 206, 0.24);
}
@media (max-width: 767px) {
    .ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity {
        flex-basis: 100%;
    }
}
.ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity button i {
    font-size: 18px;
    color: var(--header);
}
.ticket-wrapper .ticket-list-items .right-items .price-quantity .quantity .quantityValue {
    width: 40px;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    font-family: iranyekan;
    padding: 0;
    color: var(--header);
    border: unset;
    background: transparent;
}
.ticket-wrapper .ticket-list-items .quantity-items {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-list-items .quantity-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .ticket-list-items .quantity-items .quantity-list {
    display: flex;
    align-items: center;
    gap: 70px;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-list-items .quantity-items .quantity-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .ticket-list-items .quantity-items .quantity-list p {
    font-size: 16px;
    font-weight: 600;
}
.ticket-wrapper .ticket-list-items .quantity-items .quantity-list p b {
    color: #030523;
    font-weight: 700;
}
.ticket-wrapper .ticket-details-information {
    margin-right: 40px;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-details-information {
        margin-right: 0;
    }
}
.ticket-wrapper .ticket-details-information h3 {
    font-size: 32px;
    font-weight: 900;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.ticket-wrapper .ticket-details-information ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 1199px) {
    .ticket-wrapper .ticket-details-information ul li {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.ticket-wrapper .ticket-details-information ul li:not(:last-child) {
    margin-bottom: 15px;
}
.ticket-wrapper .ticket-details-information ul li span {
    flex-basis: 50%;
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
}

.latest-world-ranking-wrapper .content {
    border-bottom: 1px solid rgba(199, 201, 206, 0.16);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.latest-world-ranking-wrapper .content h3 {
    font-size: 32px;
}
.latest-world-ranking-wrapper .content .text-item {
    display: flex;
    align-items: center;
    gap: 72px;
    margin-top: 10px;
}
@media (max-width: 1199px) {
    .latest-world-ranking-wrapper .content .text-item {
        gap: 10px;
        flex-wrap: wrap;
    }
}
.latest-world-ranking-wrapper .ranking-category-items {
    margin-bottom: 35px;
}
.latest-world-ranking-wrapper .ranking-category-items .filter-btn {
    display: inline-block;
    background-color: var(--theme);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    height: 50px;
    line-height: 50px;
    padding: 0 35px;
}
.latest-world-ranking-wrapper .ranking-category-items .filter-btn img {
    margin-right: 10px;
}
.latest-world-ranking-wrapper .ranking-category-items .filter-btn:hover {
    background-color: var(--header);
}
.latest-world-ranking-wrapper .ranking-category-items .form-clt .form .single-select {
    border: 1px solid rgba(199, 201, 206, 0.24);
    background-color: transparent;
    width: 100%;
    padding: 17px 18px;
    height: initial;
    line-height: initial;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    border-radius: 0;
}
.latest-world-ranking-wrapper .ranking-category-items .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--header);
    border-left: 2px solid var(--header);
    width: 8px;
    height: 8px;
    left: 12px;
}
.latest-world-ranking-wrapper .ranking-category-items .form-clt .form .single-select .list {
    width: 100%;
}
.latest-world-ranking-wrapper .ranking-box-style {
    background-color: #F5F6F6;
    text-align: center;
    padding: 30px 18px;
}
.latest-world-ranking-wrapper .ranking-box-style p {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    margin-top: 15px;
    line-height: 1;
}
.latest-world-ranking-wrapper .ranking-box-style span {
    font-size: 14px;
    font-weight: 600;
}
.latest-world-ranking-wrapper .ranking-box-style h3 {
    font-size: 32px;
    font-weight: 900;
    margin-top: 7px;
}
.latest-world-ranking-wrapper .ranking-box-style .color-theme {
    color: var(--theme);
}
.latest-world-ranking-wrapper .ranking-box-style .color-theme2 {
    color: #881C0B;
}
.latest-world-ranking-wrapper .latest-world-ranking-table {
    margin-top: 70px;
}
@media (max-width: 767px) {
    .latest-world-ranking-wrapper .latest-world-ranking-table {
        margin-top: 40px;
    }
}
.latest-world-ranking-wrapper .latest-world-ranking-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
@media (max-width: 1399px) {
    .latest-world-ranking-wrapper .latest-world-ranking-table table {
        width: 1100px;
    }
}
.latest-world-ranking-wrapper .latest-world-ranking-table table thead {
    background: #f7f7f7;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table th, .latest-world-ranking-wrapper .latest-world-ranking-table table td {
    padding: 14px 15px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
}
.latest-world-ranking-wrapper .latest-world-ranking-table table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--text);
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .positive {
    color: green;
    font-weight: 600;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .negative {
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 28px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-left: 5px;
    padding: 0;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge.w {
    background: var(--theme);
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge.d {
    background: #464E5E;
}
.latest-world-ranking-wrapper .latest-world-ranking-table table .badge.l {
    background: #030523;
}

.club-lineup-wrapper .club-lineup-left .club-lineup-head {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 24px;
    margin-bottom: 35px;
}
.club-lineup-wrapper .club-lineup-left .club-lineup-head h3 {
    font-size: 32px;
}
.club-lineup-wrapper .club-lineup-left .club-lineup-head span {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--header);
}
.club-lineup-wrapper .club-lineup-left .club-lineup-head span img {
    margin-left: 8px;
}
.club-lineup-wrapper .club-lineup-left ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.club-lineup-wrapper .club-lineup-left ul li:not(:last-child) {
    margin-bottom: 30px;
}
.club-lineup-wrapper .club-lineup-left ul li .lineup-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.club-lineup-wrapper .club-lineup-left ul li .lineup-item .content h3 {
    font-size: 20px;
    font-weight: 900;
}
.club-lineup-wrapper .club-lineup-left ul li .lineup-item .content h3 span {
    font-size: 16px;
    font-weight: 600;
    font-family: iranyekan;
}
.club-lineup-wrapper .club-lineup-left ul li .number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #F5F6F6;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
}
.club-lineup-wrapper .match-information-box {
    border-right: 1px solid rgba(199, 201, 206, 0.24);
    margin-right: 40px;
    padding-right: 40px;
}
@media (max-width: 1199px) {
    .club-lineup-wrapper .match-information-box {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }
}
.club-lineup-wrapper .match-information-box ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.club-lineup-wrapper .match-information-box ul li:not(:last-child) {
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 31px;
    margin-bottom: 31px;
}
.club-lineup-wrapper .match-information-box ul li .color-text-1 {
    color: var(--theme);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: iranyekan;
}
@media (max-width: 575px) {
    .club-lineup-wrapper .match-information-box ul li .color-text-1 {
        font-size: 25px;
    }
}
.club-lineup-wrapper .match-information-box ul li .sub-text {
    color: #464E5E;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.club-lineup-wrapper .match-information-box ul li .color-text-2 {
    color: var(--header);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: iranyekan;
}
@media (max-width: 575px) {
    .club-lineup-wrapper .match-information-box ul li .color-text-2 {
        font-size: 25px;
    }
}
.club-lineup-wrapper .match-information-box .match-head-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 26px;
    margin-bottom: 26px;
}
@media (max-width: 767px) {
    .club-lineup-wrapper .match-information-box .match-head-title {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.club-lineup-wrapper .match-information-box .match-head-title span {
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
    display: flex;
    align-items: center;
    gap: 16px;
}
.club-lineup-wrapper .match-information-box .match-head-title h3 {
    font-size: 32px;
}
@media (max-width: 575px) {
    .club-lineup-wrapper .match-information-box .match-head-title h3 {
        font-size: 26px;
    }
}

.lineup-bg-wrapper {
    padding: 48px;
    margin-top: 240px;
}
@media (max-width: 991px) {
    .lineup-bg-wrapper {
        margin-top: 140px;
    }
}
.lineup-bg-wrapper .lineup-content {
    text-align: center;
    margin-bottom: 40px;
}
.lineup-bg-wrapper .text-item {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin-top: 10px;
}
@media (max-width: 575px) {
    .lineup-bg-wrapper .text-item {
        flex-wrap: wrap;
        gap: 18px;
    }
}
.lineup-bg-wrapper .lineup-result-items {
    display: flex;
    justify-content: center;
    gap: 100px;
}
@media (max-width: 1199px) {
    .lineup-bg-wrapper .lineup-result-items {
        gap: 30px;
    }
}
@media (max-width: 991px) {
    .lineup-bg-wrapper .lineup-result-items {
        display: grid;
        gap: 30px;
        justify-content: start;
    }
}
@media (max-width: 991px) {
    .lineup-bg-wrapper .lineup-result-items .left-item p {
        text-align: left !important;
    }
}
.lineup-bg-wrapper .lineup-result-items .left-item .thumb {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .lineup-bg-wrapper .lineup-result-items .left-item .thumb {
        margin-bottom: 15px;
        display: grid;
    }
}
.lineup-bg-wrapper .lineup-result-items .left-item .thumb h3 {
    font-size: 32px;
}
@media (max-width: 575px) {
    .lineup-bg-wrapper .lineup-result-items .left-item .thumb h3 {
        font-size: 25px;
    }
}
.lineup-bg-wrapper .lineup-result-items .score-result {
    display: inline-block;
    height: 56px;
    line-height: 56px;
    padding: 0 30px;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.playing-ranking-items {
    display: flex;
    align-items: center;
}
@media (max-width: 1399px) {
    .playing-ranking-items {
        display: block;
    }
}
.playing-ranking-items .thumb {
    max-width: 368px;
}
@media (max-width: 1399px) {
    .playing-ranking-items .thumb {
        max-width: initial;
        margin-bottom: 30px;
    }
}
.playing-ranking-items .thumb img {
    width: 100%;
    height: 100%;
}
.playing-ranking-items .content {
    border-right: 4px solid var(--theme);
    background: linear-gradient(270deg, rgba(254, 89, 0, 0) 88.44%, var(--Primary-500, rgba(254, 89, 0, 0.08)) 98.58%), var(--BG-Sedentary, #F5F6F6);
    padding: 28px 32px;
    max-width: 500px;
    width: 100%;
}
@media (max-width: 1399px) {
    .playing-ranking-items .content {
        max-width: initial;
    }
}
.playing-ranking-items .content .top-content {
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.playing-ranking-items .content .sub-content p {
    font-size: 14px;
    font-weight: 600;
}
.playing-ranking-items .content .theme-btn {
    height: 48px;
    line-height: 48px;
    padding: 0 18px;
    margin-top: 25px;
}
.playing-ranking-items .content table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 16px;
}
@media (max-width: 1399px) {
    .playing-ranking-items .content table {
        width: 600px;
    }
}
.playing-ranking-items .content thead {
    background: #f9f9f9;
}
.playing-ranking-items .content thead th {
    padding: 10px 10px;
    font-weight: 700;
    color: #030523;
    font-size: 16px;
    border-bottom: 2px solid #eee;
}
.playing-ranking-items .content tbody td {
    padding: 10px 10px;
    font-weight: 600;
    color: #030523;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}
.playing-ranking-items .content tbody tr:last-child td {
    border-bottom: none;
}

.playing-result-box2 {
    background-color: #F5F6F6;
    padding: 26px 30px;
}
@media (max-width: 1399px) {
    .playing-result-box2 {
        height: 500px;
        overflow-y: auto;
        overflow-x: hidden;
    }
}
.playing-result-box2.style-2 {
    background-color: var(--white);
    padding: 35px 30px;
}
.playing-result-box2.style-2 .match-result-box {
    padding-top: 22px;
    margin-bottom: 22px;
    border-top: 1px solid 1px solid rgba(199, 201, 206, 0.24);
}
.playing-result-box2 h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}
.playing-result-box2 .match-result-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(199, 201, 206, 0.24);
    padding-top: 15px;
    margin-bottom: 15px;
}
@media (max-width: 1399px) {
    .playing-result-box2 .match-result-box {
        display: grid;
        justify-content: center;
    }
}
.playing-result-box2 .match-result-box .match-result {
    text-align: center;
    margin: 0 auto;
}
.playing-result-box2 .match-result-box .match-result p {
    font-weight: 700;
    color: #030523;
    margin-top: 10px;
}
.playing-result-box2 .match-result-box .content {
    text-align: center;
}
.playing-result-box2 .match-result-box .result-box {
    text-align: center;
    border: 1px solid rgba(199, 201, 206, 0.16);
    padding: 12px 24px;
    margin-top: 12px;
}
.playing-result-box2 .match-result-box .result-box h4 {
    font-size: 15px;
    font-weight: 900;
}

.upcoming-match-section {
    position: relative;
}
.upcoming-match-section .section-title {
    z-index: initial;
}
.upcoming-match-section .array-button-2 {
    position: relative;
    z-index: 99;
}
@media (max-width: 1199px) {
    .upcoming-match-section .array-button-2 {
        display: none !important;
    }
}
.upcoming-match-section .array-button-2 .array-prev2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
}
.upcoming-match-section .array-button-2 .array-next2 {
    position: absolute;
    top: 0;
    left: 0;
}

/* 02.7 Feature */
.counter-wrapper {
    display: flex;
    justify-content: space-between;
    background-color: var(--white);
    padding: 40px 32px;
    margin-bottom: -80px;
    position: relative;
    z-index: 99;
}
@media (max-width: 1199px) {
    .counter-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
    }
}
.counter-wrapper .counter-items {
    border-left: 1px solid #C7C9CE;
    padding-left: 50px;
}
@media (max-width: 1399px) {
    .counter-wrapper .counter-items {
        padding-left: 0;
        border-left: none;
    }
}
.counter-wrapper .counter-items.border-none {
    border-left: none;
    padding-left: 0;
}
.counter-wrapper .counter-items h6 {
    font-family: iranyekan;
    font-size: 20px;
    font-weight: 700;
}
.counter-wrapper .counter-items .icon-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}
.counter-wrapper .counter-items .icon-box h2 {
    font-size: 40px;
    color: var(--theme);
    font-weight: 900;
}

.feature-progress-wrapper {
    margin-top: -150px;
    position: relative;
    z-index: 99;
}
@media (max-width: 991px) {
    .feature-progress-wrapper {
        margin-top: 80px;
    }
}
.feature-progress-wrapper .content {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-top: -180px;
}
@media (max-width: 991px) {
    .feature-progress-wrapper .content {
        margin-top: 0;
        flex-wrap: wrap;
        gap: 30px;
    }
}
.feature-progress-wrapper .content .list-item ul {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-progress-wrapper .content .list-item ul li .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--theme);
}
.feature-progress-wrapper .content .list-item ul .box-list {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(199, 201, 206, 0.24);
    padding: 12px 16px;
    line-height: 1;
}
.feature-progress-wrapper .content h3 {
    font-size: 40px;
    font-weight: 900;
}
@media (max-width: 1199px) {
    .feature-progress-wrapper .content h3 {
        font-size: 33px;
    }
}
@media (max-width: 767px) {
    .feature-progress-wrapper .content h3 {
        font-size: 35px;
    }
}
@media (max-width: 575px) {
    .feature-progress-wrapper .content h3 {
        font-size: 30px;
    }
}
.feature-progress-wrapper .content h3 span {
    color: var(--theme);
}
.feature-progress-wrapper .feature-progress-thumb {
    position: relative;
}
@media (max-width: 1399px) {
    .feature-progress-wrapper .feature-progress-thumb img {
        width: 100%;
        height: 100%;
    }
}
.feature-progress-wrapper .feature-progress-thumb .video-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 1199px) {
    .feature-progress-wrapper .feature-progress-thumb .video-btn {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.basketball-leagues-items .content {
    text-align: center;
    border: 1px solid rgba(199, 201, 206, 0.24);
    padding: 40px 45px;
}
.basketball-leagues-items .themb img {
    width: 100%;
    height: 100%;
}

.hottest-box-items-3 {
    margin-top: 30px;
}
.hottest-box-items-3 .hottest-thumb {
    position: relative;
    height: 450px;
}
.hottest-box-items-3 .hottest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hottest-box-items-3 .hottest-thumb .post-box {
    position: absolute;
    display: inline-block;
    font-weight: 700;
    color: var(--header);
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--white);
    padding: 11px 19px;
    border-radius: 100px;
    line-height: 1;
}
.hottest-box-items-3 .hottest-thumb .post-box-2 {
    position: absolute;
    display: inline-block;
    font-weight: 700;
    color: var(--header);
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--white);
    padding: 11px 19px;
    border-radius: 100px;
    line-height: 1;
}
@media (max-width: 1199px) {
    .hottest-box-items-3 .hottest-thumb .post-box-2 {
        bottom: initial;
        top: 24px;
    }
}
.hottest-box-items-3 .hottest-thumb .video-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hottest-box-items-3 .hottest-thumb .hottest-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.hottest-box-items-3 .hottest-thumb .hottest-content h3 a {
    color: var(--white);
}
.hottest-box-items-3 .hottest-thumb .hottest-content h3 a:hover {
    color: var(--theme);
}
.hottest-box-items-3 .hottest-thumb .hottest-content p {
    color: var(--white);
}

.trophy-section {
    margin-top: -67px;
    margin-bottom: -42px;
}

/* 02.8 Footer */
.footer-subscribe-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
    padding-bottom: 80px;
}
@media (max-width: 1399px) {
    .footer-subscribe-wrapper {
        flex-wrap: wrap;
        justify-content: start;
        gap: 25px;
    }
}
.footer-subscribe-wrapper h3 {
    color: var(--white);
}
.footer-subscribe-wrapper form {
    max-width: 490px;
    width: 100%;
    position: relative;
}
.footer-subscribe-wrapper form input {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    border: none;
    outline: none;
    width: 100%;
    padding: 20px 20px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-subscribe-wrapper form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.footer-subscribe-wrapper form button {
    position: absolute;
    left: 5px;
    bottom: 0;
    top: 5px;
}
.footer-subscribe-wrapper .footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}
@media (max-width: 767px) {
    .footer-subscribe-wrapper .footer-right {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.footer-subscribe-wrapper .footer-right .social-icon {
    gap: 16px;
}
.footer-subscribe-wrapper .footer-right .social-icon a {
    display: inline-block;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(46px);
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
}
.footer-subscribe-wrapper .footer-right .social-icon a:hover {
    background-color: var(--theme);
}

.footer-widget-wrapper {
    padding: 50px 0 80px;
}
.footer-widget-wrapper .footer-widget-items {
    margin-top: 30px;
}
.footer-widget-wrapper .widget-head {
    margin-bottom: 30px;
}
.footer-widget-wrapper .widget-head h3 {
    color: #ffffff;
    font-size: 20px;
}
.footer-widget-wrapper .footer-content p {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .list-area li a {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .list-area li a:hover {
    color: var(--theme);
}
.footer-widget-wrapper .list-area li:not(:last-child) {
    margin-bottom: 15px;
}
.footer-widget-wrapper .footer-contact-list li {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-contact-list li a {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-contact-list li:not(:last-child) {
    margin-bottom: 15px;
}
.footer-widget-wrapper .app-items {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-widget-wrapper .footer-form form {
    position: relative;
}
.footer-widget-wrapper .footer-form form input {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    border: none;
    outline: none;
    width: 100%;
    padding: 20px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}
.footer-widget-wrapper .footer-form form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.footer-widget-wrapper .footer-form form button {
    position: absolute;
    left: 5px;
    bottom: 0;
    top: 5px;
}
.footer-widget-wrapper .footer-form form button .theme-btn {
    padding: 0 24px;
}
.footer-widget-wrapper .footer-form .form-check {
    margin-top: 20px !important;
    margin: 0;
    padding: 0;
}
@media (max-width: 1399px) {
    .footer-widget-wrapper .footer-form .form-check {
        margin-top: 0;
    }
}
.footer-widget-wrapper .footer-form .form-check .form-check-input {
    float: left;
    margin-right: 0;
    transform: translateY(0);
    width: 16px;
    height: 16px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
}
.footer-widget-wrapper .footer-form .form-check .form-check-input:checked {
    background-color: var(--theme);
    border-color: var(--theme);
}
.footer-widget-wrapper .footer-form .form-check .form-check-label {
    margin-right: 10px;
    color: var(--white);
    font-weight: 600;
    opacity: 0.8;
    font-size: 14px;
}
.footer-widget-wrapper .footer-form .form-check .form-check-label a {
    text-decoration: underline;
    color: var(--white);
}
@media (max-width: 575px) {
    .footer-widget-wrapper .footer-form .form-check .form-check-label {
        margin-right: 22px;
        font-size: 14px;
    }
}
.footer-widget-wrapper .footer-form .social-icon {
    margin-top: 30px;
    gap: 12px;
}
.footer-widget-wrapper .footer-form .social-icon a {
    display: inline-block;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(46px);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
}
.footer-widget-wrapper .footer-form .social-icon a:hover {
    background-color: var(--theme);
}
.footer-widget-wrapper .footer-post-items li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-widget-wrapper .footer-post-items li:not(:last-child) {
    margin-bottom: 24px;
}
.footer-widget-wrapper .footer-post-items li .content {
    max-width: 296px;
}
.footer-widget-wrapper .footer-post-items li .content .top-text {
    color: var(--white);
    opacity: 0.7;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}
.footer-widget-wrapper .footer-post-items li .content h6 {
    font-size: 16px;
    font-weight: 700;
    font-family: iranyekan;
    line-height: 150%;
}
.footer-widget-wrapper .footer-post-items li .content h6 a {
    color: var(--white);
}
.footer-widget-wrapper .footer-post-items li .content h6 a:hover {
    color: var(--theme);
}

.footer-bottom {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .footer-bottom {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}
.footer-bottom.style-3 {
    border-top: 1px solid rgba(199, 201, 206, 0.24);
    background: #030523;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 99;
}
.footer-bottom.style-3 .footer-bottom-wrapper-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 575px) {
    .footer-bottom.style-3 .footer-bottom-wrapper-3 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
.footer-bottom.style-3 .social-icon {
    gap: 12px;
}
.footer-bottom.style-3 .social-icon a {
    display: inline-block;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(46px);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
}
.footer-bottom.style-3 .social-icon a:hover {
    background-color: var(--theme);
}
.footer-bottom p {
    color: var(--white);
    font-weight: 700;
}
.footer-bottom p b {
    color: var(--theme);
}
.footer-bottom .footer-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-bottom .footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    background-image: linear-gradient(var(--theme-color), var(--theme-color));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
}
.footer-bottom .footer-menu li a:hover {
    background-size: 100% 1px;
    color: var(--theme);
}

.footer-instagram-wrapper {
    padding: 100px 0 100px;
}
.footer-instagram-wrapper .footer-instagram-image {
    position: relative;
    overflow: hidden;
}
.footer-instagram-wrapper .footer-instagram-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    top: 0;
    bottom: 0px;
    left: 0;
    background: rgba(29, 29, 29, 0.6);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    width: 100%;
    height: 100%;
    z-index: 9;
}
.footer-instagram-wrapper .footer-instagram-image .gt-icon {
    display: inline-block;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}
.footer-instagram-wrapper .footer-instagram-image img {
    width: 100%;
    height: 100%;
}
.footer-instagram-wrapper .footer-instagram-image:hover .gt-icon {
    top: 50%;
    opacity: 1;
    visibility: visible;
}
.footer-instagram-wrapper .footer-instagram-image:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.footer-logo-item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1399px) {
    .footer-logo-item {
        justify-content: center;
        border-bottom: 1px solid rgba(199, 201, 206, 0.24);
        padding-bottom: 50px;
    }
    .footer-logo-item .border-img {
        display: none !important;
    }
}

.footer-bottom-2 {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(46px);
    text-align: center;
    padding: 28px 0;
}
.footer-bottom-2 p {
    text-align: center;
    font-weight: 700;
    color: var(--white);
}
.footer-bottom-2 p b {
    color: var(--theme);
}

.footer-top-wrapper-3 {
    padding: 100px 0 50px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.24);
}
.footer-top-wrapper-3 p {
    color: var(--white);
    opacity: 0.88;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    max-width: 376px;
    margin-right: 70px;
}
@media (max-width: 1199px) {
    .footer-top-wrapper-3 p {
        margin-right: 0;
    }
}
.footer-top-wrapper-3 ul li {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.88;
}
.footer-top-wrapper-3 ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer-top-wrapper-3 ul li a {
    color: var(--white);
    opacity: 0.88;
}

.footer-left-40 {
    margin-right: 60px;
}
@media (max-width: 1399px) {
    .footer-left-40 {
        margin-right: 0;
    }
}

.style-right-30 {
    margin-left: 20px;
}
@media (max-width: 1199px) {
    .style-right-30 {
        margin-left: 0;
    }
}
.style-right-30 .theme-btn {
    padding: 0 22px;
}

.footer-section-3 {
    position: relative;
}
.footer-section-3::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 39%;
    width: 1px;
    height: 100%;
    content: "";
    background: rgba(199, 201, 206, 0.24);
}
@media (max-width: 1600px) {
    .footer-section-3::before {
        right: 36%;
    }
}
@media (max-width: 1399px) {
    .footer-section-3::before {
        display: none;
    }
}
.footer-section-3::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 63%;
    width: 1px;
    height: 100%;
    content: "";
    background: rgba(199, 201, 206, 0.24);
}
@media (max-width: 1600px) {
    .footer-section-3::after {
        right: 66%;
    }
}
@media (max-width: 1399px) {
    .footer-section-3::after {
        display: none;
    }
}

/* 02.9 Header */
@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.header-main .main-menu ul {
    margin-bottom: 0;
}
.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 45px;
}
.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}
.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    font-family: iranyekan;
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
    margin-right: 4px;
    font-size: 14px;
}
.header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 115%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    padding: 20px 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    border-top: 6px solid var(--theme);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}
.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    line-height: 38px;
    padding: 0px 32px 0px 0px;
    padding-left: 22px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--theme);
    right: 14px;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 12px;
    right: 243px;
    visibility: hidden;
    opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
    margin-right: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
    width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
    width: 800px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    right: -90px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
    text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
    padding: 5px 15px;
    color: var(--white) !important;
    min-width: 130px;
    width: 100%;
    text-align: center;
    justify-content: center;
    background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn:hover {
    background-color: var(--header) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    font-family: iranyekan;
}
.header-main .main-menu ul li:hover > a {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}
.header-main .header-right {
    gap: 30px;
}
@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}
.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 {
    position: absolute;
    z-index: 9999;
    width: 100%;
    right: 0;
}
@media (max-width: 575px) {
    .header-1 .logo img {
        width: 150px;
    }
}
@media (max-width: 470px) {
    .header-1 .logo img {
        width: 50px;
    }
}
.header-1 .container {
    max-width: 1800px;
}
.header-1 .sidebar__toggle {
    cursor: pointer;
}
.header-1 .sidebar__toggle .header-bar {
    position: relative;
    width: 40px;
    height: 11px;
}
.header-1 .sidebar__toggle .header-bar span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: inline-block;
    transition: all 0.3s;
    right: 0;
    background: var(--header);
    overflow: hidden;
}
.header-1 .sidebar__toggle .header-bar span:first-child {
    top: 0;
    background: var(--white);
    right: 0;
    width: 40px;
}
.header-1 .sidebar__toggle .header-bar span:last-child {
    bottom: 0;
    background: var(--white);
    width: 40px;
}
.header-1 .sidebar__toggle .header-bar.active span:first-child {
    transform: rotate(45deg) translate(3px, 9px);
}
.header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
    opacity: 0;
}
.header-1 .sidebar__toggle .header-bar.active span:last-child {
    transform: rotate(-45deg) translate(3px, -9px);
}
.header-1 .sidebar__toggle .header-bar:hover {
    cursor: pointer;
}
.header-1.header-3 .container {
    max-width: 1720px;
}
@media (max-width: 575px) {
    .header-1.header-3 .logo img {
        width: 150px;
    }
}
@media (max-width: 470px) {
    .header-1.header-3 .logo img {
        width: 130px;
    }
}
.header-1.header-3 .mega-menu-wrapper {
    background-color: var(--white);
    padding: 0 24px;
}
.header-1.header-3 .header-main .main-menu ul li a {
    color: var(--header);
}
.header-1.header-3 .header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.header-1.header-3 .sidebar__toggle .header-bar span {
    background: var(--header);
}
.header-1.header-3 .sidebar__toggle .header-bar span:first-child {
    background: var(--header);
}
.header-1.header-3 .sidebar__toggle .header-bar span:last-child {
    background: var(--header);
}

.header-2 {
    background-color: #030523;
}
.header-2 .container {
    max-width: 1610px;
}
@media (max-width: 575px) {
    .header-2 .logo img {
        width: 150px;
    }
}
@media (max-width: 470px) {
    .header-2 .logo img {
        width: 130px;
    }
}
.header-2 .header-btn {
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 1199px) {
    .header-2 .header-btn {
        display: none;
    }
}
.header-2 .header-btn .theme-btn {
    border: 1px solid transparent;
}
.header-2 .header-btn .theme-btn.border-btn {
    background-color: transparent;
    border: 1px solid var(--white);
}
.header-2 .header-btn .theme-btn.border-btn::before {
    background-color: var(--theme);
}
.header-2 .header-btn .theme-btn.border-btn:hover {
    border: 1px solid var(--theme);
}
.header-2 .sidebar__toggle {
    cursor: pointer;
}
.header-2 .sidebar__toggle .header-bar {
    position: relative;
    width: 40px;
    height: 11px;
}
.header-2 .sidebar__toggle .header-bar span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: inline-block;
    transition: all 0.3s;
    right: 0;
    background: var(--header);
    overflow: hidden;
}
.header-2 .sidebar__toggle .header-bar span:first-child {
    top: 0;
    background: var(--white);
    right: 0;
    width: 40px;
}
.header-2 .sidebar__toggle .header-bar span:last-child {
    bottom: 0;
    background: var(--white);
    width: 40px;
}
.header-2 .sidebar__toggle .header-bar.active span:first-child {
    transform: rotate(45deg) translate(3px, 9px);
}
.header-2 .sidebar__toggle .header-bar.active span:nth-child(2) {
    opacity: 0;
}
.header-2 .sidebar__toggle .header-bar.active span:last-child {
    transform: rotate(-45deg) translate(3px, -9px);
}
.header-2 .sidebar__toggle .header-bar:hover {
    cursor: pointer;
}

.header-top-section {
    position: relative;
    z-index: 999;
    padding: 12px 0;
}
@media (max-width: 991px) {
    .header-top-section {
        display: none;
    }
}
.header-top-section .container {
    max-width: 1610px;
}
.header-top-section .header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-top-section .header-top-wrapper p {
    font-size: 16px;
    font-weight: 700;
}
.header-top-section .header-top-wrapper p a {
    color: var(--theme);
    text-decoration: underline;
}
.header-top-section .header-top-wrapper .form-clt {
    max-width: 125px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-top-section .header-top-wrapper .form-clt .form {
    max-width: 110px;
    width: 100%;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select {
    border: none;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    line-height: initial;
    height: initial;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select span {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select .list {
    width: 100%;
}
.header-top-section .header-top-wrapper .form-clt .form .single-select::after {
    left: 0;
    width: 8px;
    height: 8px;
    top: 43%;
    border-bottom: 2px solid var(--text);
    border-left: 2px solid var(--text);
}
.header-top-section.header-section-2 {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(50px);
    z-index: 99999;
    position: relative;
}
.header-top-section.header-section-2 .container {
    max-width: 1720px;
}
.header-top-section.header-section-2 .header-top-wrapper p {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}
.header-top-section.header-section-2 .header-top-wrapper .top-left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-top-section.header-section-2 .header-top-wrapper .top-left .social-icon {
    gap: 12px;
}
.header-top-section.header-section-2 .header-top-wrapper .top-left .social-icon a {
    display: inline-block;
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text);
}
.header-top-section.header-section-2 .header-top-wrapper .top-left .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.header-top-section.header-section-2 .header-top-wrapper .top-right {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 365px;
    width: 100%;
}
.header-top-section.header-section-2 .header-top-wrapper .top-right p {
    font-weight: 700;
}
.header-top-section.header-section-2 .header-top-wrapper .top-right p b {
    font-weight: 700;
    color: var(--theme);
}
.header-top-section.header-section-2 .header-top-wrapper .top-right .form-clt .form .single-select span {
    color: var(--white);
}
.header-top-section.header-section-2 .header-top-wrapper .top-right .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
}

.header-top-section-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.9s;
    background-color: #060718;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-1 .header-main .main-menu ul li a {
    color: #ffffff;
}
.sticky.header-1 .header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.sticky.header-1 .sidebar__toggle .header-bar span {
    background: var(--header);
}
.sticky.header-1 .sidebar__toggle .header-bar span:first-child {
    background: #ffffff;
}
.sticky.header-1 .sidebar__toggle .header-bar span:last-child {
    background: #ffffff;
}
.sticky.header-2 {
    background-color: #030523;
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-right: 2px solid var(--theme);
    position: fixed;
    left: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(-200% + 80px));
    -moz-transform: translateX(calc(-200% + 80px));
    -ms-transform: translateX(calc(-200% + 80px));
    -o-transform: translateX(calc(-200% + 80px));
    transform: translateX(calc(-200% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content h4 {
    font-weight: 700;
}
.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
    margin-top: 16px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-left: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 20px 40px;
    text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: var(--bg);
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border-radius: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    left: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}
@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}
.gt-breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.gt-breadcrumb-wrapper.bg-before {
    position: relative;
}
.gt-breadcrumb-wrapper.bg-before::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    top: 66%;
    background-color: var(--white);
}
.gt-breadcrumb-wrapper .gt-page-heading {
    position: relative;
    padding: 260px 0 130px;
    z-index: 9;
}
@media (max-width: 1199px) {
    .gt-breadcrumb-wrapper .gt-page-heading {
        padding-top: 220px;
    }
}
@media (max-width: 991px) {
    .gt-breadcrumb-wrapper .gt-page-heading {
        padding-top: 180px;
    }
}
@media (max-width: 767px) {
    .gt-breadcrumb-wrapper .gt-page-heading {
        text-align: center;
        padding-top: 150px;
        padding-bottom: 120px;
    }
}
.gt-breadcrumb-wrapper .gt-page-heading h1 {
    color: var(--white);
    font-size: 72px;
    position: relative;
    text-transform: uppercase;
    z-index: 9;
    font-weight: 900;
    letter-spacing: 0.36px;
}
@media (max-width: 767px) {
    .gt-breadcrumb-wrapper .gt-page-heading h1 {
        font-size: 60px;
    }
}
@media (max-width: 575px) {
    .gt-breadcrumb-wrapper .gt-page-heading h1 {
        font-size: 50px;
    }
}
@media (max-width: 470px) {
    .gt-breadcrumb-wrapper .gt-page-heading h1 {
        font-size: 40px;
    }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
    display: inline-flex;
    margin-top: 20px;
    gap: 10px;
}
@media (max-width: 575px) {
    .gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
        margin-top: 15px;
    }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a {
    color: var(--white);
    transition: all 0.4s ease-in-out;
    opacity: 0.7;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a:hover {
    color: var(--theme);
    opacity: 1;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a i {
    color: var(--theme);
    margin-left: 5px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li i {
    color: var(--white);
}

.gt-error-items {
    text-align: center;
    position: relative;
}
.gt-error-items .gt-error-image {
    margin-bottom: 50px;
}
.gt-error-items .gt-error-image img {
    width: 100%;
    height: 100%;
}
.gt-error-items h2 {
    margin-bottom: 15px;
}
@media (max-width: 575px) {
    .gt-error-items h2 {
        font-size: 30px;
    }
}
.gt-error-items p {
    margin-bottom: 48px;
    max-width: 872px;
}
@media (max-width: 767px) {
    .gt-error-items p {
        margin-bottom: 30px;
    }
}
.gt-error-items .gt-theme-btn .gt-icon-btn {
    background-color: var(--header);
}
.gt-error-items .gt-theme-btn .gt-icon-btn::after {
    background-color: var(--theme);
}

/* 02.10 Helping */
.array-button-2 {
    gap: 16px;
    position: relative;
    z-index: 9;
    margin-top: 37px;
}
.array-button-2.style-3 .array-prev2 {
    transform: rotate(0deg);
}
.array-button-2.style-3 .array-prev2 i {
    transform: rotate(0deg);
}
.array-button-2.style-3 .array-prev2:hover i {
    color: var(--white);
}
.array-button-2.style-3 .array-next2 {
    transform: rotate(0deg);
}
.array-button-2.style-3 .array-next2 i {
    transform: rotate(0deg);
}
.array-button-2.style-3 .array-next2:hover i {
    color: var(--white);
}
@media (max-width: 1199px) {
    .array-button-2 {
        flex-wrap: wrap;
    }
}
.array-button-2 .array-prev2 {
    width: 55px;
    height: 55px;
    line-height: 50px;
    text-align: center;
    background-color: transparent;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
    .array-button-2 .array-prev2 {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
.array-button-2 .array-prev2 i {
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}
.array-button-2 .array-prev2:hover {
    background-color: var(--theme);
    color: var(--header);
    border: 1px solid var(--theme);
}
.array-button-2 .array-prev2:hover svg path {
    fill: var(--white);
}
.array-button-2 .array-next2 {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background-color: transparent;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
    .array-button-2 .array-next2 {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
.array-button-2 .array-next2 i {
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}
.array-button-2 .array-next2:hover {
    background-color: var(--theme);
    color: var(--header);
    border: 1px solid var(--theme);
}
.array-button-2 .array-next2:hover svg path {
    fill: var(--white);
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.sticky-style {
    position: sticky !important;
    top: 100px;
}

.gt-slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.gt-brand-slide-element {
    width: auto;
    display: inline-block;
}

.p-relative {
    position: relative;
}

.ripple {
    position: relative;
}
.ripple::before, .ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(254, 89, 0, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}
.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
}
.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
}

.page-nav-wrap {
    margin-top: 60px;
}
.page-nav-wrap ul li {
    display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
    background-color: var(--theme);
    color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 0;
    background: #F4F4F4;
    color: var(--header);
    font-weight: 900;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
    border-radius: 0;
    font-family: iranyekan;
}
.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--white);
}
@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}
.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
    color: var(--white);
}

/* 02.11 Hero */
.hero-1 {
    padding: 100px 0 0;
    padding-left: 100px;
    position: relative;
    overflow: hidden;
}
.hero-1 .tilt_scale {
    transition: transform 0.2s ease;
    display: inline-block;
}
@media (max-width: 1600px) {
    .hero-1 {
        padding-left: 280px;
    }
}
@media (max-width: 1399px) {
    .hero-1 {
        padding-left: 0;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .hero-1 {
        padding-top: 180px;
        padding-bottom: 0;
    }
}
@media (max-width: 767px) {
    .hero-1 {
        padding-top: 150px;
    }
}
@media (max-width: 575px) {
    .hero-1 {
        padding-top: 130px;
    }
}
.hero-1 .right-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}
@media (max-width: 1199px) {
    .hero-1 .right-shape {
        display: none;
    }
}
.hero-1 .container {
    max-width: 1720px;
}
@media (max-width: 991px) {
    .hero-1 .hero-content {
        text-align: center;
    }
}
.hero-1 .hero-content h6 {
    color: var(--theme);
    font-size: 20px;
    font-weight: 700;
    font-family: VazirmatnBlack;
    margin-bottom: 20px;
}
@media (max-width: 470px) {
    .hero-1 .hero-content h6 {
        font-size: 16px;
    }
}
.hero-1 .hero-content h1 {
    color: var(--white);
    letter-spacing: -1px;
}
@media (max-width: 1600px) {
    .hero-1 .hero-content h1 {
        font-size: 75px;
    }
}
@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        font-size: 62px;
    }
}
@media (max-width: 991px) {
    .hero-1 .hero-content h1 {
        font-size: 68px;
    }
}
@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 55px;
    }
}
@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 48px;
    }
}
@media (max-width: 470px) {
    .hero-1 .hero-content h1 {
        font-size: 42px;
    }
}
.hero-1 .hero-content h1 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--theme);
    font-family: iranyekan;
    color: transparent;
}
.hero-1 .hero-content p {
    color: var(--white);
    line-height: 150%;
    margin-top: 24px;
    max-width: 785px;
}
.hero-1 .hero-content .hero-btn {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 991px) {
    .hero-1 .hero-content .hero-btn {
        flex-wrap: wrap;
        margin-top: 30px;
        justify-content: center;
    }
}
.hero-1 .hero-image {
    position: relative;
    z-index: 9;
}
@media (max-width: 1399px) {
    .hero-1 .hero-image img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 767px) {
    .hero-1 .hero-image {
        text-align: center;
    }
}
.hero-1 .hero-image .hero-image-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
@media (max-width: 1399px) {
    .hero-1 .hero-image .hero-image-bg {
        display: none;
    }
}

.hero-2 {
    padding: 190px 0 280px;
    position: relative;
    z-index: 9;
}
@media (max-width: 991px) {
    .hero-2 {
        padding: 150px 0 150px;
    }
}
@media (max-width: 767px) {
    .hero-2 {
        padding: 140px 0 140px;
    }
}
@media (max-width: 575px) {
    .hero-2 {
        padding: 100px 0 130px;
    }
}
.hero-2 .vec-shape1 {
    position: absolute;
    top: 0;
    right: 35%;
    z-index: -1;
}
@media (max-width: 1199px) {
    .hero-2 .vec-shape1 {
        display: none;
    }
}
.hero-2 .vec-shape2 {
    position: absolute;
    left: 0;
    top: 20%;
    z-index: -1;
}
@media (max-width: 1199px) {
    .hero-2 .vec-shape2 {
        display: none;
    }
}
.hero-2::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(251deg, var(--Text-Primary, #030523) 7.32%, rgba(3, 5, 35, 0.48) 80.97%);
    z-index: -1;
}
.hero-2 .stoke-title {
    text-align: center;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: var(--white);
    font-size: 200px;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: transparent;
    opacity: 0.16;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
@media (max-width: 1199px) {
    .hero-2 .stoke-title {
        display: none;
    }
}
.hero-2 .container {
    max-width: 1719px;
}
@media (max-width: 991px) {
    .hero-2 .hero-content {
        margin: 0 auto;
        text-align: center;
    }
}
.hero-2 .hero-content h6 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    font-family: iranyekan;
    margin-bottom: 15px;
}
.hero-2 .hero-content h1 {
    color: var(--white);
    letter-spacing: -1px;
}
@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        line-height: 140%;
    }
}
.hero-2 .hero-content h1 span {
    color: var(--theme);
}
.hero-2 .hero-content p {
    color: var(--white);
    line-height: 150%;
    margin-top: 24px;
    max-width: 785px;
}
@media (max-width: 991px) {
    .hero-2 .hero-content p {
        margin: 30px auto 0;
    }
}
@media (max-width: 470px) {
    .hero-2 .hero-content p {
        font-size: 15px;
        line-height: 180%;
    }
}
.hero-2 .hero-content .hero-btn {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 1199px) {
    .hero-2 .hero-content .hero-btn {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media (max-width: 991px) {
    .hero-2 .hero-content .hero-btn {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .hero-2 .hero-content .hero-btn {
        margin-top: 30px;
    }
}

.hero-3 {
    padding: 280px 0 270px;
    position: relative;
}
@media (max-width: 1199px) {
    .hero-3 {
        padding: 230px 0 150px;
    }
}
@media (max-width: 767px) {
    .hero-3 {
        padding: 160px 0 160px;
    }
}
@media (max-width: 575px) {
    .hero-3 {
        padding: 140px 0 140px;
    }
}
.hero-3 .left-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
@media (max-width: 1199px) {
    .hero-3 .left-shape {
        display: none;
    }
}
.hero-3 .left-shape img {
    height: 100%;
}
.hero-3 .stoke-title2 {
    color: rgba(255, 255, 255, 0.08);
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    position: absolute;
    top: 22%;
    left: 0;
    bottom: 0;
    z-index: 22;
}
@media (max-width: 1199px) {
    .hero-3 .stoke-title2 {
        display: none;
    }
}
.hero-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.24);
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    color: transparent;
    display: block;
}
.hero-3 .container {
    max-width: 1665px;
}
.hero-3 .hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
}
.hero-3 .hero-bg::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(251deg, var(--Text-Primary, rgba(3, 5, 35, 0.72)) 7.32%, rgba(3, 5, 35, 0.35) 80.97%);
}
.hero-3 .hero-content {
    position: relative;
    z-index: 3;
}
.hero-3 .hero-content h6 {
    color: var(--white);
    font-family: iranyekan;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, rgba(3, 5, 35, 0) 0%, var(--theme) 100%);
    border-bottom: 2px solid transparent;
    border-image-slice: 2;
    display: inline-block;
    padding-bottom: 5px;
}
@media (max-width: 1199px) {
    .hero-3 .hero-content h6 {
        border-bottom: none;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-content h6 {
        font-size: 15px;
    }
}
.hero-3 .hero-content h1 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 108px;
}
@media (max-width: 1399px) {
    .hero-3 .hero-content h1 {
        font-size: 85px;
    }
}
@media (max-width: 1199px) {
    .hero-3 .hero-content h1 {
        font-size: 72px;
        line-height: 140%;
    }
}
@media (max-width: 991px) {
    .hero-3 .hero-content h1 {
        font-size: 70px;
    }
}
@media (max-width: 767px) {
    .hero-3 .hero-content h1 {
        font-size: 55px;
    }
}
@media (max-width: 575px) {
    .hero-3 .hero-content h1 {
        font-size: 40px;
    }
}
@media (max-width: 470px) {
    .hero-3 .hero-content h1 {
        font-size: 35px;
    }
}
.hero-3 .hero-content p {
    color: var(--white);
    opacity: 0.88;
    max-width: 745px;
    margin-top: 30px;
}
@media (max-width: 1199px) {
    .hero-3 .hero-content p {
        margin-top: 10px;
    }
}
.hero-3 .hero-content .hero-btn {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 1199px) {
    .hero-3 .hero-content .hero-btn {
        flex-wrap: wrap;
        margin-top: 30px;
        flex-wrap: wrap;
    }
}

.hero-section-3 {
    position: relative;
}
.hero-section-3 .swiper-slide.swiper-slide-active .hero-bg {
    -webkit-transform: scale(1.19);
    -moz-transform: scale(1.19);
    transform: scale(1.19);
}
.hero-section-3 .gt-product-dot {
    border: 1px solid rgba(199, 201, 206, 0.24);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(50px);
    padding: 20px;
    position: absolute;
    bottom: 180px;
    left: 100px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 375px;
    right: unset !important;
}
@media (max-width: 1199px) {
    .hero-section-3 .gt-product-dot {
        display: none;
    }
}
.hero-section-3 .gt-product-dot .dot-content img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid transparent;
}
.hero-section-3 .gt-product-dot .swiper-pagination-bullet {
    cursor: pointer;
    width: 100px;
    height: 100px;
    opacity: 1;
    border: 1px solid transparent;
    margin: 0;
    padding: 0;
}
.hero-section-3 .gt-product-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid var(--theme);
}
.hero-section-3 .gt-product-dot .swiper-pagination-bullet.swiper-pagination-bullet-active img {
    border: 1px solid var(--theme);
}

/* 02.12 MeanMenu */
.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #E5E5E5 !important;
    border: none;
    font-family: iranyekan;
}
.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
    display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
    display: inline-block;
    font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

/* 02.13 News */
.news-thumb1 {
    margin-top: 30px;
    position: relative;
}
@media (max-width: 991px) {
    .news-thumb1 {
        height: 600px;
    }
}
.news-thumb1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-thumb1 .video-box {
    position: absolute;
    top: 32px;
    left: 32px;
    padding: 8px 8px 8px 18px;
    background-color: #FFEEE7;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #030523;
    border-radius: 100px;
    line-height: 1;
}
.news-thumb1 .video-box i {
    font-size: 36px;
    color: var(--theme);
}
.news-thumb1 .news-content {
    position: absolute;
    right: 32px;
    bottom: 32px;
    left: 32px;
}
.news-thumb1 .news-content span {
    display: inline-block;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 100px;
}
.news-thumb1 .news-content ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.news-thumb1 .news-content ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}
.news-thumb1 .news-content h3 a {
    color: var(--white);
}
.news-thumb1 .news-content h3 a:hover {
    color: var(--theme);
}

.news-box-items {
    margin-top: 30px;
    margin-bottom: 15px;
    background-color: #F5F6F6;
    border-radius: 16px;
}
.news-box-items .thumb {
    position: relative;
}
.news-box-items .thumb img {
    width: 100%;
    height: 225px;
    border-radius: 16px 16px 0px 0px;
}
.news-box-items .thumb .video-box {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 8px 8px 18px;
    background-color: #fe5900;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    border-radius: 30px;
    line-height: 1;
}
.news-box-items .thumb .video-box i {
    font-size: 27px;
    color: var(--theme);
}
.news-box-items .content {
    padding: 40px 30px;
    padding-top: 0;
    margin-top: -18px;
    position: relative;
    z-index: 9;
}
.news-box-items .content span {
    background-color: var(--theme);
    color: var(--white);
    display: inline-block;
    padding: 4px 20px;
    border-radius: 100px;
}
.news-box-items .content ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.news-box-items .content ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
}
@media (max-width: 1399px) {
    .news-box-items .content h3 {
        font-size: 20px;
    }
}
@media (max-width: 1199px) {
    .news-box-items .content h3 {
        font-size: 22px;
    }
}
.news-box-items .content h3 a:hover {
    color: var(--theme);
}

.club-blog-items {
    margin-top: 30px;
}
.club-blog-items .thumb img {
    width: 100%;
    height: 220px;
}
.club-blog-items .content {
    padding: 24px;
    background-color: var(--white);
    margin-right: 24px;
    margin-left: 24px;
    margin-top: -61px;
    position: relative;
    z-index: 99;
}
@media (max-width: 1399px) {
    .club-blog-items .content {
        margin-right: 20px;
        margin-right: 20px;
        padding: 20px;
    }
}
.club-blog-items .content ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
@media (max-width: 1399px) {
    .club-blog-items .content ul {
        flex-wrap: wrap;
        gap: 12px;
    }
}
.club-blog-items .content ul li {
    color: var(--text);
}
.club-blog-items .content ul li span {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}
.club-blog-items .content ul li span i {
    margin-left: 8px;
}
.club-blog-items .content ul li span b {
    color: var(--theme);
}
.club-blog-items .content h3 {
    margin-bottom: 22px;
}
@media (max-width: 1399px) {
    .club-blog-items .content h3 {
        font-size: 21px;
    }
}
@media (max-width: 1199px) {
    .club-blog-items .content h3 {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .club-blog-items .content h3 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .club-blog-items .content h3 {
        font-size: 18px;
    }
}
.club-blog-items .content h3 a:hover {
    color: var(--theme);
}

.club-table-score .scoreboard {
    border: 1px solid rgba(199, 201, 206, 0.16);
    background: var(--white);
    padding: 25px 40px;
}
.club-table-score .scoreboard .match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.club-table-score .scoreboard .match .team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text);
    justify-content: end;
    flex-basis: 25%;
}
.club-table-score .scoreboard .match .team img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.club-table-score .scoreboard .match .score {
    border: 1px solid rgba(199, 201, 206, 0.24);
    padding: 8px 18px;
    font-size: 22px;
    font-weight: bold;
    color: #111;
    background-color: red;
}

.news-box-items-2 {
    margin-top: 30px;
}
.news-box-items-2 .thumb {
    position: relative;
}
.news-box-items-2 .thumb .post-box {
    padding: 12px 16px;
    background-color: var(--theme);
    border-radius: 100px;
    color: var(--white);
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: 30px;
    right: 30px;
}
.news-box-items-2 .thumb img {
    width: 100%;
    height: 100%;
}
.news-box-items-2 .news-content {
    margin-top: 24px;
}
.news-box-items-2 .news-content ul {
    display: flex;
    align-items: center;
    gap: 80px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.16);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.news-box-items-2 .news-content ul li {
    color: var(--white);
}
.news-box-items-2 .news-content h3 {
    margin-bottom: 24px;
}
.news-box-items-2 .news-content h3 a {
    color: var(--white);
}
.news-box-items-2 .news-content h3 a:hover {
    color: var(--theme);
}

.news-table-right-items {
    background-color: var(--white);
    padding: 32px;
}
.news-table-right-items h3 {
    font-size: 32px;
    border-bottom: 1px solid rgba(199, 201, 206, 0.16);
    padding-bottom: 24px;
    margin-bottom: 20px;
}
.news-table-right-items table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border-radius: 0;
}
@media (max-width: 1399px) {
    .news-table-right-items table {
        width: 700px;
    }
}
.news-table-right-items table thead th {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--header);
    text-align: center;
    font-weight: 700;
    padding-bottom: 15px;
}
.news-table-right-items table tbody tr {
    border: 1px solid #eee;
}
.news-table-right-items table tbody td {
    padding: 15px 9px;
    font-weight: 600;
    color: #0a1633;
}
@media (max-width: 1399px) {
    .news-table-right-items table {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .news-table-right-items table thead th {
        font-size: 16px;
        padding: 10px 6px;
    }
    .news-table-right-items table tbody td {
        padding: 10px 6px;
        font-size: 14px;
    }
}
.news-table-right-items .rank {
    width: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.news-table-right-items .team {
    display: flex;
    align-items: center;
    gap: 12px;
}
.news-table-right-items .team-name {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 16px;
    color: var(--header);
}
.news-table-right-items .stats {
    text-align: center;
}
.news-table-right-items .last-10 {
    text-align: center;
    font-weight: bold;
}
.news-table-right-items .badge {
    padding: 9px 14px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    color: #fff;
    background-color: #FE5900;
}

.news-list-items {
    background-color: var(--white);
    display: flex;
    align-items: center;
    margin-top: 30px;
}
@media (max-width: 1399px) {
    .news-list-items {
        display: block;
    }
}
.news-list-items .thumb {
    max-width: 256px;
    position: relative;
}
@media (max-width: 1399px) {
    .news-list-items .thumb {
        max-width: initial;
    }
}
.news-list-items .thumb img {
    width: 100%;
    height: 100%;
}
.news-list-items .content {
    padding: 0 30px;
}
@media (max-width: 1399px) {
    .news-list-items .content {
        padding: 25px;
    }
}
.news-list-items .content ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #C7C9CE;
    padding-bottom: 20px;
}
.news-list-items .content ul li {
    color: var(--text);
}
.news-list-items .content ul li span {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}
.news-list-items .content ul li span i {
    margin-left: 8px;
}
.news-list-items .content ul li span b {
    color: var(--theme);
}
.news-list-items .content h3 {
    margin-bottom: 15px;
}
.news-list-items .content h3 a:hover {
    color: var(--theme);
}

.news-section-2 {
    position: relative;
    z-index: 9;
}
.news-section-2 .vec-dot {
    position: absolute;
    top: -40%;
    left: 0;
    z-index: -1;
}
.news-section-2 .vec-circle {
    position: absolute;
    left: 0;
    top: 30%;
    z-index: -1;
}

.hottest-box-items {
    margin-top: 30px;
}
.hottest-box-items .hottest-thumb {
    position: relative;
}
.hottest-box-items .hottest-thumb img {
    width: 100%;
    height: 100%;
}
.hottest-box-items .hottest-thumb .video-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hottest-box-items .hottest-thumb .post-box {
    position: absolute;
    display: inline-block;
    font-weight: 700;
    color: var(--header);
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--white);
    padding: 11px 19px;
    border-radius: 100px;
    line-height: 1;
}
.hottest-box-items .hottest-content {
    margin-top: 25px;
}
.hottest-box-items .hottest-content ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}
.hottest-box-items .hottest-content ul li {
    font-size: 16px;
    font-weight: 600;
}
.hottest-box-items .hottest-content ul li span {
    color: var(--theme);
}
.hottest-box-items .hottest-content h3 a:hover {
    color: var(--theme);
}

.hottest-hoop-wrap-content {
    background-color: #F5F6F6;
    padding: 48px;
}
@media (max-width: 1199px) {
    .hottest-hoop-wrap-content {
        padding: 35px;
    }
}
@media (max-width: 575px) {
    .hottest-hoop-wrap-content {
        padding: 30px;
    }
}
@media (max-width: 470px) {
    .hottest-hoop-wrap-content {
        padding: 25px;
    }
}
.hottest-hoop-wrap-content .post-tag {
    display: inline-block;
    padding: 9px 19px;
    background-color: var(--white);
    border-radius: 100px;
    color: var(--header);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.hottest-hoop-wrap-content ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
    margin-top: 25px;
}
.hottest-hoop-wrap-content ul li {
    font-size: 16px;
    font-weight: 600;
}
.hottest-hoop-wrap-content ul li span {
    color: var(--theme);
}
.hottest-hoop-wrap-content p {
    margin-top: 25px;
}
.hottest-hoop-wrap-content .theme-btn {
    margin-top: 40px;
}

.hottest-hoop-wrap-thumb {
    height: 510px;
    position: relative;
}
.hottest-hoop-wrap-thumb .video-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hottest-hoop-wrap-thumb .post-box {
    position: absolute;
    display: inline-block;
    font-weight: 700;
    color: var(--header);
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--white);
    padding: 11px 19px;
    border-radius: 100px;
    line-height: 1;
}
.hottest-hoop-wrap-thumb img {
    width: 100%;
    height: 100%;
}

.hottest-hoop-wrapper {
    background-color: #F5F6F6;
    margin-top: 50px;
}

.news-box-items-3 {
    margin-top: 30px;
}
.news-box-items-3 .thumb img {
    width: 100%;
    height: 100%;
}
.news-box-items-3 .content {
    background-color: var(--white);
    padding: 20px;
}
.news-box-items-3 .content ul {
    display: flex;
    gap: 30px;
}
@media (max-width: 1199px) {
    .news-box-items-3 .content ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.news-box-items-3 .content ul li span i {
    margin-left: 8px;
}
.news-box-items-3 .content h3 {
    margin-top: 10px;
}
.news-box-items-3 .content h3 a:hover {
    color: var(--theme);
}
.news-box-items-3 .content .link-btn {
    margin-top: 20px;
}
.news-box-items-3 .content .link-btn:hover {
    color: var(--header);
}

.news-content-3 {
    background-color: var(--white);
    padding: 31px 24px;
    margin-top: 30px;
}
.news-content-3 ul {
    display: flex;
    gap: 30px;
}
@media (max-width: 1199px) {
    .news-content-3 ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.news-content-3 ul li span i {
    margin-left: 8px;
}
.news-content-3 h3 {
    margin-top: 10px;
}
.news-content-3 h3 a:hover {
    color: var(--theme);
}
.news-content-3 .link-btn {
    margin-top: 20px;
}
.news-content-3 .link-btn:hover {
    color: var(--header);
}

.news-section-3 {
    position: relative;
}
.news-section-3 .stoke-title2 {
    color: #030523;
    font-family: iranyekan;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.03;
    position: absolute;
    top: 5%;
    right: 15%;
    left: 0;
}
@media (max-width: 1399px) {
    .news-section-3 .stoke-title2 {
        display: none;
    }
}
.news-section-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #030523;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

.ranking-secion-3 {
    position: relative;
}
.ranking-secion-3 .stoke-title2 {
    color: #fff;
    font-size: 156px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.04;
    writing-mode: vertical-rl;
    position: absolute;
    top: 70px;
    left: 20px;
    bottom: 0;
}
@media (max-width: 1399px) {
    .ranking-secion-3 .stoke-title2 {
        display: none;
    }
}
.ranking-secion-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    font-size: 156px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

.team-section-3 {
    position: relative;
}
.team-section-3 .stoke-title2 {
    color: #030523;
    font-family: iranyekan;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.03;
    position: absolute;
    top: 3%;
    right: 52%;
    transform: translateX(50%);
    left: 0;
}
@media (max-width: 1399px) {
    .team-section-3 .stoke-title2 {
        display: none;
    }
}
.team-section-3 .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #030523;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

.highlights-match-section {
    position: relative;
}
.highlights-match-section .stoke-title2 {
    color: #030523;
    font-family: iranyekan;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 0.03;
    position: absolute;
    top: 2%;
    right: 15%;
    left: 0;
}
.highlights-match-section .stoke-title2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #030523;
    font-size: 188px;
    font-weight: 900;
    letter-spacing: -1.88px;
    text-transform: uppercase;
    opacity: 1;
    color: transparent;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
    margin-bottom: 30px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image {
    overflow: hidden;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
    width: 100%;
    height: 100%;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 15px;
}
@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list li i {
    margin-left: 10px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 900;
}
@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
        font-size: 25px;
    }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn {
    padding: 0 30px;
    border: 1px solid var(--theme);
    background: transparent;
    color: var(--theme);
    margin-top: 24px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn::before {
    background-color: var(--theme);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn:hover {
    color: var(--white);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.gt-news-details-wrapper .gt-details-image img {
    width: 100%;
    height: 100%;
}
.gt-news-details-wrapper .gt-news-details-content {
    margin-top: 24px;
}
.gt-news-details-wrapper .gt-news-details-content h3 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 900;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content h3 {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .gt-news-details-wrapper .gt-news-details-content h3 {
        font-size: 25px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list {
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item {
    margin-bottom: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
    font-weight: 800;
    font-size: 24px;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
        font-size: 20px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list {
    margin-top: 20px;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li {
    font-size: 16px;
    font-weight: 800;
    color: var(--header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li:not(:last-child) {
    margin-bottom: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li i {
    color: var(--theme);
    margin-left: 8px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber {
    padding: 30px 40px;
    border: 1.5px solid var(--theme);
    margin-top: 20px;
}
@media (max-width: 575px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-sideber {
        padding: 30px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber h6 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info .image {
    border-radius: 100%;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info h4 {
    font-size: 20px;
    font-weight: 700;
}
.gt-news-details-wrapper .gt-news-details-content .news-title {
    font-size: 22px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: iranyekan;
}
.gt-news-details-wrapper .gt-news-details-content .text {
    font-size: 24px;
    margin-top: 30px;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .text {
        font-size: 20px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap {
    border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
    padding: 30px 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud span {
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    color: var(--header);
    font-family: iranyekan;
    margin-left: 10px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
    display: ruby-text;
    padding: 14px 26px;
    line-height: 1;
    background: #F5F6F6;
    margin-left: 8px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
        padding: 10px 20px;
    }
}
@media (max-width: 1199px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
        margin-bottom: 15px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a {
    font-size: 16px;
    color: var(--header);
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: var(--bg);
    border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:not(:last-child) {
    margin-left: 10px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:hover {
    color: var(--white);
    background-color: var(--theme);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area {
    margin-top: 40px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area h3 {
    font-size: 28px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
    border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}
@media (max-width: 575px) {
    .gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .head .con h5 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 22px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply {
    padding: 5px 18px;
    font-weight: 600;
    background-color: var(--theme);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply:hover {
    background-color: var(--header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap {
    background-color: var(--bg);
    padding: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap h3 {
    margin-bottom: 30px;
    border-bottom: 1.2px solid rgba(102, 102, 102, 0.24);
    padding-bottom: 24px;
    margin-bottom: 24px;
    font-size: 28px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt span {
    color: var(--header);
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--border);
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text);
    background-color: var(--white);
    border-radius: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input::placeholder, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea::placeholder {
    color: var(--text);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
    resize: none;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap button.theme-btn {
    background-color: var(--theme);
    color: var(--white);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap button.theme-btn::before {
    background-color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget {
    margin-bottom: 40px;
    background-color: #F5F6F6;
    padding: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
    width: 100%;
    position: relative;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
    background-color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 20px;
    width: 100%;
    border: none;
    color: var(--text);
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
    position: absolute;
    left: -2px;
    top: 0;
    width: 58px;
    border-radius: 8px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
    background-color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
    border-bottom: 1.5px solid rgba(129, 129, 129, 0.24);
    padding-bottom: 16px;
    margin-bottom: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
    font-weight: 800;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
    margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    padding: 18px 22px;
    line-height: 1;
    text-transform: uppercase;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
    color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
    transition: all 0.4s ease-in-out;
    color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
    margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
    font-weight: 400;
    color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
    background-color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
    color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i, .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
    color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1199px) {
    .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
        flex-wrap: wrap;
    }
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
    margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    font-family: iranyekan;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 a:hover {
    color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
    color: var(--text);
    font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
    display: inline-block;
    padding: 12px 18px;
    line-height: 1;
    font-weight: 600;
    background: var(--white);
    margin-left: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
    margin-left: 0;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

/* 02.14 Preloader */
.back-to-top {
    border-radius: 0 !important;
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 999;
    left: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top:hover {
    background-color: var(--header);
    color: var(--white);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.cursor-outer {
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme);
    background-color: var(--theme);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.34;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
    opacity: 0.14;
}

.cursor-outer.cursor-big {
    opacity: 0;
}

.mouseCursor {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

.mouseCursor.cursor-big {
    width: 20px;
    height: 20px;
    -webkit-margin-start: -12px;
    margin-inline-start: -12px;
    margin-top: -12px;
}

.cursor-inner {
    -webkit-margin-start: -3px;
    margin-inline-start: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--theme);
    opacity: 1;
    -webkit-transition: all 0.24s ease-out 0s;
    transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
    color: var(--text);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.cursor-inner.cursor-big span {
    opacity: 1;
}

.cursor-inner.cursor-hover {
    -webkit-margin-start: -10px;
    margin-inline-start: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--theme);
    border: 1px solid #686363;
    opacity: 0;
}

/* 02.15 Section */
.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}
.section-title h3 {
    font-size: 32px;
}
.section-title.style-2 h2 span {
    color: var(--theme);
    -webkit-text-stroke-width: initial;
}
@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}
.section-title h6 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--theme);
    font-family: iranyekan;
    position: relative;
    margin-bottom: 15px;
}
.section-title h2 {
    text-transform: uppercase;
}
.section-title h2 span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--theme);
    letter-spacing: 0.5px;
    color: transparent;
}
.section-title h2 .text-weight-700 {
    font-weight: 700;
    color: var(--header);
    letter-spacing: initial;
    -webkit-text-stroke-width: initial;
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}
.section-title-area .section-title {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg);
}

.section-padding {
    padding: 54px 0;
}
@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

/* 02.16 Team */
.our-club-payer-item {
    margin-top: 30px;
}
.our-club-payer-item .player-image {
    position: relative;
}
.our-club-payer-item .player-image img {
    width: 100%;
    height: 100%;
}
.our-club-payer-item .player-image .number {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.24);
    top: 20px;
    left: 20px;
    position: absolute;
    background: transparent;
    color: transparent;
    transition: all 0.4s ease-in-out;
}
.our-club-payer-item .player-image .number.style-2 {
    -webkit-text-stroke-color: var(--white);
}
.our-club-payer-item .player-image .player-content {
    position: absolute;
    bottom: 45px;
    text-align: center;
    right: 40px;
    left: 40px;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .player-content {
        right: 30px;
        left: 30px;
    }
}
.our-club-payer-item .player-image .player-content h4 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .player-content h4 {
        font-size: 20px;
    }
}
.our-club-payer-item .player-image .player-content h4 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    background: linear-gradient(        135deg,        #ffad33,        #f07800    );
    padding: 6px 8px 6px 8px;
    border-radius: 32px;
    font-size: 17px;
}
.our-club-payer-item .player-image .player-content h4 a:hover {
    color: #fff;
    background-size: 100% 2px;
    background: #040523;
}
.our-club-payer-item .player-image .player-content p {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
.our-club-payer-item .player-image .content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: -23px;
    right: 30px;
    left: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    border-top: 1px solid rgba(199, 201, 206, 0.16);
    padding-top: 16px;
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .content-item {
        right: 20px;
        left: 20px;
    }
}
.our-club-payer-item .player-image .content-item .content {
    text-align: center;
}
.our-club-payer-item .player-image .content-item .content h6 {
    text-transform: uppercase;
    font-family: iranyekan;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .content-item .content h6 {
        font-size: 12px;
    }
}
@media (max-width: 1399px) {
    .our-club-payer-item .player-image .content-item .content h6 {
        font-size: 14px;
    }
}
.our-club-payer-item .player-image .content-item .content h5 {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
}
@media (max-width: 1600px) {
    .our-club-payer-item .player-image .content-item .content h5 {
        font-size: 20px;
    }
}
.our-club-payer-item .player-image .content-item .content span {
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    display: inline-block;
}
.our-club-payer-item .player-image .content-item .content .title {
    color: var(--theme);
    font-size: 16px;
    font-weight: 700;
}
.our-club-payer-item:hover .player-image .player-content {
    margin-bottom: 100px;
}
.our-club-payer-item:hover .player-image .number {
    background: transparent;
    color: var(--white);
    -webkit-text-stroke-width: var(--white);
    -webkit-text-stroke-color: var(--white);
    opacity: 1;
}
.our-club-payer-item:hover .player-image .number.style-2 {
    -webkit-text-stroke-width: var(--white);
    -webkit-text-stroke-color: var(--white);
    color: var(--white);
    opacity: 1;
}
.our-club-payer-item:hover .player-image .content-item {
    opacity: 1;
    visibility: visible;
    bottom: 23px;
}

.team-images-items .themb {
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.team-images-items .themb::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(3, 5, 35, 0) 32.76%, var(--Text-Primary, #030523) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.team-images-items .themb img {
    width: 100%;
    height: 100%;
}
.team-images-items .themb .social-icon {
    display: grid;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 20px;
    right: -20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 9;
}
.team-images-items .themb .social-icon a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--header);
    font-size: 14px;
}
.team-images-items .themb .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.team-images-items .content {
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: -24px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}
.team-images-items .content img {
    width: initial;
    height: initial;
}
.team-images-items .content h3 a {
    color: var(--white);
}
.team-images-items .content h3 a:hover {
    color: var(--theme);
}
.team-images-items .content span {
    color: var(--white);
}
.team-images-items .content .last-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.team-images-items .content .last-name p {
    color: rgba(255, 255, 255, 0.7);
}
.team-images-items .content .last-name .flag-name {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(44px);
    padding: 8px;
    color: var(--white);
}
.team-images-items .content .last-name .flag-name img {
    margin-left: 8px;
}
.team-images-items:hover .themb::before {
    opacity: 1;
    visibility: visible;
}
.team-images-items:hover .themb .social-icon {
    opacity: 1;
    visibility: visible;
    right: 20px;
}
.team-images-items:hover .themb .content {
    bottom: 24px;
    opacity: 1;
    visibility: visible;
}

.team-content-box {
    margin-right: 25px;
}
@media (max-width: 1399px) {
    .team-content-box {
        margin-right: 0;
    }
}
.team-content-box .team-text {
    margin-top: 25px;
    margin-bottom: 50px;
    opacity: 0.8;
}
.team-content-box .theme-btn::before {
    background-color: var(--white);
}
.team-content-box .theme-btn:hover {
    color: var(--header);
}

.team-details-wrapper {
    margin-bottom: 100px;
}
.team-details-wrapper .team-details-image {
    position: relative;
}
.team-details-wrapper .team-details-image .number {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.24);
    top: 20px;
    left: 20px;
    position: absolute;
    background: transparent;
    color: transparent;
    transition: all 0.4s ease-in-out;
}
.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
}
.team-details-wrapper .team-details-content {
    margin-right: 40px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content {
        margin-right: 0;
    }
}
.team-details-wrapper .team-details-content .top-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(199, 201, 206, 0.32);
    padding-top: 24px;
    margin-top: 24px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .top-details {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.team-details-wrapper .team-details-content .top-details .left-details {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .top-details .left-details {
        flex-wrap: wrap;
    }
}
.team-details-wrapper .team-details-content .top-details .left-details p {
    font-weight: 700;
}
.team-details-wrapper .team-details-content .top-details .left-details span {
    color: var(--header);
    font-size: 18px;
    font-weight: 700;
}
.team-details-wrapper .team-details-content .top-details .left-details span img {
    margin-right: 6px;
}
.team-details-wrapper .team-details-content .top-details .right-details {
    display: flex;
    align-items: center;
}
.team-details-wrapper .team-details-content .top-details .right-details p {
    font-weight: 700;
    margin-left: 12px;
}
.team-details-wrapper .team-details-content .top-details .right-details span {
    color: var(--header);
    font-size: 18px;
    font-weight: 700;
}
.team-details-wrapper .team-details-content ul {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 20px;
    margin-bottom: 30px;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.team-details-wrapper .team-details-content ul li {
    font-size: 16px;
    font-weight: 700;
}
.team-details-wrapper .team-details-content ul li b {
    color: var(--header);
}
.team-details-wrapper .team-details-content .social-icon {
    margin-top: 48px;
    gap: 16px;
}
.team-details-wrapper .team-details-content .social-icon span {
    font-weight: 700;
    color: var(--header);
    display: inline-block;
    margin-left: 12px;
}
.team-details-wrapper .team-details-content .social-icon a {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bg);
}
.team-details-wrapper .team-details-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.trophy-box-item {
    text-align: center;
}
.trophy-box-item .content {
    margin-top: 20px;
}
.trophy-box-item .content span {
    color: var(--theme);
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
    font-size: 27px;
    font-family: 'iranyekan';
}

.gallery-thumb-inner {
    margin-top: 30px;
    position: relative;
}
.gallery-thumb-inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    top: 0;
    bottom: 0px;
    left: 0;
    background: rgba(29, 29, 29, 0.6);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    width: 100%;
    height: 100%;
    z-index: 9;
}
.gallery-thumb-inner .gt-icon {
    display: inline-block;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}
.gallery-thumb-inner img {
    width: 100%;
    height: 100%;
}
.gallery-thumb-inner:hover .gt-icon {
    top: 50%;
    opacity: 1;
    visibility: visible;
}
.gallery-thumb-inner:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.gallery-section .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}
.gallery-section .nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--bg);
    color: var(--header);
    text-align: center;
    padding: 16px 28px;
    line-height: 1;
}
.gallery-section .nav .nav-item .nav-link i {
    margin-right: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.gallery-section .nav .nav-item .nav-link.active {
    background-color: var(--theme);
    color: var(--white);
}
.gallery-section .nav .nav-item .nav-link.active i {
    opacity: 1;
    visibility: visible;
}

/* 02.17 Testimonial */
.testimonial-box-slider {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(90px);
    padding: 64px 48px;
}
@media (max-width: 1199px) {
    .testimonial-box-slider {
        padding: 44px 35px;
    }
}
@media (max-width: 575px) {
    .testimonial-box-slider {
        padding: 40px 30px;
    }
}
.testimonial-box-slider .quote-icon {
    margin-bottom: 25px;
}
.testimonial-box-slider p {
    color: #ABABAB;
    font-size: 20px;
    ic; */
    font-weight: 900;
    line-height: 200%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
@media (max-width: 1399px) {
    .testimonial-box-slider p {
        font-size: 21px;
    }
}
@media (max-width: 991px) {
    .testimonial-box-slider p {
        font-size: 19px;
    }
}
@media (max-width: 575px) {
    .testimonial-box-slider p {
        font-size: 16px;
    }
}
.testimonial-box-slider .client-info-items {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(66px);
    padding: 27px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1399px) {
    .testimonial-box-slider .client-info-items {
        background-color: #0B0E13;
    }
}
@media (max-width: 1199px) {
    .testimonial-box-slider .client-info-items {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
        margin-top: 20px;
    }
}
.testimonial-box-slider .client-info-items .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 80px;
}
@media (max-width: 1399px) {
    .testimonial-box-slider .client-info-items .client-info {
        padding-left: 0;
        border-left: none;
    }
}
.testimonial-box-slider .client-info-items .client-info img {
}
.testimonial-box-slider .client-info-items .client-info .content h4 {
    font-size: 17px;
    font-family: iranyekan;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFF;
}
@media (max-width: 575px) {
    .testimonial-box-slider .client-info-items .client-info .content h4 {
        font-size: 18px;
    }
}
.testimonial-box-slider .client-info-items .client-info .content span {
    color: #FFF;
    font-weight: 600;
    opacity: 0.7;
}
.testimonial-box-slider .client-info-items .star {
    color: var(--theme);
}

.testimonial-right-items {
    margin-right: 30px;
}
@media (max-width: 1399px) {
    .testimonial-right-items {
        margin-right: 0;
    }
    .testimonial-right-items .image img {
        width: 100%;
        height: 100%;
    }
}
.testimonial-right-items .section-title {
    margin-bottom: 45px;
}
.testimonial-right-items .testi-count {
    border: 1px solid rgba(199, 201, 206, 0.24);
    text-align: center;
    padding: 40px 20px;
}
.testimonial-right-items .array-button {
    gap: 16px;
    position: relative;
    z-index: 9;
    margin-top: 37px;
}
@media (max-width: 991px) {
    .testimonial-right-items .array-button {
        display: none !important;
    }
}
.testimonial-right-items .array-button .array-prev {
    width: 55px;
    height: 55px;
    line-height: 50px;
    text-align: center;
    background-color: transparent;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
    .testimonial-right-items .array-button .array-prev {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
.testimonial-right-items .array-button .array-prev i {
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}
.testimonial-right-items .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--header);
    border: 1px solid var(--theme);
}
.testimonial-right-items .array-button .array-prev:hover svg path {
    fill: var(--white);
}
.testimonial-right-items .array-button .array-next {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background-color: transparent;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(199, 201, 206, 0.32);
}
@media (max-width: 575px) {
    .testimonial-right-items .array-button .array-next {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
.testimonial-right-items .array-button .array-next i {
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}
.testimonial-right-items .array-button .array-next:hover {
    background-color: var(--theme);
    color: var(--header);
    border: 1px solid var(--theme);
}
.testimonial-right-items .array-button .array-next:hover svg path {
    fill: var(--white);
}

.testimonial-wrapper {
    margin-top: 55px;
}

.testimonial-box-4 h3 {
    font-size: 30px;
    color: var(--white);
    line-height: 140%;
}
@media (max-width: 1399px) {
    .testimonial-box-4 h3 {
        font-size: 26px;
        line-height: 160%;
    }
}
@media (max-width: 1199px) {
    .testimonial-box-4 h3 {
        font-size: 24px;
    }
}
@media (max-width: 991px) {
    .testimonial-box-4 h3 {
        font-size: 21px;
    }
}
@media (max-width: 767px) {
    .testimonial-box-4 h3 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .testimonial-box-4 h3 {
        font-size: 18px;
    }
}
.testimonial-box-4 .client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.testimonial-box-4 .client-info h4 {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
@media (max-width: 1399px) {
    .testimonial-box-4 .client-info h4 {
        font-size: 18px;
    }
}
.testimonial-box-4 .client-info p {
    color: var(--white);
    opacity: 0.7;
}

@media (max-width: 1399px) {
    .testimonial-section-4 {
        padding: 100px 0;
    }
}
@media (max-width: 1399px) {
    .testimonial-section-4 .testimonial-image img {
        width: 100%;
        height: 100%;
    }
}/*# sourceMappingURL=main.css.map */
.slick-slider,.owl-carousel{direction:ltr!important;}
body,h1,h2,h3,h4,h5,a,p{font-family: VazirmatnBlack !important;}
.fa-chevron-right,.fa-chevron-left,.fa-arrow-left,.button-next,.button-prev,.match-start-wrapper-3 .match-start-box-3 .left-shape img,.array-next2,.array-prev2,.hero-3 .left-shape img{    transform: scale(-1);}
.owl-item{direction:rtl;}
@font-face {
    font-weight:300;
    font-family: 'iranyekan';
    src: url('fonts/iransansnormal/IRANSansIRANSans--normal.woff') format('woff'), /* Pretty Modern Browsers */
    url('fonts/iransansnormal/IRANSansIRANSans--normal.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('fonts/iransansnormal/IRANSansIRANSans--normal.svg') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'iranyekan';
    src: url('fonts/iranyekanweblight/iranyekanweblightfanum.woff') format('woff'), /* Pretty Modern Browsers */
    url('fonts/iranyekanweblight/iranyekanweblightfanum.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('fonts/iranyekanweblight/iranyekanweblightfanum.svg') format('svg'); /* Legacy iOS */
    font-weight:500;
}

@font-face {
    font-family: 'iranyekan';
    src: url('fonts/iranyekanwebboldfanum/iranyekanwebboldfanum.woff') format('woff'), /* Pretty Modern Browsers */
    url('fonts/iranyekanwebboldfanum/iranyekanwebboldfanum.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('fonts/iranyekanwebboldfanum/iranyekanwebboldfanum.svg') format('svg'); /* Legacy iOS */
    font-weight:700;
}
@font-face {
    font-family: 'iranyekan';
    src: url('fonts/iransansBolder/IRANSansIRANSans-Bolder-normal.woff') format('woff'), /* Pretty Modern Browsers */
    url('fonts/iransansBolder/IRANSansIRANSans-Bolder-normal.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('fonts/iransansBolder/IRANSansIRANSans-Bolder-normal.svg') format('svg'); /* Legacy iOS */
    font-weight:bold;
}
.slick-track{  direction:rtl; }

#laral-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, #151515 0%, #0b0b0b 55%, #000 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#laral-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.laral-loader-inner {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laral-loader-logo {
    width: 120px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.laral-loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top-color: #ffffff;
    border-right-color: #d6d6d6;
    animation: laralSpin 1.1s linear infinite;
}

.laral-loader-ring::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.14);
}

@keyframes laralSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

body.laral-loading {
    overflow: hidden;
}

@media (max-width: 576px) {
    .laral-loader-inner {
        width: 170px;
        height: 170px;
    }

    .laral-loader-logo {
        width: 95px;
    }
}

.dp-contact-section {
    padding: 72px 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(239, 120, 51, 0.11), transparent 32%),
        #f8fafc;
    direction: rtl;
}

.dp-contact-container {
    width: min(100%, 1200px);
    margin: 0 auto;
}

/* Heading */
.dp-contact-heading {
    max-width: 620px;
    margin: 0 auto 34px;
    text-align: center;
}

.dp-contact-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #e85d20;
    background-color: rgba(232, 93, 32, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
}

.dp-contact-heading__title {
    margin: 0;
    color: #172033;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.45;
}

.dp-contact-heading__description {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.9;
}

.dp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.dp-contact-card {
    position: relative;
    min-height: 285px;
    padding: 30px 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background-color: #ffffff;
    text-align: center;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.dp-contact-card::before {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(232, 93, 32, 0.06);
    content: "";
    transition: transform 0.45s ease;
}

/* Hover */
.dp-contact-card:hover {
    z-index: 1;
    border-color: rgba(232, 93, 32, 0.55);
    box-shadow: 0 18px 38px rgba(20, 30, 50, 0.13);
    transform: translateY(-7px);
}

.dp-contact-card:hover::before {
    transform: scale(1.3);
}

.dp-contact-card__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #f47a3d, #df4d18);
    box-shadow: 0 10px 20px rgba(232, 93, 32, 0.25);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.dp-contact-card__icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dp-contact-card:hover .dp-contact-card__icon {
    box-shadow: 8px 13px 24px rgba(232, 93, 32, 0.32);
    transform: translateX(9px) rotate(8deg);
}

.dp-contact-card__icon--email {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.dp-contact-card__icon--address {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.dp-contact-card__icon--phone {
    background: linear-gradient(135deg, #14b8a6, #059669);
}

.dp-contact-card__title {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 800;
}

.dp-contact-card__value {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 12px;
    color: #e85d20;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
    font-family: 'iranyekan' !important;
}

.dp-contact-card__value:hover {
    color: #bd3d10;
}

.dp-contact-card__value--ltr {
    direction: ltr;
    unicode-bidi: embed;
}

.dp-contact-card__detail {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 0.88rem;
    line-height: 2;
}

.dp-contact-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.dp-contact-reveal.dp-contact-reveal--active {
    opacity: 1;
    transform: translateY(0);
}

.dp-contact-card:nth-child(2) {
    transition-delay: 0.12s;
}

.dp-contact-card:nth-child(3) {
    transition-delay: 0.24s;
}

@media (min-width: 650px) {
    .dp-contact-section {
        padding: 88px 24px;
    }

    .dp-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (min-width: 992px) {
    .dp-contact-section {
        padding: 105px 30px;
    }

    .dp-contact-heading {
        margin-bottom: 48px;
    }

    .dp-contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

    .dp-contact-card {
        padding: 36px 28px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .dp-contact-card,
    .dp-contact-card__icon,
    .dp-contact-card::before,
    .dp-contact-reveal {
        transition: none !important;
    }

    .dp-contact-reveal {
        opacity: 1;
        transform: none;
    }
}

.lrl-support-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999999;
    direction: rtl;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.lrl-support-widget.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lrl-support-toggle {
    width: 68px;
    height: 68px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, #08d9c4, #00aeea);
    box-shadow:
        0 0 0 0 rgba(0, 210, 210, 0.45),
        0 12px 30px rgba(0, 210, 210, 0.28);
    animation: lrlSupportPulse 1.8s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lrl-support-toggle:hover {
    transform: scale(1.06);
}

.lrl-support-toggle i {
    transform: none !important;
    transition: none !important;
}

.lrl-support-widget.is-open .lrl-support-toggle i {
    transform: none !important;
}

@keyframes lrlSupportPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(0, 210, 210, 0.55),
            0 12px 30px rgba(0, 210, 210, 0.28);
        filter: brightness(1);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(0, 210, 210, 0.06),
            0 0 24px rgba(0, 210, 210, 0.75),
            0 14px 34px rgba(0, 210, 210, 0.35);
        filter: brightness(1.12);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(0, 210, 210, 0.45),
            0 12px 30px rgba(0, 210, 210, 0.28);
        filter: brightness(1);
    }
}

.lrl-support-options {
    position: absolute;
    right: 0;
    bottom: 82px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none;
}

.lrl-support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.85);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.35s ease;
}

.lrl-support-widget.is-open .lrl-support-options {
    pointer-events: auto;
}

.lrl-support-widget.is-open .lrl-support-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lrl-support-widget.is-open .lrl-support-item:nth-child(1) {
    transition-delay: 0.05s;
}

.lrl-support-widget.is-open .lrl-support-item:nth-child(2) {
    transition-delay: 0.12s;
}

.lrl-support-widget.is-open .lrl-support-item:nth-child(3) {
    transition-delay: 0.19s;
}

.lrl-support-label {
    order: 1;
    min-width: 145px;
    padding: 11px 18px;
    border-radius: 13px;
    background: #fff;
    color: #20202b;
    font-family: 'VazirmatnMedium', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    direction: ltr;
    flex-direction: row;
    justify-content: flex-start;
}

.lrl-support-icon {
    order: 1;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.lrl-support-item:hover .lrl-support-icon {
    transform: scale(1.08);
}

.lrl-support-item--instagram .lrl-support-icon {
    background: linear-gradient(
        135deg,
        #feda75 0%,
        #fa7e1e 25%,
        #d62976 55%,
        #962fbf 78%,
        #4f5bd5 100%
    );
}

.lrl-support-item--telegram .lrl-support-icon {
    background: #229ed9;
}

.lrl-support-item--phone .lrl-support-icon {
    background: linear-gradient(135deg, #38d66b, #16a637);
}

@media (max-width: 768px) {
    .lrl-support-widget {
        right: 12px;
        bottom: 14px;
    }

    .lrl-support-toggle {
        width: 58px;
        height: 58px;
        font-size: 24px;
        margin-bottom: 63px;
    }

    .lrl-support-options {
        bottom: 70px;
        gap: 10px;
    }

    .lrl-support-label {
        order: 2;
        min-width: 120px;
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 10px;
    }

    .lrl-support-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 22px;
    }
}

.fbs-courses-section {
    width: min(1140px, calc(100% - 32px));
    margin: 70px auto;
    position: relative;
}

/* Header */
.fbs-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.fbs-section-title-box {
    text-align: right;
}

.fbs-section-title {
    margin: 0;
    color: #101010;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.8;
}

.fbs-title-underline {
    position: relative;
    display: inline-block;
}

.fbs-title-underline::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: var(--fbs-primary);
}

.fbs-all-courses-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    height: 46px;
    padding: 0 18px;
    border: 1.5px solid #d0d7de;
    border-radius: 10px;
    background: #ffffff;
    color: #424242;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--fbs-transition);
}

.fbs-all-courses-link:hover {
    border-color: var(--fbs-primary);
    color: var(--fbs-primary);
    transform: translateY(-2px);
}

.fbs-all-courses-arrow {
    font-size: 20px;
    line-height: 1;
}

/* Filters */
.fbs-filter-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
    direction: rtl;
}

.fbs-filter-button {
    min-width: 72px;
    padding: 10px 20px;
    border: 1px solid #d5dbe3;
    border-radius: 9px;
    background: var(--fbs-filter-bg);
    color: #334155;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.fbs-filter-button:hover {
    background: var(--fbs-filter-bg-hover);
    border-color: #94a3b8;
    color: #0f172a;
}

.fbs-filter-button.fbs-active {
    border-color: #fe5900;
    background: var(--fbs-primary);
    color: #ffffff;
    box-shadow: 0 5px 14px rgba(239, 60, 36, 0.22);
    background: #ff5900;
}

/* Slider */
.fbs-slider-wrapper {
    position: relative;
    padding: 4px 0;
}

.fbs-slider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 4px 2px 14px;
}

.fbs-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

/* Card */
.fbs-course-card {
    position: relative;
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
    overflow: hidden;
    border: 1.5px solid #dbdbdb;
    border-radius: 10px;
    background: var(--fbs-white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform var(--fbs-transition), box-shadow var(--fbs-transition), border-color var(--fbs-transition);
}

.fbs-course-card:hover {
    transform: translateY(-6px);
    border-color: #b3b3b3;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.fbs-course-image-wrapper {
    position: relative;
    height: 175px;
    overflow: hidden;
    background: #e2e8f0;
    border-bottom: 1px solid var(--fbs-border);
}

.fbs-course-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fbs-course-card:hover .fbs-course-image {
    transform: scale(1.08);
}

.fbs-course-discount {
    position: absolute;
    top: 16px;
    right: 0;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 5px 0 0 5px;
    background: var(--fbs-primary);
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}

.fbs-course-level {
    position: absolute;
    bottom: 9px;
    right: 9px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 4px;
    background: var(--fbs-secondary);
    color: #fff;
    font-size: 11px;
}

.fbs-course-content {
    padding: 13px 15px 16px;
}

.fbs-course-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    margin-bottom: 9px;
    color: #777;
    font-size: 12px;
    white-space: nowrap;
}

.fbs-course-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fbs-star {
    color: #f7bf12;
    font-size: 17px;
}

.fbs-course-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fbs-clock {
    font-size: 15px;
}

.fbs-course-title {
    min-height: 28px;
    margin: 0 0 5px;
    color: #171717;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.7;
}

.fbs-course-type {
    margin: 0 0 10px;
    color: #777;
    font-size: 13px;
}

.fbs-course-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 12px;
    white-space: nowrap;
}

.fbs-location-icon {
    color: #555;
    font-size: 17px;
}

/* Arrows */
.fbs-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%);
    transition: var(--fbs-transition);
}

.fbs-slider-arrow:hover {
    background: var(--fbs-primary);
    color: #fff;
    border-color: var(--fbs-primary);
}

.fbs-slider-arrow.fbs-arrow-next {
    right: -20px;
}

.fbs-slider-arrow.fbs-arrow-prev {
    left: -20px;
}

/* Scroll reveal */
.fbs-reveal {
    opacity: 0;
    transform: translateY(45px) scale(0.97);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.22, .61, .36, 1);
}

.fbs-reveal.fbs-is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fbs-course-card:nth-child(2) { transition-delay: 0.08s; }
.fbs-course-card:nth-child(3) { transition-delay: 0.16s; }
.fbs-course-card:nth-child(4) { transition-delay: 0.24s; }

/* Tablet */
@media (max-width: 1000px) {
    .fbs-course-card {
        flex-basis: calc((100% - 48px) / 3);
    }
}

/* Mobile */
@media (max-width: 700px) {
    .fbs-courses-section {
        width: min(100% - 24px, 520px);
        margin: 40px auto;
    }

    .fbs-section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 18px;
    }

    .fbs-section-title {
        font-size: 22px;
    }

    .fbs-all-courses-link {
        width: 100%;
        min-width: 0;
    }

    .fbs-filter-list {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .fbs-filter-button {
        flex: 0 0 auto;
        padding: 9px 17px;
        font-size: 13px;
    }

    .fbs-course-card {
        flex-basis: 100%;
    }

    .fbs-course-image-wrapper {
        height: 190px;
    }

    .fbs-slider-arrow {
        width: 37px;
        height: 37px;
        font-size: 21px;
    }

    .fbs-slider-arrow.fbs-arrow-next {
        right: -8px;
    }

    .fbs-slider-arrow.fbs-arrow-prev {
        left: -8px;
    }

    .fbs-slider-viewport {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fbs-slider-track,
    .fbs-reveal,
    .fbs-course-card,
    .fbs-course-image {
        transition: none !important;
    }
}


/* =========================
   Main Section
========================= */

.lrl-course-section {
    width: 100%;
    padding: 70px 20px 55px;
    overflow: hidden;
    background: #ffffff;
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
}

.lrl-course-container {
    width: min(100%, 1180px);
    margin: 0 auto;
}

/* =========================
   Heading
========================= */

.lrl-course-heading {
    margin: 0 auto 38px;
    text-align: center;
}

.lrl-course-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #fe5900;
    font-size: 15px;
    font-weight: 700;
    font-family: "VazirmatnBlack";
}

.lrl-course-title {
    margin: 0;
    color: #24325b;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.5;
    font-weight: 900;
}

.lrl-course-description {
    max-width: 720px;
    margin: 14px auto 0;
    color: #8990a3;
    font-size: 14px;
    line-height: 2;
}

/* =========================
   Cards Grid
========================= */

.lrl-course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.lrl-course-card {
    position: relative;
    min-width: 0;
    padding: 28px 30px 25px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(228, 230, 238, 0.8);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 12px 35px rgba(38, 48, 85, 0.06),
        0 3px 12px rgba(38, 48, 85, 0.03);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.lrl-course-card::before {
    position: absolute;
    content: "";
    top: -100px;
    left: 50%;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(254, 89, 0, 0.025);
    transform: translateX(-50%);
    pointer-events: none;
}

.lrl-course-card:hover {
    border-color: rgba(254, 89, 0, 0.18);
    transform: translateY(-8px);
    box-shadow:
        0 22px 45px rgba(38, 48, 85, 0.11),
        0 4px 15px rgba(254, 89, 0, 0.06);
}

/* =========================
   3D Image Area
========================= */

.lrl-course-image-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 145px;
    margin-bottom: 18px;
    isolation: isolate;
}

.lrl-course-image-glow {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 145px;
    height: 105px;
    border-radius: 50%;
    background:
        radial-gradient(
            ellipse,
            rgba(255, 191, 102, 0.48) 0%,
            rgba(255, 220, 164, 0.20) 42%,
            rgba(255, 255, 255, 0) 76%
        );
    filter: blur(8px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.lrl-course-card--right .lrl-course-image-glow {
    background:
        radial-gradient(
            ellipse,
            rgba(255, 187, 91, 0.52) 0%,
            rgba(255, 222, 160, 0.22) 45%,
            transparent 78%
        );
}

.lrl-course-card--center .lrl-course-image-glow {
    background:
        radial-gradient(
            ellipse,
            rgba(76, 222, 245, 0.43) 0%,
            rgba(153, 236, 255, 0.18) 45%,
            transparent 78%
        );
}

.lrl-course-card--left .lrl-course-image-glow {
    background:
        radial-gradient(
            ellipse,
            rgba(255, 221, 96, 0.50) 0%,
            rgba(255, 235, 175, 0.20) 45%,
            transparent 78%
        );
}

.lrl-course-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: lrlCourseFloat 4s ease-in-out infinite;
    user-select: none;
}

/* =========================
   Card Content
========================= */

.lrl-course-card-title {
    position: relative;
    z-index: 2;
    margin: 0 0 11px;
    color: #1e2d55;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 900;
}

.lrl-course-count {
    margin-bottom: 12px;
    color: #5b4383;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    font-family: 'VazirmatnBlack';
}

.lrl-course-card-text {
    max-width: 245px;
    min-height: 54px;
    margin: 0 auto;
    color: #4a4d56;
    font-size: 13px;
    line-height: 2;
}

.lrl-course-divider {
    width: 100%;
    height: 1px;
    margin: 20px 0 14px;
    border-top: 1px dashed #e2e4e9;
}

.lrl-course-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #718096;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.lrl-course-link:hover {
    gap: 15px;
    color: #fe5900;
}

.lrl-course-link i {
    font-size: 11px;
}

/* =========================
   Animations
========================= */

@keyframes lrlCourseFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.lrl-course-reveal {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.lrl-course-card--right {
    transform: translateX(80px);
}

.lrl-course-card--center {
    transform: translateY(65px);
}

.lrl-course-card--left {
    transform: translateX(-80px);
}

.lrl-course-reveal.lrl-course-is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.lrl-course-heading {
    opacity: 0;
    transform: translateY(-25px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.lrl-course-heading.lrl-course-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lrl-course-card--right {
    transition-delay: 0.05s;
}

.lrl-course-card--center {
    transition-delay: 0.2s;
}

.lrl-course-card--left {
    transition-delay: 0.35s;
}

/* =========================
   Tablet
========================= */

@media (max-width: 992px) {
    .lrl-course-section {
        padding: 58px 18px 45px;
    }

    .lrl-course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .lrl-course-card {
        padding: 25px 22px 23px;
    }

    .lrl-course-image-box {
        height: 135px;
    }

    .lrl-course-title {
        font-size: 30px;
    }

    .lrl-course-card-title {
        font-size: 18px;
    }

    .lrl-course-card-text {
        font-size: 12px;
    }

    .lrl-course-card--right,
    .lrl-course-card--center,
    .lrl-course-card--left {
        transform: translateY(45px);
    }

    .lrl-course-card--right.lrl-course-is-visible,
    .lrl-course-card--center.lrl-course-is-visible,
    .lrl-course-card--left.lrl-course-is-visible {
        transform: translateY(0);
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 600px) {
    .lrl-course-section {
        padding: 45px 12px 35px;
    }

    .lrl-course-heading {
        margin-bottom: 27px;
    }

    .lrl-course-eyebrow {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .lrl-course-title {
        font-size: 24px;
        line-height: 1.7;
    }

    .lrl-course-description {
        margin-top: 9px;
        font-size: 12px;
        line-height: 2;
    }

    .lrl-course-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lrl-course-card {
        width: 100%;
        padding: 24px 22px 22px;
        border-radius: 23px;
    }

    .lrl-course-image-box {
        height: 135px;
        margin-bottom: 14px;
    }

    .lrl-course-image {
        width: 105px;
        height: 105px;
    }

    .lrl-course-image-glow {
        width: 125px;
        height: 90px;
    }

    .lrl-course-card-title {
        font-size: 18px;
    }

    .lrl-course-count {
        font-size: 25px;
    }

    .lrl-course-card-text {
        max-width: 270px;
        font-size: 12px;
    }

    .lrl-course-divider {
        margin-top: 17px;
        margin-bottom: 13px;
    }

    .lrl-course-link {
        font-size: 12px;
    }

    .lrl-course-card--right,
    .lrl-course-card--center,
    .lrl-course-card--left {
        transform: translateY(45px);
    }

    .lrl-course-card--right.lrl-course-is-visible,
    .lrl-course-card--center.lrl-course-is-visible,
    .lrl-course-card--left.lrl-course-is-visible {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lrl-course-image,
    .lrl-course-reveal,
    .lrl-course-heading {
        animation: none;
        transition: none;
    }
}

/* ===============================
   ABOUMOSLEM COURSES
================================ */
.lrl-abu-courses-section {
    width: 100%;
    padding: 55px 20px 35px;
    overflow: hidden;
    background: #f3f8fc;
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
}

.lrl-abu-courses-container {
    width: min(100%, 1280px);
    margin: 0 auto;
}

.lrl-abu-courses-heading {
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}

.lrl-abu-courses-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #fe5900;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.lrl-abu-courses-title {
    margin: 0;
    color: #24325b;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.5;
    font-weight: 900;
    text-align: center;
}

.lrl-abu-courses-subtitle {
    margin: 8px 0 0;
    color: #8990a3;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

.lrl-abu-slider-wrapper {
    position: relative;
    padding: 0 16px;
}

.lrl-abu-slider {
    overflow: hidden;
    padding: 5px 0 15px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.lrl-abu-slider.lrl-abu-is-dragging {
    cursor: grabbing;
}

.lrl-abu-slider-track {
    display: flex;
    gap: 24px;
    direction: ltr;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.lrl-abu-course-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    overflow: hidden;
    padding: 15px;
    border: 1px solid #e1e8ed;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(31, 60, 83, 0.06);
    direction: rtl;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lrl-abu-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(31, 60, 83, 0.13);
}

.lrl-abu-course-image {
    position: relative;
    width: 100%;
    height: 215px;
    overflow: hidden;
    border-radius: 8px;
    background: #080808;
}

.lrl-abu-course-image::after {
    position: absolute;
    content: "";
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%,
        rgba(255, 32, 58, 0.12),
        transparent 62%);
}

.lrl-abu-course-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.lrl-abu-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 2px 0;
    color: #888;
    font-size: 12px;
}

.lrl-abu-rating {
    color: #f19a12;
    white-space: nowrap;
}

.lrl-abu-rating i {
    margin-left: 3px;
    font-size: 17px;
}

.lrl-abu-rating-label {
    white-space: nowrap;
    font-family: 'VazirmatnMedium';
}

.lrl-abu-course-card-title {
    min-height: 48px;
    margin: 15px 0 11px;
    color: #202020;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 900;
}

.lrl-abu-course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 37px;
    color: #777;
    font-size: 13px;
    margin-top: 10px;
}

.lrl-abu-course-meta b {
    margin-right: 4px;
    color: #333;
    font-weight: 700;
    font-family: 'iranyekan';
}

.lrl-abu-status {
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}

.lrl-abu-status--success {
    background: #13c58b;
    font-family: 'VazirmatnBlack';
}

.lrl-abu-status--pending {
    background: #f39100;
}

.lrl-abu-course-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 9px;
    padding: 13px 12px;
    border-radius: 6px;
    background: #f1f2f3;
}

.lrl-abu-course-info > div {
    position: relative;
    min-width: 0;
    padding-right: 24px;
    font-family: 'VazirmatnBlack';
}

.lrl-abu-course-info span,
.lrl-abu-course-info strong {
    display: block;
}

.lrl-abu-course-info span {
    margin-bottom: 4px;
    color: #888;
    font-size: 10px;
    font-family: 'VazirmatnBlack';
}

.lrl-abu-course-info strong {
    overflow: hidden;
    color: #222;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lrl-abu-course-info i {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #ffffff;
    font-size: 23px;
}

.lrl-abu-course-info > div:last-child i {
    color: #f19a12;
}

.lrl-abu-course-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
}

.lrl-abu-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 113px;
    min-height: 48px;
    padding: 0 15px;
    border-radius: 5px;
    color: #fff;
    background: #087ef5;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    font-family: 'VazirmatnBlack';
}

.lrl-abu-register-btn:hover {
    background: #0567d1;
    transform: translateY(-3px);
}

.lrl-abu-price {
    text-align: right;
}

.lrl-abu-price strong {
    display: block;
    color: #12b879;
    font-size: 23px;
    line-height: 1.2;
    font-family: 'iranyekan';
    font-weight: 900;
}

.lrl-abu-price span {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 11px;
}

.lrl-abu-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #fe5900;
    cursor: pointer;
    opacity: 0;
    box-shadow: 0 8px 20px rgba(254, 89, 0, 0.3);
    transform: translateY(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.lrl-abu-slider-wrapper:hover .lrl-abu-slider-arrow {
    opacity: 1;
}

.lrl-abu-slider-arrow:hover {
    background: #db4900;
    transform: translateY(-50%) scale(1.08);
}

.lrl-abu-slider-arrow--next {
    right: -5px;
}

.lrl-abu-slider-arrow--prev {
    left: -5px;
}

.lrl-abu-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 18px;
    margin-top: 5px;
}

.lrl-abu-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c9d0d5;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.lrl-abu-slider-dot.is-active {
    width: 20px;
    border-radius: 10px;
    background: #fe8b00;
}

.lrl-abu-reveal {
    opacity: 0;
    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.lrl-abu-reveal:nth-child(odd) {
    transform: translateX(70px);
}

.lrl-abu-reveal:nth-child(even) {
    transform: translateX(-70px);
}

.lrl-abu-reveal.lrl-abu-is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Tablet */
@media (max-width: 1050px) {
    .lrl-abu-courses-section {
        padding: 45px 16px 30px;
    }

    .lrl-abu-course-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .lrl-abu-slider-arrow {
        opacity: 1;
    }

    .lrl-abu-course-image {
        height: 205px;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .lrl-abu-courses-section {
        padding: 38px 10px 25px;
    }

    .lrl-abu-courses-heading {
        margin-bottom: 22px;
        text-align: center;
    }

    .lrl-abu-courses-eyebrow {
        font-size: 13px;
    }

    .lrl-abu-courses-title {
        font-size: 24px;
    }

    .lrl-abu-courses-subtitle {
        font-size: 12px;
    }

    .lrl-abu-slider-wrapper {
        padding: 0 4px;
    }

    .lrl-abu-slider-track {
        gap: 12px;
    }

    .lrl-abu-course-card {
        flex-basis: 100%;
        padding: 10px;
        border-radius: 15px;
    }

    .lrl-abu-course-image {
        height: 190px;
    }

    .lrl-abu-course-card-title {
        font-size: 16px;
    }

    .lrl-abu-course-info {
        padding: 12px 9px;
    }

    .lrl-abu-course-info strong {
        font-size: 11px;
    }

    .lrl-abu-register-btn {
        min-width: 100px;
        min-height: 44px;
        font-size: 14px;
    }

    .lrl-abu-price strong {
        font-size: 20px;
    }

    .lrl-abu-slider-arrow {
        width: 34px;
        height: 34px;
        opacity: 1;
        font-size: 12px;
    }

    .lrl-abu-slider-arrow--next {
        right: -2px;
    }

    .lrl-abu-slider-arrow--prev {
        left: -2px;
    }

    .lrl-abu-slider-dots {
        margin-top: 8px;
    }

    .lrl-abu-reveal:nth-child(odd),
    .lrl-abu-reveal:nth-child(even) {
        transform: translateY(35px);
    }

    .lrl-abu-reveal.lrl-abu-is-visible {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lrl-abu-slider-track,
    .lrl-abu-reveal,
    .lrl-abu-course-card,
    .lrl-abu-register-btn {
        transition: none;
    }
}


/* =========================================
   Status Modal
========================================= */

.status-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    direction: rtl;
    font-family: inherit;
}

.status-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 30, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: statusModalOverlayShow 0.25s ease forwards;
}

.status-modal__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 410px;
    padding: 44px 32px 30px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 24px;
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.3);
    animation: statusModalContentShow 0.35s ease forwards;
}

.status-modal__close {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    cursor: pointer;
    background: #f4f6f9;
    border: none;
    border-radius: 11px;
    transition: all 0.2s ease;
}

.status-modal__close:hover {
    background: #e7ebf0;
    transform: rotate(90deg);
}

.status-modal__close span {
    position: absolute;
    width: 17px;
    height: 2px;
    background-color: #64748b;
    border-radius: 20px;
}

.status-modal__close span:first-child {
    transform: rotate(45deg);
}

.status-modal__close span:last-child {
    transform: rotate(-45deg);
}

.status-modal__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin: 0 auto 21px;
    color: #ffffff;
    border-radius: 50%;
}

.status-modal__icon svg {
    width: 43px;
    height: 43px;
}

.status-modal--success .status-modal__icon {
    background: linear-gradient(135deg, #22c55e, #059669);
    box-shadow: 0 13px 28px rgba(5, 150, 105, 0.3);
}

.status-modal--success .status-modal__confirm {
    background: linear-gradient(135deg, #22c55e, #059669);
    box-shadow: 0 10px 22px rgba(5, 150, 105, 0.23);
}

.status-modal--error .status-modal__icon {
    background: linear-gradient(135deg, #fb5b5b, #dc2626);
    box-shadow: 0 13px 28px rgba(220, 38, 38, 0.28);
}

.status-modal--error .status-modal__confirm {
    background: linear-gradient(135deg, #fb5b5b, #dc2626);
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.23);
}

.status-modal__title {
    margin: 0 0 11px;
    color: #172033;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.6;
}

.status-modal__message {
    margin: 0 0 27px;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
}

.status-modal__confirm {
    width: 100%;
    min-height: 49px;
    padding: 11px 20px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 13px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.status-modal__confirm:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
}

.status-modal__confirm:active {
    transform: translateY(0) scale(0.98);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  */
.status-modal.is-closing .status-modal__overlay {
    animation: statusModalOverlayHide 0.25s ease forwards;
}

.status-modal.is-closing .status-modal__content {
    animation: statusModalContentHide 0.25s ease forwards;
}

@keyframes statusModalOverlayShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes statusModalContentShow {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes statusModalOverlayHide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes statusModalContentHide {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(18px) scale(0.95);
    }
}

@media (max-width: 480px) {
    .status-modal {
        padding: 16px;
    }

    .status-modal__content {
        padding: 42px 22px 24px;
        border-radius: 20px;
    }

    .status-modal__icon {
        width: 76px;
        height: 76px;
    }

    .status-modal__title {
        font-size: 20px;
    }

    .status-modal__message {
        font-size: 14px;
    }
}

/* =========================================
   LARAL | ABUMOSLEM FAQ 2
   Unique prefix: lrl-abu-faq2-
========================================= */

.lrl-abu-faq2-section {
    width: 100%;
    overflow: hidden;
    padding: 70px 18px;
    direction: rtl;
    background:
        radial-gradient(circle at 10% 20%, rgba(215, 0, 0, 0.035), transparent 24%),
        #ffffff;
    font-family: Vazirmatn, IRANSans, sans-serif;
}

.lrl-abu-faq2-container {
    width: min(100%, 1050px);
    margin: 0 auto;
}

.lrl-abu-faq2-heading {
    margin-bottom: 25px;
    text-align: center;
}

.lrl-abu-faq2-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #d8070b;
    font-size: 13px;
    font-weight: 800;
}

.lrl-abu-faq2-title {
    margin: 0;
    color: #101010;
    font-size: clamp(27px, 3.2vw, 39px);
    font-weight: 900;
    line-height: 1.5;
}

.lrl-abu-faq2-subtitle {
    margin: 5px 0 0;
    color: #747474;
    font-size: 14px;
    line-height: 1.9;
}

.lrl-abu-faq2-list {
    display: grid;
    gap: 8px;
}

.lrl-abu-faq2-item {
    overflow: hidden;
    border: 1px solid #ececef;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 5px 16px rgba(20, 25, 35, 0.035);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.lrl-abu-faq2-item--active {
    border-color: #e5e6e9;
    box-shadow: 0 8px 20px rgba(20, 25, 35, 0.06);
}

.lrl-abu-faq2-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 12px 17px;
    border: 0;
    color: #141414;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    text-align: right;
}

.lrl-abu-faq2-question-text {
    padding-left: 15px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.7;
}

.lrl-abu-faq2-icon {
    position: relative;
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    border: 1.5px solid #fe5900;
    border-radius: 50%;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.lrl-abu-faq2-icon::before,
.lrl-abu-faq2-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    content: "";
    border-radius: 5px;
    background: #fe5900;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease, transform 0.3s ease;
}

.lrl-abu-faq2-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.lrl-abu-faq2-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s ease;
}

.lrl-abu-faq2-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 56px 0 17px;
    color: #5d5d5d;
    font-size: 14px;
    line-height: 2.15;
    transition: padding 0.45s ease;
    font-family: 'VazirmatnMedium';
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-answer {
    grid-template-rows: 1fr;
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-answer-inner {
    padding-top: 0;
    padding-bottom: 18px;
    font-family: 'VazirmatnMedium';
    padding-right: 18px;
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-icon {
    border-color: #fe5900;
    background: #fe5900;
    transform: rotate(180deg);
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-icon::before,
.lrl-abu-faq2-item--active .lrl-abu-faq2-icon::after {
    background: #ffffff;
}

.lrl-abu-faq2-item--active .lrl-abu-faq2-icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.lrl-abu-faq2-contact-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 245px;
    margin-top: 28px;
    overflow: hidden;
    border-radius: 12px;
    background:
        radial-gradient(circle at 79% 46%, rgba(221, 17, 21, 0.46), transparent 23%),
        linear-gradient(110deg, #080b1c 0%, #0b0b1d 62%, #290812 100%);
    box-shadow: 0 12px 28px rgba(12, 12, 25, 0.12);
}

.lrl-abu-faq2-contact-banner::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(5, 7, 20, 0.2) 0%,
        rgba(5, 7, 20, 0.58) 45%,
        rgba(5, 7, 20, 0.92) 100%
    );
}

.lrl-abu-faq2-contact-content {
    position: relative;
    z-index: 2;
    width: 58%;
    padding: 32px 35px;
    color: #ffffff;
}

.lrl-abu-faq2-contact-content h3 {
    margin: 0;
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.4;
    color: #ffffff;
}

.lrl-abu-faq2-contact-content p {
    max-width: 450px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 2;
}

.lrl-abu-faq2-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.lrl-abu-faq2-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 140px;
    min-height: 43px;
    padding: 14px 17px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lrl-abu-faq2-contact-btn:hover {
    transform: translateY(-4px);
}

.lrl-abu-faq2-contact-btn--red {
    color: #ffffff;
    background: #df1015;
    box-shadow: 0 8px 18px rgba(223, 16, 21, 0.28);
    font-size: 16px;
}

.lrl-abu-faq2-contact-btn--white {
    color: #1b1b1b;
    background: #ffffff;
}

.lrl-abu-faq2-contact-image-wrap {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lrl-abu-faq2-contact-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lrl-abu-faq2-scroll-left,
.lrl-abu-faq2-scroll-right {
    opacity: 1;
}

.lrl-abu-faq2-scroll-left.lrl-abu-faq2-animate {
    animation: lrl-abu-faq2-enter-left 0.8s cubic-bezier(.22, .61, .36, 1) both;
}

.lrl-abu-faq2-scroll-right.lrl-abu-faq2-animate {
    animation: lrl-abu-faq2-enter-right 0.8s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes lrl-abu-faq2-enter-left {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lrl-abu-faq2-enter-right {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 850px) {
    .lrl-abu-faq2-section {
        padding: 55px 15px;
    }

    .lrl-abu-faq2-contact-content {
        width: 62%;
        padding: 28px 25px;
    }

    .lrl-abu-faq2-contact-image-wrap {
        left: -2%;
        width: 44%;
    }
}

@media (max-width: 640px) {
    .lrl-abu-faq2-section {
        padding: 42px 10px;
    }

    .lrl-abu-faq2-heading {
        margin-bottom: 20px;
    }

    .lrl-abu-faq2-title {
        font-size: 27px;
    }

    .lrl-abu-faq2-subtitle {
        font-size: 12px;
    }

    .lrl-abu-faq2-list {
        gap: 7px;
    }

    .lrl-abu-faq2-item {
        border-radius: 10px;
    }

    .lrl-abu-faq2-question {
        min-height: 51px;
        padding: 10px 12px;
    }

    .lrl-abu-faq2-question-text {
        padding-left: 10px;
        font-size: 12px;
    }

    .lrl-abu-faq2-icon {
        flex-basis: 21px;
        width: 21px;
        height: 21px;
    }

    .lrl-abu-faq2-answer-inner {
        padding-right: 43px;
        padding-left: 12px;
        font-size: 11px;
        line-height: 2;
    }

    .lrl-abu-faq2-contact-banner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 420px;
        margin-top: 20px;
    }

    .lrl-abu-faq2-contact-content {
        z-index: 3;
        width: 100%;
        padding: 27px 18px 15px;
        text-align: center;
    }

    .lrl-abu-faq2-contact-content h3 {
        font-size: 27px;
    }

    .lrl-abu-faq2-contact-content p {
        margin-right: auto;
        margin-left: auto;
        font-size: 11px;
    }

    .lrl-abu-faq2-contact-actions {
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .lrl-abu-faq2-contact-btn {
        min-width: 125px;
        min-height: 40px;
        padding: 0 11px;
        font-size: 11px;
    }

    .lrl-abu-faq2-contact-image-wrap {
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }

    .lrl-abu-faq2-contact-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }

    .lrl-abu-faq2-scroll-left.lrl-abu-faq2-animate,
    .lrl-abu-faq2-scroll-right.lrl-abu-faq2-animate {
        animation-name: lrl-abu-faq2-enter-bottom;
    }
}

@keyframes lrl-abu-faq2-enter-bottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lrl-abu-faq2-item,
    .lrl-abu-faq2-answer,
    .lrl-abu-faq2-answer-inner,
    .lrl-abu-faq2-contact-btn {
        transition: none;
    }

    .lrl-abu-faq2-scroll-left.lrl-abu-faq2-animate,
    .lrl-abu-faq2-scroll-right.lrl-abu-faq2-animate {
        animation: none;
    }
}

.comment-admin-answer {
    position: relative;
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid rgba(254, 89, 0, 0.18);
    border-right: 4px solid #fe5900;
    border-radius: 10px;
    background: #fff7f2;
}

.comment-admin-answer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-admin-answer__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fe5900;
    font-size: 15px;
    font-weight: 700;
}

.comment-admin-answer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: #fe5900;
    font-size: 12px;
}

.comment-admin-answer__text {
    margin: 0 !important;
    color: #555;
    font-size: 14px;
    line-height: 2;
}

/* Ø­Ø§Ù„Øª Ù…ÙˆØ¨Ø§ÛŒÙ„ */
@media (max-width: 575px) {
    .comment-admin-answer {
        padding: 15px;
    }

    .comment-admin-answer__text {
        font-size: 13px;
    }
}
/* Details Blog Css Responsiv Mobile */

.news-standard-section,
.gt-news-details-wrapper,
.gt-news-details-content,
.gt-comments-area,
.gt-blog-single-comment,
.gt-blog-single-comment .gt-content {
    max-width: 100%;
}

.gt-details-image img,
.gt-recent-thumb img {
    display: block;
    max-width: 100%;
    height: auto;
}

.gt-blog-single-comment,
.gt-blog-single-comment p,
.gt-blog-single-comment span,
.gt-blog-single-comment h5,
.gt-blog-single-comment a,
.comment-admin-answer,
.comment-admin-answer__text {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.gt-blog-single-comment .gt-content {
    min-width: 0;
    flex: 1 1 auto;
}

.comment-admin-answer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.gt-comment-form-wrap input,
.gt-comment-form-wrap textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.gt-comment-form-wrap textarea {
    min-height: 150px;
}

@media (max-width: 575.98px) {

    .gt-blog-single-comment {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .gt-blog-single-comment .image {
        flex: 0 0 auto;
    }

    .gt-blog-single-comment .image img {
        width: 48px !important;
        height: 48px;
        object-fit: cover;
        border-radius: 50%;
    }

    .gt-blog-single-comment .gt-content {
        width: 100%;
        min-width: 0;
    }

    .gt-blog-single-comment .head {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 6px !important;
    }

    .gt-blog-single-comment .head .con {
        width: 100%;
    }

    .gt-blog-single-comment .head h5 {
        margin-bottom: 4px;
        font-size: 17px;
    }

    .gt-blog-single-comment .head span {
        display: block;
        font-size: 12px;
        line-height: 1.9;
    }

    .gt-blog-single-comment .mt-30 {
        margin-top: 18px !important;
    }

    .comment-admin-answer {
        margin-top: 16px;
        padding: 14px !important;
        border-radius: 10px;
    }

    .comment-admin-answer__title {
        font-size: 14px;
    }

    .comment-admin-answer__text {
        font-size: 13px;
        line-height: 2;
    }

    .gt-tag-share-wrap .tagcloud {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }

    .gt-tag-share-wrap .tagcloud a {
        margin: 0 !important;
    }

    .gt-news-details-content > h3 {
        font-size: 22px;
        line-height: 1.8;
        overflow-wrap: anywhere;
    }

    .gt-comment-form-wrap .theme-btn {
        width: 100%;
        justify-content: center;
    }

    .gt-recent-items {
        max-width: 100%;
    }

    .gt-recent-content {
        min-width: 0;
    }

    .gt-recent-content h5,
    .gt-recent-content h5 a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

.comment-admin-answer {
    position: relative;
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid rgba(254, 89, 0, 0.18);
    border-right: 4px solid #fe5900;
    border-radius: 10px;
    background: #fff7f2;
}

.comment-admin-answer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-admin-answer__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fe5900;
    font-size: 15px;
    font-weight: 700;
}

.comment-admin-answer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: #fe5900;
    font-size: 12px;
}

.comment-admin-answer__text {
    margin: 0 !important;
    color: #555;
    font-size: 14px;
    line-height: 2;
}

@media (max-width: 575px) {
    .comment-admin-answer {
        padding: 15px;
    }

    .comment-admin-answer__text {
        font-size: 13px;
    }
}

/* End Details Blog Css Responsiv Mobile */

/* START PAGE ORDER */
/* =========================================
LRL ABU - COURSE ORDER
========================================= */

.lrl-abu-order-section {
    position: relative;
    padding: 90px 0 110px;
    background:
        radial-gradient(circle at 10% 20%, rgba(210, 0, 0, .06), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 0, 0, .05), transparent 30%),
        #f7f7f7;
    direction: rtl;
    overflow: hidden;
}

.lrl-abu-order-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(190, 0, 0, .035);
    top: -200px;
    right: -180px;
    filter: blur(20px);
}

.lrl-abu-order-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================
HEADER
========================================= */

.lrl-abu-order-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
    animation: lrlAbuFadeUp .7s ease both;
}

.lrl-abu-order-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    border-radius: 50px;
    background: rgba(190, 0, 0, .08);
    color: #b00000;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.lrl-abu-order-header h2 {
    margin: 0;
    color: #161616;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.5;
}

.lrl-abu-order-header h2 span {
    color: #b00000;
}

.lrl-abu-order-header p {
    margin: 13px 0 0;
    color: #777;
    font-size: 15px;
}

/* =========================================
MAIN BOX
========================================= */

.lrl-abu-order-box {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, .7fr);
    direction: ltr;
    gap: 28px;
    max-width: 1100px;
    margin: auto;
    align-items: start;
}

.lrl-abu-order-content,
.lrl-abu-order-summary {
    direction: rtl;
}

/* =========================================
CONTENT
========================================= */

.lrl-abu-order-content {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .07);
    border: 1px solid rgba(0, 0, 0, .045);
    animation: lrlAbuFadeUp .8s ease both;
}

/* =========================================
COURSE INFO
========================================= */

.lrl-abu-course-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: #fafafa;
    margin-bottom: 35px;
}

.lrl-abu-course-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b00000;
    color: #fff;
    border-radius: 16px;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(176, 0, 0, .2);
}

.lrl-abu-course-info span {
    display: block;
    color: #999;
    font-size: 12px;
    margin-bottom: 4px;
}

.lrl-abu-course-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #222;
}

/* =========================================
STEP TITLE
========================================= */

.lrl-abu-step-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 23px;
}

.lrl-abu-step-title > span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    color: #fff;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
}

.lrl-abu-step-title h3 {
    margin: 0 0 3px;
    font-size: 17px;
    font-weight: 850;
    color: #222;
}

.lrl-abu-step-title p {
    margin: 0;
    font-size: 12px;
    color: #999;
}

.lrl-abu-payment-step {
    margin-top: 35px;
}

/* =========================================
SELECT
========================================= */

.lrl-abu-form-group {
    margin-bottom: 10px;
}

.lrl-abu-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.lrl-abu-form-group label i {
    color: #b00000;
}

.lrl-abu-select-wrapper {
    position: relative;
}

.lrl-abu-select {
    width: 100%;
    height: 60px;
    border: 1px solid #e7e7e7;
    border-radius: 15px;
    background: #fafafa;
    padding: 0 18px 0 50px;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: .25s ease;
}

.lrl-abu-select:hover,
.lrl-abu-select:focus {
    border-color: #b00000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(176, 0, 0, .06);
}

.lrl-abu-select-wrapper > i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #777;
}

.lrl-abu-form-group small {
    display: block;
    color: #aaa;
    font-size: 11px;
    margin-top: 9px;
}

/* =========================================
PAYMENT TABS
========================================= */

.lrl-abu-payment-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.lrl-abu-payment-tab {
    position: relative;
    display: flex;
    align-items: center;
    text-align: right;
    gap: 12px;
    min-height: 82px;
    padding: 15px;
    border: 1px solid #e9e9e9;
    border-radius: 17px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: .3s ease;
}

.lrl-abu-payment-tab:hover {
    transform: translateY(-2px);
    border-color: #d4d4d4;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.lrl-abu-payment-tab.active {
    border-color: #b00000;
    background: rgba(176, 0, 0, .035);
    box-shadow: 0 8px 25px rgba(176, 0, 0, .08);
}

.lrl-abu-payment-tab-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    border-radius: 13px;
    color: #555;
    transition: .3s ease;
}

.lrl-abu-payment-tab.active .lrl-abu-payment-tab-icon {
    background: #b00000;
    color: #fff;
}

.lrl-abu-payment-tab strong {
    display: block;
    font-size: 13px;
    color: #222;
    margin-bottom: 5px;
}

.lrl-abu-payment-tab span {
    display: block;
    font-size: 10px;
    color: #999;
}

.lrl-abu-tab-check {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b00000;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    opacity: 0;
    transform: scale(.5);
    transition: .25s ease;
}

.lrl-abu-payment-tab.active .lrl-abu-tab-check {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
PAYMENT BOX
========================================= */

.lrl-abu-payment-box {
    display: none;
    margin-top: 18px;
    padding: 20px;
    border-radius: 17px;
    background: #fafafa;
    animation: lrlAbuSlideDown .35s ease both;
}

.lrl-abu-payment-box.active {
    display: block;
}

/* =========================================
DISCOUNT
========================================= */

.lrl-abu-discount-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.lrl-abu-discount-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 0, 0, .08);
    color: #b00000;
    border-radius: 12px;
}

.lrl-abu-discount-header h4 {
    margin: 0 0 3px;
    font-size: 13px;
    color: #222;
}

.lrl-abu-discount-header p {
    margin: 0;
    font-size: 10px;
    color: #999;
}

.lrl-abu-discount-form {
    display: flex;
    gap: 10px;
}

.lrl-abu-discount-form input {
    width: 100%;
    color: #181818;
    height: 52px;
    border: 1px solid #e6e6e6;
    background: #fff;
    border-radius: 13px;
    outline: none;
    padding: 0 15px;
    font-family: inherit;
    font-size: 15px;
    transition: .25s ease;
}

.lrl-abu-discount-form input:focus {
    border-color: #b00000;
    box-shadow: 0 0 0 4px rgba(176, 0, 0, .05);
}

.lrl-abu-discount-form button {
    min-width: 135px;
    border: 0;
    border-radius: 13px;
    background: #181818;
    color: #fff;
    font-family: inherit;
    font-size: 11px;
    cursor: pointer;
    transition: .3s ease;
}

.lrl-abu-discount-form button:hover {
    background: #b00000;
}

.lrl-abu-discount-message {
    display: none;
    margin-top: 10px;
    font-size: 11px;
}

.lrl-abu-discount-message.success {
    display: block;
    color: #159447;
}

.lrl-abu-discount-message.error {
    display: block;
    color: #d00000;
}

/* =========================================
INSTALLMENT
========================================= */

.lrl-abu-installment-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.lrl-abu-installment-alert-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 0, 0, .08);
    color: #b00000;
    border-radius: 12px;
}

.lrl-abu-installment-alert strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #222;
}

.lrl-abu-installment-alert p {
    margin: 0;
    color: #888;
    font-size: 11px;
    line-height: 2;
}

.lrl-abu-installment-alert b {
    color: #b00000;
}

/* =========================================
ACTION
========================================= */

.lrl-abu-order-action {
    margin-top: 25px;
}

.lrl-abu-submit-btn {
    width: 100%;
    min-height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #a90000, #d00000);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 13px 30px rgba(176, 0, 0, .2);
    transition: .3s ease;
}

.lrl-abu-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 35px rgba(176, 0, 0, .28);
}

.lrl-abu-submit-btn:active {
    transform: translateY(0);
}

/* =========================================
SUMMARY
========================================= */

.lrl-abu-order-summary {
    position: sticky;
    top: 25px;
    padding: 27px;
    border-radius: 25px;
    background: #171717;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .16);
    animation: lrlAbuFadeUp .9s ease both;
}

.lrl-abu-order-summary::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(190, 0, 0, .15);
    top: -120px;
    left: -90px;
    filter: blur(10px);
}

.lrl-abu-summary-top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.lrl-abu-summary-logo {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #b00000;
    color: #fff;
}

.lrl-abu-summary-top span {
    font-size: 14px;
    font-weight: 800;
}

.lrl-abu-summary-course {
    position: relative;
    padding: 17px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .055);
    margin-bottom: 16px;
}

.lrl-abu-summary-course span {
    display: block;
    color: #888;
    font-size: 10px;
    margin-bottom: 7px;
}

.lrl-abu-summary-course strong {
    font-size: 14px;
    line-height: 1.8;
}

.lrl-abu-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.lrl-abu-summary-line span {
    color: #888;
    font-size: 11px;
}

.lrl-abu-summary-line strong {
    color: #fff;
    font-size: 11px;
}

.lrl-abu-summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 18px 0;
}

.lrl-abu-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lrl-abu-total > span {
    color: #aaa;
    font-size: 12px;
}

.lrl-abu-total strong {
    color: #fff;
    font-size: 23px;
}

.lrl-abu-total small {
    font-size: 9px;
    color: #aaa;
    font-weight: 400;
}

.lrl-abu-security {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.lrl-abu-security > div {
    color: #67d48a;
}

.lrl-abu-security p {
    margin: 0;
    color: #777;
    font-size: 9px;
    line-height: 1.8;
}

/* =========================================
ANIMATIONS
========================================= */

@keyframes lrlAbuFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }


}

@keyframes lrlAbuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================
TABLET
========================================= */

@media (max-width: 991px) {

    .lrl-abu-order-section {
        padding: 70px 0 80px;
    }

    .lrl-abu-order-box {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .lrl-abu-order-summary {
        position: relative;
        top: auto;
        order: -1;
    }

}

/* =========================================
MOBILE
========================================= */

@media (max-width: 575px) {

    .lrl-abu-order-section {
        padding: 55px 14px 65px;
    }

    .lrl-abu-order-header {
        margin-bottom: 35px;
    }

    .lrl-abu-order-header h2 {
        font-size: 27px;
    }

    .lrl-abu-order-header p {
        font-size: 12px;
        line-height: 2;
    }

    .lrl-abu-order-content {
        padding: 19px;
        border-radius: 20px;
    }

    .lrl-abu-course-info {
        padding: 14px;
    }

    .lrl-abu-course-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .lrl-abu-payment-tabs {
        grid-template-columns: 1fr;
    }

    .lrl-abu-payment-tab {
        min-height: 72px;
    }

    .lrl-abu-discount-form {
        flex-direction: column;
    }

    .lrl-abu-discount-form button {
        min-height: 50px;
    }

    .lrl-abu-order-summary {
        padding: 21px;
        border-radius: 20px;
    }

    .lrl-abu-total strong {
        font-size: 20px;
    }

    .lrl-abu-select {
        height: 56px;
        font-size: 12px;
    }
}

/* END PAGE ORDER */

/* =========================================================
   HEADER AUTH BUTTONS
   ========================================================= */
.header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 18px;
}

.header-login-btn {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border-radius: 10px;

    border: 1px solid rgba(255, 145, 0, 0.45);
    background: rgba(255, 145, 0, 0.06);
    color: #f28c00;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}

.header-login-btn:hover {
    color: #fff;
    background: #f28c00;
    border-color: #f28c00;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(242, 140, 0, 0.25);
}


.header-register-btn {
    position: relative;

    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 20px;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #ffad33,
        #f07800
    );

    color: #fff;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    overflow: hidden;

    box-shadow: 0 8px 20px rgba(242, 140, 0, 0.25);

    transition: all 0.3s ease;
}

.header-register-btn::before {
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.6s ease;
}

.header-register-btn:hover::before {
    left: 140%;
}
.header-register-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(242, 140, 0, 0.35);
}
.header-register-btn i {
    font-size: 12px;

    transition: transform 0.3s ease;
}

.header-register-btn:hover i {
    transform: translate(-3px, -3px);
}

.header-account-btn {
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-left: 18px;
    padding: 0 20px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #ffad33,
        #f07800
    );

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(242, 140, 0, 0.22);

    transition: all 0.3s ease;
}

.header-account-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(242, 140, 0, 0.35);
}

.header-account-btn > i:last-child {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.header-account-btn:hover > i:last-child {
    transform: translateX(-4px);
}
@media (max-width: 1199px) {

    .header-auth-buttons {
        display: flex !important;
        align-items: center;
        gap: 6px;
        margin-left: 10px;
    }
    .header-login-btn,
    .header-register-btn,
    .header-account-btn {
        height: 38px;
        padding: 0 12px;
        border-radius: 8px;
        font-size: 12px;
    }
    .header-login-btn {
        gap: 5px;
    }
    .header-register-btn {
        gap: 5px;
    }
    .header-account-btn {
        display: inline-flex !important;
        margin-left: 10px;
        gap: 6px;
    }
    .header-login-btn i,
    .header-register-btn i,
    .header-account-btn i {
        font-size: 10px;
    }
}

/* =========================================
   ABUMOSLEM STORIES
========================================= */

.abu-stories-section {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(190, 20, 35, 0.10),
            transparent 40%
        ),
        #080808;
}


.abu-stories-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}


/* =========================================
   HEADER
========================================= */

.abu-stories-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}


.abu-stories-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;

    color: #d7192f;
    font-size: 13px;
    font-weight: 700;
}


.abu-stories-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #d7192f;
    border-radius: 10px;
}


.abu-stories-title {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.2;
}


/* =========================================
   NAVIGATION
========================================= */

.abu-stories-navigation {
    display: flex;
    gap: 10px;
}


.abu-story-nav-btn {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;

    background: rgba(255,255,255,0.06);
    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.abu-story-nav-btn:hover {
    transform: translateY(-3px);
    background: #d7192f;
    border-color: #d7192f;
}


/* =========================================
   SLIDER
========================================= */

.abu-stories-wrapper {
    width: 100%;
    overflow: hidden;
}


.abu-stories-track {
    display: flex;
    gap: 18px;

    direction: rtl;

    overflow-x: auto;
    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 5px 0 20px;
}


.abu-stories-track::-webkit-scrollbar {
    display: none;
}


/* =========================================
   STORY CARD
========================================= */

.abu-story-card {
    position: relative;

    flex: 0 0 235px;

    height: 390px;

    border-radius: 24px;

    overflow: hidden;

    cursor: pointer;

    background: #151515;

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.abu-story-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 70px rgba(0,0,0,.55);
}


.abu-story-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


.abu-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1);
}


.abu-story-card:hover
.abu-story-image img {
    transform: scale(1.07);
}


/* =========================================
   CARD GRADIENT
========================================= */

.abu-story-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.15) 0%,
            transparent 35%,
            rgba(0,0,0,.75) 100%
        );
}


/* =========================================
   CARD USER
========================================= */

.abu-story-info {
    position: absolute;

    top: 18px;
    right: 18px;
    left: 18px;

    z-index: 2;
}


.abu-story-user {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;
}


.abu-story-avatar {
    width: 38px;
    height: 38px;

    padding: 2px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #d7192f,
            #ff5265,
            #7d101b
        );
}


.abu-story-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
    background: #111;
}


.abu-story-user strong {
    display: block;

    font-size: 13px;
    font-weight: 800;
}


.abu-story-user span {
    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.65);

    font-size: 11px;
}


/* =========================================
   STORY VIEWER
========================================= */

.abu-story-viewer {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


.abu-story-viewer.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}


/* =========================================
   BACKDROP
========================================= */

.abu-story-viewer-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(0,0,0,.92);

    backdrop-filter: blur(18px);
}


/* =========================================
   VIEWER CONTENT
========================================= */

.abu-story-viewer-content {
    position: relative;

    width: min(430px, 92vw);
    height: min(780px, 90vh);

    overflow: hidden;

    border-radius: 24px;

    background: #101010;

    box-shadow:
        0 40px 120px rgba(0,0,0,.7);

    transform: scale(.92);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);
}


.abu-story-viewer.active
.abu-story-viewer-content {
    transform: scale(1);
}


/* =========================================
   PROGRESS BARS
========================================= */

.abu-story-progress {
    position: absolute;

    top: 12px;
    right: 12px;
    left: 12px;

    z-index: 20;

    display: flex;

    gap: 5px;
}


.abu-story-progress-item {
    flex: 1;

    height: 3px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255,255,255,.25);
}


.abu-story-progress-fill {
    width: 0%;
    height: 100%;

    background: #fff;

    border-radius: inherit;
}


/* =========================================
   VIEWER TOP
========================================= */

.abu-story-viewer-top {
    position: absolute;

    top: 25px;
    right: 18px;
    left: 18px;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.abu-story-viewer-user {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;
}


.abu-story-viewer-avatar {
    width: 40px;
    height: 40px;

    padding: 2px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #d7192f,
            #ff5265
        );
}


.abu-story-viewer-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    background: #111;
}


.abu-story-viewer-user-info strong {
    display: block;

    font-size: 13px;
}


.abu-story-viewer-user-info span {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.65);

    font-size: 11px;
}


/* =========================================
   CLOSE
========================================= */

.abu-story-close {
    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 50%;

    background: rgba(0,0,0,.35);

    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background .3s ease,
        transform .3s ease;
}


.abu-story-close:hover {
    background: rgba(215,25,47,.9);
    transform: rotate(90deg);
}


/* =========================================
   VIEWER IMAGE
========================================= */

.abu-story-viewer-image-wrapper {
    position: relative;

    width: 100%;
    height: 100%;
}


.abu-story-viewer-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    opacity: 0;

    transform: scale(1.03);

    transition:
        opacity .35s ease,
        transform .5s ease;
}


.abu-story-viewer-image.loaded {
    opacity: 1;
    transform: scale(1);
}


/* =========================================
   CLICK ZONES
========================================= */

.abu-story-click-zone {
    position: absolute;

    top: 0;
    bottom: 0;

    width: 50%;

    z-index: 5;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.abu-story-click-prev {
    right: 0;
}


.abu-story-click-next {
    left: 0;
}


/* =========================================
   ARROWS
========================================= */

.abu-story-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50%;

    background: rgba(0,0,0,.4);

    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(10px);

    transform: translateY(-50%);

    transition:
        background .3s ease,
        transform .3s ease;
}


.abu-story-arrow:hover {
    background: #d7192f;
}


.abu-story-arrow-prev {
    right: 15px;
}


.abu-story-arrow-next {
    left: 15px;
}


/* =========================================
   BOTTOM CONTENT
========================================= */

.abu-story-viewer-bottom {
    position: absolute;

    right: 25px;
    bottom: 30px;
    left: 25px;

    z-index: 10;

    color: #fff;

    pointer-events: none;
}


.abu-story-viewer-bottom h2 {
    margin: 0;

    font-size: 25px;
    font-weight: 900;

    line-height: 1.4;

    text-shadow:
        0 4px 20px rgba(0,0,0,.8);
}


.abu-story-bottom-line {
    width: 45px;
    height: 3px;

    margin-top: 12px;

    border-radius: 10px;

    background: #d7192f;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .abu-stories-section {
        padding: 55px 0;
    }


    .abu-stories-container {
        padding: 0 18px;
    }


    .abu-stories-header {
        margin-bottom: 25px;
    }


    .abu-stories-navigation {
        display: none;
    }


    .abu-story-card {
        flex-basis: 175px;
        height: 285px;

        border-radius: 20px;
    }


    .abu-story-viewer {
        padding: 0;
    }


    .abu-story-viewer-content {
        width: 100vw;
        height: 100vh;

        max-width: none;
        max-height: none;

        border-radius: 0;
    }


    .abu-story-viewer-top {
        top: 25px;
    }


    .abu-story-arrow {
        display: none;
    }


    .abu-story-viewer-bottom {
        right: 20px;
        bottom: 35px;
        left: 20px;
    }


    .abu-story-viewer-bottom h2 {
        font-size: 21px;
    }

}


@media (max-width: 480px) {

    .abu-story-card {
        flex-basis: 155px;
        height: 255px;
    }

}
/* ============================================
   Button All Blog
   ============================================ */
.view-all-blogs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #ffad33, #f07800);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.35);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 10px;
}

.view-all-blogs-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e64a19 0%, #ff5722 50%, #ff8c00 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.view-all-blogs-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: right 0.6s ease;
    z-index: -1;
}

.view-all-blogs-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.5);
}

.view-all-blogs-btn:hover::before {
    opacity: 1;
}

.view-all-blogs-btn:hover::after {
    right: 100%;
}

.view-all-blogs-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.view-all-blogs-btn:hover i {
    transform: translateX(-5px);
}

.view-all-blogs-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

@media (max-width: 767px) {
    .view-all-blogs-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
/* ============================================
   End Button All Blog
   ============================================ */

.abuinfo2026-wrapper {
    width: 100% !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 20px !important;

    padding: 20px 22px !important;
    margin-top: 18px !important;

    background: #fafafa !important;
    border-radius: 20px !important;

    direction: rtl !important;
    box-sizing: border-box !important;
}


/* هر آیتم */

.abuinfo2026-item {
    flex: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}


/* آیکون */

.abuinfo2026-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 11px !important;
    background: #ffffff !important;
    border: 1px solid #fe5900;
    color: #fe5e08 !important;
    box-sizing: border-box !important;
}


.abuinfo2026-icon svg {
    width: 22px !important;
    height: 22px !important;

    display: block !important;
}


/* متن */

.abuinfo2026-text {
    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;
    justify-content: center !important;

    text-align: right !important;

    line-height: 1.4 !important;
}


/* عنوان */

.abuinfo2026-title {
    display: block !important;
    margin: 0 0 3px 0 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #000000 !important;
}


/* مقدار */

.abuinfo2026-value {
    display: block !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #5e5e5e !important;
    white-space: nowrap !important;
    font-family: 'iranyekan';
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .abuinfo2026-wrapper {
        gap: 8px !important;

        padding: 15px 12px !important;

        border-radius: 17px !important;
    }

    .abuinfo2026-item {
        gap: 7px !important;
    }

    .abuinfo2026-icon {
        width: 35px !important;
        height: 35px !important;

        min-width: 35px !important;

        border-radius: 9px !important;
    }

    .abuinfo2026-icon svg {
        width: 19px !important;
        height: 19px !important;
    }

    .abuinfo2026-title {
        font-size: 11px !important;
    }

    .abuinfo2026-value {
        font-size: 13px !important;
    }
}

/* =========================================
   ABUMOSLEM CONTACT CTA
========================================= */

.abu-contact-cta {
    position: relative;
    width: 98%;
    min-height: 245px;
    margin: 35px 13px;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    direction: rtl;
    background: #080b18;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.abu-contact-cta.abu-cta-show {
    opacity: 1;
    transform: translateY(0);
}

.abu-contact-cta-bg {

    position: absolute;

    inset: 0;

    z-index: -3;

    background-image: url("../img/banner-faq.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    transform: scale(1.04);

    transition:
        transform 1.5s ease;
}
.abu-contact-cta:hover .abu-contact-cta-bg {

    transform: scale(1.08);

}
.abu-contact-cta-overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 17, 0.20) 0%,
            rgba(5, 7, 17, 0.58) 38%,
            rgba(5, 7, 17, 0.94) 65%,
            rgba(5, 7, 17, 0.98) 100%
        );

}
.abu-contact-cta-glow {

    position: absolute;

    width: 300px;
    height: 300px;

    left: 20%;

    top: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(220, 20, 30, 0.25) 0%,
            rgba(220, 20, 30, 0.08) 40%,
            transparent 72%
        );

    filter: blur(15px);

    z-index: -1;

    pointer-events: none;

    animation: abuCtaGlow 5s ease-in-out infinite;

}

.abu-contact-cta-content {

    position: relative;

    min-height: 245px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding: 35px 55px;

    box-sizing: border-box;

}

.abu-contact-cta-text {width: 48%;max-width: 520px;margin-right: 0px;}

.abu-contact-cta-text h2 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 32px;

    font-weight: 800;

    line-height: 1.4;

    letter-spacing: -0.5px;

    opacity: 0;

    transform: translateX(30px);

}
.abu-contact-cta-text p {

    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;

    font-weight: 500;

    line-height: 2;

    opacity: 0;

    transform: translateX(30px);

}

.abu-contact-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 155px;

    height: 57px;

    padding: 0 22px;

    box-sizing: border-box;

    border-radius: 9px;

    background: #ed111c;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(237, 17, 28, 0.28);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

    opacity: 0;

    transform: translateX(30px);

}

.abu-contact-cta-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;

    transition:
        transform 0.3s ease;

}

.abu-contact-cta-btn:hover {

    color: #ffffff;

    background: #ff1d29;

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(237, 17, 28, 0.42);

}
.abu-contact-cta-btn:hover .abu-contact-cta-icon {

    transform: rotate(-12deg) scale(1.1);

}

.abu-contact-cta.abu-cta-show
.abu-contact-cta-text h2 {

    animation:
        abuCtaTextIn 0.7s ease forwards;

    animation-delay: 0.15s;

}
.abu-contact-cta.abu-cta-show
.abu-contact-cta-text p {

    animation:
        abuCtaTextIn 0.7s ease forwards;

    animation-delay: 0.30s;

}
.abu-contact-cta.abu-cta-show
.abu-contact-cta-btn {

    animation:
        abuCtaTextIn 0.7s ease forwards;

    animation-delay: 0.45s;

}
@keyframes abuCtaTextIn {

    from {

        opacity: 0;

        transform: translateX(30px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

@keyframes abuCtaGlow {

    0%,
    100% {

        opacity: 0.65;

        transform:
            translate(-50%, -50%)
            scale(1);

    }

    50% {

        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1.25);

    }

}

@media (max-width: 992px) {

    .abu-contact-cta {

        min-height: 230px;

    }
    .abu-contact-cta-content {

        min-height: 230px;

        padding:
            30px 35px;

    }
    .abu-contact-cta-text {

        width: 55%;

    }
    .abu-contact-cta-text h2 {

        font-size: 28px;
    }
    .abu-contact-cta-text p {

        font-size: 14px;
    }

}

@media (max-width: 768px) {

    .abu-contact-cta {

        min-height: 360px;

        margin:
            25px 0;

        border-radius: 14px;

    }
    .abu-contact-cta-bg {

        background-position:
            32% center;

    }

    .abu-contact-cta-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 7, 17, 0.25) 0%,
                rgba(5, 7, 17, 0.55) 35%,
                rgba(5, 7, 17, 0.94) 70%,
                rgba(5, 7, 17, 0.98) 100%
            );

    }
    .abu-contact-cta-content {

        min-height: 360px;

        align-items: flex-end;

        justify-content: center;

        padding:
            30px 22px;

    }
    .abu-contact-cta-text {

        width: 100%;

        max-width: none;

        text-align: center;

        margin: 0;

    }
    .abu-contact-cta-text h2 {

        font-size: 25px;

        line-height: 1.5;

        margin-bottom: 8px;

    }
    .abu-contact-cta-text p {
        font-size: 13px;
        line-height: 1.9;
        margin-bottom: 18px;
    }
    .abu-contact-cta-btn {
        height: 52px;
        min-width: 150px;
        font-size: 13px;
    }
    .abu-contact-cta-glow {
        left: 50%;
        top: 35%;
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .abu-contact-cta {
        min-height: 330px;
    }
    .abu-contact-cta-content {
        min-height: 330px;
        padding:
            25px 18px;
    }
    .abu-contact-cta-text h2 {
        font-size: 22px;
    }
    .abu-contact-cta-text p {
        font-size: 12px;
        line-height: 1.9;
    }
    .abu-contact-cta-btn {

        height: 50px;
        padding:
            0 20px;

    }

}

.abu-course-buy-btn-2026 {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 28%;
    min-height: 27px;
    padding: 12px 20px;
    background: #0089ff !important;
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.abu-course-buy-btn-2026:hover {
    background: #1d4ed8 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

@media (max-width: 768px) {

    .abu-course-buy-btn-2026 {
        display: flex !important;
        width: 30% !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 10px 16px !important;
        background: #0089ff !important;
        color: #fff !important;
        border-radius: 10px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-align: center !important;
        text-decoration: none !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .abu-course-buy-btn-2026:hover,
    .abu-course-buy-btn-2026:focus,
    .abu-course-buy-btn-2026:active {
        background: #1d4ed8 !important;
        color: #fff !important;
        transform: none;
    }
}

/* =========================================
   ABUMOSLEM MOBILE BOTTOM NAV
   DARK GLASS / ORANGE THEME
========================================= */


/* =========================================
   DEFAULT - COMPLETELY HIDDEN
========================================= */

.abu-mobile-bottom-nav {
    display: none !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .abu-mobile-bottom-nav {

        position: fixed;

        left: 12px;
        right: 12px;
        bottom: 10px;

        width: auto;
        height: 70px;

        display: none !important;

        align-items: center;
        justify-content: space-between;

        direction: rtl;

        padding: 4px;

        background:
            linear-gradient(
                135deg,
                rgba(20, 20, 20, 0.94),
                rgba(10, 10, 10, 0.90)
            );

        border: 1px solid rgba(249, 115, 22, 0.65);

        border-radius: 22px;

        backdrop-filter: blur(20px) saturate(130%);
        -webkit-backdrop-filter: blur(20px) saturate(130%);

        box-shadow:
            0 10px 35px rgba(0, 0, 0, 0.45),
            0 0 25px rgba(249, 115, 22, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);

        z-index: 999999;

        box-sizing: border-box;

        overflow: hidden;

        opacity: 0;

        transform: translateY(20px);

        pointer-events: none;

        transition:
            opacity 0.35s ease,
            transform 0.35s ease;
    }


    /* =========================================
       SHOW ONLY AFTER LOADER FINISHES
    ========================================= */

    body.abu-page-loaded .abu-mobile-bottom-nav {

        display: flex !important;

        opacity: 1;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* =========================================
       TOP ORANGE LIGHT
    ========================================= */

    .abu-mobile-bottom-nav::before {

        content: "";

        position: absolute;

        top: 0;
        left: 12%;

        width: 76%;
        height: 1px;

        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(249, 115, 22, 0.75),
                transparent
            );

        pointer-events: none;
    }


    /* =========================================
       NAV ITEM
    ========================================= */

    .abu-mobile-nav-item {

        position: relative;

        flex: 1;

        height: 62px;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 5px;

        color: #f97316;

        text-decoration: none !important;

        border-radius: 18px;

        transition:
            all 0.25s ease;

        -webkit-tap-highlight-color: transparent;

        z-index: 1;
    }


    /* =========================================
       ICON
    ========================================= */

    .abu-mobile-nav-item i {

        font-size: 17px;

        line-height: 1;

        color: #f97316;

        transition:
            all 0.25s ease;

        filter:
            drop-shadow(
                0 0 5px
                rgba(249, 115, 22, 0.30)
            );
    }


    /* =========================================
       TEXT
    ========================================= */

    .abu-mobile-nav-item span {

        font-size: 10px;

        font-weight: 700;

        line-height: 1.2;

        white-space: nowrap;

        color: #f97316;

        transition:
            all 0.25s ease;

        text-shadow:
            0 0 5px
            rgba(249, 115, 22, 0.20);
    }


    /* =========================================
       HOVER
    ========================================= */

    .abu-mobile-nav-item:hover {

        background:
            rgba(249, 115, 22, 0.08);
    }


    .abu-mobile-nav-item:hover i {

        transform:
            translateY(-1px)
            scale(1.08);

        filter:
            drop-shadow(
                0 0 8px
                rgba(249, 115, 22, 0.70)
            );
    }


    /* =========================================
       ACTIVE
    ========================================= */

    .abu-mobile-nav-item.active {

        color: #ff8a3d;

        background:
            linear-gradient(
                145deg,
                rgba(249, 115, 22, 0.22),
                rgba(249, 115, 22, 0.08)
            );

        border:
            1px solid
            rgba(249, 115, 22, 0.30);

        box-shadow:

            inset 0 1px 0
            rgba(249, 115, 22, 0.25),

            inset 0 -1px 0
            rgba(249, 115, 22, 0.08),

            0 5px 18px
            rgba(249, 115, 22, 0.16);

        transform:
            translateY(-2px);
    }


    /* =========================================
       ACTIVE ICON
    ========================================= */

    .abu-mobile-nav-item.active i {

        color: #ff8a3d;

        transform:
            translateY(-1px)
            scale(1.08);

        filter:
            drop-shadow(
                0 0 9px
                rgba(249, 115, 22, 0.85)
            );
    }


    /* =========================================
       ACTIVE TEXT
    ========================================= */

    .abu-mobile-nav-item.active span {

        color: #ff8a3d;

        text-shadow:
            0 0 7px
            rgba(249, 115, 22, 0.45);
    }


    /* =========================================
       ACTIVE TOP LINE
    ========================================= */

    .abu-mobile-nav-item.active::before {

        content: "";

        position: absolute;

        top: 4px;

        left: 50%;

        width: 30px;

        height: 3px;

        transform:
            translateX(-50%);

        background: #f97316;

        border-radius: 20px;

        box-shadow:

            0 0 8px
            rgba(249, 115, 22, 0.95),

            0 0 16px
            rgba(249, 115, 22, 0.45);
    }


    /* =========================================
       RESERVE
    ========================================= */

    .abu-mobile-nav-reserve {

        background:
            rgba(249, 115, 22, 0.04);
    }


    .abu-mobile-nav-reserve i,
    .abu-mobile-nav-reserve span {

        color: #f97316 !important;
    }


    /* =========================================
       BODY SPACE
    ========================================= */

    body {

        padding-bottom: 95px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 390px) {

    .abu-mobile-bottom-nav {

        left: 8px;
        right: 8px;

        bottom: 8px;

        height: 67px;

        border-radius: 20px;
    }


    .abu-mobile-nav-item {

        height: 59px;

        border-radius: 16px;

        gap: 4px;
    }


    .abu-mobile-nav-item i {

        font-size: 15px;
    }


    .abu-mobile-nav-item span {

        font-size: 9px;
    }


    .abu-mobile-nav-item.active::before {

        width: 27px;

        height: 2px;
    }


    body {

        padding-bottom: 88px;
    }
}