@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&display=swap');

:root {
    /**
     @Font-Family Declaration
   */
    --tj-ff-body: "Poppins", sans-serif;
    --tj-ff-heading: "Poppins", sans-serif;
    --tj-ff-fontawesome: "Font Awesome 6 Pro";
    /**
     @Font-weight Declaration
   */
    --tj-fw-normal: normal;
    --tj-fw-thin: 100;
    --tj-fw-elight: 200;
    --tj-fw-light: 300;
    --tj-fw-regular: 400;
    --tj-fw-medium: 500;
    --tj-fw-sbold: 600;
    --tj-fw-bold: 700;
    --tj-fw-ebold: 800;
    --tj-fw-black: 900;
    /**
     @Font-Size Declaration
   */
    --tj-fs-body: 14px;
    --tj-fs-p: 16px;
    --tj-fs-h1: 74px;
    --tj-fs-h2: 48px;
    --tj-fs-h3: 32px;
    --tj-fs-h4: 24px;
    --tj-fs-h5: 20px;
    --tj-fs-h6: 18px;
    /**
     @Color Declaration
   */
    --tj-color-common-white: #ffffff;
    --tj-color-common-black: #2B2B2B;
    --tj-color-heading-primary: #0c1e21;
    --tj-color-text-body: #364e52;
    --tj-color-text-body-2: #606060;
    --tj-color-text-body-3: #67787a;
    --tj-color-text-body-4: #18292c;
    --tj-color-text-body-5: rgba(255, 255, 255, 0.8);
    --tj-color-theme-primary: #0079AF;
    --tj-color-theme-bg: #0079AF;
    --tj-color-theme-bg-2: #cee0e0;
    --tj-color-theme-bg-3: #EAEAEA;
    --tj-color-theme-dark: #0c1e21;
    --tj-color-theme-dark-2: #18292c;
    --tj-color-theme-dark-3: #364e52;
    --tj-color-theme-dark-4: #67787a;
    --tj-color-theme-dark-5: #676e7a;
    --tj-color-red-1: #ff0000;
    --tj-color-grey-1: #ecf0f0;
    --tj-color-grey-2: #a9b8b8;
    --tj-color-grey-3: rgba(255, 255, 255, 0.1019607843);
    --tj-color-border-1: #c9d1d1;
    --tj-color-border-2: #313d3d;
    --tj-color-border-3: rgba(255, 255, 255, 0.1490196078);
    --tj-color-border-4: rgba(255, 255, 255, 0.2);
    --tj-color-border-5: rgba(30, 138, 138, 0.1490196078);
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.site-main {
    position: relative;
}

body {
    font-family: var(--tj-ff-body);
    font-size: var(--tj-fs-body);
    font-weight: normal;
    color: var(--tj-color-text-body);
    background-color: var(--tj-color-common-white);
    line-height: 1.5;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
svg path,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tj-ff-heading);
    color: var(--tj-color-heading-primary);
    margin-top: 0px;
    font-weight: var(--tj-fw-medium);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h1 {
    font-size: var(--tj-fs-h1);
    line-height: 1.108;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    h1 {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    h1 {
        font-size: 45px;
    }
}

h2 {
    font-size: var(--tj-fs-h2);
    line-height: 1.125;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}

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

h3 {
    font-size: var(--tj-fs-h3);
    line-height: 1.25;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    h3 {
        font-size: 25px;
    }
}

h4 {
    font-size: var(--tj-fs-h4);
    line-height: 1.333;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 22px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: var(--tj-fs-h5);
    line-height: 1.4;
}

h6 {
    font-size: var(--tj-fs-h6);
    line-height: 1.444;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
svg path,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:focus,
button:focus,
button:focus-visible {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a,
button {
    color: var(--tj-color-theme-primary);
    outline: none;
    border: none;
    background: transparent;
    padding: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

select,
.nice-select,
input[type=search],
input[type=tel],
input[type=text],
input[type=email],
input[type=url],
textarea {
    outline: none;
    background-color: var(--tj-color-common-white);
    height: auto;
    width: 100%;
    font-size: var(--tj-fs-body);
    border: 1px solid var(--tj-color-border-1);
    color: var(--tj-color-text-body);
    padding: 10px 15px;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--tj-color-theme-primary) var(--tj-color-common-white);
}

::-webkit-scrollbar {
    height: 4px;
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--tj-color-theme-primary);
    -webkit-border-radius: 1ex;
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

*::-moz-selection {
    background: var(--tj-color-common-black);
    color: var(--tj-color-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--tj-color-common-black);
    color: var(--tj-color-common-white);
    text-shadow: none;
}

::selection {
    background: var(--tj-color-common-black);
    color: var(--tj-color-common-white);
    text-shadow: none;
}

*::-webkit-input-placeholder {
    color: var(--tj-color-text-body);
    font-size: var(--tj-fs-body);
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

*::-moz-placeholder {
    color: var(--tj-color-text-body);
    font-size: var(--tj-fs-body);
    opacity: 1;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

*:-ms-input-placeholder {
    color: var(--tj-color-text-body);
    font-size: var(--tj-fs-body);
    opacity: 1;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

*::-ms-input-placeholder {
    color: var(--tj-color-text-body);
    font-size: var(--tj-fs-body);
    opacity: 1;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

*::placeholder {
    color: var(--tj-color-text-body);
    font-size: var(--tj-fs-body);
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/**
 	Common Classes CSS
*/
table {
    border-collapse: separate;
    border-spacing: 0;
}

img {
    max-width: 100%;
}

.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.section-gap {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-gap {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-gap {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.section-gap-2 {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-gap-2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-gap-2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.gap-top,
.section-top-gap {
    padding-top: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .gap-top,
    .section-top-gap {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .gap-top,
    .section-top-gap {
        padding-top: 70px;
    }
}

.gap-bottom,
.section-bottom-gap {
    padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .gap-bottom,
    .section-bottom-gap {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .gap-bottom,
    .section-bottom-gap {
        padding-bottom: 70px;
    }
}

.section-gap-x {
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .section-gap-x {
        -webkit-margin-start: 12px;
        margin-inline-start: 12px;
        -webkit-margin-end: 12px;
        margin-inline-end: 12px;
    }
}

.section-separator {
    border-top: 1px dashed var(--tj-color-border-1);
}

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

.rg-30 {
    row-gap: 30px;
}

.rg-40 {
    row-gap: 40px;
}

.rg-50 {
    row-gap: 50px;
}

.rg-60 {
    row-gap: 60px;
}

.rg-70 {
    row-gap: 70px;
}

.rg-80 {
    row-gap: 80px;
}

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

.mb-30 {
    margin-bottom: 30px;
}

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

.mb-40 {
    margin-bottom: 40px;
}

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

.mb-50 {
    margin-bottom: 50px;
}

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

.mb-60 {
    margin-bottom: 60px;
}

.gap-15 {
    --bs-gutter-x: 15px;
    padding: 0 15px;
}

.gap-15 .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
}

.space-for-header {
    padding-top: 105px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .space-for-header {
        padding-top: 95px;
    }
}

.top-space-15 {
    padding-top: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .top-space-15 {
        padding-top: 12px;
    }
}

.top-space-65 {
    padding-top: 65px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .top-space-65 {
        padding-top: 94px;
    }
}

.gap-30 {
    --bs-gutter-x: 30px;
}

.gap-30 .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.gap-0 {
    --bs-gutter-x: 0;
}

.gap-0 .row {
    --bs-gutter-x: 0;
}

.wow {
    visibility: visible;
}

.container-end-align {
    -webkit-margin-start: calc((100% - 1320px) / 2);
    margin-inline-start: calc((100% - 1320px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
    -webkit-padding-end: 0;
    padding-inline-end: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .container-end-align {
        -webkit-margin-start: calc((100% - 1140px) / 2);
        margin-inline-start: calc((100% - 1140px) / 2);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .container-end-align {
        -webkit-margin-start: calc((100% - 960px) / 2);
        margin-inline-start: calc((100% - 960px) / 2);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .container-end-align {
        -webkit-margin-start: calc((100% - 720px) / 2);
        margin-inline-start: calc((100% - 720px) / 2);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .container-end-align {
        -webkit-margin-start: calc((100% - 540px) / 2);
        margin-inline-start: calc((100% - 540px) / 2);
    }
}

@media (max-width: 575px) {
    .container-end-align {
        -webkit-margin-start: 0;
        margin-inline-start: 0;
        -webkit-padding-end: 12px;
        padding-inline-end: 12px;
    }
}

.vbox-grab .vbox-child {
    background-color: transparent !important;
}

.vbox-grab .vbox-child img {
    border-radius: 12px;
}

#smooth-content {
    padding-bottom: 15px;
    will-change: transform;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    #smooth-content {
        padding-bottom: 0;
    }
}

.tj-sticky-panel,
.tj-sticky-panel-2,
.tj-sticky-panel-3,
.slidebar-stickiy {
    will-change: transform;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    [data-speed=".8"] {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
}

.tj-scroll-btn {
    cursor: pointer;
}



/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area {
    background-color: var(--tj-color-common-white);
    border-end-start-radius: 12px;
    border-end-end-radius: 12px;
    position: relative;
    z-index: 99;
}

.header-area.header-1.header-absolute {
    top: 0;
    position: absolute;
    inset-inline-start: 0;
    width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-area.header-1.header-absolute {
        width: calc(100% - 24px);
    }
}

.header-area.header-1 .header-wrapper {
    padding: 0 27px 0 23px;
    background-color: var(--tj-color-common-white);
}

.header-area.header-2.header-absolute {
    position: absolute;
    top: 30px;
    inset-inline-start: 15px;
    width: calc(100% - 60px);
    z-index: 999;
    background-color: transparent;
    border-radius: 0;
}

.header-area.header-2.header-absolute>.container-fluid {
    --bs-gutter-x: 0;
}

.header-area.header-2.header-absolute>.container-fluid>.row {
    --bs-gutter-x: 0;
}

.header-area.header-2.header-absolute .header-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0 20px;
    border-radius: 14px;
}

.header-area.header-2.header-absolute .search_popup {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.header-area.header-2.header-absolute .search_popup .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.header-area.header-2.header-absolute .search_popup .search-box input[type=text] {
    background-color: var(--tj-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-area.header-2.header-absolute {
        top: 24px;
        inset-inline-start: 12px;
        width: calc(100% - 48px);
    }
}

.header-area.header-2.header-sticky .header-wrapper {
    padding: 0 8px;
}

.header-area.header-3.header-absolute {
    background-color: transparent;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: calc(100% - 30px);
    z-index: 999;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-area.header-3.header-absolute {
        width: calc(100% - 24px);
    }
}

.header-area.header-3 .header-wrapper {
    padding: 0 12px;
    border-start-start-radius: 12px;
    border-start-end-radius: 12px;
}

.header-area.header-duplicate {
    position: fixed;
    width: calc(100% - 0px);
    top: 0;
    inset-inline-start: 0;
    border-bottom: none;
    z-index: 1002;
    background-color: var(--tj-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-area.header-duplicate {
        width: 100%;
    }

    .header-area.header-duplicate.section-gap-x {
        -webkit-margin-start: 0;
        margin-inline-start: 0;
        -webkit-margin-end: 0;
        margin-inline-end: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .header-area.header-3 .header-wrapper,
    .header-area.header-1 .header-wrapper {
        padding: 0 27px 0 23px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .header-area.header-3 .header-wrapper,
    .header-area.header-1 .header-wrapper {
        padding: 0 4px;
    }

    .header-area.header-2.header-absolute .header-wrapper {
        padding: 0 16px;
    }

    .header-area.header-2.header-sticky .header-wrapper {
        padding: 0 4px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .header-area.header-3 .header-wrapper,
    .header-area.header-1 .header-wrapper {
        padding: 15px 15px;
    }

    .header-area.header-2.header-absolute .header-wrapper {
        padding: 15px 12px;
    }

    .header-area.header-2.header-sticky .header-wrapper {
        padding: 15px 0;
    }
}

.header-top {
    background-color: var(--tj-color-theme-primary);
    border-end-start-radius: 12px;
    border-end-end-radius: 12px;
    padding: 0 12px;
    margin-bottom: 15px;
}

.header-top-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-top-content .topbar-text {
    color: var(--tj-color-common-white);
    padding: 13px 0;
    margin: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.header-top-content .topbar-text i {
    color: var(--tj-color-common-white);
    font-size: 20px;
}

.header-top-content .topbar-text a {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-sbold);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.header-top-content .topbar-text a::after {
    content: "\e913";
    font-size: 21px;
    line-height: 1.2;
    font-family: "bexon-icons" !important;
    font-weight: normal;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--tj-color-common-white);
}

.header-top-content .topbar-text a:hover {
    opacity: 0.7;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top-content .topbar-text {
        font-size: 15px;
    }

    .header-top-content .topbar-text i {
        font-size: 18px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-top-content .topbar-text {
        font-size: 15px;
        padding: 10px 0;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .header-top-content .topbar-text i {
        font-size: 18px;
    }
}

.header-top-content .header-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-top-content .header-info .info-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 0 15px;
    -webkit-border-start: 1px dashed rgba(255, 255, 255, 0.15);
    border-inline-start: 1px dashed rgba(255, 255, 255, 0.15);
}

.header-top-content .header-info .info-item:last-child {
    -webkit-padding-end: 0;
    padding-inline-end: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-top-content .header-info .info-item:last-child {
        display: none;
    }
}

.header-top-content .header-info .info-item span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    color: var(--tj-color-common-white);
}

.header-top-content .header-info .info-item a {
    color: var(--tj-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-top-content .header-info .info-item {
        border: 0;
        padding: 0 10px 10px 10px;
    }
}

.header-top-content .header-info .social-links ul li a {
    width: 22px;
    height: 22px;
    font-size: 14px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-top-content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-top {
        padding: 0 8px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-top {
        padding: 0px;
    }
}

.header-bottom {
    border-bottom: 1px dashed #c9d1d1;
}

.header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 99;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .header-wrapper {
        padding: 15px 0;
    }
}

.site-logo .logo {
    display: inline-block;

    width: 100%;
}

.menu-area {
    gap: 25px;
}

.mainmenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mainmenu ul>li {
    position: relative;
    z-index: 1;
}

.mainmenu ul>li>a {
    position: relative;
    font-size: var(--tj-fs-body);
    color: #707070;
    display: block;
    padding: 29px 0;
    font-weight: var(--tj-fw-normal);
    line-height: 1;
}

.mainmenu ul>li.menu-item-has-children>a,
.mainmenu ul>li.has-dropdown>a {
    -webkit-padding-end: 20px;
    padding-inline-end: 20px;
}

.mainmenu ul>li.menu-item-has-children>a::after,
.mainmenu ul>li.has-dropdown>a::after {
    content: "\e929";
    font-family: "bexon-icons";
    color: inherit;
    font-size: 12px;
    position: absolute;
    top: 32px;
    inset-inline-end: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.mainmenu ul>li.menu-item-has-children>a::after,
.mainmenu ul>li.has-dropdown>a::after {
    transition: transform 0.3s ease;
}

/* rotate when open (onclick) */
.mainmenu ul>li.open.menu-item-has-children>a::after,
.mainmenu ul>li.open.has-dropdown>a::after {
    transform: rotate(-180deg);
}

.mainmenu ul>li.current-menu-ancestor>a,
.mainmenu ul>li.current-menu-item>a,
.mainmenu ul>li:hover>a {
    color: var(--tj-color-theme-primary);
}

.mainmenu ul>li.current-menu-ancestor>a::after,
.mainmenu ul>li.current-menu-item>a::after,
.mainmenu ul>li:hover>a::after {
    color: var(--tj-color-theme-primary);
}

.mainmenu ul>li.current-menu-ancestor>a::before,
.mainmenu ul>li.current-menu-item>a::before,
.mainmenu ul>li:hover>a::before {
    opacity: 1;
    visibility: visible;
}

.mainmenu ul>li>.sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    width: 220px;
    top: 100%;
    inset-inline-start: 0;
    z-index: 99;
    text-align: start;
    background-color: var(--tj-color-common-white);
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    gap: 0;
    padding: 10px 0;
    pointer-events: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mainmenu ul>li>.sub-menu>li {
    display: block;
    width: 100%;
}

.mainmenu ul>li>.sub-menu>li>a {
    position: relative;
    padding: 10px 20px;
    display: block;
    color: var(--tj-color-text-body);
}

.mainmenu ul>li>.sub-menu>li>a::before {
    display: none;
}

.mainmenu ul>li>.sub-menu>li:last-child {
    padding-bottom: 0;
}

.mainmenu ul>li>.sub-menu>li.menu-item-has-children>a::after,
.mainmenu ul>li>.sub-menu>li.has-dropdown>a::after {
    top: 13px;
    inset-inline-end: 15px;
    color: var(--tj-color-text-body);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a,
.mainmenu ul>li>.sub-menu>li:hover>a {
    color: var(--tj-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a::before,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a::before,
.mainmenu ul>li>.sub-menu>li:hover>a::before {
    opacity: 1;
    visibility: visible;
    width: 14px;
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a::after,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a::after,
.mainmenu ul>li>.sub-menu>li:hover>a::after {
    color: var(--tj-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li>.sub-menu {
    inset-inline-start: 100%;
    top: -10px;
}

.mainmenu ul>li>.sub-menu {
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    pointer-events: none;
    transition: all 0.5s ease;
}

.mainmenu ul>li.open>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    pointer-events: auto;
}

.menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
}

.menu li {
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mainmenu ul {
        gap: 0 22px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mainmenu ul {
        gap: 0 16px;
    }
}

.header-search {
    line-height: 1;
    position: relative;
}

.header-search .search {
    color: var(--tj-color-heading-primary);
    font-size: 20px;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--tj-color-grey-1);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-search .search:hover {
    transform: translateY(-2px);
}

.header-search .search i {
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-search .search {
        font-size: 18px;
        width: 44px;
        height: 44px;
    }
}

.header-search .search:hover i {
    -webkit-animation: gelatine 0.6s;
    animation: gelatine 0.6s;
}

.header-search .search.search-hide {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.header-search .search_close_btn {
    color: var(--tj-color-heading-primary);
    font-size: 20px;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--tj-color-grey-1);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    inset-inline-start: 0;
    top: 0;
}

.header-search .search_close_btn i {
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-search .search_close_btn {
        font-size: 18px;
        width: 44px;
        height: 44px;
    }
}

.header-search .search_close_btn.close-show {
    opacity: 1;
    visibility: visible;
}

.header-contact {
    font-size: 20px;
    line-height: 1;
    color: var(--tj-color-heading-primary);
    gap: 8px;
}

.header-contact .call-text {
    font-weight: var(--tj-fw-sbold);
    position: relative;
}

.header-contact .call-text::after {
    content: "";
    position: absolute;
    bottom: -1px;
    inset-inline-end: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
}

.header-contact:hover .call-text::after {
    -webkit-animation: linehover 0.8s linear;
    animation: linehover 0.8s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-contact {
        font-size: 18px;
    }
}

.header-right-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.header-right-item .tj-primary-btn .btn-icon {
    width: 38px;
    height: 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-right-item .tj-primary-btn .btn-icon {
        width: 35px;
        height: 35px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-right-item {
        gap: 12px;
    }
}

.menu_bar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    width: 25px;
    height: 25px;
    position: relative;
    top: 0;
    inset-inline-start: 0;
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.menu_bar span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--tj-color-common-black);
    border-radius: 10px;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.menu_bar span:last-child,
.menu_bar span:first-child {
    width: 25px;
}

.menu_bar.mobile_menu_bar {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: var(--tj-color-theme-primary);
    border-radius: 7px;
}

.menu_bar.mobile_menu_bar span {
    background-color: var(--tj-color-common-white);
}

.menu_bar:hover span {
    width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu_bar {
        -webkit-margin-start: 0;
        margin-inline-start: 0;
    }
}

.header-2.header-absolute .mainmenu>ul>li>a {
    color: var(--tj-color-common-white);
    padding-top: 32px;
    padding-bottom: 32px;
}

.header-2.header-absolute .mainmenu>ul>li.menu-item-has-children>a::after,
.header-2.header-absolute .mainmenu>ul>li.has-dropdown>a::after {
    color: currentColor;
    top: 35px;
}

.header-2.header-absolute .mainmenu>ul>li:hover>a,
.header-2.header-absolute .mainmenu>ul>li.current-menu-ancestor>a {
    color: var(--tj-color-text-body-2);
}

.header-2.header-absolute .mainmenu>ul>li:hover>a::after,
.header-2.header-absolute .mainmenu>ul>li.current-menu-ancestor>a::after {
    color: currentColor;
}

.header-2.header-absolute .menu_bar span {
    background-color: var(--tj-color-common-white);
}

.header-3.header-absolute .mainmenu>ul>li>a {
    padding-top: 32px;
    padding-bottom: 32px;
}

.header-3.header-absolute .mainmenu>ul>li.menu-item-has-children>a::after,
.header-3.header-absolute .mainmenu>ul>li.has-dropdown>a::after {
    color: currentColor;
    top: 35px;
}

/* !END: Theme Header CSS */

/**----------------------------------------
START: Theme Search CSS
----------------------------------------*/
.search_popup {
    position: absolute;
    top: 0%;
    inset-inline-start: 0;
    width: 100%;
    height: auto;
    background-color: var(--tj-color-common-white);
    padding: 24px 0;
    -webkit-transform: translateY(calc(-100% - 200px));
    -ms-transform: translateY(calc(-100% - 200px));
    transform: translateY(calc(-100% - 200px));
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    z-index: 999;
    border-radius: 12px;
}

.search-box.w-75 {
    width: 95% !important;
}

.search_popup .search_close {
    position: absolute;
    top: 36px;
    inset-inline-end: 36px;
}

.search_popup .search_close .search_close_btn {
    font-size: 24px;
    color: var(--tj-color-theme-dark);
}

.search_popup .search_close .search_close_btn svg {
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.search_popup .search_close .search_close_btn svg path {
    fill: var(--tj-color-theme-dark);
}

.search_popup .search_close .search_close_btn svg:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.search_popup .search_close .search_close_btn svg:hover path {
    fill: var(--tj-color-theme-primary);
}

.search_popup.search-opened {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.search_popup.search-opened .search_form .search_input {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.search_popup.search-opened .search_form .search_input::after {
    width: 100%;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.search_popup .logo {
    max-width: 150px;
    width: 100%;
    position: absolute;
    inset-inline-start: 36px;
    top: 36px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .search_popup {
        display: none;
    }
}

.tj_search_wrapper {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tj_search_wrapper .search_form {
    width: 100%;
}

.tj_search_wrapper .search_form form .search_input {
    position: relative;
    z-index: 1;
}

.tj_search_wrapper .search_form form .search_input .search-box {
    position: relative;
    z-index: 1;
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.tj_search_wrapper .search_form form .search_input .search-box input[type=text] {
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-family: var(--tj-ff-body);
    color: var(--tj-color-text-body);
    border-color: var(--tj-color-border-1);
    background: #e6f0ff;
    padding: 16px 90px 16px 24px;
    border-radius: 10px;
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder,
.tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-webkit-input-placeholder {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
.tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-moz-placeholder {
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder,
.tj_search_wrapper .search_form form .search_input .search-box input[type=text]:-ms-input-placeholder {
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-ms-input-placeholder {
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.tj_search_wrapper .search_form form .search_input .search-box input[type=text]::placeholder {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 16px;
    color: var(--tj-color-text-body);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder,
    .tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-webkit-input-placeholder {
        font-size: 16px;
    }

    .tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
    .tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-moz-placeholder {
        font-size: 16px;
    }

    .tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder,
    .tj_search_wrapper .search_form form .search_input .search-box input[type=text]:-ms-input-placeholder {
        font-size: 16px;
    }

    .tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
    .tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-ms-input-placeholder {
        font-size: 16px;
    }

    .tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
    .tj_search_wrapper .search_form form .search_input .search-box input[type=text]::placeholder {
        font-size: 16px;
    }
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.tj_search_wrapper .search_form form .search_input .search-box input[type=text]:focus {
    border-color: var(--tj-color-theme-primary);
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus+button,
.tj_search_wrapper .search_form form .search_input .search-box input[type=text]:focus+button {
    border-color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
    .tj_search_wrapper .search_form form .search_input .search-box input[type=text] {
        font-size: 16px;
    }
}

.tj_search_wrapper .search_form form .search_input .search-box button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 60px;
    font-size: 25px;
    color: var(--tj-color-theme-primary);
    width: 100%;
    height: 100%;
}

.tj_search_wrapper .search_form form .search_input .search-box button::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 10px;
    height: 30px;
    -webkit-border-start: 1px solid var(--tj-color-border-1);
    border-inline-start: 1px solid var(--tj-color-border-1);
}

.search-popup-overlay {
    position: fixed;
    inset-inline-start: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 30, 33, 0.01);
    z-index: 99;
    -webkit-transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(calc(-100% - 80px));
    transform: translateY(calc(-100% - 80px));
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.search-popup-overlay.search-popup-overlay-open {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* !END: Theme Search CSS */


/* !START: hamburger CSS */
.hamburger-area {
    position: fixed;
    inset-inline-end: -490px;
    top: 15px;
    width: 450px;
    height: calc(100% - 30px);
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    z-index: 9999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    border-radius: 12px;
}

.hamburger-area::-webkit-scrollbar {
    display: none;
}

.hamburger-area.opened {
    inset-inline-end: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .hamburger-area.opened {
        inset-inline-end: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .hamburger-area {
        top: 0;
        height: 100%;
        border-start-end-radius: 0;
        border-end-end-radius: 0;
    }
}

@media (max-width: 575px) {
    .hamburger-area {
        width: 320px;
    }
}

.hamburger_bg {
    background-color: var(--tj-color-common-white);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: -1;
    border-start-start-radius: 12px;
    border-end-start-radius: 12px;
}

.hamburger_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 40px;
    overflow: auto;
    height: 100%;
}

.hamburger_wrapper::before {
    content: "";
    position: absolute;
    top: 3%;
    inset-inline-end: 3%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--tj-color-theme-primary);
    -webkit-filter: blur(50px);
    filter: blur(50px);
    opacity: 0.26;
    z-index: -1;
    backdrop-filter: blur(10px);
}

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

.hamburger_top {
    margin-bottom: 30px;
}

.hamburger_close_btn {
    display: inline-block;
    font-size: 35px;
    line-height: 1;
    color: #707070;
}

@media (max-width: 575px) {
    .hamburger_close_btn {
        font-size: 30px;
    }
}

.hamburger_close_btn:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    color: var(--tj-color-theme-bg);
}

.hamburger_search {
    position: relative;
    margin-bottom: 30px;
}

.hamburger_search select,
.hamburger_search .nice-select,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.hamburger_search input {
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding: 0 40px 0 16px;
    background: var(--tj-color-common-white);
    border: none;
    outline: none;
    font-size: 18px;
    font-family: var(--tj-ff-body);
    color: var(--tj-color-text-body);
    border: 1px solid var(--tj-color-border-1);
    border-radius: 10px;
}

.hamburger_search select::-webkit-input-placeholder,
.hamburger_search .nice-select::-webkit-input-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder,
.hamburger_search input::-webkit-input-placeholder {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--tj-color-text-body);
}

.hamburger_search select::-moz-placeholder,
.hamburger_search .nice-select::-moz-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder,
.hamburger_search input::-moz-placeholder {
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--tj-color-text-body);
}

.hamburger_search select:-ms-input-placeholder,
.hamburger_search .nice-select:-ms-input-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder,
.hamburger_search input:-ms-input-placeholder {
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--tj-color-text-body);
}

.hamburger_search select::-ms-input-placeholder,
.hamburger_search .nice-select::-ms-input-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.hamburger_search input::-ms-input-placeholder {
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--tj-color-text-body);
}

.hamburger_search select::placeholder,
.hamburger_search .nice-select::placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.hamburger_search input::placeholder {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--tj-color-text-body);
}

.hamburger_search button {
    position: absolute;
    height: 58px;
    width: 58px;
    top: 50%;
    inset-inline-end: 0;
    font-size: 24px;
    color: var(--tj-color-theme-dark);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-start: 1px solid var(--tj-color-border-1);
    border-inline-start: 1px solid var(--tj-color-border-1);
}

.hamburger_menu .mean-container .mean-bar {
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.hamburger_menu .mean-container .mean-bar * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hamburger_menu .mean-nav {
    background: transparent;
    margin-top: 0;
    overflow: hidden;
}

.hamburger_menu .mean-nav>ul {
    display: block !important;
}

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

.hamburger_menu .mean-nav ul li {
    position: relative;
}

.hamburger_menu .mean-nav ul li a {
    color: var(--tj-color-common-white);
    width: 100%;
    font-size: var(--tj-fs-body);
    line-height: 1;
    letter-spacing: 0.5px;
    font-family: var(--tj-ff-body);
    font-weight: var(--tj-fw-medium);
    text-transform: capitalize;
    padding: 18px 0;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

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

.hamburger_menu .mean-nav ul li a.mean-expand {
    padding: 0;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    position: absolute;
    inset-inline-end: 0;
    top: 12px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.hamburger_menu .mean-nav ul li a.mean-expand:hover {
    color: var(--tj-color-common-white);
}

.hamburger_menu .mean-nav ul li a.mean-expand i {
    font-size: 15px;
}

.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
    color: var(--tj-color-theme-primary);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.hamburger_menu .mean-nav ul li .sub-menu li {
    -webkit-padding-start: 25px;
    padding-inline-start: 25px;
    position: relative;
}

.hamburger_menu .mean-nav ul li .sub-menu li a {
    width: 100%;
    padding: 18px 0;
}

.hamburger_menu .mean-nav ul li .sub-menu li a.mean-expand {
    padding: 0;
    width: 30px;
}

.hamburger_menu .mean-nav ul li.dropdown-opened>a {
    color: var(--tj-color-theme-primary);
}

.tj-offcanvas-area {
    position: fixed;
    inset-inline-end: -490px;
    top: 15px;
    width: 470px;
    height: calc(100% - 30px);
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    z-index: 9999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    border-start-start-radius: 12px;
    border-end-start-radius: 12px;
    border-radius: 12px;
}

.tj-offcanvas-area::-webkit-scrollbar {
    display: none;
}

.tj-offcanvas-area.opened {
    inset-inline-end: 15px;
}

.offcanvas-text {
    margin-bottom: 40px;
}

.offcanvas-text p {
    color: var(--tj-color-text-body-2);
    margin-bottom: 0;
}

.hamburger-search-area {
    margin-bottom: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .hamburger-search-area {
        margin-bottom: 30px;
    }
}

.hamburger-title {
    color: var(--);
    font-size: 22px;
    line-height: 1;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.hamburger-infos {
    margin-bottom: 45px;
}

.hamburger-infos .contact-info .contact-item {
    padding: 15px 0 10px 0;
    font-size: 15px;
}


.hamburger-infos .contact-info .contact-item:first-child {
    padding-top: 0;
}

.hamburger_logo .mobile_logo {
    display: inline-block;
    max-width: 136px;
    width: 100%;
}

.menu-bar button {
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer;
    -webkit-transition: -webkit-transform 300ms ease;
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.menu-bar button span {
    height: 3px;
    width: 35px;
    display: block;
    background: var(--tj-color-common-white);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
}

.menu-bar button span:nth-child(2) {
    width: 40px;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.menu-bar button span:nth-child(3) {
    width: 30px;
}

.menu-bar button span:nth-child(4) {
    position: absolute;
    top: -8px;
    inset-inline-start: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 3px;
    height: 0;
    -webkit-transition: height 400ms;
    transition: height 400ms;
}

.menu-bar.style-2 button span {
    background: var(--tj-color-heading-primary);
}

.menu-bar.menu-bar-toggeled button {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

.menu-bar.menu-bar-toggeled button span:nth-child(1) {
    width: 0;
}

.menu-bar.menu-bar-toggeled button span:nth-child(3) {
    width: 0;
}

.menu-bar.menu-bar-toggeled button span:nth-child(4) {
    height: 40px;
    -webkit-transition: height 200ms ease;
    transition: height 200ms ease;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .menu-bar {
        -webkit-margin-start: 0;
        margin-inline-start: 0;
    }
}

.body-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    inset-inline-start: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    backdrop-filter: blur(10px);
}

.body-overlay.opened {
    opacity: 1;
    visibility: visible;
}

/* !END: hamburger CSS */


/* START: Mega Menu CSS */
.gap-60-25 {
    --bs-gutter-x: 60px;
}

.gap-60-25 .row {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .gap-60-25 {
        --bs-gutter-x: 40px;
    }

    .gap-60-25 .row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .gap-60-25 {
        --bs-gutter-x: 32px;
    }

    .gap-60-25 .row {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .gap-60-25 {
        --bs-gutter-x: 0;
    }

    .gap-60-25 .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 20px;
    }
}

.gap-30-30 {
    --bs-gutter-x: 30;
}

.gap-30-30 .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .gap-30-30 {
        --bs-gutter-x: 20px;
    }

    .gap-30-30 .row {
        --bs-gutter-y: 20px;
    }
}

.header-wrapper:has(.mega-menu) {
    position: static;
}

.mainmenu ul>li:has(.mega-menu),
.mobile_menu ul>li:has(.mega-menu) {
    position: static;
}

.mainmenu ul>li>.mega-menu,
.mobile_menu ul>li>.mega-menu {
    max-width: 1920px;
    width: 100%;
    inset-inline-start: 50%;
    -webkit-transform: scaleY(0) translateX(-50%);
    -ms-transform: scaleY(0) translateX(-50%);
    transform: scaleY(0) translateX(-50%);
    padding: 30px 0;
    max-height: 89dvh;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .mainmenu ul>li>.mega-menu,
    .mobile_menu ul>li>.mega-menu {
        padding: 20px 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .mainmenu ul>li>.mega-menu,
    .mobile_menu ul>li>.mega-menu {
        padding: 16px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu,
    .mobile_menu ul>li>.mega-menu {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .mainmenu ul>li>.mega-menu li,
    .mobile_menu ul>li>.mega-menu li {
        -webkit-padding-start: 0 !important;
        padding-inline-start: 0 !important;
    }
}

.mainmenu ul>li>.mega-menu::before,
.mobile_menu ul>li>.mega-menu::before {
    display: none;
}

.mainmenu ul>li>.mega-menu .container-fluid,
.mobile_menu ul>li>.mega-menu .container-fluid {
    max-width: 1920px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
    width: 100%;
}

.mainmenu ul>li>.mega-menu-pages,
.mobile_menu ul>li>.mega-menu-pages {
    width: calc(100% - 30px);
    max-width: 1320px;
    padding: 0;
    margin: 0 auto;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-wrapper,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-wrapper,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single {
    width: 315px;
    -webkit-border-start: 1px solid var(--tj-color-border-1);
    border-inline-start: 1px solid var(--tj-color-border-1);
    padding: 26px 30px 20px;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single:last-child,
.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single:first-child,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single:last-child,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single:first-child {
    -webkit-border-start: 0;
    border-inline-start: 0;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single:last-child,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single:last-child {
    width: 377px;
    padding: 15px 15px;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single:last-child,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single:last-child {
        width: 350px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single:last-child,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single:last-child {
        width: 100%;
        padding: 0;
    }
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box {
    position: relative;
    background: var(--tj-color-theme-dark);
    border-radius: 10px;
    overflow: hidden;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content {
    padding: 30px 28px 30px;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .title,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .title {
    font-size: 74px;
    color: var(--tj-color-common-white);
    margin-bottom: 15px;
    line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .title,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .title,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .title,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .title {
        font-size: 60px;
    }
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content>span,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content>span {
    display: block;
    font-size: 20px;
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
    color: var(--tj-color-common-white);
    line-height: 1;
    margin-bottom: 26px;
}

@media (max-width: 575px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content>span,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content>span {
        margin-bottom: 20px;
    }
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .feature-contact,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .feature-contact {
    background-color: var(--tj-color-theme-primary);
    padding: 7px 12px;
    border-radius: 50px;
    line-height: 1;
    overflow: hidden;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .feature-contact span,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .feature-contact span {
    color: var(--tj-color-common-white);
    font-size: 18px;
    font-weight: var(--tj-fw-sbold);
    margin: 0;
    text-shadow: 0 30px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .feature-contact i,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .feature-contact i {
    color: var(--tj-color-common-white);
    font-size: 20px;
    -webkit-margin-end: 6px;
    margin-inline-end: 6px;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .feature-contact:hover span,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content .feature-contact:hover span {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content {
        padding: 30px 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-content {
        padding: 0 0 30px 0;
    }
}

@media (max-width: 575px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box {
        max-width: 320px;
        margin: 0 auto;
    }
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images {
    width: 285px;
    height: 285px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-margin-start: 116px;
    margin-inline-start: 116px;
    margin-bottom: -50px;
    border: 5px solid var(--tj-color-theme-primary);
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images img,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images {
        width: 299px;
        height: 299px;
        -webkit-margin-start: 102px;
        margin-inline-start: 102px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images {
        width: 325px;
        height: 325px;
        -webkit-margin-start: 56px;
        margin-inline-start: 56px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images {
        width: 500px;
        height: 500px;
        -webkit-margin-start: 260px;
        margin-inline-start: 260px;
        margin-bottom: -70px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images {
        -webkit-margin-start: 180px;
        margin-inline-start: 180px;
    }
}

@media (max-width: 400px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single .feature-box .feature-images {
        width: 320px;
        height: 320px;
        -webkit-margin-start: 45px;
        margin-inline-start: 45px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-pages-single,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-pages-single {
        width: 100%;
        padding: 20px 0;
        -webkit-border-start: 0;
        border-inline-start: 0;
    }
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-title,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-title {
    font-size: 18px;
    font-family: var(--tj-ff-body);
    font-weight: var(--tj-fw-sbold);
    padding-bottom: 10px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu-pages .mega-menu-title,
    .mobile_menu ul>li>.mega-menu-pages .mega-menu-title {
        color: var(--tj-color-common-white);
    }
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-title::before,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-title::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 3px;
    background: var(--tj-color-border-1);
    bottom: 0px;
    inset-inline-start: 0;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-list,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-list a,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-list a {
    font-weight: var(--tj-fw-medium);
    color: var(--tj-color-common-black-2);
    padding: 12px 0;
    line-height: 1;
    position: relative;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-list a:has(.mega-menu-badge),
.mobile_menu ul>li>.mega-menu-pages .mega-menu-list a:has(.mega-menu-badge) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mainmenu ul>li>.mega-menu-pages .mega-menu-list a:hover,
.mainmenu ul>li>.mega-menu-pages .mega-menu-list a.active,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-list a:hover,
.mobile_menu ul>li>.mega-menu-pages .mega-menu-list a.active {
    color: var(--tj-color-theme-primary);
    -webkit-padding-start: 5px;
    padding-inline-start: 5px;
}

.mainmenu ul>li>.mega-menu .mega-menu-badge,
.mobile_menu ul>li>.mega-menu .mega-menu-badge {
    font-size: 10px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--tj-color-common-white);
    background-color: var(--tj-color-theme-primary);
    padding: 3px 7px;
    border-radius: 40px;
}

.mainmenu ul>li>.mega-menu .mega-menu-badge-hot,
.mobile_menu ul>li>.mega-menu .mega-menu-badge-hot {
    background-color: var(--tj-color-red-1);
}

.mainmenu ul>li:hover .mega-menu,
.mobile_menu ul>li:hover .mega-menu {
    -webkit-transform: scaleY(1) translateX(-50%);
    -ms-transform: scaleY(1) translateX(-50%);
    transform: scaleY(1) translateX(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li:hover .mega-menu,
    .mobile_menu ul>li:hover .mega-menu {
        -webkit-transform: scaleY(1) translateX(0);
        -ms-transform: scaleY(1) translateX(0);
        transform: scaleY(1) translateX(0);
    }
}

.mainmenu ul>li>.mega-menu-service,
.mobile_menu ul>li>.mega-menu-service {
    width: 346px;
    -webkit-margin-start: -25px;
    margin-inline-start: -25px;
    padding: 15px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu-service,
    .mobile_menu ul>li>.mega-menu-service {
        width: 100%;
        -webkit-margin-start: 0;
        margin-inline-start: 0;
    }
}

.mainmenu ul>li>.mega-menu-service::before,
.mobile_menu ul>li>.mega-menu-service::before {
    display: none;
}

.mainmenu ul>li>.mega-menu-service li a,
.mobile_menu ul>li>.mega-menu-service li a {
    padding: 15px 25px;
    border-bottom: 1px solid var(--tj-color-border-1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: var(--tj-fs-body);
    font-weight: var(--tj-fw-sbold);
    font-weight: var(--tj-fw-medium);
    letter-spacing: -0.03em;
}

.mainmenu ul>li>.mega-menu-service li:last-child a,
.mobile_menu ul>li>.mega-menu-service li:last-child a {
    border-bottom: 0;
}

.mainmenu ul>li>.mega-menu-service li:hover a,
.mobile_menu ul>li>.mega-menu-service li:hover a {
    -webkit-padding-start: 25px;
    padding-inline-start: 25px;
}

.mainmenu ul>li>.mega-menu-service li:hover a::before,
.mobile_menu ul>li>.mega-menu-service li:hover a::before {
    display: none;
}

.mainmenu ul>li>.mega-menu-service-single,
.mobile_menu ul>li>.mega-menu-service-single {
    gap: 12px;
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-icon,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-icon {
    width: 54px;
    height: 54px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    text-align: center;
    background: linear-gradient(-45deg, rgba(30, 138, 138, 0.3) 0%, rgba(30, 138, 138, 0) 50%, rgba(30, 138, 138, 0.3) 100%);
    color: var(--tj-color-theme-primary);
    font-size: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: 0.4s ease-in-out 0s;
    transition: 0.4s ease-in-out 0s;
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-title,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-title {
    line-height: 1.375;
    max-width: 171px;
    display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu-service-single .mega-menu-service-title,
    .mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-title {
        max-width: 156px;
    }
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-nav,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    inset-inline-end: -16px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    min-width: 45px;
    height: 100%;
    z-index: 2;
    font-size: 1.6em;
    line-height: 1;
    color: var(--tj-color-theme-primary);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .mainmenu ul>li>.mega-menu-service-single .mega-menu-service-nav,
    .mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav {
        color: var(--tj-color-common-white);
    }
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-nav i,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav i {
    -webkit-transition: -webkit-transform 0.4s ease-in-out 0s;
    transition: -webkit-transform 0.4s ease-in-out 0s;
    transition: transform 0.4s ease-in-out 0s;
    transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-nav i:last-child,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav i:last-child {
    position: absolute;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-nav:hover i:first-child,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav:hover i:first-child {
    -webkit-transform: translateX(150%);
    -ms-transform: translateX(150%);
    transform: translateX(150%);
}

.mainmenu ul>li>.mega-menu-service-single .mega-menu-service-nav:hover i:last-child,
.mobile_menu ul>li>.mega-menu-service-single .mega-menu-service-nav:hover i:last-child {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mainmenu ul>li>.mega-menu-service-single:hover .mega-menu-service-icon,
.mobile_menu ul>li>.mega-menu-service-single:hover .mega-menu-service-icon {
    background-color: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
}

.mainmenu ul>li>.mega-menu-service-single:hover .mega-menu-service-nav,
.mobile_menu ul>li>.mega-menu-service-single:hover .mega-menu-service-nav {
    opacity: 1;
}

.tj-demo-wrapper {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-demo-wrapper {
        margin-bottom: 0px;
    }
}

.tj-demo-top-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-bottom: 50px;
}

.tj-demo-top-title {
    font-size: 32px;
    margin-bottom: 0;
}

.tj-demo-top-title span {
    color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tj-demo-top-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .tj-demo-top-title {
        font-size: 24px;
    }
}

.tj-demo-thumb {
    padding: 9px 9px 20px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--tj-color-border-1);
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-demo-thumb {
        border-color: var(--tj-color-border-2);
    }
}

.tj-demo-thumb .image {
    max-width: 596px;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 8px;
    overflow: hidden;
}

.tj-demo-thumb .image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background: var(--tj-color-theme-dark);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.tj-demo-thumb .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-demo-thumb .image {
        max-width: 100%;
    }
}

.tj-demo-thumb .tj-demo-title {
    color: var(--tj-color-heading-primary);
    font-weight: var(--tj-fw-medium);
    font-size: var(--tj-fs-body);
    text-align: center;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tj-demo-thumb .tj-demo-title {
        font-size: 14px;
    }
}

.tj-demo-thumb .tj-demo-title a {
    color: var(--tj-color-heading-primary);
}

.tj-demo-thumb .tj-demo-title a:hover {
    color: var(--tj-color-theme-primary);
}

.tj-demo-thumb:not(.coming):hover .image::before {
    opacity: 0.6;
    visibility: visible;
}

.tj-demo-thumb:not(.coming):hover .tj-demo-button {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 575px) {
    .tj-demo-thumb {
        padding: 15px 15px 25px;
    }
}

.tj-demo-thumb.coming .image::before {
    display: none;
}

.tj-demo-thumb .tj-demo-badge {
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--tj-color-common-white);
    background-color: var(--tj-color-red-1);
    padding: 3px 7px;
    border-radius: 40px;
    position: absolute;
    inset-inline-start: 11px;
    top: 11px;
}

.tj-demo-button {
    position: absolute;
    top: 60%;
    inset-inline-start: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}

.tj-demo-button .tj-primary-btn {
    background-color: var(--tj-color-common-white);
}

.tj-demo-button .tj-primary-btn .btn-text {
    color: var(--tj-color-theme-dark);
}

.hamburger_menu .mean-container .mean-nav ul li:has(.tj-demo-thumb).dropdown-opened>a {
    border-bottom: 0;
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    float: none;
    border-bottom: 0;
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a:has(.mega-menu-badge),
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a:has(.mega-menu-badge) {
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a.tj-primary-btn,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a.tj-primary-btn {
    padding: 4.5px;
    -webkit-padding-start: 15px;
    padding-inline-start: 15px;
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a .mega-menu-badge,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a .mega-menu-badge {
    font-size: 10px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--tj-color-common-white);
    background-color: var(--tj-color-theme-primary);
    padding: 3px 7px;
    border-radius: 40px;
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a .mega-menu-badge-hot,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a .mega-menu-badge-hot {
    background-color: var(--tj-color-red-1);
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu li .tj-demo-title a,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service .tj-demo-title a {
    padding: 0;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

    .hamburger_menu .mean-container .mean-nav ul li .mega-menu-service li,
    .hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li {
        -webkit-padding-start: 0 !important;
        padding-inline-start: 0 !important;
    }
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service li a,
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li a {
    border-bottom: 1px solid var(--tj-color-border-2);
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li .mega-menu-title::after {
    background-color: var(--tj-color-theme-dark);
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li a:not(.tj-primary-btn) {
    width: auto;
    padding: 18px 0;
    text-transform: capitalize;
    color: var(--tj-color-common-white);
    border-bottom: 1px solid var(--tj-color-border-2);
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li a:not(.tj-primary-btn)::before {
    display: none;
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li a:not(.tj-primary-btn):hover {
    color: var(--tj-color-theme-primary);
    padding: 18px 0;
}

.hamburger_menu .mean-container .mean-nav ul li .mega-menu-pages li .cta-btn .tj-primary-btn {
    width: auto;
}

/* !END: Mega Menu CSS */
.blog-item {
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
}

.blog-item.style-3 {
    min-height: 480px;
    overflow: hidden;
    position: relative;
}

.blog-item .blog-thumb::before {
    content: "";
    background-color: var(--tj-color-theme-dark);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.blog-item .blog-thumb img {
    width: 100%;
    min-height: 280px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
    .blog-item .blog-thumb {
        min-height: 240px;
    }

    .blog-item .blog-thumb img {
        min-height: 240px;
    }
}

.blog-item .blog-content {
    background-color: var(--tj-color-common-white);
    padding: 25px 28px 35px 28px;
    height: 100%;
}

.blog-item .blog-content .title {
    font-weight: var(--tj-fw-sbold);
    margin: 0;
    color: var(--tj-color-common-white);
}

.blog-item .blog-content .title a {
    background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
    background-image: linear-gradient(to bottom, currentColor 0%, currentColor 100%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: 0 85%;
    display: inline;
}

.blog-item .blog-content .title a:hover {
    background-size: 100% 2px;
}

.blog-item .blog-content .desc {
    margin-top: 15px;
}

.blog-item .blog-content .desc:last-of-type {
    margin-bottom: 0;
}

.blog-item .blog-content .text-btn {
    margin-top: 15px;
}

.blog-item .blog-content .categories a:hover {
    background-color: var(--tj-color-theme-primary);
    border-color: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
}

/*.blog-item:hover .blog-thumb img {
    -webkit-transform: scale(1.1) rotate(-2deg);
    -ms-transform: scale(1.1) rotate(-2deg);
    transform: scale(1.1) rotate(-2deg);
}*/

.blog-item.style-2 {
    padding: 15px 0 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: var(--tj-color-common-white);
}

@media (max-width: 575px) {
    .blog-item.style-2 {
        padding: 15px;
    }
}

.blog-item.style-2 .blog-thumb {
    width: 47%;
    min-height: 330px;
    border-radius: 10px;
}

@media (max-width: 575px) {
    .blog-item.style-2 .blog-thumb {
        width: 100%;
    }
}

.blog-item.style-2 .blog-content {
    width: 53%;
    height: auto;
    padding: 35px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-item.style-2 .blog-content .title {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .blog-item.style-2 .blog-content {
        padding: 30px 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-item.style-2 .blog-content {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .blog-item.style-2 .blog-content {
        width: 100%;
        padding: 25px 12px 15px;
    }
}



.blog-item.style-3 .blog-thumb::before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(12, 30, 33)), to(rgba(12, 30, 33, 0)));
    background: linear-gradient(0deg, rgb(12, 30, 33) 0%, rgba(12, 30, 33, 0) 100%);
    opacity: 1;
}

.blog-item.style-3 .blog-content {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 28px;
    z-index: 3;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    color: var(--tj-color-common-white);
}

.blog-item.style-3 .blog-content .title a {
    color: var(--tj-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .blog-item.style-3 .blog-content .title {
        font-size: 24px;
        font-weight: var(--tj-fw-bold);
        color: var(--tj-color-common-white);
        margin-bottom: 16px;
    }

    .blog-item.style-3 .blog-content p {
        font-size: var(--tj-fs-body);

        color: var(--tj-color-common-white);
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-item.style-3 .blog-content {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .blog-item.style-3 .blog-content {
        padding: 18px 15px;
    }
}

.blog-item.style-3 .blog-meta .categories a {
    color: var(--tj-color-text-body-2);
    border-color: transparent;
}

.blog-item.style-3 .blog-meta .categories a:hover {
    background-color: var(--tj-color-theme-primary);
    color: var(--tj-color-common-white);
}

.blog-item.style-3 .blog-meta span {
    color: var(--tj-color-text-body-2);
}

.blog-item.style-3 .blog-meta span a {
    color: var(--tj-color-grey-1);
}

.blog-item.style-3 .text-btn {
    position: absolute;
    margin: 0;
    inset-inline-start: 30px;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.blog-item.style-3 .text-btn .btn-text {
    color: var(--tj-color-common-white);
}

.blog-item.style-3 .text-btn .btn-icon {
    background-color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-item.style-3 .text-btn {
        inset-inline-start: 20px;
    }
}

@media (max-width: 575px) {
    .blog-item.style-3 .text-btn {
        inset-inline-start: 15px;
    }
}

.blog-item.style-3:hover::before {
    height: 100%;
}

.blog-item.style-3:hover .blog-content {
    padding-bottom: 70px;
}

@media (max-width: 575px) {
    .blog-item.style-3:hover .blog-content {
        padding-bottom: 70px;
    }
}

.blog-item.style-3:hover .text-btn {
    opacity: 1;
    visibility: visible;
    bottom: 35px;
}

@media (max-width: 575px) {
    .blog-item.style-3:hover .text-btn {
        bottom: 25px;
    }
}

/* Image container */
.blog-item.style-3 .blog-thumb {
    height: 490px;
    overflow: hidden;

}

.blog-item.style-3 .btn-text {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background-color: #F57A3C;
    border-radius: 19px;
    padding: 8px 24px;
    font-size: 12px;
    color: #fff;
}

.blog-item.style-3:hover .btn-text {
    opacity: 1;
    visibility: visible;
}

.our-divisions {
    position: relative;
}

.our-divisions .owl-nav {
    position: absolute;
    top: -60px;
    /* adjust as needed */
    right: 0;
    display: flex;
    gap: 10px;
}

.our-divisions .owl-nav button.owl-prev,
.our-divisions .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #0079AF !important;
    color: #fff !important;
    margin: 0 !important;
}

/* Hover */
.our-divisions .owl-nav button.owl-prev:hover,
.our-divisions .owl-nav button.owl-next:hover {
    background: var(--tj-color-common-black) !important;
}

/* Arrow size */
.our-divisions .owl-nav button span {
    font-size: 24px;
    line-height: 1;
}

.sec-heading-wrap h2 {
    font-weight: var(--tj-fw-bold);
    color: var(--tj-color-text-body-2);
    font-size: 26px;

}

.we-work-with .item {
    margin: 18px 0 0;
}

.we-work-with .item img {
    transition: transform 0.4s ease;
}

.we-work-with .item:hover img {
    transform: translateY(-5px);
    cursor: pointer;
}

.we-work-with {
    position: relative;
}

.we-work-with .owl-nav {
    position: absolute;
    top: -60px;
    /* adjust as needed */
    right: 0;
    display: flex;
    gap: 10px;
}

.we-work-with .owl-nav button.owl-prev,
.we-work-with .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #0079AF !important;
    color: #fff !important;
    margin: 0 !important;
}

/* Hover */
.we-work-with .owl-nav button.owl-prev:hover,
.we-work-with .owl-nav button.owl-next:hover {
    background: var(--tj-color-common-black) !important;
}

/* Arrow size */
.we-work-with .owl-nav button span {
    font-size: 24px;
    line-height: 1;
}

/*---------------*/
/***** Bubba *****/
/*---------------*/
.grid {
    position: relative;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

/* Common style */
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 0px 0px;
    border-radius: 14px;

    width: 100%;

    text-align: center;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.99;
}

.grid figure figcaption {
    padding: 0.5rem;
    color: var(--tj-color-common-white);

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption>a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {

    font-size: 1.3rem;
    font-weight: var(--tj-fw-medium);
    color: var(--tj-color-common-white);
}



.grid figure h2,
.grid figure p {
    margin: 0;
}

.grid figure p {
    letter-spacing: 1px;
    font-size: 100%;
}

figure.effect-bubba {
    background-color: var(--tj-color-theme-bg);
}

figure.effect-bubba img {
    opacity: 0.99;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

figure.effect-bubba:hover img {
    opacity: 0.4;
}

figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-bubba figcaption::before {
    /* border-top: 1px solid #fff;
    border-bottom: 1px solid #fff; */
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

figure.effect-bubba figcaption::after {
    /* border-right: 1px solid #fff;
    border-left: 1px solid #fff; */
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

figure.effect-bubba h2 {
    padding-top: 30%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
}

figure.effect-bubba p {
    padding: 10px 2.5em;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

figure.effect-bubba:hover h2,
figure.effect-bubba:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.effect-bubba h2 {
    padding-top: 35%;
    font-weight: var(--tj-fw-bold);
    opacity: 0;
    /* Hidden by default */
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
}

figure.effect-bubba:hover h2 {
    opacity: 1;
    /* Show on hover */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.footer-main-area {
    position: relative;
    padding: 40px 0 40px 0;
    background-color: var(--tj-color-theme-bg);
}

.footer-widget.w-60 {
    width: 60%;
}

.footer-widget .title {
    font-weight: var(--tj-fw-sbold);
    margin-bottom: 16px;
    color: var(--tj-color-common-white);
    font-size: 1rem;
}

.footer-widget p {
    color: var(--tj-color-common-white);
}

.widget-nav-menu ul {
    list-style: none;
}

.widget-nav-menu ul li:first-child {
    padding-top: 0;
}

.widget-nav-menu ul li {
    padding: 4px 0;
}

.widget-nav-menu ul li a {
    color: var(--tj-color-common-white);
    display: inline-flex;
    align-items: center;
    /* transform: translateX(0); */
    transition: transform 0.3s ease;
}

/* hover text move */
.widget-nav-menu ul li a:hover {
    color: var(--tj-color-common-white);
    /* transform: translateX(5px); */
}

/* arrow icon */
.footer-link:not(.no-arrow)::after,
.footer-top a:not(.no-arrow)::after,
.widget-nav-menu ul li a::after {
    content: "";
    display: inline-block;
    width: 0.371rem;
    height: 0.757rem;
    margin-left: 0.428rem;
    background: url(../images/arrow-right.svg) no-repeat 0 0;

    position: relative;
    top: 0.05rem;
    transition: transform 0.3s ease, margin-left 0.3s ease;
}

/* arrow move on hover */
.widget-nav-menu ul li a:hover::after {
    transform: translateX(3px);
    margin-left: 0.6rem;
}

.footer-boards-divisions-bg {
    background-color: var(--tj-color-theme-bg-3);
}

.footer-boards-divisions .title {
    font-weight: var(--tj-fw-sbold);
    margin-bottom: 16px;
    color: #606060;
}

.footer-boards-divisions a img {
    transition: all 0.3s ease;
    height: 50px;
}

.footer-boards-divisions-2 a img {
    transition: all 0.3s ease;
    height: 40px;
}

.footer-striving-quality-education-environment {
    background-color: var(--tj-color-common-black);
}

.footer-striving-quality-education-environment .title {
    font-weight: var(--tj-fw-sbold);
    color: var(--tj-color-common-white);
}

.footer-striving-quality-education-environment .social-links ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-elight);
}

.footer-striving-quality-education-environment .social-links ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: var(--tj-fs-body);
    line-height: 1;
    color: var(--tj-color-common-black);
}

.footer-striving-quality-education-environment .social-links ul li a:hover {
    background-color: var(--tj-color-theme-primary);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    color: var(--tj-color-common-white);
}

.copyright {
    font-size: 12px;
    color: #fff;
    margin-top: 16px;
    font-weight: var(--tj-fw-elight);
}

.copyright a {
    font-size: 12px;
    color: #fff;
}

.space-for-header {
    padding-top: 74px;
}

.h4-banner-section {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.countup-item {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    background-color: var(--tj-color-theme-bg);
    padding: 8px 16px;
}

.countup-item h3 {
    padding: 0px;
    margin: 0px;
    font-size: 20px;
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
}

.countup-item span {
    font-size: var(--tj-fs-body);
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-normal);
}

.stats-item {
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
}

.stats-item:last-child {
    padding-right: 0;
    margin-right: 0;
}

.stats-item::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    color: var(--tj-color-common-white);
    font-weight: 100;
}

/* Remove separator from last item */
.stats-item:last-child::after {
    display: none;
}

.about-bg-text {
    background: url("../images/text-bg.png") no-repeat center center;

    padding: 48px 32px;
    border-radius: 20px;
    min-height: 24rem;
}

.about-bg-text h2 {
    color: var(--tj-color-common-white);
    font-size: 24px;
    font-weight: var(--tj-fw-bold);
    margin-bottom: 16px;
}

.about-bg-text p {
    color: var(--tj-color-common-white);
    margin-bottom: 24px;
    line-height: 22px;
}

.about-bg-text .read-more-btn {
    transition: all 0.3s ease;
    background-color: #F57A3C;
    border-radius: 19px;
    padding: 8px 24px;
    font-size: 12px;
    color: #fff;
}

.about-bg-text .read-more-btn:hover {
    transform: translateY(-5px);
    background: #e56627;
    color: #fff;
}

/* .upcoming-event{
    background-color: #EDEDED;
    padding: 40px;
    border-radius: 18px;

} */
.event-section {
    background-color: #EDEDED;
    padding: 16px 16px;
    border-radius: 20px;
    min-height: 21rem;
}

.event-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #656565;
}

.event-list {
    display: flex;
    flex-direction: column;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    border-radius: 24px;
    color: #fff;
    margin-top: -10px;
    position: relative;
    transition: all .3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.event-1 {
    background: #17a2cf;
    z-index: 4;
}

.event-2 {
    background: #0d8db8;
    z-index: 3;
}

.event-3 {
    background: #0b789d;
    z-index: 2;
}

.event-4 {
    background: #0a5f7d;
    z-index: 1;
}

.event-date {
    min-width: 40px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .4);
    padding-right: 8px;
}

.event-date span {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
}

.event-date h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1;
    font-weight: 300;
    color: #fff;
}

.event-content {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
}

.event-content h5 {
    margin: 0;
    font-size: var(--tj-fs-body);
    font-weight: 500;
    color: #fff;
}

.event-content p {
    margin: 2px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
}

.event-arrow i {
    font-size: var(--tj-fs-body);
    color: #fff;
}

.hamburger_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 40px;
    overflow: auto;
    height: 100%;
}

.hamburger_wrapper::before {
    content: "";
    position: absolute;
    top: 3%;
    inset-inline-end: 3%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--tj-color-theme-primary);
    -webkit-filter: blur(50px);
    filter: blur(50px);
    opacity: 0.26;
    z-index: -1;
    backdrop-filter: blur(10px);
}

.banner .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    /* adjust as needed */
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
}

.banner .owl-dots .owl-dot.active span {
    background: #0079AF !important;
    /* active dot color */
}

.banner .owl-nav button.owl-prev,
.banner .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff !important;
    color: #000 !important;
    font-size: 32px !important;
    transition: all 0.3s ease;
}

.banner .owl-nav button.owl-prev {
    left: 20px;
}

.banner .owl-nav button.owl-next {
    right: 20px;
}

.banner .owl-nav button:hover {
    background: #0079AF !important;
    color: #fff !important;
}

.banner.owl-theme .owl-nav {
    margin-top: 0 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}


:root {
    --orange-pill: #f37936;
    --blue-pill: #0099cd;
    --text-dark: #111111;
    --text-muted: #333333;
    --line-color: #cccccc;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;

}

/* Nodes and Pills */
.node {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-align: center;
}

.board-node {
    background-color: var(--orange-pill);
    color: white;
    padding: 15px 60px;
    border-radius: 30px;
    font-size: 1.15rem;
    box-shadow: var(--shadow);
}

.ceo-node {
    background-color: var(--blue-pill);
    color: white;
    padding: 12px 80px;
    border-radius: 30px;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.pillar-node {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 15px 16px;
    border-radius: 25px;
    font-size: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
    min-height: 28px;
}

/* Connector Lines */
.vertical-line {
    width: 1px;
    background-color: var(--line-color);
    height: 30px;
}

/* Pillars Grid Area */
.pillars-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin-top: 20px;
}

/* Top horizontal bar spanning pillars */
.pillars-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 14%;
    right: 14%;
    height: 1px;
    background-color: var(--line-color);
}

.pillar-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

/* Short vertical ticks from horizontal bar to pillars */
.pillar-branch::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 1px;
    height: 20px;
    background-color: var(--line-color);
}

/* List Items under Pillars */
.sub-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 0;
    list-style: none;
    width: 100%;
}

.sub-list li {
    color: var(--text-dark);
    font-size: 0.95rem;
    text-align: center;
    padding: 10px 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Connectors between list items */
.sub-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 1px;
    height: 20px;
    background-color: var(--line-color);
}

.sub-list li:not(:first-child) {
    margin-top: 20px;
}

.logo-marquee {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: marquee 20s linear infinite;
}

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

.logo-track .item img {
    max-height: 50px;
}

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

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





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




.direction-forward {
    padding-top: 40px;
}



.direction-forward .direction-card {
    border-radius: 36px;
    border: 2px solid #fff;
    padding: 40px 25px;
    color: var(--tj-color-common-white);
    min-height: 480px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.direction-forward .direction-card .icon {
    font-size: 50px;
    margin-bottom: 25px;
}

.direction-forward .direction-card h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--tj-color-common-white);
    margin-bottom: 15px;
}


.direction-forward .vision-card {
    background: #f5823a;
}

.direction-forward .mission-card {
    background: #0097c9;
}

.direction-card::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    border: 8px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.main-container .container-fluid {
    max-width: 1366px;
    margin: 0 auto;
}



.custom-about-section {
    background-color: #e6f0ff;
    border-radius: 0 30px 30px 0;
}

/* Mobile */
@media (max-width: 575.98px) {

    .blog-item.style-3 .blog-content {
        bottom: 10px;
    }

    .blog-item.style-3 .btn-text {
        opacity: 1;
        visibility: visible;
    }

    .footer-boards-divisions-2 a img {
        height: auto;
    }

    .footer-boards-divisions a img {
        height: auto;
    }

    .footer-widget.w-60 {
        width: 100%;
    }

    .stats-item::after {
        display: none;
    }

    .stats-item {
        position: relative;
        padding-right: 0px;
        margin-right: 0px;
        margin: 8px 0px;
    }

    .about-bg-text {
        background: url(../images/text-bg.png) no-repeat center center;
        padding: 34px 32px;
        background-size: cover;
        border-radius: 20px;
    }

    .custom-tabs {
        gap: 16px;

    }

    .custom-tabs .nav-link {
        font-size: 14px;
    }

    .fluid-card-v2 .img-section,
    .fluid-card-v2 .content-section {
        flex-basis: 100%;
    }

    .fluid-card-v2 .img-section img {
        margin: 0px;
    }

    .fluid-card-v2 .h3 {
        padding: 1.7142857143rem 1.7142857143rem 0px;
    }

    .fluid-card-v2 .content-section p {
        padding: 1.7142857143rem;
        padding-top: 0px;

    }

    .mb-6 {
        margin-bottom: 1.7142857143rem;
    }

    .fluid-card-v2 .img-section img {
        border-radius: 1.4285714286rem 1.4285714286rem 0 0;
        height: 14.2857142857rem;
        object-fit: cover;
        width: 100%;
        border-radius: 1.4285714286rem 1.4285714286rem 0 0;
    }

    .custom-about-section {
        border-bottom-left-radius: 1.4285714286rem;
        border-bottom-right-radius: 1.4285714286rem;
        border-top-right-radius: 0px;
    }

}



/* Tablet */
@media (max-width: 767.98px) {}

/* Medium devices */
@media (max-width: 991.98px) {}

/* Large devices */
@media (max-width: 1199.98px) {}

.container-fluid {
    max-width: 1318px;
}