@charset "UTF-8";

/*---Google Fonts---*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Questrial&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    --thm-font: 'Roboto', sans-serif;
    /* Headings */
    --thm-b-font:  'Roboto', sans-serif;
    /* Body font */
    --thm-icon-font: "FontAwesome";
    /* --thm-icon-font: "Font Awesome 5 Pro"; */
    /*Icon Font*/
    --thm-color-one: #E2FA04;
    --thm-color-two: #000;
    --thm-color-three: #fff;
    --thm-color-four: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #2C2C2C;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    --thm-text: #050556;
    /*Border Color*/
}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background: var(--thm-color-one);
    color: #000;
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.8;
    background-color: #000;
    color: #fff;
    font-weight: 400;
    overflow-x: hidden;
    counter-reset: sectionCounter;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 80px 0;
}

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

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 70%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

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

ul li {
    margin-bottom: 0;
    position: relative;
}
li a {
    text-decoration: none;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
    color: #fff;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

select {
    appearance: auto;
    border: none;
    color: #b7b7b7;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.container-wide .row {
    flex-wrap: unset;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.z-2 {
    position: relative;
    z-index: 2;
}
.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

/*section-title*/

/*
.header.can-sticky {
    border-bottom: 2px solid #2656DB;
}*/
.section-header {
    max-width: 550px;
    padding-bottom: 30px;
    margin: 0 auto 0 0;
    text-align: left;
    position: relative;
}

.section-header .section_count {
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--thm-color-one);
    line-height: 1.5;
}

.section-header .section_count:before {
    counter-increment: sectionCounter;
    content: "0"counter(sectionCounter);
}

.section-header .title {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    font-size: 36px;
    margin-bottom: 0px;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-center {
    margin: 0 auto;
}

.section-header.text-center .title {
    justify-content: center;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    background-color: #fff;
    position: relative;
    padding: 30px;
    padding-top: 0;
    border-left: 4px solid var(--thm-color-one);
    border-radius: 10px;
    border-bottom: 2px solid #e2dcdc;
}

blockquote .quote_icon {
    width: 50px;
    height: 50px;
    background: var(--thm-color-one);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
}

blockquote .quote_title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--thm-color-one);
    font-style: italic;
}

blockquote .quote_author {
    font-size: 18px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-one);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 16px;
}

.slick-arrow.slick-next:before {
    content: "\f061";
}
.slick-arrow.slick-prev:before {
    content: "\f060";
}
.slick-arrow {
    background: transparent;
    position: absolute;
    top: 48%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 35px;
    height: 35px;
    color: #fff;
    border-radius: 5px;
    font-size: 0;
    transition: 0.5s all;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-prev.slick-arrow {
    left: 0px;
}
.slick-next.slick-arrow {
    right: 0px;
/*    left: 0;*/
}



.slick-arrow.slick-prev:hover {
    border: 1px solid var(--thm-color-one);
    background-color:transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-prev:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus:before {
    color: #000;
}

.slick-arrow.slick-next:hover {
    border: 2px solid var(--thm-color-one);
    background-color: transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-next:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-next:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: #000;
}
.slick-arrow.slick-next:focus:before {
    color: #000;
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C7C7C7;
    margin: 0 3px;
    transition: 0.6s all;
    border: 0px solid #C7C7C7;
}

.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -5px;
    left: -5px;
    opacity: 0;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    /* margin-bottom: 15px; */
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}

.post_details .post_navigation .nav_item, .pagination .page-item .page-link {
    border: 2px solid ;
    color: #000;
    border-radius: 5px;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
}

.post_details .post_navigation .nav_item:hover,
.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    color: var(--thm-white);
    margin-bottom: 20px;
    font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-one);
}

h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
    line-height: 1.5;
}
h4 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
}
h5 {
    font-size: 20px;
    line-height: 1.5;
}
h6 {
    font-size: 16px;
    line-height: 1.5;
}
p {
    margin-bottom: 25px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}
a {
    color: var(--thm-white);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px 40px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-one);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

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

.mb-xl-60 {
    margin-bottom: 60px;
}
.whislist-table {
    overflow: auto;
}
.order-title {
    color: #000;
}

/*Forms*/
.form-control:focus {
    box-shadow: none;
}

.form_style label {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--thm-white);
}

.form_style .form-control {
    background-color: transparent;
    border: none;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 0;
}

.form_style .form-control:focus {
    box-shadow: none;
    border: none;
    border-bottom: 2px solid var(--thm-color-one);
}

.form_style .form-control,
.form_style .form-control::placeholder {
    color: var(--thm-white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    height: auto;
    font-weight: 500;
}

.form_style.style_two .form-control,
.form_style.style_two .form-control::placeholder {
    color: var(--thm-body-color);
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.text-custom-black {
    color: #000;
}
/*Buttons*/
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border:  transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--thm-body-color);
}
.btn:hover {
    background-color: transparent;
}
.thm-btn:hover i, .thm-btn:focus i {
    color: var(--thm-color-one);
}
.thm-btn:hover, .thm-btn:focus {
    color: #fff;
    background-color: #000 !important;
    justify-content: center;
}
.thm-btn {
    color: #000;
    background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    transition: 0.5s all;
    font-weight: 400;
    border-radius: 7px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    gap: 7px;
    overflow: hidden;
}
.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}
.thm-btn.light-btn {
background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
}
.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}
.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 4px 15px;
}
.thm-btn-two {
    background: #FFE0D0;
    padding: 2px 15px;
    border-radius: 6px;
    color: #FF7A33;
    border: 1px solid;
    font-size: 14px;
    font-weight: 600;
    transition: 0.5s all;
}
.thm-btn-two:hover  {
    background-color: #000;
    color: #fff;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    background: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background: var(--thm-color-two);
}

.thm-bg-color-three {
    background-color: var(--thm-color-three);
}

.thm-bg-light {
    background-color: var(--thm-color-light);
}

.thm-bg-color-four {
    background-color: var(--thm-color-four);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-wrap h1 {
    letter-spacing: 15px;
    font-size: 65px;
    font-weight: 600;
    color: #fff;
}

/*---------------------------------------*/
/*------header start------*/
/* .menu-item a:hover {
    transform: translateX(5px);
} */
.active {
    color: var(--thm-color-one) !important;
}
.header-logo {
    padding: 10px 0;
}

.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu-icon {
    display: flex;
    justify-content: end;
    align-items: center;
}
.btn.btn-primary {
    width: 50px;
    height: 35px;
    /* margin-right: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}

.btn.btn-primary i {
    transition: 0.5s all;
}

.btn.btn-primary i:hover {
    color: var(--thm-color-one);
}

/*------header end------*/

.main-menu {
    display: flex;
    justify-content: center;
    /* width: 100%; */
}
.menu-item a {
    color: #fff;
    padding: 18px 10px;
    font-size: 14px;
    font-weight: 400;
    /* padding-bottom: 0; */
    /* padding-top: 0; */
}
.menu-item a:hover {
    color: var(--thm-color-one);
}
nav.navigation {
    width: 100%;
    text-align: center;
    justify-content: end;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 80px;
    /* padding-top: 46px; */
    /* background: #006038; */
    border-radius: 30px;
    padding: 0 16px;
    margin: 17px 0;
}
.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    z-index: 22 !important;
    background: #000;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
}
.navigaation-warpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

/* .header .menu-item a:hover {
    color: var(--thm-color-one) !important;
} */
/*-----navigation start-----*/
.header .navigation .menu-item-has-children {
    position: relative;
}
.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 215px;
    visibility: hidden;
    opacity: 0;
    background-color: #262626;
}
.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item a {
    padding: 0;
    width: 100%;
    padding: 7px 10px;
    /* border-bottom: 1px solid; */
    transition: 0.5s all;
    /* background-color: var(--thm-color-one); */
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover a {
    background-color: #000;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-one);
    color: var(--thm-white);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 52px;
}
.header .header_action {
    margin-left: 15px;
}
.header.sticky .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: -100%;
    top: 52px;
}
/*-----hamburger start------*/
.hamburger {
  display: none;
}
.hamburger-btn span{
    background: #000;
    margin-bottom: 5px;
    display: flex;
    position: relative;
    width: 25px;
    height: 2px;
    transition: 0.5s all;
}
.hamburger-btn span:last-child {
    margin-bottom: 0;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
    display: none;
}
.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}
/*-----hamburger end------*/
.header-search {
    position: relative;
    width: 85%;
}
.header-search i {
    position: absolute;
    left: 14px;
    top: 29%;
}
.header-search input {
    padding: 10px 10px;
    padding-left: 40px;
    border-radius: 30px;
    border-color: #8E8E93;
}
.header {
    background: transparent;
    position: fixed;
    z-index: 99;
    /* border-bottom: 1px solid #A3131366; */
    width: 100%;
    top: 0;
}
.logo img {
    width: 105px;
}
.stat-select {
    color: #4C8EFF;
    font-size: 14px;
    margin-bottom: 15px;
}

.header-profile .profile-icon:hover {
    background-color: #000;
}
.header-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.profile-main {
    position: relative;
    padding: 16px 0;
    transition: 0.5s all;
}
.profile-main:hover .profile-dropdown {
    display: block;
    width: 180px;
    transition: 0.5s all;
    display: block;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0%;
    background: #262626;
    border-radius: 0;
    width: 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
    transition: 0.5s all;
}
.user-list-header {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.user-list-header li a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.5s all;
    font-size: 14px;
}
.user-list-header li a i {
    color: var(--thm-color-one);
}
.user-list-header li a:hover {
    color: var(--thm-color-one);
}
.user-name {
    display: flex;
    align-items: center;
    padding: 15px 14px;
    background: var(--thm-color-one);
    color: #fff;
    gap: 15px;
    border-radius: 15px 15px 0 0;
}
.user-full-name {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}
.user-sort-name {
    background: #fff;
    color: var(--thm-color-one);
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-right {
    /* padding-top: 25px; */
    display: flex;
    align-items: center;
    gap: 15px;
}




/*--------banner start------*/
.banner-bg {
    height: 1050px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    z-index: 0;
    /* border-radius: 20px; */
    display: flex !important;
    align-items: center;
}
.thm-btn.thm-one-btn {
    background: var(--thm-color-one);
}
.banner-title {
    font-size: 62px;
    color: #fff;
     font-family: 'Sakana', sans-serif;
    padding-top: 20px;
    text-transform: uppercase;
}
.overlay:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}
.banner-text p {
    color: #fff;
    font-size: 14px;
}
.banner-sm {
    background-color: #fff !important;
}
.banner-sm:before {
    background-color: var(--thm-color-one) !important; 
    outline: 4px solid #f7efca !important;
}
.heading-top-sm {
    background: #FEF3D7;
    color: #1E1600;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    /* font-family: Lora; */
    position: relative;
    padding-left: 40px;

}
.heading-top-sm:before {
    position: absolute;
    content: '';
    top: 39%;
    background-color: var(--thm-color-one);
    left: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: 4px solid #cacbf7;
}
.banner-btn {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.thm-text {
    color: var(--thm-text);
}
.banner-text p:first-child {
    font-size: 16px;
    text-decoration: underline;
}
.header-banner {
    background: #0C80B0;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.header-banner i {
    color: #fff;
    font-size: 36px;
}
.header-banner p {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}
.banner-form-body {
    background: #fff;
    padding: 30px;
    margin: 15px;
    margin-top: 0;
    border-radius: 0 0 10px 10px;
}
.banner-form-body .form-control {
    background: #565656;
    color: #fff;
}
.banner-form-body .form-control::placeholder {
    color: #fff;
}

.banner-text.slick-slide.slick-current.slick-active h2 {
    display: block;
}

.banner-title h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 500;
}

.banner-slider .slick-dots {
    position: absolute;
    right: 50%;
    bottom: 0;
}
.banner-slider .slick-dots li button {
    background-color: transparent;
    width: 10px;
    height: 10px;
    border: 1px solid  var(--thm-color-one);
}
.banner-slider .slick-dots li.slick-active button {
    background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
}
.banner-slider .slick-dots li.slick-active button:before {
    width: 25px;
    height: 25px;
    opacity: 0;
}
.btn-sm {
    padding: 4px 16px;
    font-size: 14px;
}
/*--------banner end------*/

/*--------footer start-----*/
.footer {
    background: #181818;
    padding-bottom: 0px;
    /* border-top: 1px solid #34495E66; */
    margin-top: 50px;
}
.ft-logo img {
    width: 100px;
    margin-bottom: 20px;
}
.ft-left p {
    color: #888888;
}
.follow-icon i {
    color: #fff;
    transition: 0.5s all;
    cursor: pointer;
    z-index: 1;
    font-size: 16px;
}
.follow-icon i:hover {
    color: var(--thm-color-one);
}
.ft-left p {
    font-size: 14px;
}
.ft-list li {
    line-height: 1.3;
    padding-bottom: 15px;
    font-size: 14px;
}
.ft-title p {
    color: #000;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    /* border-bottom: 1px solid; */
    display: inline-block;
    /* font-family: 'Poppins'; */
}
.ft-item li:hover {
    color: var(--thm-color-one);
}
.ft-item li {
    transition: 0.5s all;
    cursor: pointer;
    font-weight: 500;
    color: #b7b7b7;
}
.custom-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ft-title {
    margin-bottom: 20px;
    font-size: 22px;
    color: #fff;
}
.copyright p {
    margin-bottom: 0;
    text-align: center;
    color: #141310;
    font-size: 15px;
    font-weight: 500;
}
.copyright p a {
    color: #141310;
}
.copyright {
    padding: 20px 0;
    border-top: 1px solid #888888;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #FEE7AF; */
    color: #828282;
    font-size: 14px;
    margin-top: 55px;
}
.ft-list li a {
    color: #828282;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
}
.ft-list li a:hover {
    color: var(--thm-color-one);
}
.ft-mail-box {
    border: 1px solid #8E8E93;
    border-radius: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px;
    width: 75%;
}
.ft-mail-box input {
    border: 0;
    width: 100%;
    padding-left: 15px;
    border-radius: 30px;
}

.ft-social-icon li a {
    transition: 0.5s all;
}

.ft-social-icon {
    display: flex;
    align-items: center;
    gap: 14px;
   
}
.ft-social-icon li i {
    /* width: 33px; */
    /* height: 33px; */
    color: var(--thm-color-one);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.5s all;
}
.ft-social-icon li:hover i {
    color: #fff;
    /* background: var(--thm-color-one); */
}
.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.ft-payment-image {
    width: 58%;
}
.ft-payment-image ul {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.ft-bottom-list {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 15px 25px;
    border-radius: 20px 20px 0 0;
    margin-top: 20px;
    background: var(--thm-color-one);
    flex-wrap: wrap;
}
ul.ft-bottom-list li a {
    color: #fff;
    transition: 0.5s all;
    font-size: 15px;
}
ul.ft-bottom-list li:hover a {
    color: #000;
}


/*--------footer end-----*/

/*back to top*/
#back-top {
    text-align: center;
    display: none;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    border: var(--thm-color-one) solid 1px;
    color: #000;
     background: var(--thm-color-one);
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    transition: 0.5s all;
}

#back-top a:hover {
    background: #000;
    color: var(--thm-color-one);
    /* transform: rotate(360deg); */
}

/*----subheader star----*/
.subheader {
    position: relative;
    background-image: url(../images/subheader.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 0;
}
.subheader:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    /* opacity: 0.5; */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.subheader-title {
    text-align: center;
    display: inline;
    display: inline-flex;
    align-items: center;
    color: #fff;
}
.subheader-title h1 {
    color: #fff;
    margin-bottom: 5px;
}
.breadcrumb {
    display: flex;
    list-style: none;
    justify-content: left;
}
.form-group .form-control option {
    color: #000;
}
.form-group .form-control {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 0px;
    border: 1px solid #fff;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
    background: transparent;
    color: #fff;
}
 input:focus {
    border-color: var(--thm-color-one);
}
.form-control:focus {
    border-color: var(--thm-color-one);
}

 textarea:focus {
    border-color: var(--thm-color-one);
}

/*----------cart start----------*/

tbody tr td {
    border: 0;
    transition: 0.5s all;
    /* padding: 25px 15px; */
    background: transparent;
    border-bottom: 1px solid #262626;
    white-space: nowrap;
}
tbody tr {
    border-bottom: 0px solid #262626;
    margin-bottom: 20px;
}
thead th {
    border: 0;
}
.modal-backdrop.fade {
    opacity: 0;
    z-index: -1;
}
/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
.section-heading {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.seeall-btn {
    position: absolute;
    right: 0;
    bottom: 0;
}
.section-heading a:hover {
    color: #000;
}
.section-heading h2 {
    color: #000;
    margin-bottom: 7px;
    font-size: 36px;
    font-weight: 600;
    text-align: left;
}

.color-one {
    color: var(--thm-color-one);
}

.breadcrumb li {
    margin: 0 5px;
    color: var(--thm-color-one);
}

.breadcrumb li a {
    text-decoration: none;
    color: #fff;
}

.breadcrumb li a:hover {
    text-decoration: underline;
    color: var(--thm-color-one);
}

.breadcrumb li::after {
    content: "/";
    margin-left: 5px;
    color: #fff;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb li:last-child a {
    color: #fff;
    pointer-events: none;
    cursor: default;
}
.loader-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--thm-color-two);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;

}
.loader-wrap h1 {
    color: #fff;
    font-size: 45px;
}
/* --------------inner page css------------------------------- */
.section-hedding h2 {
    color: var(--thm-color-one);
    font-weight: 500;
    font-style: italic;
}
/* ------------------css inner page------------------------------------ */

/* ------------cart css------------------ */

.ft-top-box {
    margin-top: -102px;
    margin-right: 40px;
}
ul.ft-address-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ft-address-list li a i {
    color: var(--thm-color-one);
}
ul.ft-address-list li {
    padding-bottom: 7px;
}
.ft-list p {
    color: #fff;
}
/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000B2;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.header.sticky .menu-item a {
    color: #fff;
}

.header.sticky .logo {
    display: none;
}
.header.sticky .logo.scroll {
    display: block;
}
.logo.scroll {
    display: none;
}
/* Popup Box */
.popup-content {
    background: #000;
    padding: 14px;
    width: 591px;
    border: 1px solid var(--thm-color-one);
    height: 380px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
    overflow: auto;
}
button.close-btn {
    color: #fff;
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 15px;
}
.bg-popup {
    height: 100%;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    width: 100%;
}
.popup-header {
    background: var(--thm-color-one);
    padding: 20px;
    border-radius: 5px 5px 0 0;
}
.popup-header h5 {
    color: #fff;
    margin-bottom: 0;
}

/* ------------------------------------------------------------------ */
.marquee-container {
      background-color: #333;
      overflow: hidden;
      white-space: nowrap;
      width: 100%;
      padding: 20px 0;
    }

    .marquee-content {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 20s linear infinite;
    }

    .marquee-item {
      display: inline-block;
      color: #fff;
      font-weight: bold;
      margin: 0 20px;
    }

    .marquee-content .arrow {
      color: #d3d300; /* yellow arrow */
      margin: 0 10px;
    }

    @keyframes scroll-left {
      from {
        transform: translateX(100%);
      }
      to {
        transform: translateX(-100%);
      }
    }
   .about-perra {
    height: 100%;
    padding: 66px;
    display: flex;
    align-items: center;

}
.about-image:before {
    position: absolute;
    content: '';
    top: 42%;
    right: -47px;
    border: 22px solid transparent;
    border-right: 26px solid #000;
    border-bottom: 20px solid #000;
    transform: rotate(310deg);
}
.about-image {
    position: relative;
}
.about-image h2 {
    position: absolute;
    top: 50%;
    right: 15%;
    text-align: center;
}
.about-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}
.about-item i {
    color: var(--thm-color-one);
    font-size: 25px;
}
.about-item h5 {
    margin-bottom: 0;
}

ul.about-highlights li {
    margin-bottom: 51px;
}
.section-heading h1 {
    margin-bottom: 0;
    font-size: 30px;
}
.classes-image {
    position: relative;
    z-index: 0;
    padding: 4px;
}
.classes-image:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-image: url(../images/classes/rectangle1.png);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    /* height: 100px; */
}
.classes-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
.classes-title {
    font-size: 22px;
}
.classes-list {
    font-size: 14px;
    list-style: disc;
    padding-left: 15px;
    margin-bottom: 15px;
}
.classes-card {
    margin: 12px;
    margin-bottom: 20px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-buttons button {
    padding: 5px 30px;
    margin: 0 5px;
    border: 2px solid var(--thm-color-one);
    background: transparent;
    color: var(--thm-color-one);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.tab-buttons button.active {
    background-color: var(--thm-color-one);
    color: #000 !important;
}

.plans {
    display: none;
    /* gap: 20px; */
    /* justify-content: center; */
    /* flex-wrap: wrap; */
}

.plans.active {
    display: block;
}

.plan-card h3 {
    margin-bottom: 10px;
    font-size: 23px;
}
.plan-card ul {
    padding-left: 20px;
}

.plan-card .price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}
.plan-card .choose-btn {
    font-weight: bold;
    background: transparent;
    color: #fff;
}
.plan-card .choose-btn:hover {
    font-weight: bold;
    background: var(--thm-color-one) !important;
    color: #000;
}
.pay-image {
    position: absolute;
    right: 19px;
    top: 50%;
}
.sm-text {
    font-size: 14px;
}
.package-desc {
    text-align: justify;
}
.package-list {
    padding-left: 16px;
    list-style: disc;
    color: #fff;
    text-align: left;
    font-size: 14px;
    height: 175px;
}
.text-left {
    text-align: left;
}
.trainer-card {
    border: 2px solid #262626;
    border-radius: 10px;
    margin-bottom: 20px;
    margin: 12px;
}
.trainer-content {
    padding: 15px;
}
.trainer-image {
    text-align: center;
    padding: 20px;
    background: #262626;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trainer-image img {
    height: 246px;
}

.slick-arrow {
 top: -75px;
}
 .slick-next.slick-arrow {
    right: 20px;
}
 .slick-prev.slick-arrow {
    left: auto;
    right: 70px;
}
.trainer-slider .slick-dots {
    position: absolute;
    top: -40px;
    right: 18px;
    width: auto;
}
.trainer-slider .slick-dots li button {
    font-size: 0;
    width: 20px;
    height: 10px;
    border-radius: 4px;
    background: #C7C7C7;
    margin: 0 3px;
    transition: 0.6s all;
    border: 0px solid #C7C7C7;
}

.trainer-slider .slick-dots li.slick-active button {
    width: 30px;
    height: 10px;
    border-radius: 4px;
    background: var(--thm-color-one);
}
.plan-card {
    border: 2px solid var(--thm-color-one);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 1px 8px 0px #D90A141F;
    text-align: center;
    margin: 12px;
    margin-bottom: 20px;
}
.letter-space-text {
    color: #F5F5F5B2;
    letter-spacing: 53px;
    font-size: 40px;
}

 .testimonial-slider {
      display: flex;
      align-items: end;
      justify-content: space-between;
      /* background: linear-gradient(90deg, #000000, #1f1f00); */
      border-radius: 12px;
      /* padding: 20px; */
      margin: auto;
    }

 .main-image img {
    width: 264px;
    height: 350px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0px 0px 24px 0px #E2FA0466 inset;
    padding: 20px;
    padding-bottom: 0;
}

.testimonial-box {
    flex: 1;
    background: #262626;
    /* margin: 0 20px; */
    padding: 20px;
    border-radius: 12px;
    position: relative;
    /* margin-right: 20px; */
    box-shadow: 0px 8px 21px 0px #E2FA041C;
}
.testimonial-box::before {
    content: "\f10d";
    font-size: 40px;
    color: #f5ea0a;
    position: absolute;
    top: 0;
    right: 20px;
    font-family: 'FontAwesome';
}

    .testimonial-box h3 {
      margin-top: 0;
      font-size: 18px;
      margin-bottom: 10px;
    }

 .testimonial-box p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

   .side-profiles {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
   .side-profiles .profile {
    width: 101px;
    height: 332px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: #1a1a1a;
    position: relative;
    cursor: pointer;
    object-fit: cover;
    background: linear-gradient(180deg, rgba(226, 250, 4, 0.2) 0%, #000000 100%);
}

    .side-profiles .profile img {
      width: 100%;
      /* height: 100px; */
      object-fit: cover;
    }

  .side-profiles .profile span {
    display: block;
    color: #fff;
    font-size: 15px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: 5px;
    position: absolute;
    bottom: 20px;
    left: 36%;
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px;
    margin-bottom: 0;
}

.slider-controls button {
    color: #888888;
    border: none;
    padding: 0;
    border-radius: 8px;
    font-size: 19px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    background: transparent;
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-controls button:hover {
    color: #fff;
}
.product-image {
    background: #262626;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.product-title {
    font-size: 16px;
     margin-bottom: 5px;
}
.rating {
    margin-bottom: 13px;
    font-size: 12px;
    color: var(--thm-color-one);
}
.product-content p {
    font-size: 16px;
}
.product-card {
    margin: 12px;
    transition: 0.5s all;
}

.product-slider .slick-arrow {
 top: -55px;
}
.product-image:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E2FA0466;
    border-radius: 10px;
    z-index: 0;
    transition: 0.5s all;
    transform: scale(0.5);
    opacity: 0;
}
.product-image:hover:before {
    transform: scale(1);
    opacity: 1;
}
.product-image:hover .product-hover-item {
    transform: scale(1);
}
.product-hover-item {
    position: absolute;
    top: 50%;
    left: 40%;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: scale(0);
    transition: 0.5s all;
}
.product-hover-item i {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: 0.5s all;
}
.product-hover-item i:hover {
    background: var(--thm-color-one);

}

.faq-item {
    border: 1px solid var(--thm-color-one);
    border-radius: 9px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background-color: transparent;
    color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.faq-item.active .faq-question {
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 9px;
}
.faq-question::after {
    content: "\f078";
    font-size: 22px;
    color: var(--thm-color-one);
    transition: transform 0.3s ease;
    font-family: 'FontAwesome';
        font-weight: 100;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #888888;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 300px; /* Enough for the longest answer */
}
.faq-container {
    position: relative;
    z-index: 0;
}
.faq-container:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/ellipse-left.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
      z-index: -1;
}
.faq-container:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/ellipse-right.png);
    z-index: -1;
}
.brand-box {
    background: #262626;
    height: 100%;
    width: 100%;
    min-height: 150px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    margin-top: 0;
}
.brand-slider .slick-prev.slick-arrow {
    left: -208px;
    right: auto;
    top: auto;
    bottom: 25px;
}
.brand-slider .slick-next.slick-arrow {
    left: -160px;
    right: auto;
    top: auto;
    bottom: 25px;
}
.cart-item {
    position: relative;
}
span.number {
    position: absolute;
    top: -5px;
    font-size: 12px;
    background: #fff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -4px;
    color: #000;
}
.fitness-left {
    border: 3px solid #E2FA04;
    padding: 30px;
    text-align: center;
}
img.summer-logo {
    margin-top: -93px;
    text-align: center;
    background: #000;
    padding: 10px 45px;
    width: 250px;
}
p.summer-save {
    text-align: left;
    font-size: 20px;
}
span.descount-text {
    font-size: 35px;
    color: var(--thm-color-one);
}
p.text-right {
    text-align: right;
}
.fitness-bg {
    background-image: url(../images/bg3.png);
    background-position: right;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    z-index: 0;
}
.fitness-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 41.83%);
    z-index: -1;
}
.award-box {
    background: #262626;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 230px;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    position: relative;
}
.awards-right {
    padding-left: 80px;
}
.play-btn {
    border-radius: 50%;
    width: 58px;
    height: 58px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 4px solid #E2FA0480;
}
.dot-line {
    margin: 50px 0;
    width: 100%;
    height: 2px;
    background: #323232;
}
.award-box:before {
    position: absolute;
    content: '';
    bottom: -55px;
    left: 50%;
    background: #fff;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.award-box.dots-top:before {
    top: -55px;
    left: 50%;
    bottom: auto;
}
.classes-content span {
    font-size: 13px;
}
ul.details-class-item {
    columns: 2;
    margin-bottom: 20px;
    padding-left: 20px;
}
ul.details-class-item li {
    position: relative;
    font-size: 14px;
}
ul.details-class-item li:before {
    position: absolute;
    content: '';
    top: 39%;
    left: -16px;
    width: 8px;
    height: 8px;
    background: var(--thm-color-one);
    border-radius: 50%;
}
.class-details-image {
    display: flex;
    align-items: center;
    gap: 15px;
}
.class-details-image img {
    border-radius: 10px;
}
.class-schedule ul.details-class-item {
    columns: 1;
}
.class-schedule {
    display: flex;
}
.class-schedule {
    display: flex;
    justify-content: space-around;
}
.product-list-left {
    background: #262626;
    padding: 40px 15px;
}
.list-search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid;
    border-radius: 2px;
    margin-bottom: 20px;
    padding: 5px 15px;
}
.list-search input {
    background: transparent;
    border: 0;
}
ul.list-category {
    list-style-type: disc;
    padding-left: 15px;
    margin-bottom: 20px;
}
.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
select.list-select {
    background: transparent;
    color: #fff;
}
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}
.details-image {
    background: #262626;
    border-radius: 10px;
    position: relative;
}
.quentity-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px;
  }

  .quentity-box button {
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    transition: background-color 0.2s;
  }

  .quentity-box button:hover {
    background-color: #ddd;
  }

  .quentity-box input.quentity {
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
  }

  .tabs {
    display: flex;
    border-bottom: 2px solid #333;
    margin-bottom: 20px;
  }

  .tab {
    padding: 10px 20px;
    cursor: pointer;
    color: #ccc;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
  }

  .tab.active {
    color: #ff0;
    border-color: #ff0;
  }

  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }
  .details-right {
    padding-left: 30px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }

thead th {
    background: #fdfc00;
    color: #000;
    padding: 10px;
    text-align: center;
    border: 0;
    white-space: nowrap;
}
  tbody td {
    padding: 15px;
    border-bottom: 1px solid #333;
    vertical-align: middle;
  }

  td img {
    width: 60px;
  }

  .remove-btn {
    color: #fdfc00;
    font-size: 20px;
    cursor: pointer;
  }

  select {
    padding: 5px;
    background: #222;
    color: #fff;
    border: 1px solid #444;
  }

  .cart-footer {
    background: #222;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
  }

  .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .coupon input {
    padding: 5px 10px;
    border: 1px solid #ccc;
    background: transparent;
    color: #fff;
    border-radius: 5px;
}

  .checkout {
    margin-top: 20px;
  }
  .total {
    font-size: 18px;
  }
  .login-sec {
    background: #262626;
}
.contact-form.login-box {
    padding: 40px;
}
.contact-form label {
    color: #fff;
}
.contact-form .form-group .form-control {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
}
a.thm-btn.bg-light {
    background: transparent !important;
    color: #fff;
    border-color: #fff;
}
.profile-header {
    border: 1px solid var(--thm-color-one);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}
.contact-card {
    text-align: center;
    height: 100%;
    border-right: 1px solid var(--thm-color-one);
    padding: 30px;
}

.border-contact {
    border: 1px solid var(--thm-color-one);
    border-radius: 10px;
}
.border-none {
    border: 0;
}
.address-icon {
    color: var(--thm-color-one);
    font-size: 25px;
}
.contact-card p {
    margin-bottom: 0;
}
.faq-play-box {
    border: 1px solid #E2FA0433;
    background: #FFFFFF1A;
    border-radius: 10px;
    padding: 27px;
    text-align: center;
    margin: 0 40px;
}
.faq-play-icon i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 18px;
    border: 16px solid #68720c;
    background: #E2FA04;
    color: #000;
}
.faq-play-section {
    z-index: 0;
}
section.section-padding.faq-play-section:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.2) 48.56%, #000000 96.63%);
    z-index: -1;
}

  .progress-container {
      display: flex;
      align-items: center;
      gap: 30px;
      justify-content: center;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .step .number {
      width: 22px;
      height: 22px;
      background-color: #e4ff00;
      color: #000;
      font-weight: bold;
      font-size: 14px;
      text-align: center;
      line-height: 22px;
      border-radius: 2px;
    }

    .step.inactive .number {
      background-color: #333;
      color: #e4ff00;
    }

    .progress-container .arrow {
      color: #fff;
      font-size: 18px;
    }
     .section-box {
      background-color: #2b2b2b;
      border-radius: 6px;
      padding: 20px;
      margin-bottom: 20px;
    }

    .section-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .text-accent {
      color: #e4ff00;
    }

    .add-address {
      font-size: 14px;
      float: right;
      color: #e4ff00;
    }

    .address-box {
      border: 1px solid #555;
      padding: 15px;
      border-radius: 6px;
      margin-bottom: 15px;
    }

    .address-box.active {
      border-left: 4px solid #e4ff00;
    }

    .address-box i {
      color: #e4ff00;
      margin-right: 5px;
    }

    .edit-link {
      float: right;
      color: #e4ff00;
      font-size: 14px;
    }
.billing-table td {
    padding: 6px 0;
    text-align: left;
}

    .billing-table td:last-child {
      text-align: right;
    }

    .form-check-input:checked {
      background-color: #e4ff00;
      border-color: #e4ff00;
    }

    hr {
      border-top: 1px solid #555;
    }
    .section-box .form-check {
    border-bottom: 1px solid #FFFFFF99;
}
.order-wrapper {
      background-color: #2b2b2b;
      padding: 20px;
      border-radius: 8px;
    }

    .order-card {
      border: 1px solid #555;
      padding: 15px;
      border-radius: 6px;
      margin-bottom: 20px;
    }
.order-header {
    font-size: 14px;
    display: flex;
    justify-content: start;
    margin-bottom: 15px;
    gap: 40px;
    border-bottom: 1px solid #888;
    padding-bottom: 10px;
}
.order-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.order-detail-item .product-info {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}
.border-top-details {
    border-top: 1px solid #888;
    padding-top: 15px;
}
.order-details-text p {
    margin-bottom: 8px;
    font-size: 14px;
}

    .order-id {
      color: #e4ff00;
    }

    .product-img {
      max-width: 80px;
      height: auto;
      border-radius: 4px;
    }

    .product-info {
      margin-left: 15px;
    }

    .product-info h6 {
      margin-bottom: 5px;
      font-size: 16px;
      font-weight: 600;
    }

    .status {
      color: #e4ff00;
      font-weight: 600;
    }

    .delivery-date {
      color: #e4ff00;
      font-weight: 600;
    }
.banner-play {
    background: #fff;
    width: 30px;
    height: 30px;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Modal style */
    .modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background-color: #000;
      padding: 0px;
      width: 90%;
      max-width: 500px;
      position: relative;
      border-radius: 8px;
    }

  .close {
    position: absolute;
    right: 6px;
    top: 0;
    font-size: 24px;
    cursor: pointer;
}

#loader {
    position: fixed;
    /* top: 35%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
	#down{
	display:none;
	} 
	
	#up{
		fill:#000;
	}
	
	.loader-wrap .border {
		fill: none;
		stroke: var(--thm-color-one);
		stroke-width: 8px;
		stroke-dasharray: 80 10;
	}

	.loader-wrap .circle {
		fill: var(--thm-color-one);
	}
	
	
}

select.list-select option {
    color: #000;
}
.payemnt-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payemnt-list ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 13px;
}
.payment-contant {
    border: 1px solid var(--thm-color-one);
    padding: 20px;
    border-radius: 5px;
    height: 100%;
}
.payment-image {
    text-align: center;
}
.profile-item {
    font-size: 13px;
}
.order-summery-item li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}
.order-summery-item li {
   margin-bottom: 0px;
}
.profile-icon i:first-child {
    color: var(--thm-color-one);
}
.profile-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}
input.cart-number {
    width: 55px;
    text-align: center;
    background: #222;
    color: #fff;
    border: 1px solid #444;
}
.veg-image {
    position: absolute;
    top: 10px;
    right: 10px;
}
.veg-image img {
    width: 20px;
    height: 20px;
}
.trainer-detail-image {
    position: relative;
    z-index: 0;
    background: #262626;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}
.trainer-detail-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10.11%, #000000 32.41%);
    width: 100%;
    padding: 20px;
    text-align: center;
}
.trainer-appoi-box {
    background: #262626;
    padding: 20px 30px;
    border-radius: 15px;
    margin-top: 40px;
}
.skill {
    margin-bottom: 20px;
  }
  .skill-name {
    margin-bottom: 5px;
  }
  .skill-bar {
    position: relative;
    background: white;
    height: 4px;
    border-radius: 2px;
    /*overflow: hidden;*/
  }
  .skill-fill {
    background: yellow;
    height: 100%;
    width: 0;
    transition: width 1.5s ease-in-out;
  }
 .skill-percent {
    position: absolute;
    right: 0;
    top: -24px;
    font-size: 14px;
    font-weight: bold;
}
button.play-modal.play-btn i {
    color: #fff;
}

/* Profile Cards   ----------------------------- */
/*.profile-card {*/
/*    border-radius: 20px;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    transition: all 0.3s ease;*/
/*    cursor: pointer;*/
/*}*/

/*.left-profile {*/
/*    width: 200px;*/
/*    height: 280px;*/
/*    margin: 0 auto;*/
/*    border: 3px solid #4a4a4a;*/
/*}*/

.right-profile {
    width: 120px;
    height: 160px;
    border: 2px solid #4a4a4a;
    position: relative;
    width: 101px;
    height: 332px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: #1a1a1a;
    position: relative;
    cursor: pointer;
    object-fit: cover;
    background: linear-gradient(180deg, rgba(226, 250, 4, 0.2) 0%, #000000 100%);
}

.right-profile.active {
    border-color: #f1c40f;
    transform: scale(1.01);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease, opacity 0.3s ease;
}

#mainProfileImg {
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 264px;
    height: 350px;
    border-radius: 12px; 
    object-fit: cover;
    box-shadow: 0px 0px 24px 0px #E2FA0466 inset;
    padding: 20px;
    padding-bottom: 0;
}
.right-profiles .profile-name {
    /* right: 0; */
    text-align: center;
    display: block;
    color: #fff;
    font-size: 15px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: 5px;
    position: absolute;
    bottom: 20px;
    left: 36%;
}

/* Testimonial Cards */
.testimonial-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    display: none;
    flex: 1;
    background: #262626;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0px 8px 21px 0px #E2FA041C;
    opacity: 0;
    margin-right: 30px;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}
.testimonial-content {
    position: relative;
}
.testimonial-content:before {
    content: "\f10d";
    font-size: 40px;
    color: #f5ea0a;
    position: absolute;
    top: 0;
    right: 0px;
    font-family: 'FontAwesome';
    line-height: 0.5;
}

.customer-name {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.testimonial-text {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    transition: opacity 0.3s ease;
}

/* Right Profiles Container */
.right-profiles {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

/* Navigation Arrows */
.navigation-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-right: 14px;
}
.nav-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(241, 196, 15, 0.2);
    border-color: #f1c40f;
    color: #f1c40f;
    transform: scale(1.1);
}

.nav-arrow:active {
    transform: scale(0.95);
}

  .modal-overlay .view-btn {
      background: none;
      border: none;
      color: yellow;
      cursor: pointer;
      margin-bottom: 10px;
      display: none; 
    }

    .modal-overlay .choose-btn {
      background: yellow;
      /*color: #fff;*/
      padding: 10px 20px;
      border: 1px solid;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .modal-overlay .modal-content {
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: left;
    border: 1px solid;
    
}
ul#modalFeatures {
    padding-left: 20px;
    font-size: 14px;
}

    .modal-overlay .modal-content h2 {
      margin-bottom: 10px;
    }

    .modal-overlay .close-btn {
      background: red;
      color: #fff;
      border: none;
      padding: 5px 10px;
      cursor: pointer;
      border-radius: 5px;
      margin-top: 15px;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .left-profile {
        width: 180px;
        height: 240px;
    }

    .right-profile {
        width: 110px;
        height: 150px;
    }

    .testimonial-card {
        padding: 25px;
        margin: 15px 0;
    }

    .navigation-arrows {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

 
   .left-profile {
    width: auto;
    height: auto;
    margin: 0 auto;
}

    .right-profile {
        width: 100px;
        height: 140px;
    }

    .testimonial-card {
        padding: 20px;
        margin: 10px 0;
    }

    .quote-icon {
        font-size: 3rem;
    }

    .customer-name {
        font-size: 1.3rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .right-profiles {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .navigation-arrows {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .testimonial-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-title .highlight {
        display: block;
        margin-top: 5px;
    }

    .right-profiles {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        margin-bottom: 15px;
    }

    .right-profile {
        width: 80px;
        height: 110px;
    }

    .testimonial-card {
        padding: 15px;
        margin: 8px 0;
    }

    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .customer-name {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .right-profiles .profile-name {
        transform: none;
        writing-mode: initial;
        text-orientation: initial;
        position: static;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 3px;
        border-radius: 0 0 8px 8px;
        font-size: 0.7rem;
        padding: 3px 5px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .navigation-arrows {
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
}
}

@media (max-width: 480px) {
    .testimonial-title {
        font-size: 1.3rem;
    }

    .right-profile {
        width: 70px;
        height: 95px;
    }

    .testimonial-card {
        padding: 12px;
    }

    .quote-icon {
        font-size: 2rem;
    }

    .customer-name {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .right-profiles .profile-name {
        font-size: 0.6rem;
        padding: 2px 4px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
    }
}



/*-----------new css diet-plan--------------------------------------*/


@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}


/* Dashboard Layout */
.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-main {
    margin-top: 20px;
}


.dashboard-title i {
    background: var(--thm-color-one);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 15px;
}

.dashboard-subtitle {
    color: #fff;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 400;
    margin-bottom: 0;
}

/* Responsive Container */
.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Content */
.header-content {
    text-align: left;
}

@media (max-width: 991px) {
    .header-content {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* Responsive Week Navigation */
@media (max-width: 991px) {
    .week-navigation-modern {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .week-navigation-modern {
        margin-top: 0;
    }
}

/* Modern Week Navigation */
.week-navigation-modern {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.week-selector-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    background: #000;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
    border: 1px solid;
}

.day-btn-modern {
    background: transparent;
    border: 2px solid transparent;
    padding: 12px 8px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #fff;
    min-width: 60px;
}

.day-btn-modern:hover {
    background: var(--thm-color-one);
    transform: translateY(-2px);
    border-color: #e2e8f0;
    color: #000;
}

.day-btn-modern.active {
    background: var(--thm-color-one);
    color: #000!important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border-color: transparent;
}

.day-btn-modern:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Enhanced week-navigation-modern interaction */
.week-navigation-modern .day-btn-modern {
    position: relative;
}

.week-navigation-modern .day-btn-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.week-navigation-modern .day-btn-modern:active::after {
    opacity: 1;
}

.week-navigation-modern .day-btn-modern.active {
    transform: scale(1.05);
}

.day-btn-modern .day-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.day-btn-modern .day-date {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

/* Summary Overview Card */
.summary-overview-card {
    background: #181818;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.summary-overview-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--thm-color-one);
}

.summary-overview-card.updating {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.summary-overview-card.updating::before {
    background: linear-gradient(180deg, #4ecdc4 0%, #44a08d 100%);
}

/* Responsive Summary Card Header */
.summary-overview-card .card-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Summary Tabs Navigation */
.summary-tabs-nav {
    padding: 0 30px;
    border-bottom: 1px solid #e2e8f0;
}

.summary-nav-pills {
    border-bottom: none;
    gap: 5px;
}

.summary-nav-pills .nav-link {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.summary-nav-pills .nav-link:hover {
    background: #f7fafc;
    color: #4a5568;
}

.summary-nav-pills .nav-link.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 -2px 10px rgba(102, 126, 234, 0.3);
}

.summary-nav-pills .nav-link i {
    margin-right: 8px;
}

/* Summary Tab Content */
.summary-tab-content {
    padding: 0;
    border: none;
}

.summary-tab-content .tab-pane {
    padding: 25px 0;
    min-height: 200px;
}

/* Progress Overview Tab */
.progress-overview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-item-modern {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.progress-item-modern:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-title {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.progress-value {
    font-weight: 700;
    color: #667eea;
    font-size: 0.9rem;
}

.progress-bar-modern {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-modern {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.meals-progress-fill {
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.water-progress-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.calorie-progress-fill {
    background: linear-gradient(90deg, #ffd93d, #ffb347);
}

/* Goals Overview Tab */
.goals-overview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.goal-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.protein-goal {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.carbs-goal {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.fats-goal {
    background: linear-gradient(135deg, #ffd93d, #ffb347);
}

.goal-info {
    flex: 1;
}

.goal-info h6 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.goal-info p {
    color: #fff;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.goal-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.goal-status.achieved {
    background: #d4edda;
    color: #155724;
}

.goal-status.warning {
    background: #fff3cd;
    color: #856404;
}

.goal-status.danger {
    background: #f8d7da;
    color: #721c24;
}

.summary-overview-card .card-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-overview-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.summary-overview-card h3 i {
    background: var(--thm-color-one);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 12px;
}

.summary-stats {
    display: flex;
    gap: 15px;
}

.stat-badge {
    background: #f7fafc;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.calories-stat {
    background: var(--thm-color-one);
    color: #000;
}

.meals-stat {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* Macro Overview Bars */
.summary-overview-card .card-body {
    padding: 25px 30px;
}

.macro-overview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.macro-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #000;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.macro-bar:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.macro-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.macro-label {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.macro-value {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
}

.protein-bar .macro-value {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.carbs-bar .macro-value {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.fats-bar .macro-value {
    background: linear-gradient(135deg, #ffd93d, #ffb347);
    color: #fff;
}

/* Macro Progress Bars */
.macro-progress {
    width: 100px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 15px;
}

.macro-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.protein-fill {
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.carbs-fill {
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.fats-fill {
    background: linear-gradient(90deg, #ffd93d, #ffb347);
}

/* Day Highlights Section */
.day-highlights {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #4a5568;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    color: #fff;
    transform: translateX(5px);
}

.highlight-item i {
    width: 20px;
    color: #667eea;
    font-size: 1rem;
}

.highlight-item:nth-child(1) i {
    color: #ffd93d;
}

.highlight-item:nth-child(2) i {
    color: #4ecdc4;
}

.highlight-item:nth-child(3) i {
    color: #ff6b6b;
}

/* Meals Grid */

.meals-tab-content {
    display: block;
}

.meals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 25px;
    padding: 0;
    width: 100%;
}

/* Tab Content */
.tab-content {
    border: none;
    padding: 0;
}

.tab-pane {
    border: none;
    padding: 0;
    min-height: 300px;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .meals-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .meals-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .meals-grid {
        gap: 12px;
    }
}

/* Modern Meal Cards */
.meal-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.meal-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.meal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.meal-time {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
}

.meal-time i {
    font-size: 1.3rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.meal-content h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1.3rem;
}

.meal-items {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.meal-items li {
    padding: 8px 0;
    color: #fff;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.meal-items li::before {
    content: '•';
    color: #667eea;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.meal-macros {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.macro {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.macro:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.macro.protein { 
    background: #ff6b6b; 
    color: white;
}

.macro.carbs { 
    background: #4ecdc4; 
    color: white;
}

.macro.fats { 
    background: #ffd93d; 
    color: #fff;
}

.macro.calories {
    background: #667eea;
    color: white;
}

/* Sidebar Widgets */
.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget-card {
    background: #181818;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.widget-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.widget-header {
    padding: 20px 25px 15px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.widget-header h4 i {
    background: var(--thm-color-one);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}

.widget-badge {
    background: #e2e8f0;
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.widget-body {
    padding: 20px 25px 25px;
}

/* Water Tracker Widget */
.water-tracker-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.water-bottle-modern {
    width: 60px;
    height: 120px;
    background: #000;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.water-level-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #4ecdc4, #44a08d);
    border-radius: 0 0 30px 30px;
    transition: height 0.5s ease;
}

.water-waves {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.water-info {
    flex: 1;
}

.water-current {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.water-current small {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.water-target {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 5px;
}

.water-controls-modern {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.water-btn {
    background: #000;
    border: 1px solid #000;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.water-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-1px);
}

.water-btn.reset-btn:hover {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

/* Tips Widget */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tip-item-modern {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #000;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tip-item-modern:hover {
    background: #262626;
    transform: translateX(5px);
}

.tip-icon {
    width: 40px;
    height: 40px;
    background: var(--thm-color-one);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    flex-shrink: 0;
}

.tip-content h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.tip-content p {
    font-size: 0.8rem;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */

/* Large tablets and small desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .dashboard-title {
        font-size: 2.2rem;
    }

    .week-selector-grid {
        gap: 6px;
    }

    .day-btn-modern {
        padding: 10px 6px;
    }

    .summary-overview-card .card-header {
        padding: 20px 25px 15px;
    }

    .macro-bar {
        padding: 12px 18px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .dashboard-header {
        margin-bottom: 25px;
    }

    .dashboard-title {
        font-size: 2rem;
        text-align: center;
    }

    .dashboard-subtitle {
        text-align: center;
        margin-bottom: 20px;
    }

    .week-navigation-modern {
        justify-content: center;
        margin-top: 20px;
    }

    .week-selector-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        max-width: 400px;
        margin: 0 auto;
    }

    .day-btn-modern {
        padding: 12px 8px;
    }

    .day-btn-modern .day-name {
        font-size: 0.75rem;
    }

    .day-btn-modern .day-date {
        font-size: 0.9rem;
    }

    .summary-overview-card {
        margin-bottom: 25px;
    }

    .summary-overview-card .card-header {
        padding: 20px 20px 15px;
    }

    .summary-stats {
        gap: 12px;
    }

    .macro-overview {
        gap: 18px;
    }

    .macro-bar {
        padding: 15px 18px;
    }

    .macro-progress {
        width: 90px;
    }

    .meals-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* Mobile phones (≤767px) */
@media (max-width: 767px) {
    .diet-dashboard {
        padding-top: 80px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .dashboard-header {
        margin-bottom: 20px;
    }

    .dashboard-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 8px;
    }

    .dashboard-subtitle {
        text-align: center;
        margin-bottom: 20px;
        font-size: 1rem;
    }

    /* Mobile Week Navigation */
    .week-navigation-modern {
        justify-content: center;
        margin-top: 15px;
    }

    .week-selector-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 3px;
        padding: 6px;
        max-width: 100%;
    }

    .day-btn-modern {
        padding: 8px 3px;
        min-width: 40px;
    }

    .day-btn-modern .day-name {
        font-size: 0.65rem;
        margin-bottom: 1px;
    }

    .day-btn-modern .day-date {
        font-size: 0.75rem;
    }

    /* Mobile Summary Card */
    .summary-overview-card {
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .summary-overview-card .card-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 18px 15px 12px;
    }

    .summary-overview-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .summary-stats {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .stat-badge {
        min-width: 70px;
        padding: 10px 15px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Mobile Macro Bars */
    .summary-overview-card .card-body {
        padding: 18px 15px 20px;
    }

    .macro-overview {
        gap: 12px;
    }

    .macro-bar {
        padding: 12px 15px;
        flex-direction: column;
        gap: 8px;
    }

    .macro-info {
        width: 100%;
        justify-content: space-between;
    }

    .macro-label {
        font-size: 0.9rem;
    }

    .macro-value {
        font-size: 1rem;
        padding: 5px 10px;
    }

    .macro-progress {
        width: 100%;
        height: 6px;
        margin-top: 5px;
    }

    /* Mobile Day Highlights */
    .day-highlights {
        margin-top: 20px;
        padding-top: 15px;
    }

    .highlight-item {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    .highlight-item i {
        font-size: 0.9rem;
    }

    /* Mobile Meals Grid */
    .meals-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .meal-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .meal-time {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .meal-content h5 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .meal-items li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .meal-macros {
        gap: 8px;
    }

    .macro {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Mobile Sidebar */
    .sidebar-widgets {
        margin-top: 25px;
        gap: 20px;
    }

    .widget-card {
        border-radius: 15px;
    }

    .widget-header {
        padding: 15px 20px 12px;
    }

    .widget-header h4 {
        font-size: 1.1rem;
    }

    .widget-body {
        padding: 15px 20px 20px;
    }

    /* Mobile Water Tracker */
    .water-tracker-modern {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }

    .water-bottle-modern {
        width: 50px;
        height: 100px;
    }

    .water-info {
        text-align: left;
    }

    .water-current {
        font-size: 1.5rem;
    }

    .water-controls-modern {
        justify-content: center;
        gap: 6px;
    }

    .water-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    /* Mobile Tips */
    .tip-item-modern {
        padding: 12px;
        gap: 12px;
    }

    .tip-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .tip-content h6 {
        font-size: 0.85rem;
    }

    .tip-content p {
        font-size: 0.75rem;
    }
    .lb-outerContainer {
    width: 350px !important;
    height: 240px !important;
}
.lightbox .lb-image {
    width: 350px !important;
    height: 250px !important;
    object-fit: cover;
}
.lb-data .lb-close {
    top: -34px!important;
    right: 3%!important;
}
}

@media (min-width: 767px) {
    .lightbox .lb-image {
    width: 550px !important;
    height: 350px !important;
    object-fit: cover;
}
}
/* Extra small phones (≤480px) */
@media (max-width: 480px) {
    .diet-dashboard {
        padding-top: 70px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .dashboard-title {
        font-size: 1.6rem;
    }

    .dashboard-subtitle {
        font-size: 0.9rem;
    }

    /* Extra small week navigation */
    .week-selector-grid {
        gap: 2px;
        padding: 4px;
    }

    .day-btn-modern {
        padding: 6px 2px;
        min-width: 35px;
    }

    .day-btn-modern .day-name {
        font-size: 0.6rem;
    }

    .day-btn-modern .day-date {
        font-size: 0.7rem;
    }

    /* Extra small summary card */
    .summary-overview-card .card-header {
        padding: 15px 12px 10px;
    }

    .summary-overview-card h3 {
        font-size: 1.1rem;
    }

    .summary-stats {
        /* flex-direction: column; */
        gap: 8px;
    }

    .stat-badge {
        min-width: 60px;
        padding: 8px 12px;
    }

    .summary-overview-card .card-body {
        padding: 15px 12px 18px;
    }

    .macro-bar {
        padding: 10px 12px;
    }

    .macro-label {
        font-size: 0.85rem;
    }

    .macro-value {
        font-size: 0.9rem;
        padding: 4px 8px;
    }

    /* Extra small meals */
    .meal-card {
        padding: 15px 12px;
    }

    .meal-content h5 {
        font-size: 1rem;
    }

    /* Extra small sidebar */
    .widget-header {
        padding: 12px 15px 10px;
    }

    .widget-body {
        padding: 12px 15px 15px;
    }

    .water-tracker-modern {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .water-bottle-modern {
        width: 45px;
        height: 90px;
        margin: 0 auto;
    }

    .water-current {
        font-size: 1.3rem;
    }
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Utility Classes */
.animate-fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

.animate-slide-in {
    animation: slideInLeft 0.5s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/*----------------------gallery start css---------------------------------*/

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
  .grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .grid img:hover {
    transform: scale(1.05);
  }
 .filters {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
 .filters .btn {
    margin: 0 5px;
    padding: 8px 15px;
    cursor: pointer;
    background: #181818;
    color: #fff;
}
.filters .btn.active {
    background: var(--thm-color-one);
    color: #000 !important;
}
.lightboxOverlay {
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #000;
    filter: alpha(Opacity=80);
    opacity: .8;
    display: none;
}

.lightbox {
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    outline: 0;
    position: fixed;
    height: 100vh;
    top: 30% !important;
}
.lightbox .lb-image {
    width: 500px ;
    height: 350px ;
    object-fit: cover;
}
.lb-data .lb-close {
    position: absolute;
    top: 0;
    right: 30%;
}
.schedule-time {
    background: #181818;
    padding: 5px 10px;
    border-radius: 6px;
    color: #e4e70f !important;
}

span.macro-value p {
    margin-bottom: 0;
}

marquee {
    background: transparent;
    color: #fff;
    font-weight: bold;
    padding: 15px 10px;
    /* border: 2px solid #f00; */
    font-size: 14px;
}
.navigation-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 80px;
}
.respons-user {
    display: none;
}
a.profile-icon.respnsive-user {
    display: none;
}


/*--------end css---------*/


