/*
--------------------------------------------------------------
Theme Name   : Eduex 
Author       : bizantheme
Author URI   : https://themeforest.net/user/bizantheme
Description  : Eduex - Education & Kindergarten HTML Template
Version      : 1.0.0
--------------------------------------------------------------

[Table of Contents]

01. Basic
    01.1 Mixins
    01.2 Variables
    01.3 Buttons
    01.4 Typography

02. Template Sections
    02.1 Preloader
    02.2 Header
    02.3 Hero
    02.4 About
    02.5 Feature
    02.6 Courses
    02.7 Event
    02.8 Team
    02.9 Testimonial
    02.10 FAQ
    02.11 CTA
    02.12 Project
    02.13 Helping
    02.14 News
    02.15 Contact
    02.16 Section (Common Section Title/Spacing)
    02.17 MeanMenu (Mobile Menu)
    02.18 Footer
    02.19 Animation

--------------------------------------------------------------
CSS Table of Contents Ends Here
--------------------------------------------------------------
*/
/*--------------------------------------------------------------
01. BASIC
--------------------------------------------------------------*/
/* 01.1 Mixins */
/* 01.2 Variables */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;display=swap");
:root {
    --body: #0f1f1f;
    --black: #000;
    --white: #fff;
    --theme: #293565;
    --theme-2: #ffa729;
    --header: #141519;
    --text: #27282c;
    --border: #49515b4d;
    --bg: #f0f4f5;
    --bg-2: #293565;
    --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

/* 01.3 Buttons */
.theme-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    border-radius: 30px;
    background: var(--theme);
    font-family: "Poppins", sans-serif;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 6px 6px 6px 32px;
    letter-spacing: -0.18px;
}
.theme-btn i {
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background-color: var(--theme-2);
    color: var(--header);
}
.theme-btn::before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--theme-2);
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: inherit;
}
.theme-btn:hover {
    color: var(--header);
    box-shadow: none;
}
.theme-btn:hover::before {
    width: 100%;
}
.theme-btn:hover i {
    background-color: var(--theme);
    color: var(--white);
}

/* Shared layout for card and content action buttons. */
.theme-btn.program-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: auto;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .theme-btn.program-details-btn {
        width: 100% !important;
        min-height: 50px;
        padding: 13px 16px;
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .theme-btn {
        font-size: 14px;
    }
}

.link-btns {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    color: var(--theme);
}
.link-btns i {
    transform: rotate(-40deg);
    transition: all 0.4s ease-in-out;
    font-weight: 400;
}
.link-btns:hover i {
    transform: rotate(0);
}

/* 01.4 Typography */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
}

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

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

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

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

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

h1 {
    font-size: 74px;
    font-weight: 700;
    line-height: 113%;
}
@media (max-width: 1600px) {
    h1 {
        font-size: 64px;
    }
}
@media (max-width: 1399px) {
    h1 {
        font-size: 58px;
    }
}
@media (max-width: 1199px) {
    h1 {
        font-size: 60px;
    }
}
@media (max-width: 991px) {
    h1 {
        font-size: 52px;
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 46px;
    }
}
@media (max-width: 575px) {
    h1 {
        font-size: 38px;
    }
}
@media (max-width: 470px) {
    h1 {
        font-size: 32px;
    }
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 120%;
}
@media (max-width: 1399px) {
    h2 {
        font-size: 40px;
    }
}
@media (max-width: 1199px) {
    h2 {
        font-size: 38px;
    }
}
@media (max-width: 767px) {
    h2 {
        font-size: 40px;
    }
}
@media (max-width: 575px) {
    h2 {
        font-size: 37px;
    }
}
@media (max-width: 470px) {
    h2 {
        font-size: 30px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 142%;
}
@media (max-width: 1399px) {
    h3 {
        font-size: 18px;
    }
}
@media (max-width: 1199px) {
    h3 {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    h3 {
        font-size: 21px;
    }
}
@media (max-width: 767px) {
    h3 {
        font-size: 22px;
    }
}
@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 22px;
    font-weight: 600;
}
@media (max-width: 1399px) {
    h4 {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    h4 {
        font-size: 18px;
    }
}

h5 {
    font-size: 20px;
    font-weight: 600;
}
@media (max-width: 575px) {
    h5 {
        font-size: 20px;
    }
}

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

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

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

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

/*--------------------------------------------------------------
02. TEMPLATE SECTIONS
--------------------------------------------------------------*/
/* 02.1 Preloader */
.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
    text-align: center;
}
.preloader .animation-preloader {
    z-index: 1000;
}
.preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--theme);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}
@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}
.preloader .animation-preloader .txt-loading {
    font:
        bold 5em "Poppins",
        sans-serif,
        "Inter",
        sans-serif;
    text-align: center;
    user-select: none;
}
@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }
}
.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme-2);
    position: relative;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}
.preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: var(--theme);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Poppins", sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
}
.preloader p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme);
}
.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}
.preloader .loader .row {
    height: 100%;
}
.preloader .loader .loader-section {
    padding: 0px;
}
.preloader .loader .loader-section .bg {
    background-color: #fff;
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

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

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 90px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25d366;
    color: var(--white);
    font-size: 27px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
.whatsapp-float:hover {
    background-color: #128c4a;
    color: var(--white);
    transform: translateY(-3px);
}

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

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

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

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

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

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

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

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

.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.8s ease-in-out;
    -khtml-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -ms-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    background-color: #000000;
    opacity: 0.3;
    cursor: url(../img/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}
.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition:
        opacity 0.5s 0s,
        width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01),
        transform 0.2s 0s;
    -khtml-transition:
        opacity 0.5s 0s,
        width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01),
        transform 0.2s 0s;
    -moz-transition:
        opacity 0.5s 0s,
        width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01),
        transform 0.2s 0s;
    -ms-transition:
        opacity 0.5s 0s,
        width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01),
        transform 0.2s 0s;
    -o-transition:
        opacity 0.5s 0s,
        width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01),
        transform 0.2s 0s;
    transition:
        opacity 0.5s 0s,
        width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01),
        transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.search-popup__form {
    position: relative;
}

.search-popup__form input[type="search"],
.search-popup__form input[type="text"] {
    width: 100%;
    height: 66px;
    border: none;
    outline: none;
    padding-left: 20px;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    transition: all 500ms ease;
}

.search-popup__form input[type="search"]:focus,
.search-popup__form input[type="text"]:focus {
    color: var(--header);
}

.search-popup__form .search-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    font-size: 20px;
    color: var(--white);
    background-color: var(--theme);
    transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
    background-color: var(--black);
}

.search-popup__form .eolexi-btn svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.search-popup.active {
    z-index: 9999;
}

.search-popup.active .search-popup__overlay {
    top: auto;
    bottom: calc(90px - 112vw);
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    opacity: 0.7;
    -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}
.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

.gt-page-nav-wrap ul {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.gt-page-nav-wrap ul li {
    display: inline-block;
}
.gt-page-nav-wrap ul li:first-child a {
    color: var(--white);
    background-color: transparent;
    border: 1px none;
}
.gt-page-nav-wrap ul li:last-child a {
    color: var(--white);
    background-color: transparent;
    border: 1px none;
}
.gt-page-nav-wrap ul li .gt-page-numbers {
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    border-radius: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    color: var(--text);
    text-align: center;
    background-color: transparent;
}
.gt-page-nav-wrap ul li .gt-page-numbers.current {
    background-color: var(--theme);
    color: var(--white);
}
@media (max-width: 991px) {
    .gt-page-nav-wrap ul li .gt-page-numbers {
        margin-top: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}
@media (max-width: 470px) {
    .gt-page-nav-wrap ul li .gt-page-numbers {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
.gt-page-nav-wrap ul li .gt-page-numbers.active {
    background-color: var(--theme);
    color: var(--white);
}
.gt-page-nav-wrap ul li .gt-page-numbers i {
    margin-top: 2px;
}
.gt-page-nav-wrap ul li .gt-page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}

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

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.header-main .main-menu ul {
    margin-bottom: 0;
}
.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 30px;
}
.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}
.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.34px;
    color: var(--header);
    font-family: "Poppins", sans-serif;
    padding: 0 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
    margin-left: 4px;
    font-size: 14px;
}
.header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 115%;
    inset-inline-start: 0;
    min-width: 260px;
    padding: 20px 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    border-top: 4px solid var(--theme-2);
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}
.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.34px;
    color: var(--header);
    line-height: 38px;
    padding: 0px 0px 0px 32px;
    padding-right: 22px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--theme);
    left: 14px;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
    margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
    width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
    width: 1300px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}
@media (max-width: 1399px) {
    .header-main .main-menu ul li .has-homemenu {
        width: 1000px;
    }
}
.header-main .main-menu ul li:hover > a {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}
.header-main .header-right {
    gap: 30px;
}
@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}
.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-top-section {
    border-bottom: 1px solid rgba(108, 112, 111, 0.3);
    padding: 12px 0;
    overflow: hidden;
}
@media (max-width: 1199px) {
    .header-top-section {
        display: none;
    }
}
.header-top-section .container-fluid {
    padding: 0 100px;
}
@media (max-width: 1600px) {
    .header-top-section .container-fluid {
        padding: 0 50px;
    }
}
@media (max-width: 1399px) {
    .header-top-section .container-fluid {
        padding: 0 40px;
    }
}
@media (max-width: 1199px) {
    .header-top-section .container-fluid {
        padding: 0 30px;
    }
}
.header-top-section .header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-top-section .header-top-wrapper ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-top-section .header-top-wrapper ul li {
    color: var(--header);
    font-size: 14px;
}
.header-top-section .header-top-wrapper ul li:not(:last-child) {
    border-right: 1px solid #162726;
    padding-right: 20px;
}
.header-top-section .header-top-wrapper ul li i {
    margin-right: 9px;
}
.header-top-section .header-top-wrapper .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-top-section .header-top-wrapper .social-icon a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--text);
    text-align: center;
    color: var(--text);
    font-size: 14px;
}
.header-top-section .header-top-wrapper .social-icon a:hover {
    background-color: #f7c94e;
    color: var(--white);
    border: 1px solid #f7c94e;
    opacity: 1;
}

.bt-hero-section .bt-hero-slider {
    position: relative;
}
.bt-hero-section .bt-hero-slider-controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}
.bt-hero-section .bt-hero-prev,
.bt-hero-section .bt-hero-next {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--white);
    background: rgba(9, 16, 35, 0.28);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0.18;
    pointer-events: auto;
    transition:
        opacity 0.35s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}
.bt-hero-section .bt-hero-prev {
    left: 24px;
}
.bt-hero-section .bt-hero-next {
    right: 24px;
}
.bt-hero-section .bt-hero-slider:hover .bt-hero-prev,
.bt-hero-section .bt-hero-slider:hover .bt-hero-next,
.bt-hero-section .bt-hero-prev:focus-visible,
.bt-hero-section .bt-hero-next:focus-visible {
    opacity: 0.72;
}
.bt-hero-section .bt-hero-prev:hover,
.bt-hero-section .bt-hero-next:hover {
    background-color: #f7c94e;
    border-color: #f7c94e;
    color: var(--header);
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}
.bt-hero-section .bt-hero-pagination {
    position: absolute;
    left: 50% !important;
    bottom: 26px !important;
    transform: translateX(-50%);
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(9, 16, 35, 0.28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
}
.bt-hero-section .bt-hero-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    opacity: 1;
    transition:
        width 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease;
}
.bt-hero-section .bt-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: #f7c94e;
}

@media (max-width: 767px) {
    .bt-hero-section .bt-hero-prev,
    .bt-hero-section .bt-hero-next {
        width: 44px;
        height: 44px;
        opacity: 0.55;
    }
    .bt-hero-section .bt-hero-prev {
        left: 12px;
    }
    .bt-hero-section .bt-hero-next {
        right: 12px;
    }
    .bt-hero-section .bt-hero-pagination {
        bottom: 18px !important;
    }
}

.bt-hero-section .swiper-slide .hero-slide-inner {
    opacity: 0;
    transform: translateY(24px);
}
.bt-hero-section .swiper-slide.swiper-slide-active .hero-slide-inner {
    animation: heroSlideEnter 0.9s ease forwards;
}

@keyframes heroSlideEnter {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home hero: full-slide background images (hero1 / hero2) */
.home-hero-fullbg {
    background-image: none !important;
}
.home-hero-fullbg .home-hero-slide {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    background-color: #ffffff;
}
.home-hero-fullbg .home-hero-slide__picture,
.home-hero-fullbg .home-hero-slide__image {
    display: block;
    width: 100%;
}
.home-hero-fullbg .home-hero-slide__image {
    height: auto;
    transform: scale(1.035);
    transition: transform 7s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.home-hero-fullbg .home-hero-slide.is-clickable {
    cursor: pointer;
}
.home-hero-fullbg .home-hero-slide::after {
    content: none;
}
.home-hero-fullbg .swiper-slide-active .home-hero-slide__image {
    transform: scale(1);
}
.home-hero-fullbg .swiper-slide:not(.swiper-slide-active) {
    pointer-events: none;
}
.home-hero-fullbg .swiper-slide-active {
    pointer-events: auto;
}
.home-hero-fullbg .home-hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        95deg,
        rgba(8, 12, 24, 0.86) 0%,
        rgba(8, 12, 24, 0.66) 46%,
        rgba(8, 12, 24, 0.12) 100%
    );
}
.home-hero-fullbg .hero-slide-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-hero-fullbg .hero-slide-inner .row {
    align-items: center !important;
    min-height: 52vh;
}
.home-hero-fullbg .bt-hero-content {
    max-width: 640px;
}
.home-hero-fullbg .bt-hero-content > * {
    opacity: 0;
    transform: translateY(32px);
}
.home-hero-fullbg .swiper-slide-active .bt-hero-content > * {
    animation: heroContentReveal 0.8s cubic-bezier(0.2, 0.7, 0.25, 1) forwards;
}
.home-hero-fullbg .swiper-slide-active .bt-hero-content p {
    animation-delay: 0.14s;
}
.home-hero-fullbg .swiper-slide-active .bt-hero-content .theme-btn {
    animation-delay: 0.28s;
}
@keyframes heroContentReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-hero-fullbg .bt-hero-content h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
    line-height: 1.15;
}
.home-hero-fullbg .bt-hero-content p {
    color: rgba(255, 255, 255, 0.96) !important;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
    font-size: 17px;
    line-height: 1.65;
}
.home-hero-fullbg .bt-hero-content .theme-btn {
    margin-top: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
@media (max-width: 991px) {
    .home-hero-fullbg .hero-slide-inner .row {
        min-height: auto;
    }
    .home-hero-fullbg .bt-hero-content {
        max-width: 100%;
        text-align: left;
    }
}
@media (max-width: 767px) {
    .home-hero-fullbg .home-hero-slide {
        height: auto;
        min-height: 0;
    }
    .home-hero-fullbg .home-hero-slide__overlay {
        background: linear-gradient(
            0deg,
            rgba(8, 12, 24, 0.9) 0%,
            rgba(8, 12, 24, 0.3) 75%
        );
    }
    .home-hero-fullbg .hero-slide-inner {
        padding-bottom: 80px;
    }
    .home-hero-fullbg .bt-hero-content h1 {
        font-size: clamp(34px, 10vw, 52px);
    }
    .home-hero-fullbg .bt-hero-content p {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-fullbg .home-hero-slide__image,
    .home-hero-fullbg .bt-hero-content > * {
        animation: none !important;
        transition: none !important;
        transform: none;
        opacity: 1;
    }
}

.header-1 {
    position: relative;
    z-index: 99999;
}
.header-1 .logo-shape {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
@media (max-width: 1399px) {
    .header-1 .logo-shape {
        display: none;
    }
}
@media (max-width: 1399px) {
    .header-1 .header-logo2 {
        display: none;
    }
}
.header-1 .header-logo {
    display: none;
}
@media (max-width: 1399px) {
    .header-1 .header-logo {
        display: block;
    }
}
.header-1 .container-fluid {
    padding: 0 100px;
}
@media (max-width: 1600px) {
    .header-1 .container-fluid {
        padding: 0 50px;
    }
}
@media (max-width: 1399px) {
    .header-1 .container-fluid {
        padding: 0 40px;
    }
}
@media (max-width: 1199px) {
    .header-1 .container-fluid {
        padding: 0 30px;
    }
}
@media (max-width: 470px) {
    .header-1 .container-fluid {
        padding: 0 15px;
    }
}
.header-1 .header-right .search-toggler {
    background-color: transparent;
    border: 1px solid rgba(20, 20, 20, 0.2);
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
}
.header-1 .header-right .sidebar__toggle {
    color: var(--header);
}
@media (max-width: 1199px) {
    .header-1 .header-right .theme-btn {
        display: none;
    }
}
.header-1 .header-right-items {
    display: flex;
    align-items: center;
    gap: 100px;
}
@media (max-width: 1600px) {
    .header-1 .header-right-items {
        gap: 50px;
    }
}

.header-2 {
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 99999;
    width: 100%;
}
@media (max-width: 767px) {
    .header-2 {
        top: 15px;
    }
}
.header-2 .mega-menu-wrapper {
    background-color: var(--white);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 100px;
}
@media (max-width: 767px) {
    .header-2 .mega-menu-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.header-2 .logo {
    display: flex;
    align-items: center;
    gap: 50px;
}
.header-2 .header-right-items {
    gap: 80px;
}
@media (max-width: 1600px) {
    .header-2 .header-right-items {
        gap: 50px;
    }
}
.header-2 .category-oneadjust {
    border-radius: 30px;
    background: #f2f4f7;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    line-height: 1;
}
@media (max-width: 1399px) {
    .header-2 .category-oneadjust {
        display: none;
    }
}
.header-2 .category-oneadjust .single-select {
    border: none;
    background-color: transparent;
    line-height: initial;
    height: initial;
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: var(--header);
    padding-right: 28px;
}
.header-2 .category-oneadjust .single-select::after {
    right: 0;
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
    width: 8px;
    height: 8px;
}

.header-3 .logo {
    display: flex;
    align-items: center;
    gap: 50px;
}
.header-3 .category-oneadjust {
    border-radius: 30px;
    background: #f2f4f7;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    line-height: 1;
}
@media (max-width: 1399px) {
    .header-3 .category-oneadjust {
        display: none;
    }
}
.header-3 .category-oneadjust .single-select {
    border: none;
    background-color: transparent;
    line-height: initial;
    height: initial;
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: var(--header);
    padding-right: 28px;
}
.header-3 .category-oneadjust .single-select::after {
    right: 0;
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
    width: 8px;
    height: 8px;
}

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

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

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

.offcanvas__logo a img {
    width: 150px;
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas-title {
    font-size: 28px;
    margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content p {
    color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .social-icon {
    margin-top: 30px;
    gap: 10px;
    margin-bottom: 30px;
}
.offcanvas__wrapper .offcanvas__content .social-icon a {
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 50%;
}
.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
    margin-bottom: 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
    font-size: 16px;
    color: var(--header);
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas__contact
    .contact-list
    li:not(:last-child) {
    margin-bottom: 10px;
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas__contact
    .contact-list
    li
    span {
    font-weight: 600;
    color: var(--header);
    font-size: 18px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
    font-size: 16px;
    color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
    display: flex;
    align-items: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area {
    margin-top: 30px;
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas-gallery-area
    .offcanvas-gallery-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas-gallery-area
    .offcanvas-gallery-items:not(:last-child) {
    margin-bottom: 20px;
}
.offcanvas__wrapper
    .offcanvas__content
    .offcanvas-gallery-area
    .offcanvas-gallery-items
    .offcanvas-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 0;
}
.offcanvas__wrapper .offcanvas__content .theme-btn {
    text-align: center;
}

/* Mobile menu introduction and contact details */
.offcanvas-extra-content {
    margin-top: 28px;
}
.offcanvas-intro-card {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.offcanvas-intro-image {
    display: block;
    width: 250px;
    max-height: 72px;
    margin-bottom: 18px;
    object-fit: contain;
    object-position: left center;
}
.offcanvas-intro-content h2,
.offcanvas-contact-details h3 {
    color: var(--header);
}
.offcanvas-intro-content h2 {
    margin-bottom: 10px;
    font-size: 25px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-intro-content p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.75;
}
.offcanvas-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme);
    font-size: 14px;
    font-weight: 700;
}
.offcanvas-about-btn:hover {
    color: var(--header);
}
.offcanvas-about-btn svg {
    transition: transform 0.3s ease;
}
.offcanvas-about-btn:hover svg {
    transform: translateX(4px);
}
.offcanvas-contact-details {
    padding-top: 24px;
}
.offcanvas-contact-details h3 {
    margin-bottom: 18px;
    font-size: 21px;
}
.offcanvas-contact-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.offcanvas-contact-list li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}
.offcanvas-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    font-size: 14px;
}
.offcanvas-contact-list strong,
.offcanvas-socials > span {
    display: block;
    margin-bottom: 3px;
    color: var(--header);
    font-size: 13px;
    font-weight: 700;
}
.offcanvas-contact-list a {
    display: inline-block;
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}
.offcanvas-contact-list a:hover {
    color: var(--theme);
}
.offcanvas-socials {
    margin-top: 22px;
}
.offcanvas-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 9px;
}
.offcanvas-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--header);
    font-size: 14px;
    transition: all 0.3s ease;
}
.offcanvas-social-links a:hover {
    border-color: var(--theme);
    background-color: var(--theme);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

@media (max-width: 450px) {
    .offcanvas__info {
        width: 350px;
    }
}
@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}
.breadcrumb-wrapper {
    position: relative;
    z-index: 9;
}
@media (max-width: 1399px) {
    .breadcrumb-wrapper {
        margin-bottom: 0;
    }
}
.breadcrumb-wrapper .bottom-shape {
    height: 72px;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: 12;
}
@media (max-width: 1399px) {
    .breadcrumb-wrapper .bottom-shape {
        display: none;
    }
}
.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 140px 0 140px;
    z-index: 9;
    text-align: center;
}
@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        padding: 120px 0 120px;
    }
}
@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        text-align: center;
    }
}
.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 45px;
    position: relative;
    text-transform: capitalize;
    z-index: 9;
    font-weight: 700;
}
@media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 60px;
    }
}
@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 45px;
    }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: inline-flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 28px;
    line-height: 1;
}
@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 20px;
    }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--white);
    transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme-2);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
    color: var(--theme);
    margin-right: 5px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--white);
}
.breadcrumb-wrapper .breadcrumb-image {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 140px;
}
@media (max-width: 1600px) {
    .breadcrumb-wrapper .breadcrumb-image {
        right: 30px;
    }
}
@media (max-width: 1199px) {
    .breadcrumb-wrapper .breadcrumb-image {
        display: none;
    }
}

.error-items {
    text-align: center;
}
.error-items .thumb {
    max-width: 700px;
    margin: 0 auto;
}
.error-items .thumb img {
    width: 100%;
    height: 100%;
}
.error-items .theme-btn {
    margin-top: 60px;
}
.error-items .theme-btn i {
    transform: rotate(-40deg);
    transition: all 0.4s ease-in-out;
    font-weight: 600;
}

/* 02.3 Hero */
.bt-hero-1 {
    /* padding: 140px 0; */
    position: relative;
}
@media (max-width: 1199px) {
    .bt-hero-1 {
        /* padding: 130px 0; */
    }
}
@media (max-width: 767px) {
    .bt-hero-1 {
        /* padding: 90px 0; */
    }
}
.bt-hero-1 .hero-shape-1 {
    position: absolute;
    top: 20%;
    left: 5%;
}
@media (max-width: 1399px) {
    .bt-hero-1 .hero-shape-1 {
        top: 16%;
        left: 0%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-1 .hero-shape-1 {
        display: none;
    }
}
.bt-hero-1 .hero-shape-2 {
    position: absolute;
    top: 68%;
    left: 40%;
}
@media (max-width: 1399px) {
    .bt-hero-1 .hero-shape-2 {
        top: 69%;
        left: 32%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-1 .hero-shape-2 {
        display: none;
    }
}
.bt-hero-1 .hero-shape-3 {
    position: absolute;
    top: 10%;
    right: 10%;
}
@media (max-width: 1399px) {
    .bt-hero-1 .hero-shape-3 {
        max-width: 100px;
        top: 63%;
    }
    .bt-hero-1 .hero-shape-3 img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-1 .hero-shape-3 {
        display: none;
    }
}
.bt-hero-1 .hero-shape-4 {
    position: absolute;
    bottom: 10%;
    right: 10%;
}
@media (max-width: 1199px) {
    .bt-hero-1 .hero-shape-4 {
        display: none;
    }
}
.bt-hero-1 .hero-shape-5 {
    position: absolute;
    bottom: 10%;
    left: 10%;
}
@media (max-width: 1199px) {
    .bt-hero-1 .hero-shape-5 {
        display: none;
    }
}
.bt-hero-1 .bt-hero-content {
    position: relative;
    z-index: 9;
}
.bt-hero-1 .bt-hero-content span {
    color: var(--theme);
    padding: 10px 28px;
    line-height: 1;
    border-radius: 30px;
    background: rgba(0, 79, 68, 0.1);
}
.bt-hero-1 .bt-hero-content h1 {
    color: var(--header);
    margin-top: 15px;
}
.bt-hero-1 .bt-hero-content p {
    margin-top: 20px;
}
@media (max-width: 1399px) {
    .bt-hero-1 .bt-hero-content p {
        font-size: 15px;
    }
}
@media (max-width: 575px) {
    .bt-hero-1 .bt-hero-content p {
        font-size: 14px;
    }
}
.bt-hero-1 .bt-hero-content .theme-btn {
    margin-top: 50px;
}
.bt-hero-1 .bt-right-items {
    position: relative;
}
.bt-hero-1 .bt-right-items .client-counter-box {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 77.5px;
    background: var(--white);
    display: inline-flex;
    padding: 25px;
    line-height: 1;
    position: absolute;
    z-index: 9;
    top: 3%;
    right: 45%;
}
@media (max-width: 1199px) {
    .bt-hero-1 .bt-right-items .client-counter-box {
        display: none;
    }
}
.bt-hero-1 .bt-right-items .client-counter-box .content h3 {
    color: var(--theme-2);
}
.bt-hero-1 .bt-right-items .client-counter-box .content p {
    font-size: 16px;
}
.bt-hero-1 .bt-right-items .counter-box {
    position: absolute;
    bottom: 10%;
    right: -7%;
    border-radius: 77.5px;
    background: var(--white);
    padding: 18px 35px;
    text-align: center;
    line-height: 1;
    z-index: 9;
}
@media (max-width: 1600px) {
    .bt-hero-1 .bt-right-items .counter-box {
        right: 0;
    }
}
@media (max-width: 1199px) {
    .bt-hero-1 .bt-right-items .counter-box {
        display: none;
    }
}
.bt-hero-1 .bt-right-items .counter-box h3 {
    color: var(--theme);
}
.bt-hero-1 .bt-right-items .bt-hero-image {
    max-width: 270px;
    margin-top: 190px;
}
@media (max-width: 1199px) {
    .bt-hero-1 .bt-right-items .bt-hero-image {
        margin-top: 0;
    }
}
.bt-hero-1 .bt-right-items .bt-hero-image img {
    width: 100%;
    height: 100%;
}
.bt-hero-1 .bt-right-items .bt-hero-imag-2 {
    max-width: 342px;
}
.bt-hero-1 .bt-right-items .bt-hero-imag-2 img {
    width: 100%;
    height: 100%;
}

.bt-hero-2 {
    padding: 220px 0 130px;
    position: relative;
    z-index: 9;
}
.bt-hero-2 .hero-shape-1 {
    position: absolute;
    top: 25%;
    right: 15%;
}
.bt-hero-2 .hero-shape-2 {
    position: absolute;
    top: 50%;
    left: 30%;
}
@media (max-width: 1399px) {
    .bt-hero-2 .hero-shape-2 {
        position: absolute;
        top: 54%;
        left: 25%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-2 .hero-shape-2 {
        display: none;
    }
}
.bt-hero-2 .hero-shape-3 {
    position: absolute;
    z-index: -1;
    bottom: 35%;
    right: 33%;
}
.bt-hero-2 .line-shape-animation {
    height: 138px;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    z-index: 12;
}
@media (max-width: 1399px) {
    .bt-hero-2 .line-shape-animation {
        display: none;
    }
}
.bt-hero-2 .bt-hero-shape {
    position: absolute;
    bottom: 0;
    left: 40%;
    z-index: -1;
}
@media (max-width: 1199px) {
    .bt-hero-2 .bt-hero-shape {
        display: none;
    }
}
.bt-hero-2 .container {
    max-width: 1720px;
}
.bt-hero-2 .bt-hero-image {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}
.bt-hero-2 .bt-hero-image img {
    width: 100%;
    height: 100%;
}
.bt-hero-2 .bt-hero-image.style-2 {
    margin-top: 180px;
}
@media (max-width: 1399px) {
    .bt-hero-2 .bt-hero-image.style-2 {
        margin-top: 120;
    }
}
@media (max-width: 1199px) {
    .bt-hero-2 .bt-hero-image.style-2 {
        margin-top: 0;
    }
}
.bt-hero-2 .bt-hero-content {
    text-align: center;
    position: relative;
    z-index: 9;
}
.bt-hero-2 .bt-hero-content span {
    color: var(--white);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    line-height: 1;
}
.bt-hero-2 .bt-hero-content h1 {
    color: var(--white);
    margin-top: 25px;
}
.bt-hero-2 .bt-hero-content p {
    max-width: 600px;
    font-size: 18px;
    color: var(--white);
    margin: 20px auto 0;
}
@media (max-width: 575px) {
    .bt-hero-2 .bt-hero-content p {
        font-size: 16px;
    }
}
.bt-hero-2 .bt-hero-content .theme-btn {
    margin-top: 50px;
    background-color: var(--white);
    color: var(--header);
}
.bt-hero-2 .bt-hero-content .theme-btn i {
    background-color: var(--theme);
    color: var(--white);
}
.bt-hero-2 .bt-hero-content .theme-btn::before {
    background-color: var(--theme-2);
}
.bt-hero-2 .bt-hero-content .theme-btn:hover {
    color: var(--header);
}
.bt-hero-2 .bt-hero-content .theme-btn:hover i {
    background-color: var(--white);
    color: var(--theme);
}

.bt-hero-3 {
    padding: 40px 0 0;
    overflow: hidden;
    position: relative;
    background-position: bottom !important;
    overflow: hidden;
}
@media (max-width: 1399px) {
    .bt-hero-3 {
        padding-top: 130px;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 {
        padding-top: 70px !important;
    }
}
.bt-hero-3 .line-top {
    height: 60px;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    z-index: 12;
}
@media (max-width: 1199px) {
    .bt-hero-3 .line-top {
        display: none;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 {
        padding: 140px 0;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 {
        padding: 140px 0 0;
    }
}
.bt-hero-3 .bt-hero-shape-1 {
    position: absolute;
    left: 0;
    top: 35%;
}
@media (max-width: 1399px) {
    .bt-hero-3 .bt-hero-shape-1 {
        max-width: 120px;
    }
    .bt-hero-3 .bt-hero-shape-1 img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 .bt-hero-shape-1 {
        display: none;
    }
}
.bt-hero-3 .bt-hero-shape-2 {
    position: absolute;
    left: 50%;
    top: 15%;
}
@media (max-width: 1399px) {
    .bt-hero-3 .bt-hero-shape-2 {
        left: 37%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 .bt-hero-shape-2 {
        display: none;
    }
}
.bt-hero-3 .bt-hero-shape-3 {
    position: absolute;
    left: 26%;
    bottom: 4%;
}
@media (max-width: 1399px) {
    .bt-hero-3 .bt-hero-shape-3 {
        left: 28%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 .bt-hero-shape-3 {
        display: none;
    }
}
.bt-hero-3 .bt-hero-shape-4 {
    position: absolute;
    right: 13%;
    top: 6%;
}
@media (max-width: 1399px) {
    .bt-hero-3 .bt-hero-shape-4 {
        max-width: 120px;
        right: 10%;
        top: 8%;
    }
    .bt-hero-3 .bt-hero-shape-4 img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 .bt-hero-shape-4 {
        display: none;
    }
}
.bt-hero-3 .bt-hero-shape-5 {
    position: absolute;
    right: 8%;
    top: 35%;
}
@media (max-width: 1399px) {
    .bt-hero-3 .bt-hero-shape-5 {
        max-width: 200px;
        top: 38%;
    }
    .bt-hero-3 .bt-hero-shape-5 img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 .bt-hero-shape-5 {
        right: 2%;
        top: 41%;
        max-width: 240px;
    }
    .bt-hero-3 .bt-hero-shape-5 img {
        width: 100%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 .bt-hero-shape-5 {
        display: none;
    }
}
.bt-hero-3 .bt-hero-shape-6 {
    position: absolute;
    left: 42%;
    bottom: 4%;
}
@media (max-width: 1399px) {
    .bt-hero-3 .bt-hero-shape-6 {
        max-width: 265px;
        left: 44%;
        bottom: 8%;
    }
    .bt-hero-3 .bt-hero-shape-6 img {
        width: 100%;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 .bt-hero-shape-6 {
        display: none;
    }
}
.bt-hero-3 .bt-hero-content {
    position: relative;
    z-index: 99;
    margin-top: -50px;
}
@media (max-width: 1399px) {
    .bt-hero-3 .bt-hero-content {
        margin-top: -130px;
    }
}
@media (max-width: 1199px) {
    .bt-hero-3 .bt-hero-content {
        text-align: center;
        margin-top: 0;
    }
}
.bt-hero-3 .bt-hero-content span {
    color: var(--theme);
    border-radius: 30px;
    background: rgba(0, 79, 68, 0.1);
    padding: 12px 24px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .bt-hero-3 .bt-hero-content span {
        font-size: 14px;
        padding: 9px 20px;
        margin-bottom: 15px;
    }
}
.bt-hero-3 .bt-hero-content h1 {
    color: var(--header);
    margin-top: 15px;
}
.bt-hero-3 .bt-hero-content p {
    margin-top: 20px;
}
@media (max-width: 1399px) {
    .bt-hero-3 .bt-hero-content p br {
        display: none;
    }
}
@media (max-width: 575px) {
    .bt-hero-3 .bt-hero-content p {
        font-size: 14px;
    }
}
.bt-hero-3 .bt-hero-content .theme-btn {
    margin-top: 50px;
}
.bt-hero-3 .bt-hero-image {
    margin-left: -70px;
}
@media (max-width: 1199px) {
    .bt-hero-3 .bt-hero-image {
        margin-left: 0;
        max-width: 800px;
        margin: 0 auto;
    }
    .bt-hero-3 .bt-hero-image img {
        border-radius: 0 !important;
    }
}
.bt-hero-3 .bt-hero-image img {
    width: 100%;
    height: 100%;
    border-bottom-right-radius: 300px;
}

/* 02.4 About */
.bt-about-wrapper {
    margin-bottom: 120px;
}
.bt-about-main-image img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
}
@media (max-width: 1199px) {
    .bt-about-wrapper {
        margin-bottom: 0;
    }
}
.bt-about-wrapper .bt-about-image {
    max-width: 600px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1199px) {
    .bt-about-wrapper .bt-about-image {
        max-width: initial;
    }
}
.bt-about-wrapper .bt-about-image img {
    width: 100%;
    height: 100%;
    border: 15px solid rgba(0, 79, 68, 0.1);
    border-radius: 50%;
}
.bt-about-wrapper .bt-about-image .bt-about-image-2 {
    max-width: 250px;
    position: absolute;
    top: -10px;
    right: -115px;
}
@media (max-width: 1399px) {
    .bt-about-wrapper .bt-about-image .bt-about-image-2 {
        right: -50px;
    }
}
@media (max-width: 1199px) {
    .bt-about-wrapper .bt-about-image .bt-about-image-2 {
        right: 0;
        top: 0;
        max-width: 200px;
    }
    .bt-about-wrapper .bt-about-image .bt-about-image-2 img {
        width: 100%;
        height: 100%;
    }
}
.bt-about-wrapper .bt-about-image .bt-about-image-2 img {
    border-radius: 50%;
    border: 10px solid var(--white);
}
.bt-about-wrapper .bt-about-image .bt-about-image-3 {
    max-width: 300px;
    position: absolute;
    bottom: -120px;
    right: -40px;
}
@media (max-width: 1199px) {
    .bt-about-wrapper .bt-about-image .bt-about-image-3 {
        right: initial;
        left: 0;
        bottom: 0;
        max-width: 200px;
    }
    .bt-about-wrapper .bt-about-image .bt-about-image-3 img {
        width: 100%;
        height: 100%;
    }
}
.bt-about-wrapper .bt-about-image .bt-about-image-3 img {
    border-radius: 50%;
    border: 10px solid var(--white);
}
.bt-about-wrapper .bt-about-content {
    margin-left: 60px;
}
@media (max-width: 1199px) {
    .bt-about-wrapper .bt-about-content {
        margin-left: 0;
    }
}
.bt-about-wrapper .bt-about-content .about-text {
    margin-top: 25px;
}
.bt-about-wrapper .bt-about-content .who-we-are-content {
    white-space: normal;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: normal;
    text-align: justify;
}
.bt-about-wrapper .bt-about-content .who-we-are-content::after {
    content: "";
    display: table;
    clear: both;
}
.bt-about-wrapper .bt-about-content .who-we-are-image-wrap {
    float: left;
    width: min(44%, 380px);
    margin: 10px 30px 16px 0;
}
.bt-about-wrapper .bt-about-content .who-we-are-image-wrap img {
    width: 100%;
    height: auto;
    border: 15px solid rgba(0, 79, 68, 0.1);
    border-radius: 50%;
}
@media (max-width: 991px) {
    .bt-about-wrapper .bt-about-content .who-we-are-image-wrap {
        float: none;
        width: 100%;
        max-width: 360px;
        margin: 0 auto 20px auto;
    }
}
.campus-location-section {
    position: relative;
}
.campus-location-wrapper {
    position: relative;
}
.campus-location-wrapper .campus-map-embed iframe {
    width: 100%;
    height: 390px;
    border-radius: 6px;
}
.campus-location-wrapper .campus-location-card {
    position: absolute;
    right: 65px;
    bottom: -10px;
    background-color: #bfd5eb;
    padding: 30px 32px;
    width: min(560px, calc(100% - 44px));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    z-index: 2;
    box-shadow: 0 18px 45px rgba(19, 42, 74, 0.16);
}
.campus-location-wrapper .campus-location-card-content {
    max-width: 460px;
}
.campus-location-wrapper .campus-location-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.6px;
}
.campus-location-wrapper .campus-location-card p {
    margin: 0;
    color: #4b6077;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}
.campus-location-wrapper .campus-location-card a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--header);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.campus-location-wrapper .campus-location-card a:hover {
    background: var(--white);
    transform: translateY(-2px);
}
@media (max-width: 1199px) {
    .campus-location-wrapper .campus-location-card h3 {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    .campus-location-wrapper .campus-location-card {
        position: static;
        width: 100%;
        margin-top: 14px;
        padding: 22px;
        gap: 18px;
        align-items: center;
    }
    .campus-location-wrapper .campus-location-card h3 {
        font-size: 30px;
    }
    .campus-location-wrapper .campus-map-embed iframe {
        height: 300px;
    }
}
.primary-cta-section {
    background-image: url("../img/inner/breadcrumb.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background: #050912; */
    position: relative;
}
.primary-cta-wrapper {
    border-radius: 16px;
    padding: 50px 36px;
}
.primary-cta-wrapper .primary-cta-label {
    color: #8f98b1;
    letter-spacing: 0.28em;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}
.primary-cta-wrapper .primary-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.primary-cta-wrapper .primary-cta-btn {
    height: 56px;
    padding: 0 30px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.28s ease;
}
.primary-cta-wrapper .primary-cta-btn.cta-lime {
    background: #c6ff4f;
    color: #041218;
}
.primary-cta-wrapper .primary-cta-btn.cta-lime:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}
@media (max-width: 767px) {
    .primary-cta-wrapper {
        padding: 30px 18px;
    }
    .primary-cta-wrapper .primary-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
.bt-about-wrapper .bt-about-content .bt-counter-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}
@media (max-width: 1199px) {
    .bt-about-wrapper .bt-about-content .bt-counter-area {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: start;
    }
}
@media (max-width: 767px) {
    .bt-about-wrapper .bt-about-content .bt-counter-area {
        margin-top: 25px;
    }
}
.bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item {
    border-right: 1px solid rgba(108, 112, 111, 0.3);
    padding-right: 40px;
}
@media (max-width: 1399px) {
    .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item {
        padding-right: 0;
        border-right: none;
    }
}
.bt-about-wrapper
    .bt-about-content
    .bt-counter-area
    .bt-counter-item.border-none {
    border-right: none;
    padding-right: 0;
}
.bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item h2 {
    font-size: 50px;
    font-weight: 600;
}
@media (max-width: 1399px) {
    .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item h2 {
        font-size: 42px;
    }
}
@media (max-width: 767px) {
    .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item h2 {
        font-size: 38px;
    }
}
.bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item p {
    font-size: 18px;
    font-weight: 500;
    color: var(--header);
}
@media (max-width: 1399px) {
    .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item p {
        font-size: 15px;
    }
}
.bt-about-wrapper .bt-about-content .bt-about-author {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 1199px) {
    .bt-about-wrapper .bt-about-content .bt-about-author {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .bt-about-wrapper .bt-about-content .bt-about-author {
        margin-top: 25px;
    }
}
.bt-about-wrapper .bt-about-content .bt-about-author .bt-author-image {
    display: flex;
    align-items: center;
    gap: 15px;
}
.bt-about-wrapper
    .bt-about-content
    .bt-about-author
    .bt-author-image
    .content
    h6 {
    font-size: 18px;
    font-weight: 600;
}
.bt-about-wrapper
    .bt-about-content
    .bt-about-author
    .bt-author-image
    .content
    p {
    color: var(--text);
    font-weight: 500;
    margin-top: -2px;
}

.bt-about-wrapper-2 .bt-about-image img {
    width: 100%;
    height: 100%;
}
.bt-about-wrapper-2 .bt-about-content {
    margin-left: 60px;
}
@media (max-width: 1399px) {
    .bt-about-wrapper-2 .bt-about-content {
        margin-left: 30px;
    }
}
@media (max-width: 1199px) {
    .bt-about-wrapper-2 .bt-about-content {
        margin-left: 0;
    }
}
.bt-about-wrapper-2 .bt-about-content .about-text {
    margin-top: 25px;
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
@media (max-width: 1399px) {
    .bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
        gap: 30px;
    }
}
@media (max-width: 991px) {
    .bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
        margin-top: 40px;
        gap: 70px;
    }
}
@media (max-width: 991px) {
    .bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
        gap: 20px;
    }
}
@media (max-width: 575px) {
    .bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 10px;
    }
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar
    span {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar
    .content
    h6 {
    display: block;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 135%;
}
@media (max-width: 575px) {
    .bt-about-wrapper-2
        .bt-about-content
        .circle-progress-bar-wrapper
        .single-circle-bar
        .content
        br {
        display: block;
    }
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar
    .circle-bar {
    position: relative;
    height: 120px;
    width: 120px;
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar
    .circle-bar
    div {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar
    .circle-bar
    div
    span {
    position: absolute;
    font-size: 20px;
    line-height: 92px;
    height: 90px;
    width: 90px;
    left: 5px;
    top: 5px;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bg);
    color: var(--header);
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar
    .circle-bar
    .background {
    background-color: #dfe2ff !important;
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar
    .circle-bar
    .rotate {
    clip: rect(0 50px 100px 0);
    background-color: var(--theme) !important;
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar
    .circle-bar
    .left {
    clip: rect(0 50px 100px 0);
    opacity: 1;
    background-color: var(--bg) !important;
}
.bt-about-wrapper-2
    .bt-about-content
    .circle-progress-bar-wrapper
    .single-circle-bar
    .circle-bar
    .right {
    clip: rect(0 50px 100px 0);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0;
    background-color: var(--theme) !important;
}
.bt-about-wrapper-2 .bt-about-content .list-box {
    display: flex;
    gap: 80px;
    margin-top: 30px;
}
@media (max-width: 1399px) {
    .bt-about-wrapper-2 .bt-about-content .list-box {
        gap: 40px;
    }
}
@media (max-width: 1199px) {
    .bt-about-wrapper-2 .bt-about-content .list-box {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.bt-about-wrapper-2 .bt-about-content .list-box ul li {
    font-size: 18px;
    font-weight: 600;
}
.bt-about-wrapper-2 .bt-about-content .list-box ul li img {
    margin-right: 7px;
}
.bt-about-wrapper-2 .bt-about-content .list-box ul li:not(:last-child) {
    margin-bottom: 15px;
}
.bt-about-wrapper-2 .bt-about-content .theme-btn {
    margin-top: 50px;
}

.bt-about-wrapper-3 .bt-about-content {
    max-width: 635px;
}
.bt-about-wrapper-3 .bt-about-content .about-text {
    margin-top: 25px;
}
.bt-about-wrapper-3 .bt-about-content p {
    margin-top: 15px;
}
@media (max-width: 767px) {
    .bt-about-wrapper-3 .bt-about-content .theme-btn {
        margin-top: 25px !important;
    }
}
.bt-about-wrapper-3 .bt-about-image {
    position: relative;
    max-width: 536px;
    margin-left: 25%;
}
@media (max-width: 1199px) {
    .bt-about-wrapper-3 .bt-about-image {
        margin-left: 0;
    }
}
.bt-about-wrapper-3 .bt-about-image img {
    width: 100%;
    height: 100%;
}
.bt-about-wrapper-3 .bt-about-image .another-image {
    max-width: 360px;
    position: absolute;
    top: 15%;
    left: -32%;
}
@media (max-width: 1199px) {
    .bt-about-wrapper-3 .bt-about-image .another-image {
        left: 0;
        top: 0;
        max-width: 200px;
    }
    .bt-about-wrapper-3 .bt-about-image .another-image img {
        width: 100%;
        height: 100%;
    }
}
.bt-about-wrapper-3 .bt-about-image .another-image img {
    border-radius: 287px;
    border: 10px solid var(--white);
}

/* 02.5 Feature */
.bt-programs-box-items-2 {
    border-radius: 18px;
    background-color: var(--white);
    margin-top: 30px;
}
.bt-programs-box-items-2 .bt-image {
    padding: 20px;
    padding-bottom: 0;
}
.bt-programs-box-items-2 .bt-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.bt-programs-box-items-2 .bt-content {
    padding: 25px 20px;
}
.bt-programs-box-items-2 .bt-content p {
    font-size: 16px;
    margin-top: 10px;
}
.bt-programs-box-items-2 .bt-content h4 a:hover {
    color: var(--theme);
}
.bt-programs-box-items-2 .bt-content .theme-btn {
    background-color: var(--white);
    color: var(--header);
    border-radius: 30px;
    border: 1px solid #6c706f;
    margin-top: 25px;
}
.bt-programs-box-items-2 .bt-content .theme-btn i {
    background-color: var(--theme);
    color: var(--white);
}
.bt-programs-box-items-2 .bt-content .theme-btn::before {
    background-color: var(--theme);
}
.bt-programs-box-items-2 .bt-content .theme-btn:hover {
    color: var(--white);
}
.bt-programs-box-items-2 .bt-content .theme-btn:hover i {
    background-color: var(--white);
    color: var(--theme);
}
.bt-programs-box-items-2.style-2 {
    background-color: var(--bg);
    border-radius: 18px;
}
.bt-programs-box-items-2.style-2 .bt-content .theme-btn i {
    background-color: var(--theme-2);
    color: var(--header);
}

.bt-programs-section-2 {
    position: relative;
    margin-top: 40px;
    padding-bottom: 260px !important;
    margin-bottom: -70px;
    z-index: 9;
}
@media (max-width: 991px) {
    .bt-programs-section-2 {
        padding-bottom: 220px !important;
        margin-bottom: -45px;
    }
}
.bt-programs-section-2 .line-top {
    position: absolute;
    top: -40px;
    left: 0;
    height: 92px;
}
.bt-programs-section-2 .line-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 138px;
}
.bt-programs-section-2 .bt-program-shape-1 {
    position: absolute;
    z-index: -1;
    top: 10%;
    right: 10%;
}
.bt-programs-section-2 .bt-program-shape-2 {
    position: absolute;
    z-index: -1;
    bottom: 15%;
    left: 10%;
}

.bt-discount-section {
    position: relative;
    z-index: 9;
}
.bt-discount-section::before {
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background: linear-gradient(
        90deg,
        #141519 20.39%,
        rgba(20, 21, 25, 0) 99.83%
    );
    position: absolute;
    z-index: -1;
}

.discount-box-items h2 {
    font-size: 70px;
    color: var(--white);
    font-weight: 700;
}
@media (max-width: 1199px) {
    .discount-box-items h2 {
        font-size: 38px;
    }
}
@media (max-width: 767px) {
    .discount-box-items h2 {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .discount-box-items h2 {
        font-size: 37px;
    }
}
@media (max-width: 470px) {
    .discount-box-items h2 {
        font-size: 30px;
    }
}
.discount-box-items p {
    color: var(--white);
    margin-top: 25px;
}
.discount-box-items .btn-box {
    margin-top: 50px;
    display: flex;
    gap: 30px;
}
@media (max-width: 1199px) {
    .discount-box-items .btn-box {
        flex-wrap: wrap;
        gap: 15px;
    }
}
@media (max-width: 767px) {
    .discount-box-items .btn-box {
        margin-top: 25px;
    }
}
.discount-box-items .btn-box .theme-btn {
    border: 1px solid transparent;
}
.discount-box-items .btn-box .theme-btn:hover {
    color: var(--header);
}
.discount-box-items .btn-box .theme-btn.style-2 {
    background-color: transparent;
    border: 1px solid var(--white);
}
.discount-box-items .btn-box .theme-btn.style-2 i {
    background-color: var(--white);
}
.discount-box-items .btn-box .theme-btn.style-2::before {
    background-color: var(--theme);
}
.discount-box-items .btn-box .theme-btn.style-2:hover {
    border: 1px solid var(--theme);
    color: var(--white);
}
.discount-box-items .btn-box .theme-btn.style-2:hover i {
    color: var(--theme);
}

.bt-choose-us-wrapper {
    margin-bottom: 55px;
    margin-top: 60px;
}
@media (max-width: 1399px) {
    .bt-choose-us-wrapper {
        margin-bottom: -10px;
    }
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper {
        margin-top: -15px;
        margin-bottom: 0;
    }
}
@media (max-width: 991px) {
    .bt-choose-us-wrapper {
        margin-top: -40px;
    }
}
.bt-choose-us-wrapper .bt-choose-us-content .choose-text {
    margin-top: 25px;
}
.bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 1399px) {
    .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon {
        gap: 20px;
    }
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon {
        margin-top: 30px;
    }
}
.bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1399px) {
    .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items {
        gap: 15px;
    }
}
.bt-choose-us-wrapper
    .bt-choose-us-content
    .bt-choose-icon
    .bt-icon-items
    .icon {
    max-width: 90px;
    width: 100%;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 79, 68, 0.15);
}
@media (max-width: 1399px) {
    .bt-choose-us-wrapper
        .bt-choose-us-content
        .bt-choose-icon
        .bt-icon-items
        .icon {
        max-width: 83px;
        height: 83px;
        line-height: 83px;
    }
    .bt-choose-us-wrapper
        .bt-choose-us-content
        .bt-choose-icon
        .bt-icon-items
        .icon
        img {
        width: 40px;
        height: 40px;
    }
}
.bt-choose-us-wrapper
    .bt-choose-us-content
    .bt-choose-icon
    .bt-icon-items
    .icon.style-2 {
    background: rgba(255, 167, 41, 0.15);
}
.bt-choose-us-wrapper
    .bt-choose-us-content
    .bt-choose-icon
    .bt-icon-items
    .content
    p {
    font-size: 16px;
}
@media (max-width: 1399px) {
    .bt-choose-us-wrapper
        .bt-choose-us-content
        .bt-choose-icon
        .bt-icon-items
        .content
        p {
        font-size: 14px;
    }
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper
        .bt-choose-us-content
        .bt-choose-icon
        .bt-icon-items
        .content
        p {
        font-size: 15px;
    }
}
.bt-choose-us-wrapper .bt-choose-image {
    max-width: 600px;
    position: relative;
    z-index: 9;
    margin-top: 40px;
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper .bt-choose-image {
        margin-top: 0;
    }
}
@media (max-width: 1399px) {
    .bt-choose-us-wrapper .bt-choose-image {
        margin-top: 20px;
    }
}
.bt-choose-us-wrapper .bt-choose-image img {
    width: 100%;
    height: 100%;
    border: 15px solid rgba(0, 79, 68, 0.1);
    border-radius: 50%;
}
.bt-choose-us-wrapper .bt-choose-image .bt-counter-item {
    display: flex;
    gap: 20px;
    border-radius: 10px;
    background-color: var(--theme-2);
    color: var(--header);
    position: absolute;
    top: 42%;
    right: -24%;
    padding: 30px 40px;
}
@media (max-width: 1600px) {
    .bt-choose-us-wrapper .bt-choose-image .bt-counter-item {
        padding: 20px 30px;
        right: -5%;
    }
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper .bt-choose-image .bt-counter-item {
        display: none;
    }
}
.bt-choose-us-wrapper .bt-choose-image .bt-counter-item h2 {
    color: var(--header);
}
.bt-choose-us-wrapper .bt-choose-image .bt-counter-item p {
    max-width: 120px;
    color: var(--header);
}
.bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 {
    max-width: 250px;
    position: absolute;
    top: -65px;
    left: -20px;
}
@media (max-width: 1399px) {
    .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 {
        max-width: 250px;
    }
    .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 {
        right: 0;
        left: initial;
        top: 0;
        max-width: 200px;
    }
    .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 img {
        width: 100%;
        height: 100%;
    }
}
.bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 img {
    border-radius: 50%;
    border: 10px solid var(--white);
}
.bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 {
    max-width: 300px;
    position: absolute;
    bottom: -65px;
    left: -85px;
}
@media (max-width: 1399px) {
    .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 {
        left: -20px;
        max-width: 250px;
    }
    .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 {
        left: 0;
        bottom: 0;
        max-width: 200px;
    }
    .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 img {
        width: 100%;
        height: 100%;
    }
}
.bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 img {
    border-radius: 50%;
    border: 10px solid var(--white);
}

.bt-choose-us-section2 {
    position: relative;
    margin-bottom: 30px;
}
.bt-choose-us-section2 .line-bottom {
    position: absolute;
    height: 65px;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: 12;
}

.bt-pricing-section-3 .section-title .nav {
    border: none;
    margin-top: 30px;
}
.bt-pricing-section-3 .section-title .nav .nav-tabs {
    border-bottom: 0;
    display: flex;
    justify-content: center;
}
.bt-pricing-section-3 .section-title .nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    border: 0;
    border-radius: 0;
    padding: 7px 56px;
    position: relative;
    background: transparent;
    z-index: 2;
    color: var(--text);
    margin-bottom: 0;
}
.bt-pricing-section-3 .section-title .nav .nav-link::before {
    position: absolute;
    content: "";
    right: 0px;
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    background: var(--theme);
    width: 75px;
    height: 32px;
    border-radius: 20px;
    border: 1px solid var(--theme);
}
.bt-pricing-section-3 .section-title .nav .nav-link::after {
    position: absolute;
    content: "";
    right: -33px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    z-index: 1;
}
.bt-pricing-section-3 .section-title .nav .nav-link:first-child {
    padding-left: 0;
}
.bt-pricing-section-3 .section-title .nav .nav-link:last-child {
    padding-right: 0;
}
.bt-pricing-section-3 .section-title .nav .nav-link:last-child::after {
    display: none;
}
.bt-pricing-section-3 .section-title .nav .nav-link:last-child::before {
    display: none;
}
.bt-pricing-section-3 .section-title .nav .nav-link.active {
    color: var(--theme);
}
.bt-pricing-section-3 .section-title .nav .nav-link.active::after {
    right: 8px;
}

.bt-pricing-box-items-3 {
    border-radius: 18px;
    background: var(--bg);
    padding: 40px 36px;
    margin-top: 30px;
    transition: all 0.4s ease-in-out;
    position: relative;
}
.bt-pricing-box-items-3 .popul-text {
    background-color: var(--theme-2);
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    line-height: 1;
    color: var(--header);
    padding: 10px 20px;
    border-radius: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
}
.bt-pricing-box-items-3 .pricing-header h2 {
    font-size: 80px;
    color: var(--theme);
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .bt-pricing-box-items-3 .pricing-header h2 {
        font-size: 60px;
    }
}
.bt-pricing-box-items-3 .pricing-header h2 sup {
    font-size: 18px;
    color: var(--text);
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
    .bt-pricing-box-items-3 .pricing-header h2 sup {
        font-size: 16px;
    }
}
.bt-pricing-box-items-3 .pricing-header .theme-btn {
    margin-top: 20px;
    width: 100%;
    padding: 20px 30px;
    margin-bottom: 40px;
    background-color: var(--header);
}
@media (max-width: 767px) {
    .bt-pricing-box-items-3 .pricing-header .theme-btn {
        margin-top: 25px;
    }
}
.bt-pricing-box-items-3 .pricing-header .theme-btn::before {
    background-color: var(--theme) !important;
}
.bt-pricing-box-items-3 .pricing-header .theme-btn:hover {
    color: var(--white);
}
.bt-pricing-box-items-3 h4 {
    border-top: 1px solid rgba(108, 112, 111, 0.3);
    padding-top: 30px;
    text-transform: uppercase;
}
.bt-pricing-box-items-3 .list-items {
    margin-top: 20px;
}
.bt-pricing-box-items-3 .list-items li {
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}
.bt-pricing-box-items-3 .list-items li i {
    color: var(--theme-2);
    margin-right: 8px;
    transition: all 0.4s ease-in-out;
}
.bt-pricing-box-items-3 .list-items li:not(:last-child) {
    margin-bottom: 10px;
}
.bt-pricing-box-items-3.active {
    background-color: var(--bg);
    transition: all 0.4s ease-in-out;
}
.bt-pricing-box-items-3.active .pricing-header h2 {
    color: var(--theme-2);
}
.bt-pricing-box-items-3.active .pricing-header h2 sup {
    color: var(--text);
}
.bt-pricing-box-items-3.active .pricing-header p {
    color: var(--text);
}
.bt-pricing-box-items-3.active .pricing-header .theme-btn {
    background-color: var(--theme);
    color: var(--white);
}
.bt-pricing-box-items-3.active .pricing-header .theme-btn::before {
    background-color: var(--header) !important;
}
.bt-pricing-box-items-3.active h4 {
    color: var(--header);
    border-top: 1px solid rgba(39, 40, 44, 0.3);
}
.bt-pricing-box-items-3.active .list-items li {
    color: var(--text);
}
.bt-pricing-box-items-3.active .list-items li i {
    color: var(--theme-2);
}

.bt-choose-us-wrapper-2 {
    margin-top: -30px;
}
@media (max-width: 991px) {
    .bt-choose-us-wrapper-2 {
        margin-top: 0;
    }
}
.bt-choose-us-wrapper-2 .bt-choose-us-content {
    margin-right: 30px;
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper-2 .bt-choose-us-content {
        margin-right: 0;
    }
}
.bt-choose-us-wrapper-2 .bt-choose-us-content .choose-text {
    margin-top: 25px;
}
.bt-choose-us-wrapper-2 .bt-choose-us-content ul {
    margin-top: 30px;
}
.bt-choose-us-wrapper-2 .bt-choose-us-content ul li {
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
    display: flex;
    align-items: center;
    gap: 10px;
}
.bt-choose-us-wrapper-2 .bt-choose-us-content ul li:not(:last-child) {
    margin-bottom: 15px;
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area {
    position: relative;
    z-index: 9;
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area::before {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--theme);
    content: "";
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper-2 .bt-icon-box-items-area::before {
        display: none;
    }
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box {
    border-radius: 23.604px;
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    margin-top: 30px;
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background-color: #f0f4f5;
    margin: 0 auto;
    margin-bottom: 40px;
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box.style-2 {
    background-color: var(--white);
}
.bt-choose-us-wrapper-2
    .bt-icon-box-items-area
    .bt-box-items
    .bt-box.style-2
    .icon {
    background-color: var(--bg);
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box.style-3 {
    background-color: var(--theme-2);
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box.style-4 {
    background-color: var(--header);
}
.bt-choose-us-wrapper-2
    .bt-icon-box-items-area
    .bt-box-items
    .bt-box.style-4
    .bt-counter-item
    h2 {
    color: var(--white);
}
.bt-choose-us-wrapper-2
    .bt-icon-box-items-area
    .bt-box-items
    .bt-box.style-4
    .bt-counter-item
    p {
    color: var(--white);
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items.style-2 {
    margin-top: 200px;
}
@media (max-width: 1199px) {
    .bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items.style-2 {
        margin-top: 30px;
    }
}

.scrolling-wrap {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 20px;
    padding: 15px 0;
}
.scrolling-wrap .comm {
    display: flex;
    align-items: center;
    animation: scroll 60s linear infinite;
    gap: 30px;
    cursor: pointer;
}
.scrolling-wrap .comm .cmn-textslide {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    text-transform: capitalize;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}
.scrolling-wrap .comm .cmn-textslide i {
    font-size: 21px;
}
.scrolling-wrap .comm .cmn-textslide.text-color-2 {
    color: var(--white);
}
.scrolling-wrap:hover .comm {
    animation-play-state: paused;
}
@media (max-width: 1399px) {
    .scrolling-wrap .comm {
        gap: 20px;
    }
}
@media (max-width: 991px) {
    .scrolling-wrap {
        gap: 14px;
    }
    .scrolling-wrap .comm {
        gap: 14px;
    }
}
@media (max-width: 575px) {
    .scrolling-wrap .comm {
        gap: 12px;
    }
}

.mycustom-marque {
    background-color: var(--theme);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes scrolly {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-60%);
    }
}
@keyframes scrolls {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}
.bt-choose-us-style-22 {
    margin-top: 30px;
}
.bt-choose-us-style-22 .bt-box-items .bt-box {
    background-color: #f0f4f5 !important;
}
.bt-choose-us-style-22 .bt-box-items .bt-box .icon {
    background-color: var(--white) !important;
}
.bt-choose-us-style-22 .bt-box-items .bt-box.style-3 {
    background-color: var(--theme-2) !important;
}
.bt-choose-us-style-22 .bt-box-items .bt-box.style-4 {
    background-color: #141519 !important;
}

/* 02.6 Courses */
.bt-category-box-items {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 28px;
    text-align: center;
    margin-top: 30px;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 9;
}
.bt-category-box-items .bt-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
    background-color: #f2f4f7;
    margin: 0 auto;
    margin-bottom: 25px;
}
.bt-category-box-items .bt-content h3 {
    margin-bottom: 10px;
    color: var(--white);
}
.bt-category-box-items .bt-content p {
    font-size: 16px;
    color: var(--bg);
}
.bt-category-box-items .bt-content .theme-btn {
    background-color: transparent;
    color: var(--white);
    border-radius: 30px;
    border: 1px solid var(--white);
    margin-top: 30px;
}
.bt-category-box-items:hover {
    background-color: var(--theme-2);
    transition: all 0.4s ease-in-out;
}
.bt-category-box-items:hover .bt-icon {
    background-color: var(--white);
}
.bt-category-box-items:hover .bt-content h3 {
    color: var(--header);
}
.bt-category-box-items:hover .bt-content p {
    color: var(--header);
}
.bt-category-box-items:hover .bt-content .theme-btn {
    background-color: var(--header);
    border: 1px solid transparent;
}
.bt-category-box-items:hover .bt-content .theme-btn i {
    background-color: var(--theme);
    color: var(--white);
}
.bt-category-box-items:hover .bt-content .theme-btn::before {
    background-color: var(--theme);
}
.bt-category-box-items:hover .bt-content .theme-btn:hover i {
    background-color: var(--theme-2) !important;
    color: var(--theme);
}

.bt-top-category-section {
    position: relative;
    z-index: 9;
}
.bt-top-category-section .category-shape-1 {
    position: absolute;
    top: 10%;
    right: 80px;
    z-index: -1;
}
@media (max-width: 1199px) {
    .bt-top-category-section .category-shape-1 {
        display: none;
    }
}
.bt-top-category-section .array-button {
    position: relative;
}
.bt-top-category-section .array-button::before {
    position: absolute;
    top: 25px;
    left: 0;
    content: "";
    height: 1px;
    width: 620px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 100%
    );
}
@media (max-width: 1399px) {
    .bt-top-category-section .array-button::before {
        width: 450px;
    }
}
@media (max-width: 1199px) {
    .bt-top-category-section .array-button::before {
        display: none;
    }
}
.bt-top-category-section .array-button::after {
    position: absolute;
    top: 25px;
    right: 0;
    content: "";
    height: 1px;
    width: 620px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}
@media (max-width: 1399px) {
    .bt-top-category-section .array-button::after {
        width: 450px;
    }
}
@media (max-width: 1199px) {
    .bt-top-category-section .array-button::after {
        display: none;
    }
}
.bt-top-category-section .array-button .array-prev,
.bt-top-category-section .array-button .array-next {
    border: 1px solid var(--white);
    color: var(--white);
}
.bt-top-category-section .array-button .array-prev:hover,
.bt-top-category-section .array-button .array-next:hover {
    color: var(--header);
}

/* ICCSSL Mission, Vision & Leadership cards */
.iccssl-mission-section .listar-feature-items {
    margin-top: 42px;
}
.iccssl-mission-section .mission-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.iccssl-mission-section .listar-feature-item {
    height: 100%;
}
.iccssl-mission-section .listar-feature-item-inner {
    position: relative;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 18px;
    padding: 32px 28px 28px;
    background: rgba(255, 255, 255, 0.97);
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(4, 18, 31, 0.18);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.iccssl-mission-section .listar-feature-item-inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme), #d5a940);
}
.iccssl-mission-section .listar-feature-block-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    text-align: left;
}
.iccssl-mission-section .listar-feature-icon-wrapper {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 79, 68, 0.09);
    border: 1px solid rgba(0, 79, 68, 0.14);
}
.iccssl-mission-section .listar-feature-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.iccssl-mission-section .listar-feature-icon-inner i {
    color: var(--theme);
    font-size: 28px;
}
.iccssl-mission-section .listar-feature-item-title {
    margin: 8px 0 14px;
    color: var(--header);
    font-size: 22px;
    font-weight: 700;
}
.iccssl-mission-section .mission-card-number {
    color: var(--theme);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}
.iccssl-mission-section .listar-feature-item-excerpt {
    color: #44516c;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}
.iccssl-mission-section .mission-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--theme);
    font-size: 14px;
    font-weight: 700;
}
.iccssl-mission-section .mission-card-link i {
    font-size: 12px;
    transition: transform 0.25s ease;
}
.iccssl-mission-section .mission-card-link:hover {
    color: var(--header);
}
.iccssl-mission-section .mission-card-link:hover i {
    transform: translateX(3px);
}
.iccssl-mission-section .listar-feature-item:hover .listar-feature-item-inner {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(4, 18, 31, 0.25);
}
@media (max-width: 991px) {
    .iccssl-mission-section .mission-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .iccssl-mission-section .listar-feature-items {
        margin-top: 30px;
    }
    .iccssl-mission-section .mission-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .iccssl-mission-section .listar-feature-item-inner {
        padding: 26px 24px 24px;
    }
}

.bt-courses-box-items {
    margin-top: 30px;
    border-radius: 18px;
    background: var(--bg);
    overflow: hidden;
}
.bt-courses-box-items .bt-courses-image {
    position: relative;
}
.bt-courses-box-items .bt-courses-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px 18px 0px 0px;
}
.bt-courses-box-items .bt-courses-image .post-box {
    border-radius: 30px;
    background: var(--theme-2);
    padding: 12px 20px;
    color: var(--header);
    line-height: 1;
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 14px;
    font-weight: 600;
}
.bt-courses-box-items .bt-courses-image .post-box:hover {
    background: var(--theme);
    color: var(--white);
}
.bt-courses-box-items .bt-courses-content {
    padding: 30px 30px;
}
@media (max-width: 1399px) {
    .bt-courses-box-items .bt-courses-content {
        padding: 25px 18px;
    }
}
@media (max-width: 1199px) {
    .bt-courses-box-items .bt-courses-content {
        padding: 25px;
    }
}
@media (max-width: 767px) {
    .bt-courses-box-items .bt-courses-content {
        padding: 26px;
    }
}
@media (max-width: 575px) {
    .bt-courses-box-items .bt-courses-content {
        padding: 24px;
    }
}
.bt-courses-box-items .bt-courses-content .star {
    color: rgb(255, 164, 27);
}
.bt-courses-box-items .bt-courses-content .star i:last-child {
    color: #6c706f;
}
.bt-courses-box-items .bt-courses-content h3 {
    margin-top: 10px;
}
.bt-courses-box-items .bt-courses-content h3 a:hover {
    color: var(--theme);
}
.bt-courses-box-items .bt-courses-content .post-date {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(108, 112, 111, 0.3);
    padding-bottom: 20px;
}
@media (max-width: 1399px) {
    .bt-courses-box-items .bt-courses-content .post-date {
        gap: 10px;
    }
}
@media (max-width: 1199px) {
    .bt-courses-box-items .bt-courses-content .post-date {
        flex-wrap: wrap;
        gap: 15px;
    }
}
.bt-courses-box-items .bt-courses-content .post-date li {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1399px) {
    .bt-courses-box-items .bt-courses-content .post-date li {
        gap: 10px;
    }
}
.bt-courses-box-items .bt-courses-content .post-date li .icon {
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: var(--white);
    text-align: center;
    border-radius: 50%;
    color: var(--theme);
}
.bt-courses-box-items .bt-courses-content .client-info-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
    .bt-courses-box-items .bt-courses-content .client-info-area {
        flex-wrap: wrap;
        gap: 15px;
    }
}
.bt-courses-box-items .bt-courses-content .client-info-area .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--header);
    font-weight: 600;
}
.bt-courses-box-items .bt-courses-content .client-info-area h2 {
    font-size: 36px;
    color: var(--theme);
    font-weight: 600;
}
@media (max-width: 575px) {
    .bt-courses-box-items .bt-courses-content .client-info-area h2 {
        font-size: 30px;
    }
}
.bt-courses-box-items .bt-courses-content .theme-btn {
    width: 100%;
    padding: 20px;
    display: none;
    margin-top: -13px;
}
.bt-courses-box-items .bt-courses-content .theme-btn:hover {
    color: var(--header);
}
.bt-courses-box-items:hover .bt-courses-content .client-info-area {
    display: none;
}
.bt-courses-box-items:hover .bt-courses-content .theme-btn {
    display: block;
}

/* ICCSSL featured programs */
.featured-programs-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 8%, rgba(186, 226, 219, 0.55), transparent 28%),
        linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
}
.featured-programs-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--theme) 0 72%, var(--theme-2) 72% 100%);
}
.featured-programs-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}
.featured-programs-heading__copy {
    max-width: 760px;
}
.featured-programs-heading__copy h2 {
    margin-bottom: 18px;
}
.featured-programs-heading__copy p {
    max-width: 680px;
    margin-bottom: 0;
    color: #52605f;
    font-size: 17px;
    line-height: 1.75;
}
.featured-programs-heading__link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 79, 68, 0.35);
    color: var(--theme);
    font-weight: 700;
}
.featured-programs-heading__link i,
.featured-program-card__link i {
    transition: transform 0.25s ease;
}
.featured-programs-heading__link:hover,
.featured-programs-heading__link:focus-visible {
    color: var(--header);
}
.featured-programs-heading__link:hover i,
.featured-programs-heading__link:focus-visible i,
.featured-program-card__link:hover i,
.featured-program-card__link:focus-visible i {
    transform: translateX(4px);
}
.featured-programs-toolbar {
    position: relative;
    z-index: 3;
    margin-top: 42px;
    margin-bottom: 34px;
}
.featured-programs-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    padding: 7px;
    overflow-x: auto;
    border: 1px solid #dce9e6;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 35px rgba(17, 64, 57, 0.07);
    scrollbar-width: none;
}
.featured-programs-filters::-webkit-scrollbar {
    display: none;
}
.featured-program-filter {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 16px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #52605f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.featured-program-filter span {
    display: grid;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    place-items: center;
    border-radius: 50px;
    background: #edf5f3;
    color: var(--theme);
    font-size: 11px;
}
.featured-program-filter:hover,
.featured-program-filter:focus-visible {
    color: var(--theme);
    background: #edf5f3;
}
.featured-program-filter.active {
    color: var(--white);
    background: var(--theme);
    box-shadow: 0 8px 20px rgba(0, 79, 68, 0.2);
}
.featured-program-filter.active span {
    color: var(--header);
    background: var(--theme-2);
}
.featured-programs-content {
    position: relative;
    z-index: 2;
}
.featured-program-slider {
    overflow: visible;
}
.featured-program-slider .swiper-wrapper {
    align-items: stretch;
}
.featured-program-slider .swiper-slide {
    height: auto;
}
.featured-program-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e1ece9;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(20, 57, 52, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.featured-program-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 79, 68, 0.25);
    box-shadow: 0 24px 58px rgba(20, 57, 52, 0.14);
}
.featured-program-card__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #dce9e6;
}
.featured-program-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(2, 29, 25, 0.66) 100%);
    pointer-events: none;
}
.featured-program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.featured-program-card:hover .featured-program-card__image img {
    transform: scale(1.045);
}
.featured-program-card__category {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 18px;
    left: 18px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.featured-program-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 26px 25px;
}
.featured-program-card__type {
    margin-bottom: 11px;
    color: var(--theme);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.featured-program-card__body h3 {
    margin: 0 0 13px;
    font-size: 21px;
    line-height: 1.38;
}
.featured-program-card__body h3 a:hover,
.featured-program-card__body h3 a:focus-visible {
    color: var(--theme);
}
.featured-program-card__description {
    margin-bottom: 20px;
    color: #63706f;
    font-size: 14px;
    line-height: 1.65;
}
.featured-program-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 16px;
    width: 100%;
    margin: auto 0 21px;
    padding: 17px 0;
    border-top: 1px solid #e8efed;
    border-bottom: 1px solid #e8efed;
}
.featured-program-card__meta:empty {
    display: none;
}
.featured-program-card__meta li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #52605f;
    font-size: 12px;
    font-weight: 600;
}
.featured-program-card__meta i {
    color: var(--theme);
}
.featured-program-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--header);
    font-size: 14px;
    font-weight: 800;
}
.featured-program-card__link:hover,
.featured-program-card__link:focus-visible {
    color: var(--theme);
}
.featured-program-slider__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
}
.featured-program-pagination {
    position: static;
    display: flex;
    align-items: center;
    width: auto !important;
}
.featured-program-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px !important;
    background: #a9bfba;
    opacity: 1;
    transition: width 0.2s ease, background 0.2s ease;
}
.featured-program-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 50px;
    background: var(--theme);
}
.featured-program-navigation {
    display: flex;
    gap: 10px;
}
.featured-program-navigation button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid #d6e5e1;
    border-radius: 50%;
    background: var(--white);
    color: var(--header);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.featured-program-navigation button:hover,
.featured-program-navigation button:focus-visible {
    border-color: var(--theme);
    color: var(--white);
    background: var(--theme);
}
.featured-program-navigation .swiper-button-disabled {
    cursor: not-allowed;
    opacity: 0.42;
}
.featured-programs-empty {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 150px;
    padding: 30px;
    border: 1px dashed #bdd0cc;
    border-radius: 20px;
    color: #63706f;
    background: rgba(255, 255, 255, 0.72);
}
.featured-programs-empty i {
    color: var(--theme);
    font-size: 24px;
}
.featured-programs-empty p {
    margin: 0;
}
@media (max-width: 991px) {
    .featured-programs-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }
    .featured-programs-heading__copy p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .featured-programs-toolbar {
        margin-top: 32px;
        margin-bottom: 26px;
    }
    .featured-programs-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        width: 100%;
        overflow: visible;
        border-radius: 14px;
    }
    .featured-program-filter {
        justify-content: space-between;
        min-width: 0;
        padding: 10px;
        line-height: 1.25;
        white-space: normal;
    }
    .featured-program-filter:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
    .featured-program-card__body {
        padding: 23px 22px;
    }
    .featured-program-card__body h3 {
        font-size: 20px;
    }
    .featured-program-slider__footer {
        margin-top: 26px;
    }
}

.bt-category-box-items-3 {
    border-radius: 18px;
    background: var(--bg);
    padding: 40px 30px;
    transition: all 0.4s ease-in-out;
}
.bt-category-box-items-3 .bt-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--white);
    margin-bottom: 40px;
    transition: all 0.4s ease-in-out;
}
.bt-category-box-items-3 .bt-icon img {
    transition: all 0.4s ease-in-out;
}
.bt-category-box-items-3 .bt-content p {
    font-size: 16px;
    margin-top: 10px;
}
.bt-category-box-items-3:hover {
    background-color: var(--theme);
}
.bt-category-box-items-3:hover .bt-content h4 {
    color: var(--white);
}
.bt-category-box-items-3:hover .bt-content p {
    color: var(--bg);
}
.bt-category-box-items-3.style-2 {
    margin-top: 60px;
}
@media (max-width: 1199px) {
    .bt-category-box-items-3.style-2 {
        margin-top: 0;
    }
}

.bt-courses-details-area .bt-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content {
    margin-top: 30px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .bt-left-content
    .list-date {
    display: flex;
    align-items: center;
    gap: 30px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .bt-left-content
    .list-date
    li
    h6 {
    border-radius: 30px;
    background: #f2f4f7;
    padding: 10px 24px;
    display: inline-block;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .bt-left-content
    .list-date
    li {
    color: var(--header);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .bt-left-content
    .list-date
    li
    i {
    color: var(--theme);
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content h3 {
    font-size: 36px;
    margin-top: 20px;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content p {
    margin-top: 20px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .bt-left-content
    .list-items {
    margin-top: 20px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .bt-left-content
    .list-items
    li {
    color: var(--header);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .bt-left-content
    .list-items
    li
    i {
    color: var(--header);
    margin-right: 8px;
    font-size: 25px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .bt-left-content
    .list-items
    li:not(:last-child) {
    margin-bottom: 10px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content {
    margin-top: 32px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .nav {
    display: flex;
    align-items: center;
    background-color: var(--white);
    box-shadow: 10px 4px 30px rgba(168, 168, 168, 0.2);
    border: 1px solid var(--border);
    border-radius: 10px;
    justify-content: center;
    padding: 14px 30px;
    gap: 80px;
    margin-bottom: 50px;
}
@media (max-width: 1600px) {
    .bt-courses-details-area
        .bt-courses-details-wrapper
        .courses-details-content
        .nav {
        gap: 50px;
    }
}
@media (max-width: 1199px) {
    .bt-courses-details-area
        .bt-courses-details-wrapper
        .courses-details-content
        .nav {
        gap: 30px;
        flex-wrap: wrap;
    }
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .nav
    .nav-item {
    padding: 0;
    position: relative;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .nav
    .nav-item
    .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    position: relative;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .nav
    .nav-item
    .nav-link::before {
    position: absolute;
    right: -40px;
    top: 20px;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: rgba(0, 91, 255, 0.2);
}
@media (max-width: 1199px) {
    .bt-courses-details-area
        .bt-courses-details-wrapper
        .courses-details-content
        .nav
        .nav-item
        .nav-link::before {
        display: none;
    }
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .nav
    .nav-item
    .nav-link.bb-none::before {
    display: none;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .nav
    .nav-item
    .nav-link.active {
    color: var(--theme);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .nav
    .nav-item
    .nav-link.active::before {
    background-color: var(--theme);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .nav
    .nav-item
    .nav-link.active::after {
    position: absolute;
    bottom: -15px;
    left: 0;
    height: 2px;
    width: 100%;
    content: "";
    background: var(--theme);
    transition: 0.3s;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .description-content
    h3 {
    font-size: 27px;
    margin-bottom: 20px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .description-content
    .list-item
    li {
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .description-content
    .list-item
    li
    i {
    color: var(--theme);
    margin-right: 5px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .description-content
    .list-item
    li:not(:last-child) {
    margin-bottom: 10px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    h3 {
    font-size: 27px;
    margin-bottom: 30px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-item {
    border: none;
    border-radius: 0px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 7px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-item
    h2
    button {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    box-shadow: none;
    border-radius: 0 !important;
    padding: 20px 30px;
    font-family: "Poppins", sans-serif;
    color: var(--header);
    background-color: transparent;
    border-bottom: 1px solid var(--border);
    border-radius: 7px;
}
@media (max-width: 575px) {
    .bt-courses-details-area
        .bt-courses-details-wrapper
        .courses-details-content
        .course-curriculum-items
        .courses-faq-items
        .accordion
        .accordion-item
        h2
        button {
        font-size: 17px;
    }
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-item
    .accordion-body {
    padding: 0;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-item
    .accordion-body
    ul
    li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
}
@media (max-width: 1199px) {
    .bt-courses-details-area
        .bt-courses-details-wrapper
        .courses-details-content
        .course-curriculum-items
        .courses-faq-items
        .accordion
        .accordion-item
        .accordion-body
        ul
        li {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-item
    .accordion-body
    ul
    li:not(:last-child) {
    border-bottom: 1px solid var(--border);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-item
    .accordion-body
    ul
    li
    span {
    font-size: 16px;
    color: var(--text);
    font-weight: 400;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-item
    .accordion-body
    ul
    li
    span
    i {
    margin-right: 10px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-button {
    background-color: transparent;
    color: var(--header);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-button::after {
    display: none;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-button::before {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    top: 18px;
    right: 30px;
    font-size: 16px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: var(--header);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-button.collapsed {
    background-color: transparent;
    color: var(--header);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .course-curriculum-items
    .courses-faq-items
    .accordion
    .accordion-button.collapsed::before {
    content: "\f054";
    color: var(--header);
    background-color: transparent;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .instructors-items
    h3 {
    margin-bottom: 10px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .instructors-items
    .instructors-box-items {
    padding: 40px 50px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background-color: #f4f9ff;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}
@media (max-width: 767px) {
    .bt-courses-details-area
        .bt-courses-details-wrapper
        .courses-details-content
        .instructors-items
        .instructors-box-items {
        flex-wrap: wrap;
        gap: 20px;
        padding: 30px;
    }
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .instructors-items
    .instructors-box-items
    .content {
    max-width: 521px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .instructors-items
    .instructors-box-items
    .content
    h4 {
    font-size: 22px;
    margin-bottom: 5px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .instructors-items
    .instructors-box-items
    .content
    p {
    margin-top: 25px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .instructors-items
    .instructors-box-items
    .content
    .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .instructors-items
    .instructors-box-items
    .content
    .social-icon
    a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--text);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 50%;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .instructors-items
    .instructors-box-items
    .content
    .social-icon
    a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .instructors-items
    .instructors-box-items.style-2 {
    background-color: var(--white);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    h3 {
    font-size: 27px;
    margin-bottom: 30px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .courses-reviews-box {
    display: flex;
    align-items: center;
    gap: 70px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}
@media (max-width: 767px) {
    .bt-courses-details-area
        .bt-courses-details-wrapper
        .courses-details-content
        .courses-reviews-items
        .courses-reviews-box-items
        .courses-reviews-box {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .courses-reviews-box
    .reviews-box {
    padding: 50px 34px;
    text-align: center;
    min-width: 248px;
    box-shadow: 10px 4px 60px rgba(182, 182, 182, 0.2);
    background-color: var(--white);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .courses-reviews-box
    .reviews-box
    h2 {
    font-size: 90px;
    line-height: 1;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .courses-reviews-box
    .reviews-box
    .star {
    color: #ffae5d;
    margin-bottom: 10px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right {
    max-width: 452px;
    width: 100%;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 767px) {
    .bt-courses-details-area
        .bt-courses-details-wrapper
        .courses-details-content
        .courses-reviews-items
        .courses-reviews-box-items
        .reviews-ratting-right
        .reviews-ratting-item {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item:not(:last-child) {
    margin-bottom: 15px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item
    .star {
    color: #ffae5d;
    display: flex;
    align-items: center;
    gap: 7px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item
    .star
    i.color-2 {
    color: var(--text);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item
    span {
    font-weight: 500;
    color: var(--header);
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item
    .progress {
    background: rgba(255, 174, 93, 0.3);
    justify-content: flex-start;
    border-radius: 0;
    align-items: center;
    position: relative;
    display: flex;
    height: 5px;
    width: 100%;
    max-width: 244px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item
    .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: #ffae5d;
    height: 5px;
    width: 0;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item
    .style-two {
    animation: load2 3s normal forwards;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item
    .style-three {
    animation: load3 3s normal forwards;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item
    .style-four {
    animation: load4 3s normal forwards;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .courses-reviews-box-items
    .reviews-ratting-right
    .reviews-ratting-item
    .style-five {
    animation: load5 3s normal forwards;
}
@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 90%;
    }
}
@keyframes load3 {
    0% {
        width: 0;
    }
    100% {
        width: 80%;
    }
}
@keyframes load4 {
    0% {
        width: 0;
    }
    100% {
        width: 70%;
    }
}
@keyframes load5 {
    0% {
        width: 0;
    }
    100% {
        width: 60%;
    }
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .instructors-box-items {
    padding: 40px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 767px) {
    .bt-courses-details-area
        .bt-courses-details-wrapper
        .courses-details-content
        .courses-reviews-items
        .instructors-box-items {
        flex-wrap: wrap;
        gap: 20px;
        padding: 30px;
    }
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .instructors-box-items
    .content {
    max-width: 540px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .instructors-box-items
    .content
    h4 {
    font-size: 22px;
    margin-bottom: 5px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .instructors-box-items
    .content
    p {
    margin-top: 15px;
}
.bt-courses-details-area
    .bt-courses-details-wrapper
    .courses-details-content
    .courses-reviews-items
    .instructors-box-items
    .content
    .star {
    color: #ffae5d;
    margin-top: 15px;
}
.bt-courses-details-area .details-list-area {
    margin-top: -80px;
    margin-right: 20px;
    padding: 30px 40px;
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 9;
}
@media (max-width: 1199px) {
    .bt-courses-details-area .details-list-area {
        margin-right: 30px;
    }
}
@media (max-width: 991px) {
    .bt-courses-details-area .details-list-area {
        margin-top: 30px;
    }
}
.bt-courses-details-area .details-list-area .details-list {
    margin-bottom: 30px;
}
.bt-courses-details-area .details-list-area .details-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.bt-courses-details-area .details-list-area .details-list li:not(:last-child) {
    border-bottom: 1px solid var(--border);
}
.bt-courses-details-area .details-list-area .details-list li span i {
    color: var(--theme);
}
.bt-courses-details-area .details-list-area .theme-btn {
    padding: 20px 35px;
}
.bt-courses-details-area .details-list-area .theme-btn.style-2 {
    background-color: var(--theme-2);
    color: var(--header);
}
.bt-courses-details-area .details-list-area .theme-btn.style-2::before {
    background-color: var(--theme);
}
.bt-courses-details-area .details-list-area .theme-btn.style-2:hover {
    color: var(--white);
}
.bt-courses-details-area .details-list-area .social-icon {
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.bt-courses-details-area .details-list-area .social-icon a {
    color: var(--header);
}
.bt-courses-details-area .details-list-area .social-icon a:hover {
    color: var(--theme-2);
}

.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items {
    border-radius: 18px;
    background: #f2f4f7;
    padding: 40px 36px;
    margin-bottom: 20px;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .wid-title {
    margin-bottom: 15px;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .wid-title
    h5 {
    font-size: 24px;
    font-weight: 600;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .wid-title.style-2 {
    border: none;
    padding-bottom: 0;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items:not(:last-child) {
    margin-bottom: 30px;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .courses-list-box {
    background-color: var(--white);
    padding: 16px;
    line-height: 1;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .courses-list-box:not(:last-child) {
    margin-bottom: 10px;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .courses-list-box
    .star {
    color: #ffa41b;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .bt-search-widget
    form {
    width: 100%;
    position: relative;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .bt-search-widget
    form
    input {
    background-color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 20px;
    width: 100%;
    border: none;
    color: var(--text);
    border-radius: 8px;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .bt-search-widget
    form
    button {
    position: absolute;
    right: -2px;
    top: 0;
    width: 66px;
    border-radius: 8px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .bt-search-widget
    form
    button:hover {
    background-color: var(--header);
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .categories-list
    .checkbox-single {
    position: relative;
    padding-left: 18px;
    cursor: pointer;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .categories-list
    .checkbox-single
    input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.bt-courses-wrapper
    .courses-main-sidebar-area
    .courses-main-sidebar
    .courses-sidebar-items
    .categories-list
    .checkbox-single
    .text-color {
    font-weight: 600;
    font-size: 16px;
    color: var(--header);
}

.program-details-wrapper .program-details-items .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.program-details-wrapper .program-details-items .details-content {
    margin-top: 40px;
}
.program-details-wrapper .program-details-items .details-content .post {
    background-color: var(--theme-2);
    color: var(--white);
    padding: 4px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}
.program-details-wrapper .program-details-items .details-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .program-details-wrapper .program-details-items .details-content h2 {
        font-size: 26px;
    }
}
@media (max-width: 575px) {
    .program-details-wrapper .program-details-items .details-content h2 {
        font-size: 24px;
    }
}
.program-details-wrapper
    .program-details-items
    .details-content
    .details-author-area {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-bottom: 40px;
    margin-top: 30px;
}
@media (max-width: 575px) {
    .program-details-wrapper
        .program-details-items
        .details-content
        .details-author-area {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}
.program-details-wrapper
    .program-details-items
    .details-content
    .details-author-area
    .author-items {
    display: flex;
    align-items: center;
    gap: 10px;
}
.program-details-wrapper
    .program-details-items
    .details-content
    .details-author-area
    .class-list {
    display: flex;
    align-items: center;
    gap: 30px;
}
.program-details-wrapper
    .program-details-items
    .details-content
    .details-author-area
    .class-list
    li
    i {
    color: var(--theme-2);
}
.program-details-wrapper .program-details-items .details-content .list-items {
    margin-top: 20px;
}
.program-details-wrapper
    .program-details-items
    .details-content
    .list-items
    li:not(:last-child) {
    margin-bottom: 10px;
}
.program-details-wrapper
    .program-details-items
    .details-content
    .list-items
    li
    i {
    margin-right: 5px;
    color: var(--theme);
}
.program-details-wrapper .details-list-area {
    padding: 30px 40px;
    border-radius: 10px;
    position: relative;
    z-index: 9;
    border: 1px solid var(--border);
}
@media (max-width: 1199px) {
    .program-details-wrapper .details-list-area {
        padding: 30px 20px;
    }
}
@media (max-width: 991px) {
    .program-details-wrapper .details-list-area {
        padding: 30px 40px;
    }
}
.program-details-wrapper .details-list-area h3 {
    font-size: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}
@media (max-width: 1199px) {
    .program-details-wrapper .details-list-area {
        margin-right: 0;
    }
}
@media (max-width: 991px) {
    .program-details-wrapper .details-list-area {
        margin-top: 0;
    }
}
.program-details-wrapper .details-list-area .details-list {
    margin-bottom: 30px;
}
.program-details-wrapper .details-list-area .details-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.program-details-wrapper .details-list-area .details-list li span {
    font-weight: 600 !important;
    color: var(--header);
}
.program-details-wrapper .details-list-area .details-list li span i {
    color: var(--theme-2);
}
.program-details-wrapper .details-list-area .theme-btn {
    padding: 24px 40px;
}
@media (max-width: 1199px) {
    .program-details-wrapper .details-list-area .theme-btn {
        padding: 19px 25px;
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .program-details-wrapper .details-list-area .theme-btn {
        padding: 19px 40px;
        font-size: 16px;
    }
}
.program-details-wrapper .details-list-area .theme-btn.border-style {
    border: 1px solid var(--theme-2);
    color: var(--theme-2);
    background-color: transparent;
    padding: 24px 40px;
}
.program-details-wrapper .details-list-area .theme-btn.border-style::after,
.program-details-wrapper .details-list-area .theme-btn.border-style::before {
    background-color: var(--theme-2);
}
.program-details-wrapper .details-list-area .theme-btn.border-style:hover {
    color: var(--white);
}
.program-details-wrapper .details-list-area .social-icon {
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.program-details-wrapper .details-list-area .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    display: block;
    color: var(--theme-2);
    transition: all 0.4s ease-in-out;
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--theme-2);
    border-radius: 8px;
}
.program-details-wrapper .details-list-area .social-icon a:hover {
    background-color: var(--theme-2);
    color: var(--white);
    border: 1px solid transparent;
}
.program-details-wrapper .program-author-items {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 23px;
}
@media (max-width: 1199px) {
    .program-details-wrapper .program-author-items {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}
.program-details-wrapper .program-author-items .thumb {
    max-width: 370px;
}
.program-details-wrapper .program-author-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.program-details-wrapper .program-author-items .content {
    max-width: 700px;
}
@media (max-width: 1199px) {
    .program-details-wrapper .program-author-items .content {
        margin: 0 auto;
        text-align: center;
    }
}
.program-details-wrapper .program-author-items .content h2 {
    font-size: 30px;
    margin-bottom: 5px;
}
@media (max-width: 575px) {
    .program-details-wrapper .program-author-items .content h2 {
        font-size: 26px;
    }
}
.program-details-wrapper .program-author-items .content span {
    margin-bottom: 20px;
    display: inline-block;
}
@media (max-width: 575px) {
    .program-details-wrapper .program-author-items .content span {
        margin-bottom: 10px;
    }
}
.program-details-wrapper .program-author-items .content ul {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
@media (max-width: 1199px) {
    .program-details-wrapper .program-author-items .content ul {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
}
.program-details-wrapper .program-author-items .content ul li {
    color: var(--header);
}
.program-details-wrapper .program-author-items .content ul li i {
    margin-right: 5px;
}
.program-details-wrapper .program-author-items .content ul li .color-star {
    color: var(--theme-2);
}
.program-details-wrapper .program-author-items .content .social-icon {
    margin-top: 40px;
    gap: 15px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1199px) {
    .program-details-wrapper .program-author-items .content .social-icon {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 575px) {
    .program-details-wrapper .program-author-items .content .social-icon {
        margin-top: 20px;
    }
}
.program-details-wrapper .program-author-items .content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    display: block;
    color: var(--theme-2);
    transition: all 0.4s ease-in-out;
    text-align: center;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid var(--theme-2);
}
.program-details-wrapper .program-author-items .content .social-icon a:hover {
    background-color: var(--theme-2);
    color: var(--white);
    border: 1px solid transparent;
}

/* 02.7 Event */
.bt-event-details-area .bt-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-event-details-area .bt-event-details-wrapper .details-content {
    margin-top: 30px;
}
@media (max-width: 575px) {
    .bt-event-details-area .bt-event-details-wrapper .details-content {
        margin-top: 20px;
    }
}
.bt-event-details-area .bt-event-details-wrapper .details-content h2 {
    font-weight: 600;
    font-size: 36px;
}
@media (max-width: 767px) {
    .bt-event-details-area .bt-event-details-wrapper .details-content h2 {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .bt-event-details-area .bt-event-details-wrapper .details-content h2 {
        font-size: 26px;
    }
}
.bt-event-details-area .bt-event-details-wrapper .details-content .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.bt-event-details-area .bt-event-details-wrapper .details-content .offer-list {
    margin-top: 30px;
    margin-bottom: 30px;
}
.bt-event-details-area
    .bt-event-details-wrapper
    .details-content
    .offer-list
    li
    i {
    color: var(--theme);
    margin-right: 5px;
}
.bt-event-details-area
    .bt-event-details-wrapper
    .details-content
    .offer-list
    li:not(:last-child) {
    margin-bottom: 15px;
}
.bt-event-details-area .bt-event-details-wrapper .details-content .location {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}
.bt-event-details-area
    .bt-event-details-wrapper
    .details-content
    .location
    li
    i {
    color: var(--theme);
    margin-right: 5px;
}
.bt-event-details-area
    .bt-event-details-wrapper
    .details-content
    .location
    li
    a {
    color: var(--text);
}
.bt-event-details-area .bt-event-details-wrapper .details-content .map-items {
    margin-top: 40px;
}
.bt-event-details-area
    .bt-event-details-wrapper
    .details-content
    .map-items
    iframe {
    width: 100%;
    height: 450px;
}
.bt-event-details-area .event-details-information {
    background-color: #f2f4f7;
    padding: 40px 35px;
    border-radius: 18px;
    margin-top: 40px;
    margin-left: 30px;
}
@media (max-width: 1399px) {
    .bt-event-details-area .event-details-information {
        margin-left: 0;
    }
}
.bt-event-details-area .event-details-information .information-list {
    margin-top: 20px;
    margin-bottom: 30px;
}
.bt-event-details-area .event-details-information .information-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.bt-event-details-area .event-details-information .information-list li span {
    font-size: 16px;
    color: var(--text);
    font-weight: 400;
}
.bt-event-details-area .event-details-information .information-list li span i {
    margin-right: 10px;
}
.bt-event-details-area .event-details-information .information-list li .text {
    font-weight: 500;
    color: var(--header);
    text-align: right;
    display: inline-block;
}
.bt-event-details-area
    .event-details-information
    .information-list
    li
    .text.color-2 {
    color: var(--theme);
}
.bt-event-details-area
    .event-details-information
    .information-list
    li
    .text.color-3 {
    color: var(--theme);
}
.bt-event-details-area .event-details-information .theme-btn {
    width: 100%;
    background-color: var(--theme);
    color: var(--white);
    padding: 20px 30px;
    justify-content: center;
    border-radius: 30px;
}
.bt-event-details-area .event-details-information .theme-btn::before,
.bt-event-details-area .event-details-information .theme-btn::after {
    display: none;
}
.bt-event-details-area .event-details-information .theme-btn:hover {
    background-color: var(--header);
}
.bt-event-details-area .event-details-information .coming-soon-timer {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 650px;
    justify-content: center;
    margin: 30px auto;
}
@media (max-width: 1399px) {
    .bt-event-details-area .event-details-information .coming-soon-timer {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.bt-event-details-area
    .event-details-information
    .coming-soon-timer
    .timer-content
    h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--header);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--white);
    text-align: center;
}
.bt-event-details-area
    .event-details-information
    .coming-soon-timer
    .timer-content
    h3.bg-2
    span {
    background-color: #c3f499;
}
.bt-event-details-area
    .event-details-information
    .coming-soon-timer
    .timer-content
    h3.bg-3
    span {
    background-color: #00e2c5;
}
.bt-event-details-area
    .event-details-information
    .coming-soon-timer
    .timer-content
    h3.bg-4
    span {
    background-color: #66ffff;
}
.bt-event-details-area
    .event-details-information
    .coming-soon-timer
    .timer-content
    p {
    font-weight: 600;
    font-size: 18px;
    color: var(--header);
    margin-top: 10px;
    text-align: center;
}
.bt-event-details-area .event-details-information .share-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme);
    display: inline-block;
}
.bt-event-details-area .event-details-information .share-btn i {
    margin-right: 5px;
}

.bt-event-box-items-2 {
    margin-top: 30px;
    display: flex;
    align-items: center;
    border-radius: 18px;
    background-color: #f2f4f7;
}
@media (max-width: 1199px) {
    .bt-event-box-items-2 {
        display: block;
    }
}
.bt-event-box-items-2 .bt-image {
    max-width: 264px;
}
@media (max-width: 1199px) {
    .bt-event-box-items-2 .bt-image {
        max-width: initial;
    }
    .bt-event-box-items-2 .bt-image img {
        border-radius: 12px !important;
    }
}
.bt-event-box-items-2 .bt-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px 0px 0px 18px;
}
.bt-event-box-items-2 .bt-content {
    padding: 0 30px;
    flex-basis: 60%;
}
@media (max-width: 1199px) {
    .bt-event-box-items-2 .bt-content {
        padding: 25px;
    }
}
.bt-event-box-items-2 .bt-content h3 a:hover {
    color: var(--theme);
}
.bt-event-box-items-2 .bt-content .list-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}
.bt-event-box-items-2 .bt-content .list-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.bt-event-box-items-2 .bt-content .list-box li i {
    color: var(--theme-2);
}
.bt-event-box-items-2 .bt-content .theme-btn {
    background-color: transparent;
    color: var(--header);
    border-radius: 30px;
    border: 1px solid #6c706f;
    margin-top: 20px;
}
.bt-event-box-items-2 .bt-content .theme-btn i {
    background-color: var(--theme);
    color: var(--white);
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.bt-event-box-items-2 .bt-content .theme-btn::before {
    background-color: var(--theme);
}
.bt-event-box-items-2 .bt-content .theme-btn:hover {
    color: var(--white);
}
.bt-event-box-items-2 .bt-content .theme-btn:hover i {
    background-color: var(--white);
    color: var(--theme);
}

/* 02.8 Team */
.bt-team-box-items {
    margin-top: 30px;
}
.bt-team-box-items .bt-image {
    position: relative;
}
.bt-team-box-items .bt-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-team-box-items .bt-image .bt-content {
    position: absolute;
    border-radius: 10px;
    background: var(--white);
    padding: 17px 20px;
    bottom: 24px;
    left: 24px;
    right: 24px;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
    .bt-team-box-items .bt-image .bt-content {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }
}
.bt-team-box-items .bt-image .bt-content h4 a:hover {
    color: var(--theme);
}
.bt-team-box-items .bt-image .bt-content p {
    font-size: 16px;
    margin-top: 5px;
}
.bt-team-box-items .bt-image:hover .bt-content {
    opacity: 1;
    visibility: visible;
}

.bt-team-wrapper-3 .bt-team-image-items {
    margin-right: 50px;
}
@media (max-width: 1399px) {
    .bt-team-wrapper-3 .bt-team-image-items {
        margin-right: 0;
    }
}
.bt-team-wrapper-3 .bt-team-image-items .team-img {
    position: relative;
}
.bt-team-wrapper-3 .bt-team-image-items .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-team-wrapper-3 .bt-team-image-items .team-img .team-content {
    padding: 18px 24px;
    background-color: #fff;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border-radius: 10px;
}
.bt-team-wrapper-3 .bt-team-image-items .team-img .team-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}
.bt-team-wrapper-3 .bt-team-image-items .team-img .team-content h3 a:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, #144443 0%, #144443 100%);
}
.bt-team-wrapper-3 .bt-team-image-items .team-img .team-content .share-icon {
    position: absolute;
    right: 24px;
    bottom: 30px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #162726;
    background: #f2f4f7;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 3;
    border-radius: 50%;
    cursor: pointer;
}
.bt-team-wrapper-3
    .bt-team-image-items
    .team-img
    .team-content
    .share-icon:hover {
    background: var(--theme);
    color: var(--white);
}
.bt-team-wrapper-3 .bt-team-image-items .team-img .team-content .social-icon {
    position: absolute;
    right: 20px;
    bottom: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: transparent;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.bt-team-wrapper-3 .bt-team-image-items .team-img .team-content .social-icon a {
    position: relative;
    width: 44px;
    height: 44px;
    display: block;
    font-size: 16px;
    border-radius: 6px;
    line-height: 44px;
    text-align: center;
    color: var(--header);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    background: var(--white);
}
.bt-team-wrapper-3
    .bt-team-image-items
    .team-img
    .team-content
    .social-icon
    a:hover {
    background: var(--theme);
    color: var(--white);
}
.bt-team-wrapper-3
    .bt-team-image-items
    .team-img:hover
    .team-content
    .social-icon {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
.bt-team-wrapper-3 .bt-team-content {
    border-radius: 18px;
    background: #223635;
    padding: 35px;
    position: relative;
}
.bt-team-wrapper-3 .bt-team-content .array-button {
    display: grid;
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 999;
}
.bt-team-wrapper-3 .bt-team-content .array-button .array-prev,
.bt-team-wrapper-3 .bt-team-content .array-button .array-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: none;
}
.bt-team-wrapper-3 .bt-team-content .array-button .array-prev {
    background-color: var(--white);
    color: var(--theme-2);
}
.bt-team-wrapper-3 .bt-team-content .array-button .array-prev:hover {
    color: var(--white);
    background-color: var(--theme-2);
}
.bt-team-wrapper-3 .bt-team-content .array-button .array-next {
    color: var(--theme);
    background-color: var(--theme-2);
}
.bt-team-wrapper-3 .bt-team-content .array-button .array-next:hover {
    background-color: var(--white);
    color: var(--theme-2);
}
.bt-team-wrapper-3 .bt-team-content .team-text {
    margin-top: 15px;
    color: var(--white);
}
.bt-team-wrapper-3 .bt-team-content .bt-team-image {
    margin-top: 20px;
}
.bt-team-wrapper-3 .bt-team-content .bt-team-image .image {
    max-width: 223px;
    height: 193px;
}
@media (max-width: 1199px) {
    .bt-team-wrapper-3 .bt-team-content .bt-team-image .image {
        max-width: initial;
    }
}
.bt-team-wrapper-3 .bt-team-content .bt-team-image .image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.bt-team-section {
    position: relative;
}

.bt-team-details-wrapper .bt-team-details-left-image {
    margin-right: 90px;
}
@media (max-width: 1199px) {
    .bt-team-details-wrapper .bt-team-details-left-image {
        margin-right: 0;
    }
}
.bt-team-details-wrapper .bt-team-details-left-image .bt-image {
    position: relative;
}
.bt-team-details-wrapper .bt-team-details-left-image .bt-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-team-details-wrapper .bt-team-details-left-image .bt-image .text-team {
    font-size: 24px;
    font-weight: 600;
    color: var(--header);
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    padding: 22px 30px;
    background-color: var(--theme-2);
    border-radius: 10px;
    line-height: 1;
    display: inline-block;
    max-height: 410px;
    height: 100%;
    position: absolute;
    text-align: center;
    top: 50%;
    right: -40px;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
}
@media (max-width: 1199px) {
    .bt-team-details-wrapper .bt-team-details-left-image .bt-image .text-team {
        right: 0;
    }
}
.bt-team-details-wrapper .bt-team-details-right-content h4 {
    color: var(--theme);
    margin-bottom: 25px;
    margin-top: 15px;
}
.bt-team-details-wrapper .bt-team-details-right-content ul {
    margin-top: 20px;
}
.bt-team-details-wrapper .bt-team-details-right-content ul li i {
    margin-right: 10px;
    color: var(--theme-2);
}
.bt-team-details-wrapper .bt-team-details-right-content ul li:not(:last-child) {
    margin-bottom: 10px;
}
.bt-team-details-wrapper .bt-team-details-right-content .social-icon {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.bt-team-details-wrapper .bt-team-details-right-content .social-icon a {
    border-radius: 50px;
    background: var(--bg);
    padding: 12px;
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 25px;
    text-align: center;
}
.bt-team-details-wrapper .bt-team-details-right-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.bt-team-details-wrapper .bt-middle-content {
    margin-top: 60px;
}
@media (max-width: 767px) {
    .bt-team-details-wrapper .bt-middle-content {
        margin-top: 30px;
    }
}
.bt-team-details-wrapper .bt-middle-content h3 {
    font-size: 36px;
    margin-bottom: 15px;
}
.bt-team-details-wrapper .contact-content {
    margin-top: 100px;
    margin-right: 60px;
}
@media (max-width: 1199px) {
    .bt-team-details-wrapper .contact-content {
        margin-right: 0;
        margin-top: 60px;
    }
}
.bt-team-details-wrapper .contact-content .header h3 {
    font-size: 36px;
    margin-bottom: 10px;
}
.bt-team-details-wrapper .contact-content .contact-form-box {
    margin-top: 40px;
}
.bt-team-details-wrapper .contact-content .contact-form-box .form-clt input,
.bt-team-details-wrapper .contact-content .contact-form-box .form-clt textarea {
    border-radius: 6px;
    background: #f2f4f7;
    line-height: 1;
    padding: 20px 25px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text);
    border: none;
}
.bt-team-details-wrapper .contact-content .contact-form-box .form-clt textarea {
    padding-bottom: 110px;
}
.bt-team-details-wrapper .bt-pro-items {
    margin-top: 100px;
}
@media (max-width: 1199px) {
    .bt-team-details-wrapper .bt-pro-items {
        margin-top: 60px;
    }
}
.bt-team-details-wrapper .bt-pro-items .header h3 {
    font-size: 36px;
    margin-bottom: 20px;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap {
    margin-top: 30px;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items {
    width: 100%;
}
.bt-team-details-wrapper
    .bt-pro-items
    .progress-wrap
    .pro-items:not(:last-child) {
    margin-bottom: 40px;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.bt-team-details-wrapper
    .bt-pro-items
    .progress-wrap
    .pro-items
    .pro-head
    .title {
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
}
.bt-team-details-wrapper
    .bt-pro-items
    .progress-wrap
    .pro-items
    .pro-head
    .point {
    font-size: 16px;
    color: var(--header);
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .progress {
    background: rgba(6, 78, 164, 0.5);
    border-radius: 2px;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    display: flex;
    height: 10px;
    width: 100%;
}
.bt-team-details-wrapper
    .bt-pro-items
    .progress-wrap
    .pro-items
    .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 10px;
    width: 0;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards;
}
@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 90%;
    }
}
@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 70%;
    }
}
@keyframes load3 {
    0% {
        width: 0;
    }
    100% {
        width: 55%;
    }
}

.bt-team-section-3 {
    position: relative;
    margin-top: 40px;
    padding-bottom: 195px !important;
}
.bt-team-section-3 .line-top {
    position: absolute;
    top: -40px;
    left: 0;
    height: 92px;
}
.bt-team-section-3 .line-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
}

.team-box-items-4 {
    position: relative;
}
.team-box-items-4 .team-image {
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.team-box-items-4 .team-image::before {
    content: "";
    position: absolute;
    top: 70%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(3, 31, 66, 0.8);
    transform-origin: center;
    transition: all 300ms ease;
}
.team-box-items-4 .team-image img {
    width: 100%;
    height: 100%;
}
.team-box-items-4 .team-image .team-content {
    position: absolute;
    left: 40px;
    bottom: -40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.team-box-items-4 .team-image .team-content h3 {
    font-size: 26px;
    margin-bottom: 5px;
}
.team-box-items-4 .team-image .team-content h3 a {
    color: var(--white);
}
.team-box-items-4 .team-image .team-content p {
    color: var(--white);
}
.team-box-items-4 .team-image .social-profile {
    position: absolute;
    right: 20px;
    top: -120px;
    content: "";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
}
.team-box-items-4 .team-image .social-profile ul {
    transform: translateY(-100px);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.team-box-items-4 .team-image .social-profile ul li {
    margin-bottom: 10px;
}
.team-box-items-4 .team-image .social-profile ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    display: block;
    background: var(--white);
    color: var(--header);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
}
.team-box-items-4 .team-image .social-profile ul li a:hover {
    background: var(--theme);
}
.team-box-items-4 .team-image .social-profile .plus-btn {
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    background: var(--theme);
    color: var(--header);
    transition: all 0.4s ease-in-out;
    border-radius: 5px;
    margin-bottom: 10px;
}
.team-box-items-4 .team-image .social-profile .plus-btn:hover {
    background: var(--theme);
}
.team-box-items-4 .team-image .social-profile:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.team-box-items-4:hover .team-image::before {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.team-box-items-4:hover .team-image .team-content {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
}
.team-box-items-4:hover .team-image .social-profile {
    visibility: visible;
    opacity: 1;
    top: 20px;
}
.team-box-items-4.style-2 {
    margin-top: 30px;
}
.team-box-items-4.style-2 .team-image::before {
    display: none;
}
.team-box-items-4.style-2 .team-image img {
    border-radius: 7px;
}
.team-box-items-4.style-2 .team-image .social-profile {
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 1;
    visibility: visible;
}
.team-box-items-4.style-2 .team-image .social-profile ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--white);
    color: var(--header);
    border-radius: 50%;
}
.team-box-items-4.style-2 .team-image .social-profile ul li a:hover {
    background: var(--theme);
    color: var(--white);
}
.team-box-items-4.style-2 .team-image .social-profile .plus-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--white);
    color: var(--header);
    border-radius: 50%;
}
.team-box-items-4.style-2 .team-image .social-profile .plus-btn:hover {
    background: var(--theme);
    color: var(--white);
}
.team-box-items-4.style-2 .team-content {
    margin-top: 20px;
    text-align: center;
}
.team-box-items-4.style-2 .team-content h4 {
    font-size: 24px;
}
.team-box-items-4.style-2 .team-content h4 a:hover {
    color: var(--theme);
}

/* 02.9 Testimonial */
.section-title-area .bt-testimonial-author-items {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1199px) {
    .section-title-area .bt-testimonial-author-items {
        flex-wrap: wrap;
        gap: 15px;
    }
}
.section-title-area .bt-testimonial-author-items .bt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}
.section-title-area .bt-testimonial-author-items .bt-testimonial-author .icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    background-color: #f2f4f7;
    text-align: center;
    border-radius: 8px;
}

.bt-testimonial-box-items {
    border-radius: 18px;
    background: #f2f4f7;
    padding: 40px 36px;
    margin-top: 30px;
}
@media (max-width: 1399px) {
    .bt-testimonial-box-items {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .bt-testimonial-box-items {
        padding: 28px;
    }
}
@media (max-width: 575px) {
    .bt-testimonial-box-items {
        padding: 24px;
    }
}
.bt-testimonial-box-items h4 {
    font-size: 21px;
    font-weight: 400;
    color: #27282c;
    margin-top: 40px;
    line-height: 167%;
}
@media (max-width: 1399px) {
    .bt-testimonial-box-items h4 {
        font-size: 21px;
    }
}
@media (max-width: 767px) {
    .bt-testimonial-box-items h4 {
        font-size: 19px;
        margin-top: 25px;
    }
}
@media (max-width: 575px) {
    .bt-testimonial-box-items h4 {
        font-size: 17px;
    }
}
.bt-testimonial-box-items .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
@media (max-width: 575px) {
    .bt-testimonial-box-items .client-info {
        margin-top: 20px;
    }
}

.bt-testimonial-box-2 {
    border-radius: 18px;
    background: var(--white);
    padding: 50px 40px;
    margin-top: 30px;
    text-align: center;
}
.bt-testimonial-box-2 .star {
    color: rgb(236, 176, 20);
}
.bt-testimonial-box-2 h3 {
    font-weight: 400;
    font-family: "Open Sans";
    margin-top: 20px;
}

.testimonial-thumbs {
    max-width: 400px;
    overflow: hidden;
    margin-top: 30px;
}
.testimonial-thumbs .bt-info {
    text-align: center;
    width: 249px;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
    margin-left: -85px;
}
.testimonial-thumbs .swiper-slide.swiper-slide-active .bt-info {
    opacity: 1;
    visibility: visible;
}

.bt-testimonial-section-2 {
    position: relative;
    padding-bottom: 250px !important;
    margin-top: 40px;
    margin-bottom: -48px;
}
.bt-testimonial-section-2 .array-button {
    margin-top: -100px;
    justify-content: start;
}
@media (max-width: 1199px) {
    .bt-testimonial-section-2 {
        padding-bottom: 230px !important;
    }
}
@media (max-width: 991px) {
    .bt-testimonial-section-2 {
        padding-bottom: 210px !important;
    }
}
.bt-testimonial-section-2.style-inner {
    padding-bottom: 120px !important;
}
@media (max-width: 1199px) {
    .bt-testimonial-section-2.style-inner {
        padding-bottom: 100px !important;
    }
}
@media (max-width: 991px) {
    .bt-testimonial-section-2.style-inner {
        padding-bottom: 80px !important;
    }
}
.bt-testimonial-section-2 .line-top {
    position: absolute;
    top: -40px;
    left: 0;
    height: 92px;
}
.bt-testimonial-section-2 .line-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 138px;
}
.bt-testimonial-section-2 .testimonial-shape-1 {
    position: absolute;
    top: 5%;
    right: 5%;
}
.bt-testimonial-section-2 .testimonial-shape-2 {
    position: absolute;
    bottom: 15%;
    left: 5%;
}

/* 02.10 FAQ */
.bt-faq-wrapper-3 .bt-faq-images-items {
    position: relative;
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-counter-item {
    background-color: var(--theme-2);
    color: var(--header);
    border-radius: 10px;
    padding: 40px 50px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-counter-item h2 {
    color: var(--header);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 5px;
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    border: 10px solid var(--theme);
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-image-2 {
    margin-bottom: 30px;
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-image-3 img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-faq-wrapper-3 .faq-content {
    margin-left: 60px;
}
@media (max-width: 1399px) {
    .bt-faq-wrapper-3 .faq-content {
        margin-left: 30px;
    }
}
@media (max-width: 1199px) {
    .bt-faq-wrapper-3 .faq-content {
        margin-left: 0;
    }
}
.bt-faq-wrapper-3 .faq-content .accordion-item {
    border: 0;
    background-color: transparent;
    margin-bottom: 24px;
    margin-top: 25px;
}
.bt-faq-wrapper-3
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button {
    font-weight: 500;
    color: var(--white);
    border: 0;
    border-radius: 12px 12px 0px 0px;
    box-shadow: none;
    background-color: var(--header);
    padding: 16px 15px 16px 25px;
    text-transform: capitalize;
    font-size: 20px;
    background-color: var(--theme);
    border: none;
}
@media (max-width: 1199px) {
    .bt-faq-wrapper-3
        .faq-content
        .accordion-item
        .accordion-header
        .accordion-button {
        font-size: 18px;
    }
}
.bt-faq-wrapper-3
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button::after {
    content: "\f067";
    background: transparent;
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
    color: var(--white);
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    background-color: var(--header);
    border-radius: 50%;
}
.bt-faq-wrapper-3
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background: transparent;
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    transform: rotate(0);
    color: var(--theme);
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    background-color: var(--white);
    border-radius: 50%;
}
.bt-faq-wrapper-3
    .faq-content
    .accordion-item
    .accordion-header
    .accordion-button.collapsed {
    border-radius: 10px;
    border: none;
    background: transparent;
    padding: 16px 15px 16px 25px;
    color: var(--header);
    background-color: var(--white);
}
.bt-faq-wrapper-3
    .faq-content
    .accordion-item
    .accordion-collapse
    .accordion-body {
    padding-left: 30px;
    padding-top: 15px;
    color: var(--header);
    background-color: var(--white);
    border: none;
}
@media (max-width: 1399px) {
    .bt-faq-wrapper-3
        .faq-content
        .accordion-item
        .accordion-collapse
        .accordion-body {
        padding-right: 50px;
    }
}

.bt-faq-section-3 {
    position: relative;
    margin-top: 30px;
}
.bt-faq-section-3 .line-top {
    position: absolute;
    top: -30px;
    left: 0;
    height: 61px;
}

.faq-search-item {
    max-width: 936px;
    margin: 0 auto;
    position: relative;
}
.faq-search-item input {
    background-color: var(--white);
    line-height: 1;
    width: 100%;
    border: none;
    padding: 22px 30px;
    border-radius: 30px;
}
.faq-search-item button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.faq-search-text {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .faq-search-text {
        font-size: 38px;
    }
}
.faq-search-text span {
    color: var(--theme);
}

/* 02.11 CTA */
@media (max-width: 1199px) {
    .bt-cta-class-wrapper {
        padding: 80px 0;
    }
}
.bt-cta-class-wrapper .girl-image {
    margin-bottom: -5px;
}
@media (max-width: 1399px) {
    .bt-cta-class-wrapper .girl-image img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1199px) {
    .bt-cta-class-wrapper .girl-image {
        display: none;
    }
}
@media (max-width: 1899px) {
    .bt-cta-class-wrapper .girl-image.style-2 {
        margin-left: -100px;
    }
}
@media (max-width: 1600px) {
    .bt-cta-class-wrapper .girl-image.style-2 {
        margin-left: -150px;
    }
}
@media (max-width: 1399px) {
    .bt-cta-class-wrapper .girl-image.style-2 {
        margin-left: -75px;
    }
}
@media (max-width: 1399px) {
    .bt-cta-class-wrapper .content {
        margin-top: -30px;
    }
}
@media (max-width: 1399px) {
    .bt-cta-class-wrapper .content {
        margin-top: 0;
    }
}
.bt-cta-class-wrapper .content .theme-btn {
    background-color: var(--white);
    color: var(--header);
    margin-top: 50px;
}
.bt-cta-class-wrapper .content .theme-btn i {
    background-color: var(--theme-2);
    color: var(--theme);
}
.bt-cta-class-wrapper .content .theme-btn::before {
    background-color: var(--theme-2);
}
.bt-cta-class-wrapper .content .theme-btn:hover {
    color: var(--header);
}
.bt-cta-class-wrapper .content .theme-btn:hover i {
    background-color: var(--theme);
    color: var(--white);
}

.bt-cta-clases-section {
    position: relative;
    margin-top: 170px;
}
@media (max-width: 1399px) {
    .bt-cta-clases-section {
        margin-top: 140px;
    }
}
@media (max-width: 1199px) {
    .bt-cta-clases-section {
        margin-top: 120px;
    }
}
@media (max-width: 991px) {
    .bt-cta-clases-section {
        margin-top: 100px;
    }
}
.bt-cta-clases-section .line-top {
    position: absolute;
    top: -145px;
    left: 0;
    height: 145px;
}

.bt-cta-new-wrapper {
    padding: 120px 30px;
    text-align: center;
    border-radius: 30px;
    overflow: hidden;
}
@media (max-width: 1199px) {
    .bt-cta-new-wrapper {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px) {
    .bt-cta-new-wrapper {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
.bt-cta-new-wrapper h2 {
    font-size: 70px;
    font-weight: 700;
    max-width: 936px;
    margin: 0 auto;
}
@media (max-width: 1199px) {
    .bt-cta-new-wrapper h2 {
        font-size: 58px;
    }
}
@media (max-width: 767px) {
    .bt-cta-new-wrapper h2 {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .bt-cta-new-wrapper h2 {
        font-size: 38px;
    }
}
@media (max-width: 470px) {
    .bt-cta-new-wrapper h2 {
        font-size: 32px;
    }
}
.bt-cta-new-wrapper form {
    max-width: 650px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    margin-top: 50px;
}
@media (max-width: 1199px) {
    .bt-cta-new-wrapper form {
        margin-top: 30px;
    }
}
.bt-cta-new-wrapper form .theme-btn {
    display: inline-block;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 6px;
    padding: 19px 20px;
    position: absolute;
    top: 6px;
    right: 8px;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
}
.bt-cta-new-wrapper form input {
    width: 100%;
    outline: none;
    border-radius: 10px;
    background-color: var(--white);
    font-size: 15px;
    padding: 24px 20px;
    line-height: 1;
    color: var(--header);
    border: none;
}
.bt-cta-new-wrapper form input::placeholder {
    color: var(--header);
}

.bt-cta-new-wrapper {
    position: relative;
    z-index: 9;
}
.bt-cta-new-wrapper .bt-cta-shape-1 {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
}
@media (max-width: 1199px) {
    .bt-cta-new-wrapper .bt-cta-shape-1 {
        display: none;
    }
}
.bt-cta-new-wrapper .bt-cta-shape-2 {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 30px;
}
@media (max-width: 1199px) {
    .bt-cta-new-wrapper .bt-cta-shape-2 {
        display: none;
    }
}
.bt-cta-new-wrapper .bt-cta-shape-3 {
    position: absolute;
    z-index: -1;
    bottom: 22%;
    right: 10%;
}
@media (max-width: 1199px) {
    .bt-cta-new-wrapper .bt-cta-shape-3 {
        display: none;
    }
}

/* 02.12 Project */
.bt-project-wrapper-2 .nav {
    border-radius: 30px;
    border: 1px solid rgba(108, 112, 111, 0.5);
    background: transparent;
    display: flex;
    align-items: center;
    max-width: 805px;
    margin: 30px auto 30px;
}
@media (max-width: 1199px) {
    .bt-project-wrapper-2 .nav {
        flex-wrap: wrap;
        border: none;
        padding: 20px;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}
.bt-project-wrapper-2 .nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: var(--white);
    padding: 20px 32px;
    line-height: 1;
    text-align: center;
}
@media (max-width: 1199px) {
    .bt-project-wrapper-2 .nav .nav-item .nav-link {
        border: 1px solid rgba(108, 112, 111, 0.5);
        border-radius: 30px;
    }
}
.bt-project-wrapper-2 .nav .nav-item .nav-link.active {
    background-color: var(--theme-2);
    border-radius: 30px;
    color: var(--header);
}
.bt-project-wrapper-2 .bt-project-long-image {
    position: relative;
    margin-top: 30px;
    z-index: 9;
}
.bt-project-wrapper-2 .bt-project-long-image .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--theme-2);
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    color: var(--theme);
    opacity: 0;
    visibility: hidden;
}
.bt-project-wrapper-2 .bt-project-long-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-project-wrapper-2 .bt-project-long-image::before {
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background: linear-gradient(180deg, rgba(20, 21, 25, 0) 0%, #141519 100%);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    border-radius: 18px;
}
.bt-project-wrapper-2 .bt-project-long-image .bt-project-content-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.bt-project-wrapper-2
    .bt-project-long-image
    .bt-project-content-items
    .bt-content
    h3
    a {
    color: var(--white);
}
.bt-project-wrapper-2 .bt-project-long-image:hover::before {
    opacity: 1;
    visibility: visible;
}
.bt-project-wrapper-2 .bt-project-long-image:hover .circle-icon {
    opacity: 1;
    visibility: visible;
}
.bt-project-wrapper-2 .bt-project-long-image:hover .bt-project-content-items {
    opacity: 1;
    visibility: visible;
}
.bt-project-wrapper-2 .bt-project-image {
    position: relative;
    margin-top: 30px;
    z-index: 9;
    height: 380px;
}
@media (max-width: 1399px) {
    .bt-project-wrapper-2 .bt-project-image {
        height: 295px;
    }
}
.bt-project-wrapper-2 .bt-project-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}
.bt-project-wrapper-2 .bt-project-image .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--theme-2);
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    color: var(--theme);
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 1399px) {
    .bt-project-wrapper-2 .bt-project-image .circle-icon {
        top: 30%;
    }
}
.bt-project-wrapper-2 .bt-project-image::before {
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background: linear-gradient(180deg, rgba(20, 21, 25, 0) 0%, #141519 100%);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    border-radius: 18px;
}
.bt-project-wrapper-2 .bt-project-image .bt-project-content-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.bt-project-wrapper-2
    .bt-project-image
    .bt-project-content-items
    .bt-content
    h3
    a {
    color: var(--white);
}
.bt-project-wrapper-2
    .bt-project-image
    .bt-project-content-items
    .circle-shape {
    background-color: var(--white);
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
}
.bt-project-wrapper-2
    .bt-project-image
    .bt-project-content-items
    .circle-shape
    i {
    color: var(--theme);
}
.bt-project-wrapper-2 .bt-project-image:hover::before {
    opacity: 1;
    visibility: visible;
}
.bt-project-wrapper-2 .bt-project-image:hover .bt-project-content-items {
    opacity: 1;
    visibility: visible;
}
.bt-project-wrapper-2 .bt-project-image:hover .circle-icon {
    opacity: 1;
    visibility: visible;
}

.bt-project-section-2 {
    position: relative;
    margin-top: 15px;
    padding-bottom: 260px !important;
    margin-bottom: -40px;
    padding-top: 120px !important;
}
@media (max-width: 1600px) {
    .bt-project-section-2 {
        padding-top: 120px !important;
    }
}
@media (max-width: 1199px) {
    .bt-project-section-2 {
        padding-top: 120px !important;
        padding-bottom: 240px !important;
    }
}
@media (max-width: 991px) {
    .bt-project-section-2 {
        padding-top: 100px !important;
        padding-bottom: 220px !important;
    }
}
.bt-project-section-2 .line-top {
    position: absolute;
    top: -40px;
    left: 0;
    height: 92px;
}
@media (max-width: 991px) {
    .bt-project-section-2 .line-top {
        top: -13px;
    }
}
.bt-project-section-2 .line-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 138px;
}

/* 02.13 Helping */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme);
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ml-50 {
    margin-left: 50px;
}
@media (max-width: 1199px) {
    .ml-50 {
        margin-left: 0;
    }
}

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

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

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

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

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

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

.array-button {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.array-button .array-prev,
.array-button .array-next {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--header);
    color: var(--header);
    transition: all 0.4s ease-in-out;
}
.array-button .array-prev:hover,
.array-button .array-next:hover {
    background-color: var(--theme-2);
    border: 1px solid var(--theme-2);
    color: var(--header);
}

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

.swiper-dot-3 {
    margin-top: 50px;
    z-index: 1;
}
.swiper-dot-3 .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    transition: 0.6s;
    background: var(--header);
    opacity: 1;
    border-radius: 10px;
}
.swiper-dot-3 .swiper-pagination-bullet:not(:last-child) {
    margin-right: 20px;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgb(40, 44, 50);
    transition: 0.6s;
    position: relative;
}
.swiper-dot-3
    .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 14px;
    height: 14px;
    line-height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--theme);
    content: "";
}

.swiper-dot4 {
    text-align: center;
}
.swiper-dot4 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: 0.6s;
    background-color: var(--theme);
    opacity: 0.25;
    border-radius: 100%;
    position: relative;
}
.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: 0.6s;
    position: relative;
    width: 35px;
    height: 10px;
    border-radius: 30px;
    opacity: 1;
}

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

.footer-bg {
    background-color: #141519;
}

.footer-bg-2 {
    background-color: #f0f4f5;
}

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

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

/* 02.14 News */
.bt-news-box-items {
    margin-bottom: 3px;
}
.bt-news-box-items .bt-image {
    position: relative;
}
.bt-news-box-items .bt-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-news-box-items .bt-image .post-box {
    border-radius: 30px;
    background: var(--theme-2);
    padding: 12px 20px;
    color: var(--header);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 14px;
    font-weight: 400;
}
.bt-news-box-items .bt-content {
    margin-top: 25px;
}
.bt-news-box-items .bt-content .list-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1199px) {
    .bt-news-box-items .bt-content .list-box {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.bt-news-box-items .bt-content .list-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.bt-news-box-items .bt-content .list-box li i {
    color: var(--theme);
}
.bt-news-box-items .bt-content h3 {
    margin-top: 10px;
}
.bt-news-box-items .bt-content h3 a:hover {
    color: var(--theme-2);
}
.bt-news-box-items .bt-content .theme-btn {
    background-color: var(--white);
    color: var(--header);
    border-radius: 30px;
    border: 1px solid #6c706f;
    margin-top: 30px;
    background: transparent;
}
.bt-news-box-items .bt-content .theme-btn i {
    background-color: var(--theme);
    color: var(--white);
}
.bt-news-box-items .bt-content .theme-btn::before {
    background-color: var(--theme);
}
.bt-news-box-items .bt-content .theme-btn:hover {
    color: var(--white);
}
.bt-news-box-items .bt-content .theme-btn:hover i {
    background-color: var(--theme-2);
    color: var(--theme);
}
.bt-news-box-items.style-2 {
    border-radius: 18px;
    background: #f2f4f7;
    padding: 20px;
    margin-top: 30px;
}

.bt-news-content {
    margin-left: 50px;
}
@media (max-width: 1199px) {
    .bt-news-content {
        margin-left: 0;
    }
}
.bt-news-content .news-text {
    margin-top: 25px;
}

.news-left-items {
    margin-top: 30px;
    background: var(--bg);
    padding: 20px 20px 40px 20px;
    border-radius: 18px;
}
.news-left-items .news-left-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.news-left-items .news-left-content {
    margin-top: 30px;
}
.news-left-items .news-left-content .list-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.news-left-items .news-left-content .list-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.news-left-items .news-left-content .list-box li i {
    color: var(--theme);
}
.news-left-items .news-left-content h4 a:hover {
    color: var(--theme);
}
.news-left-items .news-left-content .theme-btn {
    background-color: transparent;
    color: var(--header);
    border-radius: 30px;
    border: 1px solid #6c706f;
    margin-top: 25px;
    background: transparent;
}
.news-left-items .news-left-content .theme-btn i {
    background-color: var(--theme-2);
    color: var(--header);
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.news-left-items .news-left-content .theme-btn::before {
    background-color: var(--theme);
}
.news-left-items .news-left-content .theme-btn:hover {
    color: var(--white);
}
.news-left-items .news-left-content .theme-btn:hover i {
    background-color: var(--white);
    color: var(--theme);
}

.news-post-items {
    margin-top: 30px;
}
.news-post-items li {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #f2f4f7;
    border-radius: 18px;
}
@media (max-width: 1399px) {
    .news-post-items li {
        gap: 15px;
    }
}
@media (max-width: 1199px) {
    .news-post-items li {
        display: block;
    }
}
.news-post-items li .post-img {
    padding: 10px;
}
@media (max-width: 1399px) {
    .news-post-items li .post-img {
        max-width: 219px;
    }
}
@media (max-width: 1199px) {
    .news-post-items li .post-img {
        max-width: initial;
    }
}
.news-post-items li .post-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
@media (max-width: 1199px) {
    .news-post-items li .post-content {
        padding: 25px;
    }
}
.news-post-items li .list-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1399px) {
    .news-post-items li .list-box {
        gap: 10px;
        font-size: 14px;
    }
}
.news-post-items li .list-box .list-items {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
@media (max-width: 1399px) {
    .news-post-items li .list-box .list-items {
        gap: 10px;
        font-size: 14px;
    }
}
.news-post-items li .list-box .list-items i {
    color: var(--theme);
}
.news-post-items li h4 {
    font-size: 22px;
    font-weight: 600;
}
@media (max-width: 1399px) {
    .news-post-items li h4 {
        font-size: 15px;
        line-height: 140%;
        margin-top: 5px !important;
    }
}
.news-post-items li h4 a:hover {
    color: var(--theme);
}
.news-post-items li .theme-btn {
    background-color: transparent;
    color: var(--header);
    border-radius: 30px;
    border: 1px solid #6c706f;
    margin-top: 25px;
}
@media (max-width: 1399px) {
    .news-post-items li .theme-btn {
        margin-top: 15px;
    }
}
@media (max-width: 1399px) {
    .news-post-items li .theme-btn {
        margin-top: 20px;
    }
}
.news-post-items li .theme-btn i {
    background-color: var(--theme-2);
    color: var(--header);
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.news-post-items li .theme-btn::before {
    background-color: var(--theme);
}
.news-post-items li .theme-btn:hover {
    color: var(--white);
}
.news-post-items li .theme-btn:hover i {
    background-color: var(--white);
    color: var(--theme);
}
.news-post-items li:not(:last-child) {
    margin-bottom: 25px;
}
@media (max-width: 1399px) {
    .news-post-items li:not(:last-child) {
        margin-bottom: 18px;
    }
}

.bt-news-section1 {
    position: relative;
}

.bt-news-grid-wrapper .bt-news-grid-content .bt-news-grid-items {
    margin-bottom: 40px;
}
.bt-news-grid-wrapper
    .bt-news-grid-content
    .bt-news-grid-items
    .bt-grid-image
    img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-news-grid-wrapper
    .bt-news-grid-content
    .bt-news-grid-items
    .bt-grid-content {
    margin-top: 30px;
}
.bt-news-grid-wrapper
    .bt-news-grid-content
    .bt-news-grid-items
    .bt-grid-content
    .post-box {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1199px) {
    .bt-news-grid-wrapper
        .bt-news-grid-content
        .bt-news-grid-items
        .bt-grid-content
        .post-box {
        flex-wrap: wrap;
        gap: 15px;
    }
}
.bt-news-grid-wrapper
    .bt-news-grid-content
    .bt-news-grid-items
    .bt-grid-content
    .post-box
    li
    i {
    margin-right: 6px;
    color: var(--theme);
}
.bt-news-grid-wrapper
    .bt-news-grid-content
    .bt-news-grid-items
    .bt-grid-content
    h3 {
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .bt-news-grid-wrapper
        .bt-news-grid-content
        .bt-news-grid-items
        .bt-grid-content
        h3 {
        font-size: 29px;
    }
}
@media (max-width: 470px) {
    .bt-news-grid-wrapper
        .bt-news-grid-content
        .bt-news-grid-items
        .bt-grid-content
        h3 {
        font-size: 26px;
    }
}
.bt-news-grid-wrapper
    .bt-news-grid-content
    .bt-news-grid-items
    .bt-grid-content
    h3
    a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}
.bt-news-grid-wrapper
    .bt-news-grid-content
    .bt-news-grid-items
    .bt-grid-content
    h3
    a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(
        180deg,
        var(--theme) 0%,
        var(--theme) 100%
    );
}
.bt-news-grid-wrapper
    .bt-news-grid-content
    .bt-news-grid-items
    .bt-grid-content
    .theme-btn {
    margin-top: 30px;
}
.bt-news-grid-wrapper .main-sideber .single-sideber-widget {
    margin-bottom: 40px;
    background-color: var(--bg);
    padding: 30px;
    border-radius: 18px;
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .bt-search-widget
    form {
    width: 100%;
    position: relative;
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .bt-search-widget
    form
    input {
    background-color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 20px;
    width: 100%;
    border: none;
    color: var(--text);
    border-radius: 8px;
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .bt-search-widget
    form
    button {
    position: absolute;
    right: -2px;
    top: 0;
    width: 66px;
    border-radius: 8px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .bt-search-widget
    form
    button:hover {
    background-color: var(--header);
}
.bt-news-grid-wrapper .main-sideber .single-sideber-widget .widget-title {
    margin-bottom: 30px;
}
.bt-news-grid-wrapper .main-sideber .single-sideber-widget .category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    padding: 18px 22px;
    font-family: "Poppins", sans-serif;
    line-height: 1;
    border-radius: 8px;
}
.bt-news-grid-wrapper .main-sideber .single-sideber-widget .category-list li a {
    color: var(--header);
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li:not(:last-child) {
    margin-bottom: 20px;
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li
    span {
    font-weight: 400;
    font-size: 16px;
    color: var(--theme);
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li:hover {
    background-color: var(--theme);
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li:hover
    a {
    color: var(--white);
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li:hover
    span {
    color: var(--white);
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1199px) {
    .bt-news-grid-wrapper
        .main-sideber
        .single-sideber-widget
        .recent-post-area
        .recent-items {
        flex-wrap: wrap;
    }
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items:not(:last-child) {
    margin-bottom: 20px;
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items
    .recent-thumb
    img {
    border-radius: 10px;
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items
    .recent-content
    h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items
    .recent-content
    h5
    a:hover {
    color: var(--theme);
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items
    .recent-content
    ul
    li {
    color: var(--theme);
    font-weight: 400;
    font-size: 18px;
}
.bt-news-grid-wrapper .main-sideber .single-sideber-widget .tagcloud a {
    display: inline-block;
    padding: 12px 20px;
    line-height: 1;
    font-weight: 400;
    background: var(--white);
    margin-right: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
    border-radius: 6px;
}
.bt-news-grid-wrapper
    .main-sideber
    .single-sideber-widget
    .tagcloud
    a:last-child {
    margin-right: 0;
}
.bt-news-grid-wrapper .main-sideber .single-sideber-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.bt-iamge img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.bt-news-details-wrapper {
    margin-top: 40px;
}
.bt-news-details-wrapper .bt-left-content .text {
    margin-top: 20px;
}
.bt-news-details-wrapper .bt-left-content .quote-items {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}
@media (max-width: 1199px) {
    .bt-news-details-wrapper .bt-left-content .quote-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.bt-news-details-wrapper .bt-left-content .bt-image {
    margin-top: 30px;
}
.bt-news-details-wrapper .bt-left-content .bt-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap {
    margin-top: 80px;
}
@media (max-width: 767px) {
    .bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap {
        margin-top: 30px;
    }
}
.bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 24px;
    line-height: 1;
    background: var(--bg);
    margin-right: 8px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease-in-out;
    border-radius: 40px;
}
@media (max-width: 1399px) {
    .bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .tagcloud a {
        padding: 10px 18px;
        font-size: 16px;
    }
}
@media (max-width: 1199px) {
    .bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .tagcloud a {
        margin-bottom: 15px;
    }
}
.bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-tag-share-wrap
    .bt-social-share
    a {
    font-size: 16px;
    color: var(--white);
    display: inline-block;
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 100%;
    text-align: center;
    background-color: var(--header);
}
@media (max-width: 1399px) {
    .bt-news-details-wrapper
        .bt-left-content
        .bt-tag-share-wrap
        .bt-social-share
        a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-tag-share-wrap
    .bt-social-share
    a:not(:last-child) {
    margin-right: 10px;
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-tag-share-wrap
    .bt-social-share
    a:hover {
    background-color: var(--theme);
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area {
    margin-top: 40px;
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-comments-area
    .bt-blog-single-comment {
    border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}
@media (max-width: 575px) {
    .bt-news-details-wrapper
        .bt-left-content
        .bt-comments-area
        .bt-blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-comments-area
    .bt-blog-single-comment.bt-style-2 {
    margin-left: 150px;
}
@media (max-width: 1199px) {
    .bt-news-details-wrapper
        .bt-left-content
        .bt-comments-area
        .bt-blog-single-comment.bt-style-2 {
        margin-left: 0;
    }
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-comments-area
    .bt-blog-single-comment
    .bt-content
    .head
    .con
    h5 {
    margin-bottom: 5px;
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-comments-area
    .bt-blog-single-comment
    .bt-content
    .head
    .con
    span {
    font-size: 18px;
    font-weight: 400;
    color: var(--header);
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-comments-area
    .bt-blog-single-comment
    .bt-content
    p {
    color: var(--header);
    font-size: 20px;
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-comments-area
    .bt-blog-single-comment
    .bt-content
    .reply {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-2);
    transition: all 0.4s ease-in-out;
    text-decoration: underline;
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-comments-area
    .bt-blog-single-comment
    .bt-content
    .reply
    i {
    margin-left: 8px;
    transform: rotate(-45deg);
}
.bt-news-details-wrapper
    .bt-left-content
    .bt-comments-area
    .bt-blog-single-comment
    .bt-content
    .reply:hover {
    color: var(--header);
}
.bt-news-details-wrapper .bt-left-content .comment-form-wrap h2 {
    margin-bottom: 10px;
}
.bt-news-details-wrapper .bt-left-content .comment-form-wrap p {
    margin-bottom: 20px;
}
.bt-news-details-wrapper .bt-left-content .comment-form-wrap .form-clt input,
.bt-news-details-wrapper
    .bt-left-content
    .comment-form-wrap
    .form-clt
    textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--bg);
    padding-bottom: 20px;
    padding: 16px 20px;
    transition: all 0.4s ease-in-out;
    color: #333;
    font-size: 16px;
}
.bt-news-details-wrapper
    .bt-left-content
    .comment-form-wrap
    .form-clt
    input::placeholder,
.bt-news-details-wrapper
    .bt-left-content
    .comment-form-wrap
    .form-clt
    textarea::placeholder {
    color: #333;
}
.bt-news-details-wrapper
    .bt-left-content
    .comment-form-wrap
    .form-clt
    textarea {
    padding-bottom: 150px;
    resize: none;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget {
    margin-bottom: 40px;
    background-color: var(--bg);
    padding: 30px;
    border-radius: 18px;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .bt-search-widget
    form {
    width: 100%;
    position: relative;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .bt-search-widget
    form
    input {
    background-color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 20px;
    width: 100%;
    border: none;
    color: var(--text);
    border-radius: 8px;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .bt-search-widget
    form
    button {
    position: absolute;
    right: -2px;
    top: 0;
    width: 66px;
    border-radius: 8px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .bt-search-widget
    form
    button:hover {
    background-color: var(--header);
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .widget-title {
    border-bottom: 1.5px solid rgba(129, 129, 129, 0.24);
    padding-bottom: 16px;
    margin-bottom: 30px;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    padding: 18px 22px;
    font-family: "Poppins", sans-serif;
    line-height: 1;
    border-radius: 8px;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li
    a {
    color: var(--header);
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li:not(:last-child) {
    margin-bottom: 20px;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li
    span {
    font-weight: 400;
    font-size: 16px;
    color: var(--theme);
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li:hover {
    background-color: var(--theme);
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li:hover
    a {
    color: var(--white);
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .category-list
    li:hover
    span {
    color: var(--white);
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1199px) {
    .bt-news-details-wrapper
        .main-sideber
        .single-sideber-widget
        .recent-post-area
        .recent-items {
        flex-wrap: wrap;
    }
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items:not(:last-child) {
    margin-bottom: 20px;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items
    .recent-thumb
    img {
    border-radius: 10px;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items
    .recent-content
    h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items
    .recent-content
    h5
    a:hover {
    color: var(--theme);
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .recent-post-area
    .recent-items
    .recent-content
    ul
    li {
    color: var(--theme-2);
    font-weight: 400;
    font-size: 18px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .tagcloud a {
    display: inline-block;
    padding: 12px 20px;
    line-height: 1;
    font-weight: 400;
    background: var(--white);
    margin-right: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
    border-radius: 6px;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .tagcloud
    a:last-child {
    margin-right: 0;
}
.bt-news-details-wrapper
    .main-sideber
    .single-sideber-widget
    .tagcloud
    a:hover {
    background-color: var(--theme);
    color: var(--white);
}

/* 02.15 Contact */
.contact-wrapper .bt-contact-content .contact-text {
    margin-top: 25px;
}
.contact-wrapper .bt-contact-content ul {
    margin-top: 30px;
}
.contact-wrapper .bt-contact-content ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-wrapper .bt-contact-content ul li .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--theme-2);
    color: var(--header);
    font-size: 24px;
    border-radius: 6px;
}
.contact-wrapper .bt-contact-content ul li .content h5 {
    font-size: 18px;
    margin-bottom: 5px;
}
.contact-wrapper .bt-contact-content ul li .content a {
    color: var(--text);
}
.contact-wrapper .bt-contact-content ul li:not(:last-child) {
    margin-bottom: 30px;
}
.contact-wrapper .bt-contact-items .contact-form-box {
    margin-top: 20px;
    background-color: #f2f4f7;
    padding: 40px;
    border-radius: 18px;
}
.contact-wrapper .bt-contact-items .contact-form-box .form-clt input,
.contact-wrapper .bt-contact-items .contact-form-box .form-clt textarea {
    border-radius: 8px;
    border: none;
    background: var(--white);
    line-height: 1;
    padding: 20px 25px;
    width: 100%;
    /*text-transform: capitalize;*/
    color: var(--text);
}
.contact-wrapper .bt-contact-items .contact-form-box .form-clt textarea {
    padding-bottom: 110px;
}

.map-area iframe {
    height: 700px;
    width: 100%;
}
@media (max-width: 991px) {
    .map-area iframe {
        height: 650px;
    }
}
@media (max-width: 767px) {
    .map-area iframe {
        height: 530px;
    }
}
@media (max-width: 575px) {
    .map-area iframe {
        height: 430px;
    }
}

/* 02.16 Section (Common Section Title/Spacing) */
.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}
.section-title h6 {
    color: var(--theme);
    border-radius: 30px;
    background: rgba(0, 79, 68, 0.1);
    padding: 10px 24px;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    line-height: 1;
    margin-bottom: 20px;
}
.section-title h6.style-2 {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}
@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .section-title-area {
        margin-bottom: 0;
    }
}
.section-title-area .section-title {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.section-title-area p {
    max-width: 532px;
}
.section-title-area .nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1199px) {
    .section-title-area .nav {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.section-title-area .nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #6c706f;
}
.section-title-area .nav .nav-item .nav-link.active {
    color: var(--header);
}

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

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

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

.section-bg-3 {
    background: #162726;
}

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

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

/* 02.17 MeanMenu (Mobile Menu) */
.mean-container a.meanmenu-reveal {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 02.18 Footer */
.bt-footer-wrapper {
    padding: 50px 0 80px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1199px) {
    .bt-footer-wrapper {
        padding: 70px 0 100px;
    }
}
@media (max-width: 991px) {
    .bt-footer-wrapper {
        padding: 50px 0 80px;
    }
}
.bt-footer-wrapper .bt-footer-widget-items {
    margin-top: 30px;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-widget-head {
    margin-bottom: 30px;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-widget-head h3 {
    color: var(--white);
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .footer-input
    input {
    border: none;
    background-color: var(--white);
    padding: 20px 22px;
    border-radius: 6px;
    width: 100%;
    line-height: 1;
    outline: none;
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .footer-input
    .theme-btn {
    padding: 21px 22px;
    border-radius: 6px;
    width: 100%;
    margin-top: 16px;
    background-color: var(--theme-2);
    color: var(--header);
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .footer-input
    .theme-btn::before {
    background-color: var(--white);
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .footer-input
    .theme-btn:hover {
    color: var(--header);
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .payment-save {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .payment-save
    input {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
    color: var(--white);
    background-color: transparent;
    padding-top: 0;
    margin-top: 0;
    outline: none;
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .payment-save
    label {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--text);
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .payment-save
    label
    span {
    text-decoration: underline;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .bt-footer-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 44px;
}
@media (max-width: 767px) {
    .bt-footer-wrapper
        .bt-footer-widget-items
        .bt-footer-content
        .bt-footer-btn {
        flex-wrap: wrap;
    }
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .bt-footer-btn
    .footer-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid transparent;
    background-color: var(--theme);
    font-family: "Poppins", sans-serif;
    padding: 18px 20px;
    border-radius: 39px;
    line-height: 1;
}
@media (max-width: 1600px) {
    .bt-footer-wrapper
        .bt-footer-widget-items
        .bt-footer-content
        .bt-footer-btn
        .footer-btn {
        font-size: 13px;
        padding: 16px 14px;
    }
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .bt-footer-btn
    .footer-btn
    i {
    margin-right: 8px;
    font-size: 18px;
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .bt-footer-btn
    .footer-btn:hover {
    background-color: var(--theme-2);
    color: var(--header);
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .bt-footer-btn
    .footer-btn.style-2 {
    border: 1px solid var(--white);
    background-color: transparent;
    color: var(--white);
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-footer-content
    .bt-footer-btn
    .footer-btn.style-2:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li {
    font-size: 16px;
    font-weight: 400;
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li:not(:last-child) {
    margin-bottom: 10px;
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li a {
    padding-left: 20px;
    position: relative;
    color: #27282c;
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li a::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background-color: #27282c;
    transition: all 0.4s ease-in-out;
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li a:hover {
    color: var(--theme);
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li a:hover::before {
    background-color: var(--theme);
}
.bt-footer-wrapper .bt-footer-widget-items .contact-info li {
    font-size: 16px;
    font-weight: 400;
    color: #27282c;
}
.bt-footer-wrapper .bt-footer-widget-items .contact-info li:not(:last-child) {
    margin-bottom: 10px;
}
.bt-footer-wrapper .bt-footer-widget-items .contact-info li a {
    color: #27282c;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.bt-footer-wrapper
    .bt-footer-widget-items
    .bt-contact-list
    li:not(:last-child) {
    margin-bottom: 28px;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .icon {
    max-width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    width: 100%;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content p {
    color: var(--white);
    margin-bottom: 5px;
}
@media (max-width: 1399px) {
    .bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content p {
        font-size: 14px;
    }
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content h4 {
    color: var(--white);
}
@media (max-width: 1399px) {
    .bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content h4 {
        font-size: 16px;
    }
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content h4 a {
    color: var(--white);
}
.bt-footer-wrapper.style-2 {
    padding: 70px 0 85px;
}
@media (max-width: 1199px) {
    .bt-footer-wrapper.style-2 {
        padding: 70px 0 100px;
    }
}
@media (max-width: 991px) {
    .bt-footer-wrapper.style-2 {
        padding: 50px 0 60px;
    }
}
.bt-footer-wrapper.style-2 .bt-footer-widget-items .bt-widget-head h3 {
    color: var(--header);
}
.bt-footer-wrapper.style-2
    .bt-footer-widget-items
    .bt-footer-content
    .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
.bt-footer-wrapper.style-2
    .bt-footer-widget-items
    .bt-footer-content
    .social-icon
    a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.8);
    text-align: center;
    color: var(--header);
    opacity: 0.8;
}
.bt-footer-wrapper.style-2
    .bt-footer-widget-items
    .bt-footer-content
    .social-icon
    a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
    opacity: 1;
}
.bt-footer-wrapper.style-2 .bt-footer-widget-items .list-items li a {
    color: var(--text);
}
.bt-footer-wrapper.style-2 .bt-footer-widget-items .list-items li a:hover {
    color: var(--theme);
}
.bt-footer-wrapper.style-new-3 .bt-footer-content p {
    color: #f0f4f5 !important;
}
.bt-footer-wrapper.style-new-3 .list-items li a {
    color: #f0f4f5 !important;
}
.bt-footer-wrapper.style-new-3 .list-items li a::before {
    background-color: #f0f4f5 !important;
    transition: all 0.4s ease-in-out;
}
.bt-footer-wrapper.style-new-3 .list-items li a:hover {
    color: var(--theme-2) !important;
}
.bt-footer-wrapper.style-new-3 .list-items li a:hover::before {
    background-color: var(--theme-2) !important;
}

.bt-footer-section {
    position: relative;
}
.bt-footer-section.style-contact-page {
    margin-top: 0;
}
.bt-footer-section.style-contact-page .bt-footer-wrapper {
    padding: 90px 0 120px;
}
@media (max-width: 1199px) {
    .bt-footer-section.style-contact-page .bt-footer-wrapper {
        padding: 70px 0 10px;
    }
}
@media (max-width: 991px) {
    .bt-footer-section.style-contact-page .bt-footer-wrapper {
        padding: 50px 0 80px;
    }
}
@media (max-width: 1899px) {
    .bt-footer-section.style-contact-page .bt-footer-bg-1 {
        display: none;
    }
}
.bt-footer-section.style-contact-page .bt-footer-bg-1::before {
    top: 0;
}
@media (max-width: 1899px) {
    .bt-footer-section .bt-footer-bg-1 {
        display: none;
    }
}
.bt-footer-section .bt-footer-bg-1::before {
    position: absolute;
    top: 32px;
    bottom: 0;
    left: 12%;
    height: 100%;
    content: "";
    background: #27282c;
    width: 442px;
    height: initial;
}
@media (max-width: 1600px) {
    .bt-footer-section .bt-footer-bg-1::before {
        left: 0;
    }
}

.bt-footer-bottom p {
    color: #fff !important;
}
.bt-footer-bottom .text-color {
    color: #141519 !important;
}
.bt-footer-bottom .text-color-2 {
    color: #27282c !important;
}
.bt-footer-bottom.style-3 {
    background-color: transparent;
    padding: 0;
}
.bt-footer-bottom.style-3 .bt-footer-bottom-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 18px 0;
}
.bt-footer-bottom .bt-footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .bt-footer-bottom .bt-footer-bottom-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }
}
.bt-footer-bottom .bt-footer-bottom-wrapper p {
    font-size: 18px;
    color: var(--white);
}
.bt-footer-bottom .bt-footer-bottom-wrapper .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bt-footer-bottom .bt-footer-bottom-wrapper .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    color: var(--white);
    opacity: 0.8;
}
.bt-footer-bottom .bt-footer-bottom-wrapper .social-icon a:hover {
    background-color: var(--theme-2);
    color: var(--header);
    border: 1px solid var(--theme);
    opacity: 1;
}

.bt-footer-section {
    position: relative;
    margin-top: -30px;
}
.bt-footer-section.style-3 {
    margin-top: -30px;
}
.bt-footer-section .line-top {
    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    height: 60px;
}

.footer-name {
    margin-bottom: -62px;
}
@media (max-width: 1199px) {
    .footer-name {
        margin-bottom: 0;
    }
}
.footer-name h2 {
    color: var(--theme);
    text-align: center;
    font-size: 450px;
    font-weight: 700;
    letter-spacing: -17.5px;
    line-height: 1;
}

/* Rich footer */
.footer-rich {
    margin-top: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 167, 41, 0.14), transparent 28%),
        linear-gradient(135deg, #202a50 0%, #111831 100%);
    color: rgba(255, 255, 255, 0.75);
}
.footer-rich__main {
    padding: 76px 0 34px;
}
.footer-rich__brand img {
    width: min(100%, 255px);
    height: auto;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
}
.footer-rich__brand > p {
    max-width: 390px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}
.footer-rich__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.footer-rich__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
}
.footer-rich__actions .footer-rich__primary-link {
    border-color: var(--theme-2);
    background: var(--theme-2);
    color: #141519;
}
.footer-rich__actions a:hover {
    border-color: #fff;
    background: #fff;
    color: var(--theme);
}
.footer-rich__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 26px;
}
.footer-rich__socials a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}
.footer-rich__socials a:hover {
    color: var(--theme-2);
}
.footer-rich__widget h3,
.footer-rich__resources h3 {
    margin-bottom: 24px;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}
.footer-rich__widget h3::after,
.footer-rich__resources h3::after {
    display: block;
    width: 36px;
    height: 2px;
    margin-top: 10px;
    background: var(--theme-2);
    content: "";
}
.footer-rich__widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-rich__widget li:not(:last-child) {
    margin-bottom: 11px;
}
.footer-rich__widget li a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}
.footer-rich__widget li a:hover,
.footer-rich__contact a:hover,
.footer-rich__resource-links a:hover,
.footer-rich__bottom a:hover {
    color: var(--theme-2);
}
.footer-rich__contact address {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 1.65;
}
.footer-rich__contact address span {
    display: block;
    color: #fff;
    font-weight: 600;
}
.footer-rich__contact address a,
.footer-rich__contact dd a {
    color: rgba(255, 255, 255, 0.72);
}
.footer-rich__contact dl,
.footer-rich__contact dd {
    margin: 0;
}
.footer-rich__contact dl > div:not(:last-child) {
    margin-bottom: 16px;
}
.footer-rich__contact dt {
    margin-bottom: 2px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.footer-rich__contact dd {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}
.footer-rich__resources {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 28px;
    margin-top: 55px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.footer-rich__resources h3 {
    margin: 0;
}
.footer-rich__resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}
.footer-rich__resource-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
}
.footer-rich__resources--external {
    margin-top: 26px;
}
.footer-rich__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.12);
}
.footer-rich__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
}
.footer-rich__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 14px;
}
.footer-rich__bottom-inner > div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-rich__bottom a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}
@media (max-width: 991px) {
    .footer-rich__main {
        padding-top: 58px;
    }
    .footer-rich__resources {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 42px;
    }
}
@media (max-width: 575px) {
    .footer-rich__main {
        padding-top: 48px;
    }
    .footer-rich__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 1600px) {
    .footer-name h2 {
        letter-spacing: 2px;
    }
}
@media (max-width: 1600px) {
    .footer-name h2 {
        font-size: 400px;
    }
}
@media (max-width: 1399px) {
    .footer-name h2 {
        font-size: 320px;
    }
}
@media (max-width: 1199px) {
    .footer-name h2 {
        font-size: 280px;
    }
}
@media (max-width: 991px) {
    .footer-name h2 {
        font-size: 190px;
    }
}
@media (max-width: 767px) {
    .footer-name h2 {
        font-size: 140px;
    }
}
@media (max-width: 575px) {
    .footer-name h2 {
        font-size: 80px;
        margin-top: 20px;
    }
}

.bt-footer-bottom-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(108, 112, 111, 0.3);
    padding: 20px 0;
}
@media (max-width: 991px) {
    .bt-footer-bottom-wrapper-2 {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
}
.bt-footer-bottom-wrapper-2 .footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.bt-footer-bottom-wrapper-2 .footer-menu a:hover {
    color: var(--theme);
}
@media (max-width: 575px) {
    .bt-footer-bottom-wrapper-2 .footer-menu {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}

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

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

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

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}
/*img-animation**********************/
.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
        0.4s;
    opacity: 0;
}

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

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

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

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

@keyframes moving {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translateX(-50px);
    }
    50% {
        transform: translatey(-40px);
    }
    100% {
        transform: translatey(0px);
    }
}
@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}
@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}
@keyframes arryLeftRight {
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(10px);
    }
}
.animation__arryLeftRight {
    animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }
    to {
        -webkit-mask-position: -50%;
    }
}
.animation-infinite {
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
}

@keyframes ShapeAnim {
    0% {
        background-position: top left;
    }
    100% {
        background-position: top left 3000px;
    }
}
@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
} /*# sourceMappingURL=main.css.map */
