@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #8d0e4b;
    --header: #1f2a7f;
    --text: #101010;
    --border: #CAD2D2;
    --bg: #000D44;
    --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    background: var(--theme);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 35px;
}

.theme-btn i {
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
    color: var(--white);
}

.theme-btn::before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--header);
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: inherit;
}

.theme-btn:hover {
    color: var(--white);
    box-shadow: none;
}

.theme-btn:hover::before {
    width: 100%;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

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

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

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

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

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

h1 {
    font-size: 80px;
    font-weight: 500;
    line-height: 105%;
}

@media (max-width: 1899px) {
    h1 {
        font-size: 78px;
    }
}

@media (max-width: 1600px) {
    h1 {
        font-size: 70px;
    }
}

@media (max-width: 1399px) {
    h1 {
        font-size: 60px;
        line-height: 110%;
    }
}

@media (max-width: 1199px) {
    h1 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 55px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 43px;
    }
}

@media (max-width: 470px) {
    h1 {
        font-size: 36px;
    }
}

h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 112%;
}

@media (max-width: 1399px) {
    h2 {
        font-size: 45px;
    }
}

@media (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 32px;
    }
}

h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 133%;
    color: #000;
    text-align: center;
}

@media (max-width: 1899px) {
    h3 {
        font-size: 21px;
    }
}

@media (max-width: 1600px) {
    h3 {
        font-size: 19px;
    }
}

@media (max-width: 1399px) {
    h3 {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 19px;
    font-weight: 500;
    line-height: 27px;
}

@media (max-width: 1199px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 17px;
    font-weight: 300;
    line-height: 25px;
}

h6 {
    font-size: 14px;
    font-weight: 600;
}

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

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

span {
    margin: 0px;
}

.about-wrapper .about-image-items .about-image1 {
    padding-left: 15px;
    position: relative;
}

@media (max-width: 575px) {
    .about-wrapper .about-image-items .about-image1 {
        padding-left: 0;
    }
}

.about-wrapper .about-image-items .about-image1::before {
    position: absolute;
    width: calc(100% - 20px);
    height: 100%;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border: 2px solid var(--theme);
    border-radius: 100px 0px 100px 100px;
}

@media (max-width: 575px) {
    .about-wrapper .about-image-items .about-image1::before {
        display: none;
    }
}

.about-wrapper .about-image-items .about-image1 img {
    width: 100%;
    height: 100%;
    border-radius: 100px 0px 100px 100px;
}

.about-wrapper .about-image-items .about-counters {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

@media (max-width: 575px) {
    .about-wrapper .about-image-items .about-counters {
        display: none;
    }
}

.about-wrapper .about-image-items .about-counters h2 {
    font-size: 65px;
    font-weight: 600;
    color: var(--theme);
}

.about-wrapper .about-image-items .about-counters p {
    color: #000D44;
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
}

.about-wrapper .about-image-items .about-image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 100px 100px 100px 0px;
}

.about-wrapper .about-image-items .about-image-3 {
    margin-top: 30px;
}

.about-wrapper .about-image-items .about-image-3 img {
    width: 100%;
    height: 100%;
    border-radius: 100px 0px 100px 100px;
}

.about-wrapper .about-content {
    margin-left: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content {
        margin-left: 0;
    }
}

.about-wrapper .about-content .about-text {
    margin-top: 25px;
    color: var(--text);
}

.about-wrapper .about-content .icon-items-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .about-wrapper .about-content .icon-items-area {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.about-wrapper .about-content .icon-items-area .icon-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-wrapper .about-content .icon-items-area .icon-items .icon {
    background-color: rgb(241, 236, 255);
    width: 64px;
    height: 64px;
    text-align: center;
    line-height: 64px;
    border-radius: 10px;
}

.about-wrapper .about-content .icon-items-area .icon-items .icon img {
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.about-wrapper .about-content .icon-items-area .icon-items h4 {
    max-width: 177px;
}

.about-wrapper .about-content .icon-items-area .icon-items:hover .icon img {
    transform: scaleX(-1) !important;
}

.about-wrapper .about-content .about-text-2 {
    font-weight: 500;
    color: var(--header);
    margin-top: 30px;
}

.about-wrapper .about-content .about-bottom-area {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .about-wrapper .about-content .about-bottom-area {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.about-wrapper .about-content .about-bottom-area .client-phn-area {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-wrapper .about-content .about-bottom-area .client-phn-area .client-image {
    position: relative;
}

.about-wrapper .about-content .about-bottom-area .client-phn-area .client-image .phone-icon {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background-color: var(--theme);
    border-radius: 50%;
    color: var(--white);
    border: 2px solid var(--white);
    position: absolute;
    top: 6px;
    right: -30px;
}

.about-wrapper .about-content .about-bottom-area .client-phn-area .client-content p {
    color: var(--text);
}

.about-wrapper .about-content .about-bottom-area .client-phn-area .client-content a {
    color: var(--header);
    font-size: 14px;
    font-weight: 700;
}

.about-wrapper-2 .top-area {
    margin-left: 300px;
}

@media (max-width: 1199px) {
    .about-wrapper-2 .top-area {
        margin-left: 0;
    }
}

.about-wrapper-2 .top-area h2 {
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .about-wrapper-2 .top-area h2 br {
        display: none;
    }
}

@media (max-width: 1199px) {
    .about-wrapper-2 .top-area h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .about-wrapper-2 .top-area h2 {
        font-size: 28px;
    }
}

@media (max-width: 470px) {
    .about-wrapper-2 .top-area h2 {
        font-size: 25px;
    }
}

.about-wrapper-2 .about-main-content {
    border-top: 1px solid rgb(216, 221, 225);
    padding-top: 60px;
    margin-top: 40px;
    border-bottom: 1px solid rgb(216, 221, 225);
    padding-bottom: 60px;
    position: relative;
}

.about-wrapper-2 .about-main-content::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 56%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    content: "";
    background: #D8DDE1;
}

@media (max-width: 1399px) {
    .about-wrapper-2 .about-main-content::before {
        display: none;
    }
}

.about-wrapper-2 .about-main-content .frist-content .about-image {
    margin-top: 80px;
}

.about-wrapper-2 .about-main-content .middle-content .about-text {
    margin-left: 60px;
}

.about-wrapper-2 .about-main-content .middle-content .about-client-img-area {
    margin-top: 70px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-wrapper-2 .about-main-content .middle-content .about-client-img-area h3 {
    font-size: 24px;
}

.about-wrapper-2 .about-main-content .about-last-content .about-img {
    position: relative;
}

.about-wrapper-2 .about-main-content .about-last-content .about-img img {
    width: 100%;
    height: 100%;
}

.about-wrapper-2 .about-main-content .about-last-content .about-img .theme-btn {
    position: absolute;
    bottom: 4px;
    right: -6px;
    font-size: 13px;
    padding: 18px 30px;
}

@media (max-width: 1399px) {
    .about-wrapper-2 .about-main-content .about-last-content .about-img .theme-btn {
        padding: 18px 22px;
    }
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-main-content .about-last-content .about-img .theme-btn {
        position: static;
        margin-top: 30px;
    }
}

.about-wrapper-2 .about-main-content .about-last-content p {
    margin-top: 20px;
}

.about-creativity-wrapper .about-creativity-left-items {
    margin-right: 20px;
}

@media (max-width: 1199px) {
    .about-creativity-wrapper .about-creativity-left-items {
        margin-right: 0;
    }
}

.about-creativity-wrapper .about-creativity-left-items .creativity-text {
    margin-top: 25px;
}

.about-creativity-wrapper .about-creativity-left-items .theme-btn {
    margin-top: 30px;
}

.about-creativity-wrapper .about-creativity-left-items .list-items {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
    border-top: 1px solid rgb(216, 221, 225);
    padding-top: 30px;
}

@media (max-width: 1399px) {
    .about-creativity-wrapper .about-creativity-left-items .list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.about-creativity-wrapper .about-creativity-left-items .list-items ul li {
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    color: var(--header);
    position: relative;
}

.about-creativity-wrapper .about-creativity-left-items .list-items ul li::before {
    width: 8px;
    height: 8px;
    content: "";
    background-color: var(--theme);
    border-radius: 100%;
    position: absolute;
    top: 10px;
    left: 0;
}

.about-creativity-wrapper .about-creativity-left-items .list-items ul li:not(:last-child) {
    margin-bottom: 5px;
}

.about-creativity-wrapper .about-creativity-right-items .thumb {
    position: relative;
}

.about-creativity-wrapper .about-creativity-right-items .thumb img {
    width: 100%;
    height: 100%;
}

.about-creativity-wrapper .about-creativity-right-items .thumb .sm-thumb {
    position: absolute;
    bottom: 10px;
    right: 0;
}

@media (max-width: 991px) {
    .about-creativity-wrapper .about-creativity-right-items .thumb .sm-thumb {
        display: none;
    }
}

.about-creativity-wrapper .about-creativity-right-items p {
    margin-top: 20px;
}

.achieve-success-wrapper .achieve-left-thumb {
    position: relative;
}

.achieve-success-wrapper .achieve-left-thumb img {
    width: 100%;
    height: 100%;
}

.achieve-success-wrapper .achieve-left-thumb .sm-thumb {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 767px) {
    .achieve-success-wrapper .achieve-left-thumb .sm-thumb {
        max-width: 200px;
    }
}

.achieve-success-wrapper .achieve-right-content {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .achieve-success-wrapper .achieve-right-content {
        margin-left: 0;
    }
}

.achieve-success-wrapper .achieve-right-content .achieve-text {
    margin-top: 25px;
}

.achieve-success-wrapper .achieve-right-content ul {
    margin-top: 30px;
}

.achieve-success-wrapper .achieve-right-content ul li {
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 767px) {
    .achieve-success-wrapper .achieve-right-content ul li {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.achieve-success-wrapper .achieve-right-content ul li .icon img {
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.achieve-success-wrapper .achieve-right-content ul li .content {
    max-width: 404px;
}

.achieve-success-wrapper .achieve-right-content ul li:not(:last-child) {
    margin-bottom: 20px;
}

.achieve-success-wrapper .achieve-right-content h3 {
    font-size: 24px;
    margin-top: 25px;
}

@media (max-width: 767px) {
    .achieve-success-wrapper .achieve-right-content h3 {
        font-size: 20px;
    }
}

.achieve-success-wrapper .achieve-right-content .theme-btn {
    margin-top: 30px;
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

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

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

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

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.5);
    }
}

@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }

    20% {
        transform: translateX(-50px);
    }

    50% {
        transform: translatey(-40px);
    }

    100% {
        transform: translatey(0px);
    }
}

/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

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

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

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.animation-infinite {
    animation: ShapeAnim 80s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
}

.img-custom-anim-bottom {
    animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-bottom {
    0% {
        transform: translateY(5%);
        clip-path: inset(100% 0 0 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes borderAnim {
    0% {
        width: 0;
    }

    100% {
        width: 44px;
    }
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrolly {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-60%);
    }
}

@keyframes scrolls {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

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

.img_left_animation {
    animation: left-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
    opacity: 0;
}

@keyframes left-animation {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img_right_animation {
    animation: right-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
    opacity: 0;
}

@keyframes right-animation {
    0% {
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img_top_animation {
    animation: top-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
    opacity: 0;
}

@keyframes top-animation {
    0% {
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img_bottom_animation {
    animation: bottom-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
    opacity: 0;
}

@keyframes bottom-animation {
    0% {
        clip-path: inset(100% 0 0 0);
        opacity: 0;
    }

    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.brand-box {
    height: 150px;
    line-height: 150px;
    border: 1px solid rgb(216, 221, 225);
    text-align: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.brand-box .brand-img-1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-box .brand-img-1 img {
    opacity: 0.4;
    transition: all 0.6s ease;
    transform: translateY(0);
}

.brand-box .brand-img-1:last-child img {
    transform: translateY(-350%);
    opacity: 0;
}

.brand-box:hover .brand-img-1:first-child img {
    transform: translateY(100%);
    opacity: 0;
}

.brand-box:hover .brand-img-1:last-child img {
    transform: translateY(0);
    opacity: 1;
}

.brand-section .section-title {
    margin-bottom: 60px;
}

.brand-section-2 .brand-top-text {
    margin-bottom: 30px;
}

.brand-section-2 .brand-top-text p b {
    color: var(--theme);
}

.location-left-content .location-text {
    margin-top: 20px;
}

.location-left-content ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .location-left-content ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.location-left-content ul li img {
    margin-right: 10px;
}

.location-left-content .location-line {
    margin-top: 15px;
}

.location-left-content .location-line h4 img {
    margin-right: 10px;
}

.location-left-content .theme-btn {
    margin-top: 30px;
}

.map-section-contact {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .map-section-contact {
        margin-left: 0;
    }
}

.map-section-contact .google-map iframe {
    width: 744px;
    height: 478px;
    border-radius: 10px;
}

.location-left-content-inner .location-text {
    margin-top: 20px;
}

@media (max-width: 1399px) {
    .location-left-content-inner br {
        display: none;
    }
}

.location-left-content-inner .contact-list {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .location-left-content-inner .contact-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.location-left-content-inner .contact-list ul li span {
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
}

.location-left-content-inner .contact-list ul li .social-icon {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.location-left-content-inner .contact-list ul li .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid rgb(216, 221, 225);
    color: var(--header);
}

.location-left-content-inner .contact-list ul li .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.location-left-content-inner .contact-list ul li p a {
    color: var(--text);
}

.location-left-content-inner .contact-list ul li p a:hover {
    color: var(--theme);
}

.location-left-content-inner .contact-list ul li:not(:last-child) {
    margin-bottom: 20px;
}

.map-section-contact-inner {
    margin-left: 20px;
}

@media (max-width: 1199px) {
    .map-section-contact-inner {
        margin-left: 0;
    }
}

.map-section-contact-inner .google-map iframe {
    width: 100%;
    height: 478px;
    border-radius: 10px;
}

.contact-form-box {
    border-radius: 30px;
    background: rgb(245, 248, 253);
    padding: 35px;
    border: 1px solid rgb(216, 221, 225);
}

@media (max-width: 767px) {
    .contact-form-box {
        padding: 28px;
    }
}

.contact-form-box h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 36px;
}

.contact-form-box .form-clt {
    position: relative;
}

.contact-form-box .form-clt .icon {
    position: absolute;
    right: 25px;
    top: 16px;
}

.contact-form-box .form-clt input, .contact-form-box .form-clt textarea {
    line-height: 1;
    padding: 20px 20px;
    width: 100%;
    text-transform: capitalize;
    color: var(--header);
    border-radius: 100px;
    border: 1px solid rgb(216, 221, 225);
    background: var(--white);
}

.contact-form-box .form-clt input::placeholder, .contact-form-box .form-clt textarea::placeholder {
    color: var(--header);
}

.contact-form-box .form-clt .single-select {
    line-height: 1;
    height: initial;
    padding: 20px 20px;
    width: 100%;
    text-transform: capitalize;
    color: var(--header);
    border-radius: 100px;
    border: 1px solid rgb(216, 221, 225);
    background: var(--white);
}

.contact-form-box .form-clt .single-select::after {
    right: 25px;
}

.contact-form-box .form-clt .single-select .list {
    width: 100%;
}

.contact-form-box .form-clt textarea {
    padding-bottom: 120px;
    border-radius: 30px;
}

.contact-form-box .contact-button {
    text-align: center;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .cta-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

.cta-wrapper .title {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 1199px) {
    .cta-wrapper .title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .cta-wrapper .title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .cta-wrapper .title {
        font-size: 26px;
    }
}

.cta-wrapper form {
    position: relative;
    max-width: 550px;
    width: 100%;
}

.cta-wrapper form input {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--white);
    color: var(--text);
    line-height: 1;
    padding: 18px 24px;
    border-radius: 40px;
}

.cta-wrapper form input::placeholder {
    color: var(--text);
}

.cta-wrapper form .theme-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
}

.cta-wrapper .theme-btn {
    padding: 16px 22px;
}

.cta-section {
    padding: 80px 0;
}

.cta-countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .cta-countdown-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

.cta-countdown-wrapper .cooming-soon-items .coming-soon-time {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    justify-content: center;
}

.cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content {
    text-align: center;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 10px;
    position: relative;
}

.cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 span {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 span {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .cta-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 span {
        font-size: 14px;
    }
}

.cta-video-section-2 {
    position: relative;
    z-index: 9;
}

.cta-video-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(97.54deg, rgba(25, 0, 177, 0.81) 14.32%, rgba(227, 38, 130, 0.405) 153.15%);
    z-index: -1;
}

.cta-video-section-2 .video-btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: var(--theme);
    text-align: center;
    border-radius: 100%;
    font-size: 20px;
    z-index: 9;
    position: absolute;
    top: 120px;
    right: 315px;
}

@media (max-width: 1199px) {
    .cta-video-section-2 .video-btn {
        position: relative;
        top: initial;
        right: initial;
    }
}

.cta-video-section-2 .video-btn::before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    content: "";
    right: 0;
    bottom: 0;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.cta-video-section-2 .video-btn:hover::before {
    background-color: var(--theme);
}

.cta-video-section-2 .video-btn:hover i {
    color: var(--white);
}

.cta-video-content-2 {
    margin-top: 208px;
}

@media (max-width: 1199px) {
    .cta-video-content-2 {
        margin-top: 40px;
    }
}

.cta-video-content-2 .cta-text {
    color: var(--white);
    margin-top: 20px;
}

.cta-video-content-2 .theme-btn {
    margin-top: 40px;
}

.event-box-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgb(216, 221, 225);
    padding: 30px;
    border-radius: 30px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .event-box-wrapper-2 {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .event-box-wrapper-2 {
        display: block;
        padding: 20px;
    }
}

.event-box-wrapper-2 .event-content-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 991px) {
    .event-box-wrapper-2 .event-content-area {
        display: block;
    }
}

.event-box-wrapper-2 .event-content-area .event-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .event-box-wrapper-2 .event-content-area .event-thumb {
        height: 450px;
    }
}

.event-box-wrapper-2 .event-content-area .event-thumb img {
    border-radius: 20px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 991px) {
    .event-box-wrapper-2 .event-content-area .event-thumb img {
        width: 100%;
        height: 100%;
    }
}

.event-box-wrapper-2 .event-content-area .event-thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.event-box-wrapper-2 .event-content-area .event-content {
    max-width: 437px;
}

@media (max-width: 991px) {
    .event-box-wrapper-2 .event-content-area .event-content {
        margin: 25px 0;
    }
}

.event-box-wrapper-2 .event-content-area .event-content .date-item i {
    color: var(--theme);
}

.event-box-wrapper-2 .event-content-area .event-content h3 {
    margin-top: 10px;
}

.event-box-wrapper-2 .event-content-area .event-content h3 a:hover {
    color: var(--theme);
}

.event-box-wrapper-2 .event-content-area .event-content p {
    margin-top: 6px;
}

.event-box-wrapper-2 .event-content-area .event-content .theme-btn {
    margin-top: 20px;
}

.event-box-wrapper-2 .event-content-area:hover .event-thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.event-box-wrapper-2 .event-content-area:hover .event-thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.event-box-wrapper-2 .line {
    background-color: rgb(216, 221, 225);
    width: 1px;
    height: 280px;
}

@media (max-width: 1399px) {
    .event-box-wrapper-2 .line {
        display: none;
    }
}

.event-box-wrapper-2 .client-info-area .client-info {
    margin-top: 25px;
}

.event-box-wrapper-2 .client-info-area .client-info li {
    display: flex;
    gap: 12px;
}

.event-box-wrapper-2 .client-info-area .client-info li .content p {
    font-weight: 500;
    color: var(--header);
    max-width: 271px;
}

.event-box-wrapper-2 .client-info-area .client-info li .content p span {
    color: var(--text);
    font-weight: 400;
}

.event-box-wrapper-2 .client-info-area .client-info li:not(:last-child) {
    margin-bottom: 8px;
}

.event-venue-section-2 {
    position: relative;
    z-index: 9;
}

.event-venue-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 13, 68, 0.8);
    z-index: -1;
}

.event-venue-section-2::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--white);
    z-index: -1;
    top: 82%;
}

.event-venue-section-2 .event-navs {
    background-color: var(--white);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 1000px;
    padding: 20px;
    max-width: 895px;
    margin: 100px auto 30px;
}

@media (max-width: 991px) {
    .event-venue-section-2 .event-navs {
        border-radius: 10px;
    }
}

.event-venue-section-2 .nav {
    border: 1px solid #D8DDE1;
    border-radius: 100px;
    padding: 0;
}

@media (max-width: 991px) {
    .event-venue-section-2 .nav {
        border-radius: 10px;
    }
}

@media (max-width: 575px) {
    .event-venue-section-2 .nav {
        display: block;
    }
}

.event-venue-section-2 .nav .nav-item .nav-link {
    height: 110px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-venue-section-2 .nav .nav-item .nav-link .text-items {
    text-align: center;
}

.event-venue-section-2 .nav .nav-item .nav-link .text-items .text1 {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--header);
}

.event-venue-section-2 .nav .nav-item .nav-link .text-items .text2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    display: inline-block;
    margin-top: 10px;
}

.event-venue-section-2 .nav .nav-item .nav-link.active {
    background-color: var(--theme);
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

@media (max-width: 991px) {
    .event-venue-section-2 .nav .nav-item .nav-link.active {
        border-radius: 10px;
    }
}

.event-venue-section-2 .nav .nav-item .nav-link.active .text-items .text1 {
    color: var(--white);
}

.event-venue-section-2 .nav .nav-item .nav-link.active .text-items .text2 {
    color: var(--white);
}

.event-venue-section-2 .nav .nav-item:last-child .nav-link.active {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

@media (max-width: 991px) {
    .event-venue-section-2 .nav .nav-item:last-child .nav-link.active {
        border-radius: 10px;
    }
}

.event-venue-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .event-venue-wrapper-2 {
        flex-wrap: wrap;
        gap: 30px;
    }

    .event-venue-wrapper-2 .section-title {
        margin-bottom: 0;
    }
}

.event-venue-wrapper-2 .event-right-items li {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(9.5px);
    border-radius: 100px;
    padding: 8px;
    padding-right: 47px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-venue-wrapper-2 .event-right-items li .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    border-radius: 50%;
}

.event-venue-wrapper-2 .event-right-items li .content h4 {
    color: var(--white);
}

.event-venue-wrapper-2 .event-right-items li .content p {
    color: var(--white);
}

.event-venue-wrapper-2 .event-right-items li:not(:last-child) {
    margin-bottom: 20px;
}

.event-signle-list-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D8DDE1;
    padding: 40px 0;
}

@media (max-width: 1199px) {
    .event-signle-list-items {
        padding: 30px 0;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.event-signle-list-items .event-left-items {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 1399px) {
    .event-signle-list-items .event-left-items {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .event-signle-list-items .event-left-items {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .event-signle-list-items .event-left-items {
        display: grid;
    }
}

.event-signle-list-items .event-left-items .date-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.event-signle-list-items .event-left-items .date-text h2 {
    font-size: 64px;
    font-weight: 700;
}

.event-signle-list-items .event-left-items .date-text span {
    font-size: 20px;
    font-weight: 600;
}

.event-signle-list-items .event-left-items .thumb {
    border-radius: 30px;
    max-width: 275px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.event-signle-list-items .event-left-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.event-signle-list-items .event-left-items .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.event-signle-list-items .event-left-items .content h3 {
    font-size: 24px;
    font-weight: 600;
}

.event-signle-list-items .event-left-items .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.event-signle-list-items .event-left-items .content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.event-signle-list-items .event-left-items .content ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 22px;
}

@media (max-width: 991px) {
    .event-signle-list-items .event-left-items .content ul {
        flex-wrap: wrap;
    }
}

.event-signle-list-items .event-left-items .content ul li {
    font-size: 14px;
    font-weight: 400;
    color: #000D44;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-signle-list-items .event-left-items:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.event-signle-list-items .event-left-items:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.event-signle-list-items .theme-btn {
    background-color: var(--header);
}

.event-signle-list-items .theme-btn::before {
    background-color: var(--theme);
}

.event-section-3 {
    background-color: #F5F7FA;
}

.event-section-3 .section-title-area {
    border-bottom: 1px solid #D8DDE1;
    padding-bottom: 60px;
    margin-bottom: 30px;
}

.event-section-3 .section-title-area .nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-section-3 .section-title-area .nav .nav-item .nav-link {
    display: inline-block;
    padding: 20px 30px;
    line-height: 1;
    background-color: var(--white);
    border-radius: 10px;
    color: #000D44;
    font-size: 20px;
    font-weight: 600;
}

.event-section-3 .section-title-area .nav .nav-item .nav-link.active {
    background-color: var(--theme);
    color: var(--white);
}

.event-details-wrapper .details-image {
    border-radius: 50px;
}

@media (max-width: 767px) {
    .event-details-wrapper .details-image .fix {
        border-radius: 50px;
        height: 400px;
    }
}

.event-details-wrapper .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    object-fit: cover;
}

.event-details-wrapper .details-content {
    margin-top: 30px;
}

.event-details-wrapper .details-content .info-list {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .event-details-wrapper .details-content .info-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.event-details-wrapper .details-content .info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--header);
}

.event-details-wrapper .details-content .info-list li i {
    color: var(--theme);
}

.event-details-wrapper .details-content h2 {
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .event-details-wrapper .details-content h2 {
        font-size: 29px;
    }
}

@media (max-width: 767px) {
    .event-details-wrapper .details-content h2 {
        font-size: 27px;
    }
}

@media (max-width: 575px) {
    .event-details-wrapper .details-content h2 {
        font-size: 25px;
    }
}

.event-details-wrapper .details-content .event-list-items {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .event-details-wrapper .details-content .event-list-items {
        flex-wrap: wrap;
    }
}

.event-details-wrapper .details-content .event-list-items .thumb {
    max-width: 255px;
}

.event-details-wrapper .details-content .event-list-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.event-details-wrapper .details-content .event-list-items .list-items li {
    font-size: 18px;
    font-weight: 500;
    color: var(--header);
    position: relative;
    padding-left: 15px;
}

.event-details-wrapper .details-content .event-list-items .list-items li:not(:last-child) {
    margin-bottom: 5px;
}

.event-details-wrapper .details-content .event-list-items .list-items li::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: var(--theme);
    transform: translateY(-50%);
}

.event-details-wrapper .details-content .details-image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.event-details-wrapper .details-content .details-button-info {
    padding: 40px 0;
    border-top: 1px solid #D8DDE1;
    border-bottom: 1px solid #D8DDE1;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1199px) {
    .event-details-wrapper .details-content .details-button-info {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.event-details-wrapper .details-content .details-button-info .client-infos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.event-details-wrapper .details-content .details-button-info .client-infos .icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--header);
    color: var(--white);
}

.event-details-wrapper .details-content .details-button-info .client-infos .cont h4 {
    font-size: 20px;
    font-weight: 600;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper {
    margin-top: 60px;
}

@media (max-width: 991px) {
    .event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-header {
        flex-direction: column;
        gap: 20px;
    }

    .event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .social-icons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-image-area .image-circle {
        width: 140px;
        height: 140px;
    }
}

.event-details-wrapper .details-content .event-speaker-info-wrapper h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .event-details-wrapper .details-content .event-speaker-info-wrapper h2 {
        font-size: 29px;
    }
}

@media (max-width: 767px) {
    .event-details-wrapper .details-content .event-speaker-info-wrapper h2 {
        font-size: 27px;
    }
}

@media (max-width: 575px) {
    .event-details-wrapper .details-content .event-speaker-info-wrapper h2 {
        font-size: 25px;
    }
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items {
    background: #ffffff;
    border: 1px solid #D8DDE1;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-image-area {
    flex-shrink: 0;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-image-area .image-circle {
    width: 170px;
    height: 170px;
    background: #d8f0f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-image-area .image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content {
    flex-grow: 1;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .name-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .name-info p {
    margin: 5px 0 0;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .social-icons {
    display: flex;
    gap: 10px;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.1), 0px 1px 4px rgba(12, 12, 13, 0.05);
    color: var(--header);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-header .social-icons a:hover {
    background-color: var(--theme);
    color: #ffffff;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .divider {
    border-top: 1px solid #D8DDE1;
    opacity: 1;
    margin: 20px 0;
}

.event-details-wrapper .details-content .event-speaker-info-wrapper .event-speaker-info-items .speaker-content .speaker-bio {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.event-details-wrapper .event-details-info {
    background: #ffffff;
    border: 1px solid #D8DDE1;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .event-details-wrapper .event-details-info {
        margin-top: 0;
    }
}

.event-details-wrapper .event-details-info h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.event-details-wrapper .event-details-info h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background-color: var(--theme);
}

.event-details-wrapper .event-details-info .info-list .info-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #D8DDE1;
}

.event-details-wrapper .event-details-info .info-list .info-item.border-none {
    border: none;
}

.event-details-wrapper .event-details-info .info-list .info-item .label {
    font-weight: 500;
    color: var(--header);
    width: 100px;
    font-size: 16px;
}

.event-details-wrapper .event-details-info .info-list .info-item .value {
    font-size: 16px;
}

.event-details-wrapper .event-purchase-ticket-items {
    background: #ffffff;
    border: 1px solid #D8DDE1;
    border-radius: 30px;
    padding: 30px;
}

.event-details-wrapper .event-purchase-ticket-items h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.event-details-wrapper .event-purchase-ticket-items h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background-color: var(--theme);
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card {
    background-color: #F5F8FD;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-header {
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    color: var(--header);
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-header .sub-text {
    font-weight: normal;
    font-size: 14px;
    color: var(--text);
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .caption {
    font-size: 13px;
    color: #788094;
    margin-bottom: 10px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .amount {
    font-weight: bold;
    color: var(--header);
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #D8DDE1;
    border-radius: 20px;
    background: #fff;
    padding: 2px 10px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .quantity-control button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.event-details-wrapper .event-purchase-ticket-items .ticket-card .ticket-body .column .quantity-control input {
    width: 25px;
    text-align: center;
    border: none;
    font-weight: bold;
    color: var(--header);
    outline: none;
}

.event-details-wrapper .event-purchase-ticket-items .total-summary {
    background-color: #F5F8FD;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
}

.event-details-wrapper .event-purchase-ticket-items .total-summary p {
    margin: 0;
    font-weight: bold;
    color: var(--header);
    margin-bottom: 10px;
}

.event-details-wrapper .event-purchase-ticket-items .total-summary hr {
    border: none;
    border-top: 1px solid #D8DDE1;
    margin: 10px 0;
}

.event-details-wrapper .event-purchase-ticket-items .total-summary h4 {
    margin: 0;
    color: var(--header);
    font-size: 18px;
}

.event-join-box-items {
    margin-top: 30px;
}

.event-join-box-items .icon {
    background-color: var(--theme);
    width: 64px;
    height: 64px;
    text-align: center;
    line-height: 64px;
    border-radius: 10px;
}

.event-join-box-items .icon img {
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.event-join-box-items h3 {
    color: var(--white);
    margin-top: 30px;
}

.event-join-box-items p {
    color: var(--white);
    margin-top: 10px;
}

.event-join-box-items:hover .icon img {
    transform: scaleX(-1) !important;
}

.faq-wrapper-2 .faq-left-content {
    margin-right: 30px;
}

@media (max-width: 1199px) {
    .faq-wrapper-2 .faq-left-content {
        margin-right: 0;
    }
}

.faq-wrapper-2 .faq-left-content .faq-page-items {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .faq-wrapper-2 .faq-left-content .faq-page-items {
        margin-top: 30px;
    }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box {
    position: relative;
    border-bottom: 1px solid rgb(216, 221, 225);
    padding-bottom: 10px;
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block {
    position: relative;
    background-color: transparent;
    line-height: 1;
    border-top: 1px solid rgb(216, 221, 225);
    padding: 22px 0;
}

@media (max-width: 575px) {
    .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block {
        padding: 18px;
    }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn {
    position: relative;
    font-size: 24px;
    color: var(--header);
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 575px) {
    .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn {
        font-size: 17px;
        line-height: 1.5;
        padding-right: 40px;
    }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn .icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--header);
    font-size: 16px;
    line-height: 30px;
    color: var(--white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    border-radius: 50%;
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content {
    position: relative;
    display: none;
    margin-top: 22px;
}

@media (max-width: 470px) {
    .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content {
        margin-top: 10px;
    }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content .content {
    position: relative;
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content .content .text {
    line-height: 175%;
    font-size: 16px;
    font-weight: 400;
    color: rgb(120, 128, 148);
    max-width: 605px;
}

@media (max-width: 1199px) {
    .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content .content .text {
        font-size: 14px;
    }
}

@media (max-width: 470px) {
    .faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content .content .text {
        font-size: 13px;
    }
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-content.current {
    display: block;
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn.active .icon:before {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block .acc-btn.active .icon {
    background-color: var(--theme);
}

.faq-wrapper-2 .faq-left-content .faq-page-items .accordion-box .block:last-child {
    margin-bottom: 0;
}

.faq-wrapper-2 .faq-right-thumb {
    position: relative;
}

.faq-wrapper-2 .faq-right-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.faq-wrapper-2 .faq-right-thumb .support-text-area {
    background: #FFFFFF;
    border-radius: 50px 0px 0px 0px;
    padding: 40px;
    padding-bottom: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 767px) {
    .faq-wrapper-2 .faq-right-thumb .support-text-area {
        padding: 25px;
    }
}

.faq-wrapper-2 .faq-right-thumb .support-text-area .icon img {
    width: initial;
    height: initial;
}

.faq-wrapper-2 .faq-right-thumb .support-text-area h3 {
    font-size: 74px;
    font-weight: 700;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .faq-wrapper-2 .faq-right-thumb .support-text-area h3 {
        font-size: 42px;
    }
}

.faq-wrapper-2 .faq-right-thumb .support-text-area p {
    font-size: 20px;
    font-weight: 600;
}

.experience-content .experience-text {
    margin-top: 25px;
    color: var(--white);
}

.experience-content .theme-btn {
    margin-top: 35px;
}

.experience-section {
    position: relative;
    z-index: 9;
}

.experience-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 13, 68, 0.3);
    z-index: -1;
}

.experience-section .shape-bg {
    position: absolute;
    top: 0;
    left: 0;
}

.feature-box-items {
    box-shadow: 0px 9px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border-radius: 30px;
    margin-top: 30px;
}

.feature-box-items .box-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.feature-box-items .box-shape img {
    width: 100%;
    height: 100%;
}

.feature-box-items .icon {
    background-color: var(--theme);
    width: 64px;
    height: 64px;
    text-align: center;
    line-height: 64px;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-box-items .icon img {
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.feature-box-items .content {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.feature-box-items .content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
}

.feature-box-items .content .link-btn {
    color: var(--header);
    margin-top: 20px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.feature-box-items .content .link-btn i {
    margin-left: 7px;
}

.feature-box-items .content .link-btn:hover {
    color: var(--theme);
}

.feature-box-items:hover .icon img {
    transform: scaleX(-1) !important;
}

.reasons-wrapper .reasons-left-video-thumb {
    position: relative;
}

@media (max-width: 1899px) {
    .reasons-wrapper .reasons-left-video-thumb {
        height: 755px;
    }
}

@media (max-width: 1199px) {
    .reasons-wrapper .reasons-left-video-thumb {
        height: 500px;
    }
}

.reasons-wrapper .reasons-left-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reasons-wrapper .reasons-left-video-thumb .video-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    background: var(--white);
    color: var(--theme);
    text-align: center;
    border-radius: 100%;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.reasons-wrapper .reasons-right-content {
    margin-left: 40px;
    position: relative;
}

@media (max-width: 1199px) {
    .reasons-wrapper .reasons-right-content {
        margin-right: 30px;
    }
}

.reasons-wrapper .reasons-right-content .reasons-bg-shape {
    position: absolute;
    top: -15%;
    left: -73%;
}

.reasons-wrapper .reasons-right-content .reasons-text {
    margin-top: 25px;
    max-width: 569px;
    color: var(--white);
}

.reasons-wrapper .reasons-right-content .list-items {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .reasons-wrapper .reasons-right-content .list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.reasons-wrapper .reasons-right-content .list-items ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.reasons-wrapper .reasons-right-content .list-items ul li:not(:last-child) {
    margin-bottom: 20px;
}

.reasons-wrapper .reasons-right-content .list-items ul li img {
    margin-right: 10px;
}

.reasons-wrapper .reasons-right-content .counter-items-area {
    margin-top: 55px;
    display: flex;
    align-items: center;
    gap: 65px;
}

@media (max-width: 1199px) {
    .reasons-wrapper .reasons-right-content .counter-items-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .reasons-wrapper .reasons-right-content .counter-items-area {
        margin-top: 30px;
    }
}

.reasons-wrapper .reasons-right-content .counter-items-area .counter-items {
    text-align: center;
}

.reasons-wrapper .reasons-right-content .counter-items-area .counter-items .icon {
    position: relative;
}

.reasons-wrapper .reasons-right-content .counter-items-area .counter-items .icon h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--white);
    transform: translate(-50%, -50%);
    font-size: 36px;
}

.reasons-wrapper .reasons-right-content .counter-items-area .counter-items h5 {
    color: var(--white);
    margin-top: 30px;
}

.reasons-feature-section {
    position: relative;
}

@media (max-width: 1199px) {
    .reasons-feature-section {
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .reasons-feature-section {
        padding-bottom: 80px;
    }
}

.reasons-feature-section .shape-1 {
    position: absolute;
    bottom: 0;
    right: 50px;
}

.feature-dream-wrapper-2 .feature-dream-thumb img {
    width: 100%;
    height: 100%;
}

.feature-dream-wrapper-2 .feature-dream-content {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .feature-dream-wrapper-2 .feature-dream-content {
        margin-left: 0;
    }
}

.feature-dream-wrapper-2 .feature-dream-content .feature-dream-list {
    border-top: 1px solid rgb(216, 221, 225);
    padding-top: 25px;
    margin-top: 25px;
}

.feature-dream-wrapper-2 .feature-dream-content .feature-dream-list li h5 img {
    margin-right: 10px;
}

.feature-dream-wrapper-2 .feature-dream-content .feature-dream-list li p {
    margin-top: 10px;
}

.feature-dream-wrapper-2 .feature-dream-content .feature-dream-list li:not(:last-child) {
    margin-bottom: 20px;
}

.feature-award-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .feature-award-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.feature-award-wrapper .feature-award-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (max-width: 767px) {
    .feature-award-wrapper .feature-award-wrap {
        margin-left: 30px;
    }
}

.feature-award-wrapper .feature-award-wrap .number {
    font-size: 65px;
    font-weight: 700;
    color: #788094;
    transition: all 0.4s ease-in-out;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .feature-award-wrapper .feature-award-wrap .number {
        font-size: 50px;
    }
}

.feature-award-wrapper .feature-award-wrap .feature-award-items .icon img {
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.feature-award-wrapper .feature-award-wrap .feature-award-items h3 {
    font-size: 36px;
    margin-top: 20px;
    max-width: 194px;
}

@media (max-width: 991px) {
    .feature-award-wrapper .feature-award-wrap .feature-award-items h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .feature-award-wrapper .feature-award-wrap .feature-award-items h3 {
        font-size: 24px;
    }
}

.feature-award-wrapper .feature-award-wrap .feature-award-items:hover .icon img {
    transform: scaleX(-1) !important;
}

.feature-award-wrapper .line {
    background: rgb(216, 221, 225);
    height: 160px;
    width: 1px;
    margin-left: 20px;
    display: inline-block;
}

@media (max-width: 1199px) {
    .feature-award-wrapper .line {
        display: none;
    }
}

.footer-section {
    position: relative;
    z-index: 9;
}

.footer-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 13, 68, 0.9);
    z-index: -1;
}

.footer-wrappper {
    padding: 80px 0 60px;
}

.footer-wrappper .footer-widget-items {
    margin-top: 30px;
}

.footer-wrappper .footer-widget-items .widget-head {
    margin-bottom: 30px;
}

.footer-wrappper .footer-widget-items .widget-head h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    text-align: left;
}

.footer-wrappper .footer-widget-items .widget-head .line {
    width: 75px;
    height: 1px;
    background-color: var(--theme);
    margin-top: 15px;
}

.footer-wrappper .footer-widget-items .footer-content {
    margin-top: 30px;
}

.footer-wrappper .footer-widget-items .footer-content p {
    color: var(--white);
    max-width: 350px;
}

.footer-wrappper .footer-widget-items .footer-content .social-icon {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.footer-wrappper .footer-widget-items .footer-content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--white);
    color: var(--white);
}

.footer-wrappper .footer-widget-items .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.footer-wrappper .footer-widget-items .list-area li {
    transition: all 0.4s ease-in-out;
    font-size: 16px;
    font-weight: 300;
}

.footer-wrappper .footer-widget-items .list-area li i {
    margin-right: 9px;
    font-size: 14px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    position: absolute;
    left: 0;
    top: 9px;
}

.footer-wrappper .footer-widget-items .list-area li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-wrappper .footer-widget-items .list-area li a {
    color: var(--white);
    position: relative;
    padding: 0 0 0 21px;
    display: block;
}

.footer-wrappper .footer-widget-items .list-area li:hover {
    margin-left: 5px;
}

.footer-wrappper .footer-widget-items .list-area li:hover i {
    color: var(--theme);
}

.footer-wrappper .footer-widget-items .list-area li:hover a {
    color: var(--theme);
}

.footer-wrappper .footer-widget-items .icon-area li {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-wrappper .footer-widget-items .icon-area li .icon {
    width: 52px;
    height: 52px;
    line-height: 47px;
    text-align: center;
    background-color: var(--theme);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-wrappper .footer-widget-items .icon-area li .icon img {
    width: 25px;
    height: 25px;
}

.footer-wrappper .footer-widget-items .icon-area li .content p {
    color: var(--white);
    margin-bottom: 5px;
}

.footer-wrappper .footer-widget-items .icon-area li .content a {
    color: var(--white);
    font-size: 18px;
    font-weight: 300;
}

.footer-wrappper .footer-widget-items .icon-area li .content a:hover {
    color: var(--theme);
}

.footer-wrappper .footer-widget-items .icon-area li:not(:last-child) {
    margin-bottom: 30px;
}

.footer-wrappper .footer-widget-items .recent-post li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-wrappper .footer-widget-items .recent-post li .thumb img {
    border-radius: 8px;
}

.footer-wrappper .footer-widget-items .recent-post li .content p {
    color: var(--white);
}

.footer-wrappper .footer-widget-items .recent-post li .content p i {
    margin-right: 5px;
}

.footer-wrappper .footer-widget-items .recent-post li .content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

.footer-wrappper .footer-widget-items .recent-post li .content h4 a {
    color: var(--white);
}

.footer-wrappper .footer-widget-items .recent-post li .content h4 a:hover {
    color: var(--theme);
}

.footer-wrappper .footer-widget-items .recent-post li:not(:last-child) {
    margin-bottom: 30px;
}

.footer-bottom {
    background: var(--theme);
    position: relative;
    z-index: 9;
    padding: 15px 0;
}

.footer-bottom .footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .footer-bottom .footer-bottom-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }
}

.footer-bottom .footer-bottom-wrapper p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.footer-bottom .footer-bottom-wrapper .footer-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-bottom .footer-bottom-wrapper .footer-menu li a {
    color: var(--white);
    background-image: linear-gradient(var(--white), var(--white));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    font-weight: 500;
}

.footer-bottom .footer-bottom-wrapper .footer-menu li a:hover {
    background-size: 100% 1px;
    color: var(--white);
}

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

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul .menu-thumb {
    position: inherit;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 60px; }

@media (max-width: 1600px) {
    .header-main .main-menu ul li {
        margin-inline-end: 50px;
    }
}

@media (max-width: 1399px) {
    .header-main .main-menu ul li {
        margin-inline-end: 30px;
    }
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0; }

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #000D44;
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
    margin-left: 4px;
    font-size: 12px;
}

.header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    padding: 20px 0;
    border-radius: 10px;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: #000D44;
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    border-top: 4px solid var(--theme);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 500;
    color: #000D44;
    line-height: 38px;
    padding: 0px 0px 0px 32px;
    padding-right: 22px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--theme);
    left: 14px;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
    margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover > a::before {
    width: 10px;
}

.header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover > .submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}

.header-main .main-menu ul li:hover > a {
    color: var(--theme);
}

.header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}

.header-main .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-main .sidebar__toggle {
    color: var(--header);
}

.header-main .header-right {
    gap: 30px;
}

@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 {
    position: relative;
    z-index: 9999;
}

@media (max-width: 1199px) {
    .header-1 {
        margin-top: 20px;
    }
}

.header-1 .mega-menu-wrapper {
    background-color: var(--white);
    padding: 0 30px;
    border-radius: 100px;
}

.header-1 .header-main {
    padding: 25px 0;
}

@media (max-width: 1399px) {
    .header-1 .header-main {
        padding: 15px 0;
    }
}

.header-1 .header-left {
    display: flex;
    align-items: center;
    gap: 130px;
}

@media (max-width: 1399px) {
    .header-1 .header-left {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .header-1 .header-left {
        gap: 0;
    }
}

.header-1 .search-toggler {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border: 1px solid #D8DDE1;
    text-align: center;
    border-radius: 50%;
    color: var(--header);
}

.header-1 .search-toggler:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.header-1 .header-right {
    gap: 20px !important;
}

.header-1 .theme-btn {
    padding: 22px 35px;
}

@media (max-width: 1199px) {
    .header-1 .theme-btn {
        display: none;
    }
}

.header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.header-section .container {
    max-width: 1536px;
}

.header-top-wrapper {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .header-top-wrapper {
        display: none;
    }
}

.header-top-wrapper ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top-wrapper ul li {
    display: flex;
    align-items: center;
    font-weight: 400;
    color: var(--white);
    gap: 10px;
}

.header-top-wrapper ul li a {
    color: var(--white);
}

.header-top-wrapper ul .line {
    display: inline-block;
    width: 1px;
    height: 20px;
    opacity: 0.2;
    border: 1px solid #FFFFFF;
}

.header-top-wrapper ul .social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-top-wrapper ul .social-icon a {
    color: var(--white);
}

.header-top-wrapper ul .social-icon a:hover {
    color: var(--theme);
}

.header-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
}

.header-2 .container {
    max-width: 1560px;
}

.header-2 .header-main .main-menu ul li a {
    color: #fff;
}

.header-2 .header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.header-2 .header-main .main-menu ul li .submenu {
    color: #000D44;
}

.header-2 .header-main .main-menu ul li .submenu li a {
    color: #000D44;
}

.header-2 .header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}

.header-2 .header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
}

.header-2 .header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}

.header-2 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    color: var(--theme);
}

.header-2 .header-main .main-menu ul li:hover > a {
    color: var(--theme);
}

.header-2 .header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}

.header-2 .header-main .sidebar__toggle {
    color: var(--white);
}

.header-2 .header-main .header-right {
    gap: 30px;
}

@media (max-width: 1399px) {
    .header-2 .header-main .header-right {
        gap: 20px;
    }
}

.header-2 .header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-2 .header-right {
    gap: 20px !important;
}

.header-2 .theme-btn {
    padding: 22px 35px;
}

@media (max-width: 1199px) {
    .header-2 .theme-btn {
        display: none;
    }
}

.header-2 .search-toggler {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border: 1px solid #D8DDE1;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
}

.header-2 .search-toggler:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.header-2.header-inner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-2.header-inner .container {
    max-width: 1621px;
}

.header-2.header-inner .sidebar__toggle {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    transition: all 0.4s ease-in-out;
}

.header-2.header-inner .sidebar__toggle:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.9s;
    background-color: #fff;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 .header-main {
    padding: 15px 0;
}

.sticky.header-1 .mega-menu-wrapper {
    padding: 0 0;
}

@media (max-width: 1199px) {
    .sticky.header-1 {
        margin-top: 0;
    }
}

.sticky.header-2 .header-main .main-menu ul li a {
    color: #000D44;
}

.sticky.header-2 .header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu {
    color: #000D44;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a {
    color: #000D44;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}

.sticky.header-2 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    color: var(--theme);
}

.sticky.header-2 .header-main .main-menu ul li:hover > a {
    color: var(--theme);
}

.sticky.header-2 .header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}

.sticky.header-2 .header-main .sidebar__toggle {
    color: var(--header);
}

.sticky.header-2 .search-toggler {
    color: var(--header);
}

.sticky.header-2 .search-toggler:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.sticky.header-inner .logo {
    display: none;
}

.sticky.header-inner .logo2 {
    display: block !important;
}

.sticky.header-inner .sidebar__toggle {
    border: 1px solid #D8DDE1;
}

.sticky.header-inner .sidebar__toggle svg path {
    fill: var(--header);
    transition: all 0.4s ease-in-out;
}

.sticky.header-inner .sidebar__toggle:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}

.sticky.header-inner .sidebar__toggle:hover svg path {
    fill: var(--white);
}

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

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

.offcanvas__logo a img {
    width: 150px;
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content p {
    color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .social-icon {
    margin-top: 30px;
    gap: 10px;
    margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .theme-btn {
    width: 100%;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 500;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-button {
    margin-top: 300px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1399px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas-button {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__content .offcanvas-button {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

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

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

@media (max-width: 450px) {
    .offcanvas__info {
        width: 350px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.breadcrumb-wrapper {
    position: relative;
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, rgb(31 42 127 / 83%) 55.84%, rgba(11, 0, 75, 0) 100%);
}

.breadcrumb-wrapper .page-heading {
    padding: 130px 0 80px;
    position: relative;
    text-align: center;
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading {
        padding-top: 200px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        text-align: center;
        padding-top: 95px;
        padding-bottom: 50px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-list {
        justify-content: center;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li {
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-list li {
        font-size: 14px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li a {
    color: var(--white);
    position: relative;
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li a:hover {
    color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 44px;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-title {
        font-size: 44px;
    }
}

.error-items {
    text-align: center;
}

.error-items .error-image {
    max-width: 967px;
    margin: 0 auto 50px;
    text-align: center;
}

.error-items .error-image img {
    width: 100%;
    height: 100%;
}

.error-items h2 {
    margin-bottom: 15px;
    font-size: 60px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .error-items h2 {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .error-items h2 {
        font-size: 42px;
    }
}

.error-items h2 span {
    color: var(--theme);
    font-weight: 400;
}

.error-items p {
    font-size: 18px;
    margin-bottom: 30px;
}

.error-items .theme-btn i {
    margin-right: 10px;
    margin-left: 0;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ripple {
    position: relative;
}

.ripple::before, .ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(21, 57, 238, 0.6);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

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

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

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

.container-2 {
    max-width: 1320px;
}

@media (max-width: 767px) {
    br {
        display: none;
    }
}

.text_invert > div {
    background-image: linear-gradient(to right, rgb(137, 137, 137) 50%, rgb(137, 137, 137) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.text_invert-2 > div {
    background-image: linear-gradient(to right, rgb(25, 42, 25) 50%, rgb(137, 137, 137) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

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

.page-nav-wrap {
    margin-top: 60px;
}

.page-nav-wrap ul li {
    display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 100px;
    border: 1px solid var(--theme);
    background: transparent;
    color: var(--header);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--white);
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.hero-1 {
    padding: 210px 0 0;
    position: relative;
    z-index: 9;
}

.hero-1 .hero-light {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-1 .hero-light2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.hero-1::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 13, 68, 0.85);
    z-index: -1;
}

.hero-1 .container {
    max-width: 1536px;
}

.hero-1 .hero-content {
    margin-top: -120px;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .hero-1 .hero-content {
        margin-top: 0;
        text-align: center;
    }
}

.hero-1 .hero-content h1 {
    font-size: 130px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1.5px;
}

@media (max-width: 1399px) {
    .hero-1 .hero-content h1 {
        font-size: 100px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        font-size: 120px;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 88px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 470px) {
    .hero-1 .hero-content h1 {
        font-size: 52px;
        margin-top: 10px;
    }
}

.hero-1 .hero-content h2 {
    font-size: 80px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2.5px;
}

@media (max-width: 1399px) {
    .hero-1 .hero-content h2 {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-content h2 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content h2 {
        font-size: 28px;
    }
}

.hero-1 .hero-content .hero-text {
    font-size: 130px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 10px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-content .hero-text {
        line-height: 1;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-content .hero-text {
        font-size: 100px;
        line-height: 1;
        justify-content: center;
    }
}

.hero-1 .hero-content .hero-text .svg-text {
    top: -7px;
    position: relative;
}

.hero-1 .hero-content .year-area {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-top: 10px;
}

@media (max-width: 1399px) {
    .hero-1 .hero-content .year-area {
        gap: 40px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-content .year-area {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-content .year-area {
        display: grid;
        justify-content: center;
        gap: 30px;
    }
}

.hero-1 .hero-content .year-area .year-content {
    max-width: 450px;
}

.hero-1 .hero-content .year-area .year-content h4 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
}

.hero-1 .hero-content .year-area .year-content h4 span {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

.hero-1 .hero-content .year-area .year-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 767px) {
    .hero-1 .hero-content .year-area .year-content h5 {
        font-size: 16px;
    }
}

.hero-1 .hero-content .hero-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .hero-1 .hero-content .hero-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.hero-1 .hero-content .hero-bottom .theme-btn::before {
    background-color: var(--white);
}

.hero-1 .hero-content .hero-bottom .theme-btn:hover {
    color: var(--theme);
}

.hero-1 .hero-content .hero-bottom .theme-btn:hover i {
    color: var(--theme);
}

.hero-1 .hero-content .hero-bottom .client-image {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-1 .hero-content .hero-bottom .client-image p {
    font-weight: 500;
    color: var(--white);
}

.hero-1 .hero-image {
    margin-left: -200px;
}

@media (max-width: 1600px) {
    .hero-1 .hero-image {
        margin-left: -260px;
    }
}

@media (max-width: 1399px) {
    .hero-1 .hero-image {
        margin-left: -360px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-image {
        margin-left: -280px;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-image {
        margin-left: 0;
    }

    .hero-1 .hero-image img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-image {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 0;
    }
}

.hero-2 {
    padding: 150px 0;
    position: relative;
    z-index: 9;
}

.hero-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 13, 68, 0.7);
    z-index: -1;
}

.hero-2 .container {
    max-width: 1560px;
}

.hero-2 .hero-content h1 {
    font-size: 200px;
    font-weight: 800;
    color: var(--theme);
}

@media (max-width: 1600px) {
    .hero-2 .hero-content h1 {
        font-size: 170px;
    }
}

@media (max-width: 1399px) {
    .hero-2 .hero-content h1 {
        font-size: 150px;
    }
}

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 {
        font-size: 130px;
    }
}

@media (max-width: 991px) {
    .hero-2 .hero-content h1 {
        font-size: 90px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        font-size: 56px;
        line-height: 1;
    }
}

.hero-2 .hero-content h1 .hero-text {
    font-size: 200px;
    font-weight: 800;
    color: var(--white);
}

@media (max-width: 1600px) {
    .hero-2 .hero-content h1 .hero-text {
        font-size: 170px;
    }
}

@media (max-width: 1399px) {
    .hero-2 .hero-content h1 .hero-text {
        font-size: 150px;
    }
}

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 .hero-text {
        font-size: 130px;
    }
}

@media (max-width: 991px) {
    .hero-2 .hero-content h1 .hero-text {
        font-size: 90px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content h1 .hero-text {
        font-size: 56px;
    }
}

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 .hero-sm-img {
        display: none;
    }
}

.hero-2 .hero-content h1 .hero-sm-img img {
    border-radius: 100px;
}

.hero-2 .hero-countdown-wrapper {
    max-width: 1020px;
    margin: 0 auto;
    padding-left: 148px;
}

@media (max-width: 1199px) {
    .hero-2 .hero-countdown-wrapper {
        padding-left: 0;
    }
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items {
    margin-top: 20px;
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    justify-content: center;
}

@media (max-width: 1199px) {
    .hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: start;
    }
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--theme);
    backdrop-filter: blur(27px);
    border-radius: 20px;
    max-width: 200px;
    height: 125px;
    width: 100%;
}

@media (max-width: 575px) {
    .hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content {
        max-width: 160px;
    }
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.hero-2 .hero-countdown-wrapper .cooming-soon-items .coming-soon-time .timer-content h2 span {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

@media (max-width: 1199px) {
    .hero-2 .hero-countdown-wrapper .hero-bottom-area {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: start;
    }
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area .frist-text p {
    color: var(--white);
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area .frist-text h3 {
    font-size: 24px;
    color: var(--white);
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area .middle-text h3 {
    font-size: 24px;
    color: var(--white);
}

.hero-2 .hero-countdown-wrapper .hero-bottom-area .middle-text p {
    color: var(--white);
    margin-top: 7px;
}

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

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

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

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

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

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: #000D44;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #E5E5E5 !important;
    border: none;
}

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

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

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

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

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

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

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

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transition: all 0.4s ease-in-out;
}

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

.news-box-items {
    margin-top: 30px;
}

.news-box-items .news-thumb {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.news-box-items .news-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-box-items .news-thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-box-items .news-thumb .post-date {
    width: 60px;
    height: 60px;
    padding: 2px;
    text-align: center;
    background-color: var(--theme);
    border-radius: 10px;
    color: var(--white);
    position: absolute;
    top: 20px;
    left: 20px;
    padding-top: 5px;
    z-index: 11;
}

.news-box-items .news-thumb .post-date h4 {
    color: var(--white);
    line-height: 1.3;
}

.news-box-items .news-thumb .post-date p {
    line-height: 1;
}

.news-box-items .news-content {
    margin-top: 20px;
}

.news-box-items .news-content p {
    color: var(--theme);
    text-align: center;
}

.news-box-items .news-content h3 {
    margin-top: 7px;
    font-size: 24px;
    margin-bottom: 10px;
}

.news-box-items .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-box-items .news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    /* background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%); */
}

.news-box-items .news-content .link-btn {
    color: var(--header);
    margin-top: 0;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
}

.news-box-items .news-content .link-btn i {
    margin-left: 7px;
}

.news-box-items .news-content .link-btn:hover {
    color: var(--theme);
}

.news-box-items:hover .news-thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.news-box-items:hover .news-thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-box-items-2 {
    margin-top: 30px;
}

.news-box-items-2 .news-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.news-box-items-2 .news-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-box-items-2 .news-thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-box-items-2 .content {
    margin-top: 20px;
}

.news-box-items-2 .content ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1600px) {
    .news-box-items-2 .content ul {
        gap: 20px;
    }
}

@media (max-width: 1399px) {
    .news-box-items-2 .content ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.news-box-items-2 .content ul li i {
    margin-right: 6px;
    color: rgb(0, 13, 68);
}

.news-box-items-2 .content h3 {
    margin-top: 7px;
    font-size: 30px;
}

@media (max-width: 1399px) {
    .news-box-items-2 .content h3 {
        font-size: 20px;
    }
}

.news-box-items-2 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-box-items-2 .content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-box-items-2 .content .link-btn {
    color: var(--header);
    margin-top: 20px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.news-box-items-2 .content .link-btn i {
    margin-left: 7px;
}

.news-box-items-2 .content .link-btn:hover {
    color: var(--theme);
}

.news-box-items-2:hover .news-thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.news-box-items-2:hover .news-thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-box-items-2.style-2 .content h3 {
    font-size: 24px;
}

@media (max-width: 1399px) {
    .news-box-items-2.style-2 .content h3 {
        font-size: 18px;
    }
}

.news-left-content-inner .news-items {
    margin-bottom: 30px;
    background-color: rgb(245, 248, 253);
    padding: 20px;
    border-radius: 30px;
}

.news-left-content-inner .news-items .news-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.news-left-content-inner .news-items .news-content {
    margin-top: 25px;
}

.news-left-content-inner .news-items .news-content ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

@media (max-width: 1199px) {
    .news-left-content-inner .news-items .news-content ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-left-content-inner .news-items .news-content ul li i {
    color: var(--theme);
    margin-right: 6px;
}

.news-left-content-inner .news-items .news-content h3 {
    margin-top: 8px;
    font-size: 36px;
}

@media (max-width: 1199px) {
    .news-left-content-inner .news-items .news-content h3 {
        font-size: 29px;
    }
}

@media (max-width: 767px) {
    .news-left-content-inner .news-items .news-content h3 {
        font-size: 27px;
    }
}

@media (max-width: 575px) {
    .news-left-content-inner .news-items .news-content h3 {
        font-size: 25px;
    }
}

.news-left-content-inner .news-items .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-left-content-inner .news-items .news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-left-content-inner .news-items .news-content p {
    margin-top: 10px;
}

.news-left-content-inner .news-items .news-content .theme-btn {
    margin-top: 30px;
}

.main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: rgb(245, 248, 253);
    margin-bottom: 30px;
    border-radius: 30px;
}

@media (max-width: 575px) {
    .main-sidebar .single-sidebar-widget {
        padding: 28px;
    }
}

.main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .main-sidebar .single-sidebar-widget .wid-title h3 {
        font-size: 20px;
    }
}

.main-sidebar .single-sidebar-widget .wid-title h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    content: "";
    background-color: var(--header);
}

.main-sidebar .single-sidebar-widget .wid-title h3::before {
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 63px;
    height: 2px;
    content: "";
    background-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .search-widget form {
    width: 100%;
    position: relative;
}

.main-sidebar .single-sidebar-widget .search-widget form input {
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding: 20px;
    width: 100%;
    border: none;
    color: var(--text);
    border-radius: 30px;
}

.main-sidebar .single-sidebar-widget .search-widget form button {
    position: absolute;
    right: 9px;
    top: 9px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
}

.main-sidebar .single-sidebar-widget .search-widget form button:hover {
    background-color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background-color: var(--white);
    font-weight: 400;
    transition: all 0.4s ease-in-out;
    border-radius: 30px;
    font-size: 16px;
    line-height: 1;
    border: 1px solid rgb(216, 221, 225);
}

@media (max-width: 575px) {
    .main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
        font-size: 14px;
        padding: 20px 22px;
    }
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a .arrow {
    transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a .arrow i {
    color: var(--theme);
    transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
    margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
    background-color: var(--theme);
    color: var(--white);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a .arrow i {
    color: var(--white);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
    margin-bottom: 20px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
    margin-bottom: 8px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
    font: 16px;
    font-weight: 400;
    color: rgb(120, 128, 148);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
    font-size: 20px;
    font-weight: 600;
    max-width: 214px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
    color: var(--theme);
}

.main-sidebar .single-sidebar-widget .tagcloud a {
    display: inline-block;
    padding: 11px 20px;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    background: var(--white);
    margin-right: 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    color: var(--text);
    border-radius: 20px;
}

.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
    margin-right: 0;
}

.main-sidebar .single-sidebar-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.blog-post-details .single-blog-post .post-featured-thumb {
    height: 460px;
    border-radius: 30px;
}

.blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
}

.blog-post-details .single-blog-post .post-content ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

@media (max-width: 1199px) {
    .blog-post-details .single-blog-post .post-content ul {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.blog-post-details .single-blog-post .post-content ul li i {
    color: var(--theme);
    margin-right: 6px;
}

.blog-post-details .single-blog-post .post-content h3 {
    margin-bottom: 20px;
    margin-top: 15px;
    font-size: 30px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .blog-post-details .single-blog-post .post-content h3 {
        font-size: 24px;
    }
}

.blog-post-details .single-blog-post .post-content h3 a:hover {
    color: var(--theme);
}

.blog-post-details .single-blog-post .post-content p {
    font-weight: 400;
}

.blog-post-details .single-blog-post .post-content .hilight-text {
    border-left: 4px solid var(--theme);
    padding: 40px;
    background-color: rgb(245, 248, 253);
    border-radius: 10px;
}

@media (max-width: 767px) {
    .blog-post-details .single-blog-post .post-content .hilight-text {
        padding: 28px;
    }
}

.blog-post-details .single-blog-post .post-content .hilight-text p {
    font-weight: 600;
    text-transform: capitalize;
    font-style: italic;
    line-height: 26px;
    color: var(--header);
    font-size: 18px;
    max-width: 700px;
}

.blog-post-details .single-blog-post .post-content .hilight-text svg {
    float: right;
    margin-top: -30px;
}

@media (max-width: 1199px) {
    .blog-post-details .single-blog-post .post-content .hilight-text svg {
        display: none;
    }
}

.blog-post-details .single-blog-post .post-content .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.blog-post-details .tag-share-wrap {
    border-top: 1px solid rgb(216, 221, 225);
    border-bottom: 1px solid rgb(216, 221, 225);
    padding: 30px 0;
}

.blog-post-details .tag-share-wrap .tagcloud span {
    display: inline-block;
    font-weight: 600;
    color: var(--header);
    margin-right: 15px;
}

.blog-post-details .tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 26px;
    line-height: 1;
    background: transparent;
    border: 1px solid rgb(216, 221, 225);
    border-radius: 30px;
    margin-right: 8px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .blog-post-details .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}

.blog-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.blog-post-details .tag-share-wrap .social-share span {
    font-size: 16px;
    color: var(--header);
    font-weight: 600;
}

.blog-post-details .tag-share-wrap .social-share a {
    font-size: 16px;
    color: var(--header);
}

.blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
}

.blog-post-details .tag-share-wrap .social-share a:hover {
    color: var(--theme);
}

.blog-post-details .comments-area {
    margin-top: 40px;
}

.blog-post-details .comments-area .comments-heading {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .blog-post-details .comments-area .comments-heading {
        margin-bottom: 20px;
    }
}

.blog-post-details .comments-area .comments-heading h3 {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .blog-post-details .comments-area .comments-heading h3 {
        font-size: 22px;
    }
}

.blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid #F2F5FA;
}

@media (max-width: 575px) {
    .blog-post-details .comments-area .blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.blog-post-details .comments-area .blog-single-comment .content .head {
    margin-bottom: 10px;
}

.blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}

.blog-post-details .comments-area .blog-single-comment .content .head .star i {
    color: var(--theme);
    font-size: 14px;
}

.blog-post-details .comments-area .blog-single-comment .content .reply {
    padding: 5px 15px;
    font-weight: 400;
    background-color: var(--theme);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    border-radius: 6px;
}

.blog-post-details .comments-area .blog-single-comment .content .reply:hover {
    background-color: var(--header);
}

.blog-post-details .comments-area .blog-single-comment .content .reply.color-2 {
    background-color: var(--header);
}

.blog-post-details .comments-area .blog-single-comment .content .reply.color-2:hover {
    background-color: var(--theme);
}

.blog-post-details .comment-form-wrap h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .blog-post-details .comment-form-wrap h3 {
        margin-bottom: 20px;
    }
}

.blog-post-details .comment-form-wrap .form-clt span {
    color: var(--header);
    display: inline-block;
    margin-bottom: 10px;
}

.blog-post-details .comment-form-wrap .form-clt input, .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border: 1px solid rgb(216, 221, 225);
    padding: 16px 20px;
    font-weight: 500;
    color: var(--text);
    border-radius: 100px;
}

.blog-post-details .comment-form-wrap .form-clt input::placeholder, .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
    color: var(--text);
}

.blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
    border-radius: 30px;
}

.blog-post-details .comment-form-wrap .theme-btn {
    width: 100%;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: var(--white);
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader .spinner-wrap {
    width: 180px;
    height: 180px;
    position: relative;
}

.preloader .spinner-wrap .preloader-logo {
    width: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader .spinner-wrap .spinner {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid var(--bg);
    border-top: 3px solid var(--theme);
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: spin 2s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.back-to-top {
    border-radius: 10px;
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 999;
    right: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top:hover {
    background-color: var(--header);
    color: var(--white);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

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

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

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

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

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

.cursor-inner {
    -webkit-margin-start: -3px;
    margin-inline-start: -3px; margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--theme);
    opacity: 1;
    -webkit-transition: all 0.24s ease-out 0s;
    transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
    color: var(--text);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

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

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

.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.8s ease-in-out;
    -khtml-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -ms-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    background-color: #000000;
    opacity: 0.7;
    cursor: url(../img/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}

.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.search-popup__form {
    position: relative;
}

.search-popup__form input[type=search], .search-popup__form input[type=text] {
    width: 100%;
    height: 66px;
    border: none;
    outline: none;
    padding-left: 20px;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus, .search-popup__form input[type=text]:focus {
    color: var(--header);
}

.search-popup__form .search-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    font-size: 20px;
    color: var(--white);
    background-color: var(--theme);
    transition: all 0.4s ease-in-out;
}

.search-popup__form .search-btn:hover {
    background-color: var(--header);
}

.search-popup__form .eolexi-btn svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.search-popup.active {
    z-index: 999999;
}

.search-popup.active .search-popup__overlay {
    top: auto;
    bottom: calc(90px - 112vw);
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    opacity: 0.7;
    -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}

.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

.pricing-box-items {
    margin-top: 30px;
    border: 1px solid rgb(216, 221, 225);
    background-color: var(--white);
    padding: 0 0 25px;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.pricing-box-items span {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 600;
    color: var(--header);
}

.pricing-box-items .pricing-header {
    border-bottom: 1px solid rgb(216, 221, 225);
    padding-bottom: 25px;
}

.pricing-box-items .pricing-header p {
    margin-top: 5px;
}

.pricing-box-items .pricing-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 15px;
}

@media (max-width: 1199px) {
    .pricing-box-items .pricing-header h2 {
        font-size: 46px;
    }
}

.pricing-box-items .pricing-header h2 sub {
    font-size: 16px;
    font-weight: 500;
    margin-left: -5px;
}

.pricing-box-items h4 {
    font-size: 16px;
    font-weight: 800;
    margin-top: 25px;
}

.pricing-box-items .pricing-list {
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-list li {
    transition: all 0.4s ease-in-out;
    color: rgb(0, 13, 68);
}

.pricing-box-items .pricing-list li.style-2 {
    color: rgb(120, 128, 148);
}

.pricing-box-items .pricing-list li i {
    color: var(--theme);
    margin-right: 10px;
    transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-list li i.color-2 {
    color: rgb(120, 128, 148);
}

.pricing-box-items .pricing-list li:not(:last-child) {
    margin-bottom: 15px;
}

.pricing-box-items .theme-btn {
    background-color: transparent;
    border: 1px solid rgb(216, 221, 225);
    width: auto;
    color: var(--header);
    margin-top: 13px;
    padding: 13px 22px;
}

@media (max-width: 1199px) {
    .pricing-box-items .theme-btn {
        padding: 18px 22px;
    }
}

.pricing-box-items .theme-btn i {
    color: var(--header);
}

.pricing-box-items .theme-btn::before {
    background-color: var(--theme);
}

.pricing-box-items .theme-btn:hover {
    color: var(--white);
}

.pricing-box-items .theme-btn:hover i {
    color: var(--white);
}

.pricing-box-items.style-2 {
    border: none;
}

.pricing-box-items.style-2 img {
    border: none;
    width: 100%;
    margin: 0 0 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.pricing-box-items.style-2 span {
    background-color: var(--theme);
    color: var(--white);
    padding: 10px 12px;
    line-height: 1;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.pricing-box-items.style-2 .pricing-header {
    border-bottom: none;
    padding-bottom: 0;
    "Sora", font-family: sans-serif;
    "Sora", font-family: sans-serif;
    padding: 0 25px;
}

.pricing-box-items.style-2 p {
    padding: 0 25px;
}

.pricing-box-items.style-2 .pricing-header h3 {
    font-weight: 400;
}

.pricing-box-items.style-2 .pricing-header h2 {
    border-top: 1px solid rgb(216, 221, 225);
    padding-top: 25px;
    margin-top: 20px;
}

.pricing-box-items.style-2 .theme-btn {
    background-color: var(--header);
    color: var(--white);
}

.pricing-box-items.style-2 .theme-btn i {
    color: var(--white);
}

.pricing-box-items.style-2 .theme-btn.color-2 {
    background-color: var(--theme);
}

.pricing-box-items.style-2 .theme-btn.color-2::before {
    background-color: var(--header);
}

.pricing-box-items.active .theme-btn {
    color: var(--white);
    background-color: var(--theme);
}

.pricing-box-items.active .theme-btn i {
    color: var(--white);
}

.pricing-box-items.active .theme-btn::before {
    background-color: var(--header);
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}

.section-title .sub-title {
    font-size: 19px;
    font-weight: 400;
    color: var(--theme);
    margin-bottom: 15px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.section-title .sub-title .line-1 {
    padding-right: 40px;
    position: relative;
}

.section-title .sub-title .line-1::before {
    position: absolute;
    bottom: 5px;
    left: 0;
    content: "";
    width: 30px;
    height: 1px;
    background-color: var(--theme);
}

.section-title .sub-title .line-1::after {
    position: absolute;
    bottom: 10px;
    left: 0;
    content: "";
    width: 20px;
    height: 1px;
    background-color: #7546FF;
}

.section-title .sub-title .line-2 {
    padding-left: 40px;
    position: relative;
}

.section-title .sub-title .line-2::before {
    position: absolute;
    bottom: 5px;
    right: 0;
    content: "";
    width: 30px;
    height: 1px;
    background-color: var(--theme);
}

.section-title .sub-title .line-2::after {
    position: absolute;
    bottom: 10px;
    left: 10px;
    content: "";
    width: 20px;
    height: 1px;
    background-color: #7546FF;
}

@media (max-width: 1399px) {
    .section-title .sub-title {
        font-size: 17px;
    }
}

@media (max-width: 1199px) {
    .section-title .sub-title {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .section-title .sub-title {
        font-size: 16px;
    }
}

@media (max-width: 470px) {
    .section-title .sub-title {
        font-size: 14px;
    }
}

.section-title h2 {
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}

.section-title-area .section-title {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .section-title-area {
        margin-bottom: 0;
    }
}

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

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

.section-padding {
    padding: 120px 0;
}

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

@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .footer-wrappper {
        padding: 50px 0 50px;
    }
}

.service-section {
    padding-left: 95px;
    padding-right: 95px;
}

@media (max-width: 1899px) {
    .service-section {
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media (max-width: 1600px) {
    .service-section {
        padding-left: 36px;
        padding-right: 36px;
    }
}

@media (max-width: 1399px) {
    .service-section {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 1199px) {
    .service-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.service-section .nav {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .service-section .nav {
        margin-bottom: 30px;
    }
}

.service-section .nav .nav-item .nav-link {
    display: inline-block;
    padding: 20px 30px;
    line-height: 1;
    background-color: var(--white);
    border-radius: 10px;
    color: #000D44;
    font-size: 20px;
    font-weight: 600;
}

.service-section .nav .nav-item .nav-link.active {
    background-color: var(--theme);
    color: var(--white);
}

.service-box-items {
    background-color: var(--white);
    padding: 30px;
    border-radius: 30px;
    margin-top: 30px;
}

@media (max-width: 1600px) {
    .service-box-items {
        padding: 26px;
    }
}

.service-box-items .service-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-box-items .service-thumb img {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-box-items .service-thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-box-items .service-thumb .date-item {
    font-size: 14px;
    font-weight: 400;
    background-color: var(--white);
    padding: 10px 22px;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 50px;
    line-height: 1;
    color: var(--header);
    z-index: 9;
}

.service-box-items .service-thumb .date-item i {
    margin-right: 6px;
    color: var(--theme);
}

.service-box-items .service-content {
    margin-top: 25px;
}

@media (max-width: 767px) {
    .service-box-items .service-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .service-box-items .service-content h3 {
        font-size: 20px;
    }
}

.service-box-items .service-content h3 a:hover {
    color: var(--theme);
}

.service-box-items .service-content ul {
    margin-top: 15px;
}

.service-box-items .service-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-box-items .service-content ul li .content p {
    font-weight: 500;
    color: var(--header);
}

.service-box-items .service-content ul li .content p span {
    color: var(--text);
}

.service-box-items .service-content ul li:not(:last-child) {
    margin-bottom: 8px;
}

.service-box-items .service-content .service-bottom-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .service-box-items .service-content .service-bottom-area {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 1899px) {
    .service-box-items .service-content .service-bottom-area .client-img img {
        width: 120px;
    }
}

.service-box-items .service-content .service-bottom-area .events-btn {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-box-items .service-content .service-bottom-area .events-btn .icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: #F8F8F8;
}

.service-box-items .service-content .service-bottom-area .events-btn .text {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

.service-box-items .service-content .service-bottom-area .events-btn:hover .icon {
    background-color: var(--theme);
    color: var(--white);
}

.service-box-items .service-content .service-bottom-area .events-btn:hover .text {
    color: var(--theme);
}

.service-box-items:hover .service-thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.service-box-items:hover .service-thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-wraper {
    margin-top: 60px;
}

.team-wraper .team-left-content {
    background: #F5F7FA;
    border-radius: 30px 30px 150px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
}

@media (max-width: 767px) {
    .team-wraper .team-left-content {
        border-radius: 30px;
    }
}

@media (max-width: 575px) {
    .team-wraper .team-left-content {
        flex-wrap: wrap;
    }
}

.team-wraper .team-left-content .team-image {
    position: relative;
    z-index: 99;
    overflow: hidden;
}

.team-wraper .team-left-content .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-wraper .team-left-content .team-image img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-wraper .team-left-content .team-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border: 1px solid var(--theme);
    border-radius: 20px;
    top: 13px;
    left: 7px;
    z-index: 1;
    width: 250px;
    height: 272px;
    z-index: 11;
}

.team-wraper .team-left-content .team-content h3 {
    font-size: 24px;
}

.team-wraper .team-left-content .team-content h3 a:hover {
    color: var(--theme);
}

.team-wraper .team-left-content .team-content p {
    color: var(--theme);
    margin-top: 5px;
}

.team-wraper .team-left-content .team-content .line {
    width: 75px;
    height: 1px;
    background-color: var(--theme);
    margin-top: 13px;
    margin-bottom: 15px;
}

.team-wraper .team-left-content .team-content .call-number {
    color: #788094;
}

.team-wraper .team-left-content .team-content .call-number:hover {
    color: var(--theme);
}

.team-wraper .team-left-content .team-content .social-icon {
    gap: 7px;
    margin-top: 20px;
}

.team-wraper .team-left-content .team-content .social-icon a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #7546FF;
    color: var(--white);
}

.team-wraper .team-left-content .team-content .social-icon a:hover {
    background-color: var(--header);
}

.team-wraper .team-left-content .team-content .social-icon a.color-2 {
    background-color: var(--theme);
}

.team-wraper .team-left-content .team-content .social-icon a.color-2:hover {
    background-color: var(--header);
}

.team-wraper .team-left-content:hover .team-image img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.team-wraper .team-left-content:hover .team-image img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-wraper .team-right-items .team-thumb-box {
    position: relative;
    height: 358px;
    overflow: hidden;
    border-radius: 30px;
}

.team-wraper .team-right-items .team-thumb-box img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-wraper .team-right-items .team-thumb-box img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-wraper .team-right-items .team-thumb-box .team-icon {
    gap: 10px;
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    right: 20px;
    z-index: 9;
}

.team-wraper .team-right-items .team-thumb-box .team-icon li {
    transform: scaleX(0);
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

.team-wraper .team-right-items .team-thumb-box .team-icon li a {
    background-color: var(--theme);
    width: 37px;
    height: 37px;
    line-height: 37px;
    display: inline-block;
    color: var(--white);
    text-align: center;
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
}

.team-wraper .team-right-items .team-thumb-box .team-icon li a:hover {
    background-color: var(--header);
}

.team-wraper .team-right-items .team-thumb-box .content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    line-height: 1;
    background-color: var(--white);
    padding: 15px 39px;
    border-radius: 25px;
    z-index: 99;
    text-align: center;
}

@media (max-width: 1399px) {
    .team-wraper .team-right-items .team-thumb-box .content {
        padding: 15px 30px;
        left: 20px;
        right: 20px;
    }
}

.team-wraper .team-right-items .team-thumb-box .content h3 {
    font-size: 22px;
}

.team-wraper .team-right-items .team-thumb-box .content h3 a:hover {
    color: var(--theme);
}

.team-wraper .team-right-items .team-thumb-box:hover .team-icon li {
    transform: scaleX(1);
}

.team-wraper .team-right-items .team-thumb-box:hover img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.team-wraper .team-right-items .team-thumb-box:hover img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-box-items-3 {
    text-align: center;
}

.team-box-items-3 .thumb {
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.team-box-items-3 .thumb .social-icon {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    position: absolute;
    bottom: 40px;
    transform: scale(0.8);
    left: 0;
    right: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.team-box-items-3 .thumb .social-icon a {
    color: var(--white);
    transition: all 0.3s ease;
}

.team-box-items-3 .thumb .social-icon a:hover {
    color: var(--theme);
}

.team-box-items-3 .thumb::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(70, 42, 153, 0) 0%, rgba(101, 60, 220, 0.658022) 65.8%, rgba(109, 65, 237, 0.824115) 82.41%, #7546FF 100%);
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.team-box-items-3 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-box-items-3 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-box-items-3 .content {
    margin-top: 20px;
}

.team-box-items-3 .content h3 {
    font-size: 24px;
    font-weight: 600;
}

.team-box-items-3 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.team-box-items-3 .content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.team-box-items-3:hover .thumb::before {
    opacity: 1;
    visibility: visible;
}

.team-box-items-3:hover .thumb .social-icon {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.team-box-items-3:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.team-box-items-3:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-box-items-3.style-2 {
    margin-top: 30px;
}

.team-details-wrapper {
    background: #F5F8FD;
    border-radius: 50px;
    padding: 60px;
}

@media (max-width: 1199px) {
    .team-details-wrapper {
        padding: 35px;
    }
}

@media (max-width: 991px) {
    .team-details-wrapper {
        padding: 32px;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper {
        padding: 28px;
    }
}

.team-details-wrapper .team-details-image {
    border-radius: 20px;
    width: 500px;
}

@media (max-width: 1399px) {
    .team-details-wrapper .team-details-image {
        width: initial;
    }
}

.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.team-details-wrapper .team-details-content {
    margin-left: 65px;
}

@media (max-width: 1399px) {
    .team-details-wrapper .team-details-content {
        margin-left: 0;
    }
}

.team-details-wrapper .team-details-content .details-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .details-head {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.team-details-wrapper .team-details-content .details-head .content h3 {
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .details-head .content h3 {
        font-size: 29px;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper .team-details-content .details-head .content h3 {
        font-size: 27px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-details-content .details-head .content h3 {
        font-size: 25px;
    }
}

.team-details-wrapper .team-details-content .details-head .content span {
    color: var(--theme);
    font-size: 14px;
    font-weight: 500;
}

.team-details-wrapper .team-details-content .details-head .social-icon {
    display: flex;
    align-items: center;
    gap: 6px;
}

.team-details-wrapper .team-details-content .details-head .social-icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #D8DDE1;
    color: var(--header);
}

.team-details-wrapper .team-details-content .details-head .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.team-details-wrapper .team-details-content .details-contact-info {
    border: 1px solid #D8DDE1;
    border-radius: 30px;
    padding: 27px 30px;
    margin-top: 20px;
    position: relative;
    margin-bottom: 30px;
}

.team-details-wrapper .team-details-content .details-contact-info::before {
    position: absolute;
    top: 0;
    left: 51%;
    transform: translateX(-50%);
    content: "";
    width: 1px;
    height: 100%;
    background: #D8DDE1;
}

@media (max-width: 1399px) {
    .team-details-wrapper .team-details-content .details-contact-info::before {
        display: none;
    }
}

.team-details-wrapper .team-details-content .details-contact-info::after {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    content: "";
    width: 100%;
    height: 1px;
    background: #D8DDE1;
}

@media (max-width: 1399px) {
    .team-details-wrapper .team-details-content .details-contact-info::after {
        display: none;
    }
}

.team-details-wrapper .team-details-content .details-contact-info ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-details-wrapper .team-details-content .details-contact-info ul li:not(:last-child) {
    margin-bottom: 60px;
}

@media (max-width: 1399px) {
    .team-details-wrapper .team-details-content .details-contact-info ul li:not(:last-child) {
        margin-bottom: 20px;
    }
}

.team-details-wrapper .team-details-content .details-contact-info ul li .icon {
    max-width: 50px;
    width: 100%;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
}

.team-details-wrapper .team-details-content .details-contact-info ul li .content span {
    font-weight: 500;
}

.team-details-wrapper .team-details-content .details-contact-info ul li .content h4 {
    font-size: 18px;
    font-weight: 500;
}

.team-details-wrapper .team-details-content .details-contact-info ul li .content h4 a {
    color: var(--header);
}

.personal-skills-items {
    margin-top: 60px;
}

.personal-skills-items h3 {
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .personal-skills-items h3 {
        font-size: 29px;
    }
}

@media (max-width: 767px) {
    .personal-skills-items h3 {
        font-size: 27px;
    }
}

@media (max-width: 575px) {
    .personal-skills-items h3 {
        font-size: 25px;
    }
}

.personal-skills-items .skill-feature-items {
    margin-top: 20px;
}

.personal-skills-items .skill-feature-items .skill-feature:not(:last-child) {
    margin-bottom: 20px;
}

.personal-skills-items .skill-feature-items .skill-feature .box-title {
    font-size: 16px;
    font-weight: 500;
}

.personal-skills-items .skill-feature-items .skill-feature .progress-value {
    margin-bottom: 10px;
    color: var(--header);
    text-transform: capitalize;
}

.personal-skills-items .skill-feature-items .skill-feature .progress {
    position: relative;
    height: 10px;
    background-color: #F5F8FD;
    border-radius: 10px;
    overflow: visible;
    margin-top: 15px;
}

.personal-skills-items .skill-feature-items .skill-feature .progress-bar {
    background-color: var(--theme);
    height: 10px;
    margin: 0;
    border-radius: inherit;
    overflow: visible;
    position: relative;
    margin-top: 0;
    border-radius: 10px;
}

.personal-skills-items .skill-feature-items .skill-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--theme);
}

.gallery-card-item-inner .gallery-image {
    position: relative;
}

.gallery-card-item-inner .gallery-image img {
    width: 100%;
    height: 100%;
}

.gallery-card-item-inner .gallery-image::before {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: scale(0.7);
    content: "";
    position: absolute;
    background: linear-gradient(99.96deg, rgba(108, 32, 123, 0.87) 0.93%, rgba(227, 38, 130, 0.87) 100%);
    z-index: 1;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.gallery-card-item-inner .gallery-image .icon {
    position: absolute;
    font-size: 38px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    color: var(--white);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.gallery-card-item-inner:hover .gallery-image::before {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.gallery-card-item-inner:hover .gallery-image .icon {
    opacity: 1;
}

.gallery-thumb-2 {
    position: relative;
    border-radius: 30px;
}

.gallery-thumb-2 img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.gallery-thumb-2::before {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: scale(0.7);
    content: "";
    position: absolute;
    background: linear-gradient(99.96deg, rgba(108, 32, 123, 0.87) 0.93%, rgba(227, 38, 130, 0.87) 100%);
    z-index: 1;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    border-radius: 30px;
}

.gallery-thumb-2 .icon {
    position: absolute;
    font-size: 38px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    color: var(--white);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.gallery-thumb-2:hover::before {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.gallery-thumb-2:hover .icon {
    opacity: 1;
}

.testimonial-wrapper-2 {
    position: relative;
    z-index: 8;
}

.welcomeimg {
    border-top-left-radius: 140px;
    border-bottom-left-radius: 140px;
    border-bottom-right-radius: 140px;
}

.logo img {
    width: 210px;
}

.logo img.logo-dark {
    display: none;
}

.sticky .logo img {
    display: none;
}

.sticky .logo img.logo-dark {
    display: block;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 {
        padding-top: 0 !important;
    }
}

.testimonial-wrapper-2 .testi-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 .section-title {
        margin: 0 30px;
    }
}

.testimonial-wrapper-2 .testimonial-left-thumb {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

@media (max-width: 1899px) {
    .testimonial-wrapper-2 .testimonial-left-thumb {
        max-width: 900px;
    }
}

@media (max-width: 1600px) {
    .testimonial-wrapper-2 .testimonial-left-thumb {
        max-width: 700px;
    }
}

@media (max-width: 1399px) {
    .testimonial-wrapper-2 .testimonial-left-thumb {
        max-width: 600px;
    }
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 .testimonial-left-thumb {
        position: static;
        max-width: initial;
        height: 500px;
    }
}

.testimonial-wrapper-2 .testimonial-left-thumb img {
    border-radius: 0px 376px 0px 0px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1600px) {
    .testimonial-wrapper-2 .testimonial-left-thumb img {
        border-radius: 0px 230px 0px 0px;
    }
}

@media (max-width: 1399px) {
    .testimonial-wrapper-2 .testimonial-left-thumb img {
        border-radius: 0;
    }
}

.testimonial-wrapper-2 .testimonial-right-content {
    margin-left: -130px;
    margin-right: -80px;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 .testimonial-right-content {
        margin: 0 30px;
    }
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 {
    background-color: var(--white);
    padding: 30px;
    border-radius: 30px;
    margin-top: 60px;
}

@media (max-width: 767px) {
    .testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 {
        margin-top: 30px;
    }
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .top-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .top-area .star {
    color: var(--theme);
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 h5 {
    margin-top: 25px;
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.client-info img {
    border-radius: 50%;
    width: 70px;
}

.testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .client-info .content h4 {
    font-size: 22px;
}

.mega-menu-wrapper {
    padding: 5px 10px;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 .testimonial-right-content .testimonial-box-items-2 .client-info .content h4 {
        font-size: 20px;
    }
}

/* Main slider */
.main-slider .swiper-pagination {
    text-align: right;
    right: 20px;
    left: auto;
    bottom: 20px;
}

.main-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.6;
    border-radius: 50%;
    margin: 0 4px !important;
    transition: all 0.3s ease;
}

.main-slider .swiper-pagination-bullet-active {
    width: 22px;
    height: 8px;
    border-radius: 20px;
    opacity: 1;
}

/* Main slider */
.fashion-swiper-wrapper {
    padding: 0px 60px 0px 60px;
}

/* Navigation Buttons */
.fashion-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 40px;
}

.fashion-swiper-prev {
    left: 0;
}

.fashion-swiper-next {
    right: 0;
}

/* Swiper spacing */
.fashionSwiper {
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

/* Optional: improve card height consistency */
.pricing-box-items {
    height: 100%;
}

/* Mobile */
@media (max-width: 767px) {
    .fashion-swiper-wrapper {
        padding: 0px 20px;
    }
}

.contact-top-items {
    display: flex;
    justify-content: flex-end;
    gap: 140px;
}

.contact-new-bx {
    display: flex;
    flex-direction: column;
    color: #ec3f97;
}

.contact-new-bx a {
    color: #FFF;
}
.footer-top-area-container
{
    border-bottom: 1px solid #253168;
    padding: 0 0 43px;
    margin: 0 0 26px;
}
.footer-logo img
{
    width: 220px;
}


.footer-contact-strip {
    /* background: #1b2a65; */ /* Adjust to your footer blue */
    /* padding: 40px 30px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    margin: 60px 0 0;
}

.footer-contact-left h5,
.footer-contact-right h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 600px;
}

.address-item i {
    font-size: 18px;
    margin-top: 5px;
    color: #ffffff;
}

.address-item p {
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
    color: #e6e6e6;
}

.footer-contact-right {
}

.footer-contact-right .social-icon {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
}

.footer-contact-right .social-icon a {
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s ease;
}

.footer-contact-right .social-icon a:hover {
    opacity: 0.7;
}


/* =========================
   Welcome Section Style
========================= */

.welcome-section {
    position: relative;
    padding: 120px 0;
    background: url("../img/welcomebg.png") no-repeat right bottom;
    background-size: 390px;
}


/* =========================
   Clean Grid Image Layout
========================= */

.welcome-images {
    position: relative;
}

/* Top row */
.welcome-images .top-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.welcome-images .img-box {
    flex: 1;
}

.welcome-images .img-box img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* Bottom row */
.welcome-images .bottom-row {
    position: relative;
    display: flex;
    align-items: center;
}

/* Icon box */
.welcome-images .icon-box {
    width: 80px;
    height: 80px;
    background: #d8f1d2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.welcome-images .icon-box i {
    font-size: 28px;
    color: #2e9b36;
}

/* Bottom wide image */
.welcome-images .bottom-img {
    flex: 1;
}

.welcome-images .bottom-img img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* Dotted pattern */
.welcome-images .dots-shape {
    position: absolute;
    right: -40px;
    bottom: 40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#9fbfff 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.5;
}

.welcome-content
{
    
}

.welcome-content h2
{
    margin: 0 0 20px;
}
.welcome-content p
{
    margin: 0 0 20px;
}
.floatingwhatsapp {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999;
    color: #FFF;
    background: #4dc247;
    font-size: 26px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    -webkit-box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
    -moz-box-shadow: -8px 9px 5px -7px rgba(0, 0, 0, 0.24);
    box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
}

.floatingwhatsapp:hover {
    color: #FFF;
}




/* =========================
   Accreditation Clean Grid
========================= */

.accreditation-wrapper {
    padding: 80px 0 40px;
}

.accreditation-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.accreditation-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
}

/* 3 + 3 layout */
.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
    justify-items: center;
    align-items: center;
}
.accreditation-item
{
    background: #FFF;
    padding: 15px;
    border-radius: 10px;
}
.accreditation-item img {
    max-height: 99px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Optional subtle hover */
.accreditation-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .accreditation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .accreditation-grid {
        grid-template-columns: 1fr;
    }

    .accreditation-title {
        font-size: 26px;
    }
}


/* Responsive */
@media (max-width: 991px) {

    .welcome-images .top-row {
        flex-direction: column;
    }

    .welcome-images .bottom-row {
        flex-direction: column;
        gap: 20px;
    }

    .welcome-images .icon-box {
        margin-right: 0;
    }

    .welcome-images .dots-shape {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-contact-strip {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-contact-right {
        text-align: center;
    }

    .footer-contact-right .social-icon {
        justify-content: center;
    }

    .address-item {
        justify-content: center;
        text-align: left;
    }
}



@media (max-width: 992px) {
    .header-main {
        padding: 0px 0;
    }

    .logo img {
        width: 180px;
    }
    .welcome-section {
    padding: 50px 0;
}
.contact-top-items {
    gap: 10px;
    flex-direction: column;
    margin-top: 30px;
}
}

.about-modern-section {
    padding: 100px 0;
    background: #f9f9fb;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.about-main-img:hover {
    transform: scale(1.05);
}

.image-accent-box {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #e9d8ff;
    bottom: -20px;
    right: -20px;
    border-radius: 20px;
    z-index: 1;
}

.section-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--theme);
    text-transform: uppercase;
}

.about-title {
    font-size: 34px;
    font-weight: 700;
    margin: 15px 0;
}

.about-title span {
    color: var(--theme);
}

.about-description {
    font-size: 18px;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 23px 23px 33px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card i {
    font-size: 33px;
    color: var(--theme);
    margin-bottom: 10px;
}
.feature-card h5 {
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0px 10px;
}
.feature-card p {
    font-size: 15px;
    line-height: 23px;
}

.modern-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #9c6bff;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.modern-btn:hover {
    background: #7b4df0;
}


   Careers Section
================================ */

.rdcontainer-s1 {
    padding: 80px 0;
}

.bg-gray {
    background: #f8f9fa;
}

.text-row h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.text-row p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}


/* ===============================
   Career Card
================================ */

.career-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
}

.career-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.career-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.career-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}


/* ===============================
   Apply Button
================================ */

.btn-s1 {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #5f2eea, #2c5bff);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-s1:hover {
    background: linear-gradient(135deg, #2c5bff, #5f2eea);
    color: #fff;
}
/* =========================
   Careers Modern Section
========================= */

.careers-modern-section {
    padding: 100px 0;
    background: #f9f9fc;
}

/* Intro */

.careers-intro {
    max-width: 850px;
    margin: 0 auto;
}

.careers-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 10px;
}

.title-divider {
    width: 70px;
    height: 4px;
    background: var(--theme);
    margin: 15px auto 25px;
    border-radius: 4px;
}

.careers-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
}

.careers-email {
    display: inline-block;
    padding: 15px 25px;
    background: #f4e6ee;
    border-radius: 10px;
}

.careers-email span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.careers-email a {
    font-weight: 600;
    font-size: 18px;
    color: var(--theme);
    text-decoration: none;
    transition: 0.3s ease;
}

.careers-email a:hover {
    color: var(--header);
}

/* Career Cards */

.career-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--theme);
}

.career-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 15px;
}

.career-content {
    flex-grow: 1;
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

/* Apply Button */

.career-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--theme);
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.career-btn:hover {
    background: var(--header);
}

/* No Vacancy Box */

.no-vacancy-box {
    padding: 20px 30px;
    background: var(--bg);
    color: #ffffff;
    border-radius: 30px;
    display: inline-block;
    font-size: 14px;
}

/* Responsive */

@media (max-width: 768px) {
    .careers-title {
        font-size: 28px;
    }

    .career-card {
        padding: 25px;
    }
}


/* =========================
   Courses Section Styling
========================= */

.courses-section {
    background: #f9f9fc;
    padding: 100px 0;
}

/* Card Container */
.news-box-items {
    background: #ffffff;
    border-radius: 33px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hover Effect */
.news-box-items:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--theme);
}

/* Image Area */
.news-thumb {
    position: relative;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    display: block;
    transition: 0.6s ease;
}

.news-box-items:hover .news-thumb img {
    transform: scale(1.08);
}

/* Duration Badge */
.post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--theme);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.post-date h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.post-date p {
    font-size: 12px;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Content Area */
.news-content {
    padding: 5px 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Category Text */
.news-content > p {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Title */
.news-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-content h3 a {
    color: var(--header);
    text-decoration: none;
    transition: 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--theme);
}

/* Link Button */
.link-btn {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--header);
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-btn i {
    transition: 0.3s ease;
}

.link-btn:hover {
    color: var(--theme);
}

.link-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {

    .news-content {
        padding: 20px;
    }

    .news-content h3 {
        font-size: 18px;
    }

    .post-date {
        padding: 10px 14px;
    }

    .post-date h4 {
        font-size: 18px;
    }
}


/* =========================
   Course Hero Section
========================= */

.course-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.course-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--header);
    line-height: 1.3;
}

.course-hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    max-width: 600px;
}

/* Custom Badges */
.course-hero-content .badge {
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

/* Override Bootstrap badge colors with theme */
.badge.bg-primary {
    background-color: var(--theme) !important;
}

.badge.bg-dark {
    background-color: var(--header) !important;
}

.badge.bg-success {
    background-color: var(--bg) !important;
}

/* Hero Image */
.course-hero-image img {
    border-radius: 20px !important;
    transition: 0.4s ease;
}

.course-hero-image img:hover {
    transform: scale(1.03);
}



/* =========================
   Course Details Section
========================= */

.course-details-section {
    padding: 100px 0;
    background: #ffffff;
}

.course-content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--header);
}

.course-content-wrapper p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}



/* Feature Boxes */

.modern-feature-box {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.4s ease;
    height: 100%;
}

.modern-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    border-color: var(--theme);
}

.modern-feature-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme);
}

.modern-feature-box ul li {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 8px;
}



/* Highlight Box */

.highlight-box {
    background: linear-gradient(135deg, #f4e6ee 0%, #ffffff 100%);
    border-left: 5px solid var(--theme);
}

.highlight-box h5 {
    color: var(--header);
    font-weight: 600;
}



/* Sidebar */

.course-sidebar .enquiry-box {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.course-sidebar h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--header);
}

.course-sidebar ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text);
}

/* Enquire Button polish */
.course-sidebar .theme-btn {
    background: var(--theme);
    border-radius: 8px;
    font-size: 15px;
    padding: 12px;
    transition: 0.3s ease;
}

.course-sidebar .theme-btn:hover {
    background: var(--header);
}



/* Sticky smooth shadow */
.course-sidebar .enquiry-box {
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}



/* Responsive */

@media (max-width: 992px) {

    .course-hero-content h1 {
        font-size: 32px;
    }

    .course-hero-content p {
        font-size: 15px;
    }

    .course-content-wrapper h2 {
        font-size: 22px;
    }

    .course-sidebar {
        margin-top: 40px;
    }
}


/* =========================
   Blog Grid Design
========================= */

.blog-grid-section {
    background: #f8f9ff;
    padding: 100px 0;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    transition: 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--theme);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
}

.blog-date-badge span {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.blog-date-badge small {
    font-size: 11px;
}

.blog-card-content {
    padding: 25px;
}

.blog-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--theme);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-card-content h3 a {
    color: var(--header);
    text-decoration: none;
}

.blog-card-content h3 a:hover {
    color: var(--theme);
}

.blog-read-btn {
    font-weight: 600;
    font-size: 14px;
    color: var(--theme);
    text-decoration: none;
}

.blog-read-btn:hover {
    color: var(--header);
}


/* =========================
   Blog Details Modern
========================= */

.blog-details-modern {
    padding: 100px 0;
    background: #ffffff;
}

.blog-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.blog-detail-image {
    height: 380px;
    background-size: cover;
    background-position: center;
}

.blog-detail-content {
    padding: 40px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.blog-detail-content h2 {
    font-size: 30px;
    color: var(--header);
    margin-bottom: 25px;
}

.blog-main-content p {
    line-height: 1.9;
    font-size: 16px;
    color: var(--text);
}

/* Footer */

.blog-footer-box {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-tags a {
    background: var(--theme);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    text-decoration: none;
}

.blog-share a {
    margin-left: 12px;
    font-size: 15px;
    color: var(--header);
}

.blog-share a:hover {
    color: var(--theme);
}

/* Sidebar */

.sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.modern-search-form {
    display: flex;
    gap: 10px;
}

.modern-search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.modern-search-form button {
    background: var(--theme);
    border: none;
    color: #fff;
    padding: 0 15px;
    border-radius: 8px;
}


/* =========================
   Gallery & Album Pages
========================= */

.innerpage {
    padding: 100px 0;
    background: #f8f9ff;
}

/* =========================
   Album Listing Cards
========================= */

.gallery-thumb {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid var(--border);
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    margin: 0 0 20px;
}

.gallery-thumb:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Image */
.gallery-thumb-image {
    overflow: hidden;
    position: relative;
    text-align: center;
}

.gallery-thumb-image img {
    width: 100%;
    display: block;
    transition: 0.6s ease;
}

.gallery-thumb:hover .gallery-thumb-image img {
    transform: scale(1.08);
}

/* Album Content */
.gallery-databx {
    padding: 25px;
    text-align: center;
}

.gallery-thumb-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-thumb-title a {
    color: var(--header);
    text-decoration: none;
    transition: 0.3s ease;
}

.gallery-thumb-title a:hover {
    color: var(--theme);
}

/* View Button */
.gallery-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    background: var(--theme);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.gallery-btn:hover {
    background: var(--header);
}



/* =========================
   Album Photos Grid
========================= */

.album-back-btn {
    margin-bottom: 40px;
}

.album-back-btn a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.album-back-btn a:hover {
    background: var(--theme);
}

/* Photo Grid Card */
.innerpage .col-lg-4 .gallery-thumb {
    margin-bottom: 15px;
}

/* Photo Title */
.innerpage h1 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 30px;
    color: var(--header);
    text-align: center;
}



/* =========================
   Fancybox Image Hover Effect
========================= */

.gallery-thumb-image a {
    display: block;
    position: relative;
}

.gallery-thumb-image a::after {
    content: "\f065";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-thumb-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 13, 68, 0.45);
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-thumb:hover .gallery-thumb-image::before {
    opacity: 1;
}

.gallery-thumb:hover .gallery-thumb-image a::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}



/* =========================
   Empty State
========================= */

.innerpage .col-lg-12 {
    text-align: center;
    font-size: 16px;
    color: #666;
    padding: 40px 0;
}



/* =========================
   Responsive
========================= */

@media (max-width: 992px) {

    .innerpage {
        padding: 70px 0;
    }

    .gallery-databx {
        padding: 20px;
    }

    .gallery-thumb-title {
        font-size: 16px;
    }

    .innerpage h1 {
        font-size: 15px;
    }
}


/* ===========================
   Modern Admission Form
=========================== */

.admission-modern-section {
    padding: 100px 0;
    background: linear-gradient(135deg,#f9f9ff,#ffffff);
}

.admission-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.admission-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--header);
}

.admission-header p {
    color: #666;
    margin-top: 10px;
}

.admission-form {
    margin-top: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s ease;
    color: #000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--theme);
    box-shadow: 0 0 0 3px rgba(141,14,75,0.08);
    outline: none;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    width: 100px;
}

.form-block.full {
    margin-bottom: 25px;
}

.form-block label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-submit {
    margin-top: 40px;
}

.theme-btn {
    background: var(--theme);
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.theme-btn:hover {
    background: var(--header);
}

.loading-btn {
    display: none;
}

.form-error-message {
    color: #d23e07;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .admission-card {
        padding: 40px 25px;
    }
}

/* ===============================
   Responsive
================================ */

@media (max-width: 768px) {

    .rd-breadcrumb {
        padding: 80px 0;
    }

    .rd-breadcrumb h2 {
        font-size: 28px;
    }

    .text-row h3 {
        font-size: 24px;
    }

    .career-box {
        padding: 20px;
    }
    .about-modern-section {
    padding: 50px 0;
}

}

.privacy-policy h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.privacy-policy h3 {
    margin-top: 25px;
    font-size: 20px;
}

.privacy-policy p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-policy ul {
    padding-left: 20px;
}

.policy-title{
    font-size:32px;
    font-weight:600;
    margin-bottom:25px;
    text-align:left;
    border-left:4px solid #c59d5f;
    padding-left:12px;
}

.policy-subtitle{
    font-size:20px;
    font-weight:600;
    margin-top:25px;
    margin-bottom:10px;
    text-align:left;
    border-left:3px solid #c59d5f;
    padding-left:10px;
}


/* ===============================
   Vision & Mission Light Theme
=============================== */

.vm-section {
    position: relative;
    /* min-height: 85vh; */
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background images */
.vm-vision {
    background-image: url("../img/vision-fashion-designer.webp");
}

.vm-mission {
    background-image: url("../img/mission-fashion-dance.webp");
}

/* Soft light overlay */
.vm-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgb(255 255 255 / 0%)); */
}

/* Floating Card */
.vm-card {
    position: relative;
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

/* Hover lift */
.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

/* Title */
.vm-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 25px;
    position: relative;
}

/* Accent underline */
.vm-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--theme);
    display: block;
    margin-top: 12px;
    border-radius: 4px;
}

/* Text */

/* ===============================
   Vision & Mission Responsive
=============================== */

/* Tablet & Below */
@media (max-width: 992px) {

    .vm-section {
        min-height: auto;
        padding: 70px 0;
        background-position: center top;
    }

    .vm-section::before {
        background: linear-gradient(
            to bottom,
            rgba(255,255,255,0.92),
            rgba(255,255,255,0.85)
        );
    }

    .vm-card {
        padding: 30px;
        border-radius: 14px;
    }

    .vm-title {
        font-size: 30px;
    }

    .vm-card p,
    .vm-list li {
        font-size: 16px;
        line-height: 26px;
    }
}

/* ===============================
   Vision Mission List Styling
=============================== */

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 28px;
    color: #444;
    transition: all 0.3s ease;
}

.vm-list li i {
    font-size: 16px;
    color: var(--theme);
    margin-top: 6px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* subtle hover */
.vm-list li:hover {
    transform: translateX(6px);
}

.vm-list li:hover i {
    color: var(--header);
    transform: scale(1.1);
}

/* ===== END Vision Mission List Styling ===== */
/* Mobile */
@media (max-width: 576px) {

    .vm-section {
        background-size: cover;
        background-position: center;
        padding: 80px 0;
    }

    /* Stronger overlay for readability */
    .vm-section::before {
        background: rgb(255 255 255 / 8%);
    }

    .vm-card {
        padding: 22px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    }

    .vm-title {
        font-size: 26px;
    }
    
        .vm-section.vm-vision {
        background-size: 230%;
        background-position: left -110px center;
    }

        .vm-section.vm-mission {
        background-size: 412%;
        background-position: left -920px top -210px;
    }

}

.h1-title {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
}

.h1-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #e91e63;
    display: block;
    margin-top: 10px;
}