
ul,
li {
    list-style: none;
}

.title a {
    color: inherit;
}

.color1 {
    color: var(--bs-red);
}

.color2 {
    color: var(--yellow);
}

.color3 {
    color: var(--bs-indigo);
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
    z-index: 99;
    background-color: #ffffff;
}

.large-container {
    position: static;
    max-width: var(--large-container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.auto-container {
    position: static;
    max-width: var(--container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.small-container {
    position: static;
    max-width: var(--small-container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.dropdown-toggle::after {
    display: none;
}

.progress-wrap {
    position: fixed;
    right: 40px;
    bottom: 500px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all ease 0.5s;
    background-color: var(--yellow);
}

    .progress-wrap.active-progress {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        bottom: 40px;
    }

    .progress-wrap:hover {
        background-color: var(--bs-indigo);
    }

        .progress-wrap:hover:after {
            color: var(--bs-white);
        }

        .progress-wrap:hover svg.progress-circle path {
            stroke: var(--yellow);
        }

    .progress-wrap:after {
        position: absolute;
        content: "\f062";
        font-weight: 800;
        font-family: "Font Awesome 6 Pro";
        text-align: center;
        line-height: 60px;
        font-size: 20px;
        left: 0;
        top: 0;
        height: 60px;
        width: 60px;
        color: var(--bs-dark);
        cursor: pointer;
        display: block;
        z-index: 1;
        transition: all 200ms linear;
    }

    .progress-wrap svg path {
        fill: none;
    }

    .progress-wrap svg.progress-circle path {
        stroke: var(--bs-indigo);
        stroke-width: 4;
        box-sizing: border-box;
        transition: all 200ms linear;
    }

.link-style-one {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--bs-dark);
}

    .link-style-one:before {
        position: absolute;
        left: 0;
        right: 18px;
        bottom: 2px;
        height: 1px;
        background-color: var(--r1);
        content: "";
        transition: all 300ms ease;
    }

    .link-style-one i {
        position: relative;
        top: 1px;
        display: block;
        font-size: 14px;
        margin-left: 5px;
        transform: rotate(45deg);
    }

    .link-style-one:hover {
        color: var(--bs-red);
    }

        .link-style-one:hover:before {
            right: 100%;
        }

.feature-list {
    position: relative;
}

    .feature-list li {
        position: relative;
        display: flex;
        align-items: flex-end;
        gap: 19px;
        margin-bottom: 20px;
    }

        .feature-list li .icon-box {
            position: relative;
        }

            .feature-list li .icon-box .icon-check {
                position: relative;
                z-index: 3;
            }

            .feature-list li .icon-box .check-bg {
                position: absolute;
                bottom: 1px;
                left: -5px;
            }

        .feature-list li .title {
            position: relative;
            color: var(--bs-white);
            padding-top: 3px;
            margin-bottom: 2px;
        }

        .feature-list li .text {
            position: relative;
            font-size: 14px;
            line-height: 24px;
            color: #BBBBBB;
        }

.feature-list-two {
    position: relative;
}

    .feature-list-two.two-column {
        display: flex;
        flex-wrap: wrap;
    }

        .feature-list-two.two-column li {
            flex: 0 0 50%;
            width: 50%;
            padding-right: 15px;
        }

    .feature-list-two li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 19px;
        margin-bottom: 16px;
    }

        .feature-list-two li:hover .icon-box .check-two-bg {
            opacity: 0;
        }

        .feature-list-two li:hover .icon-box .check-two-bg-two {
            opacity: 1;
        }

        .feature-list-two li:hover .title {
            color: var(--e-secondary);
        }

        .feature-list-two li .icon-box {
            position: relative;
        }

            .feature-list-two li .icon-box .icon-check-two {
                position: relative;
                z-index: 3;
            }

            .feature-list-two li .icon-box .check-two-bg {
                position: absolute;
                bottom: 0;
                left: -3px;
                transition: all 300ms ease;
            }

            .feature-list-two li .icon-box .check-two-bg-two {
                position: absolute;
                bottom: 0;
                left: -3px;
                opacity: 0;
                transition: all 300ms ease;
            }

        .feature-list-two li .title {
            position: relative;
            color: var(--bs-dark);
            margin-bottom: 0;
            transition: all 300ms ease;
        }

.list-style-one {
    position: relative;
    display: flex;
    padding: 12px 0;
}

    .list-style-one li {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        margin-right: 20px;
        color: var(--bs-dark);
        letter-spacing: -0.02em;
    }

        .list-style-one li:last-child {
            margin-right: 0;
        }

        .list-style-one li i {
            position: relative;
            top: 1px;
            color: var(--bs-red);
            font-size: 14px;
            line-height: 1em;
            margin-right: 10px;
        }

        .list-style-one li a {
            display: block;
            color: var(--bs-dark);
            transition: all 300ms ease;
        }

            .list-style-one li a:hover {
                color: var(--bs-white);
            }

    .list-style-one.light li,
    .list-style-one.light a,
    .list-style-one.light i {
        color: var(--bs-white) !important;
    }

        .list-style-one.light a:hover {
            text-decoration: underline;
        }

.social-icon-one {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .social-icon-one li {
        position: relative;
    }

        .social-icon-one li a {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--bs-white);
            color: var(--bs-white);
            font-size: 17px;
        }

            .social-icon-one li a:hover {
                background-color: var(--yellow);
                border-color: var(--yellow);
                color: var(--bs-dark);
            }

.social-icon-two {
    position: relative;
    display: flex;
    gap: 24px;
}

    .social-icon-two.light a {
        color: var(--bs-white);
    }

    .social-icon-two li {
        position: relative;
        display: flex;
    }

        .social-icon-two li a {
            position: relative;
            display: block;
            line-height: 1em;
            font-size: 18px;
            color: var(--bs-dark);
            text-align: center;
            transition: all 300ms ease;
        }

            .social-icon-two li a i {
                position: relative;
            }

            .social-icon-two li a:hover {
                color: var(--bs-red);
            }

.parallax-window {
    min-height: 400px;
    background: transparent;
}

.page-social-icon-box {
    position: fixed;
    top: 50%;
    left: 110px;
    transform: translateY(-50%);
    z-index: 999;
}

.social-icon-three {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 40px;
    padding: 8px;
    background-color: #150036;
}

    .social-icon-three a {
        position: relative;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--bs-white);
        font-size: 22px;
        background-color: transparent;
        transition: all 300ms ease;
    }

        .social-icon-three a:hover {
            background-color: var(--bs-indigo);
            color: var(--bs-white);
        }

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-pattern-1 {
    background-image: url(../images/pattern-1.jpg);
}

.bg-pattern-2 {
    background-image: url(../images/pattern-2.jpg);
}

.bg-pattern-3 {
    background-image: url(../images/pattern-3.jpg);
}

.bg-pattern-4 {
    background-image: url(../images/pattern-4.jpg);
}

.bg-pattern-5 {
    background-image: url(../images/pattern-5.png);
}

.bg-pattern-6 {
    background-image: url(../images/pattern-6.png);
}

.bg-pattern-7 {
    background-image: url(../images/pattern-7.jpg);
}

.bg-pattern-8 {
    background-image: url(../images/pattern-8.jpg);
}

.bg-pattern-9 {
    background-image: url(../images/pattern-9.png);
}

.bg-pattern-10 {
    background-image: url(../images/pattern-10.jpg);
}

.bg-pattern-11 {
    background-image: url(../images/pattern-11.png);
}

.expand-section {
    width: 80%;
    margin: 0 auto;
    border-radius: 72px;
    overflow: hidden;
}

.bg-reveal {
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    min-width: 1920px;
    background-size: cover;
    background-position: center;
}

.parallax-section {
    overflow: hidden;
}

    .parallax-section .parallax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 150vh;
        background-size: cover;
        background-position: center;
    }

.tabs-box {
    position: relative;
}

    .tabs-box .tab {
        display: none;
    }

    .tabs-box .active-tab {
        display: block;
    }

.play-btn {
    position: relative;
    display: inline-block;
}

    .play-btn:hover .icon {
        background-color: var(--bs-red);
        color: var(--bs-white);
    }

    .play-btn .icon {
        height: 140px;
        width: 140px;
        font-size: 28px;
        color: var(--bs-white);
        background-color: var(--yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 300ms ease;
    }

    .play-btn .circle-text img {
        position: relative;
        display: inline-block;
        animation: fa-spin 60s infinite linear;
    }

.play-now {
    position: relative;
    display: block;
    z-index: 9;
    transition: all 300ms ease;
}

    .play-now .icon {
        position: relative;
        display: inline-block;
        height: 85px;
        width: 85px;
        text-align: center;
        line-height: 85px;
        background-color: #ffffff;
        color: var(--yellow);
        z-index: 1;
        font-size: 18px;
        display: block;
        border-radius: 50%;
        box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
        transform-origin: center;
    }

    .play-now .ripple,
    .play-now .ripple:before,
    .play-now .ripple:after {
        position: absolute;
        top: 50%;
        left: 50%;
        height: 102px;
        width: 102px;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
        animation: ripple 3s infinite;
    }

        .play-now .ripple.light,
        .play-now .ripple:before.light,
        .play-now .ripple:after.light {
            box-shadow: 0 0 0 0 rgb(255, 255, 255);
        }

            .play-now .ripple.light,
            .play-now .ripple.light:before,
            .play-now .ripple.light:after {
                box-shadow: 0 0 0 0 rgb(255, 255, 255);
            }

        .play-now .ripple:before {
            animation-delay: 0.9s;
            content: "";
            position: absolute;
        }

        .play-now .ripple:after {
            animation-delay: 0.6s;
            content: "";
            position: absolute;
        }

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    }
}

.play-now-two {
    height: 150px;
    width: 150px;
    background-color: rgba(21, 21, 21, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #ffffff;
    transition: all 300ms ease;
    animation: zoom-one 3s infinite linear;
}

    .play-now-two:hover {
        color: #ff9205;
        background-color: #ffffff;
    }

.select2-dropdown {
    border: 1px solid #eee;
}

.select2-results__option {
    padding: 0 10px;
    color: #7c858c;
    border: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #7c858c;
    padding-left: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--bg-theme-color1);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    bottom: 1px;
    height: auto;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #7c858c;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow:before {
        position: relative;
        content: "\f107";
        font-family: "Font Awesome 6 Pro";
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        display: none;
    }

.select2-container--default .select2-selection--single {
    border-radius: 0;
}

.default-navs .owl-nav {
    display: flex;
    align-items: center;
}

.default-navs .owl-next,
.default-navs .owl-prev {
    display: block;
    width: 52px;
    height: 52px;
    font-size: 16px;
    font-weight: 700;
    line-height: 52px;
    color: var(--bs-dark);
    background: #fff;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 50%;
    margin-right: 10px;
}

    .default-navs .owl-next:hover,
    .default-navs .owl-prev:hover {
        background-color: var(--bs-dark);
        color: var(--bs-white);
    }

.default-dots .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

    .default-dots .owl-dots .owl-dot {
        height: 20px;
        width: 20px;
        border: 2px solid #3d0de5;
        background-color: transparent;
        margin: 0 5px;
        transition: all 300ms ease;
        border-radius: 50%;
    }

        .default-dots .owl-dots .owl-dot.active {
            background-color: #270ad9;
            border-radius: 50%;
            border: 2px solid #270ad9;
        }

.nav-style-one {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 9;
}

    .nav-style-one .next,
    .nav-style-one .prev {
        margin-right: 38px;
        padding: 18px 25px;
        padding-left: 0;
        display: flex;
    }

        .nav-style-one .next .icon,
        .nav-style-one .prev .icon {
            position: relative;
            display: inline-block;
        }

            .nav-style-one .next .icon:before,
            .nav-style-one .prev .icon:before {
                position: absolute;
                top: 0;
                margin-top: -20px;
                right: -25px;
                height: 52px;
                width: 52px;
                border: 1px dotted #fff;
                border-radius: 100px;
                content: "";
                z-index: -1;
                transition: all 300ms ease;
            }

        .nav-style-one .next:hover .icon:before,
        .nav-style-one .prev:hover .icon:before {
            background-color: rgba(255, 255, 255, 0.15);
            width: 125px;
        }

    .nav-style-one .prev {
        margin-right: 0;
        padding-left: 25px;
        padding-right: 0;
    }

        .nav-style-one .prev .icon:before {
            left: -25px;
            right: auto;
        }

    .nav-style-one .swiper-button-disabled {
        opacity: 0.5;
        pointer-events: none;
    }

    .nav-style-one.dark .next .icon:before,
    .nav-style-one.dark .prev .icon:before {
        border: 1px solid #797979;
    }

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
}

    .preloader svg,
    .preloader img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-top: -70px;
    }

    .preloader:before {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
        margin: 0 auto;
        margin-top: -10px;
        color: var(--bs-dark);
        font-family: var(--text-font);
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        content: "Loading";
        transition: none;
    }

.pl1__rect {
    fill: url(#pl-gradient);
}

.pl1 {
    display: block;
    width: 8em;
    height: 8em;
}

.pl1__g,
.pl1__rect {
    animation: pl1-a 1.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.pl1__g {
    transform-origin: 64px 64px;
}

.pl1__rect:first-child {
    animation-name: pl1-b;
}

.pl1__rect:nth-child(2) {
    animation-name: pl1-c;
}

@keyframes pl1-a {
    from {
        transform: rotate(0);
    }

    80%, to {
        animation-timing-function: steps(1, start);
        transform: rotate(90deg);
    }
}

@keyframes pl1-b {
    from {
        animation-timing-function: cubic-bezier(0.33, 0, 0.67, 0);
        width: 40px;
        height: 40px;
    }

    20% {
        animation-timing-function: steps(1, start);
        width: 40px;
        height: 0;
    }

    60% {
        animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
        width: 0;
        height: 40px;
    }

    80%, to {
        width: 40px;
        height: 40px;
    }
}

@keyframes pl1-c {
    from {
        animation-timing-function: cubic-bezier(0.33, 0, 0.67, 0);
        width: 40px;
        height: 40px;
        transform: translate(0, 48px);
    }

    20% {
        animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1);
        width: 40px;
        height: 88px;
        transform: translate(0, 0);
    }

    40% {
        animation-timing-function: cubic-bezier(0.33, 0, 0.67, 0);
        width: 40px;
        height: 40px;
        transform: translate(0, 0);
    }

    60% {
        animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1);
        width: 88px;
        height: 40px;
        transform: translate(0, 0);
    }

    80%, to {
        width: 40px;
        height: 40px;
        transform: translate(48px, 0);
    }
}

.default-tabs {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

    .default-tabs .tab-buttons {
        position: relative;
        margin-bottom: 30px;
    }

        .default-tabs .tab-buttons li {
            position: relative;
            float: left;
            font-weight: 600;
            font-size: 18px;
            padding: 15px 35px;
            color: var(--bs-red);
            line-height: 20px;
            border-radius: 5px;
            background-color: #ffffff;
            cursor: pointer;
            margin-right: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .default-tabs .tab-buttons li:last-child {
                margin-right: 0;
            }

            .default-tabs .tab-buttons li.active-btn {
                background: var(--gradient-1);
                color: #ffffff;
            }

    .default-tabs .tabs-content {
        position: relative;
        width: 100%;
    }

.blockquote-style-one {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: var(--bs-dark);
    padding: 13px 25px;
    background-color: #fff;
    box-shadow: none;
    font-weight: 800;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

    .blockquote-style-one:before {
        position: absolute;
        left: 0;
        top: 10px;
        bottom: 10px;
        width: 4px;
        z-index: 2;
        background-color: var(--bs-red);
        content: "";
    }

.skills {
    position: relative;
    margin-bottom: 50px;
}

    .skills .skill-item {
        position: relative;
        margin-bottom: 25px;
    }

        .skills .skill-item:last-child {
            margin-bottom: 0px;
        }

        .skills .skill-item .skill-header {
            position: relative;
            margin-bottom: 0px;
            z-index: 3;
        }

            .skills .skill-item .skill-header .skill-title {
                font-size: 20px;
                font-weight: 700;
                color: var(--bs-dark);
                margin-bottom: 10px;
            }

        .skills .skill-item .skill-bar {
            position: relative;
            width: 100%;
            height: 14px;
            border-radius: 10px;
        }

            .skills .skill-item .skill-bar .bar-inner {
                position: relative;
                width: 100%;
                height: 14px;
                background: #DDDDDD;
                border-radius: 10px;
            }

                .skills .skill-item .skill-bar .bar-inner .bar {
                    position: absolute;
                    left: 0px;
                    top: 0px;
                    height: 14px;
                    width: 0px;
                    border-radius: 10px;
                    background: var(--e-secondary);
                    transition: all 3000ms ease;
                }

ills .skill-item .skill-bar .bar-inner .skill-percentage {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #666666;
    margin-bottom: 10px;
}

.cursor1 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--bs-red);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.15s;
    z-index: 999;
    mix-blend-mode: difference;
}

    .cursor1.hide {
        opacity: 0;
        visibility: hidden;
    }

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    border: 4px solid var(--bs-red);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.2s;
    z-index: 999;
    mix-blend-mode: difference;
}

    .cursor2.hide {
        opacity: 0;
        visibility: hidden;
    }

    .cursor2.circle {
        width: 60px;
        height: 60px;
    }

.theme-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    gap: 10px;
    transition: all 300ms ease;
}

    .theme-btn .btn-title {
        position: relative;
        display: flex;
        align-items: center;
    }

.btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    padding: 20px 41px;
    border-radius: 50px;
    font-weight: 700;
    overflow: hidden;
    color: var(--bs-white);
    background-color: var(--bs-red);
    text-transform: uppercase;
}

    .btn-style-one:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        border-radius: 50px;
        height: 100%;
        background-color: var(--yellow);
        transition: all 300ms ease;
    }

    .btn-style-one i {
        position: relative;
        top: 1px;
        display: block;
    }

    .btn-style-one:hover {
        color: var(--bs-dark);
    }

        .btn-style-one:hover:before {
            width: 100%;
            right: auto;
            left: 0;
        }

    .btn-style-one:active {
        transform: scale(0.9);
    }

    .btn-style-one .icon {
        position: relative;
        border-radius: 28.5px;
        font-size: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bs-red);
        background-color: var(--bs-white);
        z-index: 1;
    }

    .btn-style-one.icon-btn {
        gap: 16px;
        line-height: 14px;
        padding: 9px 27px 10px 9px;
    }

    .btn-style-one.bg-yellow {
        background-color: var(--yellow);
        color: var(--bs-dark);
    }

        .btn-style-one.bg-yellow::before {
            background-color: var(--bs-red);
        }

        .btn-style-one.bg-yellow:hover {
            color: var(--bs-white);
        }

    .btn-style-one.bg-pink {
        background-color: var(--bs-indigo);
    }

        .btn-style-one.bg-pink::before {
            background-color: var(--bs-red);
        }

        .btn-style-one.bg-pink:hover {
            color: var(--bs-white);
        }

    .btn-style-one.bg-blue {
        background-color: #200066;
    }

        .btn-style-one.bg-blue::before {
            background-color: var(--bs-red);
        }

        .btn-style-one.bg-blue:hover {
            color: var(--bs-white);
        }

    .btn-style-one.bg-orange {
        background-color: var(--e-secondary);
    }

        .btn-style-one.bg-orange::before {
            background-color: var(--bs-red);
        }

        .btn-style-one.bg-orange:hover {
            color: var(--bs-white);
        }

    .btn-style-one.dark-bg {
        color: var(--bs-white);
        background-color: #212729;
    }

        .btn-style-one.dark-bg::before {
            background-color: var(--bs-red);
        }

    .btn-style-one.light-bg {
        color: var(--bs-dark);
        background: var(--bs-white);
    }

        .btn-style-one.light-bg::before {
            background: var(--bs-red);
        }

        .btn-style-one.light-bg:hover {
            color: var(--bs-white);
        }

    .btn-style-one.hover-light:hover {
        color: var(--bs-dark);
    }

    .btn-style-one.hover-light:before {
        background-color: var(--bs-white);
    }

    .btn-style-one.hover-dark:hover {
        color: var(--bs-white);
    }

    .btn-style-one.hover-dark:before {
        background-color: var(--bs-dark);
    }

.reveal {
    position: relative;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

    .reveal img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        transform-origin: left;
    }

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

[text-split] {
    opacity: 0;
}

.word {
    overflow: hidden;
    margin-bottom: -0.1em;
    transform-origin: bottom;
}

.anim-icons.full-width {
    max-width: 100%;
}

.anim-icons .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.banner-layer {
    width: 964px;
    height: 100%;
    background-image: url(../images/banner-layer.png);
}

.btn-bg {
    width: 322px;
    height: 100%;
    background-image: url(../images/btn-bg.png);
}

.testi-shape-one {
    width: 109px;
    height: 80px;
    background-image: url(../images/testi-shape-one.png);
}

.testi-shape-two {
    width: 109px;
    height: 80px;
    background-image: url(../images/testi-shape-two.png);
}

.icon-mic {
    width: 80px;
    height: 183px;
    background-image: url(../images/icon-mic.svg);
}

.icon-check {
    width: 60px;
    height: 51px;
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.check-bg-one {
    width: 54px;
    height: 44px;
    background-image: url(../images/check-bg-one.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.check-bg-two {
    width: 54px;
    height: 44px;
    background-image: url(../images/check-bg-two.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.icon-check-three {
    width: 37px;
    height: 32px;
    background-image: url(../images/icon-check-three.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.check-three-bg {
    width: 28px;
    height: 22px;
    background-image: url(../images/check-three-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.check-bg-three {
    width: 54px;
    height: 44px;
    background-image: url(../images/check-bg-three.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.icon-check-two {
    width: 38px;
    height: 32px;
    background-image: url(../images/icon-check-two.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.check-two-bg {
    width: 37px;
    height: 31px;
    background-image: url(../images/check-two-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.check-two-bg-two {
    width: 37px;
    height: 31px;
    background-image: url(../images/check-two-bg-two.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.play-icon {
    width: 45px;
    height: 61px;
    background-image: url(../images/play-icon.png);
}

.icon-arrow {
    width: 153px;
    height: 128px;
    background-image: url(../images/icon-arrow.png);
}

.icon-star {
    width: 75px;
    height: 75px;
    background-image: url(../images/icon-star.png);
}

.icon-video {
    width: 123px;
    height: 123px;
    background-image: url(../images/icon-video.png);
}

.icon-one {
    width: 97px;
    height: 156px;
    background-image: url(../images/icon-one.png);
}

.icon-two {
    width: 97px;
    height: 156px;
    background-image: url(../images/icon-two.png);
}

.icon-three {
    width: 189px;
    height: 135px;
    background-image: url(../images/icon-three.png);
}

.icon-four {
    width: 379px;
    height: 455px;
    background-image: url(../images/icon-four.png);
}

.icon-five {
    width: 70px;
    height: 68px;
    background-image: url(../images/icon-five.png);
}

.icon-six {
    width: 243px;
    height: 243px;
    background-image: url(../images/icon-six.png);
}

.icon-seven {
    width: 119px;
    height: 124px;
    background-image: url(../images/icon-seven.png);
}

.icon-eight {
    width: 119px;
    height: 124px;
    background-image: url(../images/icon-eight.png);
}

.icon-nine {
    width: 224px;
    height: 224px;
    background-image: url(../images/icon-nine.png);
}

.icon-ten {
    width: 235px;
    height: 173px;
    background-image: url(../images/icon-ten.png);
}

.icon-eleven {
    width: 235px;
    height: 173px;
    background-image: url(../images/icon-eleven.png);
}

.icon-twelve {
    width: 64px;
    height: 64px;
    background-image: url(../images/icon-twelve.png);
}

.icon-thirteen {
    width: 70px;
    height: 70px;
    background-image: url(../images/icon-thirteen.png);
}

.icon-fourteen {
    width: 318px;
    height: 479px;
    background-image: url(../images/icon-fourteen.png);
}

.icon-fifteen {
    width: 346px;
    height: 387px;
    background-image: url(../images/icon-fifteen.png);
}

.icon-sixteen {
    width: 449px;
    height: 551px;
    background-image: url(../images/icon-sixteen.png);
}

.icon-seventeen {
    width: 25px;
    height: 25px;
    background-image: url(../images/icon-seventeen.png);
}

.icon-eighteen {
    width: 25px;
    height: 25px;
    background-image: url(../images/icon-eighteen.png);
}

.icon-nineteen {
    width: 109px;
    height: 80px;
    background-image: url(../images/icon-nineteen.png);
}

.icon-twenty {
    width: 109px;
    height: 80px;
    background-image: url(../images/icon-twenty.png);
}

.icon-twentyone {
    width: 70px;
    height: 68px;
    background-image: url(../images/icon-twentyone.png);
}

.icon-twentytwo {
    width: 146px;
    height: 108px;
    background-image: url(../images/icon-twentytwo.png);
}

.icon-twentythree {
    width: 146px;
    height: 108px;
    background-image: url(../images/icon-twentythree.png);
}

.icon-twentyfour {
    width: 78px;
    height: 65px;
    background-image: url(../images/icon-twentyfour.png);
}

.icon-twentyfive {
    width: 130px;
    height: 72px;
    background-image: url(../images/icon-twentyfive.png);
}

.icon-twentysix {
    width: 130px;
    height: 72px;
    background-image: url(../images/icon-twentysix.png);
}

.icon-twentyseven {
    width: 86px;
    height: 51px;
    background-image: url(../images/icon-twentyseven.png);
}

.icon-twentyeight {
    width: 86px;
    height: 51px;
    background-image: url(../images/icon-twentyeight.png);
}

.shape-one {
    width: 317px;
    height: 305px;
    background-image: url(../images/shape-one.png);
}

.shape-two {
    width: 715px;
    height: 762px;
    background-image: url(../images/shape-two.png);
}


.shape-five {
    width: 217px;
    height: 428px;
    background-image: url(../images/shape-five.png);
}

.shape-six {
    width: 527px;
    height: 526px;
    background-image: url(../images/shape-six.png);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.shape-seven {
    width: 527px;
    height: 527px;
    background-image: url(../images/shape-seven.png);
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
}

.shape-eight {
    width: 108px;
    height: 100%;
    background-image: url(../images/shape-eight.png);
    background-size: contain;
}

.shape-nine {
    width: 274px;
    height: 800px;
    background-image: url(../images/shape-nine.png);
    background-size: contain;
}

.shape-eleven {
    width: 161px;
    height: 367px;
    background-image: url(../images/shape-eleven.png);
    background-size: contain;
}

.shape-twelve {
    width: 159px;
    height: 367px;
    background-image: url(../images/shape-twelve.png);
    background-size: contain;
}

.shape-thirteen {
    width: 108px;
    height: 100%;
    background-image: url(../images/shape-thirteen.png);
}

.shape-fourteen {
    width: 506px;
    height: 518px;
    background-image: url(../images/shape-fourteen.png);
}

.shape-fifteen {
    width: 97px;
    height: 100%;
    background-image: url(../images/shape-fifteen.png);
}

.shape-sixteen {
    width: 196px;
    height: 100%;
    background-image: url(../images/shape-sixteen.png);
}

.shape-seventeen {
    width: 248px;
    height: 100%;
    background-image: url(../images/shape-seventeen.png);
}

.shape-eighteen {
    width: 406px;
    height: 404px;
    background-image: url(../images/shape-eighteen.png);
}

.shape-nineteen {
    width: 219px;
    height: 507px;
    background-image: url(../images/shape-nineteen.png);
}

.shape-twenty {
    width: 100%;
    height: 100%;
    background-image: url(../images/shape-twenty.png);
}

.shape-twentyone {
    width: 393px;
    height: 662px;
    background-image: url(../images/shape-twentyone.png);
}

.shape-twentytwo {
    width: 598px;
    height: 515px;
    background-image: url(../images/shape-twentytwo.png);
}

.shape-twentythree {
    width: 541px;
    height: 503px;
    background-image: url(../images/shape-twentythree.png);
}

.shape-twentyfour {
    width: 512px;
    height: 518px;
    background-image: url(../images/shape-twentyfour.png);
}

.shape-twentyfive {
    width: 434px;
    height: 340px;
    background-image: url(../images/shape-twentyfive.png);
}

.shape-twentysix {
    width: 301px;
    height: 492px;
    background-image: url(../images/shape-twentysix.png);
}

.shape-twentyseven {
    width: 237px;
    height: 507px;
    background-image: url(../images/shape-twentyseven.png);
}

.shape-twentyeight {
    width: 205px;
    height: 121px;
    background-image: url(../images/shape-twentyeight.png);
}

.shape-twentynine {
    width: 109px;
    height: 80px;
    background-image: url(../images/shape-twentynine.png);
}

.shape-thirty {
    width: 291px;
    height: 100%;
    background-image: url(../images/shape-thirty.png);
}

.shape-thirtyone {
    width: 291px;
    height: 100%;
    background-image: url(../images/shape-thirtyone.png);
}

.shape-thirtytwo {
    width: 234px;
    height: 500px;
    background-image: url(../images/shape-thirtytwo.png);
    background-size: cover;
}

.shape-thirtythree {
    width: 224px;
    height: 500px;
    background-image: url(../images/shape-thirtythree.png);
    background-size: cover;
}

.shape-thirtyfour {
    width: 434px;
    height: 457px;
    background-image: url(../images/shape-thirtyfour.png);
}

.shape-thirtyfive {
    width: 163px;
    height: 163px;
    background-image: url(../images/shape-thirtyfive.png);
}

.shape-thirtysix {
    width: 341px;
    height: 430px;
    background-image: url(../images/shape-thirtysix.png);
}

.shape-thirtyseven {
    width: 217px;
    height: 434px;
    background-image: url(../images/shape-thirtyseven.png);
}

.shape-thirtyeight {
    width: 1273px;
    height: 1273px;
    background-image: url(../images/shape-thirtyeight.png);
}

.shape-thirtynine {
    width: 273px;
    height: 162px;
    background-image: url(../images/shape-thirtynine.png);
}

.shape-fourty {
    width: 539px;
    height: 518px;
    background-image: url(../images/shape-fourty.png);
}

.shape-fourtyone {
    width: 348px;
    height: 348px;
    background-image: url(../images/shape-fourtyone.png);
}

.shape-fourtytwo {
    width: 348px;
    height: 348px;
    background-image: url(../images/shape-fourtytwo.png);
}

.shape-fourtythree {
    width: 348px;
    height: 348px;
    background-image: url(../images/shape-fourtythree.png);
}

.shape-fourtyfour {
    width: 348px;
    height: 348px;
    background-image: url(../images/shape-fourtyfour.png);
}

.shape-fourtyfive {
    width: 348px;
    height: 348px;
    background-image: url(../images/shape-fourtyfive.png);
}

.shape-fourtysix {
    width: 348px;
    height: 348px;
    background-image: url(../images/shape-fourtysix.png);
}

.shape-fourtyseven {
    width: 348px;
    height: 348px;
    background-image: url(../images/shape-fourtyseven.png);
}


.sec-title {
    position: relative;
    margin-bottom: 1em;
    z-index: 1;
}

    .sec-title .sub-title {
        position: relative;
        display: inline-block;
        margin-bottom: 0;
    }

        .sec-title .sub-title:before {
            position: absolute;
            top: 4px;
            left: -17px;
            font-size: 16px;
            line-height: 1em;
            font-weight: 400;
            font-family: var(--fa-style-family, "Font Awesome 6 Pro");
            content: "\f130";
            display: none;
        }

    .sec-title h1 {
        position: relative;
        line-height: 1.2em;
        margin-bottom: 0;
    }

    .sec-title h2 {
        position: relative;
        font-size: var(--sec-title-font-size);
        color: var(--bs-gray-dark);
        
       
        margin-bottom: 0;
        line-height: 1.1em;
        z-index: 2;
    }

    .sec-title .text {
        margin-top: 20px;
    }

    .sec-title.light .sub-title {
        color: var(--bs-white);
    }

        .sec-title.light .sub-title:before {
            color: var(--bs-white);
        }

    .sec-title.light .text {
        color: var(--bs-white);
    }

    .sec-title.light h2,
    .sec-title.light h1 {
        color: var(--bs-white);
    }

    .sec-title.orange .sub-title {
        color: var(--e-secondary);
    }

        .sec-title.orange .sub-title:before,
        .sec-title.orange .sub-title:after {
            color: var(--e-secondary);
        }

    .sec-title.yellow .sub-title {
        color: var(--yellow);
    }

        .sec-title.yellow .sub-title:before,
        .sec-title.yellow .sub-title:after {
            color: var(--yellow);
        }

    .sec-title.text-center .sub-title:before {
        display: block;
    }


.banner-section {
    position: relative;
    overflow: hidden;
    padding: 240px 0 220px;
}

    .banner-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #000000 0%, transparent 100%);
        z-index: 1;
    }

    .banner-section .banner-layer {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .banner-section .content-box {
        position: relative;
        display: inline-block;
        padding-left: 150px;
        z-index: 3;
    }

        .banner-section .content-box .author-box {
            position: relative;
            margin-bottom: 80px;
            padding-left: 265px;
        }

            .banner-section .content-box .author-box .inner-box {
                position: relative;
                display: inline-block;
                text-align: right;
            }

                .banner-section .content-box .author-box .inner-box .designation {
                    position: relative;
                    font-size: 20px;
                    line-height: 30px;
                    color: #F4E412;
                    margin-top: 10px;
                }

                .banner-section .content-box .author-box .inner-box .line {
                    position: absolute;
                    top: 50px;
                    right: -100%;
                    margin-right: -40px;
                }

        .banner-section .content-box .title {
            position: relative;
            color: var(--bs-white);
            margin-bottom: 40px;
        }

            .banner-section .content-box .title span {
                font-weight: 400;
            }

            .banner-section .content-box .title .banner-small-images {
                position: relative;
                top: -4px;
                display: inline-flex;
            }

                .banner-section .content-box .title .banner-small-images img {
                    position: relative;
                    border-radius: 50%;
                    width: 92px;
                    height: 92px;
                    margin-right: -33px;
                    border: 2px solid var(--bs-white);
                }

                    .banner-section .content-box .title .banner-small-images img:last-child {
                        margin-right: 0;
                    }

        .banner-section .content-box .location-box {
            position: relative;
            display: flex;
            align-items: center;
            gap: 55px;
            padding-left: 10px;
        }

        .banner-section .content-box .text {
            position: relative;
            font-size: 20px;
            line-height: 36px;
            font-weight: 300;
            color: var(--bs-white);
        }

    .banner-section .time-counter {
        position: absolute;
        top: 50%;
        right: 100px;
        transform: translateY(-50%);
        z-index: 5;
    }

        .banner-section .time-counter .time-countdown {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

            .banner-section .time-counter .time-countdown .separator {
                display: none;
            }

            .banner-section .time-counter .time-countdown .counter-column {
                position: relative;
                width: 130px;
                height: 110px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.3);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 10px;
                text-align: center;
            }

                .banner-section .time-counter .time-countdown .counter-column .count {
                    position: relative;
                    display: block;
                    font-size: 40px;
                    font-weight: 800;
                    line-height: 1em;
                    color: var(--bs-white);
                    margin-bottom: 0;
                    text-align: center;
                }

                .banner-section .time-counter .time-countdown .counter-column sub {
                    position: relative;
                    color: var(--bs-white);
                    font-size: 16px;
                    line-height: 1em;
                    font-weight: 700;
                    text-transform: uppercase;
                    z-index: 3;
                }


.banner-section-two {
    position: relative;
    overflow: hidden;
    padding: 310px 0 220px;
}

    .banner-section-two .floating-title {
        position: absolute;
        top: 425px;
        left: -270px;
        font-size: 82px;
        font-weight: 700;
        line-height: 1em;
        opacity: 0.5;
        color: var(--bs-dark);
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
        transform: rotate(-90deg);
        text-transform: uppercase;
        z-index: 1;
    }

    .banner-section-two .content-box {
        position: relative;
        padding-left: 26px;
        z-index: 4;
    }

        .banner-section-two .content-box .title {
            position: relative;
            font-size: 100px;
            color: var(--bs-white);
            margin-bottom: 50px;
            line-height: 1.2em;
        }

            .banner-section-two .content-box .title span {
                font-weight: 400;
            }

        .banner-section-two .content-box .btn-box-outer {
            position: relative;
            display: inline-flex;
            align-items: flex-end;
            gap: 95px;
            z-index: 3;
        }

            .banner-section-two .content-box .btn-box-outer .icon-arrow {
                position: absolute;
                top: -110px;
                right: 100px;
            }

            .banner-section-two .content-box .btn-box-outer .text {
                font-size: 20px;
                line-height: 30px;
                color: var(--bs-white);
                max-width: 430px;
                margin-bottom: 40px;
            }

    .banner-section-two .image-box {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 3;
        pointer-events: none;
    }

        .banner-section-two .image-box .image {
            position: relative;
            margin-bottom: 0;
        }

    .banner-section-two .date-box {
        position: absolute;
        left: 56px;
        bottom: 60px;
        z-index: 3;
    }

        .banner-section-two .date-box .date {
            position: relative;
            color: var(--yellow);
            font-size: 69px;
            line-height: 1em;
            font-weight: 500;
            text-align: center;
        }

            .banner-section-two .date-box .date span {
                display: block;
                padding-top: 5px;
                font-size: 24px;
                font-weight: 700;
                line-height: 1.4em;
            }


.banner-section-three {
    position: relative;
    overflow: hidden;
    padding: 260px 0 425px;
    background-color: var(--bs-dark);
    z-index: 3;
}

    .banner-section-three .shape-twentysix {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .banner-section-three .shape-twentyseven {
        position: absolute;
        top: 197px;
        right: 0;
        z-index: 1;
    }

    .banner-section-three .floating-title {
        position: absolute;
        top: 360px;
        right: -480px;
        font-size: 128px;
        font-weight: 700;
        line-height: 1em;
        opacity: 0.5;
        color: #8F03B5;
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
        transform: rotate(-90deg);
        text-transform: uppercase;
    }

    .banner-section-three .content-box {
        padding-left: 30px;
    }

    .banner-section-three .btn-box.show-xxl {
        display: none;
    }

    .banner-section-three .title-box {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 30px;
    }

        .banner-section-three .title-box .title-outer {
            display: flex;
            align-items: flex-end;
            gap: 20px;
        }

        .banner-section-three .title-box .title {
            position: relative;
            font-size: 96px;
            color: var(--bs-white);
            font-weight: 600;
            text-transform: capitalize;
            margin-bottom: 0;
            gap: 20px;
        }

        .banner-section-three .title-box .highlighted {
            position: relative;
            font-size: 80px;
            color: var(--yellow);
        }

            .banner-section-three .title-box .highlighted:before {
                content: "";
                position: absolute;
                bottom: -17px;
                left: 0;
                width: 514px;
                height: 26px;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                background-image: url(../images/icon-line-two.png);
            }

    .banner-section-three .image-box {
        position: relative;
        display: flex;
        align-items: center;
        gap: 75px;
    }

        .banner-section-three .image-box .image {
            position: relative;
            margin-bottom: 0;
            border-radius: 21px;
            width: 334px;
            height: 214px;
            flex-shrink: 0;
        }

            .banner-section-three .image-box .image img {
                border: 3px solid var(--bs-white);
                border-radius: 21px;
                width: 100%;
                height: 100%;
            }

        .banner-section-three .image-box .content {
            position: relative;
            gap: 40px;
            padding-left: 120px;
        }

            .banner-section-three .image-box .content .icon-mic {
                position: absolute;
                top: 28px;
                left: 0;
            }

            .banner-section-three .image-box .content .title {
                position: relative;
                padding-top: 5px;
                margin-bottom: 10px;
                color: var(--bs-white);
            }

            .banner-section-three .image-box .content .text {
                position: relative;
                font-size: 20px;
                font-weight: 300;
                padding-left: 15px;
                line-height: 36px;
                color: var(--bs-white);
                margin-bottom: 0;
                max-width: 590px;
            }


.faq-section {
    position: relative;
    padding: 0 0 70px;
}

    .faq-section.two {
        padding-top: 120px;
    }

    .faq-section .shape-twentythree {
        position: absolute;
        bottom: 100px;
        right: -300px;
        animation: fa-spin 50s linear infinite;
    }

    .faq-section .image-column {
        margin-bottom: 50px;
    }

        .faq-section .image-column .inner-column {
            position: relative;
            margin-left: -130px;
            margin-right: 130px;
            padding-bottom: 165px;
        }

            .faq-section .image-column .inner-column:before {
                content: "";
                position: absolute;
                bottom: 80px;
                left: 80px;
                width: 540px;
                height: 568px;
                border-radius: 40px;
                background-color: var(--e-secondary);
                animation: bounce-y 10s infinite linear;
            }

            .faq-section .image-column .inner-column .exp-box {
                position: absolute;
                bottom: 300px;
                right: 0;
                width: 220px;
                height: 220px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                border: 3px solid var(--bs-white);
                background: radial-gradient(circle, #4361EE 0%, #150036 100%);
                z-index: 1;
            }

                .faq-section .image-column .inner-column .exp-box .circular-text {
                    position: relative;
                    fill: currentColor;
                    height: auto;
                    transform-origin: center;
                    width: 202px;
                    height: 202px;
                    animation: fa-spin 30s infinite linear;
                }

                    .faq-section .image-column .inner-column .exp-box .circular-text text {
                        position: relative;
                        font-size: 11px;
                        font-weight: 700;
                        letter-spacing: 0.8px;
                        color: var(--bs-white);
                        text-transform: uppercase;
                    }

                .faq-section .image-column .inner-column .exp-box .logo {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 120px;
                    height: 120px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    border: 3px solid #F5F5F5;
                    box-shadow: inset 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
                    background-color: var(--bs-white);
                    transform: translate(-50%, -50%);
                }

            .faq-section .image-column .inner-column .image {
                position: relative;
                border-radius: 30px;
                margin-bottom: 0;
                overflow: hidden;
            }

                .faq-section .image-column .inner-column .image.two {
                    position: absolute;
                    bottom: -10px;
                    right: 20px;
                }

                    .faq-section .image-column .inner-column .image.two img {
                        border: 7px solid var(--bs-white);
                    }

                .faq-section .image-column .inner-column .image img {
                    position: relative;
                    border-radius: 30px;
                    transform-origin: center;
                    transition: all 300ms ease;
                }

                .faq-section .image-column .inner-column .image:hover img {
                    transform: scale(1.1) !important;
                }

    .faq-section .content-column {
        margin-bottom: 50px;
    }

        .faq-section .content-column .inner-column {
            padding-top: 13px;
            margin-left: -110px;
        }

            .faq-section .content-column .inner-column .sec-title {
                margin-right: -20px;
            }

.accordion-box {
    position: relative;
}

    .accordion-box .block {
        position: relative;
        width: 100%;
        padding: 40px 30px 40px 50px;
        border-bottom: 1px solid #CCCCCC;
    }

        .accordion-box .block:first-child {
            border-top: 1px solid #CCCCCC;
        }

        .accordion-box .block:last-child {
            margin-bottom: 0;
        }

        .accordion-box .block .acc-btn {
            position: relative;
            color: var(--bs-dark);
            font-size: 20px;
            font-weight: 700;
            line-height: 1em;
            cursor: pointer;
            transition: all 500ms ease;
        }

            .accordion-box .block .acc-btn .icon {
                position: absolute;
                top: -8px;
                right: 0;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                border-radius: 50%;
                color: var(--bs-white);
                background-color: var(--bs-indigo);
                transition: all 300ms ease;
            }

            .accordion-box .block .acc-btn.active .icon {
                background-color: var(--e-secondary);
            }

                .accordion-box .block .acc-btn.active .icon:before {
                    content: "\f068";
                }

        .accordion-box .block .acc-content {
            position: relative;
            display: none;
        }

            .accordion-box .block .acc-content .content {
                position: relative;
                padding-top: 30px;
            }

                .accordion-box .block .acc-content .content .text {
                    display: block;
                    margin-bottom: 0;
                }

            .accordion-box .block .acc-content.current {
                display: block;
            }


.event-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

    .event-section .shape-three {
        position: absolute;
        top: 0;
        left: 0;
    }

    .event-section .shape-four {
        position: absolute;
        top: 0;
        right: 0;
    }

.event-block {
    position: relative;
}

    .event-block:first-child .inner-box {
        border-top: 1px solid #666666;
    }

    .event-block .event-block-inner {
        position: relative;
        z-index: 3;
    }

    .event-block .inner-box {
        position: relative;
        padding: 66px 65px 66px 76px;
        display: flex;
        align-items: center;
        background-color: var(--bs-white);
        border-bottom: 1px solid #666666;
        transition: all 300ms ease;
    }

        .event-block .inner-box:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background: linear-gradient(to bottom, #ffffff 0%, #F5F5F5 100%);
            transition: all 300ms ease;
        }

        .event-block .inner-box:hover {
            filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
            z-index: 5;
        }

            .event-block .inner-box:hover:before {
                opacity: 1;
            }

            .event-block .inner-box:hover .event-hover {
                opacity: 1;
            }

            .event-block .inner-box:hover .title-box .title {
                color: var(--bs-red);
            }

        .event-block .inner-box .date-box {
            position: relative;
            display: flex;
            align-items: flex-end;
            gap: 16px;
            z-index: 10;
        }

            .event-block .inner-box .date-box .date {
                position: relative;
                display: block;
                font-size: 96px;
                font-weight: 600;
                line-height: 1em;
                color: var(--bs-dark);
            }

            .event-block .inner-box .date-box .year {
                position: relative;
                top: -8px;
                display: block;
                font-size: 24px;
                line-height: 30px;
                font-weight: 600;
            }

        .event-block .inner-box .title-box {
            position: relative;
            padding-left: 120px;
            z-index: 10;
        }

            .event-block .inner-box .title-box .title {
                position: relative;
                margin-bottom: 10px;
                text-transform: capitalize;
                z-index: 99;
            }

        .event-block .inner-box .location-box {
            position: relative;
            display: flex;
            align-items: center;
            gap: 14px;
            z-index: 10;
        }

            .event-block .inner-box .location-box li {
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .event-block .inner-box .location-box .icon {
                position: relative;
                color: var(--bs-dark);
            }

        .event-block .inner-box .btn-box {
            position: relative;
            margin-left: auto;
            text-align: center;
            z-index: 10;
        }

            .event-block .inner-box .btn-box .title.free {
                position: relative;
                margin-bottom: 0;
                color: var(--bs-gray);
            }

            .event-block .inner-box .btn-box .title.sold {
                position: relative;
                margin-bottom: 0;
                color: var(--bs-red);
            }

        .event-block .inner-box .event-hover {
            position: absolute;
            top: 0;
            left: 0;
            width: 313px;
            height: 502px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position-x: 75%;
            opacity: 0;
            transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
            margin: -100px 0 0 -50px;
            pointer-events: none;
            z-index: 9;
        }

.event-tabs {
    position: relative;
    text-align: center;
}

    .event-tabs .tab-btns {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #DDDDDD;
        border-radius: 50px;
        margin-bottom: 75px;
    }

    .event-tabs .tab-btn {
        position: relative;
        font-size: 16px;
        line-height: 1em;
        font-weight: 700;
        padding: 22px 50px;
        cursor: pointer;
        text-transform: uppercase;
        color: var(--bs-dark);
        border-radius: 50px;
        transition: all 300ms ease;
    }

        .event-tabs .tab-btn.active-btn {
            background-color: var(--bs-red);
            color: var(--bs-white);
        }

            .event-tabs .tab-btn.active-btn:before {
                content: "";
                position: absolute;
                bottom: -17px;
                left: 50%;
                width: 0;
                height: 0;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-top: 17px solid var(--bs-red);
                transform: translateX(-50%);
            }

    .event-tabs .tabs-content {
        text-align: left;
    }


.event-section-two {
    position: relative;
    padding: 60px 0;
}

.event-block-two {
    position: relative;
}

    .event-block-two:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .event-block-two .event-block-inner {
        position: relative;
        z-index: 3;
    }

    .event-block-two .inner-box {
        position: relative;
        padding: 32px 35px 32px 40px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 300ms ease;
    }

        .event-block-two .inner-box:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            border-radius: 100px;
            background: linear-gradient(to right, var(--bs-white)) 0%, #EEEEEE 100%);
            transition: all 300ms ease;
        }

        .event-block-two .inner-box .shape-thirty {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            pointer-events: none;
            transition: all 300ms ease;
            z-index: 1;
        }

        .event-block-two .inner-box .shape-thirtyone {
            position: absolute;
            top: 0;
            right: 0;
            opacity: 0;
            pointer-events: none;
            transition: all 300ms ease;
            z-index: 1;
        }

        .event-block-two .inner-box:hover {
            filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
            z-index: 4;
            border-bottom: 1px solid transparent;
        }

            .event-block-two .inner-box:hover:before {
                opacity: 1;
            }

            .event-block-two .inner-box:hover .shape-thirty {
                opacity: 1;
            }

            .event-block-two .inner-box:hover .shape-thirtyone {
                opacity: 1;
            }

            .event-block-two .inner-box:hover .event-hover {
                opacity: 1;
            }

            .event-block-two .inner-box:hover .time-box .time {
                color: var(--bs-dark);
            }

            .event-block-two .inner-box:hover .title-box .title {
                color: var(--e-secondary);
            }

            .event-block-two .inner-box:hover .title-box .speaker-box .speaker {
                color: var(--bs-dark);
            }

            .event-block-two .inner-box:hover .text-box .text {
                color: var(--bs-dark);
            }

            .event-block-two .inner-box:hover .btn-box .read-more {
                transform: scale(1);
            }

        .event-block-two .inner-box .time-box {
            position: relative;
            display: flex;
            align-items: center;
            gap: 13px;
            z-index: 10;
        }

            .event-block-two .inner-box .time-box .icon {
                position: relative;
                color: var(--e-secondary);
                font-size: 18px;
            }

            .event-block-two .inner-box .time-box .time {
                position: relative;
                display: block;
                font-weight: 700;
                color: var(--bs-white);
                margin-bottom: 0;
                transition: all 300ms ease;
            }

        .event-block-two .inner-box .title-box {
            position: relative;
            padding-left: 100px;
            z-index: 10;
        }

            .event-block-two .inner-box .title-box .title {
                color: var(--bs-white);
                margin-bottom: 3px;
            }

            .event-block-two .inner-box .title-box .speaker-box {
                display: flex;
                align-items: center;
                gap: 10px;
            }

                .event-block-two .inner-box .title-box .speaker-box .icon {
                    position: relative;
                    color: var(--e-secondary);
                    font-size: 14px;
                }

                .event-block-two .inner-box .title-box .speaker-box .speaker {
                    position: relative;
                    font-weight: 600;
                    color: var(--bs-white);
                    margin-bottom: 0;
                    transition: all 300ms ease;
                }

                    .event-block-two .inner-box .title-box .speaker-box .speaker span {
                        display: inline-block;
                        font-size: 14px;
                        font-weight: 400;
                    }

        .event-block-two .inner-box .text-box {
            position: relative;
            margin-left: auto;
            z-index: 10;
        }

            .event-block-two .inner-box .text-box .text {
                position: relative;
                color: var(--bs-white);
                margin-bottom: 0;
                font-weight: 300;
                transition: all 300ms ease;
            }

        .event-block-two .inner-box .btn-box {
            position: relative;
            margin-left: auto;
            z-index: 10;
        }

            .event-block-two .inner-box .btn-box .read-more {
                position: relative;
                width: 140px;
                height: 140px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                font-size: 45px;
                color: var(--bs-white);
                background: radial-gradient(circle, #FFA162, #ED5F00);
                transform: scale(0.33);
                z-index: 1;
            }

        .event-block-two .inner-box .event-hover {
            position: absolute;
            top: 0;
            left: 0;
            width: 387px;
            height: 328px;
            border-radius: 23px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position-x: 75%;
            opacity: 0;
            transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
            margin: -100px 0 0 -50px;
            pointer-events: none;
            z-index: 9;
        }

.event-tabs-two {
    position: relative;
    margin-top: -180px;
    text-align: right;
    z-index: 3;
}

    .event-tabs-two .tab-btns {
        display: inline-flex;
        text-align: left;
        margin-bottom: 80px;
        padding: 0 5px;
        background-color: #F5F5F5;
    }

    .event-tabs-two .tab-btn {
        position: relative;
        font-size: 24px;
        line-height: 30px;
        font-weight: 700;
        padding: 20px 40px;
        cursor: pointer;
        color: var(--bs-dark);
        background-color: #F5F5F5;
        transition: all 300ms ease;
        z-index: 1;
    }

        .event-tabs-two .tab-btn:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            width: 0%;
            background-color: var(--e-secondary);
            transition: all 300ms ease;
            z-index: -1;
        }

        .event-tabs-two .tab-btn span {
            position: relative;
            display: block;
            font-weight: 400;
            font-size: 14px;
            transition: all 300ms ease;
        }

        .event-tabs-two .tab-btn .shape-fifteen {
            position: absolute;
            top: 0;
            right: 0;
        }

        .event-tabs-two .tab-btn:hover,
        .event-tabs-two .tab-btn.active-btn {
            color: var(--bs-white);
        }

            .event-tabs-two .tab-btn:hover:before,
            .event-tabs-two .tab-btn.active-btn:before {
                width: 100%;
            }

            .event-tabs-two .tab-btn:hover span,
            .event-tabs-two .tab-btn.active-btn span {
                color: var(--bs-white);
            }

    .event-tabs-two .tabs-content {
        text-align: left;
    }


.event-section-three {
    position: relative;
    padding: 60px 0;
    ;
}

    .event-section-three .sec-title-outer {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .event-section-three .sec-title-outer .text {
            max-width: 788px;
            padding-bottom: 40px;
        }

.event-block-three {
    position: relative;
    margin-bottom: 50px;
}

    .event-block-three.right .inner-box {
        padding: 25px 25px 23px 60px;
        border-radius: 20px 200px 200px 20px;
    }

        .event-block-three.right .inner-box .image-box .image {
            border-radius: 0 200px 200px 0;
        }

    .event-block-three .inner-box {
        position: relative;
        display: flex;
        align-items: center;
        padding: 25px 40px 23px 25px;
        gap: 60px;
        background-color: #F5F5F5;
        border-radius: 200px 20px 20px 200px;
        transition: all 300ms ease;
    }

        .event-block-three .inner-box.active {
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            background-color: var(--bs-white);
        }

            .event-block-three .inner-box.active .image-box .image img {
                transform: scale(1.1);
            }

            .event-block-three .inner-box.active .btn-box .theme-btn.light-bg {
                background-color: var(--bs-indigo);
                color: var(--bs-white);
            }

        .event-block-three .inner-box .image-box {
            position: relative;
            flex-shrink: 0;
        }

            .event-block-three .inner-box .image-box .image {
                position: relative;
                border-radius: 200px 0 0 200px;
                overflow: hidden;
                height: 100%;
                margin-bottom: 0;
                outline: 4px solid var(--bs-white);
                z-index: 3;
            }

                .event-block-three .inner-box .image-box .image img {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    display: block;
                    transition: all 300ms ease;
                    z-index: 2;
                }

        .event-block-three .inner-box .content-box {
            position: relative;
            width: 100%;
        }

            .event-block-three .inner-box .content-box .city {
                position: relative;
                font-weight: 400;
                line-height: 1em;
                color: #666666;
                margin-bottom: 15px;
                display: flex;
                align-items: center;
                gap: 10px;
                transition: all 300ms ease;
            }

                .event-block-three .inner-box .content-box .city .icon {
                    color: var(--e-secondary);
                }

            .event-block-three .inner-box .content-box .title {
                position: relative;
                max-width: 350px;
                margin-bottom: 15px;
            }

                .event-block-three .inner-box .content-box .title a:hover {
                    color: var(--e-secondary);
                }

            .event-block-three .inner-box .content-box .location-box {
                position: relative;
                display: flex;
                align-items: center;
                gap: 18px;
                margin-bottom: 20px;
            }

                .event-block-three .inner-box .content-box .location-box li {
                    display: flex;
                    align-items: center;
                    font-weight: 600;
                    gap: 10px;
                    transition: all 300ms ease;
                }

                    .event-block-three .inner-box .content-box .location-box li span {
                        font-size: 14px;
                        color: var(--bs-dark);
                        transition: all 300ms ease;
                    }

                    .event-block-three .inner-box .content-box .location-box li.date {
                        color: var(--bs-dark);
                        font-weight: 700;
                        transition: all 300ms ease;
                    }

                .event-block-three .inner-box .content-box .location-box .icon {
                    position: relative;
                    color: var(--e-secondary);
                }

            .event-block-three .inner-box .content-box .text {
                position: relative;
                margin-bottom: 0;
                max-width: 556px;
                transition: all 300ms ease;
            }

            .event-block-three .inner-box .content-box .btn-box {
                position: absolute;
                top: 0px;
                right: 0;
                gap: 20px;
                display: flex;
            }

                .event-block-three .inner-box .content-box .btn-box .theme-btn {
                    padding: 18px 36px;
                }

            .event-block-three .inner-box .content-box .thumb-box {
                position: relative;
            }

                .event-block-three .inner-box .content-box .thumb-box .thumb {
                    position: absolute;
                    right: 27px;
                    bottom: -8px;
                    border-radius: 50%;
                    z-index: 1;
                }

                    .event-block-three .inner-box .content-box .thumb-box .thumb img {
                        position: relative;
                        border-radius: 50%;
                        border: 2px solid var(--bs-white);
                        z-index: 2;
                    }

                    .event-block-three .inner-box .content-box .thumb-box .thumb:before {
                        content: "";
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 142px;
                        height: 142px;
                        border-radius: 50%;
                        background-color: #D9D9D9;
                        z-index: 1;
                    }


    .event-tabs-three .tabs-content {
        text-align: left;
    }


.countdown-section {
    position: relative;
}

    .countdown-section .bg-pattern-2 {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .countdown-section .outer-box {
        position: relative;
        padding: 97px 0;
    }

        .countdown-section .outer-box .sec-title h2 {
            font-size: 40px;
        }

        .countdown-section .outer-box .time-countdown {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            padding-top: 28px;
            padding-left: 125px;
        }

            .countdown-section .outer-box .time-countdown .separator {
                position: relative;
                font-size: 36px;
                font-weight: 700;
                line-height: 1em;
                color: var(--bs-white);
            }

            .countdown-section .outer-box .time-countdown .counter-column {
                position: relative;
                text-align: center;
            }

                .countdown-section .outer-box .time-countdown .counter-column .count {
                    position: relative;
                    display: block;
                    font-size: 48px;
                    font-weight: 700;
                    line-height: 1em;
                    color: var(--bs-white);
                    margin-bottom: 0;
                    padding-bottom: 20px;
                    margin-bottom: 15px;
                    text-align: center;
                }

                    .countdown-section .outer-box .time-countdown .counter-column .count:before {
                        content: "";
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        width: 50px;
                        height: 2px;
                        background: linear-gradient(to right, transparent 0%, #ffffff 50%, transparent 100%);
                        transform: translateX(-50%);
                    }

                .countdown-section .outer-box .time-countdown .counter-column sub {
                    position: relative;
                    color: var(--bs-white);
                    font-size: 20px;
                    line-height: 1em;
                    font-weight: 700;
                    z-index: 3;
                }

        .countdown-section .outer-box .btn-box {
            position: relative;
            text-align: right;
            padding-top: 70px;
        }

            .countdown-section .outer-box .btn-box .theme-btn {
                position: relative;
                z-index: 3;
            }

        .countdown-section .outer-box .image {
            position: absolute;
            bottom: 0;
            right: -130px;
            margin-bottom: 0;
        }


.countdown-section-two {
    position: relative;
    background-color: #F5F5F5;
}

    .countdown-section-two .large-container {
        max-width: 1546px;
    }

    .countdown-section-two .outer-box {
        position: relative;
        margin-top: -330px;
        z-index: 4;
    }

        .countdown-section-two .outer-box .image {
            position: relative;
            margin-bottom: 0;
            width: 100%;
            height: 100%;
        }

            .countdown-section-two .outer-box .image img {
                position: relative;
                width: 100%;
                height: 100%;
            }

        .countdown-section-two .outer-box .content-box {
            position: absolute;
            left: 50%;
            bottom: 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 58px 90px;
            border-radius: 100px;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.3);
            max-width: 1108px;
            transform: translateX(-50%);
        }

            .countdown-section-two .outer-box .content-box:before {
                content: "";
                position: absolute;
                top: 13px;
                left: 13px;
                bottom: 13px;
                right: 13px;
                border-radius: 100px;
                background-color: #5800E3;
            }

            .countdown-section-two .outer-box .content-box .title-box {
                position: relative;
                z-index: 1;
            }

                .countdown-section-two .outer-box .content-box .title-box .text {
                    position: relative;
                    margin-bottom: 2px;
                    color: var(--bs-white);
                }

                .countdown-section-two .outer-box .content-box .title-box .title {
                    position: relative;
                    margin-bottom: 0;
                    color: var(--bs-white);
                }

        .countdown-section-two .outer-box .time-countdown {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 34px;
            z-index: 1;
        }

            .countdown-section-two .outer-box .time-countdown .separator {
                position: relative;
                font-size: 40px;
                font-weight: 700;
                line-height: 1em;
                color: var(--bs-white);
            }

            .countdown-section-two .outer-box .time-countdown .counter-column {
                position: relative;
            }

                .countdown-section-two .outer-box .time-countdown .counter-column .count {
                    position: relative;
                    display: block;
                    font-size: 40px;
                    font-weight: 700;
                    line-height: 1em;
                    color: var(--bs-white);
                    margin-bottom: 0;
                }

                .countdown-section-two .outer-box .time-countdown .counter-column sub {
                    position: relative;
                    color: var(--bs-white);
                    font-size: 16px;
                    line-height: 1em;
                    font-weight: 300;
                    text-transform: uppercase;
                    z-index: 1;
                }


.gallery-section {
    position: relative;
    padding: 60px 0;
}

    .gallery-section .outer-box {
        width: 100%;
        overflow: hidden;
        display: flex;
    }

        .gallery-section .outer-box .gallery.one {
            display: flex;
            white-space: nowrap;
            animation: gallery-one 20s linear infinite;
        }

            .gallery-section .outer-box .gallery.one:hover {
                animation-play-state: paused;
            }

        .gallery-section .outer-box .gallery.two {
            display: flex;
            white-space: nowrap;
            animation: gallery-two 20s linear infinite;
        }

            .gallery-section .outer-box .gallery.two:hover {
                animation-play-state: paused;
            }

@keyframes gallery-one {
    from {
        transform: translateX(0%);
    }

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

@keyframes gallery-two {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

.gallery-block {
    position: relative;
    width: 25%;
    flex-shrink: 0;
}

    .gallery-block .inner-box {
        position: relative;
    }

        .gallery-block .inner-box:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            transform: scale(0.9);
            pointer-events: none;
            background-color: var(--bs-red);
            z-index: 5;
            transition: all 300ms ease;
        }

        .gallery-block .inner-box:after {
            position: absolute;
            top: 50%;
            left: 50%;
            color: var(--bs-white);
            font-size: 70px;
            line-height: 1em;
            opacity: 0;
            font-family: flaticon_mycollection;
            pointer-events: none;
            transform: translate(-50%, -50%);
            content: "\f10d";
            z-index: 6;
            transition: all 300ms ease;
        }

        .gallery-block .inner-box:hover:before {
            opacity: 0.8;
            transform: scale(1);
        }

        .gallery-block .inner-box:hover:after {
            opacity: 1;
        }

        .gallery-block .inner-box .image {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 0;
            z-index: 3;
        }

            .gallery-block .inner-box .image:hover img:first-child {
                transform: translatex(0) scalex(1);
                opacity: 1;
                filter: blur(0);
            }

            .gallery-block .inner-box .image:hover img:nth-child(2) {
                transform: translatex(-50%) scalex(2);
                opacity: 0;
                filter: blur(10px);
            }

            .gallery-block .inner-box .image img {
                position: relative;
                width: 100%;
                height: 100%;
                transition: all 500ms ease;
            }

                .gallery-block .inner-box .image img:first-child {
                    position: absolute;
                    left: 0px;
                    top: 0px;
                    right: 0px;
                    bottom: 0px;
                    z-index: 1;
                    transform: translatex(50%) scalex(2);
                    opacity: 0;
                    filter: blur(10px);
                }


.gallery-section-two {
    position: relative;
    padding: 120px 0 0;
}

    .gallery-section-two.pull-down {
        margin-bottom: -63px;
    }

    .gallery-section-two .bg {
        height: 200%;
    }

    .gallery-section-two .title-box {
        position: relative;
        margin-bottom: 150px;
    }

    .gallery-section-two .gallery-box {
        position: relative;
        display: flex;
        overflow: hidden;
    }

        .gallery-section-two .gallery-box .gallery-block-two:nth-child(even) {
            margin-top: 60px;
        }

.gallery-block-two .inner-box {
    position: relative;
    z-index: 3;
}

    .gallery-block-two .inner-box:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transform: scale(0.9);
        pointer-events: none;
        background-color: var(--e-secondary);
        z-index: 5;
        transition: all 300ms ease;
    }

    .gallery-block-two .inner-box:after {
        position: absolute;
        top: 50%;
        left: 50%;
        color: var(--bs-white);
        font-size: 50px;
        line-height: 1em;
        opacity: 0;
        font-family: "Font Awesome 6 Brands";
        pointer-events: none;
        transform: translate(-50%, -50%);
        content: "\f16d";
        z-index: 6;
        transition: all 300ms ease;
    }

    .gallery-block-two .inner-box:hover:before {
        opacity: 0.8;
        transform: scale(1);
    }

    .gallery-block-two .inner-box:hover:after {
        opacity: 1;
    }

    .gallery-block-two .inner-box .image {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        margin-bottom: 0;
        z-index: 3;
    }

        .gallery-block-two .inner-box .image:hover img:first-child {
            transform: translatex(0) scalex(1);
            opacity: 1;
            filter: blur(0);
        }

        .gallery-block-two .inner-box .image:hover img:nth-child(2) {
            transform: translatex(-50%) scalex(2);
            opacity: 0;
            filter: blur(10px);
        }

        .gallery-block-two .inner-box .image img {
            position: relative;
            width: 100%;
            transition: all 500ms ease;
        }

            .gallery-block-two .inner-box .image img:first-child {
                position: absolute;
                left: 0px;
                top: 0px;
                right: 0px;
                bottom: 0px;
                z-index: 1;
                transform: translatex(50%) scalex(2);
                opacity: 0;
                filter: blur(10px);
            }


.pricing-section {
    position: relative;
    padding: 60px 0;
    ;
}

    .pricing-section .icon-three {
        position: absolute;
        top: 157px;
        left: 94px;
    }

    .pricing-section .icon-four {
        position: absolute;
        top: 41px;
        right: 45px;
        animation: fa-spin 40s infinite linear;
    }

.pricing-block {
    margin-bottom: 30px;
}

    .pricing-block.active.two .inner-box .shape-twentynine {
        width: 109px;
        height: 80px;
    }

    .pricing-block.active.two .inner-box .pricing-btn {
        background-color: #D51C55;
        border-color: #D51C55;
    }

    .pricing-block.two .inner-box:hover .pricing-btn {
        background-color: #D51C55;
        border-color: #D51C55;
    }

    .pricing-block.two .inner-box .plan-box {
        background-color: #F33670;
    }

        .pricing-block.two .inner-box .plan-box .plan {
            background-color: #D51C55;
        }

    .pricing-block.two .inner-box .pass {
        color: #D51C55;
    }

    .pricing-block.two .inner-box .list-box {
        background-color: #D51C55;
    }

    .pricing-block.two .inner-box .pricing-btn:before {
        background-color: #D51C55;
    }

    .pricing-block.three .inner-box:hover .pricing-btn {
        background-color: #96B907;
        border-color: #96B907;
    }

    .pricing-block.three .inner-box .plan-box {
        background-color: #96B907;
    }

        .pricing-block.three .inner-box .plan-box .plan {
            background-color: #88A902;
        }

    .pricing-block.three .inner-box .pass {
        color: #96B907;
    }

    .pricing-block.three .inner-box .list-box {
        background-color: #96B907;
    }

    .pricing-block.three .inner-box .pricing-btn:before {
        background-color: #96B907;
    }

    .pricing-block .inner-box {
        position: relative;
        border: 1px solid #dddddd;
        margin-top: 30px;
        border-radius: 30px;
        background-color: var(--bs-white);
        transition: all 300ms ease;
    }

        .pricing-block .inner-box .shape-twentynine {
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 0;
            height: 0;
            z-index: 3;
            transition: all 500ms ease;
        }

        .pricing-block .inner-box:hover .shape-twentynine {
            width: 109px;
            height: 80px;
        }

        .pricing-block .inner-box:hover .pricing-btn {
            border-color: #0290EA;
            background-color: #0290EA;
        }

        .pricing-block .inner-box .plan-box {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -30px 45px 0;
            border-radius: 50px;
            overflow: hidden;
            background-color: #0290EA;
        }

            .pricing-block .inner-box .plan-box .plan {
                position: relative;
                display: inline-block;
                font-weight: 700;
                color: var(--bs-white);
                background-color: #0780C9;
                text-align: center;
                padding: 18.5px 39px;
                margin-bottom: 0;
                text-transform: uppercase;
            }

        .pricing-block .inner-box .top-box {
            position: relative;
            padding: 40px 43px 50px;
        }

        .pricing-block .inner-box .price-box {
            position: relative;
            display: flex;
            align-items: center;
        }

            .pricing-block .inner-box .price-box .price {
                position: relative;
                font-size: 96px;
                letter-spacing: 3px;
                line-height: 1em;
                font-family: var(--text-font);
                margin-bottom: 5px;
            }

            .pricing-block .inner-box .price-box .day {
                position: relative;
                top: 5px;
                left: -10px;
                white-space: nowrap;
                transform: rotate(-90deg);
            }

        .pricing-block .inner-box .pass {
            position: relative;
            color: #0290EA;
            margin-bottom: 0;
        }

        .pricing-block .inner-box .list-box {
            position: relative;
            padding: 70px 40px 50px 65px;
            background-color: #0290EA;
            overflow: hidden;
            border-radius: 20% 0 30px 30px;
        }

            .pricing-block .inner-box .list-box:before {
                content: "";
                position: absolute;
                top: 10px;
                left: 0;
                width: 100%;
                height: 100%;
                border-top-left-radius: 20%;
                background-color: var(--bs-dark);
            }

            .pricing-block .inner-box .list-box .shape-five {
                position: absolute;
                top: 0;
                right: 0;
            }

        .pricing-block .inner-box .btn-box {
            padding-top: 35px;
        }

        .pricing-block .inner-box .pricing-btn {
            padding: 21px 46px;
            border: 1px solid var(--bs-white);
            background-color: var(--bs-dark);
            color: var(--bs-white);
        }

            .pricing-block .inner-box .pricing-btn:before {
                background-color: #0290EA;
            }


.pricing-section-two {
    position: relative;
    padding: 200px 0 120px;
}

    .pricing-section-two .shape-twentytwo {
        position: absolute;
        top: -150px;
        left: 0;
    }

    .pricing-section-two .tabs-column .inner-column {
        position: relative;
        padding-top: 25px;
    }

        .pricing-section-two .tabs-column .inner-column .sec-title .text {
            padding-right: 120px;
        }

        .pricing-section-two .tabs-column .inner-column .tab-btn-box {
            position: relative;
            display: inline-flex;
            padding-top: 30px;
            gap: 47px;
            border-top: 4px solid #D9D9D9;
        }

            .pricing-section-two .tabs-column .inner-column .tab-btn-box .counter-block-three {
                position: relative;
            }

                .pricing-section-two .tabs-column .inner-column .tab-btn-box .counter-block-three .count-box {
                    position: relative;
                    font-size: 96px;
                    line-height: 1em;
                    font-weight: 700;
                    color: var(--bs-indigo);
                    margin-bottom: 30px;
                }

                .pricing-section-two .tabs-column .inner-column .tab-btn-box .counter-block-three .counter-title {
                    position: relative;
                    line-height: 30px;
                    margin-bottom: 0;
                }

    .pricing-section-two .tabs-content .outer-box {
        position: relative;
        text-align: right;
    }

        .pricing-section-two .tabs-content .outer-box .image {
            position: absolute;
            bottom: 40px;
            left: -55px;
            margin-bottom: 0;
        }

            .pricing-section-two .tabs-content .outer-box .image img {
                border-radius: 36px;
            }

        .pricing-section-two .tabs-content .outer-box .pricing-block-two {
            position: relative;
        }

.pricing-block-two {
    flex-shrink: 0;
}

    .pricing-block-two .inner-box {
        position: relative;
        display: inline-block;
        text-align: left;
        border-radius: 130px 0px 30px 30px;
        background-color: #150036;
        min-width: 408px;
        overflow: hidden;
        transition: all 300ms ease;
    }

        .pricing-block-two .inner-box .shape-twentyone {
            position: absolute;
            top: 0;
            right: 0;
            pointer-events: none;
        }

        .pricing-block-two .inner-box .plan {
            position: relative;
            display: inline-block;
            font-weight: 700;
            color: var(--bs-white);
            text-align: right;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .pricing-block-two .inner-box .top-box {
            position: relative;
            padding: 90px 70px 87px 43px;
            text-align: right;
        }

        .pricing-block-two .inner-box .price {
            position: relative;
            font-size: 96px;
            color: var(--bs-white);
        }

        .pricing-block-two .inner-box .day {
            position: relative;
            color: var(--bs-white);
            margin-bottom: 0;
        }

        .pricing-block-two .inner-box .list-box {
            padding: 0 70px 45px 43px;
        }

        .pricing-block-two .inner-box .btn-box {
            padding: 0 40px 40px 40px;
        }

        .pricing-block-two .inner-box .pricing-btn {
            position: relative;
            width: 100%;
            padding: 29px 30px;
            color: var(--bs-white);
            background-color: #270066;
        }

            .pricing-block-two .inner-box .pricing-btn:after {
                content: "";
                position: absolute;
                top: 8px;
                bottom: 8px;
                left: 11px;
                right: 11px;
                width: auto;
                height: auto;
                border-radius: 30px;
                border: 1px solid var(--bs-white);
            }

            .pricing-block-two .inner-box .pricing-btn .btn-bg {
                position: absolute;
                top: 0;
                left: 0;
            }

.pricing-tabs {
    position: relative;
}

    .pricing-tabs .tab-btns {
        position: relative;
        display: inline-flex;
        justify-content: flex-end;
        flex-direction: column;
        gap: 10px;
    }

    .pricing-tabs .tab-btn {
        position: relative;
        font-size: 20px;
        line-height: 1em;
        font-weight: 700;
        padding: 20px 32px;
        border-radius: 50px;
        padding-left: 80px;
        cursor: pointer;
        text-align: left;
        color: var(--bs-dark);
        transition: all 300ms ease;
        z-index: 1;
    }

        .pricing-tabs .tab-btn .icon-box {
            position: absolute;
            left: 22px;
            top: 50%;
            opacity: 0;
            transform: translateY(-50%);
            transition: all 300ms ease;
        }

            .pricing-tabs .tab-btn .icon-box .icon-check-three {
                position: relative;
                z-index: 3;
            }

            .pricing-tabs .tab-btn .icon-box .check-three-bg {
                position: absolute;
                bottom: 0;
                left: -3px;
                transition: all 300ms ease;
            }

        .pricing-tabs .tab-btn:hover,
        .pricing-tabs .tab-btn.active-btn {
            color: var(--e-secondary);
            background-color: #EEEEEE;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
        }

            .pricing-tabs .tab-btn:hover .icon-box,
            .pricing-tabs .tab-btn.active-btn .icon-box {
                opacity: 1;
            }

    .pricing-tabs .tabs-content {
        text-align: left;
    }


.pricing-section-three {
    position: relative;
    padding: 60px 0;
}

    .pricing-section-three .blocks-column {
        margin-bottom: 30px;
    }

        .pricing-section-three .blocks-column .inner-column {
            padding-right: 65px;
        }

    .pricing-section-three .content-column {
        margin-bottom: 30px;
    }

        .pricing-section-three .content-column .inner-column {
            position: relative;
            z-index: 3;
            margin-left: -30px;
        }

            .pricing-section-three .content-column .inner-column .sec-title {
                margin-bottom: 20px;
            }

            .pricing-section-three .content-column .inner-column .text {
                position: relative;
                margin-bottom: 30px;
                z-index: 1;
            }

                .pricing-section-three .content-column .inner-column .text.bold {
                    color: #666666;
                    font-weight: 700;
                    max-width: 315px;
                }

                    .pricing-section-three .content-column .inner-column .text.bold a {
                        font-weight: 700;
                        padding-bottom: 5px;
                        border-bottom: 1px solid var(--e-secondary);
                        color: var(--e-secondary);
                    }

                        .pricing-section-three .content-column .inner-column .text.bold a:hover {
                            color: var(--bs-dark);
                        }

            .pricing-section-three .content-column .inner-column .btn-box {
                padding-top: 10px;
                padding-bottom: 28px;
            }

                .pricing-section-three .content-column .inner-column .btn-box .theme-btn {
                    font-size: 15px;
                    padding: 18px 26px;
                }

.pricing-block-three .inner-box {
    position: relative;
    padding: 75px 83px;
    max-width: 380px;
}

    .pricing-block-three .inner-box:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-size: contain;
        background-image: url(../images/pricing3-bg.png);
        z-index: 1;
    }

    .pricing-block-three .inner-box:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: scale(0.95);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-size: contain;
        background-image: url(../images/pricing3-bg2.png);
        transition: all 300ms ease;
        z-index: 2;
    }

    .pricing-block-three .inner-box.active:after {
        opacity: 1;
        transform: scale(1);
    }

    .pricing-block-three .inner-box.active .content .price,
    .pricing-block-three .inner-box.active .content .text {
        color: var(--bs-white);
    }

.pricing-list li,
.pricing-list .icon {
}

.pricing-block-three .inner-box.active .content .btn-box .theme-btn {
    background-color: var(--bs-white);
    color: var(--bs-dark);
}

    .pricing-block-three .inner-box.active .content .btn-box .theme-btn:hover {
        color: var(--bs-white);
    }

.pricing-block-three .inner-box.active .content .skill-item {
    background-color: var(--bs-white);
}

.pricing-block-three .inner-box.active .content .seats {
    color: var(--bs-white);
}

.pricing-block-three .inner-box .content {
    position: relative;
    z-index: 3;
}

    .pricing-block-three .inner-box .content .price {
        position: relative;
        font-size: 48px;
        line-height: 1em;
        margin-bottom: 5px;
        color: var(--bs-dark);
        text-align: center;
        transition: all 300ms ease;
    }

        .pricing-block-three .inner-box .content .price .dollar {
            font-family: var(--text-font);
            font-weight: 400;
        }

    .pricing-block-three .inner-box .content .text {
        position: relative;
        color: #536A72;
        margin-bottom: 20px;
        text-align: center;
        transition: all 300ms ease;
    }

    .pricing-block-three .inner-box .content .author-box {
        position: relative;
        text-align: center;
        margin-bottom: 20px;
    }

        .pricing-block-three .inner-box .content .author-box img {
            border-radius: 50%;
            border: 2px solid var(--bs-white);
            margin-right: -25px;
        }

            .pricing-block-three .inner-box .content .author-box img:last-child {
                margin-right: 0;
            }

.pricing-list {
    position: relative;
    margin-bottom: 20px;
}

    .pricing-list li {
        position: relative;
        display: flex;
        align-items: center;
        line-height: 42px;
        gap: 10px;
        transition: all 300ms ease;
    }

        .pricing-list li i {
            position: relative;
            line-height: 1em;
            color: var(--e-secondary);
            transition: all 300ms ease;
        }

.pricing-block-three .inner-box .content .btn-box {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}

    .pricing-block-three .inner-box .content .btn-box .theme-btn {
        padding: 19px 31px;
        background-color: #4B484F;
    }

.pricing-block-three .inner-box .content .skill-item {
    position: relative;
    background-color: #D9D9D9;
    width: 100%;
    height: 15px;
    border-radius: 30px;
    padding: 2px;
    margin-bottom: 10px;
    transition: all 300ms ease;
}

    .pricing-block-three .inner-box .content .skill-item .skill-bar {
        position: relative;
        width: 166px;
        height: 100%;
        border-radius: 30px;
        background-color: var(--e-secondary);
    }

.pricing-block-three .inner-box .content .seats {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 0;
    text-align: center;
    transition: all 300ms ease;
}


.features-section {
    position: relative;
    padding: 60px 0;
    background-color: #FFF8CC;
}

    .features-section .shape-one {
        position: absolute;
        top: 84px;
        right: 72px;
    }

    .features-section .shape-two {
        position: absolute;
        top: 106px;
        left: 44px;
        animation: fa-spin 20s infinite linear;
    }

    .features-section .row {
        margin: 0;
    }

        .features-section .row .feature-block {
            padding: 0;
        }

.feature-block {
    margin-bottom: 30px;
}

    .feature-block .inner-box {
        position: relative;
        padding: 59px 56px;
        border-radius: 20px;
        overflow: hidden;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: var(--bs-white);
        background-image: url(../images/feature-bg.png);
        transition: all 300ms ease;
        z-index: 3;
    }

        .feature-block .inner-box:before {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0%;
            height: 100%;
            z-index: 2;
            background-image: url(../images/feature-hover-bg.png);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            transition: all 300ms ease;
        }

        .feature-block .inner-box:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            background-color: var(--bs-white);
            transition: all 300ms ease;
        }

        .feature-block .inner-box.active {
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
        }

            .feature-block .inner-box.active::before {
                width: 100%;
            }

            .feature-block .inner-box.active::after {
                opacity: 1;
            }

            .feature-block .inner-box.active .icon {
                transform: scaleX(-1);
            }

            .feature-block .inner-box.active .read-more span {
                width: 90px;
            }

        .feature-block .inner-box .icon {
            position: relative;
            font-size: 72px;
            display: inline-block;
            color: var(--bs-red);
            margin-bottom: 30px;
            transition: all 300ms ease;
            z-index: 2;
        }

        .feature-block .inner-box .content {
            position: relative;
            z-index: 3;
        }

        .feature-block .inner-box .title {
            position: relative;
            margin-bottom: 20px;
            color: var(--bs-dark);
        }

        .feature-block .inner-box .text {
            position: relative;
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 20px;
            padding-right: 20px;
            transition: all 300ms ease;
        }

        .feature-block .inner-box .read-more {
            position: relative;
            display: inline-flex;
            align-items: center;
            font-size: 16px;
            font-weight: 700;
            color: #5A3695;
        }

            .feature-block .inner-box .read-more span {
                position: relative;
                display: block;
                white-space: nowrap;
                overflow: hidden;
                width: 0;
                transition: all 300ms ease;
            }


.feature-section-two {
    position: relative;
    padding: 60px 0;
    ;
}

.feature-block-two {
    margin-bottom: 30px;
}

    .feature-block-two .inner-box {
        position: relative;
        padding: 45px 45px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 40px;
        background-color: #F5F5F5;
        transition: all 300ms ease;
        z-index: 3;
    }

        .feature-block-two .inner-box:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 135px;
            height: 203px;
            background-image: url(../images/feature2-shape.png);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            z-index: 3;
        }

        .feature-block-two .inner-box:after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            border-radius: 20px;
            background: linear-gradient(to bottom, #7906D2 0%, #3E036C 50%, #5C05A0 100%);
            transition: all 500ms ease;
        }

        .feature-block-two .inner-box.active {
            border-top-right-radius: 20px;
        }

            .feature-block-two .inner-box.active:after {
                width: 100%;
            }

            .feature-block-two .inner-box.active .icon-box {
                border-color: rgba(255, 255, 255, 0.1);
            }

                .feature-block-two .inner-box.active .icon-box .icon {
                    transform: scaleX(-1);
                    color: var(--bs-white);
                }

                .feature-block-two .inner-box.active .icon-box .icon-seven {
                    opacity: 0;
                }

                .feature-block-two .inner-box.active .icon-box .icon-eight {
                    opacity: 1;
                }

            .feature-block-two .inner-box.active .read-more span {
                width: 90px;
            }

            .feature-block-two .inner-box.active .title,
            .feature-block-two .inner-box.active .text,
            .feature-block-two .inner-box.active .read-more {
                color: var(--bs-white);
            }

        .feature-block-two .inner-box .icon-box {
            position: relative;
            width: 116px;
            height: 116px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            z-index: 3;
        }

            .feature-block-two .inner-box .icon-box .icon {
                position: relative;
                font-size: 72px;
                line-height: 1em;
                color: var(--e-secondary);
                transition: all 300ms ease;
            }

            .feature-block-two .inner-box .icon-box .icon-seven {
                position: absolute;
                top: 50%;
                left: 50%;
                margin-top: -62px;
                margin-left: -59.5px;
                animation: fa-spin 15s linear infinite;
                transition: all 300ms ease;
            }

            .feature-block-two .inner-box .icon-box .icon-eight {
                position: absolute;
                top: 50%;
                left: 50%;
                margin-top: -62px;
                margin-left: -59.5px;
                animation: fa-spin 15s linear infinite;
                opacity: 0;
                transition: all 300ms ease;
            }

        .feature-block-two .inner-box .content {
            position: relative;
            z-index: 3;
        }

        .feature-block-two .inner-box .title {
            position: relative;
            margin-bottom: 15px;
            transition: all 300ms ease;
        }

        .feature-block-two .inner-box .text {
            position: relative;
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 12px;
            max-width: 300px;
            transition: all 300ms ease;
        }

        .feature-block-two .inner-box .read-more {
            position: relative;
            display: inline-flex;
            align-items: center;
            font-size: 16px;
            font-weight: 700;
            color: #5A3695;
            transition: all 0ms ease;
        }

            .feature-block-two .inner-box .read-more span {
                position: relative;
                display: block;
                white-space: nowrap;
                overflow: hidden;
                width: 0;
                transition: all 300ms ease;
            }


.feature-section-three {
    position: relative;
    padding: 60px 0;
    ;
    background-color: #F5F5F5;
}

    .feature-section-three .large-container {
        max-width: 1550px;
    }

.feature-block-three {
    margin-bottom: 30px;
}

    .feature-block-three .inner-box {
        position: relative;
        padding: 20px 25px 60px 38px;
        max-width: 350px;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .feature-block-three .inner-box:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 500px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            background-size: 100% 100%;
            background-image: url(../images/feature3-bg.png);
            z-index: 2;
        }

        .feature-block-three .inner-box:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 500px;
            transform: scale(0.8);
            opacity: 0;
            pointer-events: none;
            transform-origin: bottom right;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            background-size: 100% 100%;
            background-image: url(../images/feature3-hover-bg.png);
            transition: all 300ms ease;
            z-index: 2;
        }

        .feature-block-three .inner-box.active:after {
            transform: scale(1);
            opacity: 1;
        }

        .feature-block-three .inner-box.active .icon-box .icon {
            color: var(--bs-white);
            opacity: 1;
            transform: scaleX(-1);
            font-size: 75px;
        }

            .feature-block-three .inner-box.active .icon-box .icon:after {
                opacity: 1;
            }

        .feature-block-three .inner-box.active .content .title,
        .feature-block-three .inner-box.active .content .text {
            color: var(--bs-white);
        }

        .feature-block-three .inner-box.active .read-more {
            color: var(--bs-white);
        }

            .feature-block-three .inner-box.active .read-more:before {
                transform: scale(1);
            }

        .feature-block-three .inner-box .icon-box {
            position: relative;
            text-align: right;
            z-index: 3;
        }

            .feature-block-three .inner-box .icon-box .icon {
                position: relative;
                color: var(--bs-dark);
                font-size: 90px;
                opacity: 0.2;
                width: 137px;
                height: 137px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: auto;
                background-color: transparent;
                border-radius: 50%;
                line-height: 1em;
                transition: all 300ms ease;
            }

                .feature-block-three .inner-box .icon-box .icon:before {
                    position: relative;
                    z-index: 3;
                }

                .feature-block-three .inner-box .icon-box .icon:after {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    opacity: 0;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    animation: fa-spin 10s infinite linear;
                    background-image: url(../images/feature-icon-bg.png);
                    transition: all 300ms ease;
                    z-index: 2;
                }

        .feature-block-three .inner-box .content {
            position: relative;
            z-index: 3;
        }

            .feature-block-three .inner-box .content .title {
                position: relative;
                font-weight: 500;
                max-width: 227px;
                color: var(--bs-dark);
                margin-bottom: 18px;
            }

            .feature-block-three .inner-box .content .text {
                position: relative;
                margin-bottom: 0;
                transition: all 300ms ease;
            }

        .feature-block-three .inner-box .read-more {
            position: absolute;
            top: -14px;
            left: 0;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            border-radius: 20px;
            color: #3A0195;
            background-color: var(--bs-white);
            z-index: 3;
            transition: all 300ms ease;
        }

            .feature-block-three .inner-box .read-more .icon {
                position: relative;
                z-index: 1;
            }

            .feature-block-three .inner-box .read-more:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border-radius: 20px;
                transform: scale(0);
                transform-origin: bottom right;
                background-color: var(--e-secondary);
                transition: all 500ms ease;
            }


.about-section {
    position: relative;
    padding: 60px 0;
}

    .about-section .icon-one {
        position: absolute;
        top: 280px;
        left: 385px;
    }

    .about-section .icon-two {
        position: absolute;
        top: 50%;
        right: 66px;
        transform: translateY(-50%);
    }

    .about-section .outer-box {
        padding-right: 66px;
        margin-bottom: 35px;
    }

    .about-section .image-box {
        position: relative;
        text-align: right;
    }

        .about-section .image-box .image-outer {
            position: relative;
            display: inline-block;
        }

            .about-section .image-box .image-outer .image {
                position: relative;
                margin-bottom: 0;
            }

                .about-section .image-box .image-outer .image img {
                    border-radius: 50px;
                }

            .about-section .image-box .image-outer .icon-nineteen {
                position: absolute;
                bottom: 0;
                left: 0;
            }

            .about-section .image-box .image-outer .icon-twenty {
                position: absolute;
                top: 0;
                right: 0;
            }

            .about-section .image-box .image-outer .icon-twentyfour {
                position: absolute;
                bottom: 8px;
                left: 0;
            }

        .about-section .image-box .speaker-box {
            position: absolute;
            right: 69px;
            bottom: -51px;
            display: inline-flex;
            align-items: center;
            width: 297px;
            text-align: left;
            justify-content: center;
            padding: 10px;
        }

            .about-section .image-box .speaker-box:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 297px;
                height: 102px;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                background-image: url(../images/about-shape.png);
            }

            .about-section .image-box .speaker-box .icon {
                position: relative;
                font-size: 60px;
                line-height: 1em;
                color: var(--bs-red);
            }

            .about-section .image-box .speaker-box .count {
                position: relative;
                color: #5A3695;
                font-size: 84px;
                line-height: 1em;
                font-weight: 800;
                padding-left: 5px;
                padding-right: 10px;
            }

            .about-section .image-box .speaker-box .text {
                position: relative;
                line-height: 20px;
                color: var(--bs-dark);
                font-weight: 800;
            }

    .about-section .outer-box.two {
        position: relative;
        display: flex;
        align-items: flex-end;
        padding-right: 0;
        margin-bottom: 0;
        gap: 74px;
    }

        .about-section .outer-box.two .image-box {
            flex-shrink: 0;
        }

            .about-section .outer-box.two .image-box .image {
                margin-bottom: 0;
            }

        .about-section .outer-box.two .sec-title {
            margin-bottom: 40px;
        }

            .about-section .outer-box.two .sec-title .text {
                line-height: 36px;
                max-width: 705px;
            }

        .about-section .outer-box.two .btn-box {
            display: flex;
            gap: 20px;
            padding-bottom: 10px;
        }

    .about-section .outer-box.show-xl {
        display: none;
        margin-top: 50px;
    }


.about-section-two {
    position: relative;
    padding: 60px 0;
    ;
}

    .about-section-two .shape-fourteen {
        position: absolute;
        top: 100px;
        right: -300px;
        animation: fa-spin 50s linear infinite;
    }

    .about-section-two .image-column {
        margin-bottom: 50px;
    }

        .about-section-two .image-column .inner-column {
            position: relative;
            padding-bottom: 145px;
        }

            .about-section-two .image-column .inner-column .icon-six {
                position: absolute;
                bottom: 0;
                left: -120px;
                animation: fa-spin 15s infinite linear;
            }

            .about-section-two .image-column .inner-column .image {
                position: relative;
                border-radius: 30px;
                margin-bottom: 0;
                overflow: hidden;
            }

                .about-section-two .image-column .inner-column .image.two {
                    position: absolute;
                    bottom: 0;
                    right: 20px;
                }

                    .about-section-two .image-column .inner-column .image.two img {
                        border: 7px solid var(--bs-white);
                    }

                .about-section-two .image-column .inner-column .image img {
                    position: relative;
                    border-radius: 30px;
                    transform-origin: center;
                    transition: all 300ms ease;
                }

                .about-section-two .image-column .inner-column .image:hover img {
                    transform: scale(1.1) !important;
                }

            .about-section-two .image-column .inner-column .author-box {
                position: absolute;
                bottom: 75px;
                left: 115px;
                padding: 20px;
                border-radius: 100px;
                display: flex;
                box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
                background-color: var(--bs-white);
                z-index: 3;
            }

                .about-section-two .image-column .inner-column .author-box img {
                    position: relative;
                    width: 100px;
                    height: 100px;
                    margin-left: -30px;
                    border-radius: 50%;
                    border: 2px solid var(--bs-white);
                }

                    .about-section-two .image-column .inner-column .author-box img:first-child {
                        margin-left: 0;
                    }

                .about-section-two .image-column .inner-column .author-box .text {
                    position: relative;
                    width: 100px;
                    height: 100px;
                    margin-left: -30px;
                    border-radius: 50%;
                    font-size: 48px;
                    color: var(--bs-white);
                    font-weight: 600;
                    line-height: 1em;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                    background-color: var(--e-secondary);
                }

    .about-section-two .content-column {
        margin-bottom: 50px;
    }

        .about-section-two .content-column .inner-column {
            position: relative;
            padding-top: 35px;
            padding-left: 30px;
            padding-right: 160px;
        }

            .about-section-two .content-column .inner-column .btn-box {
                padding-top: 45px;
                display: flex;
                gap: 29px;
            }


.about-section-three {
    position: relative;
    padding: 60px 0;
    background-color: #F5F5F5;
}

    .about-section-three .large-container {
        max-width: 1550px;
    }

    .about-section-three .image-column {
        margin-bottom: 50px;
    }

        .about-section-three .image-column .inner-column {
            position: relative;
        }

            .about-section-three .image-column .inner-column .image-box {
                position: relative;
                display: flex;
                align-items: flex-end;
                gap: 25px;
            }

                .about-section-three .image-column .inner-column .image-box .image {
                    position: relative;
                    border-radius: 205px;
                    margin-bottom: 0;
                    overflow: hidden;
                }

                    .about-section-three .image-column .inner-column .image-box .image img {
                        position: relative;
                        border-radius: 205px;
                        transform-origin: center;
                        transition: all 300ms ease;
                    }

                    .about-section-three .image-column .inner-column .image-box .image:hover img {
                        transform: scale(1.1) !important;
                    }

            .about-section-three .image-column .inner-column .exp-box {
                position: absolute;
                top: 0;
                right: 35px;
                border-radius: 150px;
                overflow: hidden;
                padding: 27px 50px 27px 45px;
                gap: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .about-section-three .image-column .inner-column .exp-box:before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 310px;
                    height: 120px;
                    border-radius: 150px;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    background-image: url(../images/exp-bg.png);
                }

                .about-section-three .image-column .inner-column .exp-box .title {
                    position: relative;
                    font-size: 64px;
                    line-height: 1em;
                    color: var(--bs-white);
                    margin-bottom: 0;
                }

                .about-section-three .image-column .inner-column .exp-box .text {
                    position: relative;
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 24px;
                    color: var(--bs-white);
                    margin-bottom: 0;
                }

    .about-section-three .content-column {
        margin-bottom: 50px;
    }

        .about-section-three .content-column .inner-column {
            position: relative;
            padding-right: 100px;
            padding-left: 50px;
            margin-top: -10px;
        }

            .about-section-three .content-column .inner-column .sec-title .text {
                padding-right: 30px;
            }

            .about-section-three .content-column .inner-column .blocks-box {
                position: relative;
            }

                .about-section-three .content-column .inner-column .blocks-box .thumb-box {
                    position: relative;
                }

                    .about-section-three .content-column .inner-column .blocks-box .thumb-box .image {
                        position: absolute;
                        bottom: -95px;
                        right: 10px;
                    }

                        .about-section-three .content-column .inner-column .blocks-box .thumb-box .image img {
                            position: relative;
                            z-index: 2;
                        }

                        .about-section-three .content-column .inner-column .blocks-box .thumb-box .image:before {
                            content: "";
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 190px;
                            height: 190px;
                            border-radius: 50%;
                            background-color: var(--bs-white);
                            z-index: 1;
                        }

                        .about-section-three .content-column .inner-column .blocks-box .thumb-box .image:after {
                            content: "";
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 209px;
                            height: 209px;
                            border-radius: 50%;
                            background-color: #BBBBBB;
                        }

.about-block {
    margin-bottom: 30px;
}

    .about-block .inner-box {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 26px;
    }

        .about-block .inner-box:hover .icon {
            transform: scaleX(-1);
        }

        .about-block .inner-box .icon {
            position: relative;
            color: #52048E;
            font-size: 48px;
            transition: all 300ms ease;
        }

        .about-block .inner-box svg {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            transition: all 300ms ease;
        }

        .about-block .inner-box .title {
            position: relative;
            color: #52048E;
            margin-bottom: 2px;
        }

        .about-block .inner-box .text {
            position: relative;
            margin-bottom: 0;
        }

            .about-block .inner-box .text.two {
                padding-right: 250px;
            }


.marquee-section {
    position: relative;
    padding: 20px 0 60px;
}

    .marquee-section .text {
        position: relative;
        transition: all 300ms ease;
    }

        .marquee-section .text:hover {
            color: var(--bs-red);
        }

.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

    .marquee-container:hover .marquee {
        animation-play-state: paused;
    }

    .marquee-container .marquee {
        display: flex;
        white-space: nowrap;
        animation: marquee 50s linear infinite;
    }

        .marquee-container .marquee .text {
            position: relative;
            color: #dddddd;
            font-size: 130px;
            font-weight: 700;
            line-height: 1em;
            padding: 0 30px;
            text-transform: uppercase;
        }

            .marquee-container .marquee .text:hover {
                color: var(--bs-red);
            }

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

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


.marquee-section-two {
    position: relative;
    padding: 10px 0 120px;
}

    .marquee-section-two .marquee-container .text {
        font-size: 130px;
        line-height: 1em;
        transition: all 300ms ease;
    }

        .marquee-section-two .marquee-container .text.bold {
            font-weight: 700;
            color: var(--bs-dark);
        }

            .marquee-section-two .marquee-container .text.bold:hover {
                color: var(--bs-red);
            }

        .marquee-section-two .marquee-container .text.light {
            color: #DDDDDD;
        }

            .marquee-section-two .marquee-container .text.light:hover {
                color: var(--bs-red);
            }

        .marquee-section-two .marquee-container .text.text-border {
            color: var(--bs-white);
            text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
        }

            .marquee-section-two .marquee-container .text.text-border:hover {
                color: var(--bs-dark);
            }

        .marquee-section-two .marquee-container .text.dot {
            color: #dddddd !important;
        }


.marquee-section-three {
    position: relative;
    padding: 34px 0;
    background-color: #150036;
}

    .marquee-section-three .marquee-container .text {
        font-size: 32px;
        font-weight: 700;
        line-height: 1em;
        color: var(--bs-white);
        transition: all 300ms ease;
    }


.map-section {
    position: relative;
    padding: 60px 0;
}

    .map-section iframe {
        margin-bottom: -10px;
        width: 100%;
        height: 500px;
    }




.testimonial-section {
    position: relative;
    padding: 60px 0;
}

    .testimonial-section .shape-nine {
        position: absolute;
        top: -50%;
        left: 0;
        pointer-events: none;
    }

    .testimonial-section .outer-box {
        position: relative;
    }

    .testimonial-section .nav-box {
        position: absolute;
        top: 50%;
        left: -150px;
        right: -150px;
        display: flex;
        justify-content: space-between;
        height: 89px;
    }

    .testimonial-section .swiper-button-prev {
        border-radius: 50px 50px 0 50px;
    }

    .testimonial-section .swiper-button-next {
        border-radius: 50px 50px 50px 0;
    }

    .testimonial-section .swiper-button-prev,
    .testimonial-section .swiper-button-next {
        width: 89px;
        height: 89px;
        margin-top: -120px;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bs-white);
        background-color: #5A3695;
        transition: all 300ms ease;
    }

        .testimonial-section .swiper-button-prev:after,
        .testimonial-section .swiper-button-next:after {
            display: none;
        }

        .testimonial-section .swiper-button-prev:hover,
        .testimonial-section .swiper-button-next:hover {
            background-color: var(--bs-red);
        }

.testimonial-block {
    margin-bottom: 40px;
}

    .testimonial-block .inner-box {
        position: relative;
        padding: 110px 85px 120px;
        background-color: #EEEEEE;
        border-radius: 20px 20px 20px 150px;
        z-index: 3;
    }

        .testimonial-block .inner-box:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: scale(0.8);
            opacity: 0;
            border-radius: 20px 20px 20px 150px;
            background-image: url(../images/testi-bg.png);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            transition: all 300ms ease;
        }

        .testimonial-block .inner-box:hover:before {
            transform: scale(1);
            opacity: 100;
        }

        .testimonial-block .inner-box:hover .content .name,
        .testimonial-block .inner-box:hover .content .designation,
        .testimonial-block .inner-box:hover .content .text,
        .testimonial-block .inner-box:hover .content .rating i {
            color: var(--bs-white);
        }

        .testimonial-block .inner-box:hover .content .author-box .icon {
            color: var(--bs-white);
        }

        .testimonial-block .inner-box:hover .image-box .image img {
            transform: scale(1.1);
        }

        .testimonial-block .inner-box:hover .image-box .icon-five {
            opacity: 0;
        }

        .testimonial-block .inner-box:hover .image-box .icon-twentyone {
            opacity: 1;
        }

        .testimonial-block .inner-box:hover .shape-thirteen {
            opacity: 1;
        }

        .testimonial-block .inner-box:hover .shape-eight {
            opacity: 0;
        }

        .testimonial-block .inner-box .testi-shape-one {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
        }

        .testimonial-block .inner-box .testi-shape-two {
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: 2;
        }

        .testimonial-block .inner-box .shape-eight {
            position: absolute;
            bottom: 0;
            right: 0;
            transition: all 300ms ease;
        }

        .testimonial-block .inner-box .shape-thirteen {
            position: absolute;
            bottom: 0;
            right: 0;
            opacity: 0;
            transition: all 300ms ease;
        }

        .testimonial-block .inner-box .content {
            position: relative;
        }

            .testimonial-block .inner-box .content .author-box {
                position: relative;
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
            }

                .testimonial-block .inner-box .content .author-box .icon {
                    position: relative;
                    font-size: 50px;
                    color: var(--bs-indigo);
                    transition: all 300ms ease;
                }

            .testimonial-block .inner-box .content .name {
                position: relative;
                margin-bottom: 14px;
                color: var(--bs-dark);
                transition: all 300ms ease;
            }

            .testimonial-block .inner-box .content .designation {
                position: relative;
                display: block;
                font-size: 24px;
                line-height: 1em;
                margin-bottom: 40px;
                color: var(--bs-dark);
                transition: all 300ms ease;
            }

            .testimonial-block .inner-box .content .text {
                position: relative;
                font-size: 24px;
                line-height: 42px;
                color: var(--bs-dark);
                margin-bottom: 20px;
                transition: all 300ms ease;
            }

            .testimonial-block .inner-box .content .rating {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

                .testimonial-block .inner-box .content .rating i {
                    position: relative;
                    font-size: 20px;
                    color: var(--bs-red);
                    transition: all 300ms ease;
                }

        .testimonial-block .inner-box .image-box {
            position: absolute;
            bottom: -39px;
            left: 0;
        }

            .testimonial-block .inner-box .image-box .icon-five {
                position: absolute;
                top: 18px;
                right: -46px;
                transition: all 300ms ease;
            }

            .testimonial-block .inner-box .image-box .icon-twentyone {
                position: absolute;
                top: 18px;
                left: -46px;
                opacity: 0;
                z-index: 1;
                transition: all 300ms ease;
            }

        .testimonial-block .inner-box .image {
            position: relative;
            width: 173px;
            height: 173px;
            overflow: hidden;
            margin-bottom: 0;
            border-radius: 50%;
            border: 3px solid var(--bs-white);
        }

            .testimonial-block .inner-box .image img {
                position: relative;
                transition: all 300ms ease;
            }


.testimonial-section-two {
    position: relative;
    padding: 270px 0 120px;
}

    .testimonial-section-two .bg-box:before {
        content: "";
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        height: 145px;
        -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
        clip-path: polygon(100% 0, 0 0, 100% 100%);
        background-color: var(--bs-white);
        z-index: 2;
    }

    .testimonial-section-two .bg-box .bg-image {
        height: 977px;
    }

        .testimonial-section-two .bg-box .bg-image:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background-color: #150036;
            opacity: 0.8;
            z-index: 1;
        }

        .testimonial-section-two .bg-box .bg-image:after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 273px;
            -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
            clip-path: polygon(0 100%, 100% 0, 100% 100%);
            background-color: var(--bs-white);
            z-index: 1;
        }

    .testimonial-section-two .sec-title-outer {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 40px;
        z-index: 1;
    }

        .testimonial-section-two .sec-title-outer .image-box {
            position: relative;
        }

            .testimonial-section-two .sec-title-outer .image-box img {
                border-radius: 50%;
                margin-right: -36px;
                width: 100px;
                height: 100px;
                border: 2px solid var(--bs-white);
            }

                .testimonial-section-two .sec-title-outer .image-box img:last-child {
                    margin-right: 0;
                }

    .testimonial-section-two .outer-box {
        position: relative;
        padding-top: 70px;
        z-index: 3;
    }

    .testimonial-section-two .bottom-box {
        position: relative;
        margin-top: -15px;
        z-index: 1;
    }

        .testimonial-section-two .bottom-box .text {
            position: relative;
            color: var(--bs-dark);
            margin-bottom: 0;
            width: 100%;
            text-align: center;
        }

            .testimonial-section-two .bottom-box .text a {
                color: var(--e-secondary);
            }

                .testimonial-section-two .bottom-box .text a:hover {
                    text-decoration: underline;
                }

        .testimonial-section-two .bottom-box .counter-block-two {
            position: absolute;
            bottom: 0;
            right: 0;
        }

            .testimonial-section-two .bottom-box .counter-block-two .count-box {
                position: relative;
                font-size: 64px;
                font-weight: 700;
                color: var(--bs-dark);
                line-height: 1em;
                margin-bottom: 0px;
            }

            .testimonial-section-two .bottom-box .counter-block-two .counter-title {
                position: relative;
                color: #666666;
                margin-bottom: 0;
            }

.testimonial-block-two {
    position: relative;
}

    .testimonial-block-two:nth-child(n+2) {
        top: -73px;
    }

    .testimonial-block-two:nth-child(n+3) {
        top: -146px;
    }

    .testimonial-block-two .inner-box {
        position: relative;
    }

        .testimonial-block-two .inner-box:before {
            content: "";
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            background-image: url(../images/testi2-bg.png);
        }

        .testimonial-block-two .inner-box:after {
            content: "";
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            opacity: 0;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            background-image: url(../images/testi2-bg2.png);
            transition: all 300ms ease;
        }

        .testimonial-block-two .inner-box:hover:after {
            opacity: 1;
        }

        .testimonial-block-two .inner-box .content {
            position: relative;
            padding: 52px 53px 28px 56px;
            z-index: 1;
        }

            .testimonial-block-two .inner-box .content .text {
                position: relative;
                font-size: 18px;
                line-height: 36px;
                color: var(--bs-dark);
                margin-bottom: 0;
            }

            .testimonial-block-two .inner-box .content .icon-box {
                text-align: right;
            }

                .testimonial-block-two .inner-box .content .icon-box .quote-icon {
                    position: relative;
                    font-size: 45px;
                    color: var(--bs-indigo);
                }

            .testimonial-block-two .inner-box .content .rating {
                position: relative;
                display: flex;
                align-items: center;
                margin-top: -8px;
                gap: 2px;
            }

                .testimonial-block-two .inner-box .content .rating i {
                    position: relative;
                    font-size: 22px;
                    color: #E76004;
                    transition: all 300ms ease;
                }

        .testimonial-block-two .inner-box .author-box {
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 53px 60px 56px;
            z-index: 1;
        }

            .testimonial-block-two .inner-box .author-box .designation {
                position: relative;
                font-size: 20px;
                margin-bottom: 5px;
                color: var(--bs-dark);
            }

            .testimonial-block-two .inner-box .author-box .name {
                position: relative;
                color: var(--bs-dark);
                margin-bottom: 0;
            }

            .testimonial-block-two .inner-box .author-box .image-box {
                position: absolute;
                bottom: 0;
                right: 0;
                display: inline-block;
            }

                .testimonial-block-two .inner-box .author-box .image-box .image {
                    position: relative;
                    margin-bottom: 0;
                    border-radius: 10% 50% 50% 50%;
                    border: 3px solid var(--bs-white);
                }

                    .testimonial-block-two .inner-box .author-box .image-box .image img {
                        position: relative;
                        width: 145px;
                        height: 145px;
                        -o-object-fit: cover;
                        object-fit: cover;
                        border-radius: 10% 50% 50% 50%;
                        z-index: 1;
                    }

                    .testimonial-block-two .inner-box .author-box .image-box .image:before {
                        content: "";
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        width: 94px;
                        height: 94px;
                        border-radius: 50%;
                        background-color: var(--e-secondary);
                    }


.testimonial-section-three {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

    .testimonial-section-three .swiper-three-thumb-outer {
        position: relative;
        max-width: 620px;
        overflow: hidden;
        margin: 0 auto -120px;
        z-index: 99;
    }

    .testimonial-section-three .testi-swiper-three-thumb {
        text-align: center;
        width: 120px !important;
        height: 195px !important;
        overflow: visible;
    }

        .testimonial-section-three .testi-swiper-three-thumb .swiper-slide {
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .testimonial-section-three .testi-swiper-three-thumb .swiper-slide img {
                width: 100%;
                height: auto;
                border-radius: 50%;
                border: 5px solid var(--bs-white);
                transform: scale(1.1);
            }

            .testimonial-section-three .testi-swiper-three-thumb .swiper-slide.swiper-slide-thumb-active {
                z-index: 3;
            }

                .testimonial-section-three .testi-swiper-three-thumb .swiper-slide.swiper-slide-thumb-active img {
                    box-shadow: 0px 4px 10px #ED5F00;
                    transform: scale(1.4);
                }

    .testimonial-section-three .swiper-button-next,
    .testimonial-section-three .swiper-button-prev {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 71px;
        height: 135px;
        transform: translateY(-50%);
    }

        .testimonial-section-three .swiper-button-next:after,
        .testimonial-section-three .swiper-button-prev:after {
            color: var(--bs-dark);
            font-size: 24px;
            font-weight: 900;
            font-family: var(--fa-style-family, "Font Awesome 6 Pro");
            transition: all 300ms ease;
        }

        .testimonial-section-three .swiper-button-next:hover:after,
        .testimonial-section-three .swiper-button-prev:hover:after {
            color: var(--e-secondary);
        }

    .testimonial-section-three .swiper-button-prev {
        left: 0;
        background-image: url(../images/arrow-bg-one.png);
    }

        .testimonial-section-three .swiper-button-prev:after {
            content: "\f104";
        }

    .testimonial-section-three .swiper-button-next {
        right: 0;
        background-image: url(../images/arrow-bg-two.png);
    }

        .testimonial-section-three .swiper-button-next:after {
            content: "\f105";
        }

.testimonial-block-three .inner-box {
    position: relative;
    border-radius: 36px;
    padding: 135px 0 90px;
    margin-bottom: 50px;
    text-align: center;
}

    .testimonial-block-three .inner-box .bg {
        position: absolute;
        left: 0;
        top: 0;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 36px;
    }

    .testimonial-block-three .inner-box .content {
        position: relative;
        max-width: 920px;
        margin: 0 auto;
    }

        .testimonial-block-three .inner-box .content .designation {
            position: relative;
            display: block;
            color: var(--bs-white);
            font-weight: 400;
            line-height: 48px;
            margin-bottom: 0;
            text-transform: uppercase;
        }

        .testimonial-block-three .inner-box .content .name {
            position: relative;
            color: var(--bs-white);
            margin-top: 10px;
            margin-bottom: 30px;
        }

        .testimonial-block-three .inner-box .content .text {
            position: relative;
            color: var(--bs-white);
            font-size: 24px;
            letter-spacing: 1px;
            font-weight: 300;
            line-height: 44px;
            margin-bottom: 30px;
        }

        .testimonial-block-three .inner-box .content .rating {
            position: relative;
            font-size: 35px;
            gap: 3px;
            line-height: 1em;
            color: #FF5825;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

    .testimonial-block-three .inner-box .quote-icon {
        position: absolute;
        bottom: -50px;
        left: 50%;
        width: 101px;
        height: 101px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        border-radius: 50%;
        color: var(--bs-indigo);
        background-color: var(--bs-white);
        transform: translateX(-50%);
        transition: all 300ms ease;
    }


.speakers-section {
    position: relative;
    padding: 60px 0;
}

    .speakers-section .bg:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #772D7B;
        opacity: 0.8;
    }

.speaker-block {
    position: relative;
    margin-bottom: 75px;
}

    .speaker-block .inner-box {
        position: relative;
        max-width: 256px;
        z-index: 1;
    }

        .speaker-block .inner-box:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 186px;
            height: 100%;
            border-radius: 25px;
            background-color: var(--bs-red);
            transform: rotate(0deg);
            transition: all 500ms ease;
        }

        .speaker-block .inner-box.active:before {
            transform: rotate(13.66deg);
        }

        .speaker-block .inner-box.active .image-box:before {
            background-color: var(--bs-red);
        }

        .speaker-block .inner-box.active .image-box:after {
            top: 100%;
            transform: translateY(calc(-100% - 27px));
            background-color: var(--bs-red);
        }

        .speaker-block .inner-box.active .image-box .image img:first-child {
            transform: translateX(0) scaleX(1);
            opacity: 1;
            filter: blur(0);
        }

        .speaker-block .inner-box.active .image-box .image img:nth-child(2) {
            transform: translateX(-50%) scaleX(2);
            opacity: 0;
            filter: blur(10px);
        }

        .speaker-block .inner-box.active .image-box .social-links {
            transform: scale(1);
            visibility: visible;
        }

        .speaker-block .inner-box.active .info-box:before {
            background-color: var(--bs-red);
        }

        .speaker-block .inner-box .image-box {
            position: relative;
            border-radius: 25px;
            border: 3px solid var(--bs-white);
        }

            .speaker-block .inner-box .image-box:before {
                content: "";
                position: absolute;
                top: -15px;
                left: 22px;
                height: 5px;
                width: 62px;
                border-radius: 50px;
                background-color: var(--yellow);
                transition: all 500ms ease;
            }

            .speaker-block .inner-box .image-box:after {
                content: "";
                position: absolute;
                top: 23px;
                right: -25px;
                height: 157px;
                width: 6px;
                border-radius: 50px;
                background-color: var(--yellow);
                transition: all 500ms ease;
            }

            .speaker-block .inner-box .image-box .image {
                position: relative;
                overflow: hidden;
                border-radius: 25px;
                margin-bottom: 0;
                z-index: 1;
            }

                .speaker-block .inner-box .image-box .image img {
                    position: relative;
                    width: 100%;
                    display: block;
                    transition: all 500ms ease;
                    z-index: 33;
                }

                    .speaker-block .inner-box .image-box .image img:first-child {
                        position: absolute;
                        left: 0px;
                        top: 0px;
                        right: 0px;
                        bottom: 0px;
                        z-index: 1;
                        transform: translateX(50%) scaleX(2);
                        opacity: 0;
                        filter: blur(10px);
                        z-index: 33;
                    }

            .speaker-block .inner-box .image-box .icon-box {
                position: absolute;
                right: 22px;
                bottom: -3px;
                z-index: 5;
            }

                .speaker-block .inner-box .image-box .icon-box .icon {
                    position: relative;
                    display: block;
                    height: 50px;
                    width: 50px;
                    line-height: 50px;
                    text-align: center;
                    font-size: 22px;
                    border-radius: 50px 50px 0 0;
                    color: var(--bs-white);
                    background-color: var(--bs-red);
                }

            .speaker-block .inner-box .image-box .social-links {
                position: absolute;
                right: 22px;
                bottom: -3px;
                display: flex;
                align-items: center;
                flex-direction: column;
                padding: 5px;
                gap: 3px;
                border-radius: 50px 50px 0 0;
                background-color: var(--yellow);
                transform-origin: bottom;
                transform: scaleY(0);
                visibility: hidden;
                z-index: 5;
                transition: all 500ms ease;
            }

                .speaker-block .inner-box .image-box .social-links a {
                    position: relative;
                    height: 40px;
                    width: 40px;
                    line-height: 40px;
                    text-align: center;
                    border-radius: 50%;
                    font-size: var(--body-font-size);
                    color: var(--bs-dark);
                    background-color: var(--yellow);
                    transition: all 300ms ease;
                }

                    .speaker-block .inner-box .image-box .social-links a:hover {
                        color: var(--bs-white);
                        background-color: var(--bs-red);
                    }

        .speaker-block .inner-box .info-box {
            position: absolute;
            bottom: 35px;
            left: 0;
            width: 100%;
            padding: 21px 35px;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 3;
        }

            .speaker-block .inner-box .info-box:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 4px;
                height: 100%;
                background-color: var(--yellow);
                transition: all 500ms ease;
            }

            .speaker-block .inner-box .info-box .name {
                position: relative;
                font-weight: 700;
                color: var(--bs-white);
                margin-bottom: 0;
            }

                .speaker-block .inner-box .info-box .name a:hover {
                    color: var(--bs-red);
                }

            .speaker-block .inner-box .info-box .designation {
                position: relative;
                display: block;
                font-size: 14px;
                font-weight: 500;
                color: var(--bs-white);
            }


.speakers-section-two {
    position: relative;
    background-color: #150036;
}

    .speakers-section-two .shape-nineteen {
        position: absolute;
        top: 114px;
        right: 0;
        z-index: 1;
    }

    .speakers-section-two .blocks-column .inner-column {
        position: relative;
        display: flex;
        overflow: hidden;
        flex-wrap: nowrap;
        padding-right: 60px;
    }

    .speakers-section-two .content-column {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

        .speakers-section-two .content-column .inner-column {
            padding-left: 60px;
            padding-right: 150px;
        }

            .speakers-section-two .content-column .inner-column .btn-box {
                display: flex;
                gap: 25px;
            }

    .speakers-section-two .speaker-block-two {
        min-height: 762px;
        flex: 1;
        will-change: flex;
    }

        .speakers-section-two .speaker-block-two:hover {
            flex: 2;
        }

.speaker-block-two {
    position: relative;
    transition: 0.8s cubic-bezier(0.29, 0, 0.2, 1);
}

    .speaker-block-two .inner-box {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

        .speaker-block-two .inner-box .shape-twenty {
            position: absolute;
            bottom: 0;
            left: 0;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            z-index: 3;
            opacity: 0;
            transition: all 500ms ease;
        }

        .speaker-block-two .inner-box.active .content {
            opacity: 1;
        }

        .speaker-block-two .inner-box.active .shape-twenty {
            opacity: 1;
        }

        .speaker-block-two .inner-box .image-box {
            position: relative;
        }

            .speaker-block-two .inner-box .image-box .image {
                position: relative;
                overflow: hidden;
                margin-bottom: 0;
                z-index: 1;
            }

                .speaker-block-two .inner-box .image-box .image img {
                    width: 100%;
                    height: 762px;
                    -o-object-fit: cover;
                    object-fit: cover;
                    transition: all 500ms ease;
                }

        .speaker-block-two .inner-box .content {
            position: absolute;
            left: 0;
            bottom: 0;
            opacity: 0;
            padding-left: 62px;
            padding-bottom: 69px;
            z-index: 3;
            transition: all 500ms ease;
        }

            .speaker-block-two .inner-box .content .social-links {
                position: relative;
                display: flex;
                align-items: center;
                z-index: 5;
                margin-bottom: 40px;
                transition: all 500ms ease;
            }

                .speaker-block-two .inner-box .content .social-links a {
                    position: relative;
                    height: 55px;
                    width: 55px;
                    line-height: 55px;
                    text-align: center;
                    font-size: 25px;
                    color: var(--bs-white);
                    transition: all 300ms ease;
                }

                    .speaker-block-two .inner-box .content .social-links a:hover {
                        color: var(--bs-white);
                        background-color: var(--e-secondary);
                    }

            .speaker-block-two .inner-box .content .name {
                position: relative;
                color: var(--bs-white);
            }

            .speaker-block-two .inner-box .content .designation {
                position: relative;
                display: block;
                font-size: 20px;
                line-height: 1em;
                color: var(--bs-white);
            }


.speakers-section-three {
    position: relative;
    padding: 60px 0;
    background-color: var(--bs-white);
}

    .speakers-section-three .bg {
        position: absolute;
        left: 0;
        top: 0;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .speakers-section-three .carousel-outer {
        position: relative;
        margin: 0 -15px;
    }

        .speakers-section-three .carousel-outer .team-slider {
            position: relative;
            padding: 0 15px;
        }

    .speakers-section-three .sec-title-outer {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
        z-index: 1;
    }

        .speakers-section-three .sec-title-outer .btn-box {
            padding-bottom: 20px;
            text-align: right;
        }

    .speakers-section-three .styled-pagination {
        position: relative;
        max-width: 970px;
        margin: 0 auto;
        width: 100%;
        height: 12px !important;
        margin-top: 30px;
        border-radius: 10px;
        overflow: hidden;
        background-color: #D9D9D9;
    }

        .speakers-section-three .styled-pagination .swiper-pagination-progressbar-fill {
            top: 3px;
            left: 3px;
            height: 6px;
            border-radius: 50px;
            background: var(--e-secondary);
        }

.speaker-block-three {
    margin-bottom: 30px;
}

    .speaker-block-three .inner-box {
        position: relative;
        padding: 0px 10px;
    }

        .speaker-block-three .inner-box.active .image img {
            transform: scale(1.1);
        }

        .speaker-block-three .inner-box.active .content-box:after {
            opacity: 1;
        }

        .speaker-block-three .inner-box.active .content-box .shape-twentyeight {
            opacity: 1;
        }

        .speaker-block-three .inner-box.active .content-box .name,
        .speaker-block-three .inner-box.active .content-box .designation {
            color: var(--bs-white);
        }

        .speaker-block-three .inner-box.active .content-box .team-shape .main {
            fill: #150036;
        }

        .speaker-block-three .inner-box.active .content-box .social-icons {
            transform: translateY(0);
            opacity: 1;
        }

        .speaker-block-three .inner-box .image {
            position: relative;
            margin-bottom: 0;
            border-radius: 15px;
            overflow: hidden;
        }

            .speaker-block-three .inner-box .image img {
                position: relative;
                width: 100%;
                height: 100%;
                border-radius: 15px;
                transition: all 300ms ease;
            }

        .speaker-block-three .inner-box .content-box {
            position: relative;
            padding: 10px 10px 30px;
            text-align: center;
            transition: all 300ms ease;
        }

            .speaker-block-three .inner-box .content-box .team-shape {
                position: absolute;
                left: -10px;
                right: -10px;
                bottom: 0;
                height: 152px;
                filter: drop-shadow(0 0px 10px rgba(0, 0, 0, 0.15));
                border-radius: 12px;
                transition: all 300ms ease;
            }

                .speaker-block-three .inner-box .content-box .team-shape .main {
                    transition: all 300ms ease;
                }

            .speaker-block-three .inner-box .content-box .shape-twentyeight {
                position: absolute;
                bottom: 0;
                left: 50%;
                opacity: 0;
                transform: translateX(-50%);
                transition: all 300ms ease;
            }

            .speaker-block-three .inner-box .content-box .name {
                position: relative;
                margin-bottom: 2px;
                z-index: 3;
            }

            .speaker-block-three .inner-box .content-box .designation {
                position: relative;
                color: #222222;
                font-size: 14px;
                line-height: 24px;
                z-index: 3;
                transition: all 300ms ease;
            }

            .speaker-block-three .inner-box .content-box .social-icons {
                position: absolute;
                top: -37px;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                gap: 13px;
                opacity: 0;
                transform: translateY(-10px);
                transition: all 300ms ease;
            }

                .speaker-block-three .inner-box .content-box .social-icons li:nth-child(2) {
                    margin-top: -42px;
                }

                .speaker-block-three .inner-box .content-box .social-icons li:nth-child(4) {
                    margin-top: -42px;
                }

                .speaker-block-three .inner-box .content-box .social-icons li:nth-child(3) {
                    margin-top: -60px;
                }

                .speaker-block-three .inner-box .content-box .social-icons li a {
                    position: relative;
                    width: 35px;
                    height: 34px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--bs-white);
                    font-size: 14px;
                    border-radius: 50%;
                    background-color: var(--bs-indigo);
                    transition: all 300ms ease;
                }

                    .speaker-block-three .inner-box .content-box .social-icons li a:hover {
                        background-color: var(--bs-white);
                        color: var(--bs-indigo);
                    }


.speakers-section-four {
    position: relative;
    padding: 60px 0;
    ;
    background-color: var(--bs-white);
}

    .speakers-section-four .sec-title-outer {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 170px;
    }

        .speakers-section-four .sec-title-outer .btn-box {
            padding-top: 20px;
        }

    .speakers-section-four .outer-box {
        position: relative;
    }

    .speakers-section-four .blocks-box.two {
        position: absolute;
        top: 30px;
        left: 55%;
        transform: translateX(-50%);
    }

.speaker-block-four {
    margin-bottom: 50px;
}

    .speaker-block-four.purple {
        margin-top: 15px;
    }

    .speaker-block-four.green {
        margin-top: 50px;
    }

    .speaker-block-four.seagreen {
        margin-top: 15px;
    }

    .speaker-block-four.blue {
        margin-top: 50px;
    }

    .speaker-block-four .inner-box {
        position: relative;
        max-width: 288px;
        text-align: center;
        margin: 0 auto 50px;
    }

        .speaker-block-four .inner-box .shape {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -174px;
            margin-left: -174px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            animation: fa-spin 24s linear infinite;
            transition: all 300ms ease;
        }

        .speaker-block-four .inner-box.active .image-box .image img {
            transform: scale(1.1);
        }

        .speaker-block-four .inner-box.active .image-box .image:before {
            opacity: 1;
            transform: scale(1);
        }

        .speaker-block-four .inner-box.active .content-box {
            opacity: 1;
            transform: translateY(0);
        }

        .speaker-block-four .inner-box.active .social-icons {
            transform: translateY(0);
            opacity: 1;
        }

        .speaker-block-four .inner-box .image-box {
            position: relative;
            max-width: 288px;
        }

            .speaker-block-four .inner-box .image-box .image {
                position: relative;
                margin-bottom: 0;
                overflow: hidden;
                border: 3px solid var(--bs-white);
                border-radius: 50%;
            }

                .speaker-block-four .inner-box .image-box .image:before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    position: absolute;
                    left: 0;
                    top: 0;
                    height: 100%;
                    width: 100%;
                    border-radius: 50%;
                    transform: scale(0.8);
                    opacity: 0;
                    background: linear-gradient(to top, #002DFF 0%, rgba(185, 83, 159, 0) 52%, #B9539F 100%);
                    transition: all 300ms ease;
                    z-index: 2;
                }

                .speaker-block-four .inner-box .image-box .image img {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    transition: all 300ms ease;
                }

        .speaker-block-four .inner-box .content-box {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            z-index: 3;
            transition: all 300ms ease;
        }

            .speaker-block-four .inner-box .content-box .name {
                position: relative;
                color: var(--bs-white);
                margin-bottom: 2px;
            }

            .speaker-block-four .inner-box .content-box .designation {
                position: relative;
                font-size: 14px;
                font-weight: 24px;
                color: var(--bs-white);
            }

        .speaker-block-four .inner-box .social-icons {
            position: absolute;
            bottom: 20px;
            left: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 22px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 300ms ease;
            z-index: 3;
        }

            .speaker-block-four .inner-box .social-icons li:nth-child(2) {
                margin-bottom: -100px;
            }

            .speaker-block-four .inner-box .social-icons li:nth-child(4) {
                margin-bottom: -100px;
            }

            .speaker-block-four .inner-box .social-icons li:nth-child(3) {
                margin-bottom: -145px;
            }

            .speaker-block-four .inner-box .social-icons li a {
                position: relative;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--bs-white);
                font-size: 16px;
                border-radius: 50%;
                background-color: #150036;
                transition: all 300ms ease;
            }

                .speaker-block-four .inner-box .social-icons li a:hover {
                    background-color: var(--e-secondary);
                    color: var(--bs-white);
                }


.subscribe-section {
    position: relative;
    padding-top: 30px;
}

    .subscribe-section .outer-box {
        position: relative;
        margin-bottom: -155px;
        z-index: 4;
    }

        .subscribe-section .outer-box .content-box {
            position: relative;
            padding: 100px 80px;
            border-radius: 150px 150px;
            background: linear-gradient(to right, #1C112F 0%, #5A3695 100%);
        }

            .subscribe-section .outer-box .content-box:before {
                content: "";
                position: absolute;
                top: -30px;
                right: -20px;
                width: 100%;
                height: 100%;
                border-radius: 150px;
                background-color: var(--bs-red);
                z-index: -1;
            }

            .subscribe-section .outer-box .content-box .shape-ten {
                position: absolute;
                top: 0;
                left: 0;
                border-radius: 150px 0 0 150px;
            }

        .subscribe-section .outer-box .content-column .inner-column .sub-title {
            position: relative;
            font-size: 20px;
            color: var(--bs-white);
        }

        .subscribe-section .outer-box .content-column .inner-column .title {
            color: var(--bs-white);
            margin-bottom: 0;
        }

        .subscribe-section .outer-box .form-column {
            display: flex;
            align-items: flex-end;
            flex-direction: column;
            justify-content: center;
        }

            .subscribe-section .outer-box .form-column .inner-column {
                position: relative;
            }

.subscribe-form {
    position: relative;
}

    .subscribe-form .form-group {
        position: relative;
        width: 623px;
        display: flex;
        align-items: flex-end;
        gap: 45px;
    }

    .subscribe-form .select2-container--default .select2-selection--single,
    .subscribe-form input:not([type=submit]),
    .subscribe-form textarea,
    .subscribe-form select {
        position: relative;
        display: block;
        height: 50px;
        width: 100%;
        padding: 20px 20px;
        padding-left: 0;
        font-size: 16px;
        font-weight: 400;
        color: var(--bs-white);
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        background-color: transparent;
        margin-bottom: 0;
        transition: all 300ms ease;
    }

    .subscribe-form ::-webkit-input-placeholder {
        color: var(--bs-white);
    }

    .subscribe-form input:focus,
    .subscribe-form select:focus,
    .subscribe-form textarea:focus {
        border-color: var(--bs-red);
    }

    .subscribe-form button {
        flex-shrink: 0;
        padding: 22px 49px;
    }


.news-section {
    position: relative;
    padding: 60px 0;
}

.shape-six {
    position: absolute;
    top: 0;
    left: 0;
}

.news-section .shape-seven {
    position: absolute;
    top: 0;
    right: 0;
}

.news-block {
    margin-bottom: 30px;
}

    .news-block .inner-box {
        position: relative;
        margin-top: 20px;
        border-radius: 15px;
        background: linear-gradient(to bottom, #E1FBFF 0%, #FFFFFF 100%);
    }

        .news-block .inner-box:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            height: 0;
            border-radius: 15px;
            background: linear-gradient(180deg, #D51C55, #6F0F2C);
            transition: all 600ms ease;
        }

        .news-block .inner-box.active:before {
            height: 100%;
        }

        .news-block .inner-box.active .content-box .cat,
        .news-block .inner-box.active .content-box .post-meta li,
        .news-block .inner-box.active .content-box .post-meta li .icon,
        .news-block .inner-box.active .content-box .title,
        .news-block .inner-box.active .content-box .text {
            color: var(--bs-white);
        }

            .news-block .inner-box.active .content-box .cat:after {
                width: 65px;
            }

        .news-block .inner-box.active .content-box .date-box:after {
            opacity: 1;
            transform: scale(1);
        }

        .news-block .inner-box.active .content-box .date-box .date,
        .news-block .inner-box.active .content-box .date-box .month {
            color: var(--bs-dark);
        }

        .news-block .inner-box.active .content-box .btn-box {
            transform: translateX(0);
            opacity: 1;
        }

        .news-block .inner-box.active .image {
            border-radius: 15px;
        }

            .news-block .inner-box.active .image img:first-child {
                transform: translateX(0) scaleX(1);
                opacity: 1;
                filter: blur(0);
            }

            .news-block .inner-box.active .image img:nth-child(2) {
                transform: translateX(-50%) scaleX(2);
                opacity: 0;
                filter: blur(10px);
            }

        .news-block .inner-box .content-box {
            position: relative;
            padding: 57px 45px 42px 55px;
        }

            .news-block .inner-box .content-box .date-box {
                position: absolute;
                top: -20px;
                right: 57px;
                padding: 10px 18px;
                border-radius: 5px;
                border-top-right-radius: 0;
                background: linear-gradient(to bottom, #96143C 0%, #FC004F 100%);
                text-align: center;
                transition: all 300ms ease;
            }

                .news-block .inner-box .content-box .date-box:before {
                    content: "";
                    position: absolute;
                    top: 0;
                    right: -17px;
                    width: 0;
                    height: 0;
                    border-bottom: 21px solid #D9D9D9;
                    border-right: 17px solid transparent;
                }

                .news-block .inner-box .content-box .date-box:after {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    opacity: 0;
                    transform: scale(0.8);
                    border-radius: 5px;
                    border-top-right-radius: 0;
                    background: var(--yellow);
                    transition: all 300ms ease;
                }

                .news-block .inner-box .content-box .date-box .date {
                    position: relative;
                    margin-bottom: 0;
                    color: var(--bs-white);
                    z-index: 1;
                    transition: all 300ms ease;
                }

                .news-block .inner-box .content-box .date-box .month {
                    position: relative;
                    margin-bottom: 0;
                    font-size: 20px;
                    font-weight: 700;
                    line-height: 1em;
                    color: var(--bs-white);
                    z-index: 1;
                    transition: all 300ms ease;
                }

            .news-block .inner-box .content-box .cat {
                position: relative;
                font-weight: 700;
                line-height: 1em;
                color: var(--bs-red);
                margin-bottom: 20px;
                transition: all 300ms ease;
            }

                .news-block .inner-box .content-box .cat:before {
                    content: "";
                    position: absolute;
                    bottom: -8px;
                    left: 0;
                    width: 65px;
                    height: 2px;
                    background: linear-gradient(to right, #5A3695 0%, transparent 100%);
                    transition: all 300ms ease;
                }

                .news-block .inner-box .content-box .cat:after {
                    content: "";
                    position: absolute;
                    bottom: -8px;
                    left: 0;
                    width: 0;
                    height: 2px;
                    background-color: var(--bs-white);
                    transition: all 300ms ease;
                }

            .news-block .inner-box .content-box .post-meta {
                position: relative;
                display: flex;
                align-items: center;
                gap: 13px;
                margin-top: 10px;
                margin-bottom: 15px;
            }

                .news-block .inner-box .content-box .post-meta li {
                    position: relative;
                    display: flex;
                    align-items: center;
                    font-size: 14px;
                    gap: 7px;
                    transition: all 300ms ease;
                }

                    .news-block .inner-box .content-box .post-meta li .icon {
                        font-size: 10px;
                        color: #8900BD;
                        transition: all 300ms ease;
                    }

            .news-block .inner-box .content-box .title {
                position: relative;
                margin-bottom: 10px;
                color: var(--bs-dark);
                text-transform: capitalize;
            }

                .news-block .inner-box .content-box .title a:hover {
                    color: var(--yellow);
                }

            .news-block .inner-box .content-box .text {
                position: relative;
                margin-bottom: 0;
                transition: all 300ms ease;
            }

            .news-block .inner-box .content-box .btn-box {
                position: absolute;
                bottom: -25px;
                right: 60px;
                opacity: 0;
                transform: translateX(10px);
                transition: all 300ms ease;
                z-index: 4;
            }

                .news-block .inner-box .content-box .btn-box .read-more {
                    position: relative;
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--bs-white);
                    background-color: rgba(0, 0, 0, 0.8);
                    transition: all 300ms ease;
                }

                    .news-block .inner-box .content-box .btn-box .read-more:hover {
                        background-color: var(--yellow);
                        color: var(--bs-dark);
                    }

        .news-block .inner-box .image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            background-color: var(--bs-white);
            z-index: 3;
        }

            .news-block .inner-box .image img {
                position: relative;
                width: 100%;
                display: block;
                transition: all 500ms ease;
                z-index: 33;
            }

                .news-block .inner-box .image img:first-child {
                    position: absolute;
                    left: 0px;
                    top: 0px;
                    right: 0px;
                    bottom: 0px;
                    z-index: 1;
                    transform: translateX(50%) scaleX(2);
                    opacity: 0;
                    filter: blur(10px);
                    z-index: 33;
                }


.news-section-two {
    position: relative;
    padding: 60px 0;
    ;
}

    .news-section-two .shape-twentyfour {
        position: absolute;
        top: -220px;
        left: -240px;
        animation: fa-spin 50s linear infinite;
    }

    .news-section-two .content-column {
        margin-bottom: 50px;
    }

        .news-section-two .content-column .inner-column {
            position: relative;
        }

            .news-section-two .content-column .inner-column .shape-twentyfive {
                position: absolute;
                bottom: -310px;
                left: 0;
            }

    .news-section-two .blocks-column {
        margin-bottom: 20px;
    }

        .news-section-two .blocks-column .inner-colunm {
            position: relative;
        }

.news-block-two {
    position: relative;
    margin-bottom: 30px;
}

.shape-sixteen {
    position: absolute;
    top: 0;
    right: 38px;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 300ms ease;
}

.news-block-two .shape-seventeen {
    position: absolute;
    top: 0;
    right: 27px;
    z-index: 1;
    opacity: 0;
    transform: translateX(15px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 300ms ease;
}

.news-block-two:hover .shape-seventeen {
    opacity: 0;
}

.news-block-two:hover .shape-seventeen {
    transform: translateX(0px);
    opacity: 100;
}

.news-block-two .inner-box {
    position: relative;
    border-radius: 14px;
    padding: 15px 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--bs-white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}

    .news-block-two .inner-box:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        width: 0;
        border-radius: 14px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-image: url(../images/news-bg.jpg);
        transition: all 500ms ease;
    }

    .news-block-two .inner-box.active:before {
        width: 100%;
    }

    .news-block-two .inner-box.active .content-box .cat,
    .news-block-two .inner-box.active .content-box .post-meta li,
    .news-block-two .inner-box.active .content-box .post-meta li .icon,
    .news-block-two .inner-box.active .content-box .title {
        color: var(--bs-white);
    }

        .news-block-two .inner-box.active .content-box .cat:after {
            width: 65px;
        }

    .news-block-two .inner-box.active .image-box .date-box {
        background-color: var(--yellow);
    }

        .news-block-two .inner-box.active .image-box .date-box .date,
        .news-block-two .inner-box.active .image-box .date-box .month {
            color: var(--bs-dark);
        }

    .news-block-two .inner-box.active .image-box .btn-box {
        transform: translateX(0);
        opacity: 1;
    }

    .news-block-two .inner-box.active .image-box .image {
        border-radius: 15px;
    }

        .news-block-two .inner-box.active .image-box .image img {
            border-color: var(--bs-white);
        }

            .news-block-two .inner-box.active .image-box .image img:first-child {
                transform: translateX(0) scaleX(1);
                opacity: 1;
                filter: blur(0);
            }

            .news-block-two .inner-box.active .image-box .image img:nth-child(2) {
                transform: translateX(-50%) scaleX(2);
                opacity: 0;
                filter: blur(10px);
            }

    .news-block-two .inner-box .content-box {
        position: relative;
        padding: 12px 0 15px 20px;
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: center;
    }

        .news-block-two .inner-box .content-box .cat {
            position: relative;
            font-weight: 700;
            line-height: 1em;
            color: var(--e-secondary);
            margin-bottom: 20px;
            transition: all 300ms ease;
        }

            .news-block-two .inner-box .content-box .cat:before {
                content: "";
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 65px;
                height: 2px;
                background: linear-gradient(to right, #5A3695 0%, #E5FBFF 100%);
                transition: all 300ms ease;
            }

            .news-block-two .inner-box .content-box .cat:after {
                content: "";
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 0;
                height: 2px;
                background-color: var(--bs-white);
                transition: all 300ms ease;
            }

        .news-block-two .inner-box .content-box .post-meta {
            position: relative;
            display: flex;
            align-items: center;
            gap: 13px;
            margin-bottom: 10px;
        }

            .news-block-two .inner-box .content-box .post-meta li {
                position: relative;
                display: flex;
                align-items: center;
                font-size: 14px;
                gap: 7px;
                transition: all 300ms ease;
            }

                .news-block-two .inner-box .content-box .post-meta li .icon {
                    color: #8900BD;
                    font-size: 10px;
                    transition: all 300ms ease;
                }

        .news-block-two .inner-box .content-box .title {
            position: relative;
            margin-bottom: 0;
        }

            .news-block-two .inner-box .content-box .title a:hover {
                color: var(--yellow);
            }

    .news-block-two .inner-box .image-box {
        position: relative;
        flex-shrink: 0;
        max-width: 366px;
        width: 100%;
    }

        .news-block-two .inner-box .image-box .video-box {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 4;
        }

        .news-block-two .inner-box .image-box .nav-box {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            height: 34px;
            margin-top: -10px;
        }

        .news-block-two .inner-box .image-box .swiper-button-prev,
        .news-block-two .inner-box .image-box .swiper-button-next {
            width: 34px;
            height: 34px;
            font-size: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bs-dark);
            background-color: var(--bs-white);
            transition: all 300ms ease;
        }

            .news-block-two .inner-box .image-box .swiper-button-prev:after,
            .news-block-two .inner-box .image-box .swiper-button-next:after {
                display: none;
            }

            .news-block-two .inner-box .image-box .swiper-button-prev:hover,
            .news-block-two .inner-box .image-box .swiper-button-next:hover {
                background-color: var(--bs-red);
                color: var(--bs-white);
            }

        .news-block-two .inner-box .image-box .date-box {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 6px 12px;
            border-radius: 5px;
            background-color: var(--bs-indigo);
            text-align: center;
            z-index: 4;
            transition: all 300ms ease;
        }

            .news-block-two .inner-box .image-box .date-box .date {
                position: relative;
                margin-bottom: 0;
                color: var(--bs-white);
                z-index: 1;
                transition: all 300ms ease;
            }

            .news-block-two .inner-box .image-box .date-box .month {
                position: relative;
                margin-bottom: 0;
                font-size: 16px;
                font-weight: 700;
                line-height: 1em;
                color: var(--bs-white);
                z-index: 1;
                transition: all 300ms ease;
            }

        .news-block-two .inner-box .image-box .btn-box {
            position: absolute;
            bottom: 14px;
            right: 13px;
            opacity: 0;
            transform: translateX(10px);
            transition: all 300ms ease;
            z-index: 4;
        }

            .news-block-two .inner-box .image-box .btn-box .read-more {
                position: relative;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--bs-dark);
                background-color: var(--bs-white);
                transition: all 300ms ease;
            }

                .news-block-two .inner-box .image-box .btn-box .read-more:hover {
                    background-color: var(--yellow);
                    color: var(--bs-dark);
                }

        .news-block-two .inner-box .image-box .blog-swiper {
            overflow: hidden;
        }

        .news-block-two .inner-box .image-box .swiper-slide {
            max-width: 100%;
        }

        .news-block-two .inner-box .image-box .image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
            margin-bottom: 0;
            border: 2px solid transparent;
            background-color: var(--bs-white);
            z-index: 3;
        }

            .news-block-two .inner-box .image-box .image img {
                position: relative;
                width: 100%;
                max-width: 100%;
                display: block;
                transition: all 500ms ease;
                z-index: 33;
            }

                .news-block-two .inner-box .image-box .image img:first-child {
                    position: absolute;
                    left: 0px;
                    top: 0px;
                    right: 0px;
                    bottom: 0px;
                    z-index: 1;
                    transform: translateX(50%) scaleX(2);
                    opacity: 0;
                    filter: blur(10px);
                    z-index: 33;
                }


.news-section-three {
    position: relative;
    padding: 60px 0;
    ;
}

.news-block-three {
    position: relative;
    margin-bottom: 30px;
}

    .news-block-three.two {
        padding-top: 15px;
    }

        .news-block-three.two .inner-box {
            display: flex;
            align-items: center;
            gap: 35px;
        }

            .news-block-three.two .inner-box .post-box {
                gap: 10px;
                flex-direction: column;
                justify-content: flex-start !important;
                align-items: flex-start !important;
            }

    .news-block-three .inner-box {
        position: relative;
    }

        .news-block-three .inner-box:hover .image-box .image img {
            border-color: var(--bs-white);
        }

            .news-block-three .inner-box:hover .image-box .image img:first-child {
                transform: translateX(0) scaleX(1);
                opacity: 1;
                filter: blur(0);
            }

            .news-block-three .inner-box:hover .image-box .image img:nth-child(2) {
                transform: translateX(-50%) scaleX(2);
                opacity: 0;
                filter: blur(10px);
            }

        .news-block-three .inner-box:hover .image-box .btn-box {
            transform: translate(0);
        }

        .news-block-three .inner-box .image-box {
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
        }

            .news-block-three .inner-box .image-box .image {
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                margin-bottom: 0;
                z-index: 1;
            }

                .news-block-three .inner-box .image-box .image img {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    display: block;
                    transition: all 500ms ease;
                    z-index: 33;
                }

                    .news-block-three .inner-box .image-box .image img:first-child {
                        position: absolute;
                        left: 0px;
                        top: 0px;
                        right: 0px;
                        bottom: 0px;
                        z-index: 1;
                        transform: translateX(50%) scaleX(2);
                        opacity: 0;
                        filter: blur(10px);
                        z-index: 33;
                    }

            .news-block-three .inner-box .image-box .date-box {
                position: absolute;
                right: 60px;
                bottom: 0;
                padding: 10px 12px 0;
                border-radius: 15px 15px 0 0;
                background-color: var(--bs-white);
                text-align: center;
                z-index: 4;
                transition: all 300ms ease;
            }

                .news-block-three .inner-box .image-box .date-box:before {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: -24px;
                    width: 24px;
                    height: 24px;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    background-image: url(../images/news3-date-shape.png);
                }

                .news-block-three .inner-box .image-box .date-box:after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    right: -24px;
                    width: 24px;
                    height: 24px;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    background-image: url(../images/news3-date-shape2.png);
                }

                .news-block-three .inner-box .image-box .date-box .date {
                    position: relative;
                    margin-bottom: 0;
                    color: var(--e-secondary);
                    z-index: 1;
                    transition: all 300ms ease;
                }

                .news-block-three .inner-box .image-box .date-box .month {
                    position: relative;
                    margin-bottom: 0;
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 1em;
                    color: var(--e-secondary);
                    z-index: 1;
                    transition: all 300ms ease;
                }

            .news-block-three .inner-box .image-box .btn-box {
                position: absolute;
                bottom: 20px;
                left: 20px;
                transform: translateY(200%);
                z-index: 1;
                transition: all 400ms ease;
            }

                .news-block-three .inner-box .image-box .btn-box .theme-btn {
                    padding: 14px 31px;
                }

        .news-block-three .inner-box .content-box {
            position: relative;
            width: 100%;
            padding-top: 18px;
            flex-shrink: 0;
        }

            .news-block-three .inner-box .content-box .post-box {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 10px;
            }

                .news-block-three .inner-box .content-box .post-box .cat {
                    position: relative;
                    font-weight: 700;
                    line-height: 1em;
                    color: #666666;
                    transition: all 300ms ease;
                }

                .news-block-three .inner-box .content-box .post-box .post-meta {
                    position: relative;
                    display: flex;
                    align-items: center;
                    gap: 14px;
                }

                    .news-block-three .inner-box .content-box .post-box .post-meta li {
                        position: relative;
                        display: flex;
                        align-items: center;
                        font-size: 14px;
                        gap: 7px;
                        transition: all 300ms ease;
                    }

                        .news-block-three .inner-box .content-box .post-box .post-meta li .icon {
                            color: #8900BD;
                            font-size: 10px;
                            transition: all 300ms ease;
                        }

            .news-block-three .inner-box .content-box .title {
                position: relative;
                max-width: 389px;
                margin-bottom: 0;
                text-transform: capitalize;
            }

                .news-block-three .inner-box .content-box .title a:hover {
                    color: var(--bs-indigo);
                }

            .news-block-three .inner-box .content-box .text {
                position: relative;
                margin-bottom: 0;
                margin-top: 10px;
                padding-right: 10px;
            }


.video-section {
    position: relative;
    z-index: 2;
    padding: 220px 0 175px;
}

    .video-section .icon-two {
        position: absolute;
        top: 106px;
        right: 160px;
        z-index: 1;
    }

    .video-section .bg-image {
        background-attachment: fixed;
    }

    .video-section .sec-title h2 {
        font-size: 84px;
    }

    .video-section .video-box {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 188px;
        height: 188px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.3);
    }

        .video-section .video-box .circular-text {
            position: relative;
            fill: currentColor;
            height: auto;
            transform-origin: center;
            width: 195px;
            height: 195px;
            animation: fa-spin 30s infinite linear;
        }

            .video-section .video-box .circular-text text {
                position: relative;
                font-size: 7px;
                font-weight: 700;
                letter-spacing: 3.3px;
                font-family: var(--text-font);
                color: var(--bs-white);
                text-transform: uppercase;
            }

        .video-section .video-box .play-now {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 127px;
            height: 127px;
            font-size: 40px;
            color: var(--bs-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--yellow);
            transform: translate(-50%, -50%);
        }

            .video-section .video-box .play-now:hover {
                color: var(--bs-white);
                background-color: var(--bs-red);
            }

    .video-section .content-column .inner-column {
        margin-left: -120px;
    }

        .video-section .content-column .inner-column .video-box.show-lg {
            display: none;
        }

    .video-section .image-box {
        position: absolute;
        top: 0;
        left: 0;
    }

        .video-section .image-box .image-outer {
            position: relative;
        }

            .video-section .image-box .image-outer .image {
                margin-bottom: 0;
                overflow: hidden;
                border-radius: 0 50% 50% 50%;
                border: 20px solid var(--yellow);
                border-left: 0;
                border-top: 0;
                width: 100%;
                height: 100%;
            }

                .video-section .image-box .image-outer .image img {
                    width: 100%;
                    height: 100%;
                }

            .video-section .image-box .image-outer .shape-fourtyeight {
                position: absolute;
                bottom: 0;
                left: 0;
            }


.video-section-two {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

    .video-section-two .outer-box {
        position: relative;
    }

        .video-section-two .outer-box .auto-container {
            position: relative;
        }

        .video-section-two .outer-box .icon-ten {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
            display: none;
        }

        .video-section-two .outer-box .icon-eleven {
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 2;
            display: none;
        }

        .video-section-two .outer-box .bg-image {
            overflow: hidden;
        }

            .video-section-two .outer-box .bg-image:before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 100%;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                background-image: url(../images/pattern-3.png);
            }

        .video-section-two .outer-box .btn-box {
            position: absolute;
            top: 83px;
            right: 84px;
            z-index: 4;
        }

            .video-section-two .outer-box .btn-box.show-sm {
                display: none;
            }

            .video-section-two .outer-box .btn-box.hide-sm {
                display: block;
            }

            .video-section-two .outer-box .btn-box .play-icon {
                position: relative;
                top: 2px;
                left: 5px;
                z-index: 1;
            }

            .video-section-two .outer-box .btn-box .play-now {
                position: relative;
                width: 123px;
                height: 123px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                border: 6px solid var(--bs-white);
                background: radial-gradient(circle, #4E26FF 0%, #0B00A4 100%);
                transition: all 300ms ease;
            }

                .video-section-two .outer-box .btn-box .play-now:hover {
                    transform: scale(1.1);
                }

                .video-section-two .outer-box .btn-box .play-now .ripple,
                .video-section-two .outer-box .btn-box .play-now .ripple:before,
                .video-section-two .outer-box .btn-box .play-now .ripple:after {
                    width: 123px;
                    height: 123px;
                }

        .video-section-two .outer-box .content-box {
            position: relative;
            padding: 390px 100px 85px;
        }

            .video-section-two .outer-box .content-box .sub-title {
                font-weight: 500;
                color: var(--bs-white);
            }

            .video-section-two .outer-box .content-box .title {
                color: var(--bs-white);
                margin-bottom: 0;
            }


.client-section {
    position: relative;
    padding: 60px 0;
}

    .client-section .sec-title {
        margin-bottom: 40px;
    }

        .client-section .sec-title .text {
            padding-right: 50px;
        }

    .client-section .sponsors-column .inner-column {
        display: flex;
        align-items: start;
        justify-content: flex-end;
    }

        .client-section .sponsors-column .inner-column .blocks-outer-box.show-md {
            display: none;
        }

.client-block .inner-box {
    position: relative;
    overflow: hidden;
    width: 272px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    text-align: center;
}

    .client-block .inner-box .image {
        margin-bottom: 0;
    }

        .client-block .inner-box .image:hover img:first-child {
            transform: translateY(0) scaleY(1);
            opacity: 1;
            filter: blur(0);
        }

        .client-block .inner-box .image:hover img:nth-child(2) {
            transform: translateY(-50%) scaleY(2);
            opacity: 0;
            filter: blur(10px);
        }

        .client-block .inner-box .image img {
            position: relative;
            width: auto !important;
            display: inline-block !important;
            transition: all 500ms ease;
        }

            .client-block .inner-box .image img:first-child {
                position: absolute;
                left: 0px;
                right: 0px;
                top: 0px;
                bottom: 0px;
                z-index: 1;
                margin: auto;
                transform: translateY(50%) scaleY(2);
                opacity: 0;
                filter: blur(10px);
            }


.client-section-two {
    position: relative;
    padding: 60px 0;
}

    .client-section-two .bg {
        position: absolute;
        top: 0;
        left: 0;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

.client-block-two .inner-box {
    position: relative;
}

    .client-block-two .inner-box .image {
        position: relative;
        margin-bottom: 0;
        border: 1px solid #BBBBBB;
        height: 168px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: var(--bs-white);
    }

        .client-block-two .inner-box .image:hover img:first-child {
            transform: translateY(0) scaleY(1);
            opacity: 1;
            filter: blur(0);
        }

        .client-block-two .inner-box .image:hover img:nth-child(2) {
            transform: translateY(-50%) scaleY(2);
            opacity: 0;
            filter: blur(10px);
        }

        .client-block-two .inner-box .image img {
            position: relative;
            width: auto !important;
            display: inline-block !important;
            transition: all 500ms ease;
        }

            .client-block-two .inner-box .image img:first-child {
                position: absolute;
                left: 0px;
                right: 0px;
                top: 0px;
                bottom: 0px;
                z-index: 1;
                margin: auto;
                transform: translateY(50%) scaleY(2);
                opacity: 0;
                filter: blur(10px);
            }


.page-title {
    position: relative;
    padding: 330px 0 50px;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .page-title .shape-thirtyfour {
        position: absolute;
        top: -124px;
        left: -124px;
        animation: fa-spin 30s infinite linear;
    }

    .page-title .shape-thirtyfive {
        position: absolute;
        top: 0;
        right: 10px;
        animation: fa-spin 30s infinite linear;
    }

    .page-title .shape-thirtysix {
        position: absolute;
        bottom: -25px;
        right: 80px;
    }

    .page-title .shape-thirtyseven {
        position: absolute;
        bottom: -70px;
        left: 280px;
        z-index: 1;
    }

    .page-title .inner-container {
        padding-left: 220px;
    }

        .page-title .inner-container .title {
            position: relative;
            color: var(--bs-white);
            margin-bottom: 130px;
        }

        .page-title .inner-container .breadcrumb-marquee {
            position: absolute;
            left: 84px;
            bottom: 10px;
            display: flex;
            white-space: nowrap;
            gap: 50px;
            animation: gallery-one 100s linear infinite;
        }

            .page-title .inner-container .breadcrumb-marquee:hover {
                animation-play-state: paused;
            }

            .page-title .inner-container .breadcrumb-marquee .title-two {
                position: relative;
                color: #250084;
                text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
                opacity: 0.5;
                font-size: var(--h1-font-size);
                font-weight: var(--h1-font-weight);
                line-height: var(--line-height-heading-h1);
                white-space: nowrap;
                text-transform: uppercase;
                margin-bottom: 0;
            }

@keyframes breadcrumb-marquee {
    from {
        transform: translateX(0%);
    }

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


.contact-section {
    position: relative;
    padding: 60px 0;
    ;
}

    .contact-section .content-column {
        margin-bottom: 50px;
    }

        .contact-section .content-column .inner-column {
            position: relative;
        }

    .contact-section .form-column {
        margin-bottom: 50px;
    }

        .contact-section .form-column .inner-column {
            position: relative;
        }

.contact-form {
    position: relative;
    padding: 50px 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: var(--bs-white);
}

    .contact-form .form-group {
        position: relative;
        margin-bottom: 20px;
    }

        .contact-form .form-group:last-child {
            margin-bottom: 0;
        }

        .contact-form .form-group .select2-container--default .select2-selection--single,
        .contact-form .form-group input:not([type=submit]),
        .contact-form .form-group textarea,
        .contact-form .form-group select {
            position: relative;
            display: block;
            height: 60px;
            width: 100%;
            line-height: 22px;
            font-size: 16px;
            font-weight: 400;
            color: rgba(0, 0, 0, 0.6);
            padding: 15px 24px;
            margin-bottom: 0;
            border: 1px solid #ccc;
            transition: all 300ms ease;
        }

            .contact-form .form-group .select2-container--default .select2-selection--single::-moz-placeholder,
            .contact-form .form-group input:not([type=submit])::-moz-placeholder,
            .contact-form .form-group textarea::-moz-placeholder,
            .contact-form .form-group select::-moz-placeholder {
                color: rgba(0, 0, 0, 0.6);
            }

            .contact-form .form-group .select2-container--default .select2-selection--single::placeholder,
            .contact-form .form-group input:not([type=submit])::placeholder,
            .contact-form .form-group textarea::placeholder,
            .contact-form .form-group select::placeholder {
                color: rgba(0, 0, 0, 0.6);
            }

            .contact-form .form-group input:focus,
            .contact-form .form-group select:focus,
            .contact-form .form-group textarea:focus {
                border-color: var(--bs-red);
            }

        .contact-form .form-group textarea {
            height: 150px;
            resize: none;
        }

    .contact-form label.error {
        display: block;
        font-weight: 500;
        font-size: 13px;
        text-transform: capitalize;
        line-height: 24px;
        color: #ff0000;
        padding-top: 7px;
        margin-bottom: 0;
    }

form .response {
    position: relative;
    text-align: center;
}

    form .response .success {
        background: #1ca345;
        color: #ffffff;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    form .response .failed {
        background-color: #de3f44;
        color: #ffffff;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    form .response .text-info {
        background-color: #ffc001 !important;
        color: #222222 !important;
        padding: 0 10px;
        margin-bottom: 20px;
    }

.contact-list-four {
    position: relative;
    padding: 50px 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: var(--bs-white);
}

    .contact-list-four li {
        position: relative;
        padding-left: 80px;
        margin-bottom: 45px;
    }

        .contact-list-four li:last-child {
            margin-bottom: 0;
        }

        .contact-list-four li svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 55px;
            height: 55px;
        }

        .contact-list-four li .title {
            position: relative;
            margin-bottom: 5px;
        }

        .contact-list-four li .text {
            position: relative;
            margin-bottom: 0;
        }

            .contact-list-four li .text a:hover {
                color: var(--bs-red);
            }


.error-section {
    position: relative;
    padding: 60px 0;
}

    .error-section .content-box {
        position: relative;
        text-align: center;
    }

        .error-section .content-box .shape-thirtyeight {
            position: absolute;
            top: -270px;
            left: 55px;
        }

        .error-section .content-box .title {
            position: relative;
            color: var(--e-secondary);
            font-size: 500px;
            line-height: 1em;
        }

            .error-section .content-box .title span {
                color: var(--bs-dark);
            }

        .error-section .content-box .title-two {
            position: relative;
            margin-bottom: 80px;
        }

        .error-section .content-box .text {
            position: relative;
            font-size: 36px;
            line-height: 56px;
            color: var(--bs-dark);
            margin-bottom: 30px;
            letter-spacing: 1px;
            max-width: 620px;
            margin: 0 auto 40px;
        }


.service-single {
    position: relative;
    padding: 60px 0;
}

    .service-single .shape-fourty {
        position: absolute;
        bottom: 150px;
        left: -272px;
        animation: fa-spin 30s infinite linear;
    }

    .service-single .content-column .outer-box .text {
        position: relative;
        margin-bottom: 20px;
    }

    .service-single .content-column .outer-box .images-box {
        position: relative;
        display: flex;
        justify-content: space-between;
        margin-bottom: 80px;
        gap: 10px;
    }

        .service-single .content-column .outer-box .images-box .image {
            margin-bottom: 0;
        }

    .service-single .content-column .outer-box .title-box {
        position: relative;
        margin-bottom: 80px;
    }

        .service-single .content-column .outer-box .title-box .text {
            margin-bottom: 20px;
        }

    .service-single .content-column .outer-box .video-box {
        position: relative;
        margin-bottom: 80px;
        z-index: 1;
    }

        .service-single .content-column .outer-box .video-box .icon-ten {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
        }

        .service-single .content-column .outer-box .video-box .icon-eleven {
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 2;
        }

        .service-single .content-column .outer-box .video-box .bg-image {
            border-radius: 72px;
            overflow: hidden;
        }

            .service-single .content-column .outer-box .video-box .bg-image:before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 100%;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                background-image: url(../images/pattern-3.png);
            }

        .service-single .content-column .outer-box .video-box .btn-box {
            position: absolute;
            top: 83px;
            right: 84px;
            z-index: 3;
        }

            .service-single .content-column .outer-box .video-box .btn-box.show-sm {
                display: none;
            }

            .service-single .content-column .outer-box .video-box .btn-box.hide-sm {
                display: block;
            }

            .service-single .content-column .outer-box .video-box .btn-box .play-now {
                position: relative;
                transition: all 300ms ease;
            }

                .service-single .content-column .outer-box .video-box .btn-box .play-now:hover {
                    transform: scale(1.1);
                }

                .service-single .content-column .outer-box .video-box .btn-box .play-now .ripple,
                .service-single .content-column .outer-box .video-box .btn-box .play-now .ripple:before,
                .service-single .content-column .outer-box .video-box .btn-box .play-now .ripple:after {
                    width: 123px;
                    height: 123px;
                }

        .service-single .content-column .outer-box .video-box .content-box {
            position: relative;
            padding: 390px 100px 85px;
        }

            .service-single .content-column .outer-box .video-box .content-box .sub-title {
                font-weight: 500;
                color: var(--bs-white);
            }

            .service-single .content-column .outer-box .video-box .content-box .title {
                color: var(--bs-white);
                margin-bottom: 0;
            }

.service-single-block .inner-box .image-box {
    position: relative;
}

    .service-single-block .inner-box .image-box .image-outer {
        position: relative;
    }

        .service-single-block .inner-box .image-box .image-outer .icon-twentytwo {
            position: absolute;
            top: 0;
            left: 0;
        }

        .service-single-block .inner-box .image-box .image-outer .icon-twentythree {
            position: absolute;
            right: 0;
            bottom: -1px;
        }

        .service-single-block .inner-box .image-box .image-outer .image {
            margin-bottom: 0;
            border-radius: 30px;
            overflow: hidden;
        }

.service-single-block .inner-box .content {
    position: relative;
    padding-top: 15px;
}

    .service-single-block .inner-box .content .location-box {
        position: relative;
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 20px;
    }

        .service-single-block .inner-box .content .location-box li {
            display: flex;
            align-items: center;
            font-weight: 600;
            gap: 10px;
        }

            .service-single-block .inner-box .content .location-box li span {
                font-size: 14px;
                color: var(--bs-dark);
            }

            .service-single-block .inner-box .content .location-box li.date {
                color: var(--bs-dark);
                font-weight: 700;
            }

        .service-single-block .inner-box .content .location-box .icon {
            position: relative;
            color: var(--e-secondary);
        }


.blog-section {
    position: relative;
    padding: 60px 0;
}

    .blog-section .news-single-block .title a:hover {
        color: var(--bs-indigo);
    }

.styled-pagination {
    position: relative;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .styled-pagination.align-left {
        justify-content: flex-start;
    }

    .styled-pagination li {
        position: relative;
        margin: 0 10px 10px 0;
    }

        .styled-pagination li:last-child {
            margin-right: 0;
        }

        .styled-pagination li a {
            position: relative;
            display: block;
            font-size: 16px;
            height: 60px;
            width: 60px;
            color: #666666;
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid #666666;
            background: transparent;
            transition: all 300ms ease;
        }

            .styled-pagination li a:hover,
            .styled-pagination li a.active {
                color: var(--bs-white);
                background-color: var(--e-secondary);
                border-color: var(--e-secondary);
            }

        .styled-pagination li .arrow {
            font-size: 18px;
            color: var(--bs-white);
            background-color: var(--bs-indigo);
            border-color: var(--bs-indigo);
        }


.blog-single {
    position: relative;
    padding: 60px 0;
}

    .blog-single .content-column .inner-column {
        position: relative;
    }

        .blog-single .content-column .inner-column .image-box.two {
            display: flex;
            justify-content: space-between;
            margin-bottom: 50px;
        }

            .blog-single .content-column .inner-column .image-box.two .image {
                margin-bottom: 0;
            }

            .blog-single .content-column .inner-column .image-box.two .image-outer {
                position: relative;
            }

                .blog-single .content-column .inner-column .image-box.two .image-outer .image {
                    border-radius: 30px;
                }

                .blog-single .content-column .inner-column .image-box.two .image-outer .icon-twentyseven {
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: 1;
                }

                .blog-single .content-column .inner-column .image-box.two .image-outer .icon-twentyeight {
                    position: absolute;
                    bottom: 9px;
                    right: 0;
                    z-index: 1;
                }

        .blog-single .content-column .inner-column .title-box {
            margin-bottom: 50px;
        }

            .blog-single .content-column .inner-column .title-box .title {
                position: relative;
                font-size: 40px;
                margin-bottom: 20px;
            }

            .blog-single .content-column .inner-column .title-box .text {
                margin-bottom: 0;
            }

        .blog-single .content-column .inner-column .blockquote {
            background: #F5F5F5;
            padding: 45px 55px;
            border-left: 4px solid var(--e-secondary);
            border-radius: 20px;
            margin-bottom: 50px;
        }

            .blog-single .content-column .inner-column .blockquote .title {
                position: relative;
                line-height: 42px;
                margin-bottom: 20px;
            }

            .blog-single .content-column .inner-column .blockquote .author {
                position: relative;
                font-size: 20px;
                font-weight: 700;
                text-align: right;
                color: var(--e-secondary);
            }

        .blog-single .content-column .inner-column .text-box {
            position: relative;
            margin-bottom: 50px;
        }

            .blog-single .content-column .inner-column .text-box .text {
                margin-bottom: 0;
            }

        .blog-single .content-column .inner-column .tags-box {
            position: relative;
            margin-bottom: 50px;
        }

            .blog-single .content-column .inner-column .tags-box .tags {
                display: flex;
                flex-wrap: wrap;
                gap: 14px;
            }

                .blog-single .content-column .inner-column .tags-box .tags a {
                    position: relative;
                    font-size: 14px;
                    line-height: 1em;
                    color: #666666;
                    padding: 12px 30px;
                    border-radius: 25px;
                    border: 1px solid #666666;
                    background-color: var(--bs-white);
                    transition: all 300ms ease;
                }

                    .blog-single .content-column .inner-column .tags-box .tags a:hover {
                        color: var(--bs-white);
                        background-color: var(--e-secondary);
                        border-color: var(--e-secondary);
                    }

        .blog-single .content-column .inner-column .social-box {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 50px;
            padding-top: 30px;
            border-top: 1px solid #DDDDDD;
        }

            .blog-single .content-column .inner-column .social-box .text {
                position: relative;
                color: var(--bs-dark);
                font-weight: 700;
                text-transform: capitalize;
                margin-bottom: 0;
            }

            .blog-single .content-column .inner-column .social-box .social-icon {
                position: relative;
                display: flex;
                align-items: center;
                gap: 20px;
            }

                .blog-single .content-column .inner-column .social-box .social-icon a {
                    position: relative;
                    font-size: 16px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--e-secondary);
                    background-color: transparent;
                }

                    .blog-single .content-column .inner-column .social-box .social-icon a:hover {
                        color: var(--bs-dark);
                    }

        .blog-single .content-column .inner-column .author-box {
            margin-bottom: 50px;
            padding-bottom: 50px;
            border-bottom: 1px solid #DDDDDD;
        }

            .blog-single .content-column .inner-column .author-box .inner-box {
                position: relative;
                display: flex;
                align-items: center;
                gap: 40px;
            }

                .blog-single .content-column .inner-column .author-box .inner-box .thumb {
                    position: relative;
                    width: 266px;
                    height: 184px;
                    flex-shrink: 0;
                    overflow: hidden;
                    border-radius: 15px;
                }

                    .blog-single .content-column .inner-column .author-box .inner-box .thumb img {
                        width: 100%;
                        height: 100%;
                    }

                .blog-single .content-column .inner-column .author-box .inner-box .content {
                    position: relative;
                }

                    .blog-single .content-column .inner-column .author-box .inner-box .content .title {
                        margin-bottom: 8px;
                    }

                    .blog-single .content-column .inner-column .author-box .inner-box .content .text {
                        position: relative;
                        margin-bottom: 10px;
                    }

                    .blog-single .content-column .inner-column .author-box .inner-box .content .social-links {
                        display: flex;
                        gap: 15px;
                    }

                        .blog-single .content-column .inner-column .author-box .inner-box .content .social-links a {
                            position: relative;
                            font-size: 18px;
                            font-weight: 700;
                            line-height: 1em;
                            color: var(--e-secondary);
                            transition: all 300ms ease;
                        }

                            .blog-single .content-column .inner-column .author-box .inner-box .content .social-links a:hover {
                                color: var(--bs-dark);
                            }

        .blog-single .content-column .inner-column .post-box {
            position: relative;
            display: flex;
            justify-content: space-between;
            margin-bottom: 50px;
            padding-bottom: 50px;
            border-bottom: 1px solid #DDDDDD;
        }

        .blog-single .content-column .inner-column .comments-area {
            position: relative;
            margin-bottom: 50px;
        }

            .blog-single .content-column .inner-column .comments-area .title {
                margin-bottom: 30px;
            }

        .blog-single .content-column .inner-column .comment-form {
            position: relative;
        }

            .blog-single .content-column .inner-column .comment-form .form-title-box {
                margin-bottom: 20px;
            }

.news-single-block {
    position: relative;
    margin-bottom: 40px;
}

    .news-single-block .image-box {
        position: relative;
    }

        .news-single-block .image-box .image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            margin-bottom: 0;
        }

            .news-single-block .image-box .image img {
                width: 100%;
                height: 100%;
            }

        .news-single-block .image-box .date-box {
            position: absolute;
            right: 60px;
            bottom: 0;
            padding: 10px 12px 0;
            border-radius: 15px 15px 0 0;
            background-color: var(--bs-white);
            text-align: center;
            z-index: 4;
            transition: all 300ms ease;
        }

            .news-single-block .image-box .date-box:before {
                content: "";
                position: absolute;
                bottom: 0;
                left: -24px;
                width: 24px;
                height: 24px;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                background-image: url(../images/news3-date-shape.png);
            }

            .news-single-block .image-box .date-box:after {
                content: "";
                position: absolute;
                bottom: 0;
                right: -24px;
                width: 24px;
                height: 24px;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                background-image: url(../images/news3-date-shape2.png);
            }

            .news-single-block .image-box .date-box .date {
                position: relative;
                margin-bottom: 0;
                color: var(--e-secondary);
                z-index: 1;
                transition: all 300ms ease;
            }

            .news-single-block .image-box .date-box .month {
                position: relative;
                margin-bottom: 0;
                font-size: 16px;
                font-weight: 700;
                line-height: 1em;
                color: var(--e-secondary);
                z-index: 1;
                transition: all 300ms ease;
            }

        .news-single-block .image-box .theme-btn {
            position: absolute;
            left: 28px;
            padding: 16px 30px;
            bottom: 0;
            opacity: 0;
        }

    .news-single-block .content-box {
        position: relative;
        padding-top: 20px;
    }

        .news-single-block .content-box .post-meta-box {
            position: relative;
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 20px;
        }

            .news-single-block .content-box .post-meta-box .cat {
                position: relative;
                font-weight: 700;
                line-height: 1em;
                color: #666666;
                transition: all 300ms ease;
            }

            .news-single-block .content-box .post-meta-box .post-meta {
                position: relative;
                display: flex;
                align-items: center;
                gap: 14px;
            }

                .news-single-block .content-box .post-meta-box .post-meta li {
                    position: relative;
                    display: flex;
                    align-items: center;
                    font-size: 14px;
                    gap: 7px;
                    transition: all 300ms ease;
                }

                    .news-single-block .content-box .post-meta-box .post-meta li .icon {
                        color: #8900BD;
                        font-size: 20px;
                        transition: all 300ms ease;
                    }

        .news-single-block .content-box .title {
            position: relative;
            margin-bottom: 10px;
        }

        .news-single-block .content-box .text {
            position: relative;
            margin-bottom: 20px;
        }

    .news-single-block:hover .image-box .theme-btn {
        opacity: 1;
        bottom: 30px;
    }

.post-block.right .inner-box {
    text-align: right;
}

.post-block .inner-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .post-block .inner-box:hover .thumb img {
        transform: scale(1.1);
    }

    .post-block .inner-box .thumb {
        position: relative;
        width: 140px;
        height: 120px;
        overflow: hidden;
        border-radius: 10px;
    }

        .post-block .inner-box .thumb img {
            transition: all 300ms ease;
        }

    .post-block .inner-box .content {
        position: relative;
    }

        .post-block .inner-box .content .date {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: #666666;
        }

        .post-block .inner-box .content .title {
            position: relative;
            line-height: 30px;
            max-width: 210px;
            margin-bottom: 0;
        }

            .post-block .inner-box .content .title a:hover {
                color: var(--e-secondary);
            }

.comment-box {
    position: relative;
    margin-bottom: 50px;
}

    .comment-box:last-child {
        margin-bottom: 0;
    }

    .comment-box.reply-comment {
        margin-left: 95px;
    }

    .comment-box .comment {
        position: relative;
        min-height: 120px;
        padding-top: 3px;
        padding-left: 150px;
    }

    .comment-box .author-thumb {
        position: absolute;
        left: 0;
        top: 0;
        height: 120px;
        width: 120px;
        border-radius: 10px;
        overflow: hidden;
    }

        .comment-box .author-thumb img {
            width: 100%;
            display: block;
        }

    .comment-box .comment-info {
        position: relative;
        display: block;
        margin-bottom: 5px;
    }

        .comment-box .comment-info .name {
            position: relative;
            display: inline-block;
            color: var(--e-secondary);
            margin-bottom: 0;
        }

        .comment-box .comment-info .date {
            position: relative;
            display: inline-block;
            font-size: 16px;
            line-height: 26px;
            font-weight: 500;
            color: #151515;
            margin-left: 5px;
        }

    .comment-box .text {
        position: relative;
        margin-bottom: 0;
        max-width: 500px;
    }

    .comment-box .btn-box {
        position: absolute;
        top: 0;
        right: 0;
        text-align: right;
    }

        .comment-box .btn-box .rating {
            position: relative;
            display: flex;
            align-items: center;
            gap: 3px;
            line-height: 1em;
            font-size: 18px;
            color: var(--e-secondary);
            margin-bottom: 10px;
        }

        .comment-box .btn-box .reply-btn {
            position: relative;
            font-size: 16px;
            line-height: 20px;
            color: #151515;
            font-weight: 700;
            transition: all 300ms ease;
        }

            .comment-box .btn-box .reply-btn:hover {
                color: var(--e-secondary);
            }

.comment-form {
    position: relative;
}

    .comment-form .form-group {
        position: relative;
        margin-bottom: 20px;
    }

        .comment-form .form-group:last-child {
            margin-bottom: 0;
        }

        .comment-form .form-group input[type=text],
        .comment-form .form-group input[type=email],
        .comment-form .form-group textarea,
        .comment-form .form-group select {
            position: relative;
            display: block;
            height: 60px;
            width: 100%;
            font-size: 15px;
            color: #666666;
            line-height: 23px;
            border-radius: 30px;
            font-weight: 400;
            padding: 24px 32px;
            background-color: var(--bs-white);
            border: 1px solid #DDDDDD;
            transition: all 300ms ease;
        }

            .comment-form .form-group input:focus,
            .comment-form .form-group select:focus,
            .comment-form .form-group textarea:focus {
                border-color: var(--e-secondary);
            }

        .comment-form .form-group textarea {
            height: 180px;
            resize: none;
            padding: 27px 32px;
            border-radius: 30px;
        }

        .comment-form .form-group input[type=submit],
        .comment-form .form-group button {
            padding: 23px 38px;
        }

.sidebar {
    position: relative;
}

    .sidebar .sidebar-title {
        position: relative;
        color: #151515;
        margin-bottom: 20px;
    }

    .sidebar .search-box {
        position: relative;
        margin-bottom: 50px;
    }

        .sidebar .search-box .form-group {
            position: relative;
            margin: 0;
        }

            .sidebar .search-box .form-group input[type=text],
            .sidebar .search-box .form-group input[type=search] {
                position: relative;
                display: block;
                font-size: 16px;
                line-height: 28px;
                width: 100%;
                border-radius: 40px;
                height: 80px;
                color: #666666;
                padding: 34px 31px;
                border: 1px solid transparent;
                background-color: #F5F5F5;
                transition: all 300ms ease;
            }

            .sidebar .search-box .form-group button {
                position: absolute;
                right: 0;
                top: 0;
                height: 80px;
                width: 80px;
                display: block;
                font-size: 18px;
                line-height: 100%;
                font-weight: normal;
                border-radius: 50%;
                color: var(--bs-white);
                background-color: var(--e-secondary);
                transition: all 300ms ease;
            }

                .sidebar .search-box .form-group button:hover {
                    background-color: var(--bs-red);
                }

    .sidebar .latest-news {
        position: relative;
        margin-bottom: 50px;
    }

        .sidebar .latest-news .post {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            border-bottom: 1px solid #DDDDDD;
        }

            .sidebar .latest-news .post:last-child {
                margin-bottom: 0;
                padding-bottom: 0;
                border-bottom: none;
            }

            .sidebar .latest-news .post .post-thumb {
                position: relative;
                flex-shrink: 0;
                height: 120px;
                width: 120px;
                overflow: hidden;
                border-radius: 20px;
                background-color: rgba(0, 0, 0, 0.05);
            }

                .sidebar .latest-news .post .post-thumb img {
                    width: 100%;
                    height: 100%;
                    -o-object-fit: cover;
                    object-fit: cover;
                }

                .sidebar .latest-news .post .post-thumb:before {
                    position: absolute;
                    left: 0;
                    top: 0;
                    height: 100%;
                    width: 100%;
                    opacity: 0.8;
                    content: "";
                    border-radius: 20px;
                    background-color: var(--e-secondary);
                    z-index: 1;
                    transform: scale(0);
                    transition: all 300ms ease;
                }

                .sidebar .latest-news .post .post-thumb:after {
                    position: absolute;
                    height: 20px;
                    width: 20px;
                    left: 50%;
                    top: 50%;
                    margin-left: -10px;
                    margin-top: -10px;
                    text-align: center;
                    line-height: 20px;
                    font-size: 18px;
                    z-index: 9;
                    color: #ffffff;
                    font-weight: 900;
                    content: "\f0c1";
                    font-family: "Font Awesome 6 Pro";
                    transform: scale(0);
                    transition: all 300ms ease;
                }

                .sidebar .latest-news .post .post-thumb:hover:before,
                .sidebar .latest-news .post .post-thumb:hover:after {
                    transform: scale(1);
                }

            .sidebar .latest-news .post .content .title {
                position: relative;
                margin-bottom: 8px;
                transition: all 300ms ease;
            }

                .sidebar .latest-news .post .content .title a:hover {
                    color: var(--e-secondary);
                }

            .sidebar .latest-news .post .content .date {
                position: relative;
                color: #666666;
            }

    .sidebar .category-list {
        position: relative;
        margin-bottom: 50px;
    }

        .sidebar .category-list .cat-list li {
            position: relative;
            margin-bottom: 10px;
            border-bottom: 0;
        }

            .sidebar .category-list .cat-list li:last-child {
                margin-bottom: 0;
            }

            .sidebar .category-list .cat-list li a {
                position: relative;
                display: block;
                font-size: 16px;
                color: var(--bs-dark);
                font-weight: 700;
                line-height: 30px;
                padding: 25px 36px;
                border-radius: 40px;
                background-color: #F5F5F5;
                transition: all 300ms ease;
            }

                .sidebar .category-list .cat-list li a::before {
                    position: absolute;
                    top: 50%;
                    right: 33px;
                    height: 80px;
                    line-height: 80px;
                    font-size: 14px;
                    color: var(--bs-dark);
                    content: "\f105";
                    font-family: "Font Awesome 6 Pro";
                    font-weight: 900;
                    transform: translateY(-50%);
                    transition: all 300ms ease;
                }

                .sidebar .category-list .cat-list li a span {
                    float: right;
                    font-size: 14px;
                    color: #333333;
                    transition: all 300ms ease;
                }

                .sidebar .category-list .cat-list li a:hover {
                    color: #ffffff;
                    background: var(--e-secondary);
                }

                    .sidebar .category-list .cat-list li a:hover::before {
                        color: #ffffff;
                    }

                    .sidebar .category-list .cat-list li a:hover span {
                        color: #ffffff;
                    }

    .sidebar .popular-tags {
        position: relative;
    }

        .sidebar .popular-tags li {
            position: relative;
            display: inline-block;
            margin: 0 9px 19px 0;
        }

            .sidebar .popular-tags li a {
                position: relative;
                display: block;
                color: #666666;
                text-align: center;
                font-size: 16px;
                line-height: 20px;
                padding: 14px 20px;
                background: none;
                font-weight: 400;
                border: 1px solid #666666;
                border-radius: 25px;
                background-color: var(--bs-white);
                transition: all 300ms ease;
            }

                .sidebar .popular-tags li a:hover {
                    border-color: var(--e-secondary);
                    background-color: var(--e-secondary);
                    color: var(--bs-white);
                }


.speaker-single {
    position: relative;
    padding: 60px 0;
}

    .speaker-single .outer-box.two {
        position: relative;
        margin-bottom: 60px;
    }

    .speaker-single .content-column .inner-column .content-box .designation {
        position: relative;
        font-size: 24px;
        font-weight: 700;
        color: var(--e-secondary);
        margin-bottom: 15px;
    }

    .speaker-single .content-column .inner-column .content-box .text {
        position: relative;
        margin-bottom: 20px;
    }

    .speaker-single .content-column .inner-column .author-box {
        position: relative;
        border-top: 1px solid #BBBBBB;
        padding-top: 30px;
        margin-top: 20px;
    }

        .speaker-single .content-column .inner-column .author-box .author-info {
            position: relative;
            margin-bottom: 20px;
        }

            .speaker-single .content-column .inner-column .author-box .author-info .title {
                margin-bottom: 3px;
            }

    .speaker-single .biography-column .inner-column {
        position: relative;
    }

        .speaker-single .biography-column .inner-column .text {
            margin-bottom: 20px;
        }

    .speaker-single .skills-column .inner-column {
        position: relative;
    }

        .speaker-single .skills-column .inner-column .text {
            margin-bottom: 20px;
        }

.speaker-single-block {
    margin-bottom: 30px;
}

    .speaker-single-block .inner-box {
        position: relative;
        padding: 0px 10px;
    }

        .speaker-single-block .inner-box:hover .image img {
            transform: scale(1.1);
        }

        .speaker-single-block .inner-box .image {
            position: relative;
            margin-bottom: 0;
            border-radius: 15px;
            overflow: hidden;
        }

            .speaker-single-block .inner-box .image img {
                position: relative;
                width: 100%;
                height: 100%;
                border-radius: 15px;
                transition: all 300ms ease;
            }

        .speaker-single-block .inner-box .content-box {
            position: relative;
            padding: 10px 10px 30px;
            text-align: center;
            transition: all 300ms ease;
        }

            .speaker-single-block .inner-box .content-box .team-shape {
                position: absolute;
                left: -10px;
                right: -10px;
                bottom: 0;
                height: 203px;
                filter: drop-shadow(0 0px 10px rgba(0, 0, 0, 0.15));
                border-radius: 12px;
                transition: all 300ms ease;
            }

            .speaker-single-block .inner-box .content-box .shape-thirtynine {
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                transition: all 300ms ease;
            }

            .speaker-single-block .inner-box .content-box .name {
                position: relative;
                color: var(--bs-white);
                line-height: 1em;
                margin-bottom: 2px;
                z-index: 3;
            }

            .speaker-single-block .inner-box .content-box .designation {
                position: relative;
                color: var(--bs-white);
                font-size: 14px;
                line-height: 24px;
                z-index: 3;
                transition: all 300ms ease;
            }

            .speaker-single-block .inner-box .content-box .social-icons {
                position: absolute;
                top: -85px;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                gap: 30px;
                transition: all 300ms ease;
            }

                .speaker-single-block .inner-box .content-box .social-icons li:nth-child(2) {
                    margin-top: -42px;
                }

                .speaker-single-block .inner-box .content-box .social-icons li:nth-child(4) {
                    margin-top: -42px;
                }

                .speaker-single-block .inner-box .content-box .social-icons li:nth-child(3) {
                    margin-top: -65px;
                }

                .speaker-single-block .inner-box .content-box .social-icons li a {
                    position: relative;
                    width: 45px;
                    height: 45px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--bs-white);
                    font-size: 16px;
                    border-radius: 50%;
                    background-color: var(--bs-indigo);
                    transition: all 300ms ease;
                }

                    .speaker-single-block .inner-box .content-box .social-icons li a:hover {
                        background-color: var(--bs-white);
                        color: var(--bs-indigo);
                    }


.event-single {
    position: relative;
    padding: 60px 0;
}

    .event-single .shape-fourty {
        position: absolute;
        bottom: 150px;
        left: -272px;
        animation: fa-spin 30s infinite linear;
    }

    .event-single .outer-box .text {
        position: relative;
        margin-bottom: 20px;
    }

    .event-single .outer-box .list-box {
        position: relative;
        display: flex;
        align-items: center;
        gap: 25px;
        margin-top: 80px;
        margin-bottom: 80px;
    }

        .event-single .outer-box .list-box .image {
            border-radius: 11px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .event-single .outer-box .list-box .event-single-list {
            position: relative;
            padding-left: 30px;
        }

            .event-single .outer-box .list-box .event-single-list li {
                position: relative;
                list-style: disc;
                font-size: 20px;
                font-weight: 700;
                line-height: 40px;
                color: var(--bs-dark);
            }

    .event-single .outer-box .images-box {
        position: relative;
        display: flex;
        justify-content: space-between;
        margin-bottom: 80px;
        gap: 10px;
    }

        .event-single .outer-box .images-box .image-outer {
            position: relative;
        }

            .event-single .outer-box .images-box .image-outer .icon-twentyfive {
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
            }

            .event-single .outer-box .images-box .image-outer .icon-twentysix {
                position: absolute;
                bottom: 0;
                right: 0;
                z-index: 1;
            }

        .event-single .outer-box .images-box .image {
            border-radius: 30px;
            overflow: hidden;
            margin-bottom: 0;
        }

    .event-single .outer-box .title-box {
        position: relative;
    }

        .event-single .outer-box .title-box .title {
            font-size: 48px;
        }

        .event-single .outer-box .title-box .text {
            margin-bottom: 20px;
        }

    .event-single .outer-box .video-box {
        position: relative;
        margin-bottom: 80px;
        z-index: 1;
    }

        .event-single .outer-box .video-box .icon-ten {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
        }

        .event-single .outer-box .video-box .icon-eleven {
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 2;
        }

        .event-single .outer-box .video-box .bg-image {
            border-radius: 72px;
            overflow: hidden;
        }

            .event-single .outer-box .video-box .bg-image:before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 100%;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                background-image: url(../images/pattern-3.png);
            }

        .event-single .outer-box .video-box .btn-box {
            position: absolute;
            top: 83px;
            right: 84px;
            z-index: 3;
        }

            .event-single .outer-box .video-box .btn-box.show-sm {
                display: none;
            }

            .event-single .outer-box .video-box .btn-box.hide-sm {
                display: block;
            }

            .event-single .outer-box .video-box .btn-box .play-now {
                position: relative;
                transition: all 300ms ease;
            }

                .event-single .outer-box .video-box .btn-box .play-now:hover {
                    transform: scale(1.1);
                }

                .event-single .outer-box .video-box .btn-box .play-now .ripple,
                .event-single .outer-box .video-box .btn-box .play-now .ripple:before,
                .event-single .outer-box .video-box .btn-box .play-now .ripple:after {
                    width: 123px;
                    height: 123px;
                }

        .event-single .outer-box .video-box .content-box {
            position: relative;
            padding: 390px 100px 85px;
        }

            .event-single .outer-box .video-box .content-box .sub-title {
                font-weight: 500;
                color: var(--bs-white);
            }

            .event-single .outer-box .video-box .content-box .title {
                color: var(--bs-white);
                margin-bottom: 0;
            }

.event-single-block .inner-box .image-box {
    position: relative;
}

    .event-single-block .inner-box .image-box .image-outer {
        position: relative;
    }

        .event-single-block .inner-box .image-box .image-outer .icon-twentytwo {
            position: absolute;
            top: 0;
            left: 0;
        }

        .event-single-block .inner-box .image-box .image-outer .icon-twentythree {
            position: absolute;
            right: 0;
            bottom: -1px;
        }

        .event-single-block .inner-box .image-box .image-outer .image {
            border-radius: 30px;
            overflow: hidden;
            margin-bottom: 0;
        }

        .event-single-block .inner-box .image-box .image-outer .thumb-box {
            position: relative;
        }

            .event-single-block .inner-box .image-box .image-outer .thumb-box .thumb {
                position: absolute;
                bottom: -50px;
                right: 195px;
            }

                .event-single-block .inner-box .image-box .image-outer .thumb-box .thumb img {
                    position: relative;
                    border-radius: 50%;
                    border: 2px solid var(--bs-white);
                    z-index: 2;
                }

                .event-single-block .inner-box .image-box .image-outer .thumb-box .thumb:before {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 142px;
                    height: 142px;
                    border-radius: 50%;
                    background-color: #D9D9D9;
                    z-index: 1;
                }

.event-single-block .inner-box .content {
    position: relative;
    padding-top: 15px;
}

    .event-single-block .inner-box .content .location-box {
        position: relative;
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 20px;
    }

        .event-single-block .inner-box .content .location-box li {
            display: flex;
            align-items: center;
            font-weight: 600;
            gap: 10px;
        }

            .event-single-block .inner-box .content .location-box li span {
                font-size: 14px;
                color: var(--bs-dark);
            }

            .event-single-block .inner-box .content .location-box li.date {
                color: var(--bs-dark);
                font-weight: 700;
            }

        .event-single-block .inner-box .content .location-box .icon {
            position: relative;
            color: var(--e-secondary);
        }


.comming-soon {
    position: relative;
    padding: 60px 0;
}

    .comming-soon .content {
        position: relative;
        text-align: center;
    }

        .comming-soon .content .logo-box .logo {
            position: relative;
            margin-bottom: 150px;
        }

            .comming-soon .content .logo-box .logo img {
                max-width: 300px;
                width: 100%;
            }

            .comming-soon .content .logo-box .logo.light {
                display: block;
            }

            .comming-soon .content .logo-box .logo.dark {
                display: none;
            }

        .comming-soon .content .time-countdown {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 150px;
            z-index: 1;
        }

            .comming-soon .content .time-countdown .counter-column {
                position: relative;
                padding: 10px;
                width: 200px;
                height: 200px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                border-radius: 10px;
                background-color: #F5F5F5;
            }

                .comming-soon .content .time-countdown .counter-column .count {
                    position: relative;
                    display: block;
                    font-size: 80px;
                    font-weight: 400;
                    line-height: 1em;
                    color: var(--bs-dark);
                    margin-bottom: 0;
                }

                .comming-soon .content .time-countdown .counter-column sub {
                    position: relative;
                    color: var(--bs-dark);
                    font-family: var(--text-font);
                    font-size: 20px;
                    line-height: 1.2em;
                    z-index: 1;
                }

        .comming-soon .content .title-box {
            position: relative;
            margin-bottom: 40px;
        }

            .comming-soon .content .title-box .title {
                position: relative;
                font-size: 48px;
                font-weight: 400;
                margin-bottom: 20px;
            }

            .comming-soon .content .title-box .text {
                position: relative;
                font-size: 24px;
                line-height: 42px;
            }

.emailed-form {
    position: relative;
}

    .emailed-form .form-group {
        position: relative;
        width: 580px;
        margin: 0 auto;
    }

    .emailed-form .select2-container--default .select2-selection--single,
    .emailed-form input:not([type=submit]),
    .emailed-form textarea,
    .emailed-form select {
        position: relative;
        display: block;
        height: 60px;
        width: 100%;
        padding: 24px 34px;
        font-size: 16px;
        font-weight: 400;
        border-radius: 50px;
        color: #666666;
        border: 1px solid #666666;
        background-color: var(--bs-white);
        margin-bottom: 0;
        transition: all 300ms ease;
    }

    .emailed-form ::-webkit-input-placeholder {
        color: #666666;
    }

    .emailed-form input:focus,
    .emailed-form select:focus,
    .emailed-form textarea:focus {
        border-color: var(--e-secondary);
    }

    .emailed-form button {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        color: var(--bs-white);
        background-color: var(--e-secondary);
        transition: all 300ms ease;
    }

.clock-wrapper {
    position: absolute;
    top: 45%;
    right: 0;
    left: 0;
    width: 250px;
    height: 250px;
    margin: auto;
    margin-top: -145px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #cccccc;
    background-color: var(--bs-white);
    transform: scale(1.6);
}

.clock-base {
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.click-indicator {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    width: 230px;
    height: 230px;
}

    .click-indicator div {
        position: absolute;
        width: 2px;
        height: 4px;
        margin: 113px 114px;
    }

        .click-indicator div > span {
            height: 5px;
            width: 5px;
            background-color: #353535;
            display: inline-block;
            border-radius: 50%;
            margin-left: -1px;
            margin-top: -1px;
        }

        .click-indicator div:nth-child(1) {
            transform: rotate(30deg) translateY(-120px);
        }

        .click-indicator div:nth-child(2) {
            transform: rotate(60deg) translateY(-120px);
        }

        .click-indicator div:nth-child(3) {
            transform: rotate(90deg) translateY(-120px);
            background-color: #F00;
        }

        .click-indicator div:nth-child(4) {
            transform: rotate(120deg) translateY(-120px);
        }

        .click-indicator div:nth-child(5) {
            transform: rotate(150deg) translateY(-120px);
        }

        .click-indicator div:nth-child(6) {
            transform: rotate(180deg) translateY(-120px);
            background-color: #F00;
        }

        .click-indicator div:nth-child(7) {
            transform: rotate(210deg) translateY(-120px);
        }

        .click-indicator div:nth-child(8) {
            transform: rotate(240deg) translateY(-120px);
        }

        .click-indicator div:nth-child(9) {
            transform: rotate(270deg) translateY(-120px);
            background-color: #F00;
        }

        .click-indicator div:nth-child(10) {
            transform: rotate(300deg) translateY(-120px);
        }

        .click-indicator div:nth-child(11) {
            transform: rotate(330deg) translateY(-120px);
        }

        .click-indicator div:nth-child(12) {
            transform: rotate(360deg) translateY(-120px);
            background-color: #F00;
        }

.clock-hour {
    position: absolute;
    z-index: 2;
    top: 75px;
    left: 123px;
    width: 4px;
    height: 65px;
    background-color: #555;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    transform-origin: 2px 50px;
    transition: 0.5s;
    -webkit-animation: rotate-hour 43200s linear infinite;
    -moz-animation: rotate-hour 43200s linear infinite;
}

.clock-minute {
    position: absolute;
    z-index: 3;
    top: 55px;
    left: 123px;
    width: 4px;
    height: 85px;
    background-color: #555;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    transform-origin: 2px 70px;
    transition: 0.5s;
    -webkit-animation: rotate-minute 3600s linear infinite;
    -moz-animation: rotate-minute 3600s linear infinite;
}

.clock-second {
    position: absolute;
    z-index: 4;
    top: 15px;
    left: 124px;
    width: 2px;
    height: 130px;
    background-color: #a00;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    transform-origin: 1px 110px;
    transition: 0.5s;
    -webkit-animation: rotate-second 60s linear infinite;
    -moz-animation: rotate-second 60s linear infinite;
    opacity: 0.5;
}

    .clock-second:after {
        content: "";
        display: block;
        position: absolute;
        left: -3px;
        bottom: 16px;
        width: 8px;
        height: 8px;
        background-color: #a00;
        border: solid 2px #a00;
        border-radius: 50%;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    }

.clock-center {
    position: absolute;
    z-index: 1;
    width: 150px;
    height: 150px;
    top: 50px;
    left: 50px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

    .clock-center:after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        margin: 65px;
        background-color: #ddd;
        border-radius: 50%;
    }


.shop-section {
    position: relative;
    padding: 60px 0;
}

    .shop-section .items-sorting {
        position: relative;
        margin-bottom: 20px;
    }

        .shop-section .items-sorting .results-column {
            margin-bottom: 20px;
        }

            .shop-section .items-sorting .results-column h6 {
                position: relative;
                font-weight: 400;
                padding: 13px 0px;
            }

        .shop-section .items-sorting .select-column {
            margin-bottom: 20px;
        }

        .shop-section .items-sorting .form-group {
            margin-bottom: 0px;
        }

        .shop-section .items-sorting select {
            position: relative;
            display: block;
            width: 100%;
            line-height: 24px;
            padding: 9px 20px 9px;
            height: 50px;
            font-size: 14px;
            border: 1px solid #eeeeee;
            cursor: pointer;
            -moz-appearance: none;
            -webkit-appearance: none;
            -ms-appearance: none;
            -o-appearance: none;
            background: url(../images/icon-select.png) right center no-repeat;
            color: var(--bs-gray);
            transition: all 500ms ease;
        }

            .shop-section .items-sorting select option {
                text-indent: 15px;
            }

.shop-item {
    position: relative;
    margin-bottom: 40px;
}

    .shop-item .inner-box {
        position: relative;
        transition: all 300ms ease;
    }

        .shop-item .inner-box:hover .image .overlay-box {
            opacity: 1;
        }

            .shop-item .inner-box:hover .image .overlay-box:before {
                transform: rotateX(0deg) scale(1, 1);
                opacity: 0.5;
                visibility: visible;
            }

        .shop-item .inner-box .image {
            position: relative;
            z-index: 11;
            text-align: center;
            background-color: var(--bs-white);
        }

            .shop-item .inner-box .image .sale {
                position: absolute;
                left: 20px;
                top: 20px;
                font-size: 11px;
                font-weight: 700;
                color: var(--bs-white);
                z-index: 12;
                padding: 5px 8px;
                line-height: 1em;
                text-transform: uppercase;
                background-color: var(--bs-indigo);
            }

            .shop-item .inner-box .image .overlay-box {
                position: absolute;
                content: "";
                left: 0px;
                top: 0px;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: all 300ms ease;
            }

                .shop-item .inner-box .image .overlay-box:before {
                    position: absolute;
                    content: "";
                    left: 0px;
                    top: 0px;
                    right: 0px;
                    bottom: 0px;
                    display: block;
                    opacity: 0;
                    visibility: hidden;
                    transition: all 900ms ease;
                    background-color: var(--bs-dark);
                    transform: rotateX(-360deg) scale(0.5, 0.5);
                }

                .shop-item .inner-box .image .overlay-box .cart-option li {
                    position: relative;
                }

                    .shop-item .inner-box .image .overlay-box .cart-option li:first-child {
                        position: absolute;
                        right: 15px;
                        top: 15px;
                    }

                    .shop-item .inner-box .image .overlay-box .cart-option li:last-child {
                        position: absolute;
                        left: 15px;
                        bottom: 15px;
                    }

                    .shop-item .inner-box .image .overlay-box .cart-option li a {
                        position: relative;
                        width: 40px;
                        height: 40px;
                        color: var(--bs-white);
                        font-size: 18px;
                        display: block;
                        line-height: 40px;
                        background-color: var(--bs-indigo);
                        transition: all 300ms ease;
                    }

                        .shop-item .inner-box .image .overlay-box .cart-option li a:hover {
                            background-color: var(--bs-indigo);
                            color: var(--bs-white);
                        }

            .shop-item .inner-box .image img {
                width: 100%;
                display: inline-block;
            }

        .shop-item .inner-box .lower-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 0px 0px;
            z-index: 3;
        }

            .shop-item .inner-box .lower-content .title {
                position: relative;
                margin-bottom: 0;
            }

                .shop-item .inner-box .lower-content .title a:hover {
                    color: var(--bs-indigo);
                }

            .shop-item .inner-box .lower-content .price {
                position: relative;
            }

                .shop-item .inner-box .lower-content .price li {
                    position: relative;
                    color: var(--bs-dark);
                    display: inline-block;
                }

                    .shop-item .inner-box .lower-content .price li.discount {
                        position: relative;
                        color: var(--bs-dark);
                        margin-right: 8px;
                        text-decoration: line-through;
                    }


.shop-single-section {
    position: relative;
    padding: 60px 0;
}

.cart-section input.quantity-spinner {
    line-height: 24px;
    padding: 10px 15px !important;
    height: 54px !important;
    box-shadow: none !important;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn {
    padding: 13px 10px;
    background: #f4f5f6;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical i {
    top: 1px;
}

.product-details .basic-details {
    position: relative;
    margin-bottom: 20px;
}

    .product-details .basic-details .details-header {
        position: relative;
        margin-bottom: 0px;
    }

        .product-details .basic-details .details-header h2 {
            margin-bottom: 8px;
        }

            .product-details .basic-details .details-header h2 a {
                color: var(--bs-dark);
            }

        .product-details .basic-details .details-header .rating {
            font-size: 16px;
            margin-bottom: 25px;
            display: inline-block;
        }

            .product-details .basic-details .details-header .rating span {
                color: var(--bs-indigo);
            }

            .product-details .basic-details .details-header .rating .fa {
                display: inline-block;
                margin-right: 1px;
            }

                .product-details .basic-details .details-header .rating .fa.light {
                    color: var(--bs-white);
                }

        .product-details .basic-details .details-header .item-price {
            position: relative;
            font-size: 24px;
            font-weight: 400;
            color: var(--bs-dark);
            line-height: 24px;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

    .product-details .basic-details .text {
        position: relative;
        font-size: 14px;
        line-height: 1.9em;
        margin-bottom: 30px;
    }

    .product-details .basic-details .availablity {
        position: relative;
        float: left;
        padding-right: 40px;
        line-height: 32px;
        margin-bottom: 27px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1px;
        color: var(--bs-white);
    }

        .product-details .basic-details .availablity strong {
            font-size: 14px;
            letter-spacing: 2px;
            color: var(--bs-white);
            font-weight: 600;
            text-transform: uppercase;
        }

    .product-details .basic-details .other-options {
        display: flex;
        gap: 20px;
    }

    .product-details .basic-details .item-quantity {
        position: relative;
        width: 120px;
    }

    .product-details .basic-details .btns-box {
        position: relative;
    }

    .product-details .basic-details .quantity-spinner {
        line-height: 24px;
        width: 120px;
        padding: 10px 15px !important;
        height: 54px !important;
        box-shadow: none !important;
    }

    .product-details .basic-details .bootstrap-touchspin .input-group-btn-vertical > .btn {
        padding: 13px 10px;
        background: #f4f5f6;
    }

.product-details .image-column {
    margin-bottom: 50px;
}

    .product-details .image-column .image-carousel {
        background-color: var(--bs-white);
        border-radius: 4px;
    }

    .product-details .image-column .image-box img {
        position: relative;
        display: block;
        width: 100%;
    }

    .product-details .image-column .thumbs-carousel {
        margin-top: 20px;
    }

        .product-details .image-column .thumbs-carousel li {
            background-color: var(--bs-white);
            text-align: center;
            padding: 0px 0px;
            cursor: pointer;
        }

            .product-details .image-column .thumbs-carousel li img {
                width: 100%;
                display: inline-block;
            }

.product-details .shop-list {
    position: relative;
    margin-top: 20px;
}

    .product-details .shop-list li {
        position: relative;
        font-size: 14px;
        margin-bottom: 10px;
    }

        .product-details .shop-list li strong {
            color: #222222;
            font-size: 16px;
            margin-right: 5px;
            text-transform: uppercase;
        }

        .product-details .shop-list li a {
            position: relative;
            color: var(--bs-indigo);
            font-size: 14px;
            font-weight: 700;
            margin-top: 0px;
            display: inline-block;
            text-transform: uppercase;
        }

.product-details .info-column {
    margin-bottom: 50px;
}

.product-details .bootstrap-touchspin .input-group-btn-vertical i {
    top: 1px;
}


.shop-page .prod-tabs {
    position: relative;
}

    .shop-page .prod-tabs .tab-btns {
        position: relative;
        text-align: center;
        margin-bottom: 40px;
    }

        .shop-page .prod-tabs .tab-btns .tab-btn {
            position: relative;
            display: block;
            margin-right: 8px;
            font-size: 16px;
            background: none;
            color: var(--bs-dark);
            border: 1px solid #cccccc;
            text-transform: capitalize;
            font-weight: 400;
            line-height: 24px;
            cursor: pointer;
            border-radius: 5px;
            margin-bottom: 12px;
            display: inline-block;
            padding: 12px 40px 10px;
            transition: all 500ms ease;
        }

            .shop-page .prod-tabs .tab-btns .tab-btn:hover {
                color: var(--bs-white);
                background: var(--bs-indigo);
                border-color: var(--bs-indigo);
            }

            .shop-page .prod-tabs .tab-btns .tab-btn.active-btn {
                color: var(--bs-white);
                background: var(--bs-indigo);
                border-color: var(--bs-indigo);
            }

    .shop-page .prod-tabs .tabs-content {
        position: relative;
    }

        .shop-page .prod-tabs .tabs-content .tab {
            position: relative;
            display: none;
        }

            .shop-page .prod-tabs .tabs-content .tab p {
                font-size: 14px;
                line-height: 2em;
                color: var(--bs-gray);
                margin-bottom: 20px;
            }

                .shop-page .prod-tabs .tabs-content .tab p:last-child {
                    margin-bottom: 0px;
                }

            .shop-page .prod-tabs .tabs-content .tab h3 {
                margin-bottom: 15px;
            }

            .shop-page .prod-tabs .tabs-content .tab h4 {
                margin-bottom: 15px;
                font-size: 16px;
                font-weight: 700;
                text-transform: uppercase;
            }

            .shop-page .prod-tabs .tabs-content .tab h5 {
                margin-bottom: 15px;
            }

            .shop-page .prod-tabs .tabs-content .tab h6 {
                margin-bottom: 15px;
            }

            .shop-page .prod-tabs .tabs-content .tab.active-tab {
                display: block;
            }

    .shop-page .prod-tabs .reviews-container {
        position: relative;
        padding-bottom: 1px;
    }

        .shop-page .prod-tabs .reviews-container .review-box {
            position: relative;
            margin-bottom: 30px;
            padding-left: 120px;
            min-height: 130px;
            padding-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
        }

            .shop-page .prod-tabs .reviews-container .review-box:last-child {
                margin-bottom: 0px;
                padding-bottom: 0px;
                border: none;
            }

        .shop-page .prod-tabs .reviews-container .rev-thumb {
            position: absolute;
            left: 0px;
            top: 5px;
            width: 100px;
            height: 100px;
            background: #ffffff;
            border-radius: 3px;
            margin-bottom: 20px;
        }

            .shop-page .prod-tabs .reviews-container .rev-thumb img {
                display: block;
                width: 100%;
                border-radius: 3px;
            }

        .shop-page .prod-tabs .reviews-container .rev-content {
            position: relative;
        }

        .shop-page .prod-tabs .reviews-container .rev-header {
            position: relative;
        }

            .shop-page .prod-tabs .reviews-container .rev-header h4 {
                float: left;
                text-transform: uppercase;
                margin-bottom: 10px;
            }

            .shop-page .prod-tabs .reviews-container .rev-header .rating {
                position: relative;
                float: left;
                margin-left: 40px;
                color: var(--bs-indigo);
                line-height: 30px;
                font-size: 14px;
                margin-bottom: 10px;
            }

                .shop-page .prod-tabs .reviews-container .rev-header .rating .fa {
                    margin-right: 3px;
                }

            .shop-page .prod-tabs .reviews-container .rev-header .time {
                position: relative;
                float: right;
                color: var(--bs-dark);
                line-height: 30px;
                font-size: 14px;
            }

        .shop-page .prod-tabs .reviews-container .rev-option {
            font-size: 14px;
            color: var(--bs-dark);
        }

            .shop-page .prod-tabs .reviews-container .rev-option a {
                font-size: 14px;
                text-transform: uppercase;
                font-weight: 700;
            }

        .shop-page .prod-tabs .reviews-container .rev-text {
            font-size: 14px;
            color: var(--bs-dark);
            line-height: 1.8em;
            margin-bottom: 15px;
        }

    .shop-page .prod-tabs .add-review {
        position: relative;
        margin: 30px 0px 0;
        font-size: 14px;
    }

        .shop-page .prod-tabs .add-review h2 {
            color: var(--bs-dark);
        }

        .shop-page .prod-tabs .add-review .rating {
            position: relative;
            padding-top: 8px;
        }

            .shop-page .prod-tabs .add-review .rating .rate-box {
                position: relative;
                display: inline-block;
                margin-right: 10px;
                font-size: 14px;
                color: var(--bs-dark);
            }

                .shop-page .prod-tabs .add-review .rating .rate-box:hover {
                    color: var(--bs-indigo);
                }

                .shop-page .prod-tabs .add-review .rating .rate-box:focus {
                    color: var(--bs-indigo);
                }

                .shop-page .prod-tabs .add-review .rating .rate-box:active {
                    color: var(--bs-indigo);
                }

        .shop-page .prod-tabs .add-review label {
            position: relative;
            display: block;
            font-size: 14px;
            margin-bottom: 5px;
            font-weight: 400;
            color: var(--bs-dark);
        }

        .shop-page .prod-tabs .add-review h3 {
            margin-bottom: 20px;
        }

        .shop-page .prod-tabs .add-review .form-group {
            position: relative;
            margin-bottom: 20px;
        }

            .shop-page .prod-tabs .add-review .form-group:last-child {
                margin-bottom: 0;
            }

            .shop-page .prod-tabs .add-review .form-group input[type=text],
            .shop-page .prod-tabs .add-review .form-group input[type=email],
            .shop-page .prod-tabs .add-review .form-group textarea,
            .shop-page .prod-tabs .add-review .form-group select {
                position: relative;
                display: block;
                height: 60px;
                width: 100%;
                font-size: 15px;
                color: #666666;
                line-height: 23px;
                border-radius: 30px;
                font-weight: 400;
                padding: 24px 32px;
                background-color: var(--bs-white);
                border: 1px solid #DDDDDD;
                transition: all 300ms ease;
            }

                .shop-page .prod-tabs .add-review .form-group input:focus,
                .shop-page .prod-tabs .add-review .form-group select:focus,
                .shop-page .prod-tabs .add-review .form-group textarea:focus {
                    border-color: var(--e-secondary);
                }

            .shop-page .prod-tabs .add-review .form-group textarea {
                height: 180px;
                resize: none;
                padding: 27px 32px;
                border-radius: 30px;
            }

.bootstrap-touchspin {
    width: 120px !important;
}

    .bootstrap-touchspin .input-group-btn-vertical {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: column;
    }

        .bootstrap-touchspin .input-group-btn-vertical button {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 !important;
            width: 27px !important;
            height: 27px !important;
            z-index: 33;
        }


.cart-section {
    position: relative;
    padding: 60px 0;
}

    .cart-section .cart-outer {
        position: relative;
    }

    .cart-section .table-outer {
        position: relative;
        width: 100%;
        overflow-x: auto;
    }

    .cart-section .cart-table {
        width: 100%;
        min-width: 900px;
        border: 1px solid #eeeeee;
    }

        .cart-section .cart-table tbody tr {
            border-bottom: 1px solid #eeeeee;
        }

    .cart-section .coupon-outer {
        position: relative;
        margin: 40px 0px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .cart-section .coupon-outer .cart-btn {
            font-size: 14px;
            padding: 14px 43px;
            font-weight: 400;
            cursor: pointer;
            transition: all 500ms ease;
        }

    .cart-section .apply-coupon {
        position: relative;
    }

        .cart-section .apply-coupon .form-group {
            position: relative;
            float: left;
            margin-right: 20px;
        }

            .cart-section .apply-coupon .form-group .coupon-btn {
                padding: 11px 28px;
                line-height: 30px;
                cursor: pointer;
            }

                .cart-section .apply-coupon .form-group .coupon-btn:hover {
                    background-color: var(--bs-dark);
                    color: var(--bs-white);
                }

            .cart-section .apply-coupon .form-group input[type=text] {
                display: block;
                line-height: 26px;
                padding: 12px 0px;
                border-bottom: 2px solid var(--bs-dark);
                height: 54px;
                width: 230px;
                background: none;
                font-size: 14px;
            }

    .cart-section .estimate-form {
        position: relative;
    }

        .cart-section .estimate-form .row {
            margin-left: -7px;
            margin-right: -7px;
        }

            .cart-section .estimate-form .row .form-group {
                padding: 0px 7px !important;
                margin-bottom: 30px;
            }

    .cart-section .sec-title {
        margin-bottom: 25px;
    }

        .cart-section .sec-title h2 {
            font-size: 26px;
            color: var(--bs-dark);
        }

    .cart-section .cart-note {
        position: relative;
        margin-bottom: 50px;
        padding: 16px 20px;
        text-align: center;
        border: 1px dashed #b2dd4c;
        background: #f4f4f4;
        line-height: 1.7em;
    }

.cart-table .cart-header {
    position: relative;
    width: 100%;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    background: var(--bs-indigo);
    color: var(--bs-dark);
}

.cart-table thead tr th {
    line-height: 24px;
    padding: 20px 15px;
    min-width: 120px;
    font-weight: 700;
    color: var(--bs-white);
    font-size: 16px;
    text-transform: capitalize;
}

    .cart-table thead tr th.prod-column {
        text-align: left;
        padding-left: 40px;
    }

.cart-table tbody tr td {
    line-height: 24px;
    padding: 40px 40px 40px;
    min-width: 100px;
    vertical-align: middle;
}

    .cart-table tbody tr td .quantity-spinner {
        padding: 5px 0px 5px 20px;
        line-height: 24px;
        height: 34px;
        display: block;
        width: 100%;
        position: relative;
    }

.cart-table tbody tr .qty {
    width: 90px;
    padding-right: 40px;
    padding-left: 10px;
}

    .cart-table tbody tr .qty .quantity-spinner {
        background: #f5f5f5;
    }

    .cart-table tbody tr .qty input[type=text] {
        position: relative;
        line-height: 46px;
        height: 46px;
        background: #f4f4f4;
    }

.cart-table tbody tr .prod-column .column-box {
    position: relative;
    min-height: 100px;
    padding-left: 130px;
    padding-top: 40px;
    text-align: left;
}

    .cart-table tbody tr .prod-column .column-box .prod-thumb {
        position: absolute;
        width: 100px;
        left: 0px;
        top: 0px;
    }

        .cart-table tbody tr .prod-column .column-box .prod-thumb img {
            display: block;
            max-width: 100%;
        }

    .cart-table tbody tr .prod-column .column-box h6 {
        margin-bottom: 5px;
    }

.cart-table tbody tr .sub-total {
    font-weight: 400;
    color: var(--bs-dark);
    font-size: 18px;
    padding-left: 20px;
}

.cart-table tbody tr .remove-btn {
    position: relative;
    font-size: 18px;
    color: var(--bs-dark);
    display: inline-block;
    transition: all 300ms ease;
}

    .cart-table tbody tr .remove-btn:hover {
        color: var(--bs-indigo);
    }

.cart-table tbody tr td.price {
    font-size: 18px;
    font-weight: 400;
    color: var(--bs-dark);
    padding-left: 10px;
}

.cart-table tbody .available-info {
    position: relative;
    padding-left: 50px;
    color: var(--bs-dark);
    font-size: 16px;
}

    .cart-table tbody .available-info .icon {
        position: absolute;
        left: 0px;
        top: 5px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 18px;
        color: var(--bs-white);
        background: #3e4494;
        border-radius: 50%;
    }

.column.default-column .cart-table tbody tr .qty {
    width: 110px;
    padding-right: 20px;
}

.product-details .basic-details .item-quantity input[type=text] {
    position: relative;
    line-height: 46px;
    height: 46px;
    background: #f4f4f4;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn {
    height: 24px;
    background: #e9e9e9;
}

.bootstrap-touchspin .input-group-btn-vertical i {
    left: 6px;
    top: 6px;
}

.cart-total-box {
    position: relative;
    max-width: 490px;
    margin-bottom: 40px;
    padding: 40px 40px 30px;
    background-color: var(--bs-white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .cart-total-box h4 {
        position: relative;
        margin-bottom: 25px;
    }

.totals-table {
    position: relative;
}

    .totals-table li {
        position: relative;
        color: var(--bs-dark);
        font-weight: 500;
        font-size: 18px;
        margin-bottom: 8px;
    }

        .totals-table li .col {
            float: right;
            width: auto;
        }

        .totals-table li .col-title {
            font-weight: 600;
            float: left;
        }

        .totals-table li.total {
            margin-top: 25px;
            padding-top: 30px;
            border-top: 1px solid #cccccc;
        }

.checkout-btn {
    color: var(--bs-white);
    font-size: 14px;
    font-weight: 400;
    padding: 17px 43px 14px;
    cursor: pointer;
    background-color: var(--bs-dark);
}


.checkout-section {
    position: relative;
    padding: 60px 0;
}

    .checkout-section .default-links {
        position: relative;
        margin-bottom: 40px;
    }

        .checkout-section .default-links li {
            margin-bottom: 15px;
            line-height: 24px;
            padding: 18px 28px;
            background: #f9f9f9;
            color: var(--bs-gray);
            font-size: 17px;
            font-weight: 600;
            border: 1px solid #ebebeb;
        }

            .checkout-section .default-links li a {
                color: var(--bs-dark);
                text-decoration: underline;
            }

    .checkout-section .payment-options li {
        position: relative;
        margin-bottom: 15px;
    }

        .checkout-section .payment-options li .radio-option {
            position: relative;
        }

            .checkout-section .payment-options li .radio-option label {
                position: relative;
                display: block;
                padding-left: 30px;
                font-weight: 600 !important;
                text-transform: capitalize;
                letter-spacing: 1px;
                color: var(--bs-gray);
                cursor: pointer;
                font-size: 15px;
            }

                .checkout-section .payment-options li .radio-option label strong {
                    font-weight: 500;
                    display: inline-block;
                    color: var(--bs-gray);
                    font-size: 15px;
                }

                .checkout-section .payment-options li .radio-option label .small-text {
                    position: relative;
                    display: none;
                    padding: 18px 26px;
                    letter-spacing: 0px;
                    text-transform: none;
                    font-weight: normal;
                    font-size: 15px;
                    border-radius: 4px;
                    line-height: 20px;
                    line-height: 1.8em;
                    margin-top: 20px;
                    margin-left: -30px;
                    background-color: #ececec;
                }

                    .checkout-section .payment-options li .radio-option label .small-text:before {
                        position: absolute;
                        content: "";
                        left: 24px;
                        top: -10px;
                        border-left: 10px solid transparent;
                        border-right: 10px solid transparent;
                        border-bottom: 15px solid #ececec;
                    }

                .checkout-section .payment-options li .radio-option label img {
                    position: relative;
                    top: -3px;
                    display: inline-block;
                    max-width: 100%;
                    padding-left: 30px;
                    position: relative;
                    display: inline-block;
                    max-width: 100%;
                    padding-left: 30px;
                }

            .checkout-section .payment-options li .radio-option input[type=radio] {
                position: absolute;
                left: 0px;
                top: 3px;
            }

                .checkout-section .payment-options li .radio-option input[type=radio]:checked + label .small-text {
                    display: block;
                }

            .checkout-section .payment-options li .radio-option #payment-3 {
                top: 9px;
            }

        .checkout-section .payment-options li .what-paypall {
            font-size: 13px;
            font-weight: 500;
            margin-left: 15px;
            color: var(--bs-dark);
        }

.shop-form .billing-inner {
    position: relative;
}

.shop-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

    .shop-form .form-group .field-label {
        display: block;
        line-height: 24px;
        margin-bottom: 8px;
        color: var(--bs-gray);
        font-size: 15px;
        font-weight: 500;
        text-transform: capitalize;
    }

        .shop-form .form-group .field-label sup {
            position: relative;
            top: 0px;
            color: var(--bs-gray);
            font-size: 16px;
        }

.shop-form .select2-container--default .select2-selection--single,
.shop-form input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.shop-form textarea,
.shop-form select {
    position: relative;
    display: block;
    height: 60px;
    width: 100%;
    font-size: 15px;
    color: #666666;
    line-height: 23px;
    border-radius: 5px;
    font-weight: 400;
    padding: 10px 20px;
    background-color: var(--bs-white);
    border: 1px solid #DDDDDD;
    transition: all 300ms ease;
}

    .shop-form .select2-container--default .select2-selection--single:focus,
    .shop-form .select2-container--default .select2-selection--single:focus,
    .shop-form .select2-container--default .select2-selection--single:focus,
    .shop-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus,
    .shop-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus,
    .shop-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus,
    .shop-form textarea:focus,
    .shop-form textarea:focus,
    .shop-form textarea:focus,
    .shop-form select:focus,
    .shop-form select:focus,
    .shop-form select:focus {
        border-color: var(--bs-red);
    }

.shop-form input.address-two {
    margin-top: 12px;
}

.shop-form textarea {
    height: 180px;
    resize: none;
    padding: 27px 32px;
    border-radius: 5px;
}

.billing-details .shop-form .sec-title {
    margin-bottom: 20px;
}

.billing-details .shop-form .form-group.sec-title {
    margin-bottom: 10px;
    padding-bottom: 30px;
    margin-top: 20px;
}

.shop-order-box {
    position: relative;
    padding: 20px 28px 50px;
    border: 1px solid #d9d9d9;
}

    .shop-order-box .order-list {
        position: relative;
    }

        .shop-order-box .order-list li {
            position: relative;
            color: var(--bs-gray);
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

            .shop-order-box .order-list li span {
                float: right;
                width: 35%;
                text-align: left;
                font-size: 17px;
                text-transform: capitalize;
            }

                .shop-order-box .order-list li span.dark {
                    color: var(--bs-dark);
                }

            .shop-order-box .order-list li.total {
                padding: 8px 0px;
                border-top: 1px solid #e2e2e2;
                border-bottom: 1px solid #e2e2e2;
            }

.payment-options {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}


.main-footer {
    position: relative;
    background-color: var(--bs-white);
}

    .main-footer .widgets-section {
        position: relative;
        padding: 250px 0 50px;
    }

    .main-footer .footer-column {
        position: relative;
        margin-bottom: 50px;
    }

    .main-footer .footer-widget {
        position: relative;
    }

    .main-footer .widget-title {
        position: relative;
        display: block;
        color: var(--bs-white);
        margin-bottom: 30px;
    }

    .main-footer .about-widget .logo {
        margin-bottom: 30px;
    }

    .main-footer .about-widget .text {
        position: relative;
        color: var(--bs-white);
        margin-bottom: 30px;
    }


.user-links {
    position: relative;
}

    .user-links li {
        position: relative;
        font-size: 16px;
        line-height: 36px;
        color: var(--bs-white);
        margin-bottom: 0;
    }

        .user-links li:last-child {
            margin-bottom: 0;
        }

        .user-links li a {
            position: relative;
            display: inline-block;
            color: inherit;
            transition: all 300ms ease;
        }

            .user-links li a:hover {
                color: var(--yellow);
            }

                .user-links li a:hover:before {
                    width: 100%;
                }

        .user-links li i {
            font-weight: 300;
            margin-right: 15px;
            font-size: 16px;
        }

    .user-links.two-column {
        display: flex;
        flex-wrap: wrap;
    }

        .user-links.two-column li {
            flex: 0 0 50%;
            width: 50%;
            padding-right: 15px;
        }

.contact-list-two {
    position: relative;
    padding: 0;
}

    .contact-list-two.two {
        margin-top: -10px;
    }

        .contact-list-two.two li {
            margin-bottom: 10px;
        }

            .contact-list-two.two li i {
                font-size: 20px;
                padding-top: 5px;
            }

    .contact-list-two li {
        position: relative;
        display: flex;
        font-size: 18px;
        line-height: 30px;
        font-weight: 300;
    }

        .contact-list-two li i {
            position: relative;
            font-size: 28px;
            line-height: 1em;
            color: var(--yellow);
            margin-right: 20px;
            padding-top: 9px;
        }

        .contact-list-two li:last-child {
            margin-bottom: 0;
        }

        .contact-list-two li a {
            position: relative;
            font-weight: 300;
            display: inline-block;
            color: var(--bs-dark);
            transition: all 300ms ease;
        }

            .contact-list-two li a:hover {
                color: var(--bs-red);
            }

    .contact-list-two.light li,
    .contact-list-two.light a {
        color: var(--bs-white);
    }

.contact-list-three {
    position: relative;
    display: flex;
    justify-content: space-between;
}

    .contact-list-three li {
        position: relative;
        font-size: 18px;
        line-height: 30px;
    }

        .contact-list-three li .icon-box {
            position: relative;
            display: flex;
        }

        .contact-list-three li i {
            position: relative;
            top: 3px;
            font-size: 20px;
            line-height: 1em;
            margin-right: 15px;
            color: var(--e-secondary);
        }

.rtl .contact-list-three li i {
    margin-right: 0;
    margin-left: 15px;
}

.contact-list-three li a {
    position: relative;
    display: inline-block;
    color: var(--bs-dark);
    transition: all 300ms ease;
}

    .contact-list-three li a:hover {
        color: var(--e-secondary);
    }

.contact-list-three.light li,
.contact-list-three.light a {
    color: var(--bs-white);
}


.newsletter-form {
    position: relative;
}

    .newsletter-form .form-group {
        position: relative;
        max-width: 280px;
        width: 100%;
    }

        .newsletter-form .form-group input[type=text],
        .newsletter-form .form-group input[type=email] {
            position: relative;
            display: block;
            height: 50px;
            width: 100%;
            font-size: var(--body-font-size);
            line-height: 30px;
            color: #536A72;
            padding: 20px 30px;
            background: var(--bs-white);
            border-radius: 50px;
            transition: all 300ms ease;
        }

            .newsletter-form .form-group input[type=text]::-moz-placeholder,
            .newsletter-form .form-group input[type=email]::-moz-placeholder {
                color: #536A72;
            }

            .newsletter-form .form-group input[type=text]::placeholder,
            .newsletter-form .form-group input[type=email]::placeholder {
                color: #536A72;
            }

        .newsletter-form .form-group .button {
            position: absolute;
            right: 0;
            top: 0;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            font-size: 22px;
            color: var(--bs-white);
            background-color: var(--e-secondary);
            transition: all 300ms ease;
        }

            .newsletter-form .form-group .button:hover {
                background-color: var(--bs-red);
            }

            .newsletter-form .form-group .button i {
                display: flex;
                align-items: center;
                justify-content: center;
            }


.newsletter-form-two {
    position: relative;
}

    .newsletter-form-two .form-group {
        position: relative;
    }

        .newsletter-form-two .form-group input[type=text],
        .newsletter-form-two .form-group input[type=email] {
            position: relative;
            display: block;
            height: 60px;
            width: 100%;
            font-size: var(--body-font-size);
            line-height: 30px;
            color: var(--bs-white);
            padding: 25px 32px;
            background: rgba(245, 245, 245, 0.1);
            border-radius: 50px;
            transition: all 300ms ease;
        }

            .newsletter-form-two .form-group input[type=text]::-moz-placeholder,
            .newsletter-form-two .form-group input[type=email]::-moz-placeholder {
                color: var(--bs-white);
            }

            .newsletter-form-two .form-group input[type=text]::placeholder,
            .newsletter-form-two .form-group input[type=email]::placeholder {
                color: var(--bs-white);
            }

        .newsletter-form-two .form-group .button {
            position: absolute;
            right: 4px;
            top: 5px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            font-size: 22px;
            color: var(--bs-white);
            background-color: var(--e-secondary);
            transition: all 300ms ease;
        }

            .newsletter-form-two .form-group .button:hover {
                background-color: var(--bs-red);
            }

            .newsletter-form-two .form-group .button i {
                display: flex;
                align-items: center;
                justify-content: center;
            }

.recent-post {
    position: relative;
    margin-bottom: 30px;
}

    .recent-post:last-child {
        margin-bottom: 0;
    }

    .recent-post .inner {
        position: relative;
        display: flex;
        align-items: center;
        gap: 27px;
        min-height: 93px;
    }

        .recent-post .inner:hover .post-thumb img {
            opacity: 0.7;
        }

        .recent-post .inner .post-thumb {
            position: relative;
            height: 93px;
            width: 93px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            margin-bottom: 0;
        }

            .recent-post .inner .post-thumb img {
                width: 100%;
                width: 100%;
                -o-object-fit: cover;
                object-fit: cover;
                transition: all 300ms ease;
            }

        .recent-post .inner .post-title {
            color: var(--bs-white);
            margin-bottom: 10px;
        }

            .recent-post .inner .post-title a:hover {
                color: var(--e-secondary);
            }

        .recent-post .inner .post-meta {
            position: relative;
            display: flex;
            align-items: center;
            gap: 13px;
            margin-bottom: 0;
        }

            .recent-post .inner .post-meta li {
                position: relative;
                display: flex;
                align-items: center;
                color: var(--bs-white);
                font-size: 14px;
                gap: 7px;
                transition: all 300ms ease;
            }

                .recent-post .inner .post-meta li .icon {
                    color: var(--bs-white);
                    font-size: 14px;
                    transition: all 300ms ease;
                }


.insta-gallery {
    position: relative;
}

    .insta-gallery .image {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }

    .insta-gallery img {
        display: block;
        width: 100%;
    }

    .insta-gallery a {
        position: relative;
        display: block;
    }

        .insta-gallery a:hover:after {
            transform: scale(1);
        }

        .insta-gallery a:hover:before {
            transform: scale(1);
        }

        .insta-gallery a:before {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: var(--bs-red);
            opacity: 0.8;
            content: "";
            border-radius: 10px;
            transform: scale(0);
            transition: all 300ms ease;
        }

        .insta-gallery a:after {
            position: absolute;
            height: 20px;
            width: 20px;
            left: 50%;
            top: 50%;
            margin-left: -10px;
            margin-top: -10px;
            content: "\f0b2";
            text-align: center;
            line-height: 20px;
            font-size: 20px;
            color: var(--bs-white);
            font-family: "Font Awesome 6 Pro";
            transform: scale(0);
            transition: all 300ms ease;
        }
