:root {
    --theme-color: #7D225D;
    /* Primary theme color */
    --theme-color2: #7a1155;
    /* Secondary theme color */
    --theme-color3: #7D225D;
    /* Another theme color, same as --theme-color */
    --title-color: #1f1f1f;
    /* Color for titles */
    --body-color: #797e88;
    /* Color for body text */
    --smoke-color: #f7f7f7;
    /* Light gray background color */
    --smoke-color2: #f6f6f6;
    /* Slightly darker gray background color */
    --black-color: #000000;
    /* Black color */
    --black-color2: #080e1c;
    /* Darker black color */
    --gray-color: #bdbdbd;
    /* Gray color */
    --white-color: #ffffff;
    /* White color */
    --light-color: #bdbdbd;
    /* Light gray color */
    --yellow-color: #ffb539;
    /* Yellow color */
    --gold-color: #ffd700;
    /* Gold color */
    --success-color: #28a745;
    /* Success message color */
    --error-color: #dc3545;
    /* Error message color */
    --th-border-color: #d8dde1;
    /* Border color for table headers */
    --dark-color: #021526;
    /* Dark background color */
    --title-font: 'Open Sans', sans-serif;
    /* Font for titles */
    --body-font: 'Open Sans', sans-serif;
    /* Font for body text */
    --icon-font: "Font Awesome 6 Pro";
    /* Font for icons */
    --main-container: 1290px;
    /* Maximum width for the main container */
    --container-gutters: 30px;
    /* Spacing between columns in container */
    --section-space: 60px;
    /* Vertical space between sections */
    --section-space-mobile: 60px;
    /* Vertical space between sections on mobile */
    --section-title-space: 60px;
    /* Space for section titles */
    --ripple-ani-duration: 5s;
    /* Duration of ripple animation */
}

body {
    margin: 0;
}

.header-default {
    border-radius: 0 0 55px 55px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.th-header {
    position: relative;
    z-index: 41;
}

.header-default .header-top {
    position: relative;
    padding: 11px 0;
    --body-color: #fff;
    background-color: var(--theme-color);
}

.header-top {
    padding: 6px 0;
    background-color: var(--theme-color);
    --body-color: #fff;
}

@media (min-width: 1300px) {
    .row {
        --bs-gutter-x: 24px;
    }
}

.header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header-links li:not(:last-child) {
    margin: 0 42px 0 0;
}

.header-links li {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--title-font);
    color: var(--body-color);
}

.header-links li>i {
    margin-right: 6px;
    color: var(--white-color);
}

.header-links a {
    color: var(--body-color);
}

a {
    color: var(--theme-color) !important;
    text-decoration: none;
    outline: 0;
    transition: all ease 0.4s;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

.header-links li:not(:last-child):after {
    /* content: ""; */
    height: 14px;
    width: 1px;
    background-color: var(--theme-color2);
    position: absolute;
    top: 0;
    right: -22px;
    margin-top: 7px;
    opacity: 0.4;
}

:after {
    box-sizing: border-box;
}

.social-links .social-title {
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    margin: 0 12px 0 0;
    color: var(--body-color);
}

.header-links span {
    color: var(--body-color);
}

.header-links .social-links a {
    font-size: 14px;
}

.social-links a {
    font-size: 16px;
    display: inline-block;
    color: var(--body-color);
    margin: 0 15px 0 0;
}

.header-links a {
    color: var(--body-color) !important;
}

a {
    color: var(--theme-color);
    text-decoration: none;
    outline: 0;
    transition: all ease 0.4s;
}

.social-links a:last-child {
    margin-right: 0 !important;
}

.sticky-wrapper {
    transition: 0.4s ease-in-out;
}

.bg-white {
    background-color: var(--white-color) !important;
}

.th-header .menu-area {
    position: relative;
    z-index: 2;
}

.header-logo {
    padding-top: 15px;
    padding-bottom: 15px;
}

a:visited {
    text-decoration: none;
}

img:not([draggable]) {
    max-width: 100%;
}

.main-logo {
    max-width: 125px !important;
}

img {
    border: none;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

@media (max-width: 1500px) {
    .main-menu>ul>li {
        margin: 0 13px;
    }
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu>ul>li {
    margin: 0 15px;
}

.main-menu>ul>li>a {
    padding: 22px 0;
}

.col-auto .th-menu-toggle {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    font-size: 20px !important;
    border: none !important;
    background-color: var(--theme-color) !important;
    color: var(--white-color) !important;
    display: inline-block;
    border-radius: 5px !important;
}

.header-button {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.th-header .icon-btn:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
}

.th-header .icon-btn {
    display: inline-block !important;
    width: var(--btn-size, 56px) !important;
    height: var(--btn-size, 56px) !important;
    line-height: var(--btn-size, 36px) !important;
    font-size: var(--btn-font-size, 20px) !important;
    background-color: var(--icon-bg, rgba(247, 247, 247, 0)) !important;
    color: var(--title-color) !important;
    text-align: center !important;
    border-radius: 99px !important;
    border: 1px solid var(--th-border-color) !important;
    transition: 0.4s ease-in-out !important;
    position: relative !important;
}

.th-header .th-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color) !important;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding: 20px;
    min-width: 170px;
    border-radius: 12px;
    box-shadow: var(--theme-color) 0 3px 8px -2px;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.th-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -85%;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transform: skewX(-45deg);
    transition: all 0.4s ease;
}

.th-btn:hover {
    color: #333;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
    background: var(--theme-color2);
    /* transform: translateY(-3px); */
    /* transform: scale(1.02); */
}


/* ---- */

.th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.8s;
}

.th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 310px;
    height: 100%;
    background-color: #fff;
    border-right: 3px solid var(--theme-color);
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 1s;
    z-index: 1;
}

.th-menu-wrapper .th-menu-toggle {
    position: absolute !important;
    top: 25px !important;
    right: -16.5px !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 35px !important;
    font-size: 18px !important;
    border: none !important;
    color: var(--white-color) !important;
    background-color: var(--theme-color) !important;
    border-radius: 50% !important;
    z-index: 1 !important;
}

.th-menu-wrapper .th-menu-toggle i {
    font-size: 22px;
}

.th-menu-wrapper .mobile-logo {
    padding-top: 40px;
    padding-bottom: 30px;
    display: block;
    text-align: center;
    background-color: var(--smoke-color2);
}

a:visited {
    text-decoration: none;
}

.th-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left;
}

.th-mobile-menu>ul {
    padding: 0 40px;
}

.th-mobile-menu ul {
    margin: 0;
    padding: 0;
}

.th-mobile-menu ul li {
    list-style-type: none;
    border-bottom: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    padding-left: 18px;
}

.th-mobile-menu ul li a:before {
    content: "\f105";
    font-family: var(--icon-font);
    position: absolute;
    left: 0;
    top: 12px;
    margin-right: 10px;
    display: inline-block;
}

.th-mobile-menu ul li.th-active>a {
    color: var(--theme-color);
}

.th-mobile-menu ul .menu-item-has-children>a {
    position: relative;
}

.th-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    padding-left: 18px;
}

.th-mobile-menu ul li.th-active>a:before {
    transform: rotate(90deg);
}

.th-mobile-menu ul li a:before {
    content: "\f105";
    font-family: var(--icon-font);
    position: absolute;
    left: 0;
    top: 12px;
    margin-right: 10px;
    display: inline-block;
}

.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    background-color: var(--smoke-color);
    color: var(--title-color);
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
}

.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand:before {
    content: "\f067";
    font-family: var(--icon-font);
}

.th-mobile-menu ul .menu-item-has-children.th-active>a .th-mean-expand:before {
    content: "\f068";
}

.th-mobile-menu ul .menu-item-has-children.th-active>a:after {
    content: "\f068";
}

.th-mobile-menu ul .menu-item-has-children>a:after {
    content: "\f067";
    font-family: var(--icon-font);
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background-color: var(--smoke-color);
    float: right;
    margin-top: 1px;
}

.th-mobile-menu ul li.th-active>a {
    color: var(--theme-color);
}

.th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible;
}

.th-mobile-menu ul {
    margin: 0;
    padding: 0;
}

.th-mobile-menu>ul {
    padding: 0 40px;
}

* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1250px;
    }
}

@media (min-width: 992px) {
    .justify-content-lg-between {
        justify-content: space-between !important;
    }
    .justify-content-lg-start {
        justify-content: flex-start !important;
    }
}

.justify-content-center {
    justify-content: center;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y)* -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

.d-none {
    display: none !important;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.col-auto {
    flex: 0 0 auto;
    width: auto !important;
}

img {
    vertical-align: middle;
}

@media (min-width: 992px) {
    .d-lg-inline-block {
        display: inline-block !important;
    }
}

[type=button]:not(:disabled) {
    cursor: pointer;
}

button:not(:disabled) {
    cursor: pointer;
}

.d-block {
    display: block !important;
}

[type=button] {
    -webkit-appearance: button;
}

button {
    transition: all ease 0.4s;
}

button {
    border-radius: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
    -webkit-appearance: button;
}

@media (min-width: 1200px) {
    .d-xl-block {
        display: block !important;
    }
}

.main-menu>ul>li>a {
    padding: 22px 0;
}

.main-menu a {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    font-family: var(--title-font) !important;
    color: var(--theme-color) !important;
    /* text-transform: uppercase; */
}

.m-0 {
    margin: 0;
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
}


/* --------------- */

.footer-wrapper.footer-layout1 {
    overflow: initial;
    background-color: var(--theme-color);
}

.footer-layout1 {
    background-position: top center;
}

.footer-wrapper {
    --border-color: rgba(255, 255, 255, 0.3);
    --body-color: #788094;
    position: relative;
    z-index: 2;
}

.subscribe-box {
    position: relative;
    z-index: 1;
    padding: 30px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gy-30,
.gy-40,
.gy-50 {
    --bs-gutter-y: 30px;
}

@media (min-width: 1200px) {
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.3333333333% !important;
    }
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

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

.info-box {
    display: flex;
    margin-bottom: 27px;
}

.info-box_icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    line-height: 65px;
    font-size: 28px;
    background-color: #fff;
    color: var(--theme-color);
    border-radius: 50px;
    text-align: center;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4509803922);
}

.info-box_text {
    display: block;
    color: var(--white-color);
    margin-top: -0.45em;
    margin-bottom: -0.45em;
    align-self: center;
    font-size: 20px;
    text-align: left;
    font-family: var(--body-font);
    line-height: 1.75;
}

.info-box .info-contnt .info-box_link {
    display: inline-block;
    color: var(--white-color) !important;
}

.info-box .info-contnt .info-box_link:hover {
    color: var(--theme-color2) !important;
}

p {
    font-family: var(--body-font) !important;
    line-height: 1.75;
}

p a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.footer-layout1 .widget-area {
    padding-top: 80px;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }
}

.widget {
    padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
    background-color: var(--smoke-color2);
    margin-bottom: 40px;
    position: relative;
    border-radius: 20px;
}

.footer-widget {
    margin-bottom: 50px;
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}

.th-widget-about {
    max-width: 315px;
}

.th-widget-about .about-logo {
    margin-bottom: 40px;
}

.th-widget-about .about-text {
    margin-bottom: 30px;
    margin-top: -0.9em;
    color: var(--white-color);
    font-size: 18px;
}

.th-social a {
    display: inline-block;
    width: var(--icon-size, 46px);
    height: var(--icon-size, 46px);
    line-height: var(--icon-size, 46px);
    background-color: transparent;
    color: var(--body-color);
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 10px;
    border: 1px solid var(--th-border-color);
}

.widget .th-social a {
    box-shadow: 0 2px 14px rgba(4, 6, 66, 0.1);
}

.footer-wrapper .th-social a {
    color: var(--white-color) !important;
}

.footer-layout1 .th-social a:hover {
    background-color: var(--theme-color2) !important;
}

.footer-layout1 .th-social a {
    border-radius: 50%;
    background: 0 0;
}

.th-social a:last-child {
    margin-right: 0;
}

.footer-widget .widget_title {
    max-width: 270px;
    color: var(--theme-color);
    font-weight: 400;
    text-transform: capitalize;
    margin: -0.12em 0 12px 0;
    padding: 0 0 15px 0;
    position: relative;
}

.widget_title {
    font-size: 19px;
    font-family: var(--title-font);
    line-height: 1em;
}


/* .footer-widget .widget_title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 1px;
    background-color: var(--theme-color2);
} */

.footer-widget.widget_nav_menu .menu {
    margin-bottom: -4px;
}

.footer-widget.widget_nav_menu ul {
    margin-top: -4px;
}

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


/* .footer-widget .menu-all-pages-container .menu li {
    margin-left: 23px;
} */

.widget_nav_menu li {
    display: block;
    position: relative;
}

.widget_nav_menu a {
    display: block;
    background-color: var(--white-color);
    border: 1px solid var(--th-border-color);
    margin: 0 0 14px;
    padding: 17px 30px;
    font-size: 16px;
    line-height: 1.313;
    color: var(--body-color);
    border-radius: 50px;
    transition: 0.4s all ease;
    padding-right: 20px;
}

.footer-widget.widget_nav_menu a {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin-bottom: 18px;
    font-family: var(--body-font) !important;
    color: var(--theme-color) !important;
    display: block;
    max-width: 100%;
    width: -moz-max-content;
    width: max-content;
    padding-right: 0;
    background-color: transparent;
    border-bottom: none;
    position: relative;
    border: 0;
}

.footer-widget.widget_nav_menu a:hover:before {
    color: var(--theme-color2) !important;
    transform: rotate(0);
}

.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--theme-color2) !important;
}


/* .footer-widget.widget_nav_menu a:before {
    content: "\f061";
    position: absolute;
    left: -23px;
    top: 2px;
    font-size: 0.9em;
    background-color: transparent;
    border: none;
    color: inherit;
    font-family: "Font Awesome 6 Pro";
    transform: rotate(-41deg);
    color: var(--theme-color2);
    transition: all 0.4s;
} */

.newsletter-widget p {
    color: var(--white-color);
    padding-right: 10px;
}

.footer-text {
    margin-bottom: 18px;
    margin-top: -0.5em;
}

.newsletter-form {
    position: relative;
    max-width: 465px;
    display: flex;
    align-items: center;
    gap: 10px;
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 10px;
}

.footer-layout1 .newsletter-form {
    max-width: 600px;
    margin-left: auto;
}

.newsletter-widget .newsletter-form {
    flex-direction: column;
    gap: 15px;
}

.widget .form-control,
.widget .form-select,
.widget input,
.widget select,
.widget textarea {
    background-color: var(--white-color);
    border-radius: 30px;
}

.newsletter-form input {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    width: 100%;
    padding-right: 91px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input,
textarea {
    outline: 0;
    height: 56px;
    padding: 0 25px;
    padding-right: 45px;
    border: 1px solid var(--th-border-color);
    color: var(--body-color);
    border-radius: 27px;
    font-size: 14px;
    width: 100%;
    font-family: var(--body-font);
    transition: 0.4s ease-in-out;
    background-color: var(--white-color);
}

input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.form-control {
    height: 56px !important;
    padding: 0 25px 0 25px !important;
    padding-right: 45px !important;
    border: 1px solid var(--th-border-color) !important;
    color: var(--body-color) !important;
    border-radius: 27px !important;
    font-size: 14px !important;
    width: 100% !important;
    font-family: var(--body-font) !important;
    transition: 0.4s ease-in-out !important;
    background-color: var(--white-color) !important;
}

.newsletter-widget .icon-btn {
    color: var(--white-color) !important;
    padding: 0 !important;
    border: none !important;
    position: absolute !important;
    border-radius: 30px !important;
    width: 76px !important;
    height: 46px !important;
    line-height: 4px !important;
    right: 5px !important;
    top: 5px !important;
    background: var(--theme-color) !important;
}

.newsletter-widget .icon-btn:hover {
    background-color: var(--theme-color2) !important;
    color: var(--title-color) !important;
}

.newsletter-bottom {
    margin-top: 10%;
}

.footer-info-title {
    font-size: 20px;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 8px;
}

.newsletter-widget .bottom {
    display: flex;
    gap: 11px;
    align-items: baseline;
}

.newsletter-widget .bottom .icon i {
    color: var(--theme-color2);
    font-size: 13px;
}

.footer-layout1 .copyright-wrap {
    padding: 12px 0;
    background-color: var(--theme-color);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.copyright-wrap {
    background-position: bottom;
}

.gy-3 {
    --bs-gutter-y: 1rem;
}

@media (min-width: 992px) {
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.footer-layout1 .copyright-wrap .copyright-text {
    color: var(--white-color);
}

.copyright-text {
    margin: 0;
}

.text-center {
    text-align: center !important;
}

.footer-layout1 .copyright-wrap .copyright-text a {
    color: var(--theme-color2) !important;
}

#ct .footer {
    z-index: 9;
    position: absolute;
    bottom: 0;
    top: 100%;
    width: 100%;
    background-color: #242424;
}

.main-menu ul.sub-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    visibility: hidden;
    min-width: 230px;
    width: -moz-max-content;
    width: max-content;
    padding: 7px;
    left: -14px;
    opacity: 0;
    z-index: -1;
    box-shadow: 0 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 0;
    transform: scaleY(0);
    transform-origin: top center;
    transition: all 0.4s ease 0s;
    padding: 18px 20px 18px 18px;
    left: -27px;
}

.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 5px 0px;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 0;
    text-transform: capitalize;
}

.main-menu ul.sub-menu a {
    font-size: 16px;
    line-height: 30px;
}

.main-menu ul li.menu-item-has-children>a:hover:after {
    content: "\f107";
    color: var(--theme-color) !important;
    transform: rotate(180deg);
    top: -2px;
}

.main-menu ul li.menu-item-has-children>a:after {
    content: "\f107";
    display: inline-block;
    position: relative;
    font-family: var(--icon-font);
    margin-left: 4px;
    font-weight: 400;
    top: 3px !important;
    font-size: 1.2em;
    color: var(--theme-color) !important;
    transition: 0.3s ease-in-out;
}


/* .main-menu ul.sub-menu li a:before {
    content: "\f5d0";
    position: absolute;
    top: 6px;
    left: 10px;
    font-family: var(--icon-font);
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    color: var(--theme-color);
    font-weight: 900;
    opacity: 0;
    visibility: visible;
    transition: 0.3s ease-in-out;
} */


/* .main-menu ul.sub-menu li a:hover {
    padding-left: 23px;
} */

.main-menu ul.sub-menu li a:hover:before {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.main-menu ul li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    z-index: 9;
    /* border-top: 4px solid var(--theme-color); */
}

.th-mobile-menu ul li ul li {
    padding-left: 20px;
}

@media (max-width: 400px) {
    .th-mobile-menu>ul {
        padding: 0 20px;
    }
}

.bg-theme2 {
    background-color: var(--theme-color2) !important;
}

.text-title {
    color: var(--title-color) !important;
}

.bg-theme2:hover {
    color: var(--white-color) !important;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important; */
    background: #B53D60 !important;
    /* transform: translateY(-3px); */
}