@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap');



/*** GENERIC CSS ***/
html,
body {
    overflow-x: hidden;
}

body {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #555555;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #555555;
}

a:hover {
    text-decoration: none;
    color: #24a9e2;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #007fff;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

h1 {
    font-size: 54px;
    line-height: 1.5;
}

h2 {
    font-size: 48px;
    line-height: 1.4;
}

h3 {
    font-size: 35px;
    line-height: 1.5;
}

h4 {
    font-size: 27px;
    line-height: 1.5;
}

h5 {
    font-size: 24px;
    line-height: 1.5;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

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

.visible-xs {
    display: none;
}

.btn-default {
    background: #09b666;
    padding: 10px 35px;
    color: #fff;
    border-radius: 0px;
    min-width: 200px;
    text-transform: uppercase;
}

.btn-default:hover {
    color: #fff;
    background: #134db8;
}

.underlined {
    position: relative;
    display: inline-block;
}

.underlined::after {
    content: '';
    width: 100px;
    background: #134db8;
    height: 4px;
    position: absolute;
    top: 100%;
    left: 0%;
}

ul.list li {
    margin: 0px 0px 15px 0px;
}

/*** PRELOADER ***/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 99999;
}

.preloader .lds-ripple {
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
    position: absolute;
    border: 2px solid #134db8;
    opacity: 1;
    border-radius: 0;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

.img-rounded {
    border-radius: 15px;
}

.hover-animate {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.hover-animate:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

/*** TOPBAR ***/
.topbar {
    padding: 0px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
}

.topbar ul,
.topbar ul li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.topbar ul li {
    display: inline-block;
    border-right: 1px solid #d2d0d0;
}

.topbar ul li:first-child {
    border-left: 1px solid #d2d0d0;
}

.topbar ul li a {
    color: #666;
    padding: 0px 15px;
    display: block;
    font-size: 18px;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 40px;
}

.topbar ul li:hover a,
.topbar ul li:hover a i {
    color: #007fff;
}

.topbar ul.right-top li a {
    font-size: 14px;
    color: #666;
}

.topbar i {
    color: #666;
    font-size: 18px;
}

.topbar .right-top i {
    margin-right: 5px;
    color: #007fff;
}

.header {
    padding: 15px 0px;
    background-color: #f8f8f8;
}

.header .nav-link {
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 24px;
    display: block;
    color: #333 !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
}

.header .nav-item:hover a {
    color: #007fff !important;
}

.header span.cart-number {
    display: inline-block;
    font-size: 12px;
    height: 16px;
    padding: 0 8px;
    line-height: 16px;
    text-align: center;
    color: #fff;
    background-color: #ff6666;
    border-radius: 16px;
}

.header span.title-cart {
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 24px;
    display: block;
    color: #333 !important;
}

.header li:last-child {
    padding-left: 60px;
}


/** FOOTER ***/
.footer {
    padding-top: 80px;
    padding-bottom: 60px;
}

.footer h6 {
    color: #fff;
    margin-bottom: 40px;
    font-family: 'Raleway', sans-serif;
}

.footer p {
    color: #e8e8e8;
}

.media .fa {
    font-size: 24px;
    color: #007fff;
    margin-top: 3px;
}

.footer .media p,
.footer .media a {
    font-size: 15px;
    color: #e8e8e8;
}

.footer ul {
    padding-left: 0px;
}

.footer ul li {
    display: inline-block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(201, 201, 201, 0.2);
    padding: 2px 0px;
    padding-left: 25px;
    margin-bottom: 15px;
}

.footer ul li a {
    color: #e8e8e8;
    font-size: 16px;
}

.footer ul li:hover a {
    color: #007fff;
}

.footer ul li:before {
    content: "\f192";
    font-family: Fontawesome;
    padding-right: 10px;
    position: absolute;
    top: 5px;
    left: 0px;
    color: #007fff;
    display: table-cell;
    width: 1.28571429em;
    text-align: left;
}

.footer .form-group label {
    font-size: 14px;
    color: #e8e8e8;
}

.footer .form-control {
    background: none;
}

.footer button {
    background: #007fff;
    border-radius: 30px !important;
    padding: 0px 26px;
    font-size: 14px;
    line-height: 36px !important;
}

.footer hr {
    border-top: 1px solid rgba(201, 201, 201, 0.2);
}

.footer .copyright p a {
    color: #007fff;
    font-size: 14px;
    text-decoration: none;
}

.footer .copyright p {
    color: #e8e8e8;
}

.footer .copyright p span {
    color: #e8e8e8;
    padding: 0px 2px;
}

.footer .copyright ul li {
    list-style: none;
    display: inline-block;
    width: auto;
    padding: 0px;
    border: none;
}

.footer .copyright ul li a {
    padding: 0 3px;
    font-size: 13px;
    color: #e8e8e8;
    position: relative;
}

.footer .copyright ul li:before {
    display: none;
}

.footer .copyright ul li a:after {
    content: '';
    right: -3px;
    height: 12px;
    width: 1px;
    position: absolute;
    right: -2px;
    top: 4px;
    background: rgba(120, 120, 120, 0.4);
}


.footer .copyright ul li:last-child a:after {
    display: none;
}


/*** BANNER ***/
.banner {
    padding: 100px 0px;
}

.banner h1 {
    color: #fff;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb a {
    color: #fff;
    padding: 0px 10px 0px 0px;
}

.breadcrumb>li+li:before {
    content: "\f101";
    font-family: Fontawesome;
    color: #fff;
    margin-right: 10px;
}

/*** CONTACT ***/
.contact {
    padding: 75px 0px 0px 0px;
}

.contact .card {
    padding: 20px;
}

.contact .card:hover {
    background: #007fff;
}

.contact .card:hover .bx,
.contact .card:hover h5,
.contact .card:hover p,
.contact .card:hover a {
    color: #fff;
}

.contact .card .bx {
    font-size: 60px;
}

.contact input {
    margin-bottom: 15px;
}

.contact textarea {
    height: 100px;
    resize: none;
    margin-bottom: 15px;
}

.contact input[type="submit"] {
    background: #007fff;
    border-radius: 30px !important;
    padding: 0px 26px;
    font-size: 14px;
    line-height: 36px !important;
    border: 0px;
    color: #fff;
}

.contact input[type="submit"]:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}


/*** TESTIMONIALS ***/
.testi-video {
    padding: 75px 0px;
}

.testi-video .card h5 {
    font-size: 18px;
    text-transform: capitalize;
}

.testi-video .card h5 span {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.testi-video .card .bx {
    color: #007fff;
    font-size: 36px;
}

.testi-video h3 {
    color: #000;
    font-size: 30px;
    margin-bottom: 30px;
}

.testimonials {
    padding: 75px 0px;
}

.testimonials .card {
    background: #fff;
    border-radius: 10px;
}

.testimonials .card figure {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    float: left;
    margin-right: 10px;
}

.testimonials .card h5 {
    font-size: 16px;
}

.testimonials .card h5 span {
    color: #000;
    font-weight: 400;
}

.testimonials .card .bx {
    color: #007fff;
    font-size: 36px;
}

.two-cols {
    padding: 75px 0px;
}


.cta {
    background: #d2d0d0;
    padding: 75px 0px;
}

.cta h4 {
    color: #000;
}

/*** TESTS ***/
.tests {
    padding: 75px 0px;
}

.tests .card h5 {
    color: #000;
}

.tests .card .price {
    color: #007fff;
    font-size: 24px;
}

.tests .btn-default {
    background: #007fff;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    min-width: auto;
}

.tests .btn-outline {
    border: 1px solid #007fff;
    color: #007fff;
    font-size: 14px;
    padding: 10px 20px;
    min-width: auto;
    text-transform: uppercase;
    border-radius: 0px;
    margin-left: 5px;
}

blockquote {
    border-left: 10px solid #007fff;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 10px;
    line-height: 2;
}

.team {
    padding: 75px 0px;
}

.banner.home-page {
    padding: 0px;
}

.banner .item {
    padding: 196px 0px;
}

.banner h2 {
    z-index: 4;
    text-shadow: rgb(0 0 0 / 50%) 0px 1px 2px;
    transition: all 0s ease 0s;
    min-height: 0px;
    min-width: 0px;
    line-height: clamp(2.625rem, -1.362rem + 10.651vw, 3.75rem);
    color: #fff;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    letter-spacing: 1px;
    font-size: clamp(2.5rem, -1.487rem + 10.651vw, 3.625rem);
    left: 269.5px;
    top: 180px;
    visibility: visible;
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1);
}

.banner h3 {
    text-shadow: rgb(0 0 0 / 50%) 0px 1px 2px;
    transition: all 0s ease 0s;
    line-height: 28px;
    color: #fff;
    letter-spacing: 1px;
    font-size: 22px;
    opacity: 1;
    font-weight: 600;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.0025, 0, 0, 0, 1);
}

.banner .btn.btn-primary,
.btn-primary.janral-btn {
    line-height: 51px;
    border-radius: 25px;
    padding: 0px 30px;
    font-weight: 600;
}

.banner-bottom {
    background: #007fff;
    padding: 7px 0px;
}

.banner-bottom p {
    color: #fff;
    font-size: 20px;
    margin: 0px;
}

.popular-products {
    padding: 20px 0px;
    padding-bottom: 50px;
}

h4.title-head {
    font-size: 26px;
    color: #082C46;
    line-height: 40px;
    font-weight: normal;
    font-family: 'Raleway', sans-serif;
}

h4.title-head b {
    font-weight: 800;
}

.popular-products figure {
    padding: 10px;
    position: relative;
    border-radius: 4px;
}

.popular-products figure:after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.15);
    background: -webkit-linear-gradient(bottom, rgb(21, 21, 21), rgba(0, 0, 0, 0.0));
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.0));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.0));
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.0));
    content: '';
    z-index: 1;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.popular-products figure:hover:after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.15);
    background: -webkit-linear-gradient(bottom, rgba(0, 127, 255, 0.71), rgba(0, 0, 0, 0.0));
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.0));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.0));
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.0));
    content: '';
    z-index: 1;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.popular-products .card {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    min-height: 250px;
}

.popular-products .card-footer {
    border: none;
    position: absolute;
    z-index: 99999;
    bottom: 0px;
}

.popular-products .card-footer h6 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

.popular-products .card-footer small {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.popular-products .card-footer small .fa {
    color: #007fff;
    font-size: 20px;
    position: relative;
    top: 3px;
    left: 5px;
}

.popular-products hr {
    border-top: 1px solid #007fff;
}

.service {
    padding: 40px 0px;
    position: relative;
    padding-bottom: 200px;
}


.service img.phone-img {
    position: absolute;
    left: 50%;
    margin-left: -700px;
    bottom: 0px;
}

.service h2 {
    color: #222;
    font-weight: 700;
    display: inline-block;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.service h2:after {
    width: 60px;
    height: 2px;
    margin: 0 auto;
    background-color: #82b440;
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 0px;
}

.service .card {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 0px;
    padding: 20px 30px;
    padding-right: 10px;
}

.service .card h4 {
    color: #fff;
    border-bottom: 1px solid #fff;
    font-size: 28px;
    display: inline-block;
    font-weight: 700;
    text-transform: capitalize;
}

.service .card p {
    color: #fff;
    line-height: 22px;
}

.service .card ul {
    padding-left: 0px;
}

.service .card li {
    color: #fff;
    list-style: none;
    padding: 2px 0px;
    padding-left: 30px;
    position: relative;
}

.service .card li:before {
    content: '\f046';
    font-family: 'FontAwesome';
    font-size: 18px;
    color: #fff;
    position: absolute;
    left: 0px;
    top: 2px;
}

.choose {
    padding: 40px 0px;
}

.choose h2 {
    color: #fff;
    font-weight: 700;
    display: inline-block;
    border-bottom: 1px solid #fff;
    position: relative;
}

.choose h2:after {
    width: 60px;
    height: 2px;
    margin: 0 auto;
    background-color: #82b440;
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 0px;
}

.choose ul li {
    list-style: none;
}

.choose ul li .circle {
    height: 90px;
    width: 90px;
    background: #fff;
    border-radius: 100%;
    display: inline-block;
    z-index: 99999;
    position: relative;
    border: 10px solid #f3f3f3;
}

.tableRow {
    display: table;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.tableCell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.choose ul {
    position: relative;
}

.choose ul:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    height: 27px;
    width: 52px;
    z-index: 9999;
    background: url(../../assets/img/icon-07.png) 50% 50% no-repeat;
}

.choose ul:after {
    content: '';
    position: absolute;
    top: 30px;
    right: 20px;
    height: 27px;
    width: 52px;
    z-index: 9999;
    background: url(../../assets/img/icon-05.png) 50% 50% no-repeat;
}

.choose ul li {
    position: relative;
}

.choose ul li:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -41px;
    background: #1e3f58 url(../../assets/img/icon-06.png) 50% 50% no-repeat;
    height: 26px;
    width: 82px;
    border-radius: 15px;
    margin-top: -65px;
    z-index: 99999;
}

.choose ul li:before {
    content: '';
    position: absolute;
    top: 50%;
    right: -90px;
    background: url(../../assets/img/line.png) 50% 50% no-repeat;
    height: 26px;
    width: 240px;
    border-radius: 15px;
    margin-top: -65px;
}


.choose ul li:last-child:after,
.choose ul li:last-child:before {
    display: none;
}


.choose ul li h6 {
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    margin-top: 10px;
}

.choose ul li p {
    color: #fff;
    font-size: 15px;
    line-height: 20px;
}

.home-testi {
    background: #f5f5f5;
}

.home-testi h4 {
    font-weight: bold;
}

.home-testi .card {
    border: none;
    background: none;
}

.home-testi .card figure {
    display: inline-block;
    float: none;
}

.home-testi .owl-nav button {
    position: absolute;
    top: 12%;
}

.home-testi .owl-nav button:hover {
    background: none;
}

.home-testi .owl-nav button.owl-prev {
    left: 40%;
    font-size: 35px;
}

.home-testi .owl-nav button.owl-next {
    right: 42%;
    font-size: 35px;
}


.home-testi .owl-item img {
    display: inline-block;
    width: auto;
}

/** Wellness Pages**/
.athlete-bg {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
}

.athlete-bg h4 {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.athlete-bg p {
    color: #fff;
}

.athlete-bg a.btn-primary {
    line-height: 34px !important;
    border: 1px solid #23527c;
    color: #23527c;
    background: #fff;
    border-radius: 5px !important;
    height: 36px;
    width: 47%;
    margin-right: 10px;
    font-weight: normal !important;
}

.athlete-bg a.btn-primary.blue-bg {
    background: #007fff;
    color: #fff;
    border: 1px solid #007fff;
    box-shadow: 0px 3px 3.8px 0.2px rgb(0 0 0 / 30%);
}

.wellness-packages {
    background: #f5f5f5;
}

.wellness-packages .card {
    background: rgba(21, 54, 77, 0.11);
    border: none;
}

.wellness-packages .card-header {
    background: #007fff;
    color: #fff;
    font-size: 20px;
    padding: 5px 15px;
}

.wellness-packages .card-body {
    box-shadow: 0px 4px 9.2px 0.8px rgb(0 0 0 / 14%);
    border-radius: 6px 6px 0px 0px;
    background-clip: padding-box;
    color: #282828;
    background-color: #fff;
    padding: 0px;
}


.wellness-packages .card-body p.head {
    border-bottom: 1px solid #eee;
    padding: 4px 4px;
}

.wellness-packages .card-body p.head span {
    background: #d7dbdd;
    padding: 2px 12px;
    border-radius: 30px;
    font-weight: 700;
}

.wellness-packages .card-body ul {
    padding-left: 0px;
}

.wellness-packages .card-body ul li {
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.wellness-packages .card-body ul li:before {
    content: '\f14a';
    font-family: 'FontAwesome';
    font-size: 18px;
    color: #6f6e6e;
    position: absolute;
    left: 0px;
    top: 0px;
}

.wellness-packages h4.title-head {
    font-weight: bold;
    display: inline-block;
    border-bottom: 1px solid #082C46;
    margin-bottom: 25px;
}

.wellness-packages .card-body .btn-primary {
    font-size: 14px;
    line-height: 24px;
    width: 48%;
    padding: 0px;
}

.wellness-packages .card-body .btn-primary.full-btn {
    width: 100%;
    line-height: 38px;
    border-radius: 0px 0px 2px 2px;
}

.order {
    background: #f5f5f5;
    padding: 90px 0px;
}

.order .card {
    border: none;
}

.order .images {
    background-color: #0369cf;
    color: #fff;
    height: 110px;
    margin-top: -55px;
    width: 110px;
    border-radius: 100%;
    display: inline-block;
}

h6 {
    color: #082C46;
}

.at-home {
    background: #E8E8E8 !important;
    padding: 30px 0px;
}

.at-home h3 {
    color: #082C46;
    font-size: 32px;
    line-height: 46px;
    font-weight: 300;
}

.at-home ul {
    padding-left: 0px;
}

.at-home ul li {
    list-style: none;
    padding: 7px 0px;
}

.at-home h3 b {
    font-weight: bold;
}

.at-home .btn-primary {
    border-radius: 20px;
    padding: 5px 15px;
}

.banner.single-product {
    background: #09487b;
    padding: 10px 0px;
    padding-bottom: 40px;
}

.banner.single-product .breadcrumb {
    border-bottom: 1px solid #61e673;
    border-radius: 0px;
    padding: 5px 0px;
}

.banner.single-product .breadcrumb li a {
    color: #61e673;
}

.banner.single-product .breadcrumb li {
    color: #fff;
}

.banner.single-product h4 {
    font-size: 24px;
    color: #222222;
    position: relative;
}

.banner.single-product h4:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: #5ab163;
}

.banner.single-product h4 b {
    color: #007fff;
}

.banner.single-product p {
    color: #fff;
}

.banner.single-product span {
    border: 1px solid #007fff;
    width: 100px;
    text-align: center;
    border-radius: 30px;
    background: #007fff;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    padding: 0px 20px;
    line-height: 35px;
}

.banner.single-product a.btn-primary {
    box-shadow: 0px 3px 3.8px 0.2px rgb(0 0 0 / 30%);
    width: 170px;
    line-height: 34px;
    font-size: 14px;
    font-weight: normal;
    border-radius: 5px;
    margin-top: -2px;
}

.banner.single-product a.btn-primary:hover,
a.button.product_type_simple.add_to_cart_button:hover {
    background-color: #2aa53a;
    color: #fff;
}

.banner.single-product ul {
    padding-left: 0px;
}

.banner.single-product ul li {
    list-style: none;
    color: #ffffff;
    padding: 4px 0px;
    border-bottom: 1px dashed #007fff;
    position: relative;
    padding-left: 25px;
}


.banner.single-product ul li:before {
    content: '\f14a';
    font-family: 'FontAwesome';
    font-size: 16px;
    color: #51de64;
    position: absolute;
    left: 0px;
    top: 2px;
}

.liver-profile {
    padding-top: 10px;
    padding-bottom: 80px;
}


.liver-profile .card {
    border: none;
}

.liver-profile h4 {
    font-size: 24px;
    color: #222222;
    position: relative;
}

.liver-profile h4:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: #5ab163;
}

.liver-profile h4 b {
    color: #007fff;
}


.liver-profile h5 {
    color: #082C46;
    font-size: 18px;
}

.liver-profile .card-body {
    padding: 15px 0px;
}

.liver-profile .nav-tabs {
    border: none;
    padding: 12px 0px;
}

.nav-tabs .nav-link {
    border: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    line-height: 25px;
    padding: 10px 10px;
    color: #363636;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-item .nav-link.active {
    border-bottom: 2px solid #007fff;
}

.liver-profile h6 {
    color: #007fff;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 25px;
}

.accordion .card-header {
    padding: 0px;
    border: none;
}

.accordion .card-header button.collapsed {
    color: #124870;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none !important;
}

.accordion .card-header button {
    color: #387CF6 !important;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    box-shadow: none !important;
    padding: 0 0 10px !important;
}

.accordion .card-header button:after {
    content: '\f106';
    position: absolute;
    font-family: 'FontAwesome';
    top: 4px;
    right: 10px;
    font-size: 16px;
}

.accordion .card-header button.collapsed:after {
    content: '\f107';
    position: absolute;
    font-family: 'FontAwesome';
    top: 4px;
    right: 10px;
    font-size: 16px;
}

.accordion .card-body {
    background: #f9f9f9;
    padding: 15px 15px;
}

.full-width {
    width: 100%;
}

.accordion>.card {
    margin-bottom: 10px;
}

.find {
    padding-top: 60px;
    padding-bottom: 40px;
    background-image: linear-gradient(337deg, #ffffff 41%, #bbf3cf 111%);
}

.find form input {
    width: 100%;
    height: 50px;
    border-radius: 30px;
    background: transparent;
    border: 2px solid;
    border-color: #2591fe;
    margin-bottom: 0px;
    padding-left: 38px;
    outline: 0;
}

.find form .search {
    position: relative;
}

.find form .search:before {
    content: '\f002';
    position: absolute;
    font-family: 'FontAwesome';
    top: 10px;
    font-size: 20px;
    color: #ccc;
    left: 14px;
}

a.btn-primary.testing {
    border-radius: 25px;
    background: none;
    color: #557479;
    padding: 7px 25px;
    border: 1px solid #557479;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}


/** Sample Collection**/
.sample-collection h4.title-head {
    font-weight: bold;
    display: inline-block;
    border-bottom: 1px solid #082C46;
    margin-bottom: 25px;
    font-weight: 800;
}

.sample-collection p {
    color: #082C46;
}

.wellness-packages h3 {
    font-weight: normal;
    color: #082C46;
}

.wellness-packages .br-1 {
    border-bottom: 7px solid #818285;
}

.wellness-packages .card.youth-bg {
    background: #0883ff;
    padding: 20px;
    border-radius: 0px;
}

.wellness-packages .card.youth-bg h2 {
    color: #fff;
    margin-bottom: 0px;
    font-weight: 600;
}

.wellness-packages .card.youth-bg p {
    color: #fff;
    padding-top: 5px;
}

.wellness-packages .card.youth-bg .media {
    border-bottom: 5px dashed #fff;
    padding: 5px 0px;
}

.wellness-packages .card.youth-bg h2.black-c {
    color: #082c46;
}

.wellness-packages h5 {
    color: #082C46;
    font-size: 22px;
    line-height: 33px;
    text-transform: none;
    font-weight: 500;
    text-align: center;
}

.included {
    background-image: linear-gradient(145deg, #507e9f 7%, #f8f9fa 102%);
    padding: 60px 0px;
}

.included h4.title-head {
    font-weight: bold;
    display: inline-block;
    border-bottom: 1px solid #082C46;
    margin-bottom: 25px;
    font-weight: 800;
}

.included .media span {
    border-radius: 100%;
    background: #fff;
    height: 190px;
    width: 190px;
}

.included .media span img {
    border-radius: 100%;
    background: #fff;
}


.included .p-left {
    padding-left: 20px;
    margin-left: -15px;
}

.included .media-body {
    background: #fff;
    padding: 5px;
    border-radius: 0px 5px 5px 0px;
    min-height: 90px;
}

.always-label {
    color: #fff;
    background: #0883ff;
    padding: 2px 0px;
    text-align: center;
    margin-bottom: 0px;
    font-size: 14px;
}

.woocommerce-checkout [data-toggle="collapse"] .fa:before {
    content: "\f139";
}

.woocommerce-checkout [data-toggle="collapse"].collapsed .fa:before {
    content: "\f13a";
}

input#choose_for_someone_else {
    width: 7px !important;
    padding: 10px;
    height: 23px;
}

#choose_for_someone_else[type="checkbox"]:checked:before {
    content: "\2713";
    position: absolute;
    top: -10px !important;
    font-size: 20px;
    line-height: 42px;
    outline: 0;
    text-align: center;
    left: 0;
    width: 100%;
    color: #007fff;
    font-weight: 700;
}

.guest_checkout {
    margin-top: 20px;
    border: 2px solid #2080DF;
    border-radius: 20px;
    padding: 20px !important;
    box-sizing: border-box;
    clear: both;
    margin-bottom: 6px;
}

.emptys {
    border: 1px solid red !important;
}

@media only screen and (min-width:300px) and (max-width: 480px) {
    .banner h2 {
        font-size: clamp(1.875rem, -298.125rem + 1000vw, 2.5rem);
        line-height: clamp(2rem, -298rem + 1000vw, 2.625rem);
    }
}

/* Template Home New 29*/
.banner-first .details {
    margin-top: 3.75rem;
}

.sub_title {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.banner_description {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.section_2_img_\&_text {
    margin-top: 5rem;
    position: relative;
}

.rectangle-5 {
    position: absolute;
    background: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-5.png);
    background-repeat: no-repeat;
    background-position: right;
    right: 0;
    width: 454px;
    height: 252px;
    top: 100px;
}

.rectangle-3 {
    position: absolute;
    background: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-3.png);
    background-repeat: no-repeat;
    background-position: left;
    width: 762px;
    height: 232px;
    left: 0;
    bottom: 0;
}

.about_image {
    display: grid;
    gap: 16px;
    height: 100%;
}

#about_image-first {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-column-end: 3;
    width: 282px;
    height: 224px;

}

#about_image-second {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 2;
    width: 282px;
    height: 224px;
}

#about_image-third {
    background-color: #7BC65D;
    grid-row-start: 2;
    grid-column-start: 1;

    grid-row-end: 3;
    grid-column-end: 3;
    width: 582px;
    height: 232px;
}

.about_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 68px;
}

.about_content-title {
    color: #0C3049;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 153.846% */
    text-decoration-line: underline;
    text-transform: uppercase;
    width: 293px;
}

.about_content-description {
    color: rgba(12, 48, 73, 0.70);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 430px;
}

.section_3_services_\&_offers {
    margin-top: 7rem;
    position: relative;
}

.Ellipse-5 {
    position: absolute;
    background: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Ellipse-5.png);
    background-repeat: no-repeat;
    background-position: left;
    width: 265px;
    height: 592px;
    left: 0;
}

.Ellipse-6 {
    position: absolute;
    background: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Ellipse-6.png);
    background-repeat: no-repeat;
    background-position: right;
    width: 273px;
    height: 592px;
    right: 0;
}

h3.service_title {
    color: #0B3C5E;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.17px;
    text-decoration-line: underline;
}

.service_subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 685px;
    width: 100%;
    margin-top: 22px;
}

.service_subtitle-description {
    color: rgba(12, 48, 73, 0.70);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    width: 685px;
    margin-bottom: 45px !important;
}

.service_points {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature_img {
    width: 45px;
    height: 45px;
}

.feature_title {
    color: rgba(12, 48, 73, 0.70);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

p.feature_subtitle {
    color: rgba(12, 48, 73, 0.70);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 417px;
    margin-bottom: 60px;
}

.smush-detected-img {
    border-radius: 0px !important;
    transition: all .5s ease;
    box-shadow: none !important;
}

.section_4_close-up-team-health-workers {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking_title {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    /* 125% */
    text-transform: none;
}

.booking_btn {
    font-family: Montserrat;
    border-radius: 8px;
    background: rgb(54, 124, 246);
    width: 255px;
    padding-inline: 60px;
    padding-block: 12px;
    gap: 10px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: inline-block;
    margin-top: 10px;
}

.booking_btn:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.wellness_package-title {
    color: #0C3049;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: uppercase;
}

.wellness_subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 617px;
    width: 100%;
    margin-top: 22px;
}

.wellness_subtitle-description {
    color: rgba(12, 48, 73, 0.70);
    text-align: center;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 617px;
    margin-top: 34px;
}

.section_5_Wellness_Packages {
    margin-top: 5rem;
}

.card_package {
    box-shadow: 0px 4px 14px 2px rgba(154, 154, 154, 0.20);
    border-radius: 12px;
    border: none;
    width: 338px;
    height: 435px;
    text-align: left;
    position: relative;
}

.Ellipse-1 {
    position: absolute;
    background-image: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Ellipse-1.png);
    background-repeat: no-repeat;
    background-position: right;
    width: 155px;
    height: 370px;
    right: 0;
    bottom: 0;
}

.card_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card_heading-name {
    color: #333;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0;
}

.card_heading-price {
    color: #387CF6;
    font-family: Inter;
    text-align: right;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.card-body-desc {
    width: 299px;
    color: #333;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 171.429% */
    text-align: left;
}

.card-body-list {
    min-height: 120px;
}

.card-body-list li:before {
    content: "\2713";
    /* Checkmark symbol */
    color: #387CF6;
    display: inline-block;
    font-weight: bold;
    margin-right: 10px;
}

.book_now-btn {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.customize-btn {
    color: #387CF6;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}

.section_6_FAQ {
    margin-top: 5rem;
    background: rgba(56, 124, 246, 0.04);
    padding: 70px;
    position: relative;
}

.faq_title {
    color: #0C3049;
    text-align: center;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 100% */
    text-decoration-line: underline;
}

.faq_subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 546px;
    width: 100%;
    margin-top: 22px;
}

.faq_subtitle-description {
    color: rgba(12, 48, 73, 0.70);
    text-align: center;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 546px;
    margin-top: 34px;
    margin-bottom: 50px !important;
}

.faq_accordion {
    margin-bottom: 35px;
}

.faq_question_row {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #0C3049;
    background: transparent;
}

.faq_answer_row {
    border-bottom: 1px solid #0C3049;
    /* Add a border-bottom to faq_answer_row */
    padding: 10px 0;
    /* Add some padding to separate the answer from the border */
    color: rgba(12, 48, 73, 0.55);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    padding: 15px 0 !important;
    background: transparent !important;
}

.accordion_head {
    border-bottom: none;
    padding: 0.75rem 0;
}

div#head {
    background: none;
}

.accordion_btn {
    color: #0C3049 !important;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: transparent !important;
}

.faq_ques {
    padding: 0.375rem 0 !important;
}

.section_7_Our_team {
    margin-top: 5rem;
}

.team_card {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 14px 2px rgba(154, 154, 154, 0.20);
}

.team-title {
    color: #0C3049;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: uppercase;
}

.doctor_info {
    color: #AAA9A9;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.63px;
    margin-bottom: 9px;
}

.team_subtitle {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-width: 617px;
    width: 100%;
    margin-top: 22px;
}

.team_subtitle-description {
    color: rgba(12, 48, 73, 0.70);
    text-align: center;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 617px;
    margin-top: 34px;
}

.team_sub {
    color: rgba(11, 60, 94, 0.21);
    text-align: center;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.team_img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: lightgray -104.672px 0px / 213.281% 151.405% no-repeat;
    margin: 0 auto;
    margin-top: 40px;
}

.doctor_details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.doctor_title {
    color: #0B3C5E;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.81px;
}

.doctor_desc {
    width: 206px;
    color: rgba(12, 48, 73, 0.70);
    text-align: center;
    font-family: Raleway;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.doctor_see-more {
    margin-top: 54px;
    color: #387CF6;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}



.section_8_Contact_us {
    margin-top: 5rem;
    position: relative;
}

.rectangle-7 {
    position: absolute;
    background-image: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-7.png);
    background-repeat: no-repeat;
    background-position: left;
    width: 568px;
    height: 311px;
    left: 0;
    bottom: 42px;
}

.rectangle-6 {
    position: absolute;
    background-image: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-6.png);
    background-repeat: no-repeat;
    background-position: left;
    width: 568px;
    height: 311px;
    right: 0;
    top: -71px;
}

.contact_us-title {
    color: #0C3049;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: uppercase;
}

.contact_us-desc {
    color: rgba(12, 48, 73, 0.70);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    width: 371px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.contact_details {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 60px;
}

.icon {
    font-size: 32px;
    color: #387CF6;
}

form.wpcf7-form.init {
    margin-left: 70px;
    /* width: 637.517px; */
    /* height: 430px; */
    padding: 31px 28.517px 31px 29px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 14px 2px rgba(154, 154, 154, 0.20);
    /* padding: 30px; */
}


input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.form-control {
    border-radius: 8px;
    border: 1px solid rgba(154, 154, 154, 0.80);
    margin-bottom: 23px;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.form-control::placeholder {
    color: #9A9A9A;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

textarea.wpcf7-form-control.wpcf7-textarea.form-control {
    border-radius: 8px;
    border: 1px solid rgba(154, 154, 154, 0.80);
    resize: none;
}

textarea.wpcf7-form-control.wpcf7-textarea.form-control::placeholder {
    color: #9A9A9A;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

input[type="submit"] {
    display: flex;
    width: 580px;
    height: 42.611px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #387CF6;
    border: none;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.details {
    color: #0C3049;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

@media only screen and (max-width: 426px) {
    form.wpcf7-form.init {
        margin-left: 0;
    }
}

.main-title {
    color: #0B3C5E;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.17px;
    text-decoration-line: underline;
}

.main-subtitle {
    color: rgba(12, 48, 73, 0.70);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    width: 685px;
    margin-bottom: 45px !important;
}

/* IV_NEW Page Style */
.IV_title {
    color: #0B3C5E;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
}

.IV_desc {
    color: #0B3C5E;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 417px;
    text-transform: none;
}

.section_2_how_it_works {
    margin-block: 5rem;
    position: relative;
}

.rectangle-272 {
    position: absolute;
    background-image: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-272.png);
    background-repeat: no-repeat;
    background-position: left;
    width: 454px;
    height: 252px;
    left: 0;
    bottom: -60px;
}

.rectangle-271 {
    position: absolute;
    background-image: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-271.png);
    background-repeat: no-repeat;
    background-position: right;
    width: 454px;
    height: 252px;
    right: 0;
    bottom: -60px;
}

.how_work-card {
    text-align: center;
}

.how_work-img {
    margin-bottom: 30px;
}

.work_title {
    color: #0B3C5E;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.17px;
    text-decoration-line: underline;
    text-align: center;
    margin-bottom: 60px
}

.how_work-title {
    color: #0B3C5E;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.72px;
}

.how_work-subtitle {
    color: #0B3C5E;
    text-align: center;
    font-family: Calibri;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}

.section_3_products {
    position: relative;
    padding: 5rem 0;
}

.produt-card .product_row {
    display: flex;
    flex-flow: row wrap;
    column-gap: 18px;
	margin-top: 30px;
	align-items: flex-start
}

.product_row .card {
    border: none;
    flex: 1 1 100%;
    max-width: calc(33.333% - 12px);
    margin-bottom: 30px;
    background: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Ellipse-5.png) no-repeat left center;
    background-size: auto 92%;
}

.product-card_row {
	box-shadow: 0px 4px 14px 2px rgba(154, 154, 154, 0.20);
}

.product-desc {
    border-bottom: none;
    padding: 0;
    width: auto;
    color: rgba(12, 48, 73, 0.70);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: none;
}

.product_head {
	border-bottom: none;
	padding: 0.75rem 0;
	/* box-shadow: 0px 4px 14px 2px rgba(154, 154, 154, 0.20); */
}

div#head {
	background: none;
}

button.product-title {
    color: #0C3049 !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px 28px !important;
}

.product-title {
    padding: 0.375rem 0 !important;
    color: #387CF6;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

li.product-list {
    color: rgba(12, 48, 73, 0.70);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    padding-left: 15px;
    margin-bottom: 18px;
    flex: 1 1 100%;
    max-width: 50%;
}
li.product-list:before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    left: 0;
    top: 0;
    border-radius: 100px;
    background: #387CF6;
    bottom: 0;
    margin: auto 0;
}
.product_row .card .list-item {
    max-height: 100px;
    overflow-y: auto;
    margin-top: 15px;
}
.product_row .card .list-item p {
    color: rgba(12, 48, 73, 0.70);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: none;
}
.list-item ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
}

/* Style the scrollbar */
.list-item::-webkit-scrollbar {
	width: 4px;
}
.list-item::-webkit-scrollbar-track {
	background: rgba(0,0,0,0.04);
}
.list-item::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.2);
    border-radius: 4px;
}
.list-item::-webkit-scrollbar-thumb:hover {
	background: #0C3049;
}
.product_row .card a.buy--btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    border-radius: 8px;
    padding: 10px 20px;
    background: #387CF6;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}

.section_5_services {
    position: relative;
    padding: 5rem 0 2rem;
}

.section_6_therapy_lifestyle {
    margin-top: 0rem;
    position: relative;
    background: #0C3049;
    padding: 6rem 0;
}

.Ellipse_2 {
    background-image: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Ellipse-2.png);
    background-repeat: no-repeat;
    background-position: left;
    position: absolute;
    left: 0;
    width: 189px;
    height: 697px;
    top: 52px;
}

.Ellipse_1 {
    background-image: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Ellipse-1-1.png);
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    right: 0;
    width: 189px;
    height: 697px;
    top: 52px;
}

.therapy-title {
    color: #FFF;
}

.therapy-subtitle {
    color: #FFF;
}

.section_6_therapy_lifestyle .nav-tabs {
    border-bottom: 0;
    justify-content: center;
}

.section_6_therapy_lifestyle .nav-tabs .nav-item {
    max-width: 32%;
    width: 100%;
    margin: 0 15px;
}

.section_6_therapy_lifestyle .nav-tabs .nav-link {
    border: none;
    font-weight: normal;
    border-bottom: 0;
    line-height: 25px;
    padding: 0;
    color: #ffffff;
    font-size: 14px;
    text-transform: none;
}

.section_6_therapy_lifestyle .nav-tabs .nav-item.show .nav-link, .section_6_therapy_lifestyle .nav-tabs .nav-link.active {
    color: inherit;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
}

.section_6_therapy_lifestyle .nav-item .nav-link.active {
    border: 1px solid #ffffff;
}

.section_6_therapy_lifestyle .tab-pane .nav-tabs .nav-item {
    max-width: 100%;
    width: auto;
    margin: 0;
}

.section_6_therapy_lifestyle .tab-pane .nav-tabs {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.section_6_therapy_lifestyle .tab-pane .nav-tabs .nav-item .nav-link {
    background: #ffffff10;
    border: 1px solid transparent;
    color: #ffffff;
    padding: 12px 20px;
    margin: 0 8px;
    border-radius: 8px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    min-width: 190px;
}

.section_6_therapy_lifestyle .tab-pane .nav-tabs .nav-item .nav-link.active {
    border: 1px solid #ffffff;
}

.section_6_therapy_lifestyle .tab-pane .card-group {
    column-gap: 20px;
    justify-content: center;
}

.section_6_therapy_lifestyle .tab-pane .card-group .card {
    flex: 1 1;
    max-width: calc(33% - 10px);
    border-radius: 8px;
}

.section_6_therapy_lifestyle #inner-tab1_2 .card-group .card {
    flex: 1 1;
    max-width: 50%;
    border-radius: 8px;
}

@media screen and (max-width:575px) {
    .section_6_therapy_lifestyle .nav-tabs .nav-item {
        max-width: 100%;
        width: 100%;
        margin: 0 15px 15px;
    }

    .section_6_therapy_lifestyle .tab-pane .nav-tabs .nav-item {
        margin-bottom: 10px;
    }
    
    .section_6_therapy_lifestyle .tab-pane .card-group .card {
        max-width: 90%;
    }
    
    .section_6_therapy_lifestyle .tab-pane .card-group {
        column-gap: 20px;
        justify-content: center;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
    }

    .section_6_therapy_lifestyle #inner-tab1_2 .card-group .card {
        max-width: 90%;
    }
}

.therapy-card a.btn--see--more {
    color: #ffffff60;
    padding: 10px 20px;
    border: 1px solid #ffffff30;
    display: inline-block;
    border-radius: 8px;
    margin-top: 1rem;
}

.therapy-card a.btn--see--more:hover, .therapy-card a.btn--see--more:focus {
    color: #333333;
    background: #ffffff;
    border: 1px solid #ffffff30;
}

.therapy-card {
    width: auto;
    height: auto;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    margin-top: 0;
    padding: 0rem 1rem 1rem;
}

.therapy-card-img {
    width: 42px;
    height: 65px;
    margin: 0 auto;
    margin-top: 50px;
}

.therapy-card-title {
    color: #fff;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section_6_therapy_lifestyle .tab-pane .card-group .therapy-card-title {
    font-size: 17px;
}

.therapy-card-text {
    text-align: center;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.section_7_steps {
    margin-bottom: 0;
    background: rgba(56, 124, 246, 0.04);
    padding: 5rem 0;
}

.step-number {
    color: #387CF6;
    font-family: Montserrat;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4.5px;
    opacity: 0.1;
}

.step-desc {
    color: #0C3049;
    text-align: center;
    font-family: Raleway;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    /* 116.667% */
    padding-inline: 31px;
}

.section_8_partners {
    margin-block: 7rem;
    position: relative;
}

.mt-50 {
    margin-top: 50px;
}

/*-=-==-=-=
 * new Css 06-10-2023-=-=
 * -=-==-=*/

.inner--banner {
    padding: 20px 0 0px;
}

.inner--banner h1 {
    text-transform: capitalize;
    margin: 0;
}
.inner--banner .breadcrumb {
    padding-left: 0;
    padding-right: 0;
}
.booster--content {
    background: #F7FAFF url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-271.png') no-repeat center right;
    padding: 20px 0 150px;
    background-size: 42% 100%;
}
.booster--content p {
    max-width: 520px;
    margin: auto;
    width: 100%;
}
.booster-image-content {
    margin-top: -150px;
	padding-bottom: 50px;
}
.booster-image-content img {
    border: 2px solid #ededed;
}
.booster--Works {
    background: none;
    padding: 50px 0;
    position: relative;
}
.how--works {
    background: none;
    padding: 30px 0 10px;
}
.booster--Works h4.title-head {
    margin-bottom: 6rem;
}
.booster--Works:before, .booster--Works:after {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	content: '';
	z-index: -1
}
.booster--Works:before {
    background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-272.png') no-repeat bottom left;
    right: auto;
    left: 0;
    background-size: 35% auto;
}
.booster--Works:after {
    background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-271.png') no-repeat bottom right;
    background-size: 35% auto;
}
.booster--Works h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 30px 0 10px;
    line-height: normal;
}
.services--section > p {
    max-width: 520px;
    margin: auto;
    width: 100%;
}
.product--faq {
    background: none;
    padding: 80px 0;
}
.product--faq #accordion {
    display: flex;
    flex-flow: row wrap;
	column-gap: 12px;
	align-items: flex-start;
}
.product--faq .card {
    background: none;
    text-align: left;
    background: none;
    text-align: left;
    flex: 1 1 100%;
    max-width: calc(33.333% - 12px);
    box-shadow: 0 4px 15px 2px #9A9A9A20;
    -webkit-box-shadow: 0 4px 15px 2px #9A9A9A20;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    padding: 20px 15px;
    margin-bottom: 40px;
}
.product--faq .card-header {
    background: none;
    text-align: left;
    color: #007fff;
    border: 0;
    padding: 0;
}
.product--faq .card-header h5, .product--faq .card-header h5 button {
    text-align: left;
    color: #387CF6;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    padding: 0;
    width: 100%;
	text-decoration: none;
	position: relative;
}
.product--faq .card-header h5 button:after {
    content: '\f078';
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
    font-family: var(--fa-style-family,"Font Awesome 6 Free");
    position: absolute;
    right: 10px;
    top: 0;
    color: #387CF6;
    font-size: 12px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}
.product--faq .card-header h5 button.collapsed:after {
    content: '\f078';
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
    font-family: var(--fa-style-family,"Font Awesome 6 Free");
    position: absolute;
    right: 10px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
    top: 0;
    color: #387CF6;
    font-size: 12px;
}
.product--faq .card-header h5 button:focus {
	box-shadow: none;
	outline: none;
}
.product--faq .card-header h5 button p {
    text-align: left;
    color: rgba(12,48,73,0.7);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    display: block;
    padding: 0;
    width: 100%;
	line-height: 20px
}
.product--faq .card-body {
    padding: 0;
    color: rgba(12,48,73,0.7);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    line-height: 20px;
    box-shadow: none;
    font-family: 'Montserrat', sans-serif;
}
.product--faq .card-body a {
	display: block;
    color: #387CF6;
    font-size: 14px;
    font-weight: 600;
	margin-top: 5px;
    text-transform: uppercase;
}
.services--section {
	background: none;
    padding: 0 0 80px 0;
	position: relative;
}
.services--section:before, .services--section:after {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: '';
	z-index: -1
}
.services--section:after {
	background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Ellipse-6.png') no-repeat center right;
	background-size: auto 100%
}
.services--section:before {
	background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Ellipse-5.png') no-repeat center left;
	right: auto;
	left: 0;
	background-size: auto 100%;
}
.services--section .media {
    margin: 50px 0 20px;
	padding: 0 50px;
	align-items: center;
}
.services--section .media h5 {
    text-align: left;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0C3049;
    line-height: normal;
}
.services--section .media p {
    text-align: left;
    margin: 0;
    font-size: 15px;
    font-weight: normal;
    color: #0C304970;
    line-height: normal;
}
.services--section .media img {
    width: 35px;
    object-fit: cover;
    height: auto;
}
.partners--logos {
    background: #ffffff;
    padding: 30px 0 50px;
	text-align: center
}
.partners--logos ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    list-style: none;
    column-gap: 40px;
    margin: 0;
}
.booster--Works p {
    max-width: 75%;
    width: 100%;
    margin: auto;
}
.why--blood {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
}
.why--blood .container {
	z-index: 1;
	position: relative;
}
.why--blood p {
    max-width: 80%;
	width: 100%;
	margin: 0;
}
.why--blood:before, .why--blood:after {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: '';
}
.why--blood:before {
    background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-272.png') no-repeat bottom left;
    right: auto;
    left: 0;
    background-size: 35% auto;
    bottom: 60px;
    top: auto;
}
.why--blood:after {
    background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-271.png') no-repeat center right;
    background-size: 35% auto;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.best--selling {
    padding-top: 80px;
}
.best--selling:before, .best--selling:after {
	display: none;
}
.best--selling .card img {
    width: auto;
    max-width: 50px;
    margin: auto;
    box-shadow: none;
    height: 40px;
    object-fit: cover;
}
.best--selling .card {
    height: 100%;
	background: none;
    border-radius: 8px;
	-webkit-border-radius: 8px;
}
.best--selling .card a {
    background: #ffffff;
    box-shadow: 0 4px 14px 2px #9A9A9A20;
	-webkit-box-shadow: 0 4px 14px 2px #9A9A9A20;
    padding: 2rem;
    border-radius: 8px;
	-webkit-border-radius: 8px;
    height: 100%;
}
.best--selling .card-body {
    box-shadow: none;
    border-radius: 0;
}
.best--selling .card .card-title {
    font-size: 16px;
    color: #387CF6;
    font-weight: 700;
    margin: 10px 0 0;
}
.pricoing--table {
    background: none;
    padding: 0 0 70px;
}
.pricoing--table h4.title-head+p, .main--faq h4.title-head+p {
    max-width: 50%;
    margin: auto;
    width: 100%;
}
.pricoing--table .pricing--grid {
    margin-top: 2rem;
    display: flex;
    flex-flow: row wrap;
}
.pricoing--table .pricing--grid+.pricing--grid {
    margin-top: 0;
    max-height: 455px;
    overflow-y: auto;
}
.pricoing--table .pricing--grid+.pricing--grid::-webkit-scrollbar-track
{
	border-radius: 10px;
	background-color: #D9D9D950;
}
.pricoing--table .pricing--grid+.pricing--grid::-webkit-scrollbar
{
	width: 10px;
	background-color: #D9D9D950;
}
.pricoing--table .pricing--grid+.pricing--grid::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #C7C5C5;
}
.pricoing--table .price--cell {
    flex: 0 0 275px;
    text-align: center;
    border: 1px solid #0C304910;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    max-width: 275px;
}
.pricoing--table .pricing--grid+.pricing--grid .price--cell {
    border-radius: 0 0 8px 8px;
	-webkit-border-radius: 0 0 8px 8px;
	border-top: 0;
	border-bottom: 1px solid #0C304910
}
.pricoing--table .price--cell h3 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    font-weight: 700;
    line-height: normal;
    color: #0C304980;
}
.pricoing--table .price--cell h2 {
    font-size: 35px;
    margin: 0;
    font-weight: 700;
}
.pricoing--table .price--cell h5 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #333333;
    line-height: normal;
}
.pricoing--table .price--cell .btn--buy--now {
    padding: 5px 30px;
    display: inline-block;
    background: #387CF6;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 8px;
}
.pricoing--table .price--cell .price--head {
    min-height: 135px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #0C304910;
    padding: 1rem 0;
}
.price-subtitle {
    background: #387CF605;
    padding: 1rem 0;
    color: rgba(12,48,73,0.7);
    font-weight: 700;
    font-size: 16px;
}
.pricoing--table .price--cell ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.pricoing--table .price--cell ul li {
    padding: 1rem 0;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: rgba(12,48,73,0.7);
}
.pricoing--table .price--cell ul li .fa-times {
    color: #AAA9A9;
}
.pricoing--table .price--cell ul li .fa-check {
    color: #387CF6;
}
.pricoing--table .price--cell ul li:nth-child(even) {
	background: rgba(56,124,246,0.02);
}
.main--faq {
    background: #387CF605;
    padding-top: 70px;
}
.main--faq .accordion {
	margin-top: 2rem;
}
.main--faq .accordion .card {
    background: none;
    border-bottom: 1px solid #0C304950;
    margin-bottom: 30px;
}
.main--faq .accordion .card-body {
    font-size: 16px;
    background: none;
    box-shadow: none;
    padding: 0 0 1rem;
    color: rgba(12,48,73,.55);
}
.main--faq .accordion .card-header button {
    color: rgba(12,48,73,1) !important;
    padding: 0 0 1rem;
    display: block;
    width: 100%;
    text-align: left;
}
.main--faq .accordion .card-header h5 {
    text-align: left;
}
.main--faq .accordion .card-header {
    background: none;
}
.booster--Works~.section_4_close-up-team-health-workers {
    margin-top: 6rem;
}
.single--pricing .pring--card {
    border-radius: 10px;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 15px 2px #9A9A9A20;
    max-width: 340px;
    margin: auto;
    width: 100%;
	position: relative;
}
.single--pricing {
    padding: 10rem 0 5rem;
    margin-bottom: 2rem;
}
.single--pricing:before {
    background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-272.png') no-repeat top left;
    right: auto;
    left: 0;
    background-size: 50% 250px;
    bottom: auto;
    top: 60px;
}
.single--pricing:after {
    background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Rectangle-271.png') no-repeat bottom right;
    background-size: 40% 250px;
    top: auto;
    bottom: 60px;
    margin: auto 0;
}
.single--pricing .pring--card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 -20px 12px;
    border-bottom: 1px solid #33333310;
    color: #333333;
    padding: 0 20px 10px;
	display: flex;
	align-items: center;
}
.single--pricing .pring--card h3 span {
    font-size: 27px;
    font-weight: 700;
    color: #387CF6;
	margin-left: auto;
}
.single--pricing .pring--card p {
    max-width: 100%;
    color: #333333;
	margin-bottom: 1rem
}
.single--pricing .pring--card ul {
    padding: 0;
    list-style: none;
    max-height: 130px;
    overflow-y: auto;
    min-height: 130px;
}
.single--pricing .pring--card ul li {
	margin-bottom: 10px;
}
.single--pricing .pring--card ul li:last-child {
	margin-bottom: 0;
}
.single--pricing .pring--card ul li i {
	color: #387CF6;
	margin-right: 5px;
}
.single--pricing .pring--card a.book--btn {
    display: block;
    text-align: center;
    text-transform: uppercase;
    background: #387CF6;
	border: 1px solid #387CF6;
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
}
.single--pricing .pring--card .book--btn+.book--btn {
    background: #ffffff;
	margin-top: 10px;
    color: #387CF6;
	border: 1px solid #387CF6
}
.book--now--banner {
    background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/annie-spratt-S50MwpIaKoQ-unsplash-1.png') no-repeat center;
    background-size: cover;
    padding: 5rem 0;
    margin-top: 5rem;
}
.book--now--banner h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: none;
    font-weight: 500;
    margin-bottom: 50px;
}
.book--now--banner .book--btn {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    background: #387CF6;
    border: 1px solid #387CF6;
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 30px;
    font-weight: 600;
    min-width: 250px;
}
.product--card--col {
    margin-bottom: 2rem;
}
.product--card--col a {
	display: block;
    box-shadow: 0 4px 14px 2px #9a9a9a20;
    padding: 2rem;
    border-radius: 8px;
	background: url('https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/Ellipse-5.png') no-repeat top 10px left;
	background-size: 40% 70%;
}
.product--card--col img {
    margin: auto;
    display: block;
    margin-bottom: 1rem;
}
.product--card--col h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
	display: flex;
	align-items: center;
}
.product--card--col h5 span {
    font-size: 27px;
    font-weight: 700;
    color: #387CF6;
	margin-left: auto;
}
.product--card--col p {
    font-size: 14px;
	margin: 0;
    color: rgba(12,48,73,0.7);
}
a.view--more--btn {
    color: #387CF6;
    text-decoration: underline;
}
/*-=--=-=-=
 * Media Css-=-=-=-=
 * -=-==-=--=*/
@media (min-width:768px) and (max-width:991px) {
	.services--section .media {
    	margin: 20px 0 20px;
    	padding: 0;
    }
	.pricing--parent {
    	overflow-x: auto;
    	overflow-y: auto;
    	max-height: 450px;
    	position: relative;
	}
	.pricoing--table .pricing--grid {
    	flex-flow: row nowrap;
    	position: sticky;
    	position: -webkit-sticky;
    	top: 0;
    	background: #ffffff;
    	z-index: 111;
	}
	.pricoing--table .price--cell {
    	min-width: 220px;
		background: #ffffff;
	}
	.pricoing--table h4.title-head+p, .main--faq h4.title-head+p, .why--blood p {
    	max-width: 100%;
    }
	.pricoing--table .pricing--grid+.pricing--grid {
    	max-height: 100%;
    	overflow-y: visible;
    	position: relative;
    	z-index: 0;
	}
	.booster--Works:before, .booster--Works:after {
    	background-size: 35% 50%;
	}
	.best--selling, .product--faq {
    	padding: 0 0 40px 0;
	}
	.booster--Works~.section_4_close-up-team-health-workers {
    	margin-top: 0rem;
	}
	.single--pricing {
    	padding: 5rem 0 4rem;
    	margin-bottom: 2rem;
	}
}
@media screen and (max-width:767px) {
	.inner--banner h1 {
    	font-size: 30px;
	}
	h4.title-head {
    	font-size: 23px;
    }
	.booster--Works:before, .booster--Works:after, .services--section p br, .rectangle-271, .rectangle-272, .Ellipse_2, .Ellipse_1, .Ellipse-5, .Ellipse-6 {
		display: none;
	}
	.product--faq .card {
    	max-width: calc(50% - 12px);
    }
	.product_row .card {
    	max-width: calc(50% - 12px);
    }
	.why--blood .testing--image {
		margin-bottom: 2rem
	}
	.pricing--parent {
    	overflow-x: auto;
    	overflow-y: auto;
    	max-height: 450px;
    	position: relative;
	}
	.pricoing--table .pricing--grid {
    	flex-flow: row nowrap;
    	position: sticky;
    	position: -webkit-sticky;
    	top: 0;
    	background: #ffffff;
    	z-index: 111;
	}
	.pricoing--table .price--cell {
    	min-width: 220px;
		background: #ffffff;
	}
	.pricoing--table h4.title-head+p, .main--faq h4.title-head+p, .why--blood p {
    	max-width: 100%;
    }
	.pricoing--table .pricing--grid+.pricing--grid {
    	max-height: 100%;
    	overflow-y: visible;
    	position: relative;
    	z-index: 0;
	}
	.pricoing--table, .services--section .media, .services--section {
    	padding: 0;
    }
	.book--now--banner {
    	margin-top: 1rem;
	}
	.booster--content {
    	background-size: 42% 50%;
	}
	.how_work-card {
    	margin-bottom: 2rem;
	}
	.section_3_products {
    	padding: 0 0 4rem;
	}
	.service_subtitle {
    	min-width: 0;
    }
	p.feature_subtitle {
    	width: auto;
    }
	.booster--Works {
    	padding: 10px 0 0 0;
    }
	.best--selling {
    	padding-bottom: 40px;
	}
	.product--faq {
    	padding: 50px 0 30px;
	}
	.single--pricing {
    	padding: 5rem 0 2rem;
    	margin-bottom: 2rem;
	}
	.services--section > p, .booster--content p {
    	max-width: 100%;
    }
}
@media screen and (max-width:575px) {
	.product--faq .card {
    	max-width: calc(50% - 0px);
    }
        .pricoing--table .price--cell {
	flex: 0 0 200px;
	max-width: 200px;
}
	.product_row .card {
	max-width: calc(50% - 12px);
}
	.services--section:before, .services--section:after {
		display: none;
	}
	.booster--content p br {
    	display: none;
	}
	li.product-list {
	    max-width: 100%;
	}
}

@media only screen and (max-width: 660px) {
.page-id-43154 .banner-first.py-4.border {
	background: url(https://www.staging.youth-revisited.co.uk/wp-content/uploads/2023/10/bg-fxied.jpg) !important;
	background-size: 100% 100% !important;
	background-position: center center !important;
}
	
    .pricoing--table .price--cell {
	flex: 0 0 200px;
	max-width: 200px;
}
}

.quote-sec {
	text-align: center;
	color: #0B3C5E;
	font-size: 25px;
	font-weight: 700;
	padding-bottom: 40px;
}

.subquite.text-center {
	color: #0B3C5E;
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 40px;
}