
:root {
    --tg-icon-font-family: "Font Awesome 5 Pro";
    --tg-body-font-size: 16px;
    --tg-body-line-height: 1.62;
    --tg-heading-line-height: 1.2;
    --tg-common-color-blue: #0d6efd;
    --tg-common-color-indigo: #6610f2;
    --tg-common-color-purple: #6f42c1;
    --tg-common-color-pink: #d63384;
    --tg-common-color-red: #dc3545;
    --tg-common-color-orange: #fd7e14;
    --tg-common-color-yellow: #ffc107;
    --tg-common-color-green: #17c699;
    --tg-common-color-teal: #20c997;
    --tg-common-color-cyan: #0dcaf0;
    --tg-common-color-white: #fff;
    --tg-common-color-gray: rgba(221, 221, 209, 1);
    --tg-common-color-black: rgb(0, 0, 0);
    --tg-body-color: #777777;
    --tg-heading-color: #363636;
    --tg-theme-primary: rgba(255, 192, 0, 1);
    --tg-theme-secondary: rgba(45, 37, 33, 1);
    --tg-border-1: #e8e8e8;
    --tg-border-2: #2c2c2c;
    --tg-fw-extra-bold: 800;
    --tg-fw-bold: 700;
    --tg-fw-semi-bold: 600;
    --tg-fw-medium: 500;
    --tg-fw-regular: 400;
    --tg-fw-light: 300;
}

/*=============================
    01. Theme Default CSS
===============================*/
body {
    font-family: var(--tg-body-font-family);
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-fw-regular);
    color: var(--tg-body-color);
    line-height: var(--tg-body-line-height);
    background-color: var(--tg-common-color-gray);
}

img,
.img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a,
button {
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

a:hover,
button:hover {
    text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-color);
    margin-top: 0px;
    font-weight: var(--tg-fw-bold);
    line-height: 1.2;
    text-transform: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.list-wrap,
.slick-dots {
    margin: 0px;
    padding: 0px;
}
.list-wrap li,
.slick-dots li {
    list-style: none;
}

.tgcommon__hover a {
    position: relative;
    display: inline;
    background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
}
.tgcommon__hover a:hover {
    color: inherit;
    background-size: 0 1px, 100% 1px;
}

.tgImage__hover {
    overflow: hidden;
}
.tgImage__hover a {
    display: block;
}
.tgImage__hover a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.tgImage__hover img {
    display: block;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

p {
    font-family: var(--tg-body-font-family);
    font-size: var(--tg-body-font-size);
    line-height: var(--tg-body-line-height);
    font-weight: var(--tg-fw-regular);
    color: var(--tg-body-color);
    margin-bottom: 15px;
}

hr {
    border-bottom: 1px solid var(--tg-common-color-gray);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

label {
    color: var(--tg-heading-color);
    cursor: pointer;
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-fw-regular);
}

.slick-slide:focus-visible {
    outline: none;
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

*::-moz-selection {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    text-shadow: none;
}

::selection {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
*::-moz-placeholder {
    color: var(--tg-body-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}

*::placeholder {
    color: var(--tg-body-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}

/*=============================
    - Common Classes
===============================*/
.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

/*=============================
    - Bootstrap Custom
=============================*/
.container {
    padding-left: 15px;
    padding-right: 15px;
}

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

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

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

.row-gutters-40 {
    --bs-gutter-x: 40px;
}
@media (max-width: 991.98px) {
    .row-gutters-40 {
        --bs-gutter-x: 30px;
    }
}

.custom-container {
    max-width: 1330px;
}
@media (max-width: 1800px) {
    .custom-container {
        max-width: 1530px;
    }
}
@media (max-width: 1500px) {
    .custom-container {
        max-width: 1320px;
    }
}
@media (max-width: 1199.98px) {
    .custom-container {
        max-width: 960px;
    }
}
@media (max-width: 991.98px) {
    .custom-container {
        max-width: 720px;
    }
}
@media (max-width: 767.98px) {
    .custom-container {
        max-width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .custom-container {
        max-width: 540px;
    }
}

@media (max-width: 1500px) {
    .container {
        max-width: 1260px;
    }
}
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
}
@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
}
@media (max-width: 767.98px) {
    .container {
        max-width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.password-recovery{padding: 16px 32px;font-size: 20px;text-align: center;font-style: normal;font-weight: 500;line-height: 100%;color: rgba(0, 0, 0, 0.7)}

/*=============================
	1. Button style
===============================*/
.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: rgba(89, 74, 66, 1);
    border: medium none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0;
    padding: 16px 32px;
    text-align: center;
    touch-action: manipulation;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    opacity: 0.5;
    overflow: hidden;
}
.btn > .btn-text {
    display: block;
    line-height: 1;
}
.btn svg {
    width: 24px;
    margin-right: 8px;
}
.btn:hover {
    color: #fff;
    background: rgba(89, 74, 66, 1);
    opacity: 1;
}
.btn:hover::before {
    top: -40%;
}

.border-btn {
    border: 2px solid #e9e9e9;
    padding: 18px 30px;
}
@media (max-width: 767.98px) {
    .border-btn {
        padding: 16px 25px;
    }
}
.border-btn::before {
    display: none;
}
.border-btn:hover {
    border-color: var(--tg-theme-primary);
    background: var(--tg-theme-primary);
}

/*=============================
    00. Keyframe Animation
===============================*/
@-webkit-keyframes lineMove {
    from {
        background-position: left;
    }
    to {
        background-position: right;
    }
}
@keyframes lineMove {
    from {
        background-position: left;
    }
    to {
        background-position: right;
    }
}
/*=============================
    00. Preloader
===============================*/
#preloader {
    background: var(--tg-common-color-white);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    z-index: 99;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.object {
    width: 20px;
    height: 20px;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    background: var(--tg-theme-primary);
}

#object_one {
    -webkit-animation: object_one 1.5s infinite;
    animation: object_one 1.5s infinite;
}

#object_two {
    -webkit-animation: object_two 1.5s infinite;
    animation: object_two 1.5s infinite;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

#object_three {
    -webkit-animation: object_three 1.5s infinite;
    animation: object_three 1.5s infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes object_one {
    75% {
        -webkit-transform: scale(0);
    }
}
@keyframes object_one {
    75% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
}
@-webkit-keyframes object_two {
    75% {
        -webkit-transform: scale(0);
    }
}
@keyframes object_two {
    75% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
}
@-webkit-keyframes object_three {
    75% {
        -webkit-transform: scale(0);
    }
}
@keyframes object_three {
    75% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
}
/*=============================
    - Background color
===============================*/
.grey-bg {
    background: var(--tg-common-color-gray);
}

.white-bg {
    background: var(--tg-common-color-white);
}

.black-bg {
    background: var(--tg-common-color-black);
}

/*=============================
    00. OffCanvas Menu
===============================*/
.offCanvas__wrap {
    position: fixed;
    overflow-y: auto;
    top: 0;
    left: 0;
    width: 395px;
    padding: 80px 60px 75px;
    transform: translateX(-100%);
    height: 100%;
    display: block;
    background-color: var(--tg-common-color-white);
    z-index: 1020;
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 16px 0px 32px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 16px 0px 32px 0px rgba(0, 0, 0, 0.06);
}
.offCanvas__wrap::-webkit-scrollbar {
    width: 0px;
}
@media (max-width: 1500px) {
    .offCanvas__wrap {
        width: 340px;
        padding: 50px 35px 45px;
    }
}
@media (max-width: 767.98px) {
    .offCanvas__wrap {
        width: 320px;
        padding: 50px 25px 40px;
    }
}
.offCanvas__body {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.offCanvas__toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--tg-common-color-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-theme-primary);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.offCanvas__toggle:hover {
    background: var(--tg-theme-secondary);
}
@media (max-width: 1500px) {
    .offCanvas__toggle {
        top: 20px;
        right: 25px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
.offCanvas__content p {
    margin: 0 0;
}
.offCanvas__logo {
    margin: 0 0 25px;
}
.offCanvas__instagram {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px 0;
    margin-left: -8.5px;
    margin-right: -8.5px;
    margin-top: 55px;
}
.offCanvas__instagram li {
    width: 33.333%;
    flex: 0 0 33.333%;
    padding-left: 8.5px;
    padding-right: 8.5px;
}
.offCanvas__instagram li a {
    display: block;
}
.offCanvas__instagram li a img {
    height: 70px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1500px) {
    .offCanvas__instagram {
        margin-top: 35px;
    }
}
.offCanvas__contact {
    margin: auto 0 0;
}
@media (max-width: 1500px) {
    .offCanvas__contact {
        margin: 20px 0 0;
    }
}
.offCanvas__contact .title {
    margin: 0 0 28px;
    font-size: 24px;
    letter-spacing: -0.5px;
}
@media (max-width: 1500px) {
    .offCanvas__contact .title {
        margin: 0 0 20px;
        font-size: 22px;
    }
}
.offCanvas__contact-list {
    margin: 0 0 73px;
}
@media (max-width: 1500px) {
    .offCanvas__contact-list {
        margin: 0 0 30px;
    }
}
.offCanvas__contact-list li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 0 20px;
    color: var(--tg-common-color-black);
    margin: 0 0 8px;
}
.offCanvas__contact-list li i {
    color: #c0bfbf;
    line-height: 1;
    width: 16px;
    flex: 0 0 auto;
}
.offCanvas__contact-list li a {
    color: var(--tg-common-color-black);
}
.offCanvas__contact-list li a:hover {
    color: var(--tg-theme-primary);
}
.offCanvas__social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 28px;
}
.offCanvas__social li {
    line-height: 1;
}
.offCanvas__social li a {
    display: block;
    font-size: 18px;
    color: var(--tg-common-color-black);
}
.offCanvas__social li a:hover {
    color: var(--tg-theme-primary);
}
.offCanvas__overlay {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
}
.offCanvas__menu-visible .offCanvas__overlay {
    opacity: 0.6;
    visibility: visible;
}
.offCanvas__menu-visible .offCanvas__wrap {
    transform: translateX(0);
}
.offCanvas__menu-wrapper {
    margin: 50px 0 50px;
}
@media (max-width: 767.98px) {
    .offCanvas__menu-wrapper {
        margin: 40px 0 40px;
    }
}
.offCanvas__menu-wrapper ul {
    margin: 0;
    padding: 0;
}
.offCanvas__menu-wrapper .navigation li {
    display: block;
    list-style: none;
    position: relative;
}
.offCanvas__menu-wrapper .navigation li.menu-item-has-children .sub-menu {
    display: none;
}
.offCanvas__menu-wrapper .navigation li .dropdown-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 14px;
    cursor: pointer;
}
.offCanvas__menu-wrapper .navigation li .dropdown-icon.fa-minus {
    color: var(--tg-theme-primary);
}
.offCanvas__menu-wrapper .navigation li .dropdown-icon.fa-minus.fa-plus {
    color: currentColor;
}
.offCanvas__menu-wrapper .navigation li > a {
    position: relative;
    display: block;
    line-height: 1.35;
    padding: 10px 40px 10px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--tg-heading-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.offCanvas__menu-wrapper .navigation li.active > a {
    color: var(--tg-theme-primary);
}
.offCanvas__menu-wrapper .navigation > li .sub-menu {
    margin-left: 20px;
}
.offCanvas__menu-wrapper .navigation > li .sub-menu li a {
    font-size: 16px;
    padding: 8px 40px 8px 0;
}

/*=============================
    00. Breadcrumb
===============================*/
.breadcrumb {
    gap: 5px 13px;
    margin: 0 0;
}
.breadcrumb-area {
    margin: 0;
}
.breadcrumb-content {
    background: var(--tg-common-color-white);
    padding: 24px 30px;
}
@media (max-width: 767.98px) {
    .breadcrumb-content {
        padding: 24px 25px;
    }
}
.breadcrumb-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 13px;
    padding: 0 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
}
.breadcrumb-item + .breadcrumb-item {
    padding: 0 0;
}
.breadcrumb-item::before {
    display: none;
}
.breadcrumb-item::after {
    content: "\f105";
    display: block;
    font-family: var(--tg-icon-font-family);
    color: var(--tg-theme-primary);
    opacity: 0.4;
}
.breadcrumb-item:last-child::after {
    display: none;
}
.breadcrumb-item.active {
    color: var(--tg-theme-primary);
}
.breadcrumb-item a {
    display: block;
    color: var(--tg-heading-color);
}

/*=============================
    00. Scroll Top
===============================*/
.scroll__top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: fixed;
    bottom: -10%;
    right: 50px;
    font-size: 16px;
    border-radius: 0;
    z-index: 99;
    color: var(--tg-common-color-white);
    text-align: center;
    cursor: pointer;
    background: var(--tg-theme-primary);
    transition: 1s ease;
    border: none;
}
.scroll__top.open {
    bottom: 30px;
}
@media (max-width: 767.98px) {
    .scroll__top.open {
        bottom: 20px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}
.scroll__top::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll__top:hover {
    background: var(--tg-theme-secondary);
}
@media (max-width: 991.98px) {
    .scroll__top {
        right: 30px;
    }
}
@media (max-width: 767.98px) {
    .scroll__top {
        right: 15px;
    }
}

/*=============================
    00. Section Title
===============================*/
.section__title-wrap {
    overflow: hidden;
}
.section__title-wrap::after {
    content: "";
    display: block;
    /*background-image: url(../assets/section_line.png);*/
    background-color: rgb(255, 229, 0);
    background-repeat: repeat;
    background-size: auto 100%;
    width: 100%;
    height: 4px;
    margin-top: 20px;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-animation-name: lineMove;
    animation-name: lineMove;
}
.section__sub-title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 3px;
    color: var(--tg-theme-primary);
}
.section__main-title {
    margin: 0 0;
    font-size: 24px;
    letter-spacing: -0.5px;
}
@media (max-width: 767.98px) {
    .section__read-more {
        margin-top: 8px;
    }
}
.section__read-more a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    gap: 8px;
    letter-spacing: -0.5px;
}
.section__read-more a:hover {
    color: var(--tg-theme-primary);
}
.section__hover-line:hover .section__title-wrap::after {
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}
.section__title-white .section__sub-title {
    color: rgb(255, 229, 0);
    font-weight: bold;
    font-size: 16px;
}
.section__title-white .section__main-title {
    color: var(--tg-common-color-white);
}
.section__title-white .section__read-more a {
    color: var(--tg-common-color-white);
}
.section__title-white .section__read-more a:hover {
    color: var(--tg-theme-primary);
}

/*=============================
	02. Header
===============================*/
.header__top {
    background: rgba(11, 44, 85, 1);
    padding: 40px 0 23px;
}
@media (max-width: 1199.98px) {
    .header__top {
        padding: 15px 0 15px;
    }
    .tg-header__area{
        background-color: rgba(11, 44, 85, 1)!important;
        border-top: 1px solid rgb(255, 229, 0);
        padding-top: 5px;
    }
}
.header__top-search {
}
@media (max-width: 991.98px) {
    .header__top-search {
        margin-left: auto;
    }
}
@media (max-width: 767.98px) {
    .header__top-search {
        max-width: 100%;
        width: 100%;
    }
}
.header__top-search form {
    position: relative;
}
.header__top-search form::before {
    content: "\f002";
    position: absolute;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: var(--tg-icon-font-family);
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    line-height: 1;
}
.header__top-search form input {display: block;width: 100%;padding: 10px 40px 10px 15px;height: 35px;background: transparent;border-radius: 3px;border: 2px solid #fff;}
.header__top-search form input::placeholder {
    font-size: 12px;
    color: #fff;
}
.header__top-right ul.list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
}
@media (max-width: 767.98px) {
    .header__top-right ul.list-wrap {
        justify-content: flex-end;
    }
}
.header__top-right .btn {
    padding: 15px 20px;
}
@media (max-width: 991.98px) {
    .header__top-right .lang {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .header__top-right .lang {
        display: block;
    }
}
.header__top-right .lang .dropdown-toggle {
    display: block;
    border: none;
    background: var(--tg-common-color-white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    padding: 15px 20px;
    line-height: 1;
}
.header__top-right .lang .dropdown-toggle::after {
    content: "\f107";
    margin: 0 0;
    vertical-align: middle;
    border: none;
    font-family: var(--tg-icon-font-family);
    font-weight: var(--tg-fw-regular);
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.header__top-right .lang .dropdown-toggle.show::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.header__top-right .lang .dropdown-menu {
    min-width: 100%;
    width: 100%;
    border: none;
}
.header__top-right .lang .dropdown-menu li a {
    display: block;
    font-weight: var(--tg-fw-bold);
    font-size: 14px;
    text-transform: uppercase;
}
.header__top-right .lang .dropdown-menu li a.active, .header__top-right .lang .dropdown-menu li a:active {
    background-color: var(--tg-theme-primary);
}
.header__top-bar {
    background: var(--tg-theme-secondary);
    padding: 9px 0;
}
.header__top-bar-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 767.98px) {
    .header__top-bar-right {
        justify-content: center;
    }
}
.header__top-bar-right ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    gap: 0 15px;
    padding-right: 30px;
    margin-right: 30px;
}
@media (max-width: 1199.98px) {
    .header__top-bar-right ul {
        padding-right: 25px;
        margin-right: 25px;
    }
}
.header__top-bar-right ul::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #272727;
}
.header__top-bar-right ul li {
    display: block;
}
.header__top-bar-right ul li a {
    display: block;
    color: #767676;
    font-size: 14px;
}
.header__top-bar-right ul li a:hover {
    color: var(--tg-theme-primary);
}
.header__top-bar-right .sign-in {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-common-color-white);
}
.header__top-bar-right .sign-in i {
    color: #565656;
    margin-right: 3px;
}
.header__top-bar-right .sign-in:hover {
    color: var(--tg-theme-primary);
}
.header__top-menu > ul.list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px 0;
}
.header__top-menu > ul.list-wrap .dropdown-menu {
    width: 6rem;
    background: var(--tg-theme-secondary);
    inset: 12px auto auto -15px !important;
    border-radius: 0;
}
.header__top-menu > ul.list-wrap .dropdown-menu li a {
    color: var(--tg-common-color-white);
}
.header__top-menu > ul.list-wrap .dropdown-menu li a.active, .header__top-menu > ul.list-wrap .dropdown-menu li a:hover, .header__top-menu > ul.list-wrap .dropdown-menu li a:focus, .header__top-menu > ul.list-wrap .dropdown-menu li a:active {
    background-color: var(--tg-theme-primary);
}
.header__top-menu > ul.list-wrap .lang {
    padding-right: 30px;
    margin-right: 30px;
    position: relative;
}
@media (max-width: 1199.98px) {
    .header__top-menu > ul.list-wrap .lang {
        padding-right: 25px;
        margin-right: 25px;
    }
}
.header__top-menu > ul.list-wrap .lang::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #272727;
}
.header__top-menu > ul.list-wrap .lang .dropdown-toggle {
    background: transparent;
    color: var(--tg-common-color-white);
    padding: 0 0;
    display: flex;
    align-items: center;
}
.header__top-menu > ul.list-wrap > li {
    margin-right: 40px;
}
@media (max-width: 1199.98px) {
    .header__top-menu > ul.list-wrap > li {
        margin-right: 30px;
    }
}
.header__top-menu > ul.list-wrap > li:last-child {
    margin-right: 0;
}
.header__top-menu > ul.list-wrap > li > a {
    display: block;
    color: var(--tg-common-color-white);
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    text-transform: uppercase;
}
.header__top-menu > ul.list-wrap > li > a:hover {
    color: var(--tg-theme-primary);
}
.header__top-menu > ul.list-wrap > li.buy-theme a {
    color: var(--tg-body-color);
}
.header__top-menu > ul.list-wrap > li.buy-theme a span {
    color: var(--tg-theme-primary);
}
.header__top-menu > ul.list-wrap > li.buy-theme a:hover {
    color: var(--tg-theme-primary);
}

.offcanvas-toggle a {
    display: block;
    font-size: 26px;
    color: rgb(5, 41, 98)
}
.offcanvas-toggle a:hover {
    color: var(--tg-theme-primary);
}
@media (max-width: 767.98px) {
    .offcanvas-toggle {
        display: none;
    }
}

.transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}
@media (max-width: 767.98px) {
    .transparent-header {
        top: 0;
    }
}

.tg-header__area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--tg-theme-primary);
    display: none;
    margin-top: 1px;
}
@media (max-width: 991.98px) {
    .tg-header__area .mobile-nav-toggler {
        display: block;
    }
}

.tg-header__area{background-color: rgb(255, 229, 0);}
.tgmenu__wrap {
    padding: 0;
}
@media (max-width: 991.98px) {
    .tgmenu__wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding: 17px 0;
    }
}
.tgmenu__nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}
@media (max-width: 991.98px) {
    .tgmenu__nav {
        justify-content: space-between;
        flex-grow: 1;
    }
}
.tgmenu__navbar-wrap {
    display: flex;
    flex-grow: 1;
}
.tgmenu__navbar-wrap ul {
    display: flex;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto 0;
}
.tgmenu__navbar-wrap ul li {
    display: block;
    position: relative;
    list-style: none;
}
.tgmenu__navbar-wrap ul li a {
    font-size: 16px;
    font-weight: var(--tg-fw-bold);
    text-transform: uppercase;
    color: rgb(5, 41, 98);
    padding: 8px 20px;
    display: inline-flex;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.tgmenu__navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 230px;
    border: 1px solid #f5f5f5;
    background: var(--tg-common-color-white);
    margin: 0;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 0;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}
.tgmenu__navbar-wrap ul li .sub-menu .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
}
.tgmenu__navbar-wrap ul li .sub-menu li {
    margin-left: 0;
    text-align: left;
    display: block;
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    opacity: 0;
    visibility: hidden;
}
.tgmenu__navbar-wrap ul li .sub-menu li a {
    display: block;
    padding: 10px 15px 10px 25px;
    line-height: 1.4;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
}
.tgmenu__navbar-wrap ul li .sub-menu li.active > a, .tgmenu__navbar-wrap ul li .sub-menu li:hover > a {
    color: var(--tg-theme-primary);
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+4) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+5) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+6) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+7) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+8) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu > li:nth-child(2n+9) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}
.tgmenu__navbar-wrap > ul > li.menu-item-has-children > a::after {
    content: "\f067";
    display: inline-block;
    font-weight: 600;
    font-family: var(--tg-icon-font-family);
    margin-left: 6px;
    font-size: 12px;
    color: #bbbbbb;
}
.tgmenu__navbar-wrap > ul > li.menu-item-has-children:hover > a::after {
    content: "\f068";
}
.tgmenu__navbar-wrap > ul > li.active a, .tgmenu__navbar-wrap > ul > li.active a::after, .tgmenu__navbar-wrap > ul > li:hover a, .tgmenu__navbar-wrap > ul > li:hover a::after {
    color: var(--tg-theme-primary);
}
.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
    display: none;
}
.tgmenu__action > ul {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.tgmenu__action > ul li {
    position: relative;
    margin-left: 15px;
}
.tgmenu__action > ul li:first-child {
    margin-left: 0;
}
.tgmenu__action > ul li a {
    color: var(--tg-heading-color);
    font-size: 18px;
    display: block;
    line-height: 1;
}
.tgmenu__action > ul li a:hover {
    color: var(--tg-theme-primary);
}
.tgmenu__action > ul li.mode-switcher {
}
@media (max-width: 767.98px) {
    .tgmenu__action > ul li.mode-switcher {
        margin-right: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgmenu__action > ul li.mode-switcher {
        margin-right: 15px;
    }
}
@media (max-width: 767.98px) {
    .tgmenu__action > ul li.user {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgmenu__action > ul li.user {
        display: block;
    }
}
@media (max-width: 767.98px) {
    .tgmenu__action > ul li.header-cart {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgmenu__action > ul li.header-cart {
        display: block;
    }
}
.tgmenu__action > ul .header-btn .btn {
    color: var(--tg-common-color-white);
    font-size: 14px;
    padding: 13px 22px;
}
@media (max-width: 1199.98px) {
    .tgmenu__action > ul .header-btn {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .tgmenu__action {
        margin-right: 40px;
    }
}
@media (max-width: 767.98px) {
    .tgmenu__action {
        margin-right: 25px;
    }
}

.switcher__tab {
    display: flex;
}
.switcher__btn {
    cursor: pointer;
    font-size: 18px;
}
.switcher__btn.light-mode {
    color: var(--tg-heading-color);
}
.switcher__btn.dark-mode {
    color: #e7e7e7;
}
.switcher__mode {
    height: 25px;
    width: 50px;
    display: block;
    position: relative;
    margin: 0 20px;
    background: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -o-border-radius: 35px;
    -ms-border-radius: 35px;
    border-radius: 35px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.switcher__mode::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 2px;
    background-color: #fff;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.switcher__mode.active::before {
    left: calc(100% - 15px);
}

.logo a {
    display: inline-block;
    position: relative;
}
.logo a img {
    max-width: 109px;
}
.logo-light {
    display: none;
}
.header-light-logo {
    display: none;
}

.sticky-menu {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: var(--tg-common-color-gray);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
}
.sticky-menu .tgmenu__wrap {
    border: none;
}
@media (max-width: 991.98px) {
    .sticky-menu .tgmenu__wrap {
        padding: 20px 0;
    }
}

#header-fixed-height.active-height {
    display: block;
    height: 62px;
}
@media (max-width: 991.98px) {
    #header-fixed-height.active-height {
        height: 68px;
    }
}

.header__style-two .header__top {
    padding: 40px 0;
}
@media (max-width: 1500px) {
    .header__style-two .header__top {
        padding: 25px 0;
    }
}
@media (max-width: 991.98px) {
    .header__style-two .header__top {
        padding: 20px 0;
    }
}
.header__style-two .footer__social ul li a {
    color: var(--tg-heading-color);
}
.header__style-two .footer__social ul li a:hover {
    color: var(--tg-theme-primary);
}
.header__style-two .footer__social ul li a i {
    color: #cdcdcd;
}
.header__style-two .tgmenu__wrap {
    padding: 0 0;
}
@media (max-width: 991.98px) {
    .header__style-two .tgmenu__wrap {
        padding: 17px 0;
    }
}
@media (max-width: 991.98px) {
    .header__style-two .sticky-menu .tgmenu__wrap {
        padding: 20px 0;
    }
}
.header__style-two .tgmenu__navbar-wrap > ul {
    margin: 0 auto 0 0;
}
.header__style-two .tgmenu__navbar-wrap > ul > li:first-child > a {
    padding-left: 0;
}
.header__style-two .tgmenu__action > ul li.header-search a i {
    width: 18px;
    text-align: center;
}
.header__style-two .header__top-search {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    width: 260px;
    display: none;
    box-shadow: rgba(25, 25, 25, 0.04) 0px 10px 15px;
    z-index: 9;
}
.header__style-two .header__top-search input {
    padding: 13px 20px 13px 40px;
    height: 48px;
}
@media (max-width: 991.98px) {
    .header__style-two .footer__social ul {
        justify-content: center;
    }
}
@media (max-width: 767.98px) {
    .header__style-two .footer__social ul {
        margin-top: 0;
    }
}
@media (max-width: 767.98px) {
    .header__style-two .tgmenu__action li.header-search {
        display: none;
    }
}
.header__instagram-item a {
    display: block;
    position: relative;
    z-index: 1;
}
.header__instagram-item a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-theme-secondary);
    opacity: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.header__instagram-item a:hover::after {
    opacity: 0.7;
}
.header__instagram-item img {
    height: 260px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1500px) {
    .header__instagram-item img {
        height: 220px;
    }
}
@media (max-width: 991.98px) {
    .header__instagram-item img {
        height: 170px;
    }
}
@media (max-width: 767.98px) {
    .header__instagram-item img {
        height: 100px;
    }
}

.header__style-three {
    background: var(--tg-theme-secondary);
}
.header__style-three #header-fixed-height.active-height {
    height: 80px;
}
@media (max-width: 991.98px) {
    .header__style-three #header-fixed-height.active-height {
        height: 66px;
    }
}
.header__style-three .tgmenu__wrap {
    border: none;
}
.header__style-three .offcanvas-toggle a {
    color: var(--tg-common-color-white);
    opacity: 0.7;
}
.header__style-three .offcanvas-toggle a:hover {
    opacity: 1;
}
.header__style-three .tgmenu__navbar-wrap > ul {
    margin: 0 auto;
}
.header__style-three .tgmenu__navbar-wrap > ul > li a {
    color: var(--tg-common-color-white);
    padding: 33px 28px;
}
@media (max-width: 1199.98px) {
    .header__style-three .tgmenu__navbar-wrap > ul > li a {
        padding: 33px 20px;
    }
}
.header__style-three .tgmenu__navbar-wrap > ul > li:first-child > a {
    padding: 33px 28px;
}
@media (max-width: 1199.98px) {
    .header__style-three .tgmenu__navbar-wrap > ul > li:first-child > a {
        padding: 33px 20px;
    }
}
.header__style-three .tgmenu__action > ul li a {
    color: var(--tg-common-color-white);
}
.header__style-three .tgmenu__action > ul li a:hover {
    color: var(--tg-theme-primary);
}
@media (max-width: 1199.98px) {
    .header__style-three .tgmenu__action > ul li.mode-switcher {
        margin-right: 5px;
    }
}
@media (max-width: 991.98px) {
    .header__style-three .tgmenu__action > ul li.mode-switcher {
        margin-right: 20px;
    }
}
@media (max-width: 767.98px) {
    .header__style-three .tgmenu__action > ul li.mode-switcher {
        margin-right: 0;
    }
}
.header__style-three.header__style-two .header__top-search {
    top: calc(100% + 30px);
}
@media (max-width: 991.98px) {
    .header__style-three.header__style-two .header__top-search {
        top: calc(100% + 24px);
    }
}
.header__style-three .switcher__btn.light-mode {
    color: var(--tg-common-color-white);
}
.header__style-three .switcher__btn.dark-mode {
    color: #363636;
}
.header__style-three .sticky-menu {
    background: var(--tg-theme-secondary);
}
@media (max-width: 991.98px) {
    .header__style-three .sticky-menu .header__top-search {
        top: calc(100% + 26px);
    }
}

.header__style-four .header__top {
    padding: 30px 0;
}
@media (max-width: 1500px) {
    .header__style-four .header__top {
        padding: 20px 0;
    }
}
@media (max-width: 1500px) {
    .header__style-four .header__banner-add img {
        max-height: 65px;
    }
}

.header__style-five .tg-header__area {
    background-image: url(../img/bg/header_bg.jpg);
    background-position: center;
    background-size: cover;
}
.header__style-five .tg-header__area .mobile-nav-toggler {
    color: var(--tg-theme-secondary);
}
.header__style-five .offcanvas-toggle a {
    color: var(--tg-theme-secondary);
}
.header__style-five .tgmenu__navbar-wrap > ul > li > a {
    color: var(--tg-theme-secondary);
}
.header__style-five .tgmenu__navbar-wrap > ul > li > a::after {
    color: var(--tg-theme-secondary);
}
.header__style-five .tgmenu__navbar-wrap > ul > li:hover > a, .header__style-five .tgmenu__navbar-wrap > ul > li.active > a {
    color: var(--tg-theme-primary);
}
.header__style-five .tgmenu__navbar-wrap > ul > li:hover > a::after, .header__style-five .tgmenu__navbar-wrap > ul > li.active > a::after {
    color: var(--tg-theme-primary);
}
.header__style-five .tgmenu__action > ul li a {
    color: var(--tg-theme-secondary);
}

.header__style-six .tg-header__area {
    background-color: #ebebeb;
}
.header__style-six .tg-header__area.sticky-menu {
    background-color: var(--tg-common-color-gray);
}
.header__style-six .tgmenu__wrap {
    border: none;
}
.header__style-six .switcher__btn.dark-mode {
    color: #d6d6d6;
}

.header__style-seven .header__top {
    padding: 40px 0;
}
@media (max-width: 1199.98px) {
    .header__style-seven .header__top {
        padding: 25px 0;
    }
}
.header__style-seven .header__top-search {
    max-width: 360px;
    margin: 0 auto;
}
@media (max-width: 767.98px) {
    .header__style-seven .header__top-search {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .header__style-seven .offcanvas-toggle {
        display: block;
    }
}
@media (max-width: 767.98px) {
    .header__style-seven .header__top-search {
        margin: 15px auto 0;
    }
}

/*=============================
	03. Mobile Menu
===============================*/
.tgmobile__search {
    padding: 0 20px 25px 25px;
}
.tgmobile__search form {
    position: relative;
}
.tgmobile__search input {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 45px 10px 20px;
    font-size: 14px;
    height: 45px;
    background: var(--tg-common-color-gray);
}
.tgmobile__search input::placeholder {
    font-size: 14px;
    color: #c7c7c7;
}
.tgmobile__search button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    padding: 0;
    right: 20px;
    line-height: 1;
    background: transparent;
    color: var(--tg-heading-color);
}
.tgmobile__menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -moz-transform: translateX(101%);
    -ms-transform: translateX(101%);
    -o-transform: translateX(101%);
    transform: translateX(101%);
}
.tgmobile__menu .navbar-collapse {
    display: block !important;
}
.tgmobile__menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}
.tgmobile__menu .nav-logo img {
    width: 109px;
}
.tgmobile__menu .nav-logo .logo-light {
    display: none;
}
.tgmobile__menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}
.tgmobile__menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tgmobile__menu .navigation li.current > a::before {
    height: 100%;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 20px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: var(--tg-heading-color);
    background: #efefef;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
    border-radius: 10px;
    width: 12px;
    height: 2px;
    background-color: var(--tg-common-color-black);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
    border-radius: 10px;
    width: 2px;
    height: 12px;
    background-color: var(--tg-common-color-black);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
    background-color: var(--tg-theme-primary);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
    background-color: var(--tg-common-color-white);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
    display: none;
}
.tgmobile__menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 1.5;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--tg-heading-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.tgmobile__menu .navigation li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.tgmobile__menu .navigation li ul li > a {
    margin-left: 20px;
}
.tgmobile__menu .navigation li ul li ul li a {
    margin-left: 40px;
}
.tgmobile__menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
}
.tgmobile__menu .navigation li > ul {
    display: none;
}
.tgmobile__menu .navigation li > ul > li > ul {
    display: none;
}
.tgmobile__menu .navigation ul {
    padding: 0;
    margin: 0;
}
.tgmobile__menu .navigation ul li a {
    display: block;
}
.tgmobile__menu .navigation ul li ul li > a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}
.tgmobile__menu .navigation:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tgmobile__menu .navigation > li > ul > li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tgmobile__menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: var(--tg-theme-primary);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.tgmobile__menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}
.tgmobile__menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.tgmobile__menu .social-links ul li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}
.tgmobile__menu .social-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #292b37;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #efefef;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.tgmobile__menu .social-links ul li a:hover {
    border-color: var(--tg-theme-primary);
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
}
.tgmobile__menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--tg-common-color-white);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}
.tgmobile__menu-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--tg-common-color-white);
    margin-right: 30px;
    top: 15px;
}

.mobile-menu-visible {
    overflow: hidden;
}
.mobile-menu-visible .tgmobile__menu {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu-visible .tgmobile__menu-backdrop {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-visible .tgmobile__menu .close-btn {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

/*=============================
    04. Banner
===============================*/
.tgbanner__area {
    padding: 20px 0 20px 0;
}
.tgbanner__grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 70% 1fr;
    column-gap: 40px;
}
@media (max-width: 1199.98px) {
    .tgbanner__grid {
        grid-template-columns: 64% 1fr;
    }
}
@media (max-width: 991.98px) {
    .tgbanner__grid {
        grid-template-columns: auto;
    }
}
.tgbanner__post {
    margin: 0;
}
.tgbanner__post.big-post .tgbanner__content {
    background-image: url(../assets/content_pattern.png);
    margin: -50px 0 0 60px;
    background-color: var(--tg-common-color-white);
    padding: 35px 40px 35px;
    max-width: 690px;
    position: relative;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .tgbanner__post.big-post .tgbanner__content {
        max-width: 100%;
        margin: -50px 40px 0 40px;
        padding: 30px 30px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__post.big-post .tgbanner__content {
        margin: 0 0;
        padding: 30px 25px;
    }
}
.tgbanner__post.big-post img {
    height: 570px;
    object-fit: cover;
}
@media (max-width: 1199.98px) {
    .tgbanner__post.big-post img {
        height: 390px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__post.big-post img {
        height: 200px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__post.big-post img {
        height: 280px;
    }
}
.tgbanner__post.small-post .tgbanner__thumb {
    margin: 0 0 30px;
}
@media (max-width: 1199.98px) {
    .tgbanner__post.small-post .tgbanner__thumb {
        margin: 0 0 20px;
    }
}
.tgbanner__post.small-post .tgbanner__content {
    margin: 0 0;
    position: relative;
}
.tgbanner__post.small-post .tgbanner__content .title {
    font-size: 20px;
    line-height: 1.4;
}
.tgbanner__post.small-post .tgbanner__content-meta {
    margin: 0 0 7px;
}
.tgbanner__post.small-post img {
    height: 180px;
    object-fit: cover;
}
@media (max-width: 767.98px) {
    .tgbanner__post.small-post img {
        height: 200px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__post.small-post img {
        height: 280px;
    }
}
.tgbanner__thumb img {
    width: 100%;
}
.tgbanner__content .title {
    margin: 0 0 0;
    font-size: 28px;
}
@media (max-width: 1199.98px) {
    .tgbanner__content .title {
        font-size: 26px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__content .title {
        font-size: 20px;
        line-height: 1.35;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__content .title {
        font-size: 24px;
        line-height: 1.3;
    }
}
.tgbanner__content-meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 11px;
}
.tgbanner__content-meta li {
    margin-right: 14px;
    padding-right: 14px;
    position: relative;
    font-size: 15px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    text-transform: uppercase;
}
.tgbanner__content-meta li .by {
    color: #d8d8d8;
}
.tgbanner__content-meta li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.tgbanner__content-meta li:last-child::after {
    display: none;
}
.tgbanner__content-meta li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-theme-primary);
}
.tgbanner__content-meta li:not(.category) a {
    color: var(--tg-heading-color);
}
.tgbanner__content-meta li:not(.category) a:hover {
    color: var(--tg-theme-primary);
}
.tgbanner__side-post {
    margin: 0;
}
@media (max-width: 991.98px) {
    .tgbanner__side-post {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__side-post {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}
.tgbanner__side-post .small-post {
    margin: 0 0;
}
.tgbanner__side-post .small-post::after {
    content: "";
    display: block;
    background-color: rgb(255, 229, 0);
    width: 100%;
    height: 3px;
    margin: 30px 0 30px;
}
@media (max-width: 1199.98px) {
    .tgbanner__side-post .small-post::after {
        margin: 25px 0 30px;
    }
}
@media (max-width: 991.98px) {
    .tgbanner__side-post .small-post::after {
        margin: 25px 0 0;
    }
}
.tgbanner__side-post .small-post:last-child::after {
    display: none;
}
@media (max-width: 991.98px) {
    .tgbanner__side-post .small-post:last-child::after {
        display: block;
    }
}
.tgbanner__area-three .trending__post {
    margin: 0 0 40px;
}
.tgbanner__area-three .trending__post::after {
    content: "";
    display: block;
    background-image: url(../img/bg/line4.png);
    width: 100%;
    height: 8px;
    margin: 35px 0 0;
}
@media (max-width: 1199.98px) {
    .tgbanner__area-three .trending__post-content .title {
        font-size: 20px;
    }
}
.tgbanner__big-post {
    margin: 0 30px 40px;
}
@media (max-width: 1199.98px) {
    .tgbanner__big-post {
        margin: 0 30px 60px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__big-post {
        margin: 0 0 60px;
    }
}
.tgbanner__big-post-thumb {
    margin: 0 0 35px;
}
@media (max-width: 767.98px) {
    .tgbanner__big-post-thumb {
        margin: 0 0 25px;
    }
}
.tgbanner__big-post-thumb img {
    height: 420px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1500px) {
    .tgbanner__big-post-thumb img {
        height: 320px;
    }
}
@media (max-width: 991.98px) {
    .tgbanner__big-post-thumb img {
        height: 360px;
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__big-post-thumb img {
        height: 220px;
        width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__big-post-thumb img {
        height: 300px;
    }
}
.tgbanner__big-post .tgbanner__content-meta {
    justify-content: center;
}
.tgbanner__big-post-content .title {
    font-size: 30px;
    margin: 0 0 0;
    line-height: 1.3;
    letter-spacing: -0.7px;
}
@media (max-width: 767.98px) {
    .tgbanner__big-post-content .title {
        font-size: 22px;
        letter-spacing: -0.4px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__big-post-content .title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
}
.tgbanner__big-post-content .read-more {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ececec;
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-heading-color);
    font-size: 14px;
    padding: 14px 25px;
    margin: 38px 0 0;
}
.tgbanner__big-post-content .read-more:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
}
@media (max-width: 767.98px) {
    .tgbanner__big-post-content .read-more {
        margin: 30px 0 0;
    }
}
.tgbanner__trending-news {
    margin: 0 0 40px;
}
@media (max-width: 991.98px) {
    .tgbanner__trending-news {
        padding-left: 15px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__trending-news {
        padding-left: 0;
    }
}
.tgbanner__trending-title {
    font-size: 24px;
    margin: 0 0 0;
    letter-spacing: -0.7px;
}
.tgbanner__trending-title::after {
    content: "";
    display: block;
    background-image: url(../img/bg/line4.png);
    width: 100%;
    height: 8px;
    margin: 18px 0 25px;
}
.tgbanner__trending-post-list > li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0 20px;
    position: relative;
    padding: 0 0 35px;
    margin: 0 0 25px;
}
.tgbanner__trending-post-list > li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../img/bg/line4.png);
    width: 100%;
    height: 8px;
}
.tgbanner__trending-post-list > li:last-child {
    padding: 0 0;
    margin: 0 0;
}
.tgbanner__trending-post-list > li:last-child::after {
    display: none;
}
.tgbanner__trending-post-list .post-count {
    font-size: 40px;
    font-weight: var(--tg-fw-bold);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #e0e0e0;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1;
    display: block;
    opacity: 0.9;
}
.tgbanner__trending-post-list .tgbanner__content-meta {
    margin: 0 0 5px;
}
.tgbanner__trending-post-content .title {
    font-size: 20px;
    margin: 0 0 0;
    line-height: 1.35;
}
@media (max-width: 1500px) {
    .tgbanner__trending-post-content .title {
        font-size: 18px;
    }
}
@media (max-width: 1199.98px) {
    .tgbanner__trending-post-content .title {
        font-size: 20px;
    }
}

.slider__area {
    padding: 80px 0;
}
@media (max-width: 991.98px) {
    .slider__area .tgbanner__content-meta {
        justify-content: center;
    }
}
@media (max-width: 991.98px) {
    .slider__content {
        text-align: center;
    }
}
.slider__content .title {
    font-size: 45px;
    margin: 0 0 40px;
}
@media (max-width: 1199.98px) {
    .slider__content .title {
        font-size: 40px;
    }
}
@media (max-width: 767.98px) {
    .slider__content .title {
        font-size: 30px;
        margin: 0 0 30px;
    }
}
.slider__content .btn {
    background: var(--tg-common-color-white);
    font-size: 16px;
    text-transform: capitalize;
    color: var(--tg-heading-color);
}
.slider__content .btn::before {
    background: var(--tg-theme-primary);
}
.slider__content .btn:hover {
    color: var(--tg-common-color-white);
}
.slider__img-wrap {
    position: relative;
    max-width: 660px;
    margin-left: auto;
}
@media (max-width: 991.98px) {
    .slider__img-wrap {
        max-width: 540px;
        margin: 50px auto 0;
    }
}
.slider__img-wrap::before {
    content: "";
    position: absolute;
    left: -65px;
    top: 60px;
    width: 127px;
    height: 127px;
    background: var(--tg-common-color-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}
@media (max-width: 1199.98px) {
    .slider__img-wrap::before {
        left: -65px;
        top: 40px;
        width: 110px;
        height: 110px;
    }
}
.slider__img-wrap .main-img {
    height: 500px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1500px) {
    .slider__img-wrap .main-img {
        height: 420px;
    }
}
@media (max-width: 767.98px) {
    .slider__img-wrap .main-img {
        height: 300px;
    }
}
.slider-active {
    position: relative;
}
.slider-active::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -40px;
    background-image: url(../img/others/banner_pattern.png);
    background-repeat: no-repeat;
    width: 453px;
    height: 291px;
    z-index: -1;
}
@media (max-width: 1500px) {
    .slider-active::after {
        right: -65px;
        bottom: -40px;
        width: 298px;
        height: 170px;
    }
}
@media (max-width: 1199.98px) {
    .slider-active::after {
        right: 0;
        bottom: 0;
    }
}
@media (max-width: 767.98px) {
    .slider-active::after {
        display: none;
    }
}
.slider-active .slick-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: -20px;
    gap: 5px;
}
@media (max-width: 991.98px) {
    .slider-active .slick-dots {
        justify-content: center;
        margin: 40px 0 0;
    }
}
.slider-active .slick-dots li {
    line-height: 1;
}
.slider-active .slick-dots li button {
    border: 2px solid transparent;
    background: transparent;
    line-height: 1;
    display: block;
    text-indent: -99999px;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: relative;
}
.slider-active .slick-dots li button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #d5d5d5;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.slider-active .slick-dots li.slick-active button {
    border-color: #d9d9d9;
}
.slider-active .slick-dots li.slick-active button::after {
    background: var(--tg-theme-secondary);
}
.slider__style-two {
    background-position: center;
    background-size: cover;
}
.slider__style-two .slider__item {
    background-color: var(--tg-common-color-white);
}
.slider__style-two .slider__content {
    padding: 80px 60px 80px 80px;
}
@media (max-width: 1500px) {
    .slider__style-two .slider__content {
        padding: 70px 60px;
    }
}
@media (max-width: 1199.98px) {
    .slider__style-two .slider__content {
        padding: 35px 40px;
    }
}
@media (max-width: 991.98px) {
    .slider__style-two .slider__content {
        padding: 60px 60px;
    }
}
@media (max-width: 767.98px) {
    .slider__style-two .slider__content {
        padding: 40px 25px;
    }
}
@media (max-width: 767.98px) {
    .slider__style-two .slider__content {
        padding: 60px 35px;
    }
}
.slider__style-two .slider__content .title {
    font-size: 50px;
    margin: 0 0 40px;
    letter-spacing: -2px;
}
@media (max-width: 1500px) {
    .slider__style-two .slider__content .title {
        font-size: 46px;
        margin: 0 0 35px;
    }
}
@media (max-width: 1199.98px) {
    .slider__style-two .slider__content .title {
        font-size: 36px;
        margin: 0 0 30px;
        letter-spacing: -1px;
    }
}
@media (max-width: 767.98px) {
    .slider__style-two .slider__content .title {
        font-size: 28px;
        margin: 0 0 30px;
        letter-spacing: -0.5px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider__style-two .slider__content .title {
        font-size: 40px;
        margin: 0 0 30px;
        letter-spacing: -0.5px;
    }
}
.slider__style-two .slider__content .btn:hover {
    background: var(--tg-theme-primary);
}
@media (max-width: 991.98px) {
    .slider__style-two .slider__img-wrap {
        text-align: center;
        margin: 0 auto 0;
    }
}
.slider__style-two .slider__img-wrap::before {
    display: none;
}
.slider__style-two .slider__img-wrap .main-img {
    height: 600px;
    margin-left: auto;
}
@media (max-width: 1500px) {
    .slider__style-two .slider__img-wrap .main-img {
        height: 500px;
    }
}
@media (max-width: 1199.98px) {
    .slider__style-two .slider__img-wrap .main-img {
        height: 400px;
    }
}
@media (max-width: 991.98px) {
    .slider__style-two .slider__img-wrap .main-img {
        height: 400px;
        margin: 0 auto;
    }
}
@media (max-width: 767.98px) {
    .slider__style-two .slider__img-wrap .main-img {
        height: auto;
        margin: 0 auto;
    }
}
.slider__style-two .slider-active::after {
    display: none;
}
.slider__style-two .slider-active .slick-dots {
    position: absolute;
    left: 80px;
    bottom: 50px;
    margin: 0 0;
}
@media (max-width: 1500px) {
    .slider__style-two .slider-active .slick-dots {
        left: 60px;
        bottom: 30px;
    }
}
@media (max-width: 991.98px) {
    .slider__style-two .slider-active .slick-dots {
        left: 0;
        bottom: 30px;
        margin: 0 auto;
        right: 0;
    }
}
.slider__style-two .slider-active .slick-dots li.slick-active button::after {
    background: var(--tg-theme-primary);
}

.tgslider__area-four {
    overflow: hidden;
}
.tgslider__top {
    position: relative;
}
.tgslider__top::after {
    content: "";
    position: relative;
    display: block;
    background-image: url(../img/bg/sliderTreading_line.png);
    width: 100%;
    height: 8px;
    margin: 20px 0 30px;
}
.tgslider__trending-post {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 767.98px) {
    .tgslider__trending-post {
        overflow: hidden;
        display: block !important;
    }
}
.tgslider__trending-post > .title {
    font-size: 20px;
    letter-spacing: -0.8px;
    margin: 0 0;
}
@media (max-width: 767.98px) {
    .tgslider__trending-post > .title {
        display: none;
    }
}
.tgslider__trending-item {
    display: flex !important;
    align-items: center;
}
.tgslider__trending-thumb {
    max-width: 50px;
    flex: 0 0 auto;
    margin-right: 13px;
}
.tgslider__trending-thumb img {
    height: 50px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.tgslider__trending-content {
    flex-grow: 1;
}
@media (max-width: 767.98px) {
    .tgslider__trending-content {
        overflow: hidden;
    }
}
.tgslider__trending-content .title {
    font-size: 16px;
    margin: 0 0;
}
@media (max-width: 767.98px) {
    .tgslider__trending-content .title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
@media (max-width: 1500px) {
    .tgslider__wrapper {
        max-width: 1000px;
        margin: 0 auto;
    }
}
@media (max-width: 1199.98px) {
    .tgslider__wrapper {
        max-width: 100%;
    }
}
.tgslider__active {
    --bs-gutter-x: 40px;
}
@media (max-width: 1199.98px) {
    .tgslider__active {
        --bs-gutter-x: 30px;
    }
}
.tgslider__active [class*=col-] {
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 1199.98px) {
    .tgslider__active [class*=col-] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.tgslider__active .slick-list {
    overflow: visible;
}
@media (max-width: 1199.98px) {
    .tgslider__active .slick-list {
        overflow: hidden;
    }
}
.tgslider__nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.tgslider__nav button {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #eaeaea;
    font-size: 18px;
    flex: 0 0 auto;
    color: var(--tg-heading-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.tgslider__nav button:hover {
    color: var(--tg-common-color-white);
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
}
.tgslider__thumb img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 991.98px) {
    .tgslider__thumb img {
        height: auto;
    }
}
.tgslider__content {
    margin: -120px 155px 0;
    text-align: center;
    background: var(--tg-common-color-white);
    padding: 45px 100px;
    position: relative;
    z-index: 1;
}
@media (max-width: 1500px) {
    .tgslider__content {
        margin: -90px 100px 0;
    }
}
@media (max-width: 991.98px) {
    .tgslider__content {
        margin: -80px 40px 0;
        padding: 40px 50px;
    }
}
@media (max-width: 767.98px) {
    .tgslider__content {
        margin: 0 0;
        padding: 30px 25px;
        animation: none !important;
        transform: translate(0) !important;
        opacity: 1 !important;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgslider__content {
        padding: 45px 40px;
    }
}
.tgslider__content .tgbanner__content-meta {
    justify-content: center;
}
.tgslider__content .title {
    font-size: 48px;
    letter-spacing: -2px;
}
@media (max-width: 1500px) {
    .tgslider__content .title {
        font-size: 36px;
        letter-spacing: -1px;
        margin: 0 0;
    }
}
@media (max-width: 991.98px) {
    .tgslider__content .title {
        font-size: 30px;
        letter-spacing: -0.6px;
        margin: 0 0;
    }
}
@media (max-width: 767.98px) {
    .tgslider__content .title {
        font-size: 24px;
        letter-spacing: -0.4px;
        margin: 0 0;
        line-height: 1.3;
    }
}

.tgbanner__five-item {
    position: relative;
    margin: 0 0 30px;
}
.tgbanner__five-item:hover .tgImage__hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.tgbanner__five-thumb {
    position: relative;
}
.tgbanner__five-thumb::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.902;
    pointer-events: none;
    z-index: 1;
}
.tgbanner__five-thumb .tags {
    position: absolute;
    left: 50px;
    top: 0;
    padding: 8px 12px;
    text-transform: uppercase;
    font-weight: var(--tg-fw-bold);
    font-size: 14px;
    line-height: 1;
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    z-index: 1;
}
@media (max-width: 767.98px) {
    .tgbanner__five-thumb .tags {
        left: 30px;
    }
}
.tgbanner__five-thumb img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1199.98px) {
    .tgbanner__five-thumb img {
        height: 540px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__five-thumb img {
        height: 300px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__five-thumb img {
        height: 350px;
    }
}
.tgbanner__five-content {
    position: absolute;
    left: 50px;
    bottom: 50px;
    right: 50px;
    z-index: 2;
}
@media (max-width: 767.98px) {
    .tgbanner__five-content {
        left: 25px;
        bottom: 30px;
        right: 25px;
    }
}
.tgbanner__five-content .tgbanner__content-meta li {
    color: var(--tg-common-color-white);
}
.tgbanner__five-content .tgbanner__content-meta li::after {
    background: var(--tg-common-color-white);
    opacity: 0.2;
}
.tgbanner__five-content .tgbanner__content-meta li a {
    color: var(--tg-common-color-white);
}
.tgbanner__five-content .title {
    color: var(--tg-common-color-white);
    font-size: 40px;
    letter-spacing: -1px;
    margin: 0 0;
}
@media (max-width: 1199.98px) {
    .tgbanner__five-content .title {
        font-size: 30px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__five-content .title {
        font-size: 20px;
        letter-spacing: -0.5px;
        line-height: 1.3;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__five-content .title {
        font-size: 24px;
    }
}
.tgbanner__five-content .title a {
    background-image: linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white)), linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white));
}
.tgbanner__five-item.small-post .tgbanner__five-thumb .tags {
    left: 40px;
}
@media (max-width: 1199.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-thumb .tags {
        left: 30px;
    }
}
.tgbanner__five-item.small-post .tgbanner__five-thumb img {
    height: 300px;
}
@media (max-width: 1199.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-thumb img {
        height: 255px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-thumb img {
        height: 300px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__five-item.small-post .tgbanner__five-thumb img {
        height: 350px;
    }
}
.tgbanner__five-item.small-post .tgbanner__five-content {
    left: 40px;
    right: 40px;
    bottom: 40px;
}
@media (max-width: 1199.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-content {
        left: 25px;
        right: 20px;
        bottom: 25px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-content {
        left: 25px;
        right: 25px;
        bottom: 30px;
    }
}
.tgbanner__five-item.small-post .tgbanner__five-content .title {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 0;
}
@media (max-width: 1199.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-content .title {
        font-size: 18px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__five-item.small-post .tgbanner__five-content .title {
        font-size: 20px;
        letter-spacing: -0.5px;
        line-height: 1.3;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tgbanner__five-item.small-post .tgbanner__five-content .title {
        font-size: 24px;
    }
}
@media (max-width: 991.98px) {
    .tgbanner__area-five .gx-30 {
        gap: 0 30px;
    }
}
@media (max-width: 767.98px) {
    .tgbanner__area-five .gx-30 > * {
        flex: 0 0 auto;
        width: 100%;
    }
}

.slider__marquee {
    margin: 50px 0 0;
}
.slider__marquee::before, .slider__marquee::after {
    content: "";
    display: block;
    background-image: url(../img/bg/marquee_line.png);
    width: 100%;
    height: 8px;
    background-position: center;
    background-repeat: repeat-x;
    margin: 0 0 17px;
}
.slider__marquee::after {
    margin: 17px 0 0;
}

.marquee_mode {
    overflow: hidden;
    position: relative;
}
.marquee_mode .js-marquee {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}
.marquee_mode .js-marquee .item {
    text-transform: uppercase;
    margin: 0 20px 0;
    font-size: 16px;
}
.marquee_mode .js-marquee .item span {
    color: var(--tg-theme-primary);
    margin-left: 3px;
}
.marquee_mode .js-marquee .item.minus span {
    color: var(--tg-common-color-green);
}

/*=============================
    05. Trending Post
===============================*/
.trending__post-thumb {
    margin: 0 0 25px;
    position: relative;
}
.trending__post-thumb a {
    display: block;
    position: relative;
}
.trending__post-thumb a:not(.addWish):before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-theme-secondary);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    z-index: 1;
    opacity: 0;
}
.trending__post-thumb a.addWish {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
}
.trending__post-thumb img {
    width: 100%;
    display: block;
    height: 200px;
    object-fit: cover;
    object-position: top;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
@media (max-width: 767.98px) {
    .trending__post-thumb img {
        width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .trending__post-thumb img {
        height: 280px;
    }
}
.trending__post-thumb .is_trend {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--tg-common-color-white);
    background: var(--tg-theme-primary);
    z-index: 3;
}
.trending__post-content .title {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0;
}
@media (max-width: 1500px) {
    .trending__post-content .title {
        font-size: 18px;
    }
}
@media (max-width: 991.98px) {
    .trending__post-content .title {
        font-size: 20px;
    }
}
.trending__post-content .post__activity {
    margin: 20px 0 0;
}
.trending__post .tgbanner__content-meta {
    margin: 0 0 6px;
}
.trending__post:hover .trending__post-thumb a::before {
    opacity: 0.5;
}
.trending__post:hover .trending__post-thumb a.addWish {
    opacity: 1;
}

.post__activity {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.post__activity li {
    line-height: 1;
    font-size: 14px;
}
.post__activity li i {
    color: #b0b0b0;
    margin-right: 3px;
}
.post__activity li a {
    color: var(--tg-body-color);
    display: block;
}
.post__activity li a:hover {
    color: var(--tg-theme-primary);
}

.dark-post-slider {
    margin: 0 -105px 0 -45px;
}
@media (max-width: 1500px) {
    .dark-post-slider {
        margin: 0 -150px 0 -100px;
    }
}
@media (max-width: 991.98px) {
    .dark-post-slider {
        margin: 0 auto;
        max-width: 720px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .dark-post-slider {
        max-width: 540px;
    }
}
.dark-post-slider .tgbanner__content-meta li:not(.category) a, .dark-post-slider .trending__post-content .title {
    color: var(--tg-common-color-white);
}
.dark-post-slider .trending__post-content .title a {
    background-image: linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white)), linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white));
}
.dark-post-slider .tgbanner__content-meta li .by {
    color: #4e4e4e;
}
.dark-post-slider .post__activity li, .dark-post-slider .post__activity li a {
    color: #aeaeae;
}
.dark-post-slider .post__activity li i {
    color: #666666;
}

/*=============================
    06. Featured Post
===============================*/
.featured__post {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin: 0 0 35px;
}
.featured__post .tgbanner__content-meta {
    margin: 0 0 7px;
}
@media (max-width: 1199.98px) {
    .featured__post {
        display: block;
    }
}
@media (max-width: 991.98px) {
    .featured__post {
        margin-right: 35px;
    }
}
@media (max-width: 767.98px) {
    .featured__post {
        margin-right: 0;
    }
}
.featured__thumb {
    width: 100px;
    height: 100px;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    font-size: 30px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-common-color-white);
    letter-spacing: -2px;
    position: relative;
    margin-right: 20px;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .featured__thumb {
        margin: 0 0 15px;
    }
}
.featured__thumb::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-theme-secondary);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0.3;
    z-index: -1;
}
.featured__content .title {
    margin: 0 0;
    font-size: 20px;
    line-height: 1.4;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .featured__content .title {
        font-size: 18px;
    }
}
.featured__post:hover .featured__thumb::before {
    opacity: 0;
}

.recent-post-area .featured__thumb {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    margin-right: 0;
}
.recent-post-area .featured__thumb::before {
    opacity: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}
.recent-post-area .featured__post > a {
    display: block;
    margin-right: 30px;
}
.recent-post-area .featured__post:hover .featured__thumb::before {
    opacity: 0.4;
}
.recent-post-area .featured__content .title {
    margin: 0 0 18px;
}

/*=============================
    07. Video Post
===============================*/
.video-post-area .row {
    --bs-gutter-x: 40px;
}
@media (max-width: 991.98px) {
    .video-post-area .row {
        --bs-gutter-x: 30px;
    }
}

.video__post-item.big-post {
    margin: 0 0 0;
}
@media (max-width: 991.98px) {
    .video__post-item.big-post {
        margin: 0 0 50px;
    }
}
.video__post-item.big-post .video__post-thumb {
    margin: 0 0 35px;
}
@media (max-width: 767.98px) {
    .video__post-item.big-post .video__post-thumb {
        margin: 0 0 28px;
    }
}
.video__post-item.big-post img {
    width: 100%;
    height: 495px;
    object-fit: cover;
    object-position: top;
}
@media (max-width: 1199.98px) {
    .video__post-item.big-post img {
        height: 410px;
    }
}
@media (max-width: 767.98px) {
    .video__post-item.big-post img {
        height: 200px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .video__post-item.big-post img {
        height: 280px;
    }
}
.video__post-item.big-post .popup-video {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-heading-color);
    background: var(--tg-common-color-white);
    font-size: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
}
.video__post-item.big-post .popup-video:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
}
.video__post-item.big-post .video__post-content .title {
    font-size: 20px;
}
@media (max-width: 1199.98px) {
    .video__post-item.big-post .video__post-content .title {
        font-size: 26px;
    }
}
@media (max-width: 991.98px) {
    .video__post-item.big-post .video__post-content .title {
        font-size: 30px;
    }
}
@media (max-width: 767.98px) {
    .video__post-item.big-post .video__post-content .title {
        font-size: 20px;
        line-height: 1.4;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .video__post-item.big-post .video__post-content .title {
        font-size: 24px;
    }
}
.video__post-item.side-post {
    margin: 0 0 24px;
    padding: 0 0 32px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    align-items: center;
}
@media (max-width: 1199.98px) {
    .video__post-item.side-post {
        margin: 0 0 19px;
        padding: 0 0 25px;
    }
}
@media (max-width: 991.98px) {
    .video__post-item.side-post {
        margin: 0 0 24px;
        padding: 0 0 32px;
    }
}
@media (max-width: 767.98px) {
    .video__post-item.side-post {
        display: block;
    }
}
.video__post-item.side-post::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: rgb(255, 229, 0);
    background-repeat: repeat;
}
.video__post-item.side-post .video__post-thumb {
    width: 130px;
    flex: 0 0 auto;
    margin: 0 22px 0 0;
}
@media (max-width: 1199.98px) {
    .video__post-item.side-post .video__post-thumb {
        width: 120px;
    }
}
@media (max-width: 767.98px) {
    .video__post-item.side-post .video__post-thumb {
        width: 100%;
        margin: 0 0 20px;
    }
}
.video__post-item.side-post .video__post-thumb .popup-video {
    position: relative;
    z-index: 1;
}
.video__post-item.side-post .video__post-thumb .popup-video::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-theme-secondary);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0.35;
    z-index: 1;
}
.video__post-item.side-post .video__post-thumb .popup-video:hover::before {
    opacity: 0;
}
.video__post-item.side-post .video__post-thumb .popup-video i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--tg-common-color-white);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    z-index: 2;
}
.video__post-item.side-post .video__post-thumb:hover .popup-video i {
    background: var(--tg-common-color-white);
    color: var(--tg-heading-color);
}
.video__post-item.side-post img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 767.98px) {
    .video__post-item.side-post img {
        height: 200px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .video__post-item.side-post img {
        height: 280px;
    }
}
.video__post-item.side-post .tgbanner__content-meta {
    margin: 0 0 7px;
}
.video__post-item.side-post .video__post-content .title {
    font-size: 16px;
    line-height: 1.4;
}
@media (max-width: 1500px) {
    .video__post-item.side-post .video__post-content .title {
        font-size: 19px;
    }
}
@media (max-width: 1199.98px) {
    .video__post-item.side-post .video__post-content .title {
        font-size: 18px;
    }
}
@media (max-width: 991.98px) {
    .video__post-item.side-post .video__post-content .title {
        font-size: 20px;
    }
}
.video__post-item.side-post:last-child {
    margin-bottom: 0;
}
.video__post-thumb {
    position: relative;
}
.video__post-thumb img {
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.video__post-content .title {
    margin: 0 0;
}

.stories-video-post .stories-post__thumb {
    position: relative;
}
.stories-video-post .stories-post__thumb .popup-video {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-heading-color);
    background: var(--tg-common-color-white);
    font-size: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
}
.stories-video-post .stories-post__thumb .popup-video:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
}
.stories-video-post .stories-post__thumb:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.nft-video-post .video__post-item.side-post::after {
    background-image: url(../img/bg/line3.png);
}

/*=============================
    08. Hand-Picked Post
===============================*/
@media (max-width: 1199.98px) {
    .handpicked-post-area {
        padding-bottom: 30px;
    }
}
.handpicked-post-area.white-bg .handpicked__item.big-post .handpicked__content {
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}

.handpicked__item {
    margin: 0 0 0;
}
.handpicked__item.big-post {
    margin: 0 0 30px;
}
@media (max-width: 1199.98px) {
    .handpicked__item.big-post {
        margin: 0 0 50px;
    }
}
.handpicked__item.big-post .handpicked__thumb {
    margin: 0 0 0;
}
.handpicked__item.big-post .handpicked__thumb img {
    height: 582px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1199.98px) {
    .handpicked__item.big-post .handpicked__thumb img {
        height: 400px;
    }
}
@media (max-width: 767.98px) {
    .handpicked__item.big-post .handpicked__thumb img {
        height: 220px;
        width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .handpicked__item.big-post .handpicked__thumb img {
        height: 280px;
    }
}
.handpicked__item.big-post .handpicked__content {
    background: var(--tg-common-color-white);
    max-width: 510px;
    margin: -55px auto 0 40px;
    position: relative;
    padding: 35px 40px;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .handpicked__item.big-post .handpicked__content {
        max-width: 100%;
        margin: 0 auto 40px;
        padding: 30px 25px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .handpicked__item.big-post .handpicked__content {
        padding: 35px 35px;
    }
}
.handpicked__item.big-post .handpicked__content .tgbanner__content-meta {
    margin: 0 0 7px;
}
.handpicked__item.big-post .handpicked__content .title {
    font-size: 24px;
    margin: 0 0 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
@media (max-width: 767.98px) {
    .handpicked__item.big-post .handpicked__content .title {
        font-size: 20px;
        margin: 0 0 0;
        line-height: 1.4;
        letter-spacing: -0.3px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .handpicked__item.big-post .handpicked__content .title {
        font-size: 24px;
        margin: 0 0 0;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }
}
.handpicked__item.small-post {
    padding: 0 0 35px;
    margin: 0 0 30px;
    position: relative;
}
@media (max-width: 1199.98px) {
    .handpicked__item.small-post {
        padding: 0 0;
        margin: 0 0 50px;
    }
}
.handpicked__item.small-post::after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 0;
    background-image: url(../img/bg/line3.png);
    width: calc(100% + 10px);
    height: 8px;
}
@media (max-width: 1199.98px) {
    .handpicked__item.small-post::after {
        display: none;
    }
}
.handpicked__thumb {
    margin: 0 0 25px;
}
.handpicked__thumb img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 767.98px) {
    .handpicked__thumb img {
        width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .handpicked__thumb img {
        height: 280px;
    }
}
.handpicked__content .tgbanner__content-meta {
    margin: 0 0 6px;
}
.handpicked__content .title {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 0;
}
.handpicked__sidebar-post .row > [class*=col-]:nth-child(odd) .handpicked__item.small-post::after {
    width: calc(100% + 30px);
    left: 0;
}
.handpicked__sidebar-post .row > [class*=col-]:nth-last-child(-n+2) .handpicked__item.small-post {
    padding-bottom: 0;
}
.handpicked__sidebar-post .row > [class*=col-]:nth-last-child(-n+2) .handpicked__item.small-post::after {
    display: none;
}

/*=============================
    09. Stories Post
===============================*/
.stories-post__item {
    margin: 0 0 50px;
}
@media (max-width: 991.98px) {
    .stories-post__item {
        margin: 0 0 40px;
    }
}
.stories-post__thumb {
    margin: 0 0 35px;
}
@media (max-width: 1199.98px) {
    .stories-post__thumb {
        margin: 0 0 25px;
    }
}
.stories-post__thumb img {
    height: 340px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1199.98px) {
    .stories-post__thumb img {
        height: 280px;
    }
}
@media (max-width: 991.98px) {
    .stories-post__thumb img {
        height: 200px;
        width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .stories-post__thumb img {
        height: 280px;
    }
}
.stories-post__content .title {
    line-height: 1.3;
    font-size: 20px;
}
@media (max-width: 1199.98px) {
    .stories-post__content .title {
        font-size: 23px;
    }
}
@media (max-width: 991.98px) {
    .stories-post__content .title {
        font-size: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .stories-post__content .title {
        font-size: 22px;
    }
}

.stories-small-post__item {
    margin: 0 0 40px;
}

/*=============================
    18. Footer
===============================*/
.footer__top-wrap {
    padding: 75px 0 25px;
}
.footer__widget {
    margin: 0 0 50px;
}
.footer__widget .fw-title {
    margin: 0 0 28px;
    font-size: 20px;
    color: var(--tg-common-color-white);
}
.footer__widget ul li {
    margin: 0 0 15px;
}
.footer__widget ul li a {
    font-size: 14px;
    color: #a1a1a1;
}
.footer__widget ul li a:hover {
    color: var(--tg-common-color-white);
}
.footer__logo-wrap {
    padding: 30px 0;
    border-bottom: 1px solid var(--tg-border-1);
}
.footer-area.border-top-none .footer__logo-wrap {
    border-top: none;
}
@media (max-width: 767.98px) {
    .footer__logo {
        text-align: center;
    }
}
.footer__social ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 28px;
}
@media (max-width: 767.98px) {
    .footer__social ul {
        justify-content: center;
        flex-wrap: wrap;
        margin: 25px 0 0;
        gap: 10px 25px;
    }
}
.footer__social ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #999999;
    line-height: 1;
}
.footer__social ul li a:hover {
    color: var(--tg-common-color-white);
}
.footer__social ul li a i {
    color: var(--tg-common-color-white);
    margin-right: 8px;
}
.footer__social ul li a span {
    display: block;
    font-weight: var(--tg-fw-bold);
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-white);
    line-height: 1;
    padding: 3px 7px;
    border-radius: 10px;
    margin-left: 5px;
}
.footer__copyright {
    padding: 25px 0;
}
.footer-style-three {
    margin: 0 0 50px;
}
@media (max-width: 767.98px) {
    .footer-style-three {
        margin: 0 0 30px;
    }
}
.footer-style-three .footer__logo-wrap {
    border-color: #efefef;
}
.footer-style-three .footer__social ul li a {
    color: var(--tg-heading-color);
}
.footer-style-three .footer__social ul li a i {
    color: var(--tg-heading-color);
}
.footer-style-three .copyright__text p {
    color: var(--tg-body-color);
}
.footer-style-three .copyright__text p span {
    color: var(--tg-heading-color);
}
.footer-style-three .copyright__menu ul li a {
    color: var(--tg-heading-color);
}
.footer-style-three.footer-bg {
    background-position: bottom center;
    background-size: cover;
    margin: 0 0 0;
}
.footer-style-three.footer-bg .newsletter__form-grp .form-check label {
    color: var(--tg-body-color);
}
.footer-style-three.footer-bg .newsletter__form-grp .form-check::before {
    background-image: url(../img/bg/marquee_line.png);
    opacity: 0.8;
}
.footer-style-three.footer-bg .footer__logo-wrap {
    border-color: var(--tg-border-2);
}
.footer-style-three.footer-bg .copyright__text p {
    color: var(--tg-theme-secondary);
}

@media (max-width: 991.98px) {
    .copyright__text {
        text-align: center;
    }
}
.copyright__text p {
    margin: 0 0;
    font-size: 14px;
    text-transform: uppercase;
    color: #999999;
}
.copyright__text p span {
    color: var(--tg-common-color-white);
    font-weight: var(--tg-fw-bold);
}
.copyright__menu ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 5px 40px;
}
@media (max-width: 991.98px) {
    .copyright__menu ul {
        justify-content: center;
        margin-top: 15px;
    }
}
@media (max-width: 767.98px) {
    .copyright__menu ul {
        gap: 3px 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .copyright__menu ul {
        gap: 5px 28px;
    }
}
.copyright__menu ul li a {
    display: block;
    font-size: 14px;
    font-weight: var(--tg-fw-bold);
    color: var(--tg-common-color-white);
    text-transform: uppercase;
}
.copyright__menu ul li a:hover {
    color: var(--tg-theme-primary);
}

/*=============================
    19. Dark Mode
===============================*/
[tg-theme=dark] {
    --tg-common-color-gray: #f5f5f5;
    --tg-common-color-black: #000;
    --tg-body-color: #aeaeae;
    --tg-heading-color: #fff;
    --tg-border-1: #222;
    --tg-dark-color-1: rgba(236, 154, 65, 1);
    --tg-dark-color-2: #222;
}
[tg-theme=dark] body, [tg-theme=dark] #preloader {
    background-color: var(--tg-theme-secondary);
}
[tg-theme=dark] .sticky-menu {
    background-color: var(--tg-dark-color-1);
}
[tg-theme=dark] .btn::before {
    background: var(--tg-dark-color-1);
}
[tg-theme=dark] .logo .logo-dark {
    display: none;
}
[tg-theme=dark] .logo .logo-light {
    display: block;
}
[tg-theme=dark] .header-dark-logo {
    display: none;
}
[tg-theme=dark] .header-light-logo {
    display: block;
}
[tg-theme=dark] .header__top-search form input, [tg-theme=dark] .header__top-right .lang .dropdown-toggle, [tg-theme=dark] .header__top-right .lang .dropdown-menu, [tg-theme=dark] .tgmenu__navbar-wrap ul li .sub-menu, [tg-theme=dark] .tgmobile__menu-box, [tg-theme=dark] .newsletter__wrap, [tg-theme=dark] .offCanvas__wrap, [tg-theme=dark] .tgbanner__post.big-post .tgbanner__content, [tg-theme=dark] .handpicked__item.big-post .handpicked__content, [tg-theme=dark] .latest__post-content-two, [tg-theme=dark] .tgslider__content, [tg-theme=dark] .header__style-six .tg-header__area, [tg-theme=dark] .tg-hover-wrapper, [tg-theme=dark] .blog-avatar-wrap, [tg-theme=dark] .slider__style-two {
    background-color: var(--tg-dark-color-1);
    color: var(--tg-common-color-white);
}
[tg-theme=dark] .header__top-right .lang .dropdown-menu li a {
    color: var(--tg-common-color-white);
}
[tg-theme=dark] .header__top-right .lang .dropdown-menu li a:hover, [tg-theme=dark] .header__top-right .lang .dropdown-menu li a:focus {
    background-color: var(--tg-dark-color-2);
}
[tg-theme=dark] .tgmenu__navbar-wrap ul li .sub-menu {
    border-color: var(--tg-dark-color-1);
    box-shadow: none;
}
[tg-theme=dark] .switcher__mode {
    background-color: rgba(236, 154, 65, 1);
}
[tg-theme=dark] .switcher__mode::before {
    background: var(--tg-common-color-white);
    left: calc(100% - 24px);
}
[tg-theme=dark] .switcher__btn.light-mode {
    opacity: 0.3;
}
[tg-theme=dark] .switcher__btn.dark-mode {
    color: var(--tg-theme-primary);
}
[tg-theme=dark] .tgmobile__menu .navigation > li > ul > li:first-child, [tg-theme=dark] .tgmobile__menu .navigation li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
[tg-theme=dark] .tgmobile__menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[tg-theme=dark] .tgmobile__menu .social-links ul li a {
    color: var(--tg-common-color-white);
    border-color: var(--tg-dark-color-2);
}
[tg-theme=dark] .tgmobile__menu .social-links ul li a:hover {
    border-color: var(--tg-theme-primary);
}
[tg-theme=dark] .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn, [tg-theme=dark] .slider__style-two .slider__item {
    background: var(--tg-dark-color-2);
}
[tg-theme=dark] .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line, [tg-theme=dark] .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
    background-color: var(--tg-common-color-white);
}
[tg-theme=dark] .tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
    background-color: var(--tg-theme-primary);
}
[tg-theme=dark] .logo-light {
    display: block;
}
[tg-theme=dark] .logo-dark {
    display: none;
}
[tg-theme=dark] .tgmobile__search input, [tg-theme=dark] .newsletter__form [type=submit]::before, [tg-theme=dark] .header__style-five .header__top-search form input {
    background: var(--tg-dark-color-2);
}
[tg-theme=dark] .form-check-input[type=checkbox] {
    background-color: var(--tg-dark-color-2);
}
[tg-theme=dark] .header__style-three, [tg-theme=dark] .tgbanner__big-post-content .read-more, [tg-theme=dark] .tgAbout-me, [tg-theme=dark] .sidebarInsta__wrap, [tg-theme=dark] .header__top-bar, [tg-theme=dark] .white-bg, [tg-theme=dark] .breadcrumb-content, [tg-theme=dark] .blog-details-social ul li a, [tg-theme=dark] .blog-details-tags ul li a {
    background: var(--tg-dark-color-1);
}
[tg-theme=dark] .blog-details-tags ul li a, [tg-theme=dark] .footer-style-three.footer-bg .copyright__text p {
    color: var(--tg-common-color-white);
}
[tg-theme=dark] .tgbanner__big-post-content .read-more:hover, [tg-theme=dark] .blog-details-social ul li a:hover, [tg-theme=dark] .blog-details-tags ul li a:hover {
    background: var(--tg-theme-primary);
}
[tg-theme=dark] .newsletter__wrap::after {
    opacity: 0.02;
}
[tg-theme=dark] .offCanvas__contact-list li, [tg-theme=dark] .offCanvas__contact-list li a, [tg-theme=dark] .offCanvas__social li a {
    color: var(--tg-common-color-white);
}
[tg-theme=dark] .offCanvas__social li a:hover {
    color: var(--tg-theme-primary);
}
[tg-theme=dark] .slider__content .btn {
    background: var(--tg-dark-color-1);
}
[tg-theme=dark] .slider__content .btn::before {
    background: var(--tg-theme-primary);
}
[tg-theme=dark] .slider__img-wrap::before {
    background: var(--tg-dark-color-1);
}
[tg-theme=dark] .slider-active .slick-dots li.slick-active button {
    border-color: var(--tg-dark-color-2);
}
[tg-theme=dark] .slider-active .slick-dots li.slick-active button::after {
    background: var(--tg-theme-primary);
}
[tg-theme=dark] .tgbanner__trending-post-list .post-count {
    opacity: 0.3;
}
[tg-theme=dark] .stories-video-post .stories-post__thumb .popup-video {
    color: var(--tg-theme-primary);
}
[tg-theme=dark] .stories-video-post .stories-post__thumb .popup-video:hover {
    color: var(--tg-common-color-white);
}
[tg-theme=dark] .tgAbout-social a, [tg-theme=dark] .sidebarInsta__bottom .btn::before {
    background: var(--tg-theme-secondary);
}
[tg-theme=dark] .tgAbout-social a:hover, [tg-theme=dark] .sidebarInsta__bottom .btn::before:hover {
    background: var(--tg-theme-primary);
}
[tg-theme=dark] .footer-style-three .footer__logo-wrap {
    border-color: #282828;
}
[tg-theme=dark] blockquote::before, [tg-theme=dark] blockquote::after, [tg-theme=dark] .slider__marquee::before, [tg-theme=dark] .slider__marquee::after, [tg-theme=dark] .tgslider__top::after, [tg-theme=dark] .footer-style-three.footer-bg .newsletter__form-grp .form-check::before {
    filter: brightness(100);
    opacity: 0.2;
}
[tg-theme=dark] .tgslider__nav button {
    border: 2px solid #2b2b2b;
}
[tg-theme=dark] .tgslider__nav button:hover {
    border-color: var(--tg-theme-primary);
}
[tg-theme=dark] .header__style-five .switcher__btn.light-mode {
    opacity: 1;
}
[tg-theme=dark] .blog-details-inner .inner-title, [tg-theme=dark] .blog-details-bottom, [tg-theme=dark] .blog-prev-next-posts {
    border-color: #1f1f1f;
}
[tg-theme=dark] .footer-style-three.footer-bg, [tg-theme=dark] .slider__style-two {
    background-image: none !important;
}
[tg-theme=dark] .footer-style-three.footer-bg .slider-active .slick-dots li.slick-active button, [tg-theme=dark] .slider__style-two .slider-active .slick-dots li.slick-active button {
    border-color: var(--tg-dark-color-1);
}
[tg-theme=dark] .footer-style-three.footer-bg .border-btn, [tg-theme=dark] .slider__style-two .border-btn {
    border-color: var(--tg-dark-color-1);
}

[tg-theme=dark] .home-section-head {
    color: var(--tg-dark-color-1);
}
[tg-theme=dark] .footer-menu-subhead ul li a{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .footer-menu-head h2{color: rgba(236, 154, 65, 1)}
[tg-theme=dark] .footer-copyright {color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .footer-social-box ul li a {color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .footer-social-box ul li i {color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .complex-list-content{background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .home-product-list-box{background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .home-product-list-name{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .home-product-list-price{color: rgba(236, 154, 65, 1)}
[tg-theme=dark] .complex-list-name{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .article-list-content{background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .article-list-name{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .article-list-date{color: rgba(255, 255, 255, 0.35)}
[tg-theme=dark] .complex-list-tag{color: rgba(255, 255, 255, 0.35)}
[tg-theme=dark] .comment-item-box{background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .comment-bottom-text p{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .comment-user-name{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .home-section-subhead{color: rgba(255, 255, 255, 0.35)}
[tg-theme=dark] .app-info-head{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .app-info-txt p{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .about-item-txt{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .app-info-btn-appstore a{color: rgba(236, 154, 65, 1)}
[tg-theme=dark] .app-info-btn-appstore i{color: rgba(236, 154, 65, 1)}
[tg-theme=dark] .app-info-btn-playstore a{color: rgba(236, 154, 65, 1)}
[tg-theme=dark] .app-info-btn-playstore i{color: rgba(236, 154, 65, 1)}
[tg-theme=dark] .signin-area{background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .header-top-default-info-email a{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .header-top-default-info-phone a{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .header-top-default-info-sign a{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .default-navbar .uk-navbar-nav>li>a {color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .sidebar-box-active {background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .about-content-box {background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .service-content-bottom-box {background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .about-item-list {background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .sidebar-box-active .sidebar-head-name{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .sidebar-head-name {color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .about-name-head {color: rgba(236, 154, 65, 1)}
[tg-theme=dark] .about-name {color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .about-description p{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .about-txt p{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .about-item-txt p{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .service-bottom-name-head {color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .about-item-head {color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .about-other-item-head {color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .header-top {border-bottom: 1px solid #372E29}
[tg-theme=dark] .sidebar-box {border-right: 1px solid #372E29}
[tg-theme=dark] .sidebar-box-active {border-right: 3px solid rgba(236, 154, 65, 1)}
[tg-theme=dark] .sidebar-box-active .sidebar-head-name{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .nav-active a {color: rgba(255, 255, 255, 1)!important;}
[tg-theme=dark] .left-border-in {background: #372E29}


[tg-theme=dark] .faq-box .uk-accordion li{background: rgba(80, 67, 59, 1)}
[tg-theme=dark] .faq-box .uk-accordion .uk-accordion-title{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .faq-box .uk-accordion .uk-accordion-content p{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .service-content-box {background: rgba(80, 67, 59, 1)}
[tg-theme=dark] .feedback-box {background: rgba(80, 67, 59, 1)}
[tg-theme=dark] .contact-info-box {background: rgba(80, 67, 59, 1)}
[tg-theme=dark] .navbar-overlay {background: linear-gradient(180deg, rgba(89, 74, 66, 0.80) 0%, rgba(89, 74, 66, 0.08) 100%)!important;}
[tg-theme=dark] .astrologer-list-box {background: rgba(63, 52, 46, 1)}
[tg-theme=dark] .over-mask-light {background: linear-gradient(180deg, rgba(45, 37, 33, 0.00) 58.03%, #2D2521 100%)}
[tg-theme=dark] .service-name-head {color: rgba(236, 154, 65, 1)}
[tg-theme=dark] .default-name-head {color: rgba(236, 154, 65, 1)}
[tg-theme=dark] .service-description p{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .contact-info-head{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .contact-info-desc{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .feedback-name-head{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .feedback-desc{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .uk-input{background: rgba(63, 52, 46, 1);border: 1px solid rgba(63, 52, 46, 1)}
[tg-theme=dark] .uk-form-icon svg path{stroke: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .uk-textarea{background: rgba(63, 52, 46, 1);border: 1px solid rgba(63, 52, 46, 1)}
[tg-theme=dark] .service-bottom-description p{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .service-list-content p{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .about-description ul li{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .service-description ul li{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .astrologer-top-list-name{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .astrologer-top-list-txt{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .astrologer-bottom-list-txt{color: rgba(255, 255, 255, 0.7)}
[tg-theme=dark] .astrologer-bottom-list-address p{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .astrologer-top-list-phone-link{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .header-top-info-email a{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .header-top-info-phone a{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .header-top-info-sign a{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .uk-navbar-nav>li>a{color: rgba(255, 255, 255, 1)}

[tg-theme=dark] .articles-list-content{background: rgba(80, 67, 59, 1)}
[tg-theme=dark] .articles-list-name{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .articles-list-date{color: rgba(255, 255, 255, 0.35)}
[tg-theme=dark] .footer-area{border-top: 1px solid rgba(255, 255, 255, 0.1)}

[tg-theme=dark] .complex-list-box:hover .complex-list-content{background: rgba(80, 67, 59, 1)}
[tg-theme=dark] .article-list-box:hover .article-list-content{background: rgba(80, 67, 59, 1)}
[tg-theme=dark] .sidebar-box:hover{background: rgba(80, 67, 59, 1);border-radius: 30px 0 0 30px}
[tg-theme=dark] .sidebar-box:hover .sidebar-head-name{color: rgba(255, 255, 255, 1)}
[tg-theme=dark] .home-product-list-box:hover {background: rgba(80, 67, 59, 1)}
[tg-theme=dark] .astrologer-list-box:hover {background: rgba(80, 67, 59, 1)}

/*# sourceMappingURL=theme.css.map */

.lineClamp8 {display: -webkit-box !important;-webkit-line-clamp: 8;-webkit-box-orient: vertical;overflow: hidden;}
.lineClamp7 {display: -webkit-box !important;-webkit-line-clamp: 7;-webkit-box-orient: vertical;overflow: hidden;}
.lineClamp6 {display: -webkit-box !important;-webkit-line-clamp: 6;-webkit-box-orient: vertical;overflow: hidden;}
.lineClamp5 {display: -webkit-box !important;-webkit-line-clamp: 5;-webkit-box-orient: vertical;overflow: hidden;}
.lineClamp4 {display: -webkit-box !important;-webkit-line-clamp: 4;-webkit-box-orient: vertical;overflow: hidden;}
.lineClamp3 {display: -webkit-box !important;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;}
.lineClamp2 {display: -webkit-box !important;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;}
.lineClamp1 {display: -webkit-box !important;-webkit-line-clamp: 1;-webkit-box-orient: vertical;overflow: hidden;}

.header-logo{width: 300px}
.uk-navbar-nav{margin-top: 30px}
.uk-navbar-nav>li>a{min-height: 40px;padding: 0 30px;font-size: 16px;line-height: 25px;color: rgba(0, 0, 0, 1);font-weight: 500;text-transform: none;border-radius: 30px;transition: 1s ease-in-out}
.uk-navbar-nav>li>a svg{margin-left: 10px}
.uk-navbar-dropdown{padding: 20px 0;width: 280px;border-radius: 10px;}
.uk-navbar-dropdown-nav>li>a{padding: 4px 20px;font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}
.uk-navbar-nav li a:hover{background: rgb(237 237 237 / 23%);color: #000;border-radius: 30px;transition: 1s ease-in-out}
.uk-navbar-nav>li:hover>a, .uk-navbar-nav>li>a.uk-open, .uk-navbar-nav>li>a:focus{color: #000}
.uk-navbar-dropdown-nav>li>a:hover{background: rgba(236, 154, 65, 0.1);color: rgba(0, 0, 0, 1);border-radius: 0}

.navbar-overlay{padding: 20px 10px; z-index: 2;background: linear-gradient(180deg, #DDDDD1 58.03%, rgba(221, 221, 209, 0.00) 100%)!important;}
.header-top{padding: 20px 0 0 0;border-bottom: 1px solid #EDE9E7;}
.header-top-info-box{display: flex;align-items: center}
.header-top-info-email{display: flex;align-items: center;padding: 10px 24px;border: 1px solid rgba(236, 154, 65, 1);border-radius: 20px}
.header-top-info-email svg{margin-right: 5px;}
.header-top-info-email a{font-size: 16px;line-height: 15px;font-weight: 400;color: rgba(89, 74, 66, 1)}
.header-top-info-phone{display: flex;align-items: center;padding: 10px 24px;margin-left: 8px;border: 1px solid rgba(236, 154, 65, 1);border-radius: 20px}
.header-top-info-phone svg{margin-right: 5px;}
.header-top-info-phone a{font-size: 16px;line-height: 15px;font-weight: 400;color: rgba(89, 74, 66, 1)}
.header-top-info-sign{display: flex;align-items: center;padding: 10px 24px;margin: 0 10px;border: 1px solid rgba(236, 154, 65, 1);border-radius: 20px;transition: 0.9ms ease-in-out}
.header-top-info-sign svg{margin-right: 5px;width: 16px;}
.header-top-info-sign a{font-size: 16px;line-height: 15px;font-weight: 400;color: rgba(89, 74, 66, 1)}
.header-top-basket{padding: 12px}
.header-top-basket svg{width: 16px;}

.header-top-info-sign:hover{background: rgba(236, 154, 65, 1);transition: 0.9ms ease-in-out}
.header-top-info-sign:hover svg path{stroke: #fff}
.form-input{height: 50px;border-radius: 30px;color: rgba(0, 0, 0, 0.5)}
.form-textarea{border-radius: 30px}
.form-group{margin-bottom: 10px}

.header-top-default-info-box{display: flex;align-items: center;padding-left: 20px}
.header-top-default-info-email{display: flex;align-items: center;padding: 8px 20px;border: 1px solid rgba(236, 154, 65, 1);border-radius: 20px}
.header-top-default-info-email i{font-size: 16px;margin-right: 5px;color: rgba(236, 154, 65, 1)}
.header-top-default-info-email a{font-size: 16px;line-height: 20px;font-weight: 400;color: rgba(89, 74, 66, 1)}
.header-top-default-info-phone{display: flex;align-items: center;padding: 8px 20px;margin-left: 10px;border: 1px solid rgba(236, 154, 65, 1);border-radius: 20px}
.header-top-default-info-phone i{font-size: 16px;margin-right: 5px;color: rgba(236, 154, 65, 1)}
.header-top-default-info-phone a{font-size: 16px;line-height: 20px;font-weight: 400;color: rgba(89, 74, 66, 1)}
.header-top-default-info-sign{display: flex;align-items: center;padding: 8px 20px;margin: 0 10px;border: 1px solid rgba(236, 154, 65, 1);border-radius: 20px}
.header-top-default-info-sign svg{width: 16px;}
.header-top-default-info-sign a{font-size: 16px;line-height: 20px;font-weight: 400;color: rgba(89, 74, 66, 1)}
.header-top-default-basket svg{width: 16px;}

.nav-child-active {background: rgba(236, 154, 65, 0.1)}
.default-navbar .uk-navbar-nav{margin-top: 30px}
.default-navbar .uk-navbar-nav>li>a{min-height: 40px;padding: 12px 24px;font-size: 16px;line-height: 16px;color: rgba(0, 0, 0, 0.7);font-weight: 400;text-transform: none}
.default-navbar .uk-navbar-nav>li>a svg{margin-left: 5px;}
.default-navbar .uk-navbar-nav>li>a svg path{stroke: rgba(236, 154, 65, 1)}
.default-navbar .uk-navbar-dropdown{border-radius: 10px;width: 280px}
.default-navbar .uk-navbar-dropdown-nav>li>a{font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}

.over-mask-light{width: 100%;height: 100%;background: linear-gradient(180deg, rgba(221, 221, 209, 0.00) 58.03%, #DDDDD1 100%);}
.nav-active {border-bottom: 3px solid #EC9A41;transform: translateY(2px);}
.nav-active a{color: rgba(0, 0, 0, 1)!important;}

.lef-border-out{position: relative}
.left-border-in{position: absolute;background: #EDE9E7;width: 1px;height: 48px;left: 361px;}
.page-list{padding: 48px 0}
.sidebar-box{display: flex;align-items: center;padding: 20px 32px;border-right: 1px solid #EDE9E7}
.sidebar-head-name{font-size: 16px;line-height: 25px;font-weight: 500;color: rgba(0, 0, 0, 0.7)}
.sidebar-icon{width: 30px;height: 30px;margin-right: 10px;}

.sidebar-box-active{background: rgba(233, 233, 223, 1);border-radius: 30px 0 0 30px;border-right: 3px solid rgba(236, 154, 65, 1)}
.sidebar-box-active .sidebar-head-name{color: rgba(0, 0, 0, 1)}
.sidebar-box:hover {background: rgba(233, 233, 223, 1);border-radius: 30px 0 0 30px}
.sidebar-head-name:hover {color: rgba(0, 0, 0, 1)}

.about-cover-img{height: 600px;border-radius: 30px}
.about-cover-img img{width: 100%;height: 100%;object-fit: cover;border-radius: 30px}
.about-content-box{width: 920px;margin: auto;padding: 48px;border-radius: 32px;transform: translateY(-60px);background: rgba(233, 233, 223, 1)}
.about-name-head{margin-bottom: 20px;font-size: 64px;line-height: normal;font-weight: 400;font-family: "Great Vibes";color: rgba(89, 74, 66, 1)}
.about-description p{margin-bottom: 15px;font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}
.about-description ul li{list-style: disc;margin-bottom: 15px;font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}
.about-name{margin-bottom: 15px;font-size: 24px;line-height: 28px;font-weight: 600;color: rgba(0, 0, 0, 0.7)}
.about-txt p{margin-bottom: 15px;font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}

.about-bottom-info{width: 920px;margin: auto}
.about-other-item-head{margin-top: 10px;text-align: center;font-size: 24px;line-height: 28px;font-weight: 600;color: rgba(0, 0, 0, 0.7)}
.about-item-list{display: flex;align-items: self-start;padding: 20px;margin-top: 20px;background: rgba(233, 233, 223, 1);border-radius: 16px;}
.about-item-icon{min-width: 35px;width: 35px;margin-right: 15px;}
.about-item-head{margin-bottom: 10px;font-size: 20px;line-height: 25px;font-weight: 500;color: rgba(0, 0, 0, 0.7)}
.about-item-txt{font-size: 14px;line-height: 20px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}

.service-cover-img{border-radius: 30px}
.service-content-box{width: 920px;margin: auto;padding: 48px;border-radius: 32px;transform: translateY(-60px);background: rgba(233, 233, 223, 1)}
.service-name-head{margin-bottom: 20px;font-size: 64px;line-height: normal;font-weight: 400;font-family: "Great Vibes";color: rgba(89, 74, 66, 1)}
.service-description p{margin-bottom: 15px;font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}
.service-description ul li{list-style: disc;margin-bottom: 15px;font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}

.service-content-bottom-box{width: 920px;margin: auto;margin-bottom: 15px;padding: 48px;border-radius: 32px;background: rgba(233, 233, 223, 1)}
.service-bottom-name-head{margin-bottom: 15px;font-size: 24px;line-height: 30px;font-weight: 600;color: rgba(0, 0, 0, 0.7)}
.service-bottom-description p{margin-bottom: 15px;font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}
.service-list-jobs{margin-top: 20px}

.service-list-item{display:flex;gap:20px;position:relative;}
.service-list-left{display:flex;flex-direction:column;align-items:center;}
.circle{width:36px;height:36px;background: rgba(236, 154, 65, 1);color: #fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight: 600;z-index:2;}
.line{width: 5px;flex:1;background: rgba(236, 154, 65, 1);}
.service-list-content{display:flex;align-items:center;margin-bottom: 20px}
.service-list-content-img{margin-right: 10px}
.service-list-content-img img{width:120px;height:70px;object-fit:cover;border-radius:6px;}

.service-list-content p{
    margin:0;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.7);
}
.service-list-item:last-child .line{
    display:none;
}

.default-content-box{width: 920px;margin: auto;}
.default-name-head{margin-bottom: 40px;font-size: 64px;line-height: 70px;font-weight: 400;text-align: center;font-family: "Great Vibes";color: rgba(89, 74, 66, 1)}
.faq-box .uk-accordion li{padding: 16px;background: rgba(233, 233, 223, 1);border-radius: 16px;}
.faq-box .uk-accordion .uk-accordion-title {font-size: 20px;font-weight: 500;line-height: 25px;color: rgba(0, 0, 0, 0.7);}
.faq-box .uk-accordion .uk-accordion-content p{font-size: 16px;font-weight: 400;line-height: 28px;color: rgba(0, 0, 0, 0.7);}


.c-content img{ border-color: #007bff; max-width: 100%;height: auto !important; cursor: zoom-in;}
/*.c-content table{ border-color: rgba(0,0,0,.125); background-color: #fff; margin: 20px 0;   border-collapse: collapse; }*/
/*.c-content table, th td {border: 1px solid #363636;}*/


.c-content caption{ color: #fff; background-color: #007bff; border-color: #007bff; padding: 10px; font-weight: bold; }
/*.c-content tr:hover { background-color: #eee; transition: 0.2s; }*/
/*.c-content th { background-color: #1E88E5; color: white; }*/
/*.c-content tr:nth-child(odd){ background-color: #f6f7fa; }*/
/*.c-content hr{ border: 0; border-top: 2px solid #333; opacity: .1; }*/
.c-content table {
    font-size: 13px;
    margin: 20px 0;
    width: 100%;
    border-top: 3px solid #363636;
    border-bottom: 2px solid #363636;
    border-collapse: collapse
}
.c-content table th {
    border: 1px solid #ccc;
    border-bottom: 1px solid #363636;
    font-weight: bold;
    padding: 4px;
    color: #363636;
}
.c-content table td {
    border: 1px solid #dbe1ea;
    padding: 4px;
    color: #363636;
    font-weight: 300
}
.c-content table th > p,
.c-content table td > p {
    margin: 0
}
.c-content table.tright tr:nth-child(even) {
    background-color: #fbfdff
}
.c-content table.tleft tr:nth-child(even) {
    background-color: #fbfdff
}
.c-content table.tshort td {
    padding: 2px
}

@media (min-width: 768px) and (max-width: 978px) {
    .c-content blockquote {
        width: 400px;
        font-size: 1.2em
    }
    .c-content blockquote > p {
        font-size: 1em
    }
}
@media (min-width: 601px) and (max-width: 767px) {
    .c-content blockquote {
        width: 300px;
        font-size: 1em
    }
    .c-content blockquote > p {
        font-size: 1em
    }
}
@media (max-width: 600px) {
    .c-content blockquote {
        width: 90%;
        font-size: 1em;
        padding: 10px 10px 40px 10px !important;
    }
    .c-content blockquote > p {
        font-size: 1em
    }
    .c-content img{
        width: 100% !important;
    }
}
@media (max-width: 480px) {
    .c-content blockquote {
        float: none;
        margin: 20px auto;
    }
    .c-content blockquote:before{
        margin-left: -.09em;
        font-size: 120px;
        top: 19px;
    }
}

@media (max-width: 600px) {
    .c-content table {
        width: 100% !important
    }

}
.home-section-head{padding-bottom: 20px;font-size: 64px;line-height: 70px;font-weight: 400;color: rgba(89, 74, 66, 1);text-align: center;font-family: 'Great Vibes';}
.home-section-subhead{text-align: center;font-size: 14px;line-height: 20px;font-weight: 400;color: rgba(0, 0, 0, 0.35)}

.swiper-pagination{display: flex;justify-content: center}
.swiper-container-vertical>.swiper-pagination-bullets {left: 60px !important; top: 80vh !important; -webkit-transform: translate3d(0, -50%, 0) !important; transform: translate3d(0, -50%, 0) !important;}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {bottom: 20px;}
.swiper-pagination-bullet {border-radius: 5px; width: 15px; height: 15px; text-align: center; color: #FFF; display: flex}
.swiper-pagination-bullet-active {opacity: 1; background: rgba(236, 154, 65, 1); transition-duration: .3s; border-radius: 5px;}

.swiper-slide .content {left: 50%;bottom: 0;z-index: 2;width: 680px;transform: translate(-50%, -50%);height: 180px;}
.swiper-slide .content .text {width: 680px;}
.swiper-slide .content .title {color: rgba(255, 255, 255, 0.7); font-size: 64px;line-height: 70px;text-align: center; font-family: 'Great Vibes';}
.swiper-slide .content .desc {margin: 30px 0;color: rgba(255, 255, 255, 0.7);font-size: 15px;text-align: center;line-height: 30px;font-weight: 400;}
.swiper-slide .content .more-btn {width: 220px;display: flex;align-items: center;justify-content: center;margin: auto;padding: 15px 30px;border-radius: 30px;font-size: 20px;line-height: 25px;font-weight: 400;color: rgba(236, 154, 65, 1);background: #fff;transition: 1s ease-in-out}
.swiper-slide .content .more-btn i{font-size: 16px;margin-left: 5px;color: rgba(236, 154, 65, 1)}
.swiper-slide .content .more-btn a{color: rgba(236, 154, 65, 1)}
.swiper-slide .content:hover .more-btn{background: rgba(236, 154, 65, 1);color: #fff;transition: 1s ease-in-out}
.swiper-slide .content:hover .more-btn i{margin-left: 10px;color: #fff;transition: 1s ease-in-out}
.swiper-slide .content:hover .more-btn a{color: #fff}

.signin-area{padding: 45px 0;background: rgba(221, 221, 209, 1);height: 100vh}
.signin-area-slide{height: 780px;border-radius: 30px}
.signin-area-slide img{border-radius: 30px;}
.signin-info-area{display: flex;align-items: flex-start;flex-direction: column;flex-wrap: nowrap;height: 100%;justify-content: flex-end;margin-bottom: 30px}
.signin-top-btn{width: 280px;padding: 12px 24px;margin-bottom: 30px;font-size: 16px;line-height: 20px;font-weight: 500;color: rgba(0, 0, 0, 0.7);background: rgba(233, 233, 223, 1);border-radius: 30px;}
.signin-top-btn a{color: rgba(0, 0, 0, 0.7)}
.signin-top-btn svg{margin-right: 5px;}

.form-my-account{position: relative}
.signin-card{padding: 48px;border-radius: 24px;background: #E9E9DF;margin-bottom: 55px}
.signin-card h3{margin-bottom: 5px;font-size: 24px;line-height: 140%;font-weight: 600;color: rgba(0, 0, 0, 0.7);}
.signin-card p{font-size: 14px;line-height: 160%;font-weight: 400;margin: 0 0 20px 0;color: rgba(0, 0, 0, 0.35);}
.form-my-account .form-control{padding: 14px 14px 14px 45px;line-height: 20px;font-size: 20px;border-radius: 30px;}
.form-control:focus{box-shadow: none}
.form-my-account .form-icon svg{position: absolute;top: 20px;left: 20px;width: 16px;height: 18px;}

.complex-area{padding: 50px 0 80px 0;}
.complex-slider-mobile{position: relative;overflow: hidden}
.complex-list-img{height: 280px;overflow: hidden;position: relative;border-radius: 15px;}
.complex-list-img img{width: 100%;height: 100%;object-fit: cover;border-radius: 15px;transition: all 0.3s ease-out 0s;}
.complex-list-content{padding: 20px;transform: translateY(-20px);background: rgba(233, 233, 223, 1);border-radius: 15px;}
.complex-list-name{margin-bottom: 10px;font-size: 20px;line-height: 25px;font-weight: 500;color: rgba(0, 0, 0, 1)}
.complex-list-tag{font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.35)}
.complex-list-box:hover .complex-list-content{background: #fff}
.complex-list-box:hover .complex-list-img img{transform: scale(1.1);transition: all 0.3s ease-out 0s;}

.products-area{padding: 50px 0}
.product-slider-mobile{position: relative;overflow: hidden;}
.product-slider-container {overflow: hidden;padding-right: 0;}
.home-product-list-box{padding: 20px;background: rgba(233, 233, 223, 1);border-radius: 15px;}
.home-product-list-img{height: 250px;overflow: hidden}
.home-product-list-name{font-size: 14px;line-height: 20px;font-weight: 600;color: rgba(0, 0, 0, 0.7) }
.home-product-list-item{margin-top: 10px;display: flex;align-items: center;justify-content: space-between}
.home-product-list-price{font-size: 16px;line-height: 30px;font-weight: 700;color: rgba(89, 74, 66, 1)}
.home-product-list-basket{padding: 8px 20px;display: block;text-align: center;line-height: 20px;border: 1px solid rgba(236, 154, 65, 0.6);border-radius: 8px;}
.home-product-list-basket svg{width: 16px;}
.home-product-list-box:hover{background: #fff}
.home-product-list-basket:hover{background: rgba(236, 154, 65, 1);}
.home-product-list-basket:hover svg path{stroke: rgba(89, 74, 66, 1)}

.article-area{padding: 50px 0 80px 0}
.article-list-img{height: 280px;overflow: hidden;position: relative;border-radius: 15px;}
.article-list-img img{width: 100%;height: 100%;object-fit: cover;border-radius: 15px;transition: all 0.3s ease-out 0s;}
.article-list-content{padding: 16px 24px;transform: translateY(-20px);background: #E9E9DF;border-radius: 16px;}
.article-list-name{margin-bottom: 8px;font-size: 16px;line-height: 27px;font-weight: 400;color: rgba(0, 0, 0, 1)}
.article-list-date{font-size: 14px;line-height: 22px;font-weight: 400;color: rgba(0, 0, 0, 0.35)}
.article-list-box:hover .article-list-content{background: #fff}
.article-list-box:hover .article-list-img img{transform: scale(1.1);transition: all 0.3s ease-out 0s;}

.home-comment-area{padding: 60px 0}
.comment-item-box{height: 100%;padding: 20px;border-radius: 30px;position: relative;background: rgba(255,255,255);opacity: 0.5;filter: blur(6px);transition: all 0.3s ease;}
.comment-top-info{display: flex;align-items: center;}
.comment-user-img{width: 65px;height: 65px;margin-right: 10px;opacity: .4}
.comment-user-img img{width: 100%;height: 100%;border-radius: 50%}
.comment-user-name{font-size: 14px;line-height: 20px;font-weight: 500;color: rgba(0, 0, 0, 1)}
.comment-bottom-text p{margin-top: 10px;font-size: 14px;line-height: 28px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}

.comment-slider{position: relative;overflow: hidden}
.comment-wrapper:hover .comment-item-box {opacity: 0.5;filter: blur(6px);}
.comment-wrapper .comment-item-box:hover {opacity: 1;filter: blur(0);transform: scale(1.05);z-index: 2;}
.comment-wrapper .comment-item-box:hover .comment-user-img{opacity: 1;}
.comment-wrapper .comment-item-box:hover.comment-item-box::before{opacity: 0.6;}

.app-area{padding: 80px 0 0 0}
.app-info-head{font-size: 64px;line-height: 70px;font-weight: 400;text-align: center;font-family: "Great Vibes";color: rgba(0, 0, 0, 0.7)}
.app-info-txt p{margin: 30px;font-size: 16px;line-height: 30px;font-weight: 400;text-align: center;color: rgba(0, 0, 0, 0.7)}
.app-info-bottom-item{display: flex;align-items: center;justify-content: center;margin: 20px 0}
.app-info-btn-appstore{padding: 10px 30px;margin-right: 10px;font-size: 20px;line-height: 25px;font-weight: 500;color: rgba(89, 74, 66, 1);background: rgba(255, 255, 255);border-radius: 30px}
.app-info-btn-appstore i{font-size: 24px;margin-right: 5px;color: rgba(236, 154, 65, 1)}
.app-info-btn-appstore a{color: rgba(89, 74, 66, 1)}
.app-info-btn-playstore{padding: 10px 30px;font-size: 20px;line-height: 25px;font-weight: 500;color: rgba(89, 74, 66, 1);background: rgba(255, 255, 255);border-radius: 30px}
.app-info-btn-playstore i{font-size: 24px;margin-right: 5px;color: rgba(236, 154, 65, 1)}
.app-info-btn-playstore a{color: rgba(89, 74, 66, 1)}


.contact-info-box{padding: 30px;display: flex;align-items: center;justify-content: space-between;background: rgba(233, 233, 223, 1);border-radius: 15px;}
.contact-info-head{margin-bottom: 15px;font-size: 32px;line-height: 35px;font-weight: 600;color: rgba(0, 0, 0, 0.7)}
.contact-info-desc{font-size: 20px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}
.maps-box{margin: 20px 0}
.maps-box iframe{border-radius: 15px;}
.feedback-box{padding: 30px;background: rgba(233, 233, 223, 1);border-radius: 15px;}
.feedback-name-head{margin-bottom: 15px;font-size: 32px;line-height: 30px;font-weight: 600;color: rgba(0, 0, 0, 0.7)}
.feedback-desc{margin-bottom: 15px;font-size: 16px;line-height: 22px;font-weight: 400;color: rgba(0, 0, 0, 0.7)}

.astrologer-list-box{padding: 24px;border-radius: 32px;background: rgba(233, 233, 223, 1)}
.astrologer-top-list-box{display: flex;align-items: center;justify-content: space-between}
.astrologer-top-item{display: flex;align-items: center}
.astrologer-top-list-img{width: 50px;min-width: 50px;height: 50px;margin-right: 10px}
.astrologer-top-list-img img{border-radius: 50%}
.astrologer-top-list-name{margin-bottom: 5px;color: rgba(0, 0, 0, 1);font-size: 16px;font-style: normal;font-weight: 500;line-height: 100%; }
.astrologer-top-list-txt{color: rgba(0, 0, 0, 0.7);font-size: 12px;font-style: normal;font-weight: 400;line-height: 100% }
.astrologer-top-list-phone-box{display: flex;align-items: center;height: 40px;padding: 12px 24px;border-radius: 30px;border: 1px solid rgba(236, 154, 65, 0.6)}
.astrologer-top-list-phone-link{margin-left: 5px;font-size: 16px;font-style: normal;font-weight: 500;line-height: 100%;color: rgba(89, 74, 66, 1)}
.astrologer-bottom-list-box{margin-top: 20px}
.astrologer-bottom-list-txt{margin-bottom: 5px;color: rgba(0, 0, 0, 0.7);font-size: 12px;font-style: normal;font-weight: 400;line-height: 100%;}
.astrologer-bottom-list-address p{font-size: 14px;font-style: normal;font-weight: 400;line-height: 160%;color: rgba(0, 0, 0, 1)}

.astrologer-top-list-phone-box:hover{background: rgba(236, 154, 65, 1);color: rgba(0, 0, 0, 0.7)}
.astrologer-top-list-phone-box:hover svg path{stroke: rgba(0, 0, 0, 0.7)}
.astrologer-list-box:hover{background: #fff}

.article-slider-mobile{position: relative;overflow:hidden;}
.articles-list-img{height: 180px;overflow: hidden;position: relative;border-radius: 15px;}
.articles-list-img img{width: 100%;height: 100%;object-fit: cover;border-radius: 15px;transition: all 0.3s ease-out 0s;}
.articles-list-content{padding: 20px;transform: translateY(-20px);background: rgba(233, 233, 223, 1);border-radius: 15px;}
.articles-list-name{margin-bottom: 10px;font-size: 16px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 1)}
.articles-list-date{font-size: 14px;line-height: 25px;font-weight: 400;color: rgba(0, 0, 0, 0.35)}
.articles-list-box:hover .articles-list-content{background: #fff}
.articles-list-box:hover .articles-list-img img{transform: scale(1.1);transition: all 0.3s ease-out 0s;}

.footer-area{padding: 50px 0;border-top: 1px solid rgba(0, 0, 0, 0.1)}
.footer-menu-head h2{margin-bottom: 15px;font-size: 16px;line-height: 25px;font-weight: 300;text-transform: uppercase;color: rgba(89, 74, 66, 1)}
.footer-menu-subhead ul{padding: 0;margin: 0}
.footer-menu-subhead ul li{list-style: none}
.footer-menu-subhead ul li a{font-size: 14px;line-height: 25px;font-weight: 500;color: rgba(89, 74, 66, 1)}
.footer-menu-subhead ul li:hover a{text-decoration: underline;color: rgba(236, 154, 65, 1)}

.footer-social-box{display: flex;align-items: center;margin-top: 30px}
.footer-social-box ul{display: flex;align-items: center;padding: 0;margin: 0}
.footer-social-box ul li{list-style: none;width: 45px;height: 45px;;display: flex;align-items: center;justify-content: center;margin-right: 10px;transition: .4ms ease-in}
.footer-social-box ul li i{font-size: 24px;color: rgba(67, 67, 67, 1)}
.footer-social-box ul li a{color: rgba(67, 67, 67, 1)}
.footer-social-box ul li:hover{background: rgba(236, 154, 65, 1);border-radius: 50%;transition: .4ms ease-in}
.footer-social-box ul li:hover i{color: #fff}

.footer-bottom{padding: 30px 0;border-top: 1px solid rgba(0, 0, 0, 0.1)}
.footer-copyright{font-size: 16px;line-height: 25px;font-weight: 400;text-align: center;color: rgba(67, 67, 67, 1) }

/* for mobile menu */
#mobileCanvas .uk-offcanvas-bar {padding: 0 !important;}
.uk-offcanvas-bar {padding: 0 !important;background-color: #fff; background-position: bottom; background-repeat: no-repeat; background-size: contain}
.uk-offcanvas-overlay::before {background: #0884468c !important;}
@media (max-width: 720px){
    .uk-offcanvas-bar {width: 100%}
}

.mobile-menu{display: none}
.header-info-left-mobile{display: none}
.header-info-right-mobile{display: none}
.header-logo-mobile{display: none}
.pageCategory-slider-mobile{overflow: hidden;margin-bottom: 10px}

ul.list li a { color: #363636; font-size: 14px; padding: 0 10px; transition-duration: 0.3s; }
ul.list.menu li a {padding: 0}
ul.list.menu li {padding: 5px 15px;}
.mobile-menu ul.list:not(.menu) li { display: flex; padding: 10px 0 10px 10px; align-items: center; }
.mobile-menu ul.list:not(.menu) li div { content: ""; height: 25px; left: 0; background-size: contain; background-position: center; background-repeat: no-repeat;width: 25px;}
.mobile-menu ul.list:not(.menu) li:not(:last-child) {border-bottom: 1px solid #eee;}
ul.list li a:hover {color: #999; transition: 0.3s ease;}
ul.list.menu li:not(:last-child) {border-bottom: 1px solid #eee;}
/* end of mobile menu */


@media screen and (max-width: 1100px) {
    .mobile-menu{display: block}
    .header-info-left-mobile{display: block}
    .header-info-right-mobile{display: block}
    .mobile{display: flex}
    .mobile{margin: 20px 0;}
    .menu-mobile-toggle {position: relative;display: block;cursor: pointer;width: 40px;height: 40px;border: none;outline: none;border-radius: 50%;background: #EC9A41;-webkit-transform: rotate(0deg);transform: rotate(0deg);-webkit-transition: 0.35s ease-in-out;transition: 0.35s ease-in-out;}
    .header-info-right-phone-mb {position: relative;display: flex;align-items: center;justify-content: center;cursor: pointer;width: 40px;height: 40px;border-radius: 50%;background: #EC9A41;-webkit-transition: 0.35s ease-in-out;transition: 0.35s ease-in-out;}
    .header-info-right-email-mb {position: relative;display: flex;align-items: center;justify-content: center;margin-right: 8px;cursor: pointer;width: 40px;height: 40px;border-radius: 50%;background: #EC9A41;-webkit-transition: 0.35s ease-in-out;transition: 0.35s ease-in-out;}

    .menu-default-mobile-toggle {position: relative;display: block;cursor: pointer;width: 40px;height: 40px;outline: none;border-radius: 50%;background: transparent;border: 1px solid rgba(0, 0, 0, 0.10);-webkit-transition: 0.35s ease-in-out;transition: 0.35s ease-in-out;}
    .header-default-info-right-phone-mb {position: relative;display: flex;align-items: center;justify-content: center;cursor: pointer;width: 40px;height: 40px;border-radius: 50%;background: transparent;border: 1px solid rgba(0, 0, 0, 0.10);-webkit-transition: 0.35s ease-in-out;transition: 0.35s ease-in-out;}
    .header-default-info-right-email-mb {position: relative;display: flex;align-items: center;justify-content: center;margin-right: 8px;cursor: pointer;width: 40px;height: 40px;border-radius: 50%;background: transparent;border: 1px solid rgba(0, 0, 0, 0.10);-webkit-transition: 0.35s ease-in-out;transition: 0.35s ease-in-out;}

    .menu {position: fixed;top: 0;left: 0;width: 75%;height: 100%;display: block;z-index: 1010;overflow: hidden;background: rgba(233, 233, 223, 1);-webkit-transform: translate(-100%);transform: translate(-100%);-webkit-transition: all 0.5s ease-in-out;transition: all 0.5s ease-in-out;}
    .menu.active {-webkit-transform: translate(0%);transform: translate(0%);}
    .menu > ul > li {display: block;margin: 0;}
    .menu > ul > li > a {position: relative;font-size: 16px;font-weight: 400;border: none;outline: none;color: rgba(0, 0, 0, 1);-webkit-transition: color 0.3s ease;transition: color 0.3s ease;}
    .menu > ul > li > a {display: block;line-height: 40px;height: 40px;padding: 0;border-bottom: 1px solid rgba(0, 0, 0, 0.10)}
    .menu > ul > li > a i {position: absolute;font-size: 16px;line-height: 30px;top: 0;right: 0;width: 40px;height: 40px;text-align: center;-webkit-transform: rotate(-90deg);transform: rotate(-90deg);color: rgb(89, 74, 66)}
    .menu .menu-mobile-header {position: sticky;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;top: 0;height: 50px;z-index: 110;border-bottom: 1px solid rgba(0, 0, 0, 0.1);background: rgba(233, 233, 223, 1);}
    .menu .menu-mobile-header .menu-mobile-arrow {display: none;line-height: 20px;width: 50px;height: 50px;cursor: pointer;text-align: center;border: none;color: rgb(89, 74, 66);}
    .menu .menu-mobile-header.active .menu-mobile-arrow {display: block;}
    .menu .menu-mobile-header .menu-mobile-title {font-size: 18px;font-weight: 400;line-height: 20px;color: rgba(0, 0, 0, 1);}
    .menu .menu-mobile-header .menu-mobile-close { line-height: 30px;cursor: pointer;width: 50px;height: 50px;text-align: center;border: none;color: rgb(89, 74, 66)}
    .menu .menu-section {overflow-y: auto;overflow-x: hidden;padding-left: 30px}
    .menu > ul > li .menu-subs {z-index: 109;opacity: 0;visibility: hidden;background: rgba(233, 233, 223, 1);-webkit-transition: all 0.5s ease;transition: all 0.5s ease;}
    .menu > ul > li .menu-subs {position: absolute;display: none;top: 0;left: 0;max-width: none;min-width: auto;width: 100%;height: 100%;margin: 0;padding: 60px 20px 20px 20px;opacity: 1;overflow-y: auto;visibility: visible;-webkit-transform: translateX(0%);transform: translateX(0%);-webkit-box-shadow: none;box-shadow: none;}
    .menu > ul > li .menu-subs > ul > li > a {display: inline-block;font-size: 16px;font-weight: 400;line-height: 20px;padding: 0.75rem 0;border: none;outline: none;color: rgba(0, 0, 0, 1);-webkit-transition: all 0.3s ease;transition: all 0.3s ease;}
    .menu > ul > li .menu-subs > ul > li{list-style: square}
    .menu > ul > li .menu-subs.active {display: block;}

    .overlay {position: fixed;top: 0;left: 0;width: 100%;height: 100%;z-index: 100;opacity: 0;visibility: hidden;background: rgba(0, 0, 0, 0.65);-webkit-transition: all 0.45s ease-in-out;transition: all 0.45s ease-in-out;}
    .overlay.active {opacity: 1;visibility: visible;}
    .menu > ul > li .menu-subs > ul > li::marker {color: #000;}

}

@media (max-width: 650px) {
    .header-top-default-info-box{display: none}
    .header-top-info-box{display: none}
    .uk-navbar-nav{display: none}
    .header-logo {display: none}
    .header-logo-mobile{display: block}
    .navbar-overlay{padding: 30px 10px}
    .header-top{padding: 30px 10px;}
    .header-info-right-btn{display: flex;align-items: center}
    .home-section-head{font-size: 36px;line-height: normal}
    .article-list-img{height: 150px}
    .complex-list-img{height: 150px}
    .sidebar-box{padding: 12px 24px;margin-bottom: 12px;border-right: none}
    .sidebar-box-active{border-right: none;border-radius: 25px;}
    .sidebar-box:hover{border-radius: 25px;}
    .complex-list-name{font-size: 14px;line-height: normal}
    .swiper-slide .content .title{font-size: 32px;line-height: normal}
    .swiper-slide .content .desc{font-size: 14px;line-height: 20px;margin: 30px 12px;}
    .swiper-slide .content .text{width: 100%}
    .swiper-slide .content{width: 100%}
    .service-name-head{font-size: 36px;line-height: normal}
    .service-content-box{width: 100%;padding: 24px;transform: translateY(10px);border-radius: 16px;}
    .default-content-box{width: 100%;}
    .default-name-head{font-size: 36px;line-height: normal}
    .service-content-bottom-box{width: 100%;padding: 24px;border-radius: 16px;}
    .astrologer-top-list-box{display: block}
    .astrologer-top-item{margin-bottom: 10px}
    .complex-area {padding: 50px 0 48px 0;}
    .article-slider-mobile{padding-top: 28px;}
    .products-area{padding: 28px 0 48px 0}
    .article-area{padding: 0 0 48px 0}
    .home-comment-area{padding: 48px 0}
    .comment-item-box{height: 350px;}
    .app-info-head{font-size: 36px;line-height: normal}
    .app-right-img{display: none}
    .left-border-in{background: none}
    .home-product-list-img {height: 220px}
    .header-right--mobile{display: flex;justify-content: space-between;align-items: center;}
    .swiper-signin{display: none}
    .signin-card{padding: 24px;border-radius: 16px;}
    .form-my-account .form-control{border-radius: 16px;}
    .header-top-info-sign {padding: 10px 24px;margin-left: 25px;}
    .about-cover-img {height: 250px;border-radius: 16px;}
    .about-cover-img img{border-radius: 16px;}
    .about-content-box{width: 100%;padding: 24px;transform: translateY(10px);border-radius: 16px}
    .about-bottom-info{width: 100%}
    .about-other-item-head{margin: 25px 0 0 0}
    .service-bottom-name-head{font-size: 20px;}
    .service-list-content-img img{min-width: 100px;width: 100px}
    .about-name{font-size: 20px}
    .about-name-head{font-size: 36px;line-height: normal}
    .app-area{padding: 0}
    .app-info-txt p{margin: 10px 0 32px 0;font-size: 14px;line-height: 23px;}
    .app-info-bottom-item{margin-top: 32px;}
    .footer-area{margin-top: 48px;padding: 24px 0 0 0;}
    .app-info-btn-appstore{padding: 10px 28px;margin-right: 8px}
    .app-info-btn-playstore{padding: 10px 28px}
    .logo{display: flex;justify-content: center;}
    .logo-sm{width: 100px}
    .contact-info-box{display: block;padding: 24px;}
    .contact-info-desc{margin-bottom: 10px}
    .footer-social-box{margin: 32px 0;justify-content: center;}
    .footer-menu-head h2{color: rgba(236, 154, 65, 1);margin-bottom: 12px}
    .footer-menu-subhead{padding-bottom: 30px}
    .footer-bottom{padding: 24px 0}
    .feedback-box{padding: 24px;margin-top: 15px;}
    .form-input{border-radius: 16px;}
    .form-textarea{border-radius: 16px;}
    [tg-theme=dark] .left-border-in {background: none}
    [tg-theme=dark] .sidebar-box {border-right: none}
    [tg-theme=dark] .sidebar-box:hover{border-radius: 30px}
    [tg-theme=dark] .menu{background: rgba(45, 37, 33, 1)}
    [tg-theme=dark] .menu > ul > li .menu-subs{background: rgba(45, 37, 33, 1)}
    [tg-theme=dark] .menu .menu-mobile-header{border-bottom: 1px solid #372E29;background: rgba(45, 37, 33, 1)}
    [tg-theme=dark] .menu .menu-mobile-header .menu-mobile-close{background: rgba(45, 37, 33, 1);color: rgba(255, 255, 255, 0.7)}
    [tg-theme=dark] .menu .menu-mobile-header .menu-mobile-arrow{background: rgba(45, 37, 33, 1);color: rgba(255, 255, 255, 0.7)}
    [tg-theme=dark] .menu > ul > li > a{border-bottom: 1px solid #372E29;color: rgba(255, 255, 255, 0.7)}
    [tg-theme=dark] .menu .menu-mobile-header .menu-mobile-title{color: rgba(255, 255, 255, 0.7)}
    [tg-theme=dark] .menu > ul > li .menu-subs > ul > li > a{color: rgba(255, 255, 255, 0.7)}
    [tg-theme=dark] .menu-default-mobile-toggle{border: 1px solid rgba(255, 255, 255, 0.1)}
    [tg-theme=dark] .header-default-info-right-email-mb{border: 1px solid rgba(255, 255, 255, 0.1)}
    [tg-theme=dark] .header-default-info-right-phone-mb{border: 1px solid rgba(255, 255, 255, 0.1)}
    [tg-theme=dark] .header-default-info-right-email-mb svg path{stroke: #EC9A41}
    [tg-theme=dark] .header-default-info-right-phone-mb svg path{stroke: #EC9A41}
    [tg-theme=dark] .menu-default-mobile-toggle svg path{stroke: #EC9A41}
}