/*====================
Root
======================*/
:root {
    --ff-body: 'DM Sans', sans-serif;
    --ff-heading: 'DM Sans', sans-serif;
    --ff-p: 'DM Sans', sans-serif;
    --fw-normal: normal;
    --fw-thin: 100;
    --fw-elight: 200;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-sbold: 600;
    --fw-bold: 700;
    --fw-ebold: 800;
    --fw-black: 900;
    --fs-body: 16px;
    --fs-p: 16px;
    --fs-h1: 60px;
    --fs-h2: 48px;
    --fs-h3: 24px;
    --fs-h4: 20px;
    --fs-h5: 16px;
    --fs-h6: 14px;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #232323;
    --color-heading-primary: #11151C;
    --color-text-body: #B0B2B7;
    --color-body-light: #74787C;
    --color-theme-primary: #ced850;
    --color-theme-secondary: #ced850;
    --color-bg-1: #11151C;
    --color-grey-1: #F8F8F8;
    --color-grey-2: #2D343E;
    --color-grey-light: #F2F3F4;
    --color-border-1: #1E2228;
    --color-border-light: #E4E4E4;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}
/*====================
Typography CSS
======================*/
html {
    scroll-behavior: smooth;
}
body {
    background-color: #181818 !important;
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.625;
    font-weight: normal;
    color: var(--color-text-body);
}
img {
    max-width: 100%;
}
a {
    text-decoration: none !important;
}
a,
a:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-heading);
    color: var(--color-white);
    margin-top: 0px;
    font-weight: var(--fw-sbold);
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
h1 {
    font-size: var(--fs-h1);
}
h2 {
    font-size: var(--fs-h2);
}
h3 {
    font-size: var(--fs-h3);
}
h4 {
    font-size: var(--fs-h4);
}
h5 {
    font-size: var(--fs-h5);
}
h6 {
    font-size: var(--fs-h6);
}
ul {
    margin: 0px;
    padding: 0px;
}
p {
    font-family: var(--ff-p);
    font-size: 16px;
    font-weight: var(--fw-normal);
    color: var(--color-text-body);
    margin-bottom: 15px;
    line-height: 28px;
}
a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}
a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--color-theme-primary);
}
.slick-list.draggable {
    cursor: grab;
}
a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}
button:hover {
    cursor: pointer;
}
button:focus {
    outline: 0;
    border: 0;
}
.uppercase {
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}
input {
    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%;
}
ul {
    display: block;
    padding: 0;
    margin: 0;
}
*::-moz-selection {
    background: var(--color-black);
    color: var(--color-white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--color-black);
    color: var(--color-white);
    text-shadow: none;
}
::selection {
    background: var(--color-theme-primary);
    color: var(--color-white);
    text-shadow: none;
}
*::-moz-placeholder {
    color: var(--color-black);
    font-size: var(--fs-body);
    opacity: 1;
}
*::placeholder {
    color: var(--color-black);
    font-size: var(--fs-body);
    opacity: 1;
}
.pt-50 {
    padding-top: 50px;
}
.pb-60 {
    padding-bottom: 60px;
}
/*====================
 Header
======================*/
.header {
    background-color: #171819EB;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.header.scrolled {
    background-color: #171819EB;
}
@media only screen and (max-width: 992px) {
    .header {
        position: relative;
        top: 0;
        height: auto !important;
    }
}
.header .primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto !important;
    padding: 0 60px;
}
@media (max-width: 1170px) {
    .header .primary-header-inner {
        padding: 0 30px;
    }
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner {
        padding: 10px 20px;
        height: auto !important;
    }
}
.header .primary-header-inner .header-logo img {
    max-width: 150px;
    height: auto;
}
@media (max-width: 1399px) {
    .header .primary-header-inner .header-logo img {
        max-width: 125px;
    }
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-logo img {
        max-width: 125px;
    }
}
.header .primary-header-inner .header-menu-wrap {
    display: flex !important;
    align-items: center;
}
.header .primary-header-inner .header-menu-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-menu-wrap ul {
        display: none;
    }
}
.header .primary-header-inner .header-menu-wrap ul li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
}
@media (max-width: 1399px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 15px;
    }
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 10px;
    }
}
.header .primary-header-inner .header-menu-wrap ul li:first-child {
    margin-left: 0;
}
.header .primary-header-inner .header-menu-wrap ul li:last-child {
    margin-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul li a {
    font-family: "DM Sans", sans-serif;
    color: var(--color-white);
    display: block;
    font-size: 14px;
    padding: 5px 0;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-menu-wrap ul li a {
        font-size: 16px;
    }
}
.header .primary-header-inner .header-menu-wrap ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li a:hover::after,
.header .primary-header-inner .header-menu-wrap ul li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    /* Ensure active behaves like hover */
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li a i {
    font-size: 13px;
}
.header .primary-header-inner .header-menu-wrap ul li.active ul li a {
    color: var(--color-white);
}
.header .primary-header-inner .header-menu-wrap ul li.active ul li a:hover {
    color: var(--color-white);
}
.header .primary-header-inner .header-menu-wrap ul li.active.menu-item-has-children:after {
    color: var(--color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li ul {
    background-color: var(--color-white);
    display: block;
    width: 220px;
    padding: 0;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    position: absolute;
    left: 0;
    top: 93px;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: all 0.6s ease;
}
.header .primary-header-inner .header-menu-wrap ul li:hover>ul {
    visibility: visible;
    transition: all 0.6s ease;
    opacity: 1;
    transform: none;
}
.header .primary-header-inner .header-menu-wrap ul li li {
    display: flex;
    justify-content: space-between;
    text-align: left;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li li:not(:last-of-type) {
    border-bottom: 1px solid var(--color-border-1);
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child {
    margin: 0;
    border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap ul li li:hover {
    background-color: var(--color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--color-black);
}
.header .primary-header-inner .header-menu-wrap ul li li a {
    background-color: var(--color-bg-1);
    display: block;
    height: auto;
    line-height: inherit;
    color: var(--color-white);
    font-weight: 600;
    font-size: 13px;
    padding: 20px 0;
    padding-left: 30px;
    letter-spacing: 1px;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    position: relative;
}
.header .primary-header-inner .header-menu-wrap ul li li a:before {
    background-color: var(--color-theme-primary);
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li li a:hover:before {
    width: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li li.active {
    background-color: var(--color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li.active a {
    color: var(--color-white) !important;
}
.header .primary-header-inner .header-menu-wrap ul li li ul {
    top: 0;
    left: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li li ul li a {
    color: var(--color-white);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--color-white);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
    color: var(--color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
    color: var(--color-white);
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
    position: relative;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
    padding-right: 17px;
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
        padding-right: 13px;
    }
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li {
    margin: 0;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li a {
    padding-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
    background-image: none;
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    content: "\f078";
    color: var(--color-white);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:hover:after {
    color: var(--color-theme-primary);
}
.header .primary-header-inner .header-right-wrap {
    display: flex;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
    row-gap: 20px;
}
@media (max-width: 1399px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 50px;
    }
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 20px;
    }
}
.header .primary-header-inner .header-right-wrap .header-right {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-logo img {
        width: 90px;
    }
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
        height: 60px;
        width: 60px;
    }
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger svg {
    color: var(--color-white);
}
.header .primary-header-inner .header-right-wrap .header-right .search-icon {
    color: var(--color-heading-primary);
    font-size: 20px;
    cursor: pointer;
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .search-icon {
        margin-right: 20px;
    }
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-right-item {
        line-height: 1;
    }
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
    color: var(--color-white);
    font-size: 30px;
    opacity: 0.9;
}
@media (min-width: 993px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
        display: none;
    }
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
    font-size: 16px;
    margin-left: 55px;
    cursor: pointer;
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
        margin-right: 20px;
    }
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .mean-push {
        display: none;
    }
}
.header.fixed {
    background-color: var(--color-bg-1);
    top: 0;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
    .header .primary-header.fixed .primary-header-inner {
        padding: 20px 0;
    }
}
@media only screen and (max-width: 992px) {
    .mobile-side-menu .header-right {
        display: none !important;
    }
}
.side-menu-icon {
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 100;
    display: block;
    cursor: pointer;
}
@media only screen and (max-width: 992px) {
    .side-menu-icon {
        display: none;
    }
}
.side-menu-content {
    font-family: var(--ff-body);
    font-size: 30px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    height: 100%;
}
.side-menu-content .side-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
    max-width: 150px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
    font-family: var(--ff-body);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-theme-primary);
    line-height: 1;
    margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
    max-width: 400px;
    width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
    margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
    font-size: 45px;
    color: var(--color-theme-primary);
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
    border: 1px solid var(--color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
    transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
    margin-bottom: 0;
}
.side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}
.side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.webp), auto;
}
@media only screen and (max-width: 992px) {
    .side-menu-overlay {
        display: none;
    }
}
.primary-header {
    width: 100%;
}
.primary-header.fixed {
    background-color: var(--color-bg-1);
    position: fixed;
    left: 0;
    top: 0;
    animation-name: menuSticky;
    -webkit-animation-name: menuSticky;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    z-index: 99;
}
.primary-header.fixed .primary-header-inner {
    padding: 20px 60px;
}
@media (max-width: 1170px) {
    .primary-header.fixed .primary-header-inner {
        padding: 20px;
    }
}
@-webkit-keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
@keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
/*====================
 Header Side Bar
======================*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
    display: none;
}
.sidebar-trigger {
    display: block;
}
.sidebar-area {
    background-color: var(--color-bg-1);
    border-left: 1px solid var(--color-border-1);
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    width: 450px;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: scroll;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    padding: 70px 40px;
}
.open-sidebar .sidebar-area {
    right: 0;
    visibility: visible;
    transform: translate(0);
}
.sidebar-trigger.close {
    position: absolute;
    right: 30px;
    top: 63px;
    color: var(--grey-color);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.sidebar-trigger.close:hover {
    color: var(--color-theme-primary);
}
.sidebar-trigger.close svg {
    fill: currentColor;
    stroke: none;
    width: 20px;
    height: 20px;
}
.sidebar-content .site-logo {
    margin-bottom: 40px;
}
.sidebar-content .site-logo img {
    max-width: 200px;
}
.sidebar-content .sidebar-info li {
    font-size: 18px;
}
.sidebar-content .sidebar-social li {
    display: inline-block;
    margin: 0 3px;
    padding-top: 30px;
}
.sidebar-content .sidebar-social li a {
    display: inline-block;
    border: 1px solid var(--border-1);
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sidebar-content .sidebar-social li a:after {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 59%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}
.sidebar-content .sidebar-social li a:hover {
    border: 1px solid var(--primary-color);
    color: #fff;
}
.sidebar-content .sidebar-social li:hover a:after {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
    transform: translate(-50%, -50%) scale(1);
}
.sidebar-content .list-post-area {
    margin: 50px 0 20px 0;
}
/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.sidebar-area::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #ccc;
}
.sidebar-area::selection {
    background-color: #999;
    color: #fff;
}
.sidebar-area-webkit-::selection {
    background-color: #999;
    color: #fff;
}
.sidebar-area::-moz-selection {
    background-color: #999;
    color: #fff;
}
#sidebar-overlay {
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: all 0s ease-in-out;
    width: calc(100% - 400px);
    z-index: -1;
}
.open-sidebar #sidebar-overlay {
    opacity: 1;
    z-index: 1002;
    transition: all 0.6s ease-in-out;
    transition-delay: 0.3s;
}
@media (max-width: 992px) {
    .sidebar-content .list-post-area.list-2 {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
    .reveal {
        visibility: unset;
    }
    .sidebar-area {
        width: 400px;
        padding: 100px 30px;
        justify-content: center;
    }
    .side-menu-logo {
        margin-bottom: 50px;
        max-width: 175px !important;
    }
    .side-menu-header h3 {
        display: none;
    }
    .side-menu-list li a {
        font-size: 14px;
    }
    .side-menu-list li p {
        font-size: 14px;
    }
    .side-menu-about p {
        display: none;
    }
}
@media (max-width: 767px) {
    .sidebar-area {
        width: 75%;
        padding: 40px 20px;
    }
    .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
        height: 90px;
        width: 90px;
    }
    .sidebar-content .list-post-area.list-2 .list-post-card {
        grid-template-columns: 90px 1fr;
    }
}
.side-menu-logo {
    max-width: 215px;
}
.side-menu-about {
    margin: 50px 0 20px 0;
}
.side-menu-about p {
    margin: 25px 0;
}
.side-menu-header h3 {
    font-size: 30px;
    font-weight: 600px;
    line-height: 1;
    font-weight: 600;
}
.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
    margin-bottom: 20px;
}
.sidebar-trigger {
    width: 47px;
    height: 47px;
    line-height: 47px;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #232327;
    color: #f8f8f8;
    right: 50px;
    top: 48px;
    font-size: 16px;
}
.sidebar-trigger.close img {
    transition: transform 0.5s ease-in-out;
}
.sidebar-trigger:hover img {
    transform: rotate(180deg);
}
.side-menu-contact {
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #3C3E40;
    margin-bottom: 0px;
    padding: 50px 0px 0px 0px;
    margin-top: 150px;
}
.side-menu-contact p {
    margin: 5px 0;
}
.side-menu-social {
    margin: 50px 0;
    display: grid;
    gap: 20px;
}
.social_item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    vertical-align: middle;
    margin: 0 0 0 14px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    text-decoration: none;
    color: white;
}
.social_item:hover {
    color: #8e8e8e;
}
.social_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}
.side-menu-contact .phone a {
    font-size: x-large;
    font-weight: bold;
    text-decoration: none;
    color: white;
}
.side-menu-contact .mail a {
    color: #8e8e8e;
    font-size: large;
    text-decoration: none;
}
/*====================
 Scroll top css
======================*/
#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--theme-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
#scroll-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
    #scroll-top.active {
        bottom: 100px;
    }
}
/*====================
Footer
======================*/
.footer {
    background-color: #1E1E1E;
    padding: 80px 0 0 0;
}
.footertittle {
    color: white;
    font-weight: 700;
    width: 90%;
}
.footerh3 {
    color: white;
    font-size: larger;
    font-weight: bold;
    margin-bottom: 15px;
}
.footer-list {
    list-style: none;
    padding: 0;
}
.footer-list li {
    margin-bottom: 8px;
}
.footer-list a {
    position: relative;
    text-decoration: none;
    color: #8e8e8e;
    transition: color 0.3s ease-in-out;
    font-size: larger;
}
.footer-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out;
}
.footer-list a:hover {
    color: white;
}
.footer-list a:hover::after {
    width: 100%;
}
.footer-contact {
    color: #8e8e8e;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}
.footer-contact:hover {
    color: #ddd;
}
.copyright {
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #3C3E40;
    display: flex;
    text-align: left;
    color: #8e8e8e;
}
.copyright .row {
    padding: 10px 0;
}
.copyright p {
    color: #8e8e8e;
}
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.input-container {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #666;
    padding: 15px 0 10px 0;
}
.mail-icon {
    margin-right: 8px;
    font-size: 1.2em;
}
input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1em;
    color: #afb2b7;
}
::placeholder {
    color: #afb2b7;
    opacity: 1;
}
button {
    font-size: 1.2em;
    color: white;
}
input[type="checkbox"] {
    margin: 0;
}
label {
    font-size: 0.9em;
}
.checkbox-container label,
.checkbox-container a {
    color: #afb2b7;
    text-decoration: none;
}
/*====================
 INDEX - HERO
======================*/
.hero {
    background: url(/assets/img/hero/indexhero.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-left: 5%;
    padding-bottom: 5%;
    color: white;
    position: relative;
}
.hero-heading {
    font-size: 7.55vw;
    line-height: 7.09vw;
    color: white;
    text-align: left;
    max-width: 600px;
}
.hero-heading .special {
    color: transparent;
    -webkit-text-stroke: 2px white;
    font-size: 7.55vw;
    line-height: 7.09vw;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.carousel {
    display: flex;
    width: max-content;
}
.carousel-content {
    display: flex;
    flex-shrink: 0;
    min-width: 100%;
}
.tag {
    display: inline-block;
    background: black;
    color: yellow;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
}
/* Section 1*/
.services {
    background: url(/assets/img/hero/section1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    padding: 120px 0;
    display: flex;
    text-align: center;
    justify-content: center;
}
.section-miniheading {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    opacity: 0.9;
    color: white;
}
.section-heading {
    margin: 30px 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    font-style: normal;
    text-transform: capitalize;
    letter-spacing: 1.8px;
    opacity: 0.9;
    color: white;
}
.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gym-icon {
    width: 100px;
    height: 150px;
    fill: #ced850;
    transition: fill 0.5s ease;
}
.service {
    padding: 20px;
    text-align: center;
    transition: background-color 0.5s ease;
}
.service:hover {
    background-color: #ced850;
}
.service h3 {
    transition: color 0.5s ease;
    color: white;
}
.service:hover h3,
.service:hover p {
    color: white;
}
.service:hover .gym-icon {
    fill: white;
}
.service-text {
    color: #8e8e8e;
}
/* About Us - Index*/
.about {
    display: flex;
    align-items: center;
    background-color: #22201f;
    color: white;
    padding: 120px 0;
}
.aboutc {
    display: flex;
    align-items: center;
    background-color: #181818;
}
.about .row {
    display: flex;
    align-items: center;
}
.about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text {
    padding: 0 300px 0 100px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.about-text h2 {
    font-size: 3rem;
    font-weight: bold;
    text-align: left;
    margin-left: -150px;
    width: 95%;
    color: white;
}
.about-text p {
    font-size: 20px;
    line-height: unset;
    margin-top: 15px;
    opacity: 0.8;
}
.btn-custom {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ced850;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    width: 20%;
}
.btn-custom:hover {
    background: #ced850;
    color: white;
}
/*Review*/
.review {
    background-color: #22201f;
    padding: 120px 0;
}
.reviewc {
    background-color: #181818;
    padding: 120px 0;
}
/* Center Swiper Content */
.testimonialSwiper {
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}
/* Center Each Slide */
.slider-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
/* Testimonial Container */
.sc_testimonials_item {
    width: 100%;
    max-width: 600px;
    text-align: center;
}
/* Author Image */
.sc_testimonials_item_author_avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 15px;
}
/* Testimonial Content */
.sc_testimonials_item_content p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: #ddd;
}
/* Author Details */
.sc_testimonials_item_author_title {
    font-size: 19px;
    line-height: 1.3em;
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    color: #f8f8f8
}
.sc_testimonials_item_author_subtitle {
    font-size: 15px;
    line-height: 1.333em;
    margin-top: 10px;
    color: #8e8e8e;
}
/* Swiper Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}
/* Swiper Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid rgb(255, 255, 255, 0.3);
    /* Circle border */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: transparent !important;
    transition: all 0.5s ease !important;
}
/* Remove default Swiper arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}
.swiper-button-prev {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="15" viewBox="0 0 30 15"><path d="M20 7.5H5M10 0L0 7.5l10 7.5" stroke="white" stroke-width="2" fill="none"/></svg>') no-repeat center;
    transition: all 0.5s ease;
}
.swiper-button-next {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="15" viewBox="0 0 30 15"><path d="M10 7.5h15M20 0l10 7.5-10 7.5" stroke="white" stroke-width="2" fill="none"/></svg>') no-repeat center;
    transition: all 0.5s ease;
}
.swiper-button-prev:hover {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="15" viewBox="0 0 30 15"><path d="M20 7.5H5M10 0L0 7.5l10 7.5" stroke="yellow" stroke-width="2" fill="none"/></svg>') no-repeat center;
    transition: all 0.5s ease;
}
.swiper-button-next:hover {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="15" viewBox="0 0 30 15"><path d="M10 7.5h15M20 0l10 7.5-10 7.5" stroke="yellow" stroke-width="2" fill="none"/></svg>') no-repeat center;
    transition: all 0.5s ease;
}
.swiper-pagination {
    position: relative !important;
    margin-top: 20px !important;
    display: flex !important;
    justify-content: center !important;
}
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: black !important;
    border: 2px solid white !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}
.swiper-pagination-bullet-active {
    background-color: #ced850 !important;
    border-color: #ced850 !important;
    transform: scale(1.2);
}
.marquee-row {
    background-color: #ced850;
    padding: 40px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-block {
    display: flex;
    animation: marquee 40s linear infinite;
}
.marquee-item-list {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.marquee-item-list li {
    font-size: 40px;
    font-weight: bold;
    color: white;
    display: inline-block;
    padding-right: 10px;
}
@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/*Welcome*/
.welcome {
    padding: 120px 0;
    background: url(/assets/img/hero/section1.webp);
}
.welcometittle {
    font-size: 3rem;
    font-weight: bold;
    text-align: left;
    color: white;
}
.welcomedesciption {
    font-size: 1rem;
    color: #767676;
}
.welcomerightimg {
    margin-top: 150px;
}
.welcomerightimg img{
    height: 600px;
  width: 85%;
}
.welcomeleftimg {
    position: relative;
    display: inline-block;
    width: 90%;
}
.welcomeleftimg img {
    width: 100%;
    max-height: 600px;
    transition: opacity 0.5s ease-in-out;
}
.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.welcomeleftimg:hover .default-img {
    opacity: 0;
}
.welcomeleftimg:hover .hover-img {
    opacity: 1;
}
/* BLOG */
.blog {
    padding: 120px 0;
}
.blogtittle {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}
.carousel-container {
    max-width: 90%;
    margin: auto;
    padding: 40px 0;
}
.owl-carousel .blog-card {
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}
.blog-card img {
    width: 100%;
    border-radius: 10px;
    height: 275px;
}
.blog-card h3 {
    font-size: 25px;
    color: white;
}
.blog-card h3 a {
    text-decoration: none;
    color: white;
}
.blog-card h3:hover a {
    color: #FFA500;
}
.blog-card p {
    padding: 10px 0;
    margin: 0px;
    font-size: 14px;
    color: #bbb;
}
.owl-dots {
    text-align: center;
    margin-top: 10px;
}
.owl-dot {
    display: inline-block;
}
.owl-dot span {
    background: #2c2c2c !important;
    width: 10px;
    height: 10px;
    margin: 5px;
    display: inline-block;
    border-radius: 50%;
    transition: background 0.3s ease;
}
.owl-dot.active span {
    background: #ced850 !important;
}
/* Contact*/
.contact-hero {
    padding: 120px 0 20px 0;
}
.linecontact {
    padding: 120px 0;
    margin-left: 3%;
    margin-right: 3%;
    border-top: 1px solid #3c3f47;
    justify-content: center;
    text-align: center;
}
.contact-heading {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: white;
}
.fa-chevron-down {
    font-size: 24px;
    color: #ffffff;
    display: block;
    text-align: center;
    margin-top: 10px;
}
.contact-miniheading {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    opacity: 0.9;
    color: white;
}
.contact-cheading {
    margin: 30px 0 10px 0;
    font-size: 50px;
    font-weight: 700;
    font-style: normal;
    text-transform: capitalize;
    letter-spacing: 1.8px;
    opacity: 0.9;
    color: white;
}
.contact-p {
    color: #8e8e8e;
    width: 70%;
    padding: 20px 0;
}
.contact-info {
    list-style: none;
    padding: 0;
}
.contact-info li {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #8e8e8e !important;
    font-size: 20px;
}
.contact-info li a {
    text-decoration: none;
    color: unset;
}
.contact-info i {
    font-size: 20px;
    color: #ced850;
    margin-right: 10px;
}
.form-container {
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.input-container i {
    margin-right: 8px;
    font-size: 1.2em;
    color: #afb2b7;
}
input,
textarea {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1em;
    color: #afb2b7;
}
textarea {
    resize: none;
    height: 60px;
}
::placeholder {
    color: #afb2b7;
    opacity: 1;
}
.submit-btn {
    width: 100%;
    background: #ced850;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}
.submit-btn:hover {
    background: #e63946;
    transition: 0.3s ease-in-out;
}
.contact-hero div.container div.row div.col-6 div.form-container form div.form-fields div.input-container i.fa.fa-pencil-alt {
    margin-bottom: 30px;
}
.input-container:hover {
    border-bottom: 1px solid #ffffff;
    transition: all 0.3s ease-in-out;
}
.checkbox-container {
    margin: 10px 0;
}
/*Service*/
.services-container {
    padding: 50px 0;
}
.service-card {
    border: 1px solid #3c3e40;
    padding: 30px;
    text-align: center;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.service-card:hover {
    background-color: #1e1e1e;
    transition: 0.5s ease;
}
.service-icon {
    font-size: 50px;
    color: #ced850;
    margin-bottom: 15px;
    height: 50px;
}
.service-card:hover .service-icon {
    color: white;
    transition: 0.5s ease;
}
.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}
.service-description {
    font-size: 1rem;
    opacity: 0.8;
    color: #8e8e8e;
}
.service-arrow {
    margin-top: 15px;
    font-size: 20px;
    color: white;
    display: inline-block;
    transition: color 0.3s;
}
.service-card:hover .service-arrow {
    color: #ced850;
}
.linergrd {
    color: #ffb404;
    background: linear-gradient(90deg, #ffb404, #ced850);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    -webkit-animation: animated-text 5s ease infinite;
    animation: animated-text 5s ease infinite;
}
/*About*/
.about-hero {
    padding: 120px 0 0 0;
}
.email {
    display: flex;
    align-items: center;
    border-radius: 25px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 23px;
}
.icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.icon i {
    font-size: 18px;
    color: black;
}
.progress-label span {
    color: white;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 700;
}
.progress-bar {
    background-color: #2c2c2c !important;
    height: 10px;
    width: 100%;
    margin-top: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    width: 0;
    background-color: #ced850;
    transition: width 2s ease-in-out;
}
.progress-container {
    margin-bottom: 15px;
}
.progress-label {
    display: flex;
    justify-content: space-between;
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: white;
    border-radius: 5px;
}
.checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.checklist li i {
    color: orange;
    margin-right: 10px;
    font-size: 20px;
}
.counter {
    padding: 120px 0;
}
.stats-container {
    display: flex;
    justify-content: space-around;
    padding: 20px 10%;
}
.stat-box {
    text-align: center;
    flex: 1;
}
.stat-box:not(:last-child) {
    border-right: 1px solid #444;
}
.stat-number {
    font-size: 50px;
    font-weight: bold;
    color: white;
}
.stat-label {
    font-size: 16px;
    color: #aaa;
}
.aboutimg {
    padding: 120px 0;
    background: url(/assets/img/image/DSC05.webp) rgba(0, 0, 0, 0.4);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Blog Page*/
.blogging {
    padding: 0 0 120px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px;
}
.blog-card-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: left;
    padding: 20px;
    color: white;
    transition: transform 0.3s ease-in-out;
}
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
}
.blog-card-card:hover .card-bg {
    transform: scale(1.1);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.content {
    position: relative;
    z-index: 2;
}
.category {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
}
.arrow {
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.3s ease-in-out;
}
.arrow svg {
    transition: transform 0.3s ease-in-out;
}
.blog-card-card:hover .arrow svg {
    transform: scaleX(1.2);
}
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* Blog Single Page*/
.hero-blog img {
    width: 100%;
    height: 100%;
    object-fit:fill;
    max-height: 700px;
}
.blogggi{
    height: 550px;
    width: 100%;
}
.hero-blog p,
.content p {
    color: #8e8e8e;
    font-size: 20px;
    padding: 20px 0;
}
.content h2 {
    color: white;
    font-size: 35px;
}
.quote-box {
    background-color: #1E1E1E;
    color: white;
    padding: 20px;
    border-left: 3px solid #FFA500;
    width: 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 15px;
}
.quote-text {
    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1.6;
}
.quote-icon {
    color: #FFA500;
    font-size: 50px;
}
.content ul li {
    color: #8e8e8e;
    font-size: 20px;
}
.blog-card-card div.content h3 a {
    color: unset;
}
.logobottom {
    height: 120px;
    width: auto;
}

.zwelcomeleftimg {
    position: relative;
    width: 100%;
}

.zwelcomeleftimg img {
    width: 100%;
    display: block;
}


@media only screen and (min-width: 993px) {
    .side-menu-mobile {
        display: none;
    }
}
@media only screen and (max-width: 992px) {
    .side-menu-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        height: auto !important;
    }
    .social_item {
        margin: unset;
    }
    .hero {
        justify-content: center;
        height: 80vh;
    }
    .hero-heading {
        font-size: 11vw;
        letter-spacing: 0em;
        line-height: 8.5vw;
        font-weight: bold;
    }
    .hero-heading .special {
        font-size: 11vw;
        letter-spacing: 0em;
        line-height: 8.5vw;
    }
    .services {
        padding: 60px 0;
    }
    .section-heading {
        font-size: 25px;
    }
    .gym-icon {
        width: 65px;
        height: 65px;
    }
    .icon-container {
        padding: 10px;
    }
    .about {
        padding: 0 0 60px 0;
        flex-direction: column;
    }
    .fullimgage {
        width: 100% !important;
    }
    .about-text {
        padding: unset !important;
        width: 90% !important;
    }
    .about-text h2 {
        margin: unset;
        font-size: 30px;
        padding: 20px 0;
    }
    .about-text p {
        font-size: 16px;
    }
    .btn-custom {
        width: 40%;
    }
    .review {
        padding: 60px 30px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
    .marquee-row {
        padding: 20px 0;
    }
    .marquee-item-list li {
        font-size: 20px;
    }
    .welcome {
        padding: 60px 0;
    }
    .section-miniheading {
        padding: 20px 0;
    }
    .welcometittle,
    .blogtittle {
        font-size: 2rem;
    }
    .welcomerightimg {
        margin: unset;
    }
    .footer div.container div.col div.row.pb-60 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }
    .about-hero,
    .reviewc {
        padding: 60px 20px;
    }
    .contact-heading {
        font-size: 2rem;
    }
    .linecontact {
        padding: 60px 0;
    }
    .about-hero div.container div.row {
        display: flex;
        flex-direction: column;
    }
    .contact-cheading {
        font-size: 30px;
    }
    .email {
        padding: 0 0 20px 0;
    }
    .about-hero div.d-flex {
        flex-direction: column;
    }
    .about-hero div.d-flex div.col-6 {
        width: 100%;
    }
    .counter {
        padding: 60px 0;
    }
    .stats-container {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }
    .stat-box,
    .stat-box:not(:last-child) {
        border: none;
    }
    .aboutimg {
        height: 50%;
        padding: 60px 0;
    }
    .blog,
    .contact-hero {
        padding: 60px 0;
    }
    .aboutc {
        flex-direction: column;
    }
    .aboutc div.col-6.p-0 {
        width: 100%;
    }
    .contact-hero div.container div.row {
        display: flex;
        flex-direction: column;
    }
    .contact-hero div.container div.row div.col-6 {
        width: 100%;
    }
    .form-container {
        padding: unset;
    }
    .quote-box {
        width: 100%;
    }
    .side-menu-contact {
        padding: 20px 0px 0px 0px;
        margin-top: 40px;
    }
    .header {
        padding: 0px;
    }
    .welcomeleftimg{
        width: 100%;
    }
    .ddd{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .logobottom {
        height: 75px;
        width: auto;
    }
    .footertittle{
        font-size: 24px;
    }
}
.side-menu-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.side-menu-content li {
    padding: 10px;
}
.side-menu-mobile ul li a {
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    color: var(--color-white);
    display: block;
    padding: 5px 0;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease-in-out;
}

/*Gallery*/
.s-gallery {
    padding: 0px 0px 100px 0px;
}
.s-gallery .gallery-main .gallery-box {
    position: relative;
    height: 500px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.s-gallery .gallery-main .gallery-box:hover .content {
    height: 100%;
    opacity: 1;
    visibility: visible;
    width: 100%;
}
.s-gallery .gallery-main .gallery-box:hover {
    transform: translateY(10px);
}
.s-gallery .gallery-main .gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.gallery-box {
    width: 100%;
    margin: 25px 0px 25px 0px;
}
.map iframe{
        filter: invert(1);
}