* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --headingfont: "Archivo", sans-serif;
    --textfont: "Inter", sans-serif;
    --textfont2: "DM Sans", sans-serif;
    --textfont3: "Merriweather", serif;
    --themedarkblue: rgba(19, 46, 75, 1);
    --themewhite: #ffffff;
    --themelightblue: #f0f8ff;
    --bluish-color:#226D98;
    --themegray: #f8f9fa;
    --textdark: #343a40;
    --textlight: #6c757d;
    --star-color: #ffc107;
    --font18px: clamp(14px,0.938vw,20px);
    --font20px: clamp(16px, 1.042vw, 22px);
    --font22px: clamp(16px, 1.146vw, 24px);
    --font24px: clamp(16px,1.25vw,26px);
    --font28px: clamp(17px,1.458vw,28px);
    --font30px: clamp(18px,1.563vw,30px);
    --font40px: clamp(21px,2.083vw,42px);
    --font56px: clamp(24px,3.125vw,56px);
    --font65px: clamp(24px,3.625vw,65px);
    --font72px: clamp(32px,3.75vw,74px);

    /* variables for ui fixing */
    --primary-bg-color:#132E4B;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headingfont);
    color: var(--textdark);
    font-weight: 700;
}

p,
span,
a,
li,
button {
    font-family: var(--textfont);
}
p {
    color: #000;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
.common_sec_width {
    max-width: 89.3%;
    margin: 0 auto;
}
/* Reusable component */
.primary_btn {
    font-size: var(--font20px);
    background-color: var(--themedarkblue);
    color: var(--themewhite);
    font-family: var(--textfont2);
    font-weight: 400;
    padding: 16px 50px;
    border-radius: 8px;
    border: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
}

.white_bg {
    background-color: var(--themewhite);
    color: rgba(34, 109, 152, 1);
}

.product_card {
    background-color: rgba(248, 248, 248, 1);
    padding: 25px;
    border-radius: 10px;
}
.product_card .product_card_body {
    margin-top: 15px;
}
.product_card_body .product_price {
    font-size: var(--font18px);
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    font-family: var(--textfont2);
}
.product_card_footer {
    margin-top: 20px;
    gap: 15px;
}
.product_card_footer .primary_btn {
    width: 50%;
    text-align: center;
    padding: 11px 0;
}
.more_info_btn {
    border: 0.5px solid #000000;
    box-shadow: 0px 0px 7px 1px #0000001A;
    background-color: transparent;
    color: #333333;
}
.product-section .product_sec_row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 24px;
}
.page_title {
    font-size: var(--font72px); 
    font-weight: 700;
    font-family: var(--textfont3);
    margin-bottom: 60px;
    text-align: center;
    color: #000;
}
.section_title {
    font-size: var(--font56px);
    font-weight: 500;
    font-family: var(--headingfont);
    margin-bottom: 25px;
    color: #000;
    line-height: 1.1;
}
.section_subtitle {
    font-size: var(--font20px);
    font-weight: 500;
    font-family: var(--textfont2);
    color: var(--bluish-color);
    margin-bottom: 20px;
    padding: 10px 20px;
    padding-left: 40px;
    background-color: #5CA6CA33;
    width: fit-content;
    border-radius: 30px;
    position: relative;
}
.section_subtitle::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--bluish-color);
}

/* header */
header{
    background-color: var(--themedarkblue);
    position:sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}

header .navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--headingfont);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--textdark);
}


header .nav-link {
    color: #fff;
    font-family: var(--textfont2);
    font-weight: 500;
}

header .nav-link:hover {
    color: var(--themedarkblue);
}

header .navbar-brand img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

header .log-in-btn{
    background-color: #65A7C8;
    color: #fff;
}

header .get-started{
    color: #65A7C8;
    background-color: #fff;
}

.btn-outline-primary {
    border-color: var(--themedarkblue);
    color: var(--themedarkblue);
}

.btn-outline-primary:hover {
    background-color: var(--themelightblue);
    border-color: var(--themedarkblue);
    color: var(--themedarkblue);
}

.btn-primary {
    background-color: var(--themedarkblue);
    border-color: var(--themedarkblue);
    color: var(--themewhite);
}

.btn-primary:hover {
    opacity: 0.9;
    background-color: var(--themedarkblue);
    border-color: var(--themedarkblue);
}

.hero-section {
    text-align: center;
    padding: 3rem 0;
}

.hero-section h1 {
    font-size: var(--font72px);
    font-family: var(--headingfont);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.hero-section img {
    border-radius: 20px;
}

.hero-section .hero-images .col-lg-4:nth-child(2){
    margin-top: 70px;
}

.hero-images .col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-section .btn.btn-dark{
    background-color: var(--themedarkblue);
    color: #fff;
    font-weight: 400;
    font-size: var(--font20px);
    font-family: var(--textfont2);
}

.btn-dark {
    background-color: var(--textdark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
}

.btn-dark:hover {
    background-color: #23272b;
}

.features-banner {
    background-color: var(--themelightblue);
    padding: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--textdark);
    font-family: var(--textfont2);
    font-size: var(--font24px);
}

.feature-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.section-padding {
    padding: 5rem 0;
}

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

.product-section .card{
  padding: 20px !important;
}

.product-section .card-body{
  padding-inline: 0 !important;
}

.product-section .card-img-top{
   border-radius: 8px;
}

.product-section .card-subtitle a{
  font-family: var(--textfont2);
  font-size: var(--font18px);
  text-transform: capitalize;
  font-weight: 400;
  color: #226d98;
}

.product-section .card-title{
  color: #000;
  font-weight: 400;
  font-size: var(--font24px);
  font-family: var(--headingfont);
  margin-bottom: 20px;
}

.product-section .card-text{
   color: #333333;
   font-family: var(--textfont2);
   line-height: 1.3;
   font-size: var(--font18px);
   margin-bottom: 20px;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.product-section .card-text h6{
    color: #000;
    font-weight: 400;
    font-size: var(--font18px);
    font-family: var(--textfont2);
}

.product-section .card-footer{
    padding: 0;
    gap: 5%;
}



.product-section .card-footer a{
    text-align: center;
    font-family: var(--textfont2);
    width: 50%;
    border: 1px solid var(--themedarkblue);
    color: var(--themedarkblue);
    font-weight: 400;
}

.product-section .card-footer .btn.btn-dark{
    font-family: var(--textfont2);
    padding: 0;
    height: 100%;
    width: 50%;
}

.card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-img-top {
    width: 100%;
    height: 19.5rem;
    object-fit: cover;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--themedarkblue);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: var(--textfont);
    text-transform: uppercase;
}

.card-text {
    color: var(--textlight);
    flex-grow: 1;
}

.card-footer {
    background-color: transparent;
    border-top: none;
    padding-top: 1rem;
    margin-top: auto;
}

.how-it-works .step-text {
    font-family: var(--textfont2);
    margin-bottom: 1rem;
}
.active-treatments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.active-treatments-header h3 {
    font-family: var(--headingfont);
    font-size: 1.25rem;
    margin-bottom: 0;
}

.active-treatments-header a {
    color: var(--themedarkblue);
    font-weight: 600;
    text-decoration: none;
}

.treatment-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: var(--themewhite);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
    margin-bottom: 1rem;
}

.treatment-item img {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

.treatment-info p {
    margin-bottom: 0;
}

.treatment-info .text-muted {
    font-size: 0.875rem;
}

.latest-purchase {
    background-color: var(--themewhite);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
    margin-top: 1.5rem;
}

.latest-purchase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.latest-purchase-header h4 {
    font-family: var(--headingfont);
    font-size: 1rem;
    margin-bottom: 0;
}

.badge {
    background-color: #d1e7dd;
    color: #0f5132;
    font-size: 0.75em;
    font-weight: 700;
    padding: .35em .65em;
    border-radius: 10rem;
}

.latest-purchase-body {
    display: flex;
    align-items: center;
}

.latest-purchase-body img {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-right: 1rem;
}

.latest-purchase-details p {
    margin-bottom: 0;
}

.latest-purchase-details .text-muted {
    font-size: 0.875rem;
}

.testimonial-section .stars {
    color: var(--star-color);
    margin-bottom: 1rem;
}

.home-quote-image{
    width: 100px;
}

.testimonial-section blockquote {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--textlight);
    margin-bottom: 1.5rem;
    font-family: var(--textfont2);
}

.testimonial-section .author {
    font-weight: 700;
    color: var(--textdark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-section .author img{
    width: 100px;
    object-fit: contain;
}

.testimonial-section .disclaimer {
    font-size: 0.875rem;
    color: var(--textlight);
    margin-bottom: 0;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--textdark);
}

.faq-item .material-icons {
    color: var(--textlight);
}

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

/* cta section start here */

.cta-section {
    color: var(--themewhite);
}
.cta_section_wrap {
    background-color: var(--themedarkblue);
    padding: 35px 3%;
    border-radius: 30px;
}

.cta-section h2 {
    color: var(--themewhite);
    font-size: var(--font40px);
    font-weight: 500;
    margin-bottom: 40px;
}
.invest_in_health_features {
    display: flex;  
    align-items: center;
    column-gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.invest_in_health_features .feature-item p {
    font-size: var(--font20px);
    color: var(--themewhite);
}

.cta-section p {
    color: #ced4da;
    margin-bottom: 0;
}

.cta-section .feature-item {
    color: var(--themewhite);
    margin-bottom: 20px;
}
footer h3 {
    font-family: var(--textfont2);
    font-size: var(--font30px);
    margin-bottom: 20px;
}

footer a {
    color: rgba(51, 51, 51, 1);
    display: inline-block;
    font-size: var(--font20px);
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--themedarkblue);
}

footer .social-icons a {
    display: inline-block;
    margin-right: 1rem;
}

footer .social-icons svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}
header.navbar ul li a {
    color: #fff;
    font-size: var(--font20px);
}

header.navbar a img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

header.navbar .nav-link {
    font-family: var(--textfont2);
    font-weight: 400;
    font-size: var(--font20px);
}

/* product info page start here */

.compounded_glp_wrap {
    background: #5CA6CA1A;
    border-radius: 50px;
    padding: 30px;
}
.compunded_glp_content {
    margin-top: 20px;
    padding-left: 5.7%;
    padding-right: 3%;
}
.compunded_glp_content p {
    font-size: var(--font20px);
    font-family: var(--textfont2);
}
.compunded_glp_content .compounded_glp_price {
    font-size: var(--font28px);
    font-weight: 500;
    font-family: var(--textfont);
    margin-bottom: 25px;
    display: block;
}
/* glp feature section */
.compounded_glp_features_row {
    --bs-gutter-x: 70px;
    justify-content: center;
}
.glp_feature_card {
    border: 4px solid var(--bluish-color);
    padding: 30px;
    border-radius: 20px;
}
.glp_feature_card i {
    color: var(--bluish-color);
    font-size: var(--font28px);
}
.glp_feature_card p {
    margin-bottom: 0;
    margin-top: 20px;
    font-size: var(--font24px);
    font-family: var(--textfont2);
}
/* products */
.product_info_products_sec .section_title {
    margin-bottom: 60px;
    text-align: center;
}
/* FAQ section start */
.faq_sec_title_wrap p {
    font-size: var(--font24px);
    font-family: var(--textfont2);
    margin-bottom: 25px;
}
.faq_accordion_wrap .accordion-item {
    --bs-accordion-border-width:0;
    border-bottom: 0.5px solid #ACACAC;
}
.faq_accordion_wrap .accordion-button:not(.collapsed) {
    background-color: transparent;
}
.faq_accordion_wrap .accordion-button:focus {
    box-shadow: none;
}
.faq_accordion_wrap .accordion-button {
    padding:25px  0;
    font-size: var(--font24px);
    font-family: var(--textfont2);
    color: #000 ;
    gap: 5%;
    line-height: 1.5;
}
.faq_sec_title_wrap {
    padding-right: 14%;
}

/* about us page start here */
.about_us_team_sec .page_title {
    margin-bottom: 35px;
}
.about_us_team_sec p, .contact_us_page_sec .intro_text_row p {
    font-size: var(--font28px);
    font-family: var(--textfont2);
    margin-bottom: 30px;
}
.about_us_team_members .row {
    --bs-gutter-x:40px;
}
.about_us_team_members .row:nth-of-type(even) {
    flex-direction: row-reverse;
}
.about_us_team_members .row:nth-of-type(even) .about_us_img_wrap {
    text-align: right;
}
.contact_us_page_sec .page_title {
    margin-bottom:30px;
}
.contact_us_page_sec .intro_text_email_wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: var(--font20px);
    color: rgba(51, 51, 51, 1);
}
.contact_us_page_sec .intro_text_email_wrap i {
    color: var(--bluish-color);
}
.contact_us_page_form_row {
    --bs-gutter-x:40px;
    --bs-gutter-y:20px;
    margin-bottom: 115px;
}
.contact_us_page_form_row label {
    font-size: var(--font22px);
    font-weight: 500;
    color: var(--bluish-color);
}
.contact_us_page_form_row input, .contact_us_page_form_row textarea {
    border: 1px solid #65A7C8;
    padding: 15px 20px;
    font-size: var(--font20px);
    font-family: var(--textfont2);
    color: #9B9B9B;
}
.contact_us_page_form_row textarea {
    height: 120px;
    resize: none;
}
.contact_us_page_form_row input:focus, .contact_us_page_form_row textarea:focus {
    box-shadow: none;
}
.contact_us_page_form_row input::placeholder,
.contact_us_page_form_row textarea::placeholder {
color: #9B9B9B;
}
.contact_us_page_sec .privacy-text p , .contact_us_page_sec .privacy-text label {
    font-size: var(--font22px);
    font-family: var(--textfont2);
    margin-bottom: 0;
}
.privacy-text .form-check {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact_us_page_sec .primary_btn {
    margin-top: 34px;
    padding: 16px 75px;
}
.texas_location_img_sec .section_title {
    margin-bottom: 70px;
}
.texas_location_img img  {
    width: 100%;
}
/* faq page start here */
.faq_page_sec.section-padding {
    padding-top: calc(80px + 90px);
}
.faq_page_sec {
    background: linear-gradient(to bottom, #18314f 0%, #fff 15%); 
    min-height: 100vh;
}
.faq_page_sec .section_title {
    color: var(--themewhite);
    margin-bottom: 45px;
    font-family: var(--textfont3);
}
.faq_page_sec .faq_searchbar_wrap {
    margin-bottom: 40px;
}
.faq_searchbar_wrap{
    background: rgba(19, 46, 75, 0.3);
    box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: var(--font28px);
}
.faq_searchbar_wrap input {
    color: #fff;
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: var(--font28px);
    font-family: var(--textfont2);
}
.faq_searchbar_wrap input:focus {
    box-shadow: none;
    background-color: transparent;
    color: #fff;
}
.faq_searchbar_wrap input::placeholder {
    color: var(--themewhite);
}
.faq_searchbar_wrap i {
    color: var(--themewhite);
}
.faq_category_wrap a {
    border: 1px solid rgba(224, 224, 224, 1);
    box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 58px;
    text-decoration: none;
}
.faq_category_wrap .faq_category_wrap_img {
    background-color: rgba(19, 46, 75, 1);
    border-radius:10px;
    padding: 27px 33px;
}
.faq_category_wrap_text h3 {
    font-size: var(--font28px);
    font-weight: 700;
    font-family: var(--textfont2);
    margin-bottom: 10px;
    color: #000;
}
.faq_category_wrap_text p {
    font-size: var(--font24px);
    font-family: var(--textfont2);
    color: rgba(51, 51, 51, 1);
    margin-bottom: 30px;
}
.faq_category_wrap_text .faq_category_qnt {
    color: rgba(136, 136, 136, 1);
    font-size: var(--font24px);
    font-family: var(--textfont2);
}
.faq_category_wrap {
    margin-bottom: 20px;
}
/* medication pricing page start */
.common_searchbar_sec {
    background-color: rgba(19, 46, 75, 1);
    padding: 40px 0;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
.common_searchbar_sec .faq_searchbar_wrap {
    background: rgba(255, 255, 255, 0.2);

}
/* breadcrumb */
.breadcrumb_sec {
    padding-top: 45px;
}
.breadcrumb-item {
    font-size: var(--font20px);
    font-family: var(--textfont2);
    font-weight: 500;
    
}
.breadcrumb-item a {
    color: #000;
    text-decoration: none;
}
.breadcrumb-item.active {
    color: rgba(125, 125, 125, 1);
}
/* medication pricing section */
.medication_pricing_wrap_img {
    padding: 13px 16px;
    background-color: rgba(19, 46, 75, 1);
    width: fit-content;
    border-radius: 10px;
    margin-bottom: 20px;
}
.medication_pricing_wrap_img img {
    max-width: 43px;
}
.medication_pricing_wrap_text h3 {
    font-size: var(--font40px);
    font-weight: 700;
    font-family: var(--textfont2);
    margin-bottom: 10px;
    color: #000;
}
.medication_pricing_wrap_text p {
    font-size: var(--font22px);
    font-family: var(--textfont2);
    color: rgba(51, 51, 51, 1);
    margin-bottom: 40px;
}
.medication_pricing_qnt {
    font-size: var(--font20px);
    font-weight: 500;
    color: rgba(125, 125, 125, 1);
}
.medication_pricing_category_wrap {
    border: 1px solid rgba(220, 220, 220, 1);
    border-radius: 20px;
    padding: 45px 50px;
}
.medication_pricing_category_wrap li:not(:last-child) {
    margin-bottom: 45px;
}
.medication_pricing_category_wrap li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(51, 51, 51, 1);
    font-size: var(--font28px);
    font-family: var(--textfont2);
}
.medication_pricing_category_wrap li a i {
    font-size: var(--font20px);
    color: var(--bluish-color);
}


.product-grid .product-card {
    background: #fff !important;
    z-index: 9!important;
    padding: 20px !important;
    border-radius: 20px !important;
    margin-bottom: 30px !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
	position:relative !important;
}
      
@media screen and (min-width:1200px)  {
.product-grid .product-card .btn-buy-now{  

    position: absolute !important;
    top: 38px !important;
    right: 33px !important;
    padding: 10px 30px !important;
    background: #65A7C8 !important;
    border-radius: 16px !important;
    color: #fff !important;
 }
}

.product-grid .product-card .btn-buy-now{
padding: 10px 30px;
    background: #65A7C8 !important;
    border-radius: 16px !important;
    color: #fff !important;
}
form#commentform {
    padding: 20px;
    margin: 20px 0px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 12px;
}

.comment-form label{
margin-bottom: 10px !important;
}

.comment-form-author label{
margin-bottom: 0px;
margin-right: 10px;
}

.comment-form-email label{
margin-bottom: 0px;
margin-right: 10px;
}


/* glp product page fixing on 17-11-2025 */
.glp_product_sec .product_card_img a {
    width: 100%;
    display: inline-block;
}
.glp_product_sec .product_card_img a img {
    width: 100%;
}
.glp_product_sec .product_card {
    padding: 0;
}
.glp_product_sec .product_card .product_card_body {
    padding: 10px 25px;
}
.glp_product_sec .product_card .card-title {
    font-size: var(--font20px);
    margin-bottom: 20px;
}
.glp_product_sec .product_card .card-text p {
    font-size: var(--font18px);
    margin-bottom: 15px;
}
.glp_product_sec .product_card .card-text ul li {
    color: #000;
    font-size: var(--font18px);
    margin-bottom: 12px;
    list-style-type: disc;
}
.glp_product_sec .product_card .product_card_footer {
    padding: 20px;
    margin-top: 0;
}
.glp_product_sec .product_sec_row {
    --bs-gutter-y: 50px;
}
.glp-desc-sec h2 {
    font-size: var(--font28px);
    margin-bottom: 25px;
}
.glp-desc-sec p {
    font-size: var(--font18px);
    line-height: 1.6;
    margin-bottom: 0;
}

/* UI bug fixing start from here 18-11-2025 */
.hero-section .btn.btn-dark a{
	color: #fff;
	padding: 0.75rem 2rem;
	display: block;
    font-family: var(--textfont2);
}

.hero-section .btn.btn-dark{
	padding: 0;
    border-radius: 8px;
    background-color: var(--primary-bg-color);
}
header .log-in-btn {
    margin-right: -24px;
}
#menu-item-97 , #menu-item-255 {
    padding: 0;
}
#menu-item-97 a, #menu-item-255 a {
    padding: 9px 35px;
    font-family: var(--textfont2);
    font-size: var(--font20px);
    border-radius: 8px;
    display: block;
}
#menu-item-255 a {
    padding: 9px 29px;
}
header .log-in-btn, header .get-started {
    border-radius: 8px;
}
.hero-section h1 {
    color: #000;
}
.hp_how_it_works_row {
    align-items: center;
}
.hp_how_it_works .step-text {
    font-size: var(--font24px);
    line-height: 1.4;
}
.hp_how_it_works .primary_btn {
    background-color: transparent;
    border: 1px solid #226D98;
    color: #226D98;
    font-size: var(--font24px);
    padding: 14px 42px;
    margin-top: 15px;
}
.hp_faq_row {
    align-items: center;
}
.faq_sec .faq-item  { 
    padding: 22px 0;  
}
.faq_sec .faq-item p {
    font-size: var(--font24px);
    font-family: var(--textfont2);
    color: #000;
}
.faq_sec .faq-item .faq-answer p {
    font-size: var(--font20px);
}
.hp_community_sec p {
    font-size: var(--font24px);
    margin-bottom: 24px;
}
.hp_community_sec .community_img_wrap img{
    border-radius: 60px;
}
.hp_how_it_works .how-it-works-card {
    max-width: 688px;
    width: 84%;
    margin-left: auto;
    border-radius: 50px;
    overflow: hidden;
}
.hp_how_it_works .hp_how_it_works_content {
    padding-right: 20%;
}
.hp_community_sec_content {
    padding-right: 5%;
}
.faq_searchbar_wrap .is-form-style.is-form-style-3 input.is-search-input {
    padding: 10px 20px;
    height: auto;
    font-size: var(--font28px) !important;
    font-family: var(--textfont2);
    background: transparent;
    border: none !important;
    color:var(--themewhite) !important;
}
.faq_searchbar_wrap .is-form-style.is-form-style-3 input.is-search-input::placeholder {
    color:var(--themewhite) !important;
}






/* changes on 24-11-2025 */
.review-slider-wrapper .owl-item {
    background: #568CC712;
    padding: 25px;
    border-radius: 20px;
    overflow: hidden;
}
#menu-header li a {
    font-family: var(--textfont3);
    font-size: var(--font20px);
}
.hero-section .common_sec_width {
    max-width: 80.3%;
}
.hero-section h1 {
    font-size: var(--font65px);
    font-family: var(--textfont3);
    font-weight: 700;
    margin-bottom: 10px;
}
.hero-section p {
    font-size: var(--font24px);
    font-family: var(--textfont2);
    color: #000;
}
.hero-section {
    position: relative;
    z-index: 1;
}
.hero-section .design_element img{
    position: absolute;
    bottom: 100px;
    left: 90px;
    z-index: -1;
    width: 29.5%;
}
.hero-section .design_element img:nth-of-type(2){
    bottom: auto;
    top: 185px;
    left: auto;
    right: 100px;
    width: 34.8%;
}
.page-id-118 article, .page-id-699 article {
    padding: 35px 0px;
}
.page-id-118 .entry-header,  .page-id-699 .entry-header{
	background-color:unset;
    box-shadow: none;
    z-index: 0;
}
#menu-header li.current-menu-item a {
    color: rgba(101, 167, 200, 1);
}
#menu-header li.current-menu-item a:hover {
    color: rgba(101, 167, 200, 1);
}
.contact_us_page_sec .section_subtitle {
    margin-bottom: 50px;
}
.intro_text_email_wrap a {
    color: rgba(51, 51, 51, 1);
}
.contact_us_page_sec .privacy-text .form-check {
    margin-bottom: 40px;
}
footer.footer_sec {
    padding: 60px 0;
    background: rgba(237, 237, 237, 1);
}
.footer_text_email_wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer_text_email_wrap i {
    font-size: 20px;
    color: rgba(34, 109, 152, 1);
}
.footer_text_email_wrap a {
    margin: 0;
}
.footer-social-media p {
    margin-bottom: 0;
}