html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #111;
    font-weight: 400;
    font-family: "Kanit", sans-serif;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: #6b6b6b;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 15px 0;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: #fff;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    color: #111;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    transition: background 0.5s ease;
}

.set-bg.bg-loaded {
    animation: fadeInBg 0.5s ease-in-out;
}

@keyframes fadeInBg {
    from {
        opacity: 0.9;
    }

    to {
        opacity: 1;
    }
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.spad-2 {
    padding-top: 50px;
    padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

.primary-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 0 12px;
    color: #fff;
    text-align: center;
    height: 46px;
    border-left: 2px solid #eb3c5a;
    border-right: 2px solid #f67831;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-position: 0 0, 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-image: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831)), -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background-image: -o-linear-gradient(left, #eb3c5a 0%, #f67831 100%), -o-linear-gradient(left, #eb3c5a 0%, #f67831 100%);
    background-image: linear-gradient(to right, #eb3c5a 0%, #f67831 100%), linear-gradient(to right, #eb3c5a 0%, #f67831 100%);
    -webkit-transition-duration: 1000ms;
    -o-transition-duration: 1000ms;
    transition-duration: 1000ms;
    line-height: 45px;
    position: relative;
    z-index: 1;
}

.primary-btn:after {
    color: #fff;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    background: #f67831;
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 1;
}

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: #fff0;
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: #fff0;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: #fff0;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: #fff0;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: #fff0;
    }

    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: #fff0;
    }
}

.header-section {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

.header-top {
    padding: 12px 0;
    transition: all 0.4s ease;
}

.header-top-left p {
    color: #fff;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
}

.header-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.ht-item {
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.ht-item::after {
    content: "|";
    position: absolute;
    right: -15px;
    color: rgb(255 255 255 / 0.3);
}

.ht-item:last-child::after {
    display: none;
}

.ht-item i {
    color: #f15d44;
}

.nav-menu .mainmenu ul li .language-trigger {
    font-family: "Kanit", sans-serif;
    font-size: 16px;
    color: #f15d44 !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 0 !important;
    background: transparent !important;
}

.nav-menu .mainmenu ul li .language-trigger i.fa-globe {
    margin-right: 12px;
    font-size: 18px;
}

.nav-menu .mainmenu ul li .language-trigger i.arrow_down {
    margin-left: 10px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-menu .mainmenu ul li:hover .language-trigger i.arrow_down {
    transform: rotate(180deg);
}

.header-bottom {
    background: #fff0;
    transition: all 0.4s ease;
}

.logo-area {
    background: rgb(0 0 0 / 0.4);
    padding: 9px 40px;
    display: inline-block;
    position: relative;
}

.logo-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    max-width: 100%;
    width: 109px;
}

.logo-text {
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -4px;
    line-height: 1;
    font-family: "Kanit", sans-serif;
}

.nav-extra-wrap {
    background: rgb(0 0 0 / 0.4);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 40px;
    margin-left: -50px;
}

.nav-menu .mainmenu ul {
    display: flex;
    gap: 25px;
}

.nav-menu .mainmenu ul li {
    list-style: none;
    position: relative;
    padding: 38px 0;
}

.nav-menu .mainmenu ul li.active::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #f15d44;
}

.nav-menu .mainmenu ul li.has-dropdown .dropdown li.active::before {
    content: "";
    position: absolute;
    left: 0px !important;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #f15d44;
}

.nav-menu .mainmenu ul li a:hover,
.nav-menu .mainmenu ul li.active a {
    color: #c9bab7;
}

.header-right-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hr-item {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.hr-item:hover {
    color: #f15d44;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: #f15d44;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.hamburger-menu {
    font-size: 24px;
}

.header-section.sticky-header {
    background: #000;
    box-shadow: 0 5px 20px rgb(0 0 0 / 0.3);
    border-bottom: 2px solid #f15d44;
}

.header-section.sticky-header .header-top {
    display: none;
}

.header-section.sticky-header .header-bottom {
    background: #000;
}

@media only screen and (max-width: 991px) {
    .hero-video-bg {
        display: none;
    }

    .hero-section .owl-carousel .owl-item {
        background: linear-gradient(to right, #3a3a3a, #6e6e6e, #bfbfbf);
    }

    .contact-section .contact-info {
        margin-top: 35px;
    }

    .has-dropdown.slicknav_parent {
        padding: 10px 0 10px 5px;
    }

    .language-trigger i {
        display: none;
    }

    .logo-icon img {
        width: 60px !important;
    }

    .header-top {
        display: none !important;
    }

    .header-bottom {
        padding: 10px 0;
        background: #000;
    }

    .logo-area {
        padding: 5px 20px;
        background: #fff0;
        border-right: none;
    }

    .logo-text {
        font-size: 40px;
    }

    .logo-icon {
        padding: 5px;
    }

    .nav-extra-wrap {
        background: #fff0;
        margin-left: 0;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 100%;
    }

    .nav-menu {
        display: none;
    }

    #mobile-menu-wrap {
        display: block;
    }

    .slicknav_menu {
        display: block;
        background: #fff0;
        padding: 0;
    }

    .slicknav_btn {
        margin: 0;
        background: #f15d44;
        border-radius: 4px;
    }

    .slicknav_menutxt {
        display: none !important;
    }

    .slicknav_nav {
        position: fixed;
        right: 0;
        top: 97px;
        width: 75%;
        height: 100vh;
        background: #fff;
        z-index: 9;
        box-shadow: -5px 0 20px rgb(0 0 0 / 0.1);
        padding: 0;
        overflow-y: auto;
        transition: all 0.4s ease;
    }

    .slicknav-logo {
        display: flex;
        align-items: center;
        gap: 15px;
        display: none;
    }

    .slicknav-logo img {
        width: 50px;
        height: 50px;
    }

    .slicknav-logo span {
        font-size: 40px;
        font-weight: 900;
        color: #111;
        font-family: "Kanit", sans-serif;
    }

    .slicknav-close {
        font-size: 24px;
        color: #000;
        cursor: pointer;
        padding: 5px;
        z-index: 999999;
        position: absolute;
        top: 0;
        right: 0;
        display: none;
    }

    .slicknav_nav ul {
        margin: 0;
        padding: 0;
    }

    .slicknav_nav li {
        position: relative;
    }

    .slicknav_nav li a {
        margin: 0;
        color: #fff;
        font-size: 17px;
        font-weight: 400;
        font-family: "Roboto", sans-serif;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        background: transparent !important;
        text-transform: capitalize;
        text-align: left;
    }

    .slicknav_nav li a:hover {
        color: #f15d44;
        border-radius: 0;
    }

    .slicknav_nav .slicknav_row {
        padding: 0 !important;
    }

    .slicknav_nav .slicknav_row:hover {
        background: #fff0;
        color: #f15d44;
    }

    .mobile-language-switcher {
        display: flex !important;
        align-items: center;
        margin-right: 20px;
        position: relative;
        cursor: pointer;
    }

    .ml-trigger {
        display: flex;
        align-items: center;
        gap: 6px;
        background: #fff0;
        border: none;
        color: #fff;
        padding: 5px 0;
        font-family: "Kanit", sans-serif;
        font-weight: 600;
        font-size: 15px;
        outline: none;
    }

    .ml-trigger i.fa-globe {
        color: #f15d44;
        font-size: 18px;
    }

    .ml-trigger i.fa-angle-down {
        font-size: 13px;
        margin-left: 2px;
        color: #fff;
        transition: transform 0.3s ease;
    }

    .mobile-language-switcher.active .ml-trigger i.fa-angle-down {
        transform: rotate(180deg);
    }

    .ml-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        width: 140px;
        background: #222;
        border-top: 3px solid #f15d44;
        list-style: none;
        padding: 0;
        margin: 10px 0 0;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 10px 30px rgb(0 0 0 / 0.5);
    }

    .mobile-language-switcher.active .ml-dropdown {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .ml-dropdown li {
        border-bottom: 1px solid rgb(255 255 255 / 0.05);
    }

    .ml-dropdown li:last-child {
        border-bottom: none;
    }

    .ml-dropdown li a {
        display: block;
        padding: 12px 20px;
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 500;
        text-align: left;
        transition: background 0.3s ease;
    }

    .ml-dropdown li a:hover,
    .ml-dropdown li.active-lang a {
        background: #333;
        color: #f15d44 !important;
    }

    .slicknav_nav li:has(a.language-trigger) {
        display: none !important;
    }
}

.mobile-language-switcher {
    display: none;
}

.language-switcher .dropdown.show {
    visibility: visible;
    opacity: 1;
}

@media only screen and (min-width: 992px) {
    .hamburger-menu {
        display: none !important;
    }
}

.header-section.sticky-header {
    background: -webkit-gradient(linear, left top, right top, from(#111111), to(#1e1e1e));
    background: -o-linear-gradient(left, #111111, #1e1e1e);
    background: linear-gradient(to right, #111111, #1e1e1e);
    border-bottom: 2px solid #f15d44;
    -webkit-box-shadow: 0 5px 15px rgb(0 0 0 / 0.5);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.5);
}

.logo {
    float: left;
}

.logo a {
    display: inline-block;
    padding: 24px 0 29px;
}

.nav-menu {
    float: right;
}

.nav-menu .mainmenu {
    display: inline-block;
}

.nav-menu .mainmenu ul li {
    list-style: none;
    display: inline-block;
    margin-right: 27px;
}

.nav-menu .mainmenu ul li.active a:after {
    opacity: 1;
}

.nav-menu .mainmenu ul li a {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    padding: 28px 0;
    position: relative;
}

.nav-menu .mainmenu ul li a:hover:after {
    opacity: 1;
}

.nav-menu .mainmenu ul li {
    position: relative;
}

.nav-menu .mainmenu ul li .dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 280px;
    background: #111;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.5);
    text-align: left;
    transform: translateY(10px);
    display: block !important;
}

.nav-menu .mainmenu ul li:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-menu .mainmenu ul li .dropdown li {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

.nav-menu .mainmenu ul li.has-dropdown {
    position: relative;
}

.nav-menu .mainmenu ul li .dropdown {
    position: absolute;
    left: 0;
    top: 70%;
    width: 260px;
    background: #1a1a1a;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.5);
    text-align: left;
    transform: translateY(10px);
}

.nav-menu .mainmenu ul li:last-child .dropdown {
    width: 180px;
    left: auto;
    right: 0;
}

@media only screen and (min-width: 992px) {
    .nav-menu .mainmenu ul li:hover>.dropdown {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu .mainmenu ul li .dropdown.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.nav-menu .mainmenu ul li .dropdown li {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    width: 100%;
}

.nav-menu .mainmenu ul li .dropdown li a {
    display: block;
    padding: 10px 20px 10px 45px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: "Poppins", sans-serif !important;
    transition: all 0.2s ease;
    text-align: left;
    background: transparent !important;
    line-height: normal !important;
    border: none !important;
}

.nav-menu .mainmenu ul li .dropdown li a:after {
    display: none !important;
}

.nav-menu .mainmenu ul li .dropdown li a:hover {
    color: #f15d44 !important;
    background: rgb(255 255 255 / 0.05) !important;
}

.nav-menu .mainmenu ul li .dropdown li.active-lang a::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
}

@media only screen and (max-width: 991px) {
    .nav-menu .mainmenu ul li .dropdown {
        position: static;
        transform: none !important;
        width: 100% !important;
        background: #1a1a1a;
        box-shadow: none;
        display: none;
        padding: 5px 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-menu .mainmenu ul li .dropdown.show {
        display: block;
    }
}

.nav-menu .mainmenu ul li a:after {
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 100%;
    height: 2px;
    background: #f15d44;
    content: "";
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-menu .signup-btn {
    display: inline-block;
    margin: 16px 0 16px 30px;
}

.nav-menu .signup-btn:after {
    opacity: 0;
}

.slicknav_menu {
    display: none;
}

.hero-section {
    padding: 0;
}

.hs-item {
    height: 810px;
    padding-top: 245px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hs-item:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(0 0 0 / 0.8)), to(rgb(0 0 0 / 0.1)));
    background: -o-linear-gradient(left, rgb(0 0 0 / 0.8), rgb(0 0 0 / 0.1));
    background: linear-gradient(to right, rgb(0 0 0 / 0.8), rgb(0 0 0 / 0.1));
    content: "";
    z-index: -1;
}

.hero-text span {
    font-size: 14px;
    color: #f15d44;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 700;
    display: block;
    margin-top: 30px;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s ease 0.2s;
    -o-transition: all 0.6s ease 0.2s;
    transition: all 0.6s ease 0.2s;
}

.hero-text h1 {
    font-size: 84px;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s ease 0.4s;
    -o-transition: all 0.6s ease 0.4s;
    transition: all 0.6s ease 0.4s;
}

.hero-text p {
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s ease 0.6s;
    -o-transition: all 0.6s ease 0.6s;
    transition: all 0.6s ease 0.6s;
}

.hero-text .primary-btn {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s ease 0.8s;
    -o-transition: all 0.6s ease 0.8s;
    transition: all 0.6s ease 0.8s;
}

.hero-slider.owl-carousel .owl-item.active .hero-text span,
.hero-slider.owl-carousel .owl-item.active .hero-text h1,
.hero-slider.owl-carousel .owl-item.active .hero-text p,
.hero-slider.owl-carousel .owl-item.active .hero-text .primary-btn {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.hero-slider.owl-carousel .owl-nav button {
    font-size: 30px;
    color: #fff;
    position: absolute;
    left: 40px;
    top: 50%;
    width: 50px;
    height: 50px;
    border: 1px solid rgb(255 255 255 / 0.3);
    border-radius: 50%;
    line-height: 48px;
    text-align: center;
    margin-top: -25px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.hero-slider.owl-carousel .owl-nav button:hover {
    background: #f15d44;
    border-color: #f15d44;
}

.hero-slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 40px;
}

.hero-slider.owl-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.hero-slider.owl-carousel .owl-dots button {
    width: 8px;
    height: 8px;
    background: rgb(255 255 255 / 0.4);
    border-radius: 50%;
    margin: 0 5px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.hero-slider.owl-carousel .owl-dots button.active {
    background: #f15d44;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.about-redesign {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding-top: 50px;
    padding-bottom: 60px;
}

.about-redesign:before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(241 93 68 / 0.05) 0%, #fff0 70%);
    z-index: 0;
    pointer-events: none;
}

.about-bg-watermark {
    position: absolute;
    left: -5%;
    top: 10%;
    width: 40%;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-15deg);
}

.floating-text {
    position: absolute;
    right: -20px;
    bottom: 50px;
    font-size: 220px;
    font-weight: 900;
    color: #fff0;
    -webkit-text-stroke: 1px rgb(0 0 0 / 0.03);
    text-transform: uppercase;
    line-height: 0.8;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.about-img-frame {
    position: relative;
    padding: 20px;
}

.main-img-hex {
    position: relative;
    width: 100%;
    max-width: 520px;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgb(0 0 0 / 0.15));
}

.main-img-hex:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 15px solid #f15d44;
    border-top: none;
    border-right: none;
    z-index: -1;
    opacity: 0.2;
}

.floating-icon {
    position: absolute;
    right: 0;
    top: 20px;
    width: 140px;
    height: 140px;
    background: #111;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 0.2);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-content {
    position: relative;
    z-index: 2;
}

.at-title span.theme-tag {
    font-size: 14px;
    color: #eb3c5a;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 2px;
    position: relative;
}

.at-title h2 {
    font-size: 34px;
    color: #111;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-tagline {
    font-size: 18px;
    color: #111;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-box {
    margin-bottom: 45px;
}

.content-box p {
    color: #555;
    font-size: 17px;
    margin-bottom: 25px;
}

.about-plans-wrap {
    margin-bottom: 20px;
}

.plans-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #111;
    position: relative;
}

.plans-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #f15d44;
}

.plan-item {
    background: rgb(255 255 255 / 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgb(21 21 21 / 0.3);
}

.plan-item:hover {
    transform: translateY(-5px);
    border-color: #f15d44;
    box-shadow: 0 30px 60px rgb(241 93 68 / 0.15);
    background: #fff;
}

.plan-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #eb3c5a, #f67831);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.plan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 0.12);
    border-color: rgb(241 93 68 / 0.2);
}

.plan-item:hover:before {
    transform: scaleX(1);
}

.plan-item h5 {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin-bottom: 15px;
}

.plan-item p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
}

.about-contact-wrap {
    background: #111;
    padding: 50px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-contact-wrap:after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgb(241 93 68 / 0.1);
    border-radius: 50%;
}

.about-contact-wrap h4 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #fff;
}

#fitness-list {
    scroll-margin-top: 50px;
}

.contact-list,
.fitress-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.contact-list li,
.fitress-list li {
    font-size: 17px;
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.fitress-list li {
    color: #555555 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fitress-list li span:nth-child(1) {
    color: #f15d44 !important;
    margin-right: 10px;
}

.fitress-list li span:nth-child(2) {
    font-size: 16px;
}

.fitress-list li:hover {
    color: #f15d44 !important;
    transform: translateX(10px);
}

.contact-list li:before {
    content: "→";
    margin-right: 15px;
    color: #f15d44;
    font-weight: 700;
}

.fitress-list li:before {
    display: none;
}

.appointment-box {
    background: rgb(255 255 255 / 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 0.1);
}

.appointment-box h5 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.appointment-box p {
    margin-bottom: 12px;
    font-size: 16px;
    color: #bbb;
}

.appointment-box p a {
    color: #bbb;
}

.appointment-box i {
    color: #f15d44;
    margin-right: 15px;
    font-size: 18px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    padding: 12px 12px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icon i {
    margin-right: 0;
    font-size: 20px;
    color: #fff;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.youtube {
    background: red;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.tiktok {
    background: #010101;
}

.social-icon:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.3);
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .at-title h2 {
        font-size: 42px;
    }

    .about-contact-wrap {
        padding: 30px;
    }

    .floating-text {
        font-size: 120px;
        bottom: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .about-redesign {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .at-title h2 {
        font-size: 34px;
    }

    .main-img-hex {
        margin-bottom: 50px;
    }

    .appointment-box {
        padding: 20px;
    }
}

.coaches-section {
    background: #fff;
    padding-bottom: 0;
    padding-top: 0;
}

.coach-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.coach-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.coach-image:hover img {
    transform: scale(1.05);
}

.shadow-premium {
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
}

.coach-details {
    padding-left: 30px;
}

.coach-title-wrap {
    margin-bottom: 15px;
}

.coach-details h2 {
    color: #111;
    font-size: 40px;
    font-weight: 600;
}

.coach-category {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #6b6b6b;
    font-weight: 500;
}

.dot-status {
    width: 20px;
    height: 20px;
    background: #ff4d4d;
    border-radius: 50%;
    border: 3px solid #fcc;
    display: inline-block;
}

.coach-bio {
    font-size: 16px;
    line-height: 28px;
    color: #6b6b6b;
    margin-bottom: 30px;
    max-width: 90%;
}

.coach-info-list {
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    margin-bottom: 12px;
    font-size: 16px;
}

.info-label {
    font-weight: 700;
    color: #111;
    width: 165px;
    display: inline-block;
}

.info-value,
.info-value a,
.info-value a:hover {
    color: #6b6b6b !important;
}

.coach-social {
    display: flex;
    gap: 15px;
}

.coach-social a {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #111;
    font-size: 18px;
    transition: all 0.3s ease;
}

.coach-social a:hover {
    background: #f15d44;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(241 93 68 / 0.3);
}

.coach-social a:hover svg {
    fill: #fff !important;
}

@media only screen and (max-width: 991px) {
    .coach-details {
        padding-left: 0;
        margin-top: 50px;
    }

    .coach-details h2 {
        font-size: 36px;
    }

    .coach-bio {
        max-width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .coaches-section {
        padding-top: 0;
        padding-bottom: 0;
    }

    .coach-details h2 {
        font-size: 30px;
    }

    .info-label,
    .info-value {
        width: 100%;
    }

    .coaches-section .info-item {
        display: block !important;
    }
}

.video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgb(17 17 17 / 0.8);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
}

.mfp-bg {
    background: rgb(11 11 11 / 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.9;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.8);
}

.mfp-figure:after {
    background: rgb(255 255 255 / 0.05) !important;
    box-shadow: 0 0 50px rgb(0 0 0 / 0.5) !important;
    border-radius: 15px;
}

img.mfp-img {
    border-radius: 12px;
    padding: 20px 0 !important;
}

.mfp-close {
    width: 60px !important;
    height: 60px !important;
    line-height: 60px !important;
    background: rgb(241 93 68 / 0.8) !important;
    border-radius: 50% !important;
    top: 20px !important;
    right: 20px !important;
    opacity: 1 !important;
    transition: all 0.3s;
}

.mfp-close:hover {
    background: #111111 !important;
    transform: rotate(90deg);
}

.mfp-arrow {
    width: 80px !important;
    height: 80px !important;
    background: rgb(255 255 255 / 0.1) !important;
    border-radius: 50% !important;
    transition: all 0.3s;
}

.mfp-arrow:hover {
    background: rgb(241 93 68 / 0.8) !important;
}

.mfp-arrow:before,
.mfp-arrow:after {
    border: none !important;
    font-family: "FontAwesome";
    color: #fff;
    font-size: 30px;
    margin: 0 !important;
    top: 23% !important;
    left: 42% !important;
    transform: translate(-50%, -50%) !important;
}

.mfp-arrow-left:after {
    content: "\f104";
}

.mfp-arrow-right:after {
    content: "\f105";
}

.gallery-section .gallery-filter .mix img {
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-section .gallery-filter .mix:hover img {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.2);
    border-radius: 10px;
}

@media only screen and (max-width: 991px) {
    .about-img-frame {
        margin-bottom: 30px;
        padding-left: 0;
    }

    .main-img-hex {
        max-width: 100%;
    }

    .at-title h2 {
        font-size: 36px;
    }

    .floating-text {
        font-size: 100px;
    }

    .about-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 575px) {
    .main-img-hex:before {
        border-width: 10px;
    }

    .floating-icon {
        width: 80px;
        height: 80px;
    }
}

.services-pic {
    margin-left: -15px;
    margin-right: -15px;
}

.services-pic img {
    height: 660px;
    min-width: 100%;
    object-fit: cover;
}

.services-item {
    margin-left: -15px;
    margin-right: -15px;
    background: #141414;
    padding-top: 130px;
    position: relative;
    padding-left: 70px;
    padding-right: 45px;
    height: 330px;
}

.services-item.bg-gray {
    background: #1e1e1e;
}

.services-item.pd-b {
    padding-top: 118px;
}

.services-item img {
    position: absolute;
    left: 70px;
    top: 80px;
}

.services-item h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 20px;
}

.services-item p {
    color: #bdbdbd;
    margin-bottom: 0;
}

.classes-section {
    padding-top: 50px;
    padding-bottom: 60px;
}

.classes-section.classes-page {
    padding-bottom: 60px;
}

.classes-slider {
    margin: 0;
}

.classes-slider.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 12px;
}

.classes-slider.owl-carousel .owl-dots button {
    width: 9px;
    height: 9px;
    display: inline-block;
    background: #ebebeb;
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.classes-slider.owl-carousel .owl-dots button.owl-dot.active {
    width: 42px;
    border-radius: 50px;
    background: #f67831;
}

.classes-slider.owl-carousel .owl-dots button:last-child {
    margin-right: 0;
}

.classes-slider .col-lg-4 {
    max-width: 100%;
}

.single-class-item {
    height: 255px;
    position: relative;
    margin-bottom: 30px;
}

.single-class-item .si-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgb(0 0 0 / 0.4);
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 15px;
}

.single-class-item .si-text h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.single-class-item .si-text span {
    font-size: 14px;
    color: #fff;
}

.single-class-item .si-text span i {
    color: #e85d39;
    margin-right: 4px;
}

.trainer-section {
    background: #f5f5f5;
    padding-top: 90px;
    padding-bottom: 190px;
}

.trainer-section.about-trainer {
    background: #fff;
}

.single-trainer-item {
    position: relative;
}

.single-trainer-item:hover .trainer-text {
    height: 250px;
    bottom: -90px;
    padding: 26px 30px 30px;
    -webkit-box-shadow: 0 10px 49px 0 rgb(0 0 0 / 0.15);
    box-shadow: 0 10px 49px 0 rgb(0 0 0 / 0.15);
}

.single-trainer-item:hover .trainer-text p {
    opacity: 1;
}

.single-trainer-item:hover .trainer-text .trainer-social {
    opacity: 1;
    visibility: visible;
}

.single-trainer-item img {
    min-width: 100%;
}

.single-trainer-item .trainer-text {
    position: absolute;
    left: 50%;
    bottom: -55px;
    text-align: center;
    background: #fff;
    width: 310px;
    margin: 0 auto;
    -webkit-transform: translateX(-155px);
    -ms-transform: translateX(-155px);
    transform: translateX(-155px);
    -webkit-box-shadow: 0 3px 4px 0 rgb(0 0 0 / 0.15);
    box-shadow: 0 3px 4px 0 rgb(0 0 0 / 0.15);
    padding: 20px 30px 18px;
    height: 90px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}

.single-trainer-item .trainer-text h5 {
    font-size: 20px;
    color: #111;
    font-weight: 600;
    margin-bottom: 4px;
}

.single-trainer-item .trainer-text span {
    font-size: 16px;
    color: #f15d44;
}

.single-trainer-item .trainer-text p {
    margin-top: 7px;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.single-trainer-item .trainer-text .trainer-social {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.single-trainer-item .trainer-text .trainer-social a {
    display: inline-block;
    font-size: 17px;
    color: #111;
    margin-right: 25px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.single-trainer-item .trainer-text .trainer-social a:hover {
    color: #f15d44;
}

.single-trainer-item .trainer-text .trainer-social a:last-child {
    margin-right: 0;
}

.testimonial-section {
    position: relative;
}

.testimonial-section:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1100px;
    height: 540px;
    background: url(../img/testimonial/testimonial-bg.png);
    content: "";
    -webkit-transform: translate(-550px, -270px);
    -ms-transform: translate(-550px, -270px);
    transform: translate(-550px, -270px);
}

.testimonial-section .section-title {
    margin-bottom: 35px;
}

.testimonial-slider.owl-carousel .owl-item img {
    display: inline-block;
}

.testimonial-slider.owl-carousel .owl-nav button {
    font-size: 36px;
    color: #bdbdbd;
    position: absolute;
    left: -110px;
    top: 30%;
}

.testimonial-slider.owl-carousel .owl-nav button:hover {
    color: #ed8064;
}

.testimonial-slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -110px;
}

.testimonial-slider .testimonial-item {
    text-align: center;
}

.testimonial-slider .testimonial-item p {
    font-size: 22px;
    color: #111;
    line-height: 30px;
    margin-bottom: 60px;
}

.testimonial-slider .testimonial-item .ti-pic {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-slider .testimonial-item .ti-pic img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.testimonial-slider .testimonial-item .ti-pic .quote {
    position: absolute;
    left: 20px;
    top: -22px;
    z-index: -1;
}

.testimonial-slider .testimonial-item .ti-pic .quote img {
    width: auto;
    height: auto;
    border-radius: initial;
}

.testimonial-slider .testimonial-item .ti-author {
    margin-top: 25px;
}

.testimonial-slider .testimonial-item .ti-author h4 {
    font-size: 22px;
    color: #111;
    font-weight: 600;
    margin-bottom: 8px;
}

.testimonial-slider .testimonial-item .ti-author span {
    font-size: 16px;
    color: #f15d44;
}

.banner-section {
    padding-top: 65px;
}

.banner-text {
    padding-top: 145px;
}

.banner-text h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 50px;
}

.membership-section.spad {
    padding-top: 50px;
    padding-bottom: 70px;
}

.membership-section .section-title {
    margin-bottom: 55px;
}

.membership-item {
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0 15px 49px rgb(0 0 0 / 0.15);
    box-shadow: 0 15px 49px rgb(0 0 0 / 0.15);
    padding-bottom: 50px;
}

.membership-item .mi-title {
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    padding: 25px 0;
    position: relative;
    margin-bottom: 38px;
}

.membership-item .mi-title h4 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.membership-item .mi-title:after {
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 30px;
    height: 15px;
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    -webkit-clip-path: polygon(0% 0%, 50% 100%, 50% 100%, 100% 0%);
    clip-path: polygon(0% 0%, 50% 100%, 50% 100%, 100% 0%);
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    content: "";
}

.membership-item .mi-price {
    font-size: 40px;
    color: #f15d44;
    font-weight: 600;
    margin-bottom: 24px;
}

.membership-item .mi-price span {
    font-size: 16px;
    color: #6b6b6b;
    font-weight: 400;
}

.membership-item ul {
    margin-bottom: 27px;
}

.membership-item ul li {
    list-style: none;
    font-size: 16px;
    line-height: 36px;
}

.membership-item ul li p {
    margin-bottom: 0;
    color: #6b6b6b;
}

.membership-item ul li span {
    color: #111;
    font-weight: 600;
}

.membership-item .membership-btn {
    color: #111;
}

.membership-item .membership-btn:hover {
    color: #fff;
}

.membership-item .membership-btn:hover:after {
    opacity: 1;
}

.membership-item .membership-btn:after {
    opacity: 0;
}

.register-section {
    background: #f5f4f4;
}

.register-section.classes-page {
    background: #fff;
    padding-top: 100px;
    margin-top: 0;
    padding-bottom: 0;
}

.register-section.classes-page .classes-page-text {
    -webkit-box-shadow: 0 12px 21px rgb(0 0 0 / 0.15);
    box-shadow: 0 12px 21px rgb(0 0 0 / 0.15);
}

.register-section .section-title {
    margin-bottom: 32px;
}

.register-section .section-title h2 {
    margin-bottom: 12px;
}

.register-text {
    padding: 30px 70px 44px 70px;
    background: #fff;
    margin-right: -15px;
}

.register-text .register-form label {
    font-size: 14px;
    color: #9b9b9b;
    margin-bottom: 11px;
}

.register-text .register-form input {
    width: 100%;
    height: 46px;
    border: 1px solid #ebebeb;
    padding-left: 20px;
    font-size: 14px;
    color: #9b9b9b;
    margin-bottom: 36px;
}

.register-text .register-form textarea {
    width: 100%;
    height: 146px;
    border: 1px solid #ebebeb;
    padding: 20px;
    font-size: 14px;
    color: #9b9b9b;
}

.register-text .register-form .register-btn {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    border: none;
    padding: 12px 0;
    cursor: pointer;
    margin-top: 30px;
}

.register-pic {
    margin-left: -15px;
}

.register-pic img {
    height: 602px;
    object-fit: cover;
}

.latest-blog-section {
    padding-bottom: 50px;
}

.latest-blog-section .section-title {
    margin-bottom: 55px;
}

.latest-blog-section.recommend {
    padding-top: 0;
}

.latest-blog-section.recommend h3 {
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 52px;
}

.footer-banner-item {
    height: 400px;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
    padding-top: 85px;
    padding-left: 60px;
    padding-right: 60px;
    z-index: 1;
}

.footer-banner-item:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 520px;
    height: 310px;
    border: 18px solid rgb(255 255 255 / 0.1);
    content: "";
    -webkit-transform: translate(-260px, -155px);
    -ms-transform: translate(-260px, -155px);
    transform: translate(-260px, -155px);
    z-index: -1;
}

.footer-banner-item span {
    font-size: 16px;
    color: #f15d44;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-banner-item h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 5px;
}

.footer-banner-item p {
    color: #fff;
    margin-bottom: 42px;
}

.footer-section {
    background: #111;
    padding-top: 60px;
    padding-bottom: 30px;
}

.contact-option span {
    font-size: 14px;
    color: #f15d44;
}

.contact-option p {
    font-size: 16px;
    color: #fff;
    margin-top: 15px;
}

.subscribe-option {
    overflow: hidden;
    padding: 0 45px;
    margin-bottom: 30px;
    margin-top: 43px;
}

.subscribe-option .so-text {
    float: left;
    padding: 34px 0 26px;
}

.subscribe-option .so-text h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
}

.subscribe-option .so-text p {
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
}

.subscribe-option .subscribe-form {
    float: right;
    width: 340px;
    position: relative;
    margin: 37px 0;
}

.subscribe-option .subscribe-form input {
    width: 100%;
    height: 46px;
    font-size: 14px;
    color: #bdbdbd;
    border: 1px solid #fff;
    padding-left: 22px;
}

.subscribe-option .subscribe-form button {
    font-size: 18px;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    border: none;
    height: 46px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 22px;
}

.copyright-text {
    overflow: hidden;
}

.copyright-text p {
    padding-top: 6px;
    float: left;
    color: #fff;
    margin-right: 25px;
    display: inline-block;
}

.copyright-text p a {
    color: #eb3c5a;
}

.copyright-text p a:hover {
    color: #eb3c5a;
}

.copyright-text ul {
    display: inline-block;
}

.copyright-text ul li {
    list-style: none;
    font-size: 16px;
    display: inline-block;
    margin-right: 25px;
    line-height: 40px;
}

.copyright-text ul li:last-child {
    margin-right: 0;
}

.copyright-text ul li a {
    color: #fff;
}

.copyright-text ul li:last-child {
    margin-right: 0;
}

.copyright-text .footer-social {
    float: right;
}

.copyright-text .footer-social a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    width: 40px;
    height: 40px;
    background: #282828;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-left: 4px;
}

.copyright-text .footer-social a:first-child {
    margin-left: 0;
}

.copyright-text .footer-social a:hover {
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
}

.breadcrumb-section {
    padding-top: 190px;
    height: 400px;
}

.breadcrumb-text {
    text-align: center;
}

.breadcrumb-text h2 {
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.breadcrumb-text .breadcrumb-option a {
    font-size: 16px;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.breadcrumb-text .breadcrumb-option a:after {
    position: absolute;
    right: -10px;
    top: 0;
    content: "";
    font-family: "FontAwesome";
}

.breadcrumb-text .breadcrumb-option span {
    font-size: 16px;
    color: #bdbdbd;
    display: inline-block;
}

.classes-timetable {
    padding-top: 60px;
}

.classes-timetable .nav-controls {
    text-align: center;
    margin-bottom: 42px;
}

.classes-timetable .nav-controls ul li {
    list-style: none;
    font-size: 16px;
    color: #111;
    font-weight: 600;
    display: inline-block;
    margin-right: 48px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.classes-timetable .nav-controls ul li.active {
    color: #f15d44;
}

.classes-timetable .nav-controls ul li:hover {
    color: #f15d44;
}

.classes-timetable .nav-controls ul li:last-child {
    margin-right: 0;
}

.schedule-table.filtering .ts-item {
    opacity: 0;
}

.schedule-table.filtering .ts-item.show {
    opacity: 1;
}

.schedule-table table {
    width: 100%;
    text-align: center;
    border: 1px solid #e1e1e1;
}

.schedule-table table thead tr th {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    padding: 25px 0;
    background: #f0f0f0;
}

.schedule-table table tbody tr {
    border-top: 1px solid #e5e5e5;
}

.schedule-table table tbody tr td {
    width: 146px;
    background: #fff;
    border-right: 1px solid #e5e5e5;
    padding: 18px 0;
    position: relative;
    z-index: 1;
}

.schedule-table table tbody tr td.ts-item {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.schedule-table table tbody tr td:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    content: "";
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.schedule-table table tbody tr td.hover-bg:hover h6 {
    color: #fff;
}

.schedule-table table tbody tr td.hover-bg:hover span {
    color: #fff;
}

.schedule-table table tbody tr td.hover-bg:hover .trainer-name {
    color: #fff;
}

.schedule-table table tbody tr td.hover-bg:hover:after {
    opacity: 1;
}

.schedule-table table tbody tr td.workout-time {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}

.schedule-table table tbody tr td h6 {
    font-weight: 600;
    color: #f15d44;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.schedule-table table tbody tr td span {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.schedule-table table tbody tr td .trainer-name {
    font-size: 14px;
    color: #6b6b6b;
}

.about-counter {
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    overflow: hidden;
    padding: 40px 0 60px;
}

.about-counter-text {
    padding: 35px 65px 15px;
}

.about-counter-text .single-counter {
    float: left;
    margin-right: 150px;
    text-align: center;
}

.about-counter-text .single-counter:last-child {
    margin-right: 0;
}

.about-counter-text .single-counter h1 {
    font-size: 72px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
}

.about-counter-text .single-counter span {
    font-size: 72px;
    color: #fff;
    display: inline-block;
    line-height: 80px;
}

.about-counter-text .single-counter p {
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.award-text {
    padding-top: 20px;
}

.award-text h2 {
    font-size: 40px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.award-text p {
    margin-bottom: 10px;
}

.gallery-section {
    padding-bottom: 50px;
}

.gallery-controls {
    text-align: center;
    margin-bottom: 55px;
}

.gallery-controls li {
    list-style: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    margin-right: 30px;
    cursor: pointer;
}

.gallery-controls li.active {
    color: #f15d44;
}

.gallery-controls li:last-child {
    margin-right: 0;
}

.gallery-filter img {
    min-width: 100%;
    margin-bottom: 30px;
}

.gallery-section {
    background: #fff;
    padding-top: 50px;
}

.gallery-section .section-title {
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 450px);
    gap: 10px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.gallery-item.big-item {
    grid-row: span 2;
}

.gallery-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    text-decoration: none;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
    visibility: visible;
}

.hover-text {
    transform: translateY(20px);
    transition: all 0.4s;
    padding: 20px;
}

.gallery-item:hover .hover-text {
    transform: translateY(0);
}

.gi-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #eb3c5a, #f67831);
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 0 15px rgb(241 93 68 / 0.5);
}

.hover-text h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-family: "Kanit", sans-serif;
}

.hover-text p {
    color: #fff;
    margin-bottom: 0;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    opacity: 0.8;
}

.blog-section {
    padding-bottom: 50px;
}

.single-blog-item {
    margin-bottom: 42px;
}

.single-blog-item img {
    min-width: 100%;
    margin-bottom: 30px;
}

.single-blog-item .blog-widget {
    margin-bottom: 10px;
}

.single-blog-item .blog-widget .bw-date {
    font-size: 14px;
    color: #bdbdbd;
    display: inline-block;
    margin-right: 8px;
}

.single-blog-item .blog-widget .tag {
    font-size: 14px;
    color: #f15d44;
}

.single-blog-item h4 a {
    color: #111;
    font-weight: 600;
    line-height: 30px;
}

.blog-details {
    padding-top: 50px;
}

.blog-details-hero {
    height: 633px;
    padding-top: 280px;
}

.bd-hero-text {
    text-align: center;
}

.bd-hero-text span {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    background: #f15d44;
    letter-spacing: 2px;
    border-radius: 2px;
    padding: 4px 16px;
    display: inline-block;
}

.bd-hero-text h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-transform: uppercase;
    margin-top: 15px;
}

.bd-text .bd-title {
    margin-bottom: 55px;
}

.bd-text .bd-title p {
    font-size: 17px;
    line-height: 30px;
}

.bd-text .bd-pic {
    margin-bottom: 35px;
}

.bd-text .bd-pic img {
    min-width: 100%;
    margin-bottom: 20px;
}

.bd-text .bd-more-text {
    margin-bottom: 52px;
}

.bd-text .bd-more-text .bm-item h4 {
    font-weight: 600;
    -webkit-column-rule: #111;
    -moz-column-rule: #111;
    column-rule: #111;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bd-text .bd-more-text .bm-item p {
    font-size: 17px;
    line-height: 30px;
}

.bd-text .bd-quote {
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    padding: 40px 60px 30px 60px;
    position: relative;
    border-radius: 10px;
    z-index: 1;
    margin-bottom: 52px;
}

.bd-text .bd-quote samp {
    position: absolute;
    left: 45px;
    top: 35px;
    font-size: 89px;
    color: #fff;
    opacity: 0.1;
    line-height: 68px;
    z-index: -1;
}

.bd-text .bd-quote p {
    font-size: 24px;
    color: #fff;
    line-height: 36px;
    margin-bottom: 23px;
}

.bd-text .bd-quote .quote-author h5 {
    color: #fff;
    margin-bottom: 4px;
}

.bd-text .bd-quote .quote-author span {
    font-size: 14px;
    color: #fff;
}

.bd-text .bd-last-para {
    margin-bottom: 55px;
}

.bd-text .bd-last-para p {
    font-size: 17px;
    line-height: 30px;
}

.bd-text .tag-share {
    overflow: hidden;
    border-top: 1px solid #ebebeb;
    padding-top: 30px;
    margin-bottom: 60px;
}

.bd-text .tag-share .tags {
    float: left;
}

.bd-text .tag-share .tags a {
    font-size: 12px;
    color: #111;
    text-transform: uppercase;
    background: #ebebeb;
    letter-spacing: 2px;
    border-radius: 2px;
    padding: 4px 16px;
    display: inline-block;
    font-weight: 500;
    margin-right: 6px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.bd-text .tag-share .tags a:hover {
    color: #fff;
    background: #f15d44;
}

.bd-text .tag-share .tags a:last-child {
    margin-right: 0;
}

.footer-section {
    background-color: #0b0b0b;
    padding-top: 100px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgb(255 255 255 / 0.08) 2px, transparent 2px), radial-gradient(rgb(255 255 255 / 0.08) 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.4;
    pointer-events: none;
}

.footer-widget .footer-logo .logo-text {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-family: "Kanit", sans-serif;
    letter-spacing: -2px;
}

.footer-widget .footer-logo .logo-text i {
    font-size: 48px;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.footer-widget p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 400px;
}

.footer-social-section h5 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 25px;
    transition: opacity 0.3s;
    opacity: 0.8;
}

.footer-social-icons a:hover {
    opacity: 1;
    color: #f15d44;
}

.footer-widget h5 {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 35px;
    display: inline-block;
    position: relative;
}

.footer-widget h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 1px;
    background: #fff;
    opacity: 0.5;
}

.footer-services ul li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-services ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-services ul li a:hover {
    color: #f15d44;
    opacity: 1;
}

.footer-copyright p a {
    color: #f15d44;
    font-weight: 600;
}

.footer-copyright p a:hover {
    color: #eb3c5a;
}

.contact-info-list {
    margin-top: 5px;
}

.ci-item {
    margin-bottom: 25px;
}

.ci-item h6 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.ci-item p {
    color: #fff;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-copyright {
    border-top: 1px solid rgb(255 255 255 / 0.1);
    padding-top: 30px;
    margin-top: 60px;
}

.footer-copyright p {
    color: #fff;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .footer-section {
        padding-top: 80px;
    }

    .footer-widget {
        margin-bottom: 50px;
    }
}

.bd-text .tag-share .social-share {
    float: right;
}

.bd-text .tag-share .social-share span {
    font-size: 18px;
    color: #111;
    display: inline-block;
}

.bd-text .tag-share .social-share a {
    color: #111;
    display: inline-block;
    font-size: 16px;
    margin-left: 25px;
}

.bd-text .blog-author {
    margin-bottom: 55px;
}

.bd-text .blog-author .ba-pic {
    background: #f7f7f7;
    padding: 28px 0;
    border-radius: 2px;
    text-align: center;
}

.bd-text .blog-author .ba-pic img {
    height: 144px;
    width: 144px;
    border-radius: 50%;
    border: 10px solid #fff;
}

.bd-text .blog-author .ba-text {
    padding-top: 35px;
}

.bd-text .blog-author .ba-text h5 {
    color: #111;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
}

.bd-text .blog-author .ba-text p {
    font-size: 17px;
    margin-bottom: 30px;
}

.bd-text .blog-author .ba-text .bt-social a {
    display: inline-block;
    font-size: 14px;
    color: #111;
    margin-right: 25px;
}

.bd-text .leave-comment h3 {
    color: #111;
    font-weight: 600;
    margin-bottom: 32px;
}

.bd-text .leave-comment form input {
    width: 100%;
    height: 46px;
    border: 1px solid #ebebeb;
    padding-left: 20px;
    font-size: 16px;
    margin-bottom: 30px;
    color: #ebebeb;
}

.bd-text .leave-comment form input:focus {
    color: #111;
}

.bd-text .leave-comment form textarea {
    width: 100%;
    height: 110px;
    border: 1px solid #ebebeb;
    padding-left: 20px;
    font-size: 16px;
    padding-top: 10px;
    color: #ebebeb;
    margin-bottom: 42px;
    resize: none;
}

.bd-text .leave-comment form textarea:focus {
    color: #111;
}

.bd-text .leave-comment form button {
    font-size: 16px;
    color: #fff;
    padding: 10px 33px;
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    border: none;
}

.map {
    height: 612px;
    position: relative;
}

.map iframe {
    width: 100%;
}

.map img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-14px, -21px);
    -ms-transform: translate(-14px, -21px);
    transform: translate(-14px, -21px);
}

.contact-info h4 {
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 47px;
}

.contact-info .contact-address .ca-widget {
    overflow: hidden;
    margin-bottom: 16px;
}

.contact-info .contact-address .ca-widget .cw-icon {
    height: 74px;
    width: 74px;
    border: 1px solid #ebebeb;
    border-radius: 50%;
    text-align: center;
    line-height: 74px;
    float: left;
    margin-right: 28px;
}

.contact-info .contact-address .ca-widget .cw-text {
    padding-top: 12px;
}

.contact-info .contact-address .ca-widget .cw-text h5 {
    color: #000;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-info .contact-address .ca-widget .cw-text p {
    margin-bottom: 0;
    color: #111;
    font-size: 16px;
}

.contact-form h4 {
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 47px;
}

.contact-form form input {
    width: 100%;
    height: 51px;
    border: 1px solid #e1e1e1;
    padding-left: 20px;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-form form input::-webkit-input-placeholder {
    color: #9a9a9a;
}

.contact-form form input::-moz-placeholder {
    color: #9a9a9a;
}

.contact-form form input:-ms-input-placeholder {
    color: #9a9a9a;
}

.contact-form form input::-ms-input-placeholder {
    color: #9a9a9a;
}

.contact-form form input::placeholder {
    color: #9a9a9a;
}

.contact-form form input:focus {
    color: #111;
}

.contact-form form textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #e1e1e1;
    padding-left: 20px;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 42px;
    resize: none;
}

.contact-form form textarea::-webkit-input-placeholder {
    color: #9a9a9a;
}

.contact-form form textarea::-moz-placeholder {
    color: #9a9a9a;
}

.contact-form form textarea:-ms-input-placeholder {
    color: #9a9a9a;
}

.contact-form form textarea::-ms-input-placeholder {
    color: #9a9a9a;
}

.contact-form form textarea::placeholder {
    color: #9a9a9a;
}

.contact-form form textarea:focus {
    color: #111;
}

.contact-form form button {
    font-size: 14px;
    color: #fff;
    padding: 10px 33px;
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
    background: -o-linear-gradient(left, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
    border: none;
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media only screen and (min-width: 1400px) {
    .testi-tag {
        margin-left: 250px !important;
    }

    .testi-text-content {
        padding-left: 250px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .services-item {
        padding-top: 70px;
        padding-left: 37px;
        padding-right: 30px;
    }

    .services-item img {
        left: 40px;
        top: 35px;
    }

    .services-item.pd-b {
        padding-top: 70px;
    }

    .single-trainer-item .trainer-text {
        width: 282px;
        -webkit-transform: translateX(-141px);
        -ms-transform: translateX(-141px);
        transform: translateX(-141px);
    }

    .testimonial-section:after {
        width: 990px;
        -webkit-transform: translate(-495px, -270px);
        -ms-transform: translate(-495px, -270px);
        transform: translate(-495px, -270px);
    }

    .footer-banner-item:after {
        width: 450px;
        -webkit-transform: translate(-225px, -155px);
        -ms-transform: translate(-225px, -155px);
        transform: translate(-225px, -155px);
    }

    .testimonial-slider.owl-carousel .owl-nav button {
        left: -95px;
    }

    .testimonial-slider.owl-carousel .owl-nav button.owl-next {
        right: -95px;
    }

    .about-counter-text .single-counter {
        margin-right: 110px;
    }

    .about-text {
        padding-top: 0;
        padding-left: 20px;
    }

    .award-text {
        padding-top: 0;
    }

    .bd-text .blog-author .ba-text {
        padding-top: 15px;
    }
}

.about-redesign .ashish-about img {
    border-radius: 20px 30px 110px 5px;
}

@media only screen and (min-width: 992px) {
    .about-redesign .ashish-about {
        width: 80%;
        position: absolute;
        bottom: -160px;
        left: 0;
    }

    .about-redesign .about-img-2 {
        position: absolute;
        top: -65px;
        right: 30px;
        border: 15px solid #fff;
        width: 70%;
    }

    .about-redesign .main-img-hex.about-img-2:after {
        border: none;
    }
}

@media only screen and (max-width: 991px) {
    .about-redesign .ashish-about {
        width: 100%;
    }

    .about-redesign .about-img-2 {
        display: none;
    }

    .testimonial-section:after {
        display: none;
    }

    .banner-text {
        margin-bottom: 30px;
    }

    .single-trainer-item {
        margin-bottom: 110px;
    }

    .trainer-section {
        padding-bottom: 80px;
    }

    .membership-item {
        margin-bottom: 40px;
    }

    .register-pic {
        margin-left: 0;
        padding-top: 30px;
    }

    .classes-page-text .register-pic {
        padding-top: 0;
    }

    .subscribe-option .so-text {
        float: none;
    }

    .subscribe-option .subscribe-form {
        float: none;
        margin: 5px 0 37px;
    }

    .award-text {
        margin-bottom: 30px;
    }

    .classes-page-text .register-pic img {
        min-width: 100%;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .register-text {
        margin-right: 0;
    }
}

@media only screen and (max-width: 991px) {
    .nav-menu .mainmenu ul li {
        margin-right: 12px;
    }

    .nav-menu .signup-btn {
        margin: 16px 0 16px 0;
        width: 145px;
    }

    .testimonial-slider.owl-carousel .owl-nav button {
        left: -25px;
    }

    .testimonial-slider.owl-carousel .owl-nav button.owl-next {
        right: -25px;
    }

    .about-counter-text .single-counter {
        margin-right: 30px;
    }

    .services-pic img {
        height: auto;
    }

    .register-pic img {
        height: auto;
        min-width: 100%;
        width: 100%;
    }
}

@media only screen and (max-width: 657px) {
    .plan-item {
        padding: 15px 20px !important;
        margin-bottom: 15px !important;
        height: calc(100% - 15px) !important;
    }

    .plan-item:hover {
        background: linear-gradient(to right, #5c5a5a, #6e6e6e, #bfbfbf);
    }

    .plan-item:hover h5 {
        font-size: 20px !important;
        color: #fff;
    }

    .plan-item:hover p {
        color: #fff;
    }

    .plan-item h5 {
        margin-bottom: 9px !important;
        font-size: 18px !important;
    }

    .plan-item p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .appointment-box p {
        font-size: 13px !important;
    }

    .trainer-section-redesign {
        padding: 60px 0 !important;
    }

    .membership-section.spad {
        padding-top: 40px !important;
        padding-bottom: 30px !important;
    }

    .hs-item {
        height: 690px !important;
        padding-top: 160px !important;
    }

    .testi-right-content {
        padding: 60px 30px !important;
    }

    .register-section {
        padding-bottom: 60px !important;
        padding-top: 50px !important;
    }

    .gym-award.spad {
        padding-bottom: 60px;
        padding-top: 35px;
    }

    .hero-slider.owl-carousel .owl-nav button,
    .red-stripes,
    .circular-image-wrap {
        display: none !important;
    }

    .wcu-image-cluster {
        margin-bottom: 50px !important;
    }

    .about-footer {
        margin-top: 40px !important;
    }

    .slicknav_menu {
        display: block;
        background: #fff0;
        padding: 0;
        position: relative;
        z-index: 55;
    }

    .slicknav_btn {
        margin: 22px 0;
        border-radius: 0;
    }

    .slicknav_nav {
        background: #222;
    }

    .slicknav_nav ul {
        margin: 10px;
    }

    .slicknav_nav a:hover {
        border-radius: 0;
        background: #f15d44;
        color: #fff;
    }

    .slicknav_nav a {
        padding: 10px;
    }

    .nav-menu .mainmenu {
        display: none;
    }

    .nav-menu .signup-btn {
        display: none;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .services-pic img {
        height: auto;
    }

    .testimonial-slider.owl-carousel .owl-nav button {
        left: -10px;
    }

    .testimonial-slider.owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }

    .footer-banner-item:after {
        width: 450px;
        -webkit-transform: translate(-225px, -155px);
        -ms-transform: translate(-225px, -155px);
        transform: translate(-225px, -155px);
    }

    .banner-text {
        padding-top: 40px;
    }

    .register-pic img {
        height: auto;
        min-width: 100%;
        width: 100%;
    }

    .copyright-text {
        text-align: center;
    }

    .copyright-text p {
        float: none;
        display: block;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .copyright-text .footer-social {
        float: none;
    }

    .about-section .about-text {
        padding-left: 0;
    }

    .about-counter-text {
        padding: 35px 35px 15px;
    }

    .about-counter-text .single-counter {
        float: none;
        margin-right: 0;
        text-align: center;
    }

    .schedule-table {
        overflow: auto;
    }

    .classes-timetable .nav-controls ul li {
        margin-right: 10px;
    }

    .gallery-controls li {
        margin-right: 15px;
    }

    .bd-text .tag-share .tags {
        float: none;
        margin-bottom: 10px;
    }

    .bd-text .tag-share .social-share {
        float: none;
    }

    .testimonial-slider.owl-carousel .owl-nav {
        text-align: center;
        padding-top: 20px;
    }

    .testimonial-slider.owl-carousel .owl-nav button {
        position: relative;
        margin: 0 5px;
    }
}

@media only screen and (max-width: 397px) {
    .hero-section .hero-text h1 {
        font-size: 30px !important;
    }
}

@media only screen and (min-width: 398px) and (max-width: 479px) {
    .hero-section .hero-text h1 {
        font-size: 55px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-text h1 {
        font-size: 40px !important;
    }

    .content-box {
        margin-bottom: 0;
    }

    .single-trainer-item .trainer-text {
        width: 284px;
        -webkit-transform: translateX(-142px);
        -ms-transform: translateX(-142px);
        transform: translateX(-142px);
    }

    .footer-banner-item:after {
        width: 300px;
        -webkit-transform: translate(-150px, -155px);
        -ms-transform: translate(-150px, -155px);
        transform: translate(-150px, -155px);
    }

    .footer-banner-item {
        padding-top: 28px;
    }

    .subscribe-option {
        padding: 0 15px;
    }

    .subscribe-option .subscribe-form {
        width: 260px;
    }

    .copyright-text ul li {
        margin-right: 15px;
    }

    .register-text {
        padding: 50px 35px 60px 35px;
    }

    .services-item {
        padding-left: 40px;
        padding-top: 100px;
    }

    .services-item.pd-b {
        padding-top: 80px;
    }

    .services-item img {
        left: 40px;
        top: 40px;
    }

    .bd-text .tag-share .tags a {
        margin-bottom: 5px;
    }

    .gallery-controls li {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 350px;
    }

    .gallery-item.big-item {
        grid-column: span 2;
        grid-row: span 1;
        height: 450px;
    }
}

@media only screen and (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.big-item {
        grid-column: span 1;
    }
}

.why-choose-section {
    position: relative;
    background: #0b0b0b;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.bg-watermark {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 40%;
    opacity: 0.05;
    transform: rotate(15deg);
}

.wcu-image-cluster {
    position: relative;
    z-index: 2;
    padding-right: 50px;
}

.main-image-slant {
    position: relative;
    width: 100%;
    overflow: hidden;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    box-shadow: 0 30px 60px rgb(0 0 0 / 0.5);
}

.main-image-slant img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.main-image-slant:hover img {
    transform: scale(1.05);
}

.circular-image-wrap {
    position: absolute;
    top: 15%;
    left: -10%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 15px solid #f15d44;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 15px 45px rgb(241 93 68 / 0.3);
}

.circular-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-wrap {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #212529;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    position: relative;
    transition: all 0.3s;
    text-decoration: none;
}

.play-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, #eb3c5a, #f67831);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s;
}

.play-btn i {
    z-index: 2;
    margin-left: 5px;
}

.play-btn:hover::before {
    width: 100%;
    height: 100%;
}

.play-btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #f15d44;
    border-radius: 50%;
    animation: wcu-pulse 2s infinite;
}

@keyframes wcu-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.red-stripes {
    position: absolute;
    left: -20px;
    bottom: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1;
}

.red-stripes span {
    width: 150px;
    height: 25px;
    background: linear-gradient(to right, #eb3c5a, #f67831);
    transform: skewX(-30deg);
}

.wcu-content {
    position: relative;
    z-index: 2;
    padding-left: 30px;
}

.wcu-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.wcu-tagline i {
    color: linear-gradient(to right, #eb3c5a, #f67831);
    font-size: 20px;
}

.wcu-tagline span {
    color: linear-gradient(to right, #eb3c5a, #f67831);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
}

.wcu-content h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 35px;
    text-transform: capitalize;
}

.wcu-content p {
    color: #bdbdbd;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-grid {
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: rgb(255 255 255 / 0.03);
    padding: 20px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgb(255 255 255 / 0.08);
}

.fb-icon {
    width: 60px;
    height: 60px;
    background: rgb(255 255 255 / 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 24px;
    color: #fff;
}

.fb-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.fb-text p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.6;
}

.divider {
    height: 1px;
    background: rgb(255 255 255 / 0.1);
    margin-bottom: 40px;
}

.wcu-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-touch,
.btn-schedule {
    display: inline-block;
    padding: 18px 30px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-touch {
    background: linear-gradient(to right, #eb3c5a, #f67831);
    color: #fff;
}

.btn-schedule {
    border: 1px solid rgb(255 255 255 / 0.2);
    color: #fff;
}

.btn-touch:hover {
    background: #fff;
    color: #111;
}

.btn-schedule:hover {
    border-color: linear-gradient(to right, #eb3c5a, #f67831);
    background: linear-gradient(to right, #eb3c5a, #f67831);
}

.btn-touch i,
.btn-schedule i {
    transition: transform 0.3s;
}

.btn-touch:hover i,
.btn-schedule:hover i {
    transform: translateX(5px);
}

@media only screen and (max-width: 1199px) {
    .wcu-content h2 {
        font-size: 40px;
    }

    .circular-image-wrap {
        width: 180px;
        height: 180px;
    }
}

@media only screen and (max-width: 991px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .wcu-image-cluster {
        margin-bottom: 80px;
        padding-right: 0;
    }

    .wcu-content {
        padding-left: 0;
    }

    .circular-image-wrap {
        left: 5%;
        position: relative;
        top: auto;
        margin-top: -50px;
    }

    .main-image-slant {
        clip-path: none;
    }
}

@media only screen and (max-width: 991px) {
    .wcu-content h2 {
        font-size: 32px;
    }

    .circular-image-wrap {
        width: 150px;
        height: 150px;
        border-width: 10px;
    }

    .play-btn {
        width: 90px;
        height: 90px;
        font-size: 18px;
    }

    .red-stripes span {
        width: 100px;
        height: 15px;
    }

    .btn-touch,
    .btn-schedule {
        width: 100%;
        justify-content: center;
    }
}

.trainer-section-redesign {
    position: relative;
    background: #0b0b0b;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

.tr-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tr-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.tr-title h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.tr-title h2 i {
    background: linear-gradient(to right, #eb3c5a, #f67831);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-style: italic;
}

.tr-title p {
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

.tr-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: linear-gradient(to right, #eb3c5a, #f67831);
    color: #fff;
    transform: scale(1.1);
}

.testimonial-card {
    position: relative;
    background: rgb(255 255 255 / 0.03);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 10px;
    padding: 60px 35px 35px;
    margin-top: 50px;
    transition: all 0.3s;
    height: calc(100% - 50px);
}

.testimonial-card:hover {
    background: rgb(255 255 255 / 0.06);
    transform: translateY(-5px);
}

.tc-image {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #f67831;
    overflow: hidden;
    box-shadow: 0 10px 25px rgb(246 120 49 / 0.3);
}

.tc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-quotes {
    margin-bottom: 25px;
}

.tc-quotes i {
    background: linear-gradient(to right, #eb3c5a, #f67831);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-size: 30px;
    margin-right: -10px;
}

.tc-content p {
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: normal;
}

.tc-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgb(255 255 255 / 0.1);
    padding-top: 20px;
}

.tc-info h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.tc-info span {
    color: #bdbdbd;
    font-size: 14px;
    display: block;
}

.tc-rating {
    background: linear-gradient(to right, #eb3c5a, #f67831);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-size: 14px;
}

.master-action-block {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.5);
}

.master-action-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.master-action-block:hover img {
    transform: scale(1.05);
}

.mab-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgb(0 0 0 / 0.9), transparent);
}

.mab-text {
    position: relative;
}

.mab-text h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    margin: 10px 0;
    letter-spacing: 1px;
}

.mab-line {
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #eb3c5a, #f67831);
}

@media only screen and (max-width: 991px) {
    .testimonial-card {
        margin-top: 80px;
        padding: 70px 30px 30px;
    }

    .tr-title h2 {
        font-size: 36px;
    }

    .master-action-block {
        height: 350px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .tr-title {
        text-align: center;
        margin-bottom: 30px;
    }

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

    .tc-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .master-action-block {
        height: 300px;
    }
}

.trainer-section-redesign {
    position: relative;
    background: #0b0b0b;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

.tr-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tr-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.tr-title h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.tr-title h2 i {
    background: linear-gradient(to right, #eb3c5a, #f67831);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-style: italic;
}

.tr-title p {
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

.tr-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: linear-gradient(to right, #eb3c5a, #f67831);
    color: #fff;
    transform: scale(1.1);
}

.testimonial-card {
    position: relative;
    background: rgb(255 255 255 / 0.03);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 10px;
    padding: 60px 35px 35px;
    margin-top: 50px;
    transition: all 0.3s;
    height: calc(100% - 50px);
}

.testimonial-card:hover {
    background: rgb(255 255 255 / 0.06);
    transform: translateY(-5px);
}

.tc-image {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #f67831;
    overflow: hidden;
    box-shadow: 0 10px 25px rgb(246 120 49 / 0.3);
}

.tc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-quotes {
    margin-bottom: 25px;
}

.tc-quotes i {
    background: linear-gradient(to right, #eb3c5a, #f67831);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-size: 30px;
    margin-right: -10px;
}

.tc-content p {
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: normal;
}

.tc-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgb(255 255 255 / 0.1);
    padding-top: 20px;
}

.tc-info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.tc-info span {
    color: #bdbdbd;
    font-size: 14px;
    display: block;
}

.tc-rating {
    background: linear-gradient(to right, #eb3c5a, #f67831);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-size: 14px;
}

.master-action-block {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.5);
}

.master-action-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.master-action-block:hover img {
    transform: scale(1.05);
}

.mab-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgb(0 0 0 / 0.9), transparent);
}

.mab-text {
    position: relative;
}

.mab-text h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    margin: 10px 0;
    letter-spacing: 1px;
}

.mab-line {
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #eb3c5a, #f67831);
}

@media only screen and (max-width: 991px) {
    .testimonial-card {
        margin-top: 80px;
        padding: 70px 30px 30px;
    }

    .tr-title h2 {
        font-size: 36px;
    }

    .master-action-block {
        height: 350px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .tr-title {
        text-align: center;
        margin-bottom: 30px;
    }

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

    .tc-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .master-action-block {
        height: 300px;
    }
}

.testimonial-redesign {
    display: flex;
    background: #0b0b0b;
    overflow: hidden;
    min-height: 600px;
}

.testi-left-wrap {
    flex: 0 0 50%;
    position: relative;
    min-height: 500px;
}

.testi-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.testi-bg-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.4);
}

.testi-client-portrait {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border: 10px solid #fff;
    z-index: 5;
    box-shadow: 0 30px 60px rgb(0 0 0 / 0.5);
}

.testi-client-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-right-content {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding-left: 150px;
    padding-right: 50px;
}

.testi-container {
    max-width: 600px;
}

.testi-slider-wrap {
    position: relative;
}

.testi-red-line {
    width: 60px;
    height: 4px;
    background: #f15d44;
    margin-bottom: 20px;
}

.testi-tag {
    color: #f15d44;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
    display: block;
    margin-bottom: 30px;
}

.testimonial-re-slider .testi-item h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
}

.testi-quote {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
    font-family: "Poppins", sans-serif;
    opacity: 0.9;
}

.testi-rating {
    margin-bottom: 20px;
}

.testi-rating i {
    color: #f15d44;
    font-size: 24px;
    margin-right: 5px;
}

.testi-author {
    color: #f15d44;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

.testi-nav {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    position: absolute;
    bottom: -80px;
    right: 0;
}

.tn-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgb(255 255 255 / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.tn-btn:hover {
    background: #f15d44;
    border-color: #f15d44;
}

@media only screen and (max-width: 1199px) {
    .testi-right-content {
        padding-left: 120px;
    }

    .testi-client-portrait {
        width: 320px;
        height: 320px;
        right: -80px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-redesign {
        flex-direction: column;
    }

    .testi-left-wrap {
        flex: none;
        width: 100%;
        height: 500px;
    }

    .testi-right-content {
        flex: none;
        width: 100%;
        padding: 100px 50px;
    }

    .testi-client-portrait {
        right: 50%;
        transform: translate(50%, -50%);
        top: 50%;
    }

    .testi-nav {
        position: relative;
        bottom: 0;
        margin-top: 50px;
        justify-content: center;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-re-slider .testi-item h2 {
        font-size: 40px;
    }

    .testi-quote {
        font-size: 17px;
    }

    .testi-client-portrait {
        width: 280px;
        height: 280px;
    }
}

.testimonial-redesign {
    display: flex;
    background: #0b0b0b;
    overflow: hidden;
    min-height: 600px;
}

.testi-left-wrap {
    flex: 0 0 50%;
    position: relative;
    min-height: 500px;
}

.testi-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.testi-bg-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.4);
}

.testi-right-content {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 50px;
    position: relative;
}

.testi-container {
    width: 100%;
}

.testi-slider-wrap {
    position: relative;
}

.testi-red-line {
    width: 60px;
    height: 4px;
    background: #f15d44;
    margin-bottom: 20px;
    margin-left: 150px;
}

.testi-tag {
    color: #f15d44;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
    display: block;
    margin-bottom: 30px;
    margin-left: 150px;
}

.testi-item {
    display: flex !important;
    align-items: center;
    position: relative;
}

.testi-visual {
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border: 10px solid #fff;
    z-index: 10;
    box-shadow: 0 30px 60px rgb(0 0 0 / 0.5);
    background: #222;
}

.testi-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-text-content {
    padding-left: 150px;
    width: 100%;
}

.testimonial-re-slider .testi-item h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
}

.testi-quote {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
    font-family: "Poppins", sans-serif;
    opacity: 0.9;
}

.testi-rating {
    margin-bottom: 20px;
}

.testi-rating i {
    color: #f15d44;
    font-size: 24px;
    margin-right: 5px;
}

.testi-author {
    color: #f15d44;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

.testi-nav {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    position: absolute;
    bottom: -80px;
    right: 0;
}

.tn-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgb(255 255 255 / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.tn-btn:hover {
    background: #f15d44;
    border-color: #f15d44;
}

@media only screen and (max-width: 1199px) {
    .testi-visual {
        width: 320px;
        height: 320px;
        left: -160px;
    }

    .testi-text-content {
        padding-left: 120px;
    }

    .testi-red-line,
    .testi-tag {
        margin-left: 120px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-redesign {
        flex-direction: column;
    }

    .testi-left-wrap {
        display: none;
    }

    .testi-right-content {
        padding: 100px 30px;
        background: url(img/testimonial-redesign/bg-woman.png) center/cover;
    }

    .testi-right-content::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 0.8);
        z-index: 1;
    }

    .testi-container {
        z-index: 5;
    }

    .testi-item {
        flex-direction: column;
        text-align: center;
    }

    .testi-visual {
        position: relative;
        left: 0;
        transform: none;
        margin: 0 auto 30px;
        width: 280px;
        height: 280px;
    }

    .testi-text-content {
        padding-left: 0;
    }

    .testi-red-line,
    .testi-tag {
        margin-left: 0;
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }

    .testi-nav {
        position: relative;
        bottom: 0;
        margin-top: 50px;
        justify-content: center;
    }
}

.testimonial-redesign {
    display: flex;
    background: #0b0b0b;
    overflow: hidden;
    min-height: 700px;
    position: relative;
}

.testi-left-wrap {
    flex: 0 0 50%;
    position: relative;
    min-height: 500px;
}

.testi-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.testi-bg-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.4);
}

.testi-visual-box {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border: 10px solid #fff;
    z-index: 100;
    box-shadow: 0 30px 60px rgb(0 0 0 / 0.5);
    background: #0b0b0b;
    overflow: hidden;
}

.testimonial-img-slider,
.testimonial-img-slider .owl-stage-outer,
.testimonial-img-slider .owl-stage,
.testimonial-img-slider .owl-item,
.testi-img-item {
    height: 100%;
}

.testi-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-right-content {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 50px;
    position: relative;
}

.testi-container {
    width: 100%;
}

.testi-slider-wrap {
    position: relative;
}

.testi-red-line {
    width: 60px;
    height: 4px;
    background: #f15d44;
    margin-bottom: 20px;
    margin-left: 250px;
}

.testi-tag {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 34px;
    display: block;
    margin-bottom: 10px;
    margin-left: 210px;
    background: linear-gradient(to right, #eb3c5a, #f67831);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}

.testi-text-content {
    padding-left: 210px;
    width: 100%;
}

.testimonial-re-slider .testi-item h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
}

.testi-quote {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
    font-family: "Poppins", sans-serif;
    opacity: 0.9;
}

.testi-rating {
    margin-bottom: 20px;
    background: linear-gradient(to right, #eb3c5a, #f67831);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
}

.testi-rating i {
    font-size: 24px;
    margin-right: 5px;
}

.testi-author {
    color: #f15d44;
    font-size: 21px;
    font-weight: 500;
    text-transform: capitalize;
}

.testi-nav {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    position: absolute;
    bottom: -80px;
    right: 0;
}

.tn-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgb(255 255 255 / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.tn-btn:hover {
    background: #f15d44;
    border-color: #f15d44;
}

@media only screen and (max-width: 1399px) {
    .testi-visual-box {
        width: 350px;
        height: 350px;
        right: -175px;
    }

    .testi-text-content,
    .testi-red-line {
        padding-left: 210px;
    }

    .testi-text-content {
        padding-left: 210px;
    }
}

@media only screen and (max-width: 1199px) {
    .testi-visual-box {
        width: 300px;
        height: 300px;
        right: -150px;
    }

    .testi-text-content {
        padding-left: 180px;
    }

    .testi-red-line,
    .testi-tag {
        margin-left: 180px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-redesign {
        flex-direction: column;
        min-height: auto;
    }

    .testi-left-wrap {
        display: none;
    }

    .testi-right-content {
        padding: 100px 30px;
        background: url(img/testimonial-redesign/bg-woman.png) center/cover;
    }

    .testi-right-content::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 0.85);
        z-index: 1;
    }

    .testi-container {
        z-index: 5;
    }

    .testi-text-content {
        padding-left: 0;
        text-align: center;
    }

    .testi-visual-box {
        position: relative;
        right: 0;
        transform: none;
        margin: 0 auto 40px;
        width: 280px;
        height: 280px;
        border-width: 6px;
    }

    .testi-red-line,
    .testi-tag {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .testi-nav {
        position: relative;
        bottom: 0;
        margin-top: 50px;
        justify-content: center;
    }
}

.corporate-services-architectural {
    display: flex;
    background: #111;
    position: relative;
    overflow: hidden;
}

.cs-sidebar {
    width: 60px;
    background: #111;
    border-right: 1px solid rgb(255 255 255 / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cs-sidebar-content {
    transform: rotate(-90deg);
    white-space: nowrap;
}

.cs-sidebar-content span {
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    letter-spacing: 5px;
    font-weight: 700;
}

.cs-main-grid {
    height: 100%;
    display: flex;
    margin-top: 30px;
}

.cs-arch-item {
    display: flex;
    flex-direction: column;
    padding: 40px 22px 10px;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    background: rgb(255 255 255 / 0.05);
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.cs-arch-item:hover {
    background: rgb(255 255 255 / 0.08);
    border-color: rgb(241 93 68 / 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.2);
}

.cs-arch-tag {
    font-family: "Courier New", Courier, monospace;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: rgb(255 255 255 / 0.4);
    z-index: 2;
}

.cs-arch-light .cs-arch-tag {
    color: rgb(0 0 0 / 0.4);
}

.cs-arch-status {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-family: "Courier New", Courier, monospace;
    font-size: 10px;
    font-weight: 900;
    color: rgb(255 255 255 / 0.2);
    z-index: 2;
}

.cs-arch-light .cs-arch-status {
    color: rgb(0 0 0 / 0.2);
}

.cs-corner-accent {
    position: absolute;
    font-family: "Kanit", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgb(255 255 255 / 0.2);
    z-index: 2;
}

.cs-corner-accent.top-right {
    top: 20px;
    right: 25px;
}

.cs-arch-icon {
    margin-bottom: 25px;
    z-index: 2;
    color: #fff;
}

.cs-arch-icon svg {
    stroke-width: 1.5px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.cs-arch-dark .cs-arch-icon svg {
    stroke: #f15d44;
}

.cs-arch-light .cs-arch-icon svg {
    stroke: #111;
}

.cs-arch-red .cs-arch-icon svg {
    stroke: #fff;
}

.cs-arch-item:hover .cs-arch-icon svg {
    transform: scale(1.1);
    stroke: #f15d44;
}

.cs-arch-dark:hover .cs-arch-icon svg {
    stroke: #f15d44;
}

.cs-arch-light:hover .cs-arch-icon svg {
    stroke: #f15d44;
}

.cs-arch-red:hover .cs-arch-icon svg {
    stroke: #fff;
}

.cs-arch-item h3 {
    font-size: 19px;
    font-weight: 500;
    text-transform: none;
    line-height: 1.4;
    color: #fff;
    transition: all 0.4s ease;
    z-index: 2;
    margin-bottom: 0;
}

.cs-main-grid.fitness-nutrition .cs-arch-item h3 .more-info:hover>.tooltip-balloon {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.cs-arch-item h3 .more-info {
    color: #fff;
    border: 1px solid #f15d44;
    width: 18px;
    height: 18px;
    font-size: 10px;
    border-radius: 50%;
    background: #f15d44;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    vertical-align: middle;
    z-index: 999;
}

.tooltip-balloon {
    position: absolute;
    bottom: 160%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    width: max-content;
    max-width: 250px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.5);
    border: 1px solid rgb(241 93 68 / 0.8);
    z-index: 99999 !important;
    pointer-events: none;
}

.tooltip-balloon::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #111 #fff0 #fff0 #fff0;
}

.more-info:hover .tooltip-balloon,
.more-info:focus-within .tooltip-balloon,
.cs-arch-item:hover .tooltip-balloon {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.cs-main-grid,
.cs-arch-item,
.cs-arch-item h3 {
    overflow: visible !important;
}

.cs-arch-item:hover .more-info {
    background: #fff;
    color: #f15d44;
    border-color: #fff;
}

.cs-arch-light h3 {
    -webkit-text-stroke: 1px #111;
}

.cs-arch-item:hover h3 {
    color: #f15d44;
}

.cs-cta {
    margin-top: auto;
    padding-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #f15d44;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-arch-red .cs-cta {
    color: #fff;
}

.cs-arch-item:hover .cs-cta {
    opacity: 1;
    transform: translateY(0);
}

.cs-arch-dark {
    background: #111;
}

.cs-arch-light {
    background: #fff;
}

.cs-arch-red {
    background: #f15d44;
}

@media only screen and (max-width: 1200px) {
    .cs-arch-item {
        padding: 80px 30px;
    }

    .cs-arch-item h3 {
        font-size: 17px;
    }
}

@media only screen and (max-width: 991px) {
    .cs-sidebar {
        display: none;
    }

    .cs-arch-item {
        border-right: none;
        border-bottom: 1px solid rgb(255 255 255 / 0.1);
    }

    .cs-arch-light {
        border-bottom: 1px solid rgb(0 0 0 / 0.1);
    }

    .footer-copyright {
        margin-top: 0px !important;
    }
}

@media only screen and (max-width: 991px) {
    .corporate-services-architectural {}

    .cs-arch-item {
        padding: 60px 25px;
        width: 100%;
    }

    h2 {
        font-size: 30px !important;
    }
}

.contact-section.spad {
    padding: 50px 0;
}

.contact-section .contact-form .col-lg-6,
.contact-section .contact-form .col-lg-12,
.register-section .register-text .col-lg-6,
.register-section .register-text .col-lg-12 {
    position: relative;
}

.contact-section .contact-form .col-lg-6 label.error,
.register-section .register-text .col-lg-6 label.error,
.register-section .register-text .col-lg-12 label.error {
    position: absolute;
    bottom: -3px;
    left: 16px;
}

.contact-section .contact-form .col-lg-12 label.error {
    position: absolute;
    bottom: 12px;
    left: 16px;
}

.contact-section .contact-form .col-lg-12 label#mobile-error.error {
    position: absolute;
    bottom: -3px;
    left: 16px;
}