@import url(fonts.css);
 @import url(variable.css);
 body {
	 font-family: var(--content-font);
}
 html {
	 font-size: 62.5%;
}
 h1, h2, h3, h4, h5, h6 {
	 font-family: var(--heading-font);
}
 .head-top-bar {
	 background: var(--primary-bg-color);
	 padding-block: 1rem;
	 font-family: var(--content-font);
	 font-size: 1.4rem;
}

 .head-top-bar ul.left-links {
	 margin: 0;
	 padding: 0;
	 list-style: none;
}
 .head-top-bar ul.left-links li {
	 line-height: 1;
	 margin: 0;
	 padding: 0 1rem;
	 position: relative;
}
 .head-top-bar ul.left-links li:not(:last-child)::after {
	 content: '';
	 width: 1px;
	 height: 100%;
	 background: var(--secondary-bg-color);
	 position: absolute;
	 right: 0;
	 top: 0;
}
 .head-top-bar ul.left-links li a {
	 color: var(--secondary-text-color);
	 text-decoration: none;
}
 .head-top-bar ul.left-links li a:hover {
	 color: var(--color-text-white);
}
 .head-top-bar ul.right-links {
	 margin: 0;
	 padding: 0;
	 list-style: none;
}
 .head-top-bar ul.right-links li {
	 position: relative;
}
 .head-top-bar ul.right-links li a {
	 color: var(--color-text-white);
	 display: block;
	 padding: 0 1rem;
	 text-decoration: none;
	 line-height: 1;
}
 .head-top-bar ul.right-links li:not(:last-child)::after {
	 content: '';
	 width: 1px;
	 height: 100%;
	 background: var(--color-bg-white);
	 position: absolute;
	 right: 0;
	 top: 0;
}

 .logo {
	 padding: 2rem 0;
	 position: relative;
	 z-index: 3;
}
 .logo a {
	 display: block;
}
 .logo img {
	 max-width: 200px;
}


 nav.show {
	 left: 0;
}
 nav > ul {
	 padding: 0;
	 margin: 0;
	 list-style: none;
}
 nav > ul > li {
	 margin: 0;
	 padding: 0;
	 position: relative;
}
 nav > ul > li.parent > a::after {
	 content: '';
	 border-left: .5rem solid transparent;
	 border-right: .5rem solid transparent;
	 border-top: .5rem solid var(--secondary-bg-color);
	 position: absolute;
	 right: 0;
	 top: 2rem;
}

 nav > ul > li.parent > a:hover::after {
	 border-top-color: var(--primary-bg-color);
}
 nav > ul > li >a {
	 color: var(--secondary-text-color);
	 font-size: 1.6rem;
	 font-weight: 500;
	 display: block;
	 padding: 1rem 1.5rem;
	 text-decoration: none;
	 white-space: nowrap;
}
 nav > ul > li >a:hover {
	 color: var(--primary-text-color);
}
 nav > ul > li >a.active {
	 color: var(--primary-text-color);
}
 nav > ul > li >a.link-highlighted {
	 background: var(--secondary-bg-color);
	 color: var(--color-text-white);
	 border-radius: .8rem;
}

 nav > ul > li .sub-menu {
	 z-index: 2;
	 display: none;
}

 nav > ul > li .sub-menu > ul {
	 list-style: none;
	 padding: 0;
	 margin: 0;
	 font-size: 1.6rem;
}
 nav > ul > li .sub-menu > ul li a {
	 color: var(--secondary-text-color);
	 text-decoration: none;
	 font-weight: 500;
	 padding: .7rem 1.5rem;
	 display: block;
}

 nav > ul > li .sub-menu > ul li a:hover {
	 color: var(--secondary-text-color);
}
 .nav-toggle {
	 width: 4rem;
	 height: 4rem;
	 display: flex;
	 flex-direction: column;
	 gap: 1rem;
	 float: right;
	 cursor: pointer;
	 overflow: hidden;
	 position: relative;
	 z-index: 3;
}

 .nav-toggle span {
	 width: 100%;
	 height: 2px;
	 background: var(--secondary-bg-color);
	 position: relative;
	 transition: all ease-in-out 0.3s;
	 transform-origin: center center;
}
 .nav-toggle.active span:first-child {
	 transform: rotate(45deg);
	 top: 1.7rem;
}
 .nav-toggle.active span:last-child {
	 transform: rotate(-45deg);
	 top: -0.7rem;
}
 .nav-toggle.active span:nth-child(2) {
	 transform: translateX(100%);
	 transition: all ease-in-out 0.3s;
}
 .banner-section {
	 position: relative;
	 isolation: isolate;
	 margin: 0 0 3rem;
}
 .banner-section .container {
	 position: relative;
}
 .banner-section .banner-image {
	 position: relative;
}
 .banner-section .banner-image::before {
	 content: '';
	 background: rgba(0,0,0,0.35);
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 left: 0;
	 top: 0;
}
 .banner-section .banner-image img {
	 object-fit: cover;
	 width: 100%;
	 height: 100%;
	 object-position: left center;
	 height: 450px;
}


 .banner-section .banner-overlay {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 display: flex;
	 align-items: center;
	 padding: 2vw 5vw;
}

 .banner-section .banner-content {
	 padding: 0 1rem;
	 color: var(--color-text-white);
}
 .banner-section .banner-content h1 {
	 font-size: 3rem;
	 font-weight: 500;
	 line-height: 1.3;
	 margin-bottom: 2rem;
}

 .banner-section .banner-content p {
	 font-family: var(--heading-font);
	 font-size: 1.6rem;
	 line-height: 1.3;
	 margin-bottom: 2rem;
}


 .block-heading {
	 font-family: var(--heading-font);
	 margin-bottom: 2.8rem;
}
 .block-heading h2 {
	 font-size: 2.4rem;
}
 .block-heading h2.text-large {
	 font-size: 3.2rem;
}

 .block-heading p {
	 font-size: 1.6rem;
}

 .box {
	 text-align: center;
}

 .box .box-title {
	 margin-bottom: 2rem;
}
 .box .box-title h3 {
	 color: var(--secondary-text-color);
	 font-weight: bold;
	 font-size: 2.4rem;
}

 .box .box-img-circle {
	 width: 20rem;
	 margin: 2.5rem auto;
	 border-radius: 50%;
	 overflow: hidden;
}


 .box .box-img-circle img {
	 transition: all ease-in-out 0.3s;
}
 .box .box-img-circle:hover img {
	 transform: scale(1.1);
}
 .box .box-content {
	 margin-bottom: 2rem;
}
 .box .box-content p {
	 font-size: 1.6rem;
	 font-weight: 500;
	 color: var(--secondary-text-color);
	 margin: 0;
}

 .nma-section {
	 margin: 4rem 0;
}
 .box-img-rounded {
	 overflow: hidden;
	 border-radius: 1rem;
}
 .box-img-rounded img {
	 width: 100%;
	 transition: all ease-in-out 0.3s;
}
 .box-img-rounded:hover img {
	 transform: scale(1.1);
}
 .content {
	 color: var(--secondary-text-color);
}
 .content p, .content ul, .content ol {
	 font-size: 1.6rem;
	 font-weight: 500;
}

 .content h2 {
	 font-size: 2.4rem;
	 font-weight: 600;
}

 .content h3 {
	 font-size: 2rem;
	 font-weight: 600;
}
 .bespoke-work-section {
	 padding: 4rem 0;
	 background: var(--secondary-bg-light-color);
}
 .supplementai-section {
	 padding: 5rem 0;
}
 .biology-section {
	 padding: 4rem 0;
	 background: var(--primary-bg-light-color);
}
 .physiology-section {
	 padding: 4rem 0;
}
 .challenge-section {
	 padding: 4rem 0;
}
 .ssh-box-content .hhs-icon {
	 max-width: 6.6rem;
	 margin: 2.6rem auto;
}
 .ssh-box-content h3 {
	 font-size: 2.4rem;
	 font-weight: 500;
}

 .ssh-box-content p {
	 font-size: 1.6rem;
	 letter-spacing: -1px;
	 font-weight: 500;
}

 .day-start-block {
	 padding: 4rem 3rem;
}
 .day-start-block h3 {
	 font-size: 2.4rem;
	 font-weight: 600;
}


 .day-start-block p {
	 font-size: 1.6rem;
	 letter-spacing: -1px;
	 font-weight: 500;
}

 .customer-box .customer-content h4 {
	 font-size: 2.6rem;
	 font-weight: 600;
	 line-height: 1.5;
}
 .customer-box .customer-content p {
	 font-size: 2rem;
	 line-height: 1.4;
	 color: var(--text-gray-color);
	 font-weight: 500;
}
 .disclaimer {
	 padding: 5rem 0;
}
 .disclaimer p {
	 color: var(--text-gray-color);
	 font-size: 1.8rem;
}
 .footer-content p {
	 font-size: 1.6rem;
	 color: var(--text-gray-color);
}
 .social-media ul {
	 padding: 0;
	 margin: 0;
	 list-style: none;
}
 .social-media ul li {
	 margin: 0;
}
 .footer-title {
	 margin-bottom: 2rem;
}
 .footer-title h4 {
	 font-family: var(--content-font);
	 color: var(--color-text-black);
	 font-size: 1.6rem;
	 font-weight: 500;
}
 .footer-block ul {
	 padding: 0;
	 margin: 0;
	 list-style: none;
}
 .footer-block ul li {
	 margin: 0;
	 padding: .8rem 0;
}
 .footer-block ul li a {
	 color: var(--text-gray-dark);
	 font-size: 1.6rem;
	 font-weight: 500;
	 display: inline-block;
	 text-decoration: none;
	 text-transform: capitalize;
}
 .footer-block ul li a:hover {
	 color: var(--primary-text-color);
}
 .footer-bottom {
	 padding: 3rem;
}
 .footer-bottom .footer-bottom-links ul {
	 padding: 0;
	 margin: 0;
	 list-style: none;
	 column-gap: 2rem;
	 row-gap: 1rem;
}
 .footer-bottom .footer-bottom-links ul li a {
	 color: var(--text-gray-color);
	 font-size: 1.6rem;
	 text-decoration: none;
}
 .footer-bottom .footer-bottom-links ul li a:hover {
	 color: var(--primary-text-color);
}
 .inner-banner-section {
	 position: relative;
	 isolation: isolate;
	 margin: 0 0 3rem;
}
 .inner-banner-section .container {
	 position: relative;
}
 .inner-banner-section .inner-banner-image {
	 position: relative;
}
 .inner-banner-section .inner-banner-image img {
	 object-fit: cover;
	 width: 100%;
	 height: 100%;
	 object-position: left center;
	 height: 450px;
}
 .inner-banner-section .inner-banner-overlay {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 display: flex;
	 align-items: center;
	 padding: 2vw 5vw;
}

 .inner-banner-section .inner-banner-content {
	 padding: 0 1rem;
	 color: var(--color-text-white);
}
 .inner-banner-section .inner-banner-content h1 {
	 font-size: 3rem;
	 font-weight: 400;
	 line-height: 1.3;
	 margin-bottom: 2rem;
}

.inner-banner-section .inner-banner-content p {
	 font-size: 1.6rem;
	 font-weight: 600;
	 line-height: 1.3;
	 margin-bottom: 2rem;
}

 .inner-section {
	 padding: 2rem 0 6rem;
}
 .inner-block-heading {
	 margin-bottom: 3rem;
}
 .inner-block-heading h2 {
	 font-size: 2.6rem;
}

 .inner-content-block p {
	 font-size: 2.8rem;
	 font-weight: 500;
	 font-family: var(--heading-font);
}
 .inner-content-block p:not(:last-child) {
	 margin-bottom: 3rem;
}
 .fighters-section {
	 padding: 5rem 0;
}
 .inner-content h2 {
	 font-size: 3.2rem;
	 margin-bottom: 2rem;
}
 .inner-content p {
	 font-size: 2.4rem;
	 color: var(--text-gray-color);
}
 .inner-content p:not(:last-child) {
	 margin-bottom: 2.5rem;
}
 .content-block-bold {
	 padding-top: 5rem;
}
 .content-block-bold p {
	 font-weight: bold;
	 font-style: italic;
	 font-size: 2.4rem;
}
 .dynamic-banner-section {
	 padding: 2rem 0 5rem;
}
 .dynamic-block-heading {
	 min-height: 20rem;
	 margin-bottom: 2rem;
}
 .dynamic-block-heading h1 {
	 font-size: 3rem;
	 font-weight: 400;
}
 .dynamic-block-heading p {
	 font-family: var(--heading-font);
	 font-size: 1.6rem;
	 line-height: 1.4;
}

.dynamic-banner-block {
	 background: var(--primary-bg-light-color);
	 position: relative;
}
 .dynamic-banner-img img {
	 width: 100%;
	 height: 300px;
	 object-fit: cover;
	 object-position: center right -10%;
}

 .dynamic-banner-overaly {
	 position: absolute;
	 left: 0;
	 top: 0;
	 width: 100%;
	 height: 100%;
	 display: flex;
	 align-items: center;
	 padding: 1.5rem 2rem;
}

 .dynamic-banner-content h2 {
	 font-weight: 400;
	 font-size: 3.6rem;
}


 .sidebar-block {
	 display: block;
}
 .sidebar-content {
	 margin-bottom: 3rem;
}

 .sidebar-content h2 {
	 font-size: 2rem;
	 font-weight: bold;
}
 .sidebar-list-data ul {
	 padding: 0;
	 margin: 0;
	 list-style: none;
}
 .sidebar-list-data ul li a {
	 color: var(--secondary-text-color);
	 font-weight: 500;
	 font-size: 1.6rem;
	 text-decoration: none;
}

 .sidebar-list-data ul li a:hover {
	 color: var(--primary-text-color);
}
 .data-list-items {
	 display: block;
}
 .data-items-box .data-box-img {
	 overflow: hidden;
	 border-radius: .8rem;
}
 .data-items-box .data-box-img a {
	 display: block;
	 text-align: center;
}
 .data-items-box .data-box-img img {
	 width: auto;
	 object-fit: cover;
	 height: 303px;
	 transition: all ease-in-out 0.2s;
}
 .data-items-box:hover .data-box-img img {
	 transform: scale(1.1);
}
 .data-items-box .data-box-detail {
	 padding: 1.6rem 0;
}

 .data-items-box .data-box-detail h4 {
	 color: var(--color-text-black);
	 font-family: var(--content-font);
	 font-size: 1.8rem;
	 font-weight: 500;
}

 .data-items-box .data-box-detail h4 a {
	 text-decoration: none;
	 color: var(--color-text-black);
}
 .data-items-box .data-box-detail h4 a:hover {
	 color: var(--primary-text-color);
}
 .data-items-box .data-box-detail p {
	 color: var(--text-gray-color);
	 font-weight: 500;
	 font-size: 1.4rem;
}

 .data-items-box .data-box-detail .price span {
	 color: var(--color-text-black);
	 font-weight: 500;
	 font-size: 2rem;
}
 .story-content h2, .story-content h3 {
	 font-weight: 500;
	 margin-bottom: 2rem;
	 font-size: 2.2rem;
}
 .story-content h2:not(:first-child), .story-content h3:not(:first-child) {
	 margin-block: 3rem;
}

 .story-content h4 {
	 font-weight: bold;
	 margin-block: 2rem;
	 font-size: 1.6rem;
}

 .story-content p {
	 font-size: 1.6rem;
	 margin-bottom: 2rem;
	 color: var(--text-gray-color);
}

 .cart-section {
	 padding: 5rem 0;
}
 .cart-wrapper {
	 padding: 3rem 2.4rem;
}
 .cart-head {
	 padding-bottom: .5rem;
	 border-bottom: .1rem solid var(--primary-bg-color);
	 color: var(--secondary-text-color);
}
 .cart-head h1 {
	 font-family: var(--content-font);
	 font-weight: 600;
	 font-size: 2.4rem;
}
 .cart-head .cart-head-price {
	 font-size: 1.6rem;
	 font-weight: 600;
}

 .cart-row {
	 padding: 1.5rem 0;
	 border-bottom: 1px solid var(--primary-bg-color);
}
 .cart-row .cart-pro-img {
	 max-width: 9.3rem;
}
 .cart-row .cart-pro-details {
	 font-size: 1.6rem;
	 color: var(--color-text-black);
	 padding: 1rem 0;
}
 .cart-row .price {
	 font-size: 1.6rem;
	 font-weight: bold;
	 color: var(--color-text-black);
	 padding: 1rem 0;
}
 .cart-row .qty {
	 max-width: 12rem;
	 min-width: 12rem;
	 height: 3rem;
	 margin: 1.6rem 1rem 0 0;
	 border-radius: 30px;
	 background: var(--color-bg-white);
	 border: 1px solid var(--primary-bg-color);
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
}
 .cart-row .qty button {
	 font-size: 1.6rem;
	 font-weight: 600;
	 background: transparent;
	 color: var(--secondary-text-color);
	 outline: none;
	 border: none;
}

 .cart-row .qty input {
	 text-align: center;
	 font-weight: 600;
	 font-size: 1.6rem;
	 color: var(--secondary-text-color);
	 border: none;
	 outline: none;
	 background: transparent;
	 padding: 0;
	 line-height: 1;
	 max-width: 50px;
}

 .cart-row .qty input::-webkit-inner-spin-button, .cart-row .qty input::-webkit-outer-spin-button {
	 -webkit-appearance: none;
	 -moz-appearance: none;
	 appearance: none;
}
 .checkbox-custom p {
	 color: var(--color-text-white);
	 font-size: 1.6rem;
	 font-weight: 500;
}
 .checkbox-label input {
	 position: absolute;
	 opacity: 0;
	 cursor: pointer;
	 height: 0;
	 width: 0;
}
 .checkbox-label input:checked ~ .checkmark::after {
	 display: block;
}
 .checkbox-label .checkmark {
	 width: 2.8rem;
	 height: 2.8rem;
	 border: 1px solid var(--primary-bg-color);
	 background: var(--color-bg-white);
	 position: relative;
	 display: inline-block;
}
 .checkbox-label .checkmark::after {
	 content: '';
	 left: .9rem;
	 top: .4rem;
	 width: .7rem;
	 height: 1.3rem;
	 border: solid var(--primary-bg-color);
	 border-width: 0 2px 2px 0;
	 -webkit-transform: rotate(45deg);
	 -ms-transform: rotate(45deg);
	 transform: rotate(45deg);
	 position: absolute;
	 display: none;
}
 .checkbox-label-big input {
	 position: absolute;
	 opacity: 0;
	 cursor: pointer;
	 height: 0;
	 width: 0;
}
 .checkbox-label-big input:checked ~ .checkmark::after {
	 display: block;
}
 .checkbox-label-big .checkmark {
	 width: 3.8rem;
	 height: 3.8rem;
	 border: 1px solid var(--primary-bg-color);
	 background: var(--color-bg-white);
	 position: relative;
	 display: inline-block;
	 border-radius: var(--rounded-8);
}
 .checkbox-label-big .checkmark::after {
	 content: '';
	 left: 1.4rem;
	 top: .8rem;
	 width: .7rem;
	 height: 1.3rem;
	 border: solid var(--primary-bg-color);
	 border-width: 0 2px 2px 0;
	 -webkit-transform: rotate(45deg);
	 -ms-transform: rotate(45deg);
	 transform: rotate(45deg);
	 position: absolute;
	 display: none;
}
 .cart-summary {
	 padding: 2.5rem;
}
 .cart-summary .cart-subtotal {
	 font-size: 1.6rem;
	 font-weight: bold;
	 color: var(--color-text-white);
}

 .cart-summary .btn--primary:hover {
	 border-color: var(--primary-bg-color);
	 color: var(--primary-text-color);
}
 .account-section {
	 padding: 3rem 0;
}

 .account-head {
	 margin-bottom: 5rem;
}
 .account-head h1, .account-head h2 {
	 font-size: 2.4rem;
	 font-family: var(--content-font);
	 font-weight: 600;
}

 .form-account {
	 padding: 2rem;
}
 .form-account h3 {
	 font-size: 2.4rem;
	 font-family: var(--content-font);
	 font-weight: 600;
	 color: var(--color-text-white);
	 margin-bottom: 2rem;
}

 .form-account .form-group {
	 margin-bottom: 2rem;
}
 .form-account .form-group label {
	 color: var(--color-text-white);
	 font-weight: 500;
	 font-size: 1.4rem;
}

 .form-account .form-group .control .form-control {
	 color: var(--text-gray-color);
	 font-weight: 500;
	 font-size: 1.6rem;
	 border-radius: var(--rounded-8);
	 height: 4.8rem;
	 padding-inline: 1.6rem;
	 box-shadow: none;
	 outline: none;
	 border-color: transparent;
}
 .form-account .form-group .control .form-control:focus {
	 box-shadow: none;
	 outline: none;
	 border-color: transparent;
}
 .form-account .form-group .control .form-control::placeholder {
	 color: var(--text-gray-color);
	 font-weight: 500;
	 font-size: 1.6rem;
}
 .form-account .form-group .control input[type="number" i]::-webkit-inner-spin-button, .form-account .form-group .control input[type="number" i]::-webkit-outer-spin-button {
	 -webkit-appearance: none;
	 -moz-appearance: none;
	 appearance: none;
}
 .form-account .form-group .note-point {
	 font-size: 1.2rem;
	 font-weight: 500;
	 color: var(--color-text-white);
}
 .form-account .form-group .btn--secondary:hover {
	 border-color: var(--secondary-bg-color);
	 color: var(--secondary-text-color);
}
 .booking-supplements-block {
	 padding: 4.8rem 2.4rem;
}


 .booking-supplements-block p {
	 font-size: 1.8rem;
	 font-weight: 600;
}

.sa-customers-section {
	 padding: 4rem 0;
	 margin-top: 4rem;
}
.sa-customers-section .sa-block-heading {
	 margin-bottom: 2.5rem;
}
 .sa-customers-section .sa-block-heading h2 {
	 font-size: 3.2rem;
	 font-weight: 600;
	 color: var(--primary-text-color);
	 font-family: var(--content-font);
}
 .sa-customers-section .sa-customer-img {
	 margin-bottom: 2rem;
}
 .sa-customers-section .sa-customer-detail h4 {
	 font-family: var(--content-font);
	 font-size: 1.8rem;
	 font-weight: bold;
	 color: var(--secondary-text-color);
	 margin-bottom: 1.6rem;
}
 .sa-customers-section .sa-customer-detail p {
	 color: var(--text-gray-color);
	 font-size: 1.5rem;
	 font-weight: 300;
}
 .login-form-account {
	 padding: 5rem 2rem;
	 background: rgba(255,232,205,0.3);
}
 .login-form-account .form {
	 max-width: 57.5rem;
	 margin: auto;
}
 .login-form-account h3 {
	 font-family: var(--content-font);
	 font-weight: 600;
	 font-size: 3.6rem;
	 margin-bottom: 3rem;
}
 .login-form-account .form-group {
	 margin-bottom: 2rem;
}
 .login-form-account .form-group label {
	 color: var(--color-text-black);
	 font-weight: 500;
	 font-size: 1.4rem;
	 margin-bottom: 1rem;
}

 .login-form-account .form-group .control .form-control {
	 color: var(--text-gray-color);
	 font-weight: 500;
	 font-size: 1.6rem;
	 border-radius: var(--rounded-8);
	 border: 1px solid #E0E0E0;
	 height: 4.8rem;
	 padding-inline: 1.6rem;
	 box-shadow: none;
	 outline: none;
}
 .login-form-account .form-group .control .form-control:focus {
	 box-shadow: none;
	 outline: none;
}
 .login-form-account .form-group .control .form-control::placeholder {
	 color: var(--text-gray-color);
	 font-weight: 500;
	 font-size: 1.6rem;
}
 .login-form-account .form-group .forgot-link {
	 padding-bottom: 1rem;
	 border-bottom: 1px solid #000;
	 color: var(--color-text-black);
	 text-decoration: none;
	 font-size: 1.6rem;
	 font-weight: 500;
}
 .login-bottom {
	 padding-top: 4rem;
	 position: relative;
	 padding-bottom: 1rem;
}
 .login-bottom::after {
	 content: '';
	 max-width: 33%;
	 height: 2px;
	 background: var(--secondary-bg-color);
	 position: absolute;
	 left: 0;
	 right: 0;
	 bottom: 0;
	 margin-inline: auto;
}

 .login-bottom h2 {
	 font-size: 2rem;
	 font-weight: 600;
	 font-family: var(--content-font);
}
 .login-bottom h2 a {
	 color: var(--secondary-text-color);
	 text-decoration: none;
}
/* product page --*/
.product-detail-section{
	overflow: hidden;
}
.product-head {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.product-head h1{
	font-size: 2.4rem;
}
.product-head p{
	font-weight: 600;
	font-size: 1.6rem;
}
.pr-detail-box{ 
	position: relative;
}
.pr-img{
	overflow: hidden;
	border-radius: 10px;
	text-align: center;
}
.pr-img img{

	transition: all ease-in-out 0.4s;
}
.pr-img:hover img{
	transform: scale(1.1);
}
.pr-info-detail{
	font-weight: 500;
	color: var(--color-text-black);
	padding: 1.4rem 0;
	font-size: 1.4rem;
}
.pr-content{
	min-height: 10rem;
	font-size: 1.6rem;
}
.pr-info-bottom .prod-extra-info a{
	color: var(--primary-text-color);
	text-decoration: none;
}
.pr-info-bottom .prod-extra-info a:hover{
	text-decoration: underline;
}
.manage-subscription{
	margin-top: 4rem;
}
.manage-sub-block{
	padding: 2rem;
}
.manage-sub-block h2, .manage-sub-block h3 {
	font-weight: 600;
	font-size: 2rem;
	margin-bottom: 2rem;
}
.manage-sub-block  p{
	font-weight: 500;
	font-size: 1.6rem;
}
.subscribe-user{
	width:auto;
	margin-bottom: 1.5rem;
}
.subscribe-img{
	width: 5rem;
	margin-bottom: .5rem;
}
.subscribe-name{
	font-size: 1.6rem;	
}
.subscribe-textarea{
	width: 100%;
	min-height: 10rem;
	border-radius: var(--rounded-8);
	outline: none;
	border: none;
}
/*-- products detail page --*/
.product-detail-page-section{
	padding: 2rem 0;
}
.pro-right-info{
	padding: 0;
}
.product-name{
	margin-bottom: 2rem;
}
.product-name h1{
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 2.4rem;
}
.sub-heading-pro{
	font-size: 1.6rem;
	color: var(--text-gray-color);
}
.product-price{
	font-weight: 500;
	color: var(--color-text-black);
	font-size: 1.6rem;
}
.short-discrition{
	margin-block: 2rem;
	color: var(--text-gray-color);
	font-size: 1.4rem;
}
.product-size-subscribe{
	margin: 1rem 0;
}
.select-input{
	width: 100%;
	background: var(--secondary-bg-color) url(../images/select-arrow.png) center right 1.5rem no-repeat !important;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance: none;
	border: none;
	outline: none;
	padding: 1.4rem;
	padding-right:4.5rem;
	text-align: center;
	color: var(--color-text-white);
	font-size: 1.6rem;
	border-radius: var(--rounded-8);
}
.subscribe-detail-product{
	margin-top: 5rem;
	color: var(--color-text-black);
	font-size: 1.6rem;
}
.subscribe-detail-product h2{
	font-weight: 500;
	font-size: 1.8rem;
}
.info-icon{
	width: 3rem;
	height: 3rem;
}
.info-icon svg{
	width: 100%;
	height: 100%;
	color: var(--text-gray-color);
}
.product-full-description {
	padding: 2rem 0;
}
.product-full-description h2{
	font-size: 2.4rem;
	font-weight: 600;
}
.product-ingredients{
	margin: 2rem 0;
	padding: 2rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color-text-black);
}
.ingredient-breakdown{
	padding: 2rem 0;
	color: var(--color-text-black);
	font-size: 1.6rem;
}
.ingredient-breakdown h3{
	font-weight: bold;
	margin-bottom: 2rem;
	font-size: 1.6rem
}
.ingredient-breakdown ul{
	margin: 0;
}
.ingredient-breakdown ul li{
	padding: .6rem 0;

}
.subscription_dates, 
.product-detail-page-section .bb_dates{
	padding:2rem;
	background:var(--primary-bg-light-color);
	border-radius: var(--rounded-8);
}
.subscription_dates .div_quantity_radio .control-label, 
.product-detail-page-section .bb_dates .div_quantity_radio .control-label{
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--primary-text-color);
}
.subscription_dates .div_quantity_radio .radio-select .radio, 
.product-detail-page-section .bb_dates .div_quantity_radio .radio-select .radio{
	display: flex;
	column-gap: 1.5rem;
    row-gap: 1rem;
    flex-wrap: wrap;
}
.subscription_dates .div_quantity_radio .radio-select .radio label,  
.product-detail-page-section .bb_dates  .div_quantity_radio .radio-select .radio label{
	font-size: 1.6rem;
}
.subscription_dates .div_quantity_radio .radio-select .radio label input[type="radio" i], 
.product-detail-page-section .bb_dates  .div_quantity_radio .radio-select .radio label input[type="radio" i]{ 
	margin-right: 0.5rem;
	accent-color: var(--secondary-bg-color);
 }
  .subscription_dates  .delivery_div.sub_price_div, .product-detail-page-section .bb_dates  .delivery_div.sub_price_div
  {
	margin-top: 2rem;
  }
 .subscription_dates  .delivery_div.sub_price_div .sub_liquid_info, 
 .product-detail-page-section .bb_dates  .delivery_div.sub_price_div .sub_liquid_info {
	font-size: 1.6rem;
 }
  .subscription_dates  .delivery_div.sub_price_div .sub_month_price_info,  
  .product-detail-page-section .bb_dates   .delivery_div.sub_price_div .sub_month_price_info{
	font-size: 1.6rem;
  }
  .subscription_dates  .delivery_div.sub_price_div .sub_prod_content_info{
	font-size: 1.4rem;
  }
  .product-detail-page-section .bb_dates .div_quantity_radio{
	margin-bottom: 2rem;
  }
 .product-detail-page-section .bb_dates .delivery_div{
	font-size: 1.6rem;
  }
  .form-xs-6 .form-group:not(.terms){
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(1, minmax(0, 1fr));
  }
    .form-xs-6 .form-group{
		margin-bottom: 2.4rem;
	}
    .form-xs-6 .form-group:not(.terms) label{
		font-size: 1.6rem;
		font-weight: 600;
		margin-bottom: 1rem;
	}
 .form-xs-6 .form-group:not(.terms) .form-control{
	width: 100%;
	height: 5rem;
	border: none;
	font-size: 1.4rem;
	background: var(--color-bg-white);
	border: 1px solid var(--primary-bg-color);
	box-shadow: none;
 }
  .form-xs-6 .form-group:not(.terms) .form-control:focus{
	box-shadow: none;
	outline: none;
  }
 .ui-datepicker {
	width: 24em !important;
 }
 #ui-datepicker-div, .ui-datepicker{
	font-size: 100% !important;
 }
 .ui-datepicker table, .ui-datepicker .ui-datepicker-title select{
	font-size: 1.4rem !important;
 }
 .form-xs-6 .form-group.terms .form-control{
	width: auto;
 }
 .form-group.terms .control-label{
	font-size: 1.6rem;
 }
 .form-group.terms{
	display: flex;
	align-items: center;
	gap: 1rem;
 }
 .form-group.terms strong{
	color: var(--text-gray-color);
 }
  .form-group.terms strong a{
	color: var(--primary-text-color);
  }
 .form-group.terms input {
	height:24px;
    padding: 0 10px;
	width: 24px;	    
	position: relative;
	accent-color: var(--secondary-bg-color);
	outline: none;
}
 /* .form-group.terms input:checked ~ .control-label::after {
	 display: block;
}
 .form-group.terms .control-label::before {
	content: '';
	 width: 2.8rem;
	 height: 2.8rem;
	 border: 1px solid var(--primary-bg-color);
	 background: var(--color-bg-white);
	 position: relative;
	 display: inline-block;
}
 .form-group.terms .control-label::after {
	 content: '';
	 left: .9rem;
	 top: .4rem;
	 width: .7rem;
	 height: 1.3rem;
	 border: solid var(--primary-bg-color);
	 border-width: 0 2px 2px 0;
	 -webkit-transform: rotate(45deg);
	 -ms-transform: rotate(45deg);
	 transform: rotate(45deg);
	 position: absolute;
	 display: none;
} */
.acc-content{
	min-height: 7.5rem;
	padding: 2.5rem 1.5rem;
	font-weight: 500;
	color: var(--color-text-black);
	font-size: 1.6rem;
}
.my-profile-form{
	max-width: 565px;
	margin: auto;
}
.my-profile-form .form-container .form-group:not(:last-child){
	margin-bottom: 2rem;
}
.my-profile-form label, .user-changed{
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color-text-black);
	margin-bottom: .8rem;
}
.my-profile-form .form-input{
	width: 100%;
	min-height: 4.8rem;
	border: 1px solid #E0E0E0;
	border-radius: var(--rounded-8);
	outline: none;
	padding: 1rem 1rem;
	font-size: 1.6rem;
}
.order-table{
	margin: 1.5rem 0;
}
.order-table thead tr th:first-child{
	border-radius:  var(--rounded-8) 0 0  var(--rounded-8) ;
}
.order-table thead tr th:last-child{
	border-radius: 0 var(--rounded-8)   var(--rounded-8) 0  ;
}
.order-table thead tr th{
	background: var(--primary-bg-color);
	color: var(--color-text-white);
	padding: 1rem 2rem;
	font-size: 1.6rem;
	font-weight: 600;
	border: none;
}
.order-table tbody{
	border-bottom: 1px solid var(--primary-bg-color);
}
.order-table tbody tr td{
	border: none;
	font-size: 1.6rem;
	padding: 1rem 2rem;
}
.odr-pro-img{
	max-width: 80px;
	flex: 80px;
}
.order-pro-detail{
	width: 26rem;
}
.order-history-heading p{
	font-weight: 600;
	font-size: 1.6rem;
}
.order-history-data {
	padding: 2rem;
}
.order-history-block{
	margin-bottom: 1.5rem;
	min-height: 4rem;
}
.order-history-block .order-box-heading{
	font-weight: bold;
	color: var(--color-text-black);
	font-size: 1.4rem;
}
.order-history-block{
	font-size: 1.4rem;
	font-weight: 500;
}
.order-box-img{
	max-width: 8rem;
}
.order-subscription{
	max-width: 58.5rem;
}
.order-subscription h3{
	font-size: 2rem;
	font-weight: 600;
	font-family: var(--content-font);
}
.order-subscription p{
	font-size: 1.4rem;
	margin-bottom: 2rem;
	font-weight: 500;
	color: var(--color-text-black);
}
.cms-content p{
	font-weight: 600;
	font-size: 1.4rem;
	color: var(--color-text-black);
}
.cms-content p a{
	color: var(--color-text-black);
	text-decoration: underline;
}
.cms-content p a:hover{
	text-decoration: none;
}
.cms-content ul li h3{
	font-family: var(--content-font);
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--secondary-text-color);
	position: relative;
	display: inline-flex;
	align-items: center;
	padding-left: 1.5rem;
}
.cms-content ul li h3::before{
	content: '';
	width: .8rem;
	height: .8rem;
	border-radius: 50%;
	background: var(--secondary-bg-color);
	display: inline-block;
	position: absolute;
	left: 0;
}
.cms-content ul{
	margin: 0;
	padding: 0;
}
.cms-content ul li {
	margin-bottom: 1.5rem;
	list-style: none;
	padding: 0;
}
.cms-content ul li p{
	font-size: 1.2rem;
	font-weight: 400;
}
.breadcrumb li{
	font-size: 1.6rem;
	color: var(--text-gray-dark);
}
.breadcrumb li a{
	color: var(--primary-text-color);
	text-decoration: none;
}
.breadcrumb li a:hover{
	color: var(--secondary-text-color);
}
.page-title{
	margin-bottom: 3rem;
	text-align: center;
	
}
.page-title h1{
	font-size: 2.4rem;
	font-weight: 600;
}
.order-billing-box h2{
	font-family: var(--content-font);
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}
.order-billing-box p{
	font-size: 1.4rem;
	font-weight: 500;
}
.icon-check{
	width: 2rem;
}
.edit-add-btn{
	padding: 0.5rem 1rem;
	border-radius: var(--rounded-8);
	background: var(--color-bg-white);
	color: var(--color-text-black);
	display: flex;
	align-items: center;
	position: absolute;
	z-index: 1;
	right: 1.5rem;
	top: 1rem;
	text-decoration: none;
	font-size: 1.4rem;
}
.edit-add-btn:hover{
	color: var(--primary-text-color);
}
.edit-add-btn .icon{
	width: 2rem;
	display: inline-block;
}
.edit-add-btn .icon svg{
	width: 100%;
}
.order-dispatch-data .data-order thead tr th{
	background:var(--primary-bg-light-color);
	padding: 1rem 1.5rem;
	font-size: 1.6rem;
	color: var(--secondary-text-color);
	font-weight: 600;
	border:none;
	text-align: center;
}
.order-dispatch-data .data-order thead tr th:first-child{
	border-radius: 1rem 0 0 1rem ;
	padding-inline: 5rem;
	text-align: left;
}
.order-dispatch-data .data-order thead tr th:last-child{
	border-radius:0 1rem 1rem 0 ;
}
.order-dispatch-data .data-order tbody tr:first-child td{
	border: none;
}
.order-dispatch-data .data-order tbody tr td{
	padding: 1rem 2rem;
	font-weight: 600;
	font-size: 1.8rem;
	color: var(--color-text-black);
	text-align: center;
}
.order-dispatch-data .data-order tfoot tr td{
	padding: 1rem 2rem;
	font-size: 1.8rem;
	color: var(--color-text-black);
}
.order-dispatch-data .data-order tbody tr td .order-pro-img{
	width: 22.6rem;
}
.order-pr-detail{
	max-width: 47rem;
	font-size: 1.4rem;
	padding: 1rem 0;
	font-weight: 400;
	text-align: left;
}
.order-pr-detail h3{
	font-family: var(--content-font);
	margin-bottom: 2rem;
}
.order-pr-detail p strong{
	font-weight: 500;
}
.mini-cart-img{
	max-width:5rem;
}
.mini-cart-block{
	padding: 2rem;
	border-radius: 2rem;
	background: rgba(94, 135, 192, 0.16);
}
.mini-cart-block .mini-cart-list:not(:last-child){
	margin-bottom: 2rem;
}
.mini-cart-detail .mini-cart-title{
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-text-black);
	margin-top: 0;
}
.mini-cart-detail{
	flex: 1;
}
.mini-cart-form{	
	margin-top: 2rem;
}
.mini-cart-form .qty{
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: .5rem;
	overflow: hidden;
}
.mini-cart-form .qty button{
	border: none;
	background: var(--color-bg-white);
	color: #ccc;
	width: 3rem;
	height: 3rem;
	font-size: 2rem;
}
.mini-cart-form .qty input{
	height: 100%;
	width: 5rem;
	height: 3rem;
	text-align: center;
	color: var(--color-text-black);
	font-weight: 500;
	outline: none;
	border: none;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	font-size: 1.4rem;
}
.mini-cart-form .qty input::-webkit-inner-spin-button,
.mini-cart-form .qty input::-webkit-outer-spin-button {
	 -webkit-appearance: none;
	 -moz-appearance: none;
	 appearance: none;
}
.mini-cart-form .price{
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-text-black);
}
.price.ml-auto{
	margin-left: auto;
}
.mini-cart-table table{
	width: 100%;
}
.mini-cart-table table tr td{
	border: none;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--text-gray-color);
	padding-block: 1rem;
}
.mini-cart-table table tr.total td{
	border-top: 1px solid #BDB9B9;
	color: var(--color-text-black);
}
.coupon-block .coupon-form{
	border: 2px solid #ccc;
	border-radius: 1rem;
	padding: .5rem 1.5rem;
}
.coupon-block .coupon-form .field{
	display: flex;
	align-items: center;
}
.coupon-block .coupon-form .field .control{
	flex: 1;
}
.coupon-block .coupon-form .field .control input{
	width: 100%;
	height:4.4rem;
	border: none;
	outline: none;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--text-gray-dark);
	
}
.checkout-privacy-policy{
	background: #F3F3F3;
	border-radius: var(--rounded-8);
	font-size: 1.4rem;
	font-weight: 600;
	color:var(--text-gray-color);
}
.checkout-privacy-policy a{
	color: #007FC9;
	text-decoration: none;
}
.checkout-privacy-policy a:hover{
	text-decoration: underline;
}
.checkout-secure{
	font-size: 1.4rem;
	color: var(--text-gray-color);
}
.payment-method-block{
	width: 100%;
	padding: 2rem;
}
.payment-method-title{
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1.6rem;
}
.custom-radio-check{
	position: relative;
	margin-bottom: 1.5rem;
}
.custom-radio-check label{
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 1rem;
	font-size: 1.6rem;
	color: var(--secondary-text-color);
}
.custom-radio-check label::before{
	content: '';
	display: inline-block;
	width: 2.4rem;
	height: 2.4rem;
	border: 1px solid var(--primary-bg-color);
	background: var(--color-bg-white);
}
.custom-radio-check label::after{
	content: '';
	position: absolute;
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid var(--primary-bg-color);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: none;

}
.custom-radio-check input[type="radio" i] {
	display: none;
}
.custom-radio-check input[type="radio" i]:checked ~ label::after{
	display: block;
}
.checkout-form label{
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.checkout-form  .control input{
	width: 100%;
	height: 4.4rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	outline: none;
	padding: 1rem 2rem;
	font-size: 1.6rem;
	color: var(--text-gray-color);
}
.select-input-custom{
	width: 100%;
	height: 4.4rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	outline: none;
	padding: 1rem 2rem;
	font-size: 1.6rem;
	color: var(--text-gray-color);
}
.textarea-address{
	width: 100%;
	height: 7rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	outline: none;
	padding: 1rem 2rem;
	font-size: 1.6rem;
	color: var(--text-gray-color);
}
.contact-head{
	margin-bottom: 3rem;
}
.contact-head h1{
	font-size: 2.4rem;
}
.contact-head p{
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--text-gray-color);
}
.card-box{
	padding: 2rem;
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
	border-radius: var(--rounded-8);
}
.customer-icon img{
	max-height: 5rem;
}
.customer-support-data{
	border-top: 3px solid var(--primary-bg-color);
	border-bottom: 3px solid var(--secondary-bg-color);
	padding: 2rem 0;
}
.customer-data-content h2{
	font-size: 2rem;
	font-weight: 600;
	font-family: var(--content-font);
}
.contact-form{
	margin: 5rem 0;
}
.contact-form-heading h2{
	font-size: 2.2rem;
	line-height: 1.3;
}
.contact-form label{
	font-size: 1.6rem;
	color: #454545;
	margin-bottom: .5rem;
}
.contact-form input.form-control{
	height: 5rem;
	font-size: 1.6rem;
	box-shadow: none;
	outline: none;
}
.contact-form .form-textarea{
	height: 15rem;
	font-size: 1.6rem;
	box-shadow: none;
	outline: none;
}
.whatsup-section{
	padding: 5rem 0;
	background: #f5f5f5;
}
.whatsup-icon{
	max-width: 5rem;
}
.whatsup-heading{
	font-weight: 500;
	font-size: 2.4rem;
	flex: 1;
}
.whatsup-section .input-group  .input-group-text{
	height: 100%;
	font-size: 1.6rem;
	padding: .5rem 1.5rem;
	background: #fff;
}
.whatsup-section .input-group .form-control{
	height: 5rem;
	outline: none;
	box-shadow: none;
	font-size: 1.6rem;
}
.whatsup-section .form-check{
	max-width: 50rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
}
.whatsup-section  .form-check .form-check-input{
	margin-left: 0;
	margin-right: 1rem;
	height: 2rem;
	width: 2rem;
	accent-color: var(--primary-bg-color) !important;
}
.whatsup-section  .form-check-label{
	font-size: 1.6rem;
}
.contact-block-section{
	padding: 4rem 0;
}
.contact-block-content{
	font-size: 2rem;
	color: var(--text-gray-color);
}
 @media screen and (min-width: 540px) {
	 .banner-section .banner-image img {
		 height: 350px;
	}
}
 @media screen and (min-width: 575px) {
	
	.box .box-img-circle {
		 width: 24rem;
	}
	.inner-banner-section .inner-banner-image img {
		 height: 350px;
	}
	 .dynamic-block-heading h1 {
		 font-size: 3.6rem;
	}
	 .dynamic-block-heading p {
		 font-size: 2rem;
	}
	 .dynamic-banner-content h2 {
		 font-size: 4rem;
	}
	 .sidebar-content h2 {
		 font-size: 2.4rem;
	}
	.product-head h1{
		font-size: 2.8rem;
	}
	.product-head p{
		font-size: 1.6rem;
	}
	.form-xs-6 .form-group:not(.terms){
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
 @media screen and (min-width: 768px) {
	.banner-section .banner-image img {
		 height: 500px;
	}
	.banner-section .banner-overlay {
		 padding: 0 6.5rem;
	}
	.banner-section .banner-content p br {
		 display: none;
	}
	.content p br {
		 display: none;
	}
	.content h2 {
		 font-size: 3rem;
	}
	.content h3 {
		 font-size: 2.4rem;
	}
	.ssh-box-content h3 {
		 font-size: 3rem;
	}
	.ssh-box-content p {
		 font-size: 2rem;
	}
	.day-start-block h3 {
		 font-size: 3rem;
	}
	.day-start-block p {
		 font-size: 2rem;
	}
	.inner-banner-section .inner-banner-image img {
		 height: 500px;
	}
	.inner-banner-section .inner-banner-overlay {
		 padding: 0 6.5rem;
	}
	.inner-banner-section .inner-banner-content p br {
		 display: none;
	}
	.inner-block-heading h2 {
		 font-size: 3.4rem;
	}
	 .dynamic-banner-img img {
		 height: 300px;
	}
     .story-content h4 {
		 font-size: 2rem;
	}
     .story-content p {
		 font-size: 2rem;
	}
     .cart-head h1 {
		 font-size: 2.8rem;
	}
    .cart-head .cart-head-price {
    font-size: 2rem;
	}
     .cart-row .qty button {
		 font-size: 2rem;
	}
     .cart-row .qty input {
		 font-size: 2rem;
	}
     .cart-summary .cart-subtotal {
		 font-size: 2rem;
	}
     .account-head h1, .account-head h2 {
		 font-size: 3rem;
	}
     .form-account h3 {
		 font-size: 2.8rem;
	}
     .form-account .form-group label {
		 font-size: 1.6rem;
	}
    .booking-supplements-block p {
        font-size: 2rem;
	}
    .sa-customers-section {
		 margin-top: 5rem;
	}
    .login-form-account .form-group label {
		 font-size: 1.6rem;
	}
    .login-bottom::after {
		 width: 70%;
	}
	 .login-bottom h2 {
		 font-size: 2.4rem;
	}
	.product-head h1{
		font-size: 3rem;
	}
	.product-head p{
		font-size: 1.8rem;
	}
	.pr-info-detail{
		padding: 1.5rem 0;
		/* font-size: 1.6rem; */
	}
    /* .pr-content{
		min-height: 12rem;
	} */
	.manage-subscription{
		margin-top: 5rem;
	}
	.manage-sub-block h2, .manage-sub-block h3{
		font-size: 2.4rem;
	}
	/* .manage-sub-block p{
		font-size: 1.8rem;
	} */
	.manage-sub-block{
		padding: 3rem;
	}
	.subscribe-img{
		width: 6rem;
	}
	.subscribe-name{
		font-size: 1.8rem;	
	}
	.subscribe-textarea{
		min-height: 12rem;
	}
	
	.product-detail-page-section{
		padding: 2rem 0;
	}
	.product-name h1{
		font-size: 2.8rem;
		margin-bottom: 2rem;
	}
	.sub-heading-pro, .product-price, .select-input{
		font-size: 1.8rem;
	}
	.short-discrition, .subscribe-detail-product h2{
		font-size: 1.8rem;
	}
	.product-full-description{
		padding: 2rem 0;
	}
	.product-full-description  h2{
		font-size: 2.8rem;
	}
	.product-full-description ,.product-ingredients, .ingredient-breakdown, .ingredient-breakdown h3{
		font-size: 1.6rem;
	}
	.acc-content{
		font-size: 1.8rem;
	}
	.order-history-data{
		padding: 3rem;
	}
	.order-history-heading p{
		font-size: 2rem;
	}
	.order-history-block .order-box-heading, 
	.order-history-block {
		font-size: 1.8rem;
	}
	.order-box-img{
		max-width: 13rem;
	}
	.order-history-block{
		margin-bottom: 2rem;
		min-height: 5em;
	}
	.order-subscription{
		max-width: 42rem;
	}
	.order-subscription h3{
		font-size: 2.4rem;
	}
	.order-subscription p{
		font-size: 1.8rem;
	}
	.cms-content p{
		font-size: 1.6rem;
	}
	.order-billing-box h2{
		font-size: 2.4rem;
	}
	.order-billing-box p{
		font-size: 1.8rem;
	}
	.order-pr-detail{
		font-size: 1.8rem;
	}
	.order-pr-detail h3{
		margin-bottom: 3rem;
	}
	.icon-check{
		width: 2.4rem;
	}
	.edit-add-btn{
		font-size: 1.6rem;
		padding: 1rem 2rem;
		top: 2rem;		
	}
	.edit-add-btn .icon{
		width: 2.2rem;
	}
	
}

 @media screen and (min-width: 992px) {
	.logo img {
		 max-width: 100%;
	}
	
	 nav > ul > li.parent > a::after {
		 top: 50%;
		 transform: translateY(-50%);
	}
	 nav > ul > li:hover .sub-menu {
		 display: block;
	}
	nav > ul > li .sub-menu {
		 min-width: 300px;
		 background: rgba(255,255,255,0.75);
		 border-radius: 0 0 .5rem .5rem;
		 box-shadow: 0 5px 10px rgba(0,0,0,0.15);
		 padding-block: 1rem;
		 position: absolute;
	}
	nav > ul > li .sub-menu > ul li a {
		 color: var(--primary-text-color);
	}
	 .nav-toggle {
		 display: none;
	}
	.banner-section .banner-content p {
		 font-size: 2rem;
	}
	.block-heading h2 {
		 font-size: 3rem;
	}
	.block-heading h2.text-large {
		 font-size: 4rem;
	}
	.block-heading p {
		 font-size: 2rem;
	}
	 .box {
		 display: flex;
		 flex-direction: column;
		 min-height: 100%;
	}
	.box .box-title h3 {
		 font-size: 3rem;
	}
	.box .box-img-circle {
		 max-width: 30rem;
	}
	.content h2 {
		 font-size: 3.6rem;
	}
	.content h3 {
		 font-size: 3rem;
	}
	.ssh-box-content h3 {
		 font-size: 3.6rem;
	}
	.ssh-box-content p {
		 font-size: 2.4rem;
	}
	.day-start-block h3 {
		 font-size: 3.6rem;
	}
	.day-start-block p {
		 font-size: 2.4rem;
	}
	.inner-banner-section .inner-banner-content p {
		 font-size: 2rem;
	}
	.inner-block-heading h2 {
		 font-size: 4rem;
	}
	.dynamic-block-heading h1 {
		font-size: 4rem;
	}
	 .dynamic-block-heading p {
		 font-size: 2.4rem;
	}
	.dynamic-banner-content h2 {
		font-size: 4.8rem;
	}
	 .sidebar-content h2 {
		 font-size: 2.8rem;
	}
	 .sidebar-list-data ul li a {
		 font-size: 2.4rem;
	}
	 .data-items-box .data-box-detail {
		 padding: 2rem 0;
	}
	 .data-items-box .data-box-detail h4 {
		 font-size: 2rem;
	}
     .data-items-box .data-box-detail p {
		 font-size: 1.6rem;
	}
     .story-content h2, .story-content h3 {
		 font-size: 2.6rem;
	}
     .account-section {
		 padding: 5rem 0;
	}
     .account-head h1, .account-head h2 {
		 font-size: 3.6rem;
	}
    .form-account h3 {
        font-size: 3.2rem;
	}
    .sa-customers-section {
        margin-top: 10rem;
        padding: 5rem 0;
    }
	 .login-bottom h2 {
		 font-size: 2.8rem;
	}
	.product-head h1{
		font-size: 3.6rem;
	}
	.product-head p{
		font-size: 2rem;
	}
	.pr-info-detail{
		padding: 2rem 0;
		/* font-size: 2rem; */
	}
    /* .pr-content{
		min-height: 15rem;
	} */
	.manage-subscription{
		margin-top: 7rem;
	}
	.manage-sub-block h2, .manage-sub-block h3{
		font-size: 2.8rem;
	}
	/* .manage-sub-block p{
		font-size: 2rem;
	} */
	.manage-sub-block{
		padding: 4rem;
	}
	.subscribe-img{
		width: 6rem;
	}
	.subscribe-name{
		font-size: 1.8rem;	
	}
	.subscribe-textarea{
		min-height: 13rem;
	}

	.product-detail-page-section{
		padding: 3rem 0;
	}
	.product-name h1{
		font-size: 3.4rem;
		margin-bottom: 2rem;
	}
	.sub-heading-pro, .product-price, .select-input{
		font-size: 2rem;
	}
	.short-discrition, .subscribe-detail-product h2{
		font-size: 2rem;
	}
	.product-full-description{
		padding: 3rem 0;
	}
	.product-full-description  h2{
		font-size: 3.4rem;
	}
	.product-full-description ,.product-ingredients, .ingredient-breakdown, .ingredient-breakdown h3{
		font-size: 1.8rem;
	}
	.acc-content{
		font-size: 2rem;
	}
	.order-history-data{
		padding: 4rem;
	}
	.order-history-heading p{
		font-size: 2.2rem;
	}
	.order-history-block .order-box-heading, 
	.order-history-block {
		font-size: 1.8rem;
	}
	.order-box-img{
		max-width: 15rem;
	}
	.order-history-block{
		margin-bottom: 2rem;
		min-height: 5em;
	}
	.order-subscription{
		max-width: 35rem;
	}
	.order-subscription h3{
		font-size: 2.6rem;
	}
	.order-subscription p{
		font-size: 1.8rem;
	}
	.cms-content p{
		font-size: 2.2rem;
	}
	.order-billing-box h2{
		font-size: 2.4rem;
	}
	.order-billing-box p{
		font-size: 1.8rem;
	}
	.order-pr-detail{
		font-size: 1.8rem;
	}
	.order-pr-detail h3{
		margin-bottom: 3rem;
	}
	.icon-check{
		width: 2.4rem;
	}
	.edit-add-btn{
		font-size: 1.6rem;
		padding: 1rem 2rem;
		top: 2rem;		
	}
	.edit-add-btn .icon{
		width: 2.2rem;
	}
	.order-dispatch-data .data-order thead tr th{
		font-size: 2rem;
	}
	.order-dispatch-data .data-order tbody tr td .order-pro-img{
		width: 14rem;
	}
	.order-pr-detail{
		max-width:25rem;
		font-size: 1.6rem;
	}
	.order-dispatch-data .data-order tbody tr td{
		font-size: 1.8rem;
	}
	.order-dispatch-data .data-order tfoot tr td{
		font-size: 2rem;
	}
	.mini-cart-img{
		max-width: 7rem;
	}
	.mini-cart-detail .mini-cart-title{
		font-size: 1.6rem;
		margin-top: 1rem;
	}
	.mini-cart-form .qty button{
		width: 4rem;
		height: 4rem;
	}
	.mini-cart-form .qty input{
		width: 6rem;
		height: 4rem;
		font-size: 1.6rem;
	}
	.mini-cart-form .price{
		font-size: 1.8rem;
	}
	.mini-cart-table table tr td{
		font-size: 1.8rem;
	}
	.coupon-block .coupon-form .field .control input{
		font-size: 1.6rem;
	}
	.checkout-privacy-policy, .checkout-secure{
		font-size: 1.6rem;
	}
}
 @media screen and (min-width: 1024px) {
	 .dynamic-banner-img img {
		 height: 400px;
	}
	.order-aagin-btn{
		position: relative;
		margin-top: -3rem;
		top:-4rem;
	}
}
 @media screen and (min-width: 1200px) {
	 .head-top-bar {
		 font-size: 1.6rem;
	}
	.banner-section .banner-image img {
		 height: auto;
	}
	.banner-section .banner-content h1 {
		 font-size: 5rem;
	}
	.banner-section .banner-content p {
		 font-size: 3.2rem;
	}
	.block-heading h2 {
		 font-size: 3.6rem;
	}
	.block-heading h2.text-large {
		 font-size: 4.8rem;
	}
	.block-heading p {
		 font-size: 3.2rem;
	}
	.box .box-title h3 {
		 font-size: 3.6rem;
	}
	.box .box-content p {
		 font-size: 2rem;
	}
	.content p, .content ul, .content ol {
		 font-size: 2rem;
	}
	.content p, .content ul, .content ol {
		 font-size: 2.4rem;
	}
	.inner-banner-section .inner-banner-image img {
		 height: auto;
	}
	.inner-banner-section .inner-banner-content h1 {
		 font-size: 5.5rem;
	}
	 .inner-banner-section .inner-banner-content p {
		 font-size: 2.4rem;
	}
	.inner-block-heading h2 {
		 font-size: 4.5rem;
	}
	.dynamic-block-heading h1 {
		font-size: 4.5rem;
	}
	 .dynamic-block-heading p {
		 font-size: 2.8rem;
	}
	 .dynamic-banner-overaly {
		 padding: 2rem 6rem;
	}
	 .dynamic-banner-content h2 {
		 font-size: 5.5rem;
	}
	 .sidebar-content {
		 margin-bottom: 5rem;
	}
	 .sidebar-content h2 {
		 font-size: 3.2rem;
	}
	 .sidebar-list-data ul li a {
		 font-size: 2.8rem;
	}
	.data-items-box .data-box-detail {
		 padding: 2.4rem 0;
	}
	.data-items-box .data-box-detail h4 {
		 font-size: 2.4rem;
	}
     .data-items-box .data-box-detail p {
		 font-size: 2rem;
	}
     .story-content h2, .story-content h3 {
		 font-size: 3.2rem;
		 margin-bottom: 3rem;
	}
     .story-content h4 {
		 font-size: 2.4rem;
	}
     .story-content p {
		 font-size: 2.4rem;
		 margin-bottom: 3rem;
	}
    .cart-head h1 {
        font-size: 3.2rem;
	}
     .cart-head .cart-head-price {
		 font-size: 2.4rem;
	}
     .cart-row .qty button {
		 font-size: 2.4rem;
	}
     .cart-row .qty input {
		 font-size: 2.4rem;
	}
     .cart-summary .cart-subtotal {
		 font-size: 2.4rem;
	}
     .booking-supplements-block {
		 padding: 4rem 3rem;
	}
    .booking-supplements-block {
		 padding: 4.5rem 8.5rem;
	}
     .sa-customers-section {
		 margin-top: 15rem;
	}
	 .login-bottom h2 {
		 font-size: 3.2rem;
	}
	.product-head h1{
		font-size: 3.6rem;
	}
	.product-head p{
		font-size: 2rem;
	}
	.pr-info-detail{
		padding: 2.4rem 0;
		font-size: 1.6rem;
	}
    /* .pr-content{
		min-height: 17rem;
	} */
	.manage-subscription{
		margin-top: 10rem;
	}
	.manage-sub-block h2, .manage-sub-block h3{
		font-size: 3.2rem;
	}
	/* .manage-sub-block p{
		font-size: 2.4rem;
	} */
	.subscribe-img{
		width: 8rem;
	}
	.subscribe-name{
		font-size: 2rem;	
	}
	.subscribe-textarea{
		min-height: 16.5rem;
	}

	.product-detail-page-section{
		padding: 4rem 0;
	}
	.product-name h1{
		font-size: 4rem;
		margin-bottom: 2rem;
	}
	.sub-heading-pro, .product-price, .select-input{
		font-size: 2.4rem;
	}
	.short-discrition, .subscribe-detail-product h2{
		font-size: 2rem;
	}
	.product-full-description{
		padding: 4rem 0;
	}
	.product-full-description  h2{
		font-size: 4rem;
	}
	.product-full-description ,.product-ingredients, .ingredient-breakdown, .ingredient-breakdown h3{
		font-size: 2rem;
	}
	.acc-content{
		font-size: 2.4rem;
	}
	.order-history-data{
		padding: 5rem;
	}
	.order-history-heading p{
		font-size: 2.4rem;
	}
	.order-history-block .order-box-heading, 
	.order-history-block {
		font-size: 2rem;
	}
	.order-box-img{
		max-width: 19.5rem;
	}
	.order-history-block{
		margin-bottom: 2rem;
		min-height: 6em;
	}
	.order-subscription{
		max-width: 42.5rem;
	}
	.order-subscription h3{
		font-size: 3rem;
	}
	.order-subscription p{
		font-size: 2.2rem;
	}
	.cms-content p{
		font-size: 2.6rem;
	}
	.page-title h1{
		font-size: 3.6rem;
	}
	.cms-content ul li h3{
		font-size: 2.3rem;
	}
	.cms-content ul li p{
		font-size: 1.8rem;
	}
	.order-billing-box h2{
		font-size: 2.4rem;
	}
	.order-billing-box p{
		font-size: 1.8rem;
	}
	.order-pr-detail{
		font-size: 1.8rem;
	}
	.order-pr-detail h3{
		margin-bottom: 3rem;
	}
	.order-billing-box h2{
		font-size: 2.4rem;
	}
	.order-billing-box p{
		margin: 0;
		font-size: 1.8rem;
	}
	.icon-check{
		width: 2.4rem;
	}
	.edit-add-btn{
		font-size: 1.6rem;
		padding: 1rem 2rem;
		top: 2rem;		
	}
	.edit-add-btn .icon{
		width: 2.4rem;
	}
	.order-dispatch-data .data-order thead tr th{
		font-size: 2.4rem;
	}
	.order-dispatch-data .data-order tbody tr td .order-pro-img{
		width: 22.6rem
	}
	.order-pr-detail{
		max-width: 47rem;
		font-size: 1.8rem;
	}
	.order-dispatch-data .data-order tbody tr td{
		font-size: 2.2rem;
	}
	.order-dispatch-data .data-order tfoot tr td{
		font-size: 2.4rem;
	}
	.mini-cart-img{
		max-width: 8rem;
	}
	.mini-cart-detail .mini-cart-title{
		font-size: 1.6rem;
		margin-top: 1rem;
	}
	.mini-cart-form .qty button{
		width: 4rem;
		height: 4rem;
	}
	.mini-cart-form .qty input{
		width: 6rem;
		height: 4rem;
		font-size: 1.6rem;
	}
	.mini-cart-form .price{
		font-size: 1.8rem;
	}
	.mini-cart-table table tr td{
		font-size: 1.8rem;
	}
	.coupon-block .coupon-form .field .control input{
		font-size: 1.6rem;
	}
	.checkout-privacy-policy, .checkout-secure{
		font-size: 1.6rem;
	}
	.contact-head h1{
		font-size: 3.6rem;
	}
	.contact-head p{
		font-size: 2rem;
	
	}
	.customer-support-data{
		min-height: 20rem;
	}
	.customer-data-content h2{
		font-size: 3rem;
	}
	.customer-data-content p{
		font-size: 2rem;
	}
	.customer-icon img{
		max-height: 12rem;
	}
	.contact-form label{
		font-size: 2rem;
	}
	.contact-form-heading h2{
		font-size: 3.6rem;
	}
	.whatsup-icon{
		max-width: 7.5rem;
	}
	.whatsup-heading{
		font-size: 3.4rem;
		line-height: 1.3;
	}
	.contact-block-content{
		font-size: 3rem;
	}
}
@media screen and (min-width: 1300px) {
	 .dynamic-banner-img img {
		 height: auto;
	}
}
 @media screen and (max-width: 992px) {
	nav {
		 position: fixed;
		 top: 0;
		 left: -100%;
		 background: var(--color-bg-white);
		 width: 100%;
		 z-index: 2;
		 height: 100vh;
		 padding: 1.5rem;
		 transition: all ease-in-out 0.4s;
		 padding-top: 20%;
	}
	 .box {
		 margin-bottom: 4rem;
	}
	.order-dispatch-data table thead{
		display: none;
	}
	.order-dispatch-data table tbody tr{
		display: grid;
		grid-template-columns: repeat(7, minmax(0, 1fr));
	}
	.order-dispatch-data table tbody tr td{
		position: relative;
	}
	.order-dispatch-data table tbody tr td:first-child{
		grid-column: span 7 / span 7 !important;
	}
	.order-dispatch-data table tbody tr td:not(:nth-child(2)){
		grid-column: span 2 / span 2;
	}
	.order-dispatch-data table tfoot tr{
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	.order-dispatch-data table tfoot tr td:first-child{
		grid-column: span 4 / span 4;
	}
	.order-dispatch-data .data-order thead tr th{
		font-size: 1.8rem;
	}
	.order-dispatch-data .data-order tbody tr td .order-pro-img{
		width: 10rem;
	}
	.order-pr-detail{
		flex: 1;
		font-size: 1.6rem;
		max-width: initial;
	}
	.order-dispatch-data .data-order tbody tr td{
		font-size: 1.6rem;
	}
	.order-dispatch-data .data-order tbody tr td:not(:first-child)::before{
		content: attr(data-label);
		display: block;
		text-align: center;
		font-size: 1.6rem;
		color: var(--text-gray-color);
	}
	.order-dispatch-data .data-order tfoot tr td{
		font-size: 1.8rem;
	}
}
 @media screen and (max-width: 768px) {
	 .login-bottom h2 a {
		 display: block;
	}
	 .container {
		 padding-inline: 1.5rem;
	}
	.order-table table thead{
		display: none;
	}
	.order-table table tbody tr{
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	.order-table table tbody tr td{
		position: relative;
	}
	.order-table table tbody tr:not(:first-child) td:first-child{
		display: none;
	}
	.order-table table tbody tr:not(:first-child) td:nth-child(2){
		grid-column: span 3 / span 3;
	}
	.order-table table tbody tr:first-child td:nth-child(1){
		display: block;
		width: 100%;
		grid-column: span 2 / span 2;
		background: var(--primary-bg-color);
		color: var(--color-text-white);
		font-weight: 600;
	}
	.order-table table tbody tr:first-child td:nth-child(2){
		display: block;
		width: 100%;
		grid-column: span 3 / span 3;
		background: var(--primary-bg-color);
		color: var(--color-text-white);
		font-weight: 600;
	}
	.order-table table tbody tr:first-child td:nth-child(3){
		grid-column: span 3 / span 3;
	}
	.order-table table tbody tr td:last-child{
		grid-column: span 5 / span 5;
	}
	.order-table table tbody tr:first-child td:nth-child(2)::before{
		content: attr(data-label)': ' ;
		display: inline-block;
		font-size: 1.6rem;
		font-weight: 600;
	}
	.order-table tbody tr td{
		font-size: 1.4rem;
		padding: 1rem;
	}

	.order-dispatch-data .data-order tbody tr td .order-pro-img{
		width: 7rem;
	}
	.data-items-box .data-box-img img{
		height: auto;
		max-height:20rem;
	}
	.data-items-box .data-box-detail{
		text-align: center;
	}
	
}
 @media screen and (max-width: 575px) {
	 nav {
		 padding-top: 40%;
	}
	.order-dispatch-data .data-order tbody tr td .order-pro-img{
		width: 5rem;
	}
	.order-dispatch-data table tfoot tr{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.order-dispatch-data table tfoot tr td:first-child{
		grid-column: span 2 / span 2;
	}
}
 