@charset "UTF-8";
@font-face {
    font-family: "Almarai";
    src: url("../fonts/Almarai/Almarai-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "Almarai";
    src: url("../fonts/Almarai/Almarai-Regular.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Almarai";
    src: url("../fonts/Almarai/Almarai-ExtraBold.ttf");
    font-weight: 900;
}
* {
    margin: 0px;
    box-sizing: border-box;
    font-family: "Almarai", sans-serif;
    scroll-behavior: smooth;
}
*::-moz-selection {
    background-color: var(--primary-color);
    color: var(--light-color);
}
*::selection {
    background-color: var(--primary-color);
    color: var(--light-color);
}
*::-webkit-scrollbar {
    width: 8px;
}
*::-webkit-scrollbar-track {
    background-color: var(--light-color);
}
*::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.overflowNone {
    overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
    outline-width: 0px !important;
    outline-color: transparent !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
    text-decoration: none !important;
}
ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

button {
    outline: none !important;
    border: 0px !important;
}

.swiper-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 33px;
    height: 3px;
    background-color: rgba(99, 188, 184, 0.5);
    border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: var(--primary-color);
}

.swiper-button-next, .swiper-button-prev {
    top: unset;
    transform: translateY(0px);
    width: 50px;
    height: 50px;
    border: 0px;
    border: 1px solid #B5B9B9;
    background-color: transparent;
    bottom: 0;
    border-radius: 50%;
    overflow: hidden;
}
.swiper-button-next::before, .swiper-button-prev::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: all 0.3s linear;
}
.swiper-button-next::after, .swiper-button-prev::after {
    position: absolute;
    width: 24px;
    height: 25px;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    z-index: 9;
    background: url("../images/icons/right_arrow_slide.svg") center/contain no-repeat;
    color: transparent;
    filter: var(--gray-filter);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    box-shadow: 0px 0px 10px rgba(32, 32, 32, 0.1);
}
.swiper-button-next:hover::before, .swiper-button-prev:hover::before {
    height: 100%;
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after {
    filter: var(--light-filter);
}

.swiper-button-prev {
    right: calc(50% - 55px) !important;
    left: unset !important;
}
.swiper-button-prev::after {
    transform: scaleX(1);
}

.swiper-button-next {
    right: unset !important;
    left: calc(50% - 55px) !important;
}
.swiper-button-next::after {
    transform: scaleX(-1) !important;
}

html[dir=ltr] .swiper-button-prev {
    left: calc(50% - 55px) !important;
    right: unset !important;
}
html[dir=ltr] .swiper-button-prev::after {
    transform: scaleX(-1);
}
html[dir=ltr] .swiper-button-next {
    left: unset !important;
    right: calc(50% - 55px) !important;
}
html[dir=ltr] .swiper-button-next::after {
    transform: scaleX(1) !important;
}

@keyframes bounce-in-fwd {
    0% {
        transform: scale(1);
        animation-timing-function: ease-in;
    }
    38% {
        transform: scale(0.9);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: scale(0.7);
        animation-timing-function: ease-in;
    }
    72% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
    81% {
        transform: scale(0.84);
        animation-timing-function: ease-in;
    }
    89% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
    95% {
        transform: scale(0.95);
        animation-timing-function: ease-in;
    }
    100% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
}
@keyframes bounce-in-top {
    0% {
        transform: translateY(-50px);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: translateY(0);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: translateY(-20px);
        animation-timing-function: ease-in;
    }
    72% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    81% {
        transform: translateY(-15px);
        animation-timing-function: ease-in;
    }
    90% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    95% {
        transform: translateY(-4px);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
}
@keyframes bounce-in-left {
    0% {
        transform: translateX(-30px);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: translateX(0);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: translateX(-20px);
        animation-timing-function: ease-in;
    }
    72% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
    81% {
        transform: translateX(-10px);
        animation-timing-function: ease-in;
    }
    90% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
    95% {
        transform: translateX(-4px);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
}
@keyframes pulse-shadow {
    100% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
    }
}
@keyframes spinner {
    0% {
        transform: scale3d(1, 1, 1);
    }
    100% {
        transform: scale(1.4);
    }
}
@keyframes pulse {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    50% {
        transform: scale3d(1.2, 1.2, 1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}
/*dropdown animation*/
@keyframes dropdown-animate {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }
    50% {
        transform: rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes wave {
    0%, 100% {
        -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }
    50% {
        -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}
@keyframes niceAnimate {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}
@keyframes translation {
    0% {
        transform: translateZ(0%);
    }
    100% {
        transform: translateZ(10%);
    }
}
@keyframes rotate-scale-up {
    0% {
        transform: scale(1) rotateZ(0);
    }
    50% {
        transform: scale(2) rotateZ(180deg);
    }
    100% {
        transform: scale(1) rotateZ(360deg);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes vibrate {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(0px, 10px);
    }
    40% {
        transform: translate(0px, -10px);
    }
    60% {
        transform: translate(0px, 10px);
    }
    80% {
        transform: translate(0px, -10px);
    }
    100% {
        transform: translate(0);
    }
}
@keyframes vibrateDown {
    0% {
        transform: translate(0) rotate(-90deg);
    }
    20% {
        transform: translate(0px, 10px) rotate(-90deg);
    }
    40% {
        transform: translate(0px, -10px) rotate(-90deg);
    }
    60% {
        transform: translate(0px, 10px) rotate(-90deg);
    }
    80% {
        transform: translate(0px, -10px) rotate(-90deg);
    }
    100% {
        transform: translate(0) rotate(-90deg);
    }
}
@keyframes vibrateR {
    0% {
        transform: translate(0) scaleX(-1);
    }
    20% {
        transform: translate(0px, 10px) scaleX(-1);
    }
    40% {
        transform: translate(0px, -10px) scaleX(-1);
    }
    60% {
        transform: translate(0px, 10px) scaleX(-1);
    }
    80% {
        transform: translate(0px, -10px) scaleX(-1);
    }
    100% {
        transform: translate(0) scaleX(-1);
    }
}
@keyframes vibrateX {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(10px, 0px);
    }
    40% {
        transform: translate(-10px, 0px);
    }
    60% {
        transform: translate(10px, 0px);
    }
    80% {
        transform: translate(-10px, 0px);
    }
    100% {
        transform: translate(0);
    }
}
@keyframes vibrateXR {
    0% {
        transform: translate(0) scaleX(-1);
    }
    20% {
        transform: translate(10px, 0px) scaleX(-1);
    }
    40% {
        transform: translate(-10px, 0px) scaleX(-1);
    }
    60% {
        transform: translate(10px, 0px) scaleX(-1);
    }
    80% {
        transform: translate(-10px, 0px) scaleX(-1);
    }
    100% {
        transform: translate(0) scaleX(-1);
    }
}
@keyframes translateX {
    0%, 100% {
        transform: translateX(2px);
    }
    50% {
        transform: translateX(-2px);
    }
}
@keyframes translateY {
    0%, 100% {
        transform: translateY(2px);
    }
    50% {
        transform: translateY(-2px);
    }
}
@keyframes translateYR {
    0%, 100% {
        transform: translateY(2px) scaleX(-1);
    }
    50% {
        transform: translateY(-2px) scaleX(-1);
    }
}
@keyframes flip-in-hor-bottom {
    0% {
        transform: rotateX(80deg) translate(-50%, -50%);
        opacity: 0;
    }
    100% {
        transform: rotateX(0) translate(-50%, -50%);
        opacity: 1;
    }
}
@keyframes shadow {
    0% {
        box-shadow: 0px 0px 35px -4px #00a4e6;
        opacity: 0 !important;
    }
    100% {
        box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
    }
}
@keyframes rotate {
    0% {
        border-radius: 50% 60% 55% 40%;
    }
    25% {
        border-radius: 30% 10% 70% 20%;
    }
    50% {
        border-radius: 20% 40% 30% 60%;
    }
    75% {
        border-radius: 70% 20% 50% 30%;
    }
    100% {
        border-radius: 50% 60% 55% 40%;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translateX(30px);
    }
    67% {
        opacity: 1;
        transform: translateX(40px);
    }
    100% {
        opacity: 0;
        transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
    }
}
@keyframes clip {
    0% {
        -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
        clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
    }
    50% {
        -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
        clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
    }
    100% {
        -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
        clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
    }
}
@keyframes sideClip {
    0% {
        -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
        clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
    }
    50% {
        -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
@keyframes sideClip_2 {
    0% {
        -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
        clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
    }
    50% {
        -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
        clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
        clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
    }
}
@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes topBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }
    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }
    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}
@keyframes bottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }
    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }
    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}
@keyframes storm {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
    25% {
        transform: translate3d(4px, 0, 0) translateZ(0);
    }
    50% {
        transform: translate3d(-3px, 0, 0) translateZ(0);
    }
    75% {
        transform: translate3d(2px, 0, 0) translateZ(0);
    }
    100% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
}
@keyframes moving {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: -10000px;
    }
}
@keyframes movingLtr {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: 10000px;
    }
}
@keyframes movingY {
    0% {
        background-position-y: 0px;
    }
    100% {
        background-position-y: -10000px;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
:root {
    --primary-color: #2463a2;
    --secondary-color: #f9a41a;
    --dark-color: #000;
    --light-color: #fff;
    --gray-color: #868989;
    --black-color: #141414;
    --gold-color: #bb9900;
    --green-color: #00aa9f;
    --primary-filter: invert(29%) sepia(100%) saturate(603%) hue-rotate(175deg)
    brightness(94%) contrast(88%);
    --secondary-filter: invert(69%) sepia(51%) saturate(1235%) hue-rotate(346deg)
    brightness(99%) contrast(97%);
    --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg)
    brightness(108%) contrast(100%);
    --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg)
    brightness(87%) contrast(97%);
    --gold-filter: invert(50%) sepia(95%) saturate(808%) hue-rotate(20deg)
    brightness(95%) contrast(101%);
    --green-filter: invert(38%) sepia(98%) saturate(872%) hue-rotate(142deg)
    brightness(101%) contrast(101%);
}

.social {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 12px;
}
.social .social-item {
    width: 30px;
    height: 30px;
    display: flex;
    align-content: center;
    align-items: center;
    transition: all 0.3s linear;
}
.social .social-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.social .social-item:hover {
    transform: scale(0.9);
}

.general-section {
    width: 100%;
    padding: 50px 0px;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
@media (max-width: 992px) {
    .general-section {
        padding: 30px 0px;
    }
}

.custom-btn {
    width: 160px;
    height: 50px;
    border-radius: 50px;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    border: 1px solid;
    transition: all 0.3s ease-in-out;
}
.custom-btn::after, .custom-btn::before {
    content: "";
    position: absolute;
    width: 55%;
    height: 100%;
    top: 0;
    z-index: -1;
    transition: all 0.3s ease-in;
}
.custom-btn::after {
    left: 0;
}
.custom-btn::before {
    right: 0;
}
.custom-btn img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
html[dir=ltr] .custom-btn img {
    transform: scaleX(-1);
}
.custom-btn span {
    font-size: 15px;
    font-weight: 900;
}
.custom-btn.primary-btn {
    border-color: var(--primary-color);
}
.custom-btn.primary-btn::after, .custom-btn.primary-btn::before {
    background-color: var(--primary-color);
}
.custom-btn.primary-btn img {
    filter: var(--light-filter);
}
.custom-btn.primary-btn span {
    color: var(--light-color);
}
.custom-btn.primary-btn:hover img {
    filter: var(--primary-filter);
    animation: tada 0.2s ease-in-out both;
}
.custom-btn.primary-btn:hover span {
    color: var(--primary-color);
}
.custom-btn.primary-border {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.custom-btn.primary-border::after, .custom-btn.primary-border::before {
    background-color: #fffbfc;
}
.custom-btn.primary-border img {
    filter: var(--primary-filter);
}
.custom-btn.primary-border span {
    color: var(--primary-color);
}
.custom-btn.primary-border:hover img {
    filter: var(--light-filter);
    animation: tada 0.2s ease-in-out both;
}
.custom-btn.primary-border:hover span {
    color: var(--light-color);
}
.custom-btn.secondary-btn {
    border-color: var(--secondary-color);
}
.custom-btn.secondary-btn::after, .custom-btn.secondary-btn::before {
    background-color: var(--secondary-color);
}
.custom-btn.secondary-btn img {
    filter: var(--light-filter);
}
.custom-btn.secondary-btn span {
    color: var(--light-color);
}
.custom-btn.secondary-btn:hover img {
    filter: var(--secondary-filter);
    animation: tada 0.2s ease-in-out both;
}
.custom-btn.secondary-btn:hover span {
    color: var(--secondary-color);
}
.custom-btn.green-btn {
    border-color: var(--green-color);
}
.custom-btn.green-btn::after, .custom-btn.green-btn::before {
    background-color: var(--green-color);
}
.custom-btn.green-btn img {
    filter: var(--light-filter);
}
.custom-btn.green-btn span {
    color: var(--light-color);
}
.custom-btn.green-btn:hover img {
    filter: var(--green-filter);
    animation: tada 0.2s ease-in-out both;
}
.custom-btn.green-btn:hover span {
    color: var(--green-color);
}
.custom-btn:hover {
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
    transform: scale(0.95);
}
.custom-btn:hover::after, .custom-btn:hover::before {
    width: 0px;
}

.heading {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width: 992px) {
    .heading {
        margin-bottom: 30px;
    }
}
.heading .sub-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0px;
}
@media (max-width: 992px) {
    .heading .sub-title {
        font-size: 18px;
    }
}
.heading .title {
    font-size: 44px;
    font-weight: 900;
    color: var(--black-color);
    margin: 40px 0px;
}
@media (max-width: 992px) {
    .heading .title {
        margin: 30px 0px;
        font-size: 25px;
    }
}
.heading .desc {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 0px;
}
@media (max-width: 992px) {
    .heading .desc {
        font-size: 15px;
    }
}

main {
    width: 100%;
    border-radius: 100px !important;
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
    padding-top: 50px;
    background-color: var(--light-color);
    position: relative;
    z-index: 91;
}
@media (max-width: 992px) {
    main {
        border-radius: 20px !important;
        overflow: hidden;
    }
}

.navbar {
    padding: 0px;
    position: fixed;
    top: 0;
    background-color: #f8fafa;
    left: 0;
    z-index: 999;
    width: 100%;
    transition: all 0.3s linear;
}
.navbar.scrolled {
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
}
.navbar.scrolled .top-nav {
    display: none;
}
.navbar.scrolled .bottom-nav {
    padding: 14px 0px;
}
.navbar .top-nav {
    width: 100%;
    padding: 12px 0px;
    background-color: var(--primary-color);
    position: relative;
    z-index: 9;
}
@media (max-width: 992px) {
    .navbar .top-nav {
        padding: 6px 0px;
    }
}
.navbar .top-nav .contain {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 10px;
}
.navbar .top-nav .contain .contact-list {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 12px;
}
@media (max-width: 992px) {
    .navbar .top-nav .contain .contact-list {
        gap: 10px;
    }
}
.navbar .top-nav .contain .contact-list .item {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
@media (max-width: 992px) {
    .navbar .top-nav .contain .contact-list .item {
        width: 30px;
        height: 30px;
        border: 1px solid #4cc0eb;
        border-radius: 50%;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        padding: 0px !important;
    }
}
.navbar .top-nav .contain .contact-list .item:first-child {
    padding-inline-end: 12px;
    border-inline-end: 1px solid #4cc0eb;
}
.navbar .top-nav .contain .contact-list .item img {
    width: 20px;
    height: 20px;
    transition: all 0.3s linear;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 992px) {
    .navbar .top-nav .contain .contact-list .item img {
        width: 15px;
        height: 15px;
    }
}
.navbar .top-nav .contain .contact-list .item span {
    font-size: 20px;
    font-weight: 700;
    direction: ltr;
    color: var(--light-color);
}
@media (max-width: 992px) {
    .navbar .top-nav .contain .contact-list .item span {
        display: none;
    }
}
.navbar .top-nav .contain .contact-list .item:hover img {
    transform: scale(0.9);
}
@media (max-width: 992px) {
    .navbar .top-nav .contain .social {
        gap: 10px;
    }
}
.navbar .bottom-nav {
    width: 100%;
    position: relative;
    transition: all 0.3s linear;
    padding: 24px 0px;
}
@media (max-width: 992px) {
    .navbar .bottom-nav {
        padding: 18px 0px;
    }
}
.navbar .bottom-nav .contain {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 100px;
}
@media (max-width: 1200px) and (min-width: 1000px) {
    .navbar .bottom-nav .contain {
        gap: 20px !important;
    }
}
.navbar .bottom-nav .contain .brand-name img {
    width: 80px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}
.navbar .bottom-nav .contain .hamburger {
    cursor: pointer;
    overflow: hidden;
    width: 50px;
    height: 50px;
    background: rgba(0, 165, 226, 0.1);
    border: 1px solid rgba(0, 165, 226, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
@media (min-width: 992px) {
    .navbar .bottom-nav .contain .hamburger {
        display: none;
    }
}
.navbar .bottom-nav .contain .hamburger .line-toggle {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 5px;
    transition: all 0.6s;
}
.navbar .bottom-nav .contain .hamburger .line-toggle:first-child {
    transform: translateY(-10px) translateX(-2px);
    width: 20px;
    transition-delay: 0s;
}
.navbar .bottom-nav .contain .hamburger .line-toggle:nth-child(2) {
    transition-delay: 0.12s;
}
.navbar .bottom-nav .contain .hamburger .line-toggle:last-child {
    transform: translateY(10px) translateX(-2px);
    width: 20px;
    transition-delay: 0s;
}
.navbar .bottom-nav .contain .hamburger.active {
    background-color: var(--light-color);
}
.navbar .bottom-nav .contain .hamburger.active .line-toggle:first-child {
    background: var(--primary-color);
    transform: translateY(0) translateX(0) rotate(45deg);
    width: 30px;
    transition-delay: 0.1s;
}
.navbar .bottom-nav .contain .hamburger.active .line-toggle:nth-child(2) {
    transform: translateX(110px);
    transition-delay: 0s;
}
.navbar .bottom-nav .contain .hamburger.active .line-toggle:last-child {
    background: var(--primary-color);
    transform: translateY(0) translateX(0) rotate(314deg);
    width: 30px;
    transition-delay: 0.1s;
}
.navbar .bottom-nav .contain .nav-contain {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    padding: 10px 8px;
    border-radius: 50px;
    background-color: var(--light-color);
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
}
@media (min-width: 1200px) and (max-width: 1000px) {
    .navbar .bottom-nav .contain .nav-contain {
        padding: 10px 4px;
    }
}
@media (max-width: 992px) {
    .navbar .bottom-nav .contain .nav-contain {
        width: 100%;
        height: 100vh;
        top: 76px;
        right: -100%;
        transition: all 0.3s linear;
        background-color: var(--light-color);
        z-index: 9;
        position: absolute;
        gap: 10px;
        border-radius: 0px;
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start;
        box-shadow: 0px;
        padding: 20px 15px;
    }
    html[dir=ltr] .navbar .bottom-nav .contain .nav-contain {
        left: -100%;
        right: unset;
    }
    .navbar .bottom-nav .contain .nav-contain.active-nav {
        right: 0px;
    }
    html[dir=ltr] .navbar .bottom-nav .contain .nav-contain.active-nav {
        left: 0;
        right: unset;
    }
}
.navbar .bottom-nav .contain .nav-contain .navbar-nav {
    flex-direction: row;
    gap: 5px;
    padding: 0px;
    margin: 0px;
}
@media (max-width: 992px) {
    .navbar .bottom-nav .contain .nav-contain .navbar-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start;
    }
}
.navbar .bottom-nav .contain .nav-contain .navbar-nav .nav-item {
    padding: 0px;
    margin: 0px;
}
@media (max-width: 992px) {
    .navbar .bottom-nav .contain .nav-contain .navbar-nav .nav-item {
        padding: 5px 0px;
        border-bottom: 1px solid #e4f6fd;
        width: 100%;
    }
}
.navbar .bottom-nav .contain .nav-contain .navbar-nav .nav-item .nav-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-color);
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s linear;
}
@media (max-width: 1200px) and (min-width: 1000px) {
    .navbar .bottom-nav .contain .nav-contain .navbar-nav .nav-item .nav-link {
        padding: 5px 12px !important;
        font-size: 10px !important;
    }
}
@media (max-width: 992px) {
    .navbar .bottom-nav .contain .nav-contain .navbar-nav .nav-item .nav-link {
        width: -moz-fit-content;
        width: fit-content;
    }
}
.navbar .bottom-nav .contain .nav-contain .navbar-nav .nav-item .nav-link.active, .navbar .bottom-nav .contain .nav-contain .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
    background-color: #e4f6fd;
}
.navbar .bottom-nav .contain .nav-contain .navbar-nav .nav-item .nav-link:hover {
    transform: scale(0.9);
}
.navbar .bottom-nav .contain .nav-contain .navbar-nav .nav-item .nav-link.active {
    transform: scale(1) !important;
}
.navbar .bottom-nav .contain .nav-contain .button-contain {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1200px) and (min-width: 1000px) {
    .navbar .bottom-nav .contain .nav-contain .button-contain {
        gap: 10px;
    }
}
.navbar .bottom-nav .contain .nav-contain .button-contain .lang {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    background-color: #e4f6fd;
    padding: 4px;
    border-radius: 50px;
}
.navbar .bottom-nav .contain .nav-contain .button-contain .lang span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    color: var(--primary-color);
}
.navbar .bottom-nav .contain .nav-contain .button-contain .lang span.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

header {
    width: 100%;
    padding: 360px 0px 280px;
    position: relative;
    height: 65rem;
    margin-bottom: -150px;
    z-index: 8;
    overflow: hidden;
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
}
header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: -1;
}
@media (max-width: 992px) {
    header {
        padding-top: 200px;
        padding-bottom: 200px;
    }
}
header .intro-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
header .contain {
    width: 100%;
    text-align: center;
}
header .contain h1 {
    font-size: 72px;
    font-weight: 900;
    color: var(--light-color);
    margin-bottom: 80px;
}
@media (max-width: 992px) {
    header .contain h1 {
        font-size: 35px;
        margin-bottom: 40px;
        line-height: 60px;
    }
}
header .contain p {
    color: var(--light-color);
    font-size: 32px;
    font-weight: 700;
    margin: 0px;
}
@media (max-width: 992px) {
    header .contain p {
        font-size: 18px;
    }
}

.sub-header {
    width: 100%;
    padding: 290px 0px 80px;
    position: relative;
    background: url("../images/pattern/sub-header-pattern.svg") center/cover no-repeat #f8fafa;
    z-index: 9;
}
@media (max-width: 992px) {
    .sub-header {
        padding: 140px 0px 60px;
    }
}
.sub-header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    background: url("../images/icons/line-pattern.svg") center/contain repeat-x;
    z-index: -1;
    left: 0;
    bottom: -20px;
    /* animation: moving 300s linear infinite; */
}
.sub-header .heading {
    margin: 0px;
}

.partners {
    background-color: var(--light-color);
}
.partners .partner-title {
    width: 100%;
    padding: 28px 0px;
    border-block: 1px solid;
    text-align: center;
}
@media (max-width: 992px) {
    .partners .partner-title {
        padding: 20px 0px;
    }
}
.partners .partner-title h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
}
.partners .partner-title.platinum {
    border-color: var(--gray-color);
}
.partners .partner-title.platinum h3 {
    color: var(--gray-color);
}
.partners .partner-title.gold {
    border-color: var(--gold-color);
}
.partners .partner-title.gold h3 {
    color: var(--gold-color);
}
.partners .partner-contain {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 40px 0px;
    gap: 32px;
}
@media (max-width: 992px) {
    .partners .partner-contain {
        margin: 20px 0px;
        gap: 10px;
    }
}
.partners .partner-contain .partner-item {
    width: 220px;
    height: 100px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid;
    overflow: hidden;
    transition: all 0.3s linear;
}
@media (max-width: 992px) {
    .partners .partner-contain .partner-item {
        width: calc(33.3333333333% - 10px);
        height: 60px;
        padding: 2px;
        border-radius: 10px;
    }
}
.partners .partner-contain .partner-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.partners .partner-contain .partner-item.platinum {
    border-color: var(--gray-color);
}
.partners .partner-contain .partner-item.gold {
    border-color: var(--gold-color);
}
.partners .partner-contain .partner-item:hover {
    transform: translateY(-10px);
}
.partners .button-contain {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
}

.about::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    background: url("../images/icons/top-pattern.svg") top center/contain repeat-x;
    top: 0;
    left: 0;
    z-index: -1;
}
@media (max-width: 992px) {
    .about::after {
        animation-duration: 400s;
    }
}
@media (max-width: 992px) {
    .about.objectives {
        padding-top: 0px;
    }
}
.about.objectives::after {
    display: none;
}
@media (min-width: 992px) {
    .about.objectives .contain {
        padding-inline-start: 60px;
    }
}
.about.events {
    padding-bottom: 0px;
}
.about.events .image-contain {
    background-size: 100% 100% !important;
    background-position: bottom center !important;
}
.about.events .image-contain img {
    -o-object-position: bottom;
    object-position: bottom;
    height: 94%;
    border-radius: 300px;
}
.about.events .image-contain .countries-box {
    bottom: 10%;
}
.about.events .heading {
    margin-bottom: 40px !important;
}
.about.academic {
    padding-top: 80px;
}
@media (max-width: 992px) {
    .about.academic {
        padding-top: 30px;
    }
}
.about.academic .academic-contain {
    height: 300px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: none;
}
.about.academic .academic-contain .about-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
}
.about.academic .academic-contain .popup-img {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0%;
    right: 10%;
    z-index: 9;
    animation: bounce-in-fwd 2s ease-in-out infinite alternate;
}
html[dir=ltr] .about.academic .academic-contain .popup-img {
    left: 10%;
    right: unset;
}
.about.academic .academic-contain .popup-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.about.academic .academic-contain::after, .about.academic .academic-contain::before {
    display: none;
}
.about.large-img {
    height: 600px;
}
@media (max-width: 992px) {
    .about.large-img {
        height: 300px;
    }
}
.about .contain {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.about .contain .heading {
    text-align: start;
    margin: 0px;
}
@media (max-width: 992px) {
    .about .contain .heading .sub-title {
        font-size: 16px;
    }
}
@media (max-width: 992px) {
    .about .contain .heading .title {
        font-size: 20px;
    }
}
.about .contain .heading .desc {
    font-size: 20px;
    font-weight: 500;
}
@media (max-width: 992px) {
    .about .contain .heading .desc {
        font-size: 15px;
    }
}
.about .contain .heading .list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.about .contain .heading .list li {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-color);
    padding-inline-start: 15px;
    position: relative;
    z-index: 9;
}
.about .contain .heading .list li::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--gray-color);
    border-radius: 50%;
    top: 8px;
    right: 0;
    z-index: -1;
}
html[dir=ltr] .about .contain .heading .list li::after {
    right: unset;
    left: 0px;
}
@media (max-width: 992px) {
    .about .contain .heading .list li {
        font-size: 15px;
    }
}
.about .contain .box {
    width: 100%;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    align-content: flex-start;
    padding: 20px 20px 0px;
    transition: all 0.3s linear;
}
@media (max-width: 992px) {
    .about .contain .box {
        padding: 15px 15px 0px;
    }
}
.about .contain .box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 90%;
    background-color: var(--light-color);
    border-radius: 20px;
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
    top: 0;
    left: 0;
    z-index: -1;
}
.about .contain .box img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}
.about .contain .box .data {
    width: calc(100% - 52px);
}
.about .contain .box .data h3 {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 0px;
}
.about .contain .box .data p {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 700;
    margin: 16px 0px;
}
.about .contain .box .data .custom-btn {
    width: 120px;
    height: 40px;
}
.about .contain .box .data .custom-btn span {
    font-size: 14px;
}
.about .contain .box:hover {
    transform: translateY(-10px);
}
.about .contain .box:hover p {
    color: var(--primary-color);
}
.about .image-contain {
    width: 100%;
    height: 670px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: url("../images/pattern/about-pattern.svg") center bottom/76% 93% no-repeat;
}
@media (max-width: 992px) {
    .about .image-contain {
        background-size: 100% 100%;
    }
}
.about .image-contain .countries-box {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, transparent 0%, #000000 20%, #fff 90%);
    width: 220px;
    padding: 7px 10px;
    border-radius: 50px;
    color: #fff;
    position: absolute;
    bottom: 20%;
    overflow: hidden;
    left: calc(50% - 110px);
    width: 200px;
    z-index: 9;
    gap: 20px;
    animation: translateY 2s linear infinite alternate;
}
html[dir=ltr] .about .image-contain .countries-box {
    left: unset;
    right: 10%;
    background: linear-gradient(-90deg, transparent 0%, #000000 20%, #fff 90%);
}
.about .image-contain .countries-box::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    right: -10px;
    filter: blur(20px);
    transform: translateY(-50%);
    z-index: -1;
}
html[dir=ltr] .about .image-contain .countries-box::after {
    right: unset;
    left: -10px;
}
.about .image-contain .countries-box .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about .image-contain .countries-box .text span {
    font-size: 10px;
}
.about .image-contain .countries-box .text strong {
    font-size: 16px;
    font-weight: bold;
}
.about .image-contain .countries-box .text .flex-data {
    display: flex;
    align-content: center;
    align-items: center;
}
.about .image-contain .countries-box .flags {
    display: flex;
    align-items: center;
}
.about .image-contain .countries-box .flags .flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.32);
    -o-object-fit: cover;
    object-fit: cover;
    margin-inline-end: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #0a0a0a;
}
.about .image-contain .countries-box .flags .flag.add {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border: 0px !important;
}
.about .image-contain .countries-box .flags .flag.add img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.about .image-contain.vision-contain {
    background: url("../images/pattern/blue-pattern.svg") center top/72% 93% no-repeat;
}
@media (max-width: 992px) {
    .about .image-contain.vision-contain {
        background-size: 100% 100%;
    }
}
.about .image-contain .video {
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
}
.about .image-contain .video img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 992px) {
    .about .image-contain {
        height: 375px;
    }
}
.about .image-contain .about-img {
    width: 450px;
    height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 50%;
    animation: translateX 2s linear infinite alternate;
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
}
@media (max-width: 992px) {
    .about .image-contain .about-img {
        width: 290px;
        height: 290px;
    }
}
.about .image-contain .about-img.vision {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.gallery {
    width: 100%;
    position: relative;
    z-index: 9;
}
.gallery .gallery-swiper img {
    width: 100%;
    height: 800px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 992px) {
    .gallery .gallery-swiper img {
        height: 300px;
        border-radius: 20px;
    }
}
@media (min-width: 992px) {
    .gallery .gallery-thumbs {
        width: 97%;
        margin: -100px auto 0px;
    }
}
@media (max-width: 992px) {
    .gallery .gallery-thumbs {
        margin-top: -40px;
    }
}
.gallery .gallery-thumbs .swiper-slide {
    width: 100%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s linear;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}
@media (max-width: 992px) {
    .gallery .gallery-thumbs .swiper-slide {
        border-radius: 10px;
    }
}
.gallery .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--light-color);
}
@media (max-width: 992px) {
    .gallery .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
        border-color: var(--primary-color);
    }
}
.gallery .gallery-thumbs img {
    width: 100%;
    height: 70px;
    transition: all 0.3s linear;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (min-width: 992px) {
    .gallery .gallery-thumbs img {
        height: 180px;
    }
}

.partnership .box {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
    z-index: 9;
    background-color: var(--light-color);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
    transition: all 0.3s linear;
}
@media (max-width: 992px) {
    .partnership .box {
        padding: 15px 10px;
    }
}
.partnership .box .image-contain {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #f8fafa;
    border-radius: 16px;
    position: relative;
    z-index: 9;
}
@media (max-width: 992px) {
    .partnership .box .image-contain {
        height: 100px;
    }
}
.partnership .box .image-contain::after {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.3));
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}
.partnership .box .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
@media (max-width: 992px) {
    .partnership .box .image-contain img {
        -o-object-fit: contain;
        object-fit: contain;
    }
}
.partnership .box .contain {
    width: 100%;
    padding: 24px 0px 0px;
    text-align: center;
}
@media (max-width: 992px) {
    .partnership .box .contain {
        padding: 10px 0px 0px;
    }
}
.partnership .box .contain h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin: 0px;
}
@media (max-width: 992px) {
    .partnership .box .contain h3 {
        font-size: 15px;
    }
}
.partnership .box .contain p {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    margin: 24px 0px;
}
@media (max-width: 992px) {
    .partnership .box .contain p {
        font-size: 12px;
        margin: 15px 0px;
    }
}
.partnership .box .contain .social {
    justify-content: center;
    width: 100%;
}
@media (max-width: 992px) {
    .partnership .box .contain .social {
        gap: 10px;
    }
}
@media (max-width: 992px) {
    .partnership .box .contain .social .social-item {
        width: 18px;
        height: 18px;
    }
}
.partnership .box .contain .custom-btn {
    width: 90%;
    margin: 20px auto 0px !important;
}
@media (max-width: 992px) {
    .partnership .box .contain .custom-btn {
        width: 100%;
        margin: 15px auto 0px !important;
    }
    .partnership .box .contain .custom-btn span {
        font-size: 14px !important;
    }
}
.partnership .box:hover {
    transform: translateY(-10px);
}
.partnership .box:hover .image-contain::after {
    animation: shine 0.85s;
}
.partnership .box:hover h3 {
    color: var(--primary-color);
}

.speakers .heading {
    margin-bottom: 0px !important;
}
.speakers .box {
    width: 100%;
    position: relative;
    z-index: 9;
    padding: 20px;
    transition: all 0.3s linear;
}
.speakers .box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    background-color: var(--light-color);
    border-radius: 20px;
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
    bottom: 0;
    left: 0;
    z-index: -1;
}
.speakers .box .image-contain {
    width: 192px;
    height: 192px;
    overflow: hidden;
    background-color: transparent;
    position: relative;
    z-index: 9;
    background: url("../images/pattern/speaker-pattern.svg") center right/contain no-repeat;
    filter: drop-shadow(0px 12px 32px rgba(112, 144, 176, 0.12)) drop-shadow(0px -12px 32px rgba(112, 144, 176, 0.12));
    margin: 0px auto;
}
.speakers .box .image-contain::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    z-index: -1;
}
.speakers .box .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 95%;
    height: 95%;
    background-color: var(--light-color);
    -o-object-position: top center;
    object-position: top center;
    border-radius: 50%;
}
.speakers .box .data {
    width: 100%;
    padding: 20px 0px 0px;
    text-align: center;
}
.speakers .box .data h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 0px;
}
.speakers .box .data .job {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 16px 0px;
}
.speakers .box .data .about-speaker {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    margin-bottom: 20px;
}
.speakers .box .data .social {
    justify-content: center;
    width: 100%;
}
.speakers .box .data .custom-btn {
    width: 90%;
    margin: 20px auto 0px !important;
}
.speakers .box:hover {
    transform: translateY(-10px);
}
.speakers .swiper-wrapper {
    padding: 20px 0px 80px;
}

.request::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/request/request-patttern.svg") top right/contain no-repeat;
    top: 0px;
    left: 0;
    right: unset;
    animation: vibrateR 8s ease-in-out infinite alternate !important;
    top: 0;
    z-index: -1;
}
@media (max-width: 992px) {
    .request::after {
        top: 0px;
        height: 150px;
    }
}
.request .contain {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.request .contain h2 {
    font-size: 44px;
    font-weight: 900;
    color: var(--black-color);
    margin: 0px;
}
@media (max-width: 992px) {
    .request .contain h2 {
        font-size: 25px;
    }
}
.request .contain .list {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    margin: 48px 0px;
}
@media (max-width: 992px) {
    .request .contain .list {
        margin: 30px 0px;
    }
}
.request .contain .list li {
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 9;
}
.request .contain .list li::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 60%;
    border-right: 1px dashed #d7dcdc;
    right: 20px;
    z-index: -1;
}
.request .contain .list li:last-child::after {
    display: none;
}
.request .contain .list li img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}
.request .contain .list li p {
    width: calc(100% - 50px);
    padding: 20px 32px;
    background-color: var(--light-color);
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    border: 1px solid #e7eded;
    border-radius: 20px;
    margin: 0px;
}
@media (max-width: 992px) {
    .request .contain .list li p {
        font-size: 15px;
        border-radius: 10px;
        padding: 14px 10px;
    }
}
.request .image-contain {
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    animation: translateY 2s linear infinite alternate;
}
.request .image-contain .countries-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(90deg, transparent 0%, #fdffff 20%, #fff 90%);
    height: -moz-fit-content;
    height: fit-content;
    padding: 7px 10px;
    border-radius: 50px;
    color: var(--dark-color);
    border: 1px solid var(--light-color);
    position: absolute;
    bottom: 10%;
    overflow: hidden;
    left: calc(50% - 55px);
    text-align: center;
    z-index: 9;
    gap: 10px;
    animation: translateX 2s linear infinite alternate;
}
html[dir=ltr] .request .image-contain .countries-box {
    left: unset;
    right: 10%;
    background: linear-gradient(-90deg, transparent 0%, #fff 20%, #fff 90%);
}
.request .image-contain .countries-box::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    right: -10px;
    filter: blur(20px);
    transform: translateY(-50%);
    z-index: -1;
}
html[dir=ltr] .request .image-contain .countries-box::after {
    right: unset;
    left: -10px;
}
.request .image-contain .countries-box .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.request .image-contain .countries-box .text span {
    font-size: 10px;
}
.request .image-contain .countries-box .text strong {
    font-size: 16px;
    font-weight: bold;
}
.request .image-contain .countries-box .text .flex-data {
    display: flex;
    align-content: center;
    align-items: center;
}
.request .image-contain .countries-box .flags {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.request .image-contain .countries-box .flags .flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.32);
    -o-object-fit: cover;
    object-fit: cover;
    margin-block-start: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #0a0a0a;
}
.request .image-contain .countries-box .flags .flag:first-child {
    margin-block-start: 0px;
}
.request .image-contain .countries-box .flags .flag.add {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border: 0px !important;
}
.request .image-contain .countries-box .flags .flag.add img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 992px) {
    .request .image-contain {
        height: 300px;
    }
}
.request .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.bundles .primary-heading {
    margin-top: 40px;
    text-align: start;
}
.bundles .primary-heading .title {
    color: var(--primary-color);
}
.bundles .box {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 9;
    padding: 10px;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s linear;
}
.bundles .box.primary-box img {
    filter: var(--primary-filter);
}
.bundles .box.primary-box h3 {
    color: var(--primary-color);
}
.bundles .box.secondary-box img {
    filter: var(--secondary-filter);
}
.bundles .box.secondary-box h3 {
    color: var(--secondary-color);
}
.bundles .box.green-box img {
    filter: var(--green-filter);
}
.bundles .box.green-box h3 {
    color: var(--green-color);
}
.bundles .box img {
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0px auto;
}
.bundles .box h3 {
    font-size: 24px;
    font-weight: 900;
    margin: 24px 0px;
}
@media (max-width: 992px) {
    .bundles .box h3 {
        font-size: 18px;
        margin: 15px 0px;
    }
}
.bundles .box .price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--black-color);
}
@media (max-width: 992px) {
    .bundles .box .price {
        font-size: 15px;
    }
}
.bundles .box .desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 24px 0px;
}
@media (max-width: 992px) {
    .bundles .box .desc {
        margin: 15px 0px;
    }
}
.bundles .box .custom-btn {
    width: 111px;
    height: 40px;
    margin: 0px auto;
}
.bundles .box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
}
.bundles .bundle-data {
    width: 100%;
    padding: 40px;
    border-radius: 28px;
    background-color: #f8fafa;
    position: relative;
    z-index: 9;
}
@media (max-width: 992px) {
    .bundles .bundle-data {
        padding: 20px 10px;
        border-radius: 15px;
    }
}
.bundles .bundle-data.primary-bundle img {
    filter: var(--primary-filter);
}
.bundles .bundle-data.primary-bundle h2 {
    color: var(--primary-color);
}
.bundles .bundle-data.green-bundle img {
    filter: var(--green-filter);
}
.bundles .bundle-data.green-bundle h2 {
    color: var(--green-color);
}
.bundles .bundle-data.secondary-bundle img {
    filter: var(--secondary-filter);
}
.bundles .bundle-data.secondary-bundle h2 {
    color: var(--secondary-color);
}
.bundles .bundle-data .flex-data {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.bundles .bundle-data .flex-data img {
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 992px) {
    .bundles .bundle-data .flex-data img {
        width: 60px;
        height: 60px;
    }
}
.bundles .bundle-data .flex-data .data {
    width: calc(100% - 110px);
}
@media (max-width: 992px) {
    .bundles .bundle-data .flex-data .data {
        width: 100%;
    }
}
.bundles .bundle-data .flex-data .data h2 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 15px;
}
.bundles .bundle-data .flex-data .data .price-contain {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.bundles .bundle-data .flex-data .data .price-contain .price-after {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 0px;
    color: var(--black-color);
}
.bundles .bundle-data .flex-data .data .price-contain .price-before {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--gray-color);
    text-decoration: line-through;
}
.bundles .bundle-data .desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 15px 0px 0px;
}

.contact-us {
    overflow: unset !important;
}
.contact-us .contain {
    width: 100%;
    padding: 40px;
    border: 1px solid #e7eded;
    border-radius: 40px;
    position: relative;
    z-index: 9;
}
@media (max-width: 992px) {
    .contact-us .contain {
        padding: 20px 10px;
        border-radius: 15px;
    }
}
.contact-us .contain::after, .contact-us .contain::before {
    content: "";
    position: absolute;
    animation: vibrateX 8s ease-in-out infinite alternate;
    z-index: -1;
}
.contact-us .contain::after {
    width: 178px;
    height: 50px;
    top: -10px;
    right: 40px;
    background: url("../images/pattern/arrow-shape.svg") center bottom/contain no-repeat;
}
html[dir=ltr] .contact-us .contain::after {
    left: 40px;
    right: unset;
}
@media (max-width: 992px) {
    .contact-us .contain::after {
        top: -25px;
        height: 40px;
        width: 100px;
    }
}
.contact-us .contain::before {
    width: 133px;
    height: 40px;
    bottom: -20px;
    left: calc(50% - 66.5px);
    background: url("../images/pattern/arrow-shape-blue.svg") center bottom/contain no-repeat;
}
@media (max-width: 992px) {
    .contact-us .contain::before {
        height: 30px;
    }
}
.contact-us .contain .heading {
    margin-bottom: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: start;
}
@media (max-width: 992px) {
    .contact-us .contain .heading .title {
        margin: 15px 0px;
        font-size: 18px;
    }
}
.contact-us .contain .heading .desc {
    text-align: justify;
}
.contact-us .contain .heading .contact-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.contact-us .contain .heading .contact-list a {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.contact-us .contain .heading .contact-list a img {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}
.contact-us .contain .heading .contact-list a .data {
    width: calc(100% - 60px);
}
.contact-us .contain .heading .contact-list a .data .name {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
    margin-bottom: 15px;
}
.contact-us .contain .heading .contact-list a .data .data-contain {
    font-size: 15px;
    font-weight: 700;
    color: var(--black-color);
}
.contact-us .contain .heading .contact-list a:hover img {
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
}
.contact-us .contain .heading .contact-list a:hover .data-contain {
    color: var(--primary-color);
}

.modal-dialog {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 0px;
}
@media (max-width: 992px) {
    .modal-dialog {
        margin: 0px auto !important;
    }
}
@media (min-width: 992px) {
    .modal-dialog.big-modal {
        min-width: 900px;
    }
}
.modal-dialog .box {
    width: 100%;
    position: relative;
    z-index: 91;
    transition: all 0.3s linear;
}
@media (min-width: 992px) {
    .modal-dialog .box {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        gap: 20px;
        align-items: flex-start;
        align-content: flex-start;
    }
}
.modal-dialog .box .image-contain {
    width: 192px;
    height: 192px;
    overflow: hidden;
    background-color: transparent;
    position: relative;
    z-index: 9;
    background: url("../images/pattern/speaker-pattern.svg") center right/contain no-repeat;
    filter: drop-shadow(0px 12px 32px rgba(112, 144, 176, 0.12)) drop-shadow(0px -12px 32px rgba(112, 144, 176, 0.12));
}
.modal-dialog .box .image-contain.partner-image {
    background: #f8fafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 15px;
    filter: drop-shadow(0px 0px 0px transparent);
}
.modal-dialog .box .image-contain.partner-image::after {
    display: none;
}
.modal-dialog .box .image-contain.partner-image img {
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 0px;
    -o-object-position: center;
    object-position: center;
    background-color: var(--light-color);
}
.modal-dialog .box .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 95%;
    height: 95%;
    background-color: var(--light-color);
    -o-object-position: top center;
    object-position: top center;
    border-radius: 50%;
}
.modal-dialog .box .data {
    width: 100%;
    padding: 20px 0px 0px;
}
@media (min-width: 992px) {
    .modal-dialog .box .data {
        width: calc(100% - 192px);
    }
}
.modal-dialog .box .data h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--black-color);
    margin-bottom: 0px;
    text-align: start;
}
.modal-dialog .box .data h4 {
    font-size: 15px;
    font-weight: 900;
    color: var(--black-color);
    margin: 0px;
    text-align: start;
}
.modal-dialog .box .data .list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0px;
}
.modal-dialog .box .data .list li {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-color);
    padding-inline-start: 15px;
    position: relative;
    text-align: start;
    z-index: 9;
}
.modal-dialog .box .data .list li::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--gray-color);
    border-radius: 50%;
    top: 8px;
    right: 0;
    z-index: -1;
}
html[dir=ltr] .modal-dialog .box .data .list li::after {
    right: unset;
    left: 0px;
}
@media (max-width: 992px) {
    .modal-dialog .box .data .list li {
        font-size: 15px;
    }
}
.modal-dialog .box .data .job {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color) !important;
    margin: 16px 0px;
    text-align: start;
}
.modal-dialog .box .data .about-speaker {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    margin-bottom: 20px;
    text-align: start;
}
.modal-dialog .box .data .social {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
}
.modal-dialog .modal-content {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body .contain {
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    border-radius: 20px !important;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.modal-dialog .modal-content .modal-body .contain .close-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 99;
}
html[dir=ltr] .modal-dialog .modal-content .modal-body .contain .close-btn {
    left: unset;
    right: 10px;
}
.modal-dialog .modal-content .modal-body .contain .close-btn img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.modal-dialog .modal-content .modal-body .contain .icon {
    width: 172px;
    height: 172px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name {
    width: 190px;
    height: 50px;
    margin: 0px auto 30px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name img {
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 0px;
    -o-object-fit: contain;
    object-fit: contain;
}
.modal-dialog .modal-content .modal-body .contain span.danger {
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-top: 15px;
    color: var(--primary-color);
}
.modal-dialog .modal-content .modal-body .contain h1 {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0px;
}
.modal-dialog .modal-content .modal-body .contain h1.primary-color {
    color: var(--primary-color);
}
.modal-dialog .modal-content .modal-body .contain p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.questions .heading {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media (min-width: 992px) {
    .questions .heading {
        margin: 0px;
    }
}
.questions .card {
    width: 100%;
    border: 1px solid #e7eded;
    border-radius: 16px;
    padding: 12px 12px 16px;
    margin-bottom: 24px;
    background-color: var(--light-color);
}
@media (max-width: 992px) {
    .questions .card {
        padding: 10px 10px 12px;
        border-radius: 10px;
    }
}
.questions .card .card-header {
    width: 100%;
    border: 0px;
    padding: 0px;
    background-color: var(--light-color);
    margin: 0px;
    border-radius: 0px;
}
.questions .card .card-header .btn {
    width: 100%;
    position: relative;
    z-index: 9;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 700;
    margin: 0px;
    text-align: start;
    text-decoration: none;
    padding-inline-end: 30px;
}
@media (max-width: 992px) {
    .questions .card .card-header .btn {
        font-size: 14px;
        padding-inline-end: 20px;
    }
}
.questions .card .card-header .btn::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    background: url("../images/icons/add.svg") center/contain no-repeat;
    top: calc(50% - 14px);
    left: 0px;
}
@media (max-width: 992px) {
    .questions .card .card-header .btn::after {
        width: 24px;
        height: 24px;
        top: calc(50% - 12px);
    }
}
html[dir=ltr] .questions .card .card-header .btn::after {
    right: 0;
    left: unset;
}
.questions .card .card-header .btn[aria-expanded=true] {
    color: var(--primary-color);
}
.questions .card .card-header .btn[aria-expanded=true]::after {
    background-image: url("../images/icons/remove.svg");
}
.questions .card .card-body {
    width: 100%;
    padding: 15px 0px 0px;
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
}
.questions .card .card-body p {
    color: var(--gray-color);
    font-size: 20px;
    font-weight: 500;
    margin: 0px;
}
@media (max-width: 992px) {
    .questions .card .card-body p {
        font-size: 15px;
    }
}

footer {
    width: 100%;
    padding: 100px 0px 60px;
    position: relative;
    z-index: 9;
}
@media (max-width: 992px) {
    footer {
        padding: 50px 0px 40px;
    }
}
footer::after, footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    background: url("../images/icons/line-pattern.svg") center/contain repeat-x;
    z-index: -1;
    left: 0;
}
footer::after {
    top: -40px;
    /* animation: movingLtr 300s linear infinite; */
}
footer::before {
    height: 40px;
    bottom: 0px;
    /* animation: moving 300s linear infinite; */
}
footer .contain {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 9;
}
footer .contain .brand-contain {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
}
footer .contain .brand-contain .brand-name {
    width: 90px;
    height: 60px;
    display: flex;
    align-content: center;
    align-items: center;
}
footer .contain .brand-contain .brand-name img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
footer .contain .desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    margin: 20px 0px;
}
@media (max-width: 992px) {
    footer .contain .desc {
        margin: 15px 0px;
        font-size: 13px;
    }
}
footer .contain .nav-list {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
footer .contain .nav-list li {
    padding-inline-end: 10px;
    border-inline-end: 1px solid #e7eded;
}
footer .contain .nav-list li:last-child {
    padding-inline-end: 0px;
    border-inline-end: none;
}
footer .contain .nav-list li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
    transition: all 0.3s linear;
}
footer .contain .nav-list li a:hover {
    color: var(--primary-color);
}
footer .contain .social {
    justify-content: center;
}
footer .copyrights {
    width: 100%;
    padding: 10px 0px 0px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 165, 226, 0.2);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    footer .copyrights {
        padding: 30px 0px 0px;
        margin-top: 15px;
        justify-content: center;
        text-align: center;
    }
}
footer .copyrights .link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
}
@media (max-width: 992px) {
    footer .copyrights .link {
        font-size: 13px !important;
    }
}
footer .copyrights .link b {
    font-weight: 700;
}
footer .copyrights p {
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
    color: var(--gray-color);
}
@media (max-width: 992px) {
    footer .copyrights p {
        font-size: 12px;
    }
}
footer .copyrights p a {
    font-weight: 700;
    color: var(--gray-color);
}

.form-group {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 9;
}
.form-group.text-area {
    height: 140px;
}
.form-group.text-area .form-control {
    resize: none;
    padding: 12px;
    border-radius: 15px;
}
.form-group.select-data::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 12px);
    left: 12px;
    z-index: 9;
    background: url("../images/form/down_arrow.svg") center/contain no-repeat;
    pointer-events: none;
}
html[dir=ltr] .form-group.select-data::after {
    left: unset;
    right: 12px;
}
.form-group.select-data.price-input::after {
    background: url("../images/form/dollar.svg") center/contain no-repeat;
}
.form-group.select-data .form-control {
    padding-inline-start: 15px;
    color: var(--gray-color);
}
.form-group img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 12px);
    right: 12px;
    z-index: 9;
    pointer-events: none;
}
html[dir=ltr] .form-group img {
    left: 12px;
    right: unset;
}
.form-group .form-control {
    width: 100%;
    height: 100%;
    border: 1px solid #e7eded !important;
    background-color: #f8fafa;
    border-radius: 50px;
    padding-inline-start: 42px;
    padding-inline-end: 12px;
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 700;
}
.form-group .form-control::-moz-placeholder {
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 500;
}
.form-group .form-control::placeholder {
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 500;
}

.phone-input {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10 !important;
}

.phone-input .icon {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 12px;
}
html[dir=ltr] .phone-input .icon {
    left: 12px;
    right: unset;
}

.country-select {
    position: absolute;
    left: 12px;
    display: flex;
    align-items: center;
}
html[dir=ltr] .country-select {
    right: 12px;
    left: unset;
}

.country-select button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0px;
    border-inline-start: 1px solid #ddd !important;
    padding-inline-start: 10px !important;
}
.country-select button img.flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative !important;
    z-index: 9 !important;
    top: unset !important;
    right: unset !important;
    left: unset !important;
    -o-object-position: center !important;
    object-position: center !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
}
.country-select button span {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    direction: ltr;
}

#country-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 5px;
}
html[dir=ltr] #country-dropdown {
    right: 0;
    left: unset;
}

#country-dropdown.hidden {
    display: none;
}

#country-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

#country-list li {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
#country-list li span {
    direction: ltr;
}

#country-list li:hover {
    background: #f1f1f1;
}

#country-list img {
    width: 20px;
    height: 14px;
    position: relative !important;
    left: unset !important;
    right: unset !important;
}

.phone-input input[type=text] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-input {
    width: 100%;
    height: 50px;
    position: relative;
    z-index: 9;
}
.search-input img {
    width: 24px;
    height: 24px;
    filter: var(--primary-filter);
}
.search-input .form-control {
    width: 100%;
    height: 100%;
    border: 1px solid #e7eded;
    background-color: #f8fafa;
    border-radius: 12px;
    padding-inline-start: 42px;
    padding-inline-end: 12px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 700;
}

.upload-box {
    border: 2px dashed #f8fafa !important;
    background-color: #f8fafa;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    margin: 0px auto 20px;
    position: relative;
    gap: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
.upload-box .custom-btn {
    width: 200px;
}
.upload-box p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}
.upload-box .loader {
    border: 4px solid #eee;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: none; /* مخفي */
}
.upload-box .file-name {
    margin-top: 15px;
    font-size: 14px;
    color: var(--primary-color);
}

.sponsors .box {
    width: 100%;
    padding: 40px;
    margin-bottom: 60px;
    border-radius: 32px;
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
    position: relative;
    z-index: 9;
    transition: all 0.3s linear;
    background-color: var(--light-color);
    overflow: hidden;
}
.sponsors .box:last-child {
    margin-bottom: 0px;
}
@media (max-width: 992px) {
    .sponsors .box {
        padding: 20px 10px;
        border-radius: 15px;
        margin-bottom: 30px;
    }
}
.sponsors .box.platinum h2 {
    color: #868989;
}
.sponsors .box.platinum h2::after {
    background-color: #868989;
}
.sponsors .box.platinum .list li::after {
    filter: var(--gray-filter);
}
.sponsors .box.gold h2 {
    color: var(--gold-color);
}
.sponsors .box.gold h2::after {
    background-color: var(--gold-color);
}
.sponsors .box.gold .list li::after {
    filter: var(--gold-filter);
}
.sponsors .box .price-contain {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.sponsors .box .price-contain p {
    font-size: 15px;
    margin: 0px;
}
.sponsors .box .price-contain p.before {
    text-decoration: line-through;
    color: var(--gray-color);
    font-weight: 500;
}
.sponsors .box .price-contain p.after {
    color: var(--black-color);
    font-weight: 900;
}
.sponsors .box .price-contain span {
    color: var(--gray-color);
    font-size: 14px;
    font-weight: 500;
}
.sponsors .box h2 {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 9;
    padding-inline-start: 30px;
    margin: 20px 0px;
}
@media (max-width: 992px) {
    .sponsors .box h2 {
        font-size: 18px;
        margin: 15px 0px;
    }
}
.sponsors .box h2::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    border-radius: 20px;
    top: calc(50% - 1px);
    right: 0;
    z-index: -1;
}
html[dir=ltr] .sponsors .box h2::after {
    left: 0;
    right: unset;
}
.sponsors .box ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.sponsors .box ul li {
    padding-inline-start: 40px;
    position: relative;
    z-index: 9;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
}
@media (max-width: 992px) {
    .sponsors .box ul li {
        font-size: 12px;
        padding-inline-start: 24px;
    }
}
.sponsors .box ul li::after {
    content: "";
    width: 28px;
    position: absolute;
    height: 28px;
    background: url("../images/icons/check.svg") center/contain no-repeat;
    top: 0px;
    right: 0;
    z-index: -1;
}
@media (max-width: 992px) {
    .sponsors .box ul li::after {
        width: 18px;
        height: 18px;
    }
}
html[dir=ltr] .sponsors .box ul li::after {
    left: 0;
    right: 0;
}
.sponsors .box:hover {
    transform: translateY(-10px);
}
.sponsors .box:hover::after {
    animation: movingY 100s linear infinite;
}

.story .wrapper {
    display: flex;
    align-items: center;
    align-content: center;
    cursor: pointer;
    position: relative;
    padding: 10px 0px;
    border-bottom: 1px solid #e7eded;
}
.story .wrapper:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
    margin-bottom: 0px;
}
.story .wrapper .radio-check {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    border: 1px solid var(--primary-color) !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.story .wrapper .radio-check.radio-circle {
    border-radius: 50%;
}
.story .wrapper .radio-check.radio-circle::before {
    background: var(--primary-color);
    border-radius: 50%;
}
.story .wrapper .radio-check.radio-circle::after {
    background-color: var(--light-color);
}
.story .wrapper .radio-check::after, .story .wrapper .radio-check::before {
    content: "";
    position: absolute;
    transition: all 0.2s linear;
}
.story .wrapper .radio-check::before {
    background: url("../images/icons/check_data.svg") center/contain no-repeat;
    transform: scale(0);
    z-index: -1;
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
    left: calc(50% - 7px);
}
.story .wrapper .radio-check::after {
    width: 100%;
    height: 0px;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    z-index: -2;
}
.story .wrapper .radio-check:checked {
    border-color: var(--primary-color) !important;
}
.story .wrapper .radio-check:checked::before {
    transform: scale(1);
}
.story .wrapper .radio-check:checked::after {
    height: 100%;
}
.story .wrapper .radio-title {
    color: var(--gray-color);
    width: calc(100% - 30px);
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
    cursor: pointer;
    margin-bottom: 0px !important;
    margin-inline-start: 10px !important;
}
@media (max-width: 992px) {
    .story .wrapper .radio-title {
        font-size: 11px;
    }
}
.story .wrapper .radio-title .link {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
}
.story .border-shape {
    border-inline-end: 1px solid #e7eded;
}
.story .heading-shape {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.story .heading-shape img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.story .heading-shape h2 {
    font-size: 20px;
    font-weight: 900;
    color: var(--black-color);
    margin: 0px;
}
.story .box {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
    background-color: var(--light-color);
    margin-bottom: 40px;
    transition: all 0.3s linear;
}
@media (max-width: 992px) {
    .story .box {
        border-radius: 10px;
        padding: 15px 10px;
        margin-bottom: 20px;
    }
}
.story .box h3 {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .story .box h3 {
        font-size: 14px;
    }
}
.story .story-box {
    width: 100%;
    border-radius: 28px;
    position: relative;
    z-index: 9;
    transition: all 0.3s linear;
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
    padding: 12px;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 32px;
    transition: all 0.3s linear;
}
@media (max-width: 992px) {
    .story .story-box {
        flex-direction: column;
        justify-content: flex-start;
        margin-bottom: 20px;
    }
}
.story .story-box .image-contain {
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}
@media (max-width: 992px) {
    .story .story-box .image-contain {
        width: 100%;
    }
}
.story .story-box .image-contain .story-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.story .story-box .image-contain .bade-story {
    width: 140px;
    height: 48px;
    border-radius: 0px 20px 0px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
}
.story .story-box .image-contain .video {
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 9;
}
.story .story-box .image-contain .video img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.story .story-box .contain {
    width: calc(100% - 272px);
}
@media (max-width: 992px) {
    .story .story-box .contain {
        width: 100%;
    }
}
.story .story-box .contain h4 {
    font-size: 24px;
    font-weight: 900;
    color: var(--black-color);
    margin: 0px;
}
@media (max-width: 992px) {
    .story .story-box .contain h4 {
        font-size: 14px;
    }
}
.story .story-box .contain .list {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0px;
}
@media (max-width: 992px) {
    .story .story-box .contain .list {
        margin: 15px 0px;
        gap: 8px;
    }
}
.story .story-box .contain .list li {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.story .story-box .contain .list li img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.story .story-box .contain .list li span {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
}
@media (max-width: 992px) {
    .story .story-box .contain .list li span {
        font-size: 12px;
    }
}
.story .story-box .contain .desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .story .story-box .contain .desc {
        font-size: 13px;
        margin-bottom: 14px;
    }
}
.story .story-box .contain .custom-btn {
    margin-inline-start: auto;
}
.story .story-box:hover {
    transform: translateY(-10px);
}
.story .story-box:hover h4 {
    color: var(--primary-color);
}

.pagination-list {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.pagination-list li {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
}
.pagination-list li a {
    font-size: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 500;
    color: var(--primary-color);
}
.pagination-list li a.active {
    color: var(--light-color);
    background-color: var(--primary-color);
}

.story-details .image-contain {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}
@media (max-width: 992px) {
    .story-details .image-contain {
        width: 100%;
        height: 300px;
    }
}
.story-details .image-contain .story-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.story-details .image-contain .bade-story {
    width: 140px;
    height: 48px;
    border-radius: 0px 20px 0px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
}
.story-details .image-contain .video {
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 9;
}
.story-details .image-contain .video img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.story-details .list {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0px;
}
@media (max-width: 992px) {
    .story-details .list {
        margin: 15px 0px;
        gap: 8px;
    }
}
.story-details .list li {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.story-details .list li img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.story-details .list li span {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
}
@media (max-width: 992px) {
    .story-details .list li span {
        font-size: 12px;
    }
}
.story-details .share-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-color);
    display: block;
    margin-bottom: 20px;
}
.story-details .data-contain {
    margin: 20px 0px;
    padding-inline-start: 25px;
    border-inline-start: 1px solid #e7eded;
}
.story-details .title {
    font-size: 20px;
    font-weight: 900;
    color: var(--black-color);
    margin-bottom: 20px;
}
.story-details .swiper-wrapper {
    padding: 20px 0px 90px;
}
.story-details .image-gallery {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-content: center;
    align-items: center;
}
@media (max-width: 992px) {
    .story-details .image-gallery {
        height: 150px;
        border-radius: 10px;
    }
}
.story-details .image-gallery img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.event-schedule {
    width: 100%;
}
.event-schedule .nav-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid #e7eded !important;
    padding-bottom: 0px;
    margin-bottom: 60px;
}
@media (max-width: 992px) {
    .event-schedule .nav-tabs {
        margin-bottom: 30px;
    }
}
.event-schedule .nav-tabs .nav-item {
    padding: 0px;
    margin: 0px;
}
.event-schedule .nav-tabs .nav-item .nav-link {
    padding: 10px 15px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 0px;
    background-color: transparent;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 9;
    border: 0px;
    color: var(--gray-color);
}
@media (max-width: 992px) {
    .event-schedule .nav-tabs .nav-item .nav-link {
        padding: 10px 5px;
        font-size: 14px;
    }
}
.event-schedule .nav-tabs .nav-item .nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -1px;
    left: 0;
    z-index: -1;
    transform: scaleX(0);
    transition: all 0.3s linear;
}
.event-schedule .nav-tabs .nav-item .nav-link.active, .event-schedule .nav-tabs .nav-item .nav-link:hover {
    color: var(--primary-color);
}
.event-schedule .nav-tabs .nav-item .nav-link.active::after, .event-schedule .nav-tabs .nav-item .nav-link:hover::after {
    transform: scaleX(1) !important;
}
.event-schedule .list-data {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 9;
}
.event-schedule .list-data::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 90%;
    border-right: 1px dashed #e7eded;
    top: 2%;
    right: 14px;
    z-index: 9;
}
.event-schedule .list-data .box {
    width: 100%;
    position: relative;
    z-index: 9;
}
.event-schedule .list-data .box::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    background: url("../images/icons/clock-icon.svg") center/contain no-repeat;
    top: calc(50% - 14px);
    right: 0;
    z-index: 9;
}
html[dir=ltr] .event-schedule .list-data .box::after {
    left: 0;
    right: unset;
}
.event-schedule .list-data .box .data {
    width: calc(100% - 40px);
    margin-inline-start: auto;
    padding: 20px 15px;
    border: 1px solid #d7dcdc;
    border-radius: 20px;
    background-color: var(--light-color);
    position: relative;
    z-index: 9;
    display: flex;
    gap: 20px;
}
@media (max-width: 992px) {
    .event-schedule .list-data .box .data {
        width: calc(100% - 40px);
        gap: 10px;
        padding: 15px 10px;
        border-radius: 10px;
        flex-direction: column;
    }
}
.event-schedule .list-data .box .data .date {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    padding-inline-end: 20px;
    border-inline-end: 1px solid var(--primary-color);
}
@media (max-width: 992px) {
    .event-schedule .list-data .box .data .date {
        width: 100%;
        border-inline-end: 0px;
        border-bottom: 1px solid var(--primary-color);
        padding-inline-end: 0px;
        padding-bottom: 10px;
    }
}
@media (min-width: 992px) {
    .event-schedule .list-data .box .data .flex-data {
        width: calc(100% - 150px);
    }
}
.event-schedule .list-data .box .data .flex-data h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin: 0px;
}
@media (max-width: 992px) {
    .event-schedule .list-data .box .data .flex-data h3 {
        font-size: 16px;
    }
}
.event-schedule .list-data .box .data .flex-data p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    margin: 20px 0px;
}
.event-schedule .list-data .box .data .flex-data h4 {
    font-size: 18px;
    font-weight: 900;
    color: var(--black-color);
    margin-bottom: 20px;
}
.event-schedule .list-data .box .speaker-box {
    width: 100%;
    border: 1px solid #d7dcdc;
    background-color: var(--light-color);
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    border-radius: 50px;
    gap: 10px;
    padding: 6px;
    margin-bottom: 15px;
    transition: all 0.3s linear;
}
@media (max-width: 992px) {
    .event-schedule .list-data .box .speaker-box {
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 10px;
        text-align: center;
    }
}
.event-schedule .list-data .box .speaker-box img {
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 50%;
}
.event-schedule .list-data .box .speaker-box .speaker-data {
    width: calc(100% - 70px);
}
@media (max-width: 992px) {
    .event-schedule .list-data .box .speaker-box .speaker-data {
        width: 100%;
    }
}
.event-schedule .list-data .box .speaker-box .speaker-data h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 8px;
}
@media (max-width: 992px) {
    .event-schedule .list-data .box .speaker-box .speaker-data h5 {
        font-size: 10px;
    }
}
.event-schedule .list-data .box .speaker-box .speaker-data span {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 500;
}
@media (max-width: 992px) {
    .event-schedule .list-data .box .speaker-box .speaker-data span {
        font-size: 10px;
    }
}
.event-schedule .list-data .box .speaker-box:hover {
    transform: translateY(-10px);
}
@media (max-width: 992px) {
    .event-schedule .list-data .padding-shape {
        padding: 0px 10px !important;
    }
}
.event-schedule .tab-pane.fade.show.active {
    animation: fadeInUp 0.5s ease-in-out;
}

.location {
    width: 100%;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.location .iframe-contain {
    width: 100%;
    height: 300px;
    border-radius: 100px 100px 0px 0px;
    overflow: hidden;
}
@media (max-width: 992px) {
    .location .iframe-contain {
        border-radius: 20px 20px 0px 0px;
    }
}
.location .iframe-contain iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.location .iframe-contain .location-logo {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: calc(50% - 40px);
    left: calc(50% - 40px);
    z-index: 99;
    animation: translateY 1s ease-in-out infinite alternate;
}
.location .iframe-contain .location-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.location .location-info {
    width: 100%;
    margin: 20px 0px 0px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
}
.location .location-info img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.location .location-info span {
    font-size: 15px;
    font-weight: 700;
    color: var(--black-color);
}

.location-details #scroll-line {
    width: 100%;
    height: 90%;
    top: 6%;
    position: absolute;
    left: 0;
}
.location-details .data-contain {
    width: 100%;
    padding: 40px 0px;
    position: relative;
    z-index: 99;
}
.location-details .data-contain .contain {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.location-details .data-contain .contain .heading {
    margin-bottom: 0px;
    text-align: start;
}
.location-details .data-contain .contain .heading .title {
    margin-top: 0px;
}
.location-details .data-contain .contain .heading .desc {
    font-size: 18px;
}
.location-details .data-contain .image-contain {
    width: 100%;
    height: 300px;
    border-radius: 200px;
    background: url("../images/request/location-pattern-blue.svg") top right/contain no-repeat;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.location-details .data-contain .image-contain.revert {
    background: url("../images/request/location-pattern-yellow.svg") top left/contain no-repeat;
}
.location-details .data-contain .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 200px;
    width: 90%;
    height: 90%;
}

.ways .flex-data {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 992px) {
    .ways .flex-data {
        -moz-column-gap: 10px;
        column-gap: 10px;
        row-gap: 20px;
    }
}
.ways .flex-data .box {
    width: calc(20% - 20px);
    height: auto !important;
    padding: 20px;
    background-color: var(--light-color);
    box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12), 0px -12px 32px rgba(112, 144, 176, 0.12);
    border-radius: 20px;
    position: relative;
    z-index: 9;
    text-align: center;
    transition: all 0.3s linear;
}
@media (max-width: 992px) {
    .ways .flex-data .box {
        width: calc(50% - 5px);
        padding: 15px 10px;
    }
}
.ways .flex-data .box img {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0px auto;
}
.ways .flex-data .box h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--black-color);
    margin: 20px 0px;
}
@media (max-width: 992px) {
    .ways .flex-data .box h3 {
        font-size: 16px;
        margin: 15px 0px;
    }
}
.ways .flex-data .box p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 700;
    margin: 0px;
}
@media (max-width: 992px) {
    .ways .flex-data .box p {
        font-size: 13px;
    }
}
.ways .flex-data .box:hover {
    transform: translateY(-10px);
}
.ways .flex-data .box:hover h3 {
    color: var(--primary-color);
}

.nationality-select-wrapper {
    position: relative;
    z-index: 99 !important;
}

.nationality-select-btn {
    width: 100%;
    height: 100%;
    border: 1px solid #e7eded !important;
    background-color: #f8fafa;
    border-radius: 50px;
    padding-inline-start: 15px;
    padding-inline-end: 42px;
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    outline: none;
    box-shadow: none;
    transition: all 0.3s ease;
}
html[dir=ltr] .nationality-select-btn {
    text-align: left;
    justify-content: flex-start;
}
.nationality-select-btn:hover {
    border-color: #d0d8d8 !important;
}
.nationality-select-btn:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(0, 116, 155, 0.1);
}
.nationality-select-btn span {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 700;
    width: 100%;
}

#nationality-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px;
    margin-top: 5px;
}
#nationality-dropdown .search-input {
    margin-bottom: 10px;
}

#nationality-dropdown.hidden {
    display: none;
}

#nationality-list {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    max-height: 250px;
    overflow-y: auto;
}
#nationality-list::-webkit-scrollbar {
    width: 6px;
}
#nationality-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
#nationality-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
#nationality-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#nationality-list li {
    padding: 12px 15px;
    cursor: pointer;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}
#nationality-list li:hover {
    background: #f1f1f1;
}
#nationality-list li:active {
    background: #e7eded;
}

.search-input {
    width: 100%;
    height: 50px;
    position: relative;
    z-index: 9;
}
.search-input img {
    width: 24px;
    height: 24px;
    filter: var(--primary-filter);
}
.search-input .form-control {
    width: 100%;
    height: 100%;
    border: 1px solid #e7eded;
    background-color: #f8fafa;
    border-radius: 12px;
    padding-inline-start: 40px !important;
    padding-inline-end: 12px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 700;
}

.fixed-icon {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 999;
}
html[dir=ltr] .fixed-icon {
    left: unset;
    right: 10px;
}
.fixed-icon .whatspp-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.fixed-icon .whatspp-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 999px) {
    .order-mobile-0 {
        order: 0;
    }
    .order-mobile-1 {
        order: 1;
    }
}/*# sourceMappingURL=style.css.map */
