
body {
  font-family: "Poppins", sans-serif;
  color: #1C0217;
}
:root {
    --primary-font: 'Poppins', sans-serif;
    --title-font: 'Playfair Display', sans-serif;
    --primary-color: #1C0217;
    --title-color: #AE489BFF;
    --background-color-rgb: 0, 0, 0;
    --btn-color: #1579BA;
    --btn-text-color: #F9F9F9;
    --title-color-1: #F9F9F9;
    --first-text-color:#90387F;
    --second-text-color:#A02C75;
    --thread-text-color:#D181B4;
    --header-text-color: #F1EEEC;
    --header-background-color: #F1EEEC;
    --background-color: #F9F9F9;
    --color-white: #FFFFFF;
    --section-background-color: #F1EEEC;
    --color-secondary: #EBEBEB;
    --color-secondary-rgb: 72, 86, 100;
    /* Secondary colors */
    --color-secondary-light: #8f9fae;
    --color-secondary-dark: #3a4753;

    --color-secondary-light-rgb: 143, 159, 174;
    --color-secondary-dark-rgb: 58, 71, 83;

    --color-white-rgb: 255, 255, 255;
    --heading-color: #000;
    --text-color: #000;
    --primary-button-color: #fff;
    --top-header-background-color: #f7f7f7;
    --middle-header-background-color: #fff;
    --bottom-header-background-color: #fff;

    --header-text-secondary-color: rgba(0, 0, 0, 0.5);
    --header-deliver-color: rgba(0, 0, 0, 0.15);
    --footer-text-color: #555;
    --footer-heading-color: #555;
    --footer-hover-color: #064469;
    --footer-border-color: #dee2e6;
}

a {
    color:  var(--title-color);;
    text-decoration: none;
}
@media (max-width: 576px) {
    .container, .container-sm {
        padding: 0 35px;
    }
}
a:hover {
    color: var(--primary-color);
    text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.invalid-feedback {
    display:block;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    height: 112px;
    transition: all 0.5s;
    z-index: 997;
    background: var(--color-white);
    border-bottom: 2px solid var(--title-color);
}

.header .logo img {
    max-height: 40px;
    margin-right: 6px;
}
.header .logo img {
    padding: 0;
    margin: 0;
    max-height: 110px;
    height: 80px;
}
.header .logo h1 {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-secondary);
    font-family: var(--primary-font);
}

.header .logo h1 span {
    color: var(--primary-color);
    font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    font-size: 16px;
    color: var(--color-white);
    background: var(--primary-color);
    padding: 8px 23px;
    border-radius: 4px;
    transition: 0.3s;
    font-family: var(--primary-font);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--color-white);
    background: var(--primary-color);
}

@media (max-width: 1279px) {

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin-right: 50px;
    }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
        position: relative;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        flex-direction: column;
    }

    .navbar li {
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
    }

    .navbar a,
    .navbar a:focus {
        font-style: normal;
        font-weight: 700;
        font-size: 12px;
        line-height: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 5px;
        text-align: center;
        letter-spacing: 0.05em;
        color: var(--primary-color);
        text-transform: capitalize;
        position: relative;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        text-decoration: none;
        padding: 8px 9px 8px 9px;
        border-radius: 16px;
        background-clip: text, border-box;
        -webkit-background-clip: text, border-box;
        background: var(--header-text-color) linear-gradient(90deg, var(--header-text-color), var(--header-text-color)) no-repeat bottom;
        color: var(--primary-color);
    }


    .navbar .dropdown ul {
        padding: 12px;
        display: block;
        position: absolute;
        top: 100%;
        margin: 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        background: var(--header-background-color);
        box-shadow: 4px 6px 11px -3px rgba(0, 0, 0, 0.22);
        border-radius: 10px;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-weight: 700;
        font-size: 12px;
        line-height: 12px;
        text-transform: none;
        color: var(--primary-color);
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color:  var(--primary-color);
        background:var(--color-white);
    }


    .navbar .dropdown:hover>ul {
        opacity: 1;
        visibility: visible;
    }

    .navbar .megamenu {
        position: static;
    }

    .navbar .megamenu ul {
        right: 0;
        padding: 10px;
        display: flex;
        flex-direction: row;
    }

    .navbar .megamenu ul li {
        flex: 1;
    }


    .navbar .megamenu ul li a,
    .navbar .megamenu ul li:hover>a {
        color:  var(--color-white);
        background:var(--primary-color);
    }

    .navbar .megamenu ul li a:hover,
    .navbar .megamenu ul li .active,
    .navbar .megamenu ul li .active:hover {
        color:  var(--primary-color);
        background:var(--color-white);
    }



    .navbar .dropdown .dropdown ul{
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: 90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: 100%;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: calc(100% - 70px);
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 10px 0;
        margin: 0;
        background: var(--primary-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul .menu-secondary li {
        width: 100%;
    }
    .navbar ul .menu-primary li {
        width: 100%;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 500;
        color: var(--color-white);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: var(--color-white);
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-toggle {
        display: block !important;
        color: var(--color-secondary);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        top: 0;
        margin: 42px 0;
        z-index: 9999;
        right: 20px;
    }


    .mobile-nav-toggle.bi-x {
        color: var(--color-white);
    }

    .mobile-nav-active {
        overflow: hidden;
        z-index: 9995;
        position: relative;
    }

    .mobile-nav-active .navbar {
        left: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(var(--color-secondary-rgb), 0.8);
        z-index: 9996;
    }
}





.pillars {
    background: var(--section-background-color);
}

.pillars .section-header h2 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    text-align: justify;

}
.pillars .section-header p {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    align-items: center;
    text-align: justify;
    letter-spacing: -0.05em;
    text-transform: capitalize;
}
.pillars  .box .card {
    height: 17rem;
    width: 100%;
    background: var(--background-color);
    box-shadow: 0px 4px 4.7px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.pillars .box {
    padding: 0;
    width: 100%;
    margin: 5px;
}

.pillars .box article {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    transition: all 0.5s ease;
}

.pillars .box h2 {
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    border-bottom: #fff solid 1px;
}

.pillars .box h4 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
}

.pillars .box img {
    border-radius: 0;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    height: 50px;
    transition: all 4s ease;
}

.pillars .ver_mas {
    background: var(--section-background-color);
    box-shadow: 0px 4px 4.7px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 2;
    opacity: 0;
    padding-left: 7px;
    padding-right: 7px;
    transform: translate(0px, 70px);
    transition: all 0.2s ease-in-out;
}

.pillars .ver_mas span {
    position: relative;
    margin: 0 auto;
    width: 100%;
    top: 13px;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    font-family: var(--primary-font);
    color: var(--primary-color);
    text-transform: capitalize;
}

.pillars .box:hover {
    cursor: pointer;
    background: var(--section-background-color);
    box-shadow: 0px 4px 4.7px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.pillars .box:hover h4 {
    color: var(--color-white);
}

.pillars .box:hover img {
    opacity: 0.0;
    transform: scale(1.5);
}

.pillars .box:hover article {
    opacity: 0.0;
}

.pillars  .box:hover .ver_mas {
    transform: translate(0px, 0px);
    opacity: 1;
}

.pillars .read-more {
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    border: 1px solid var(--btn-text-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    text-transform: capitalize;
    color:var(--btn-text-color);
}

.pillars .read-more:hover {
    border: 1px solid var(--btn-text-color);
    background: var(--btn-text-color);
    color:var(--title-color);
}




.about {
    background: var(--section-background-color);
}
.about .about-item h3 {
    font-weight: 700;
    font-size: 28px;
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color:var(--title-color);
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about .about-item p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    text-transform: capitalize;
    margin-bottom: 0;
}


.exploreFurtherWithAYWAH {
    --default-color: #ffffff;
    --background-color: #000000;
    --background-color-rgb: 0, 0, 0;
    padding: 80px 0;
    position: relative;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}


.exploreFurtherWithAYWAH:before {
    content: "";
    background: rgba(var(--background-color-rgb), 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.exploreFurtherWithAYWAH .container {
    position: relative;
    z-index: 3;
}

.exploreFurtherWithAYWAH h3 {
    font-weight: 700;
    font-size: 28px;
    font-family: var(--title-font);
    font-style: normal;
    text-align: center;
    text-transform: capitalize;
    color:var(--title-color-1);
}

.exploreFurtherWithAYWAH p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    text-transform: capitalize;
    color:var(--title-color-1);
}

.exploreFurtherWithAYWAH .exploreFurtherWithAYWAHBtn {
    padding: 10px 50px;
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    border: 1px solid var(--btn-text-color);
    border-radius: 95px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    text-transform: capitalize;
    color:var(--btn-text-color);
}

.exploreFurtherWithAYWAH .exploreFurtherWithAYWAHBtn:hover {
    border: 1px solid var(--btn-text-color);
    background: var(--btn-text-color);
    color:var(--title-color);
}





.faq {
    background: var(--section-background-color);
}
.faq .content h3 {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq .section-title span {
    font-weight: 700;
    color:var(--primary-color);
    font-family: var(--primary-font);
}

.faq .section-title p{
    font-family: var(--primary-font);
    text-align: left;
}
.faq .content h3 {
    font-weight: 400;
    font-size: 28px;


}

.faq .content p {
    font-size: 15px;
    /* color: #727272;*/
}

.faq .faq-container .faq-item {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.faq .faq-container .faq-item::after {
    content: '';
    position: absolute;
    top: 100%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #D3D3D3;
    z-index: -1;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    /*font-weight: 600;*/
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--primary-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--primary-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;

}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
    color: var(--primary-color);
    /*background: #F2F2F2;*/
    padding: 5px;
    border-radius: 100%;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--primary-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--primary-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--primary-color);
    /* background: #ED553B;*/
    font-size: 14px;
    padding: 5px;
    border-radius: 100%;
}

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

.symptom-management::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(144, 56, 127, 0.65);
    z-index: -1;
}

.symptom-management p {
    color: var(--color-white);
    font-family: var(--primary-font);
}
.tips {
    background: var(--section-background-color);
}
.tips .content+.content {

}

.tips .content span {
    font-weight: 700;
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--primary-font);
}

.tips .content p{
    font-family: var(--primary-font);
    text-align: left;
}
.tips .content p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .tips {
        display: flex;
    }
}

@media (max-width: 767px) {
    .tips {
        display: flex;
    }
}

.tips .tips-btn {
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    text-transform: capitalize;
    text-decoration-line: none;
}
.sexual-health-tips .section-title h2 {
    font-weight: 700;
    font-size: 28px;
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color:var(--header-text-color);
    background: var(--header-text-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sexual-health-tips .section-title p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    text-transform: capitalize;
    margin-bottom: 0;
    color:var(--header-text-color);
}
.sexual-health-tips .content+.content {

}

.sexual-health-tips .content span {
    font-weight: 700;
    color:var(--header-text-color);
    font-family: var(--primary-font);
}

.sexual-health-tips .content p{
    font-family: var(--primary-font);
    text-align: left;
    color:var(--header-text-color);
}
.sexual-health-tips .content p:last-child {
    margin-bottom: 0;
}

.sexual-health-tips .sexual-health-tips-btn {
    color:var(--header-text-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    text-transform: capitalize;
    text-decoration-line: none;
}
.product-recommendations {
    background: var(--section-background-color);
}
.product-recommendations .content span {
    font-weight: 700;
    color:var(--header-text-color);
    font-family: var(--primary-font);
}

.product-recommendations .content::before {
    content: "";
    background: rgba(144, 56, 127, 0.65);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 8px
}

.product-recommendations .content p{
    font-family: var(--primary-font);
    text-align: left;
    color:var(--header-text-color);
}


.product-recommendations .content p:last-child {
    margin-bottom: 0;
}

.product-recommendations .product-recommendations-btn {
    padding: 10px 50px;
    display: block;
    width: 100%;
    background-color: var(--btn-text-color);
    color: var(--primary-color);
    border: 1px solid var(--title-color);
    border-radius: 95px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    text-transform: capitalize;
}
.product-recommendations .section-title h3 {
    color: var(--color-white);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}
.product-recommendations .product-recommendations-btn:hover {
    border: 1px solid var(--btn-text-color);
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    color:var(--header-text-color);
}


.play-btn {
    width: 94px;
    height: 94px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    z-index: 100;
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    border-radius: 50%;
    display: block;
    overflow: hidden;
}

.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(144, 56, 127, 0.65);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
    border-left: 15px solid #AE489BFF;
    transform: scale(20);
}
.play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

#register {
    width: 100%;
    padding: 150px 0;
    overflow: hidden;
    position: relative;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


#register .item-position {
    display: inline-grid;
}
#register .logo-position{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#register .logo{
    width: 250px;
    height: 150px;
    background: rgba(93, 93, 93, 0.4);
    /* #064469 */
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}




#register .btn-register {
    height: 102px;
    margin: 29px 0;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    border-radius: 10px;
    width: 200px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    text-align: justify;
    text-transform: capitalize;
    color: #F9F9F9;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#register .btn-register a {
    color: inherit;
    text-decoration: none;
}

#register .btn-register:hover {
    background: rgb(255 255 255 / 0%);
    border: 2px solid #064469;
}

@media (max-width: 1250px) {

}
@media (max-width: 500px) {

    #register .submit {
        width: 100%;
    }
}

@media (max-height: 500px) {

}

#register .bg-register {
    background: var(--color-white);
    border-radius: 24px;
}
#register .required-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 0 0.25rem;
}
#register .required-label i{
    font-family: var(--primary-font);
    font-size: 14px;
    color: var(--title-color);
    padding-right: 0.25rem;
}

#register .upload__box {
    position: relative;
}

#register .upload__inputfile {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

#register .upload__btn {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    height: 64px;
    background: #2E4049;
    text-align: center;
    color: #FFFFFF;
    border: 0;
    border-radius: 8px;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
}

#register .upload__btn:hover {
    background-color: unset;
    color: #4045ba;
    transition: all .3s ease;
}

#register .upload__btn-box {
    margin-bottom: 10px;
}

#register .upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

#register .upload__img-box {
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 12px;
}

#register .upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 45%;
    right: 0%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

#register .upload__img-close:after {
    content: '\2716';
    font-size: 14px;
    color: white;
}

#register .img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

#register .document-bg {
    background-color: #EFEFEF;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    width: 100%;
    height: 100%;
}
#register .document-bg a{
    color: var(--primary-color);
    line-height: 30px;
    font-size: 12px;
}
#register .document-bg a:hover{
    color: var(--title-color);
}

#register .document-bg:hover {
    background-color: #afb0c14f;
    transition: background-color 0.3s ease;
}
#register .link-file {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-decoration-line: underline;
    text-transform: capitalize;
}
#register .title h2  {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    text-transform: capitalize;
}

#register .form-control {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .form-control:focus {
    height: 42px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .form-control:-webkit-autofill {
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .select2-container--default .select2-selection--single  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
#register .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-container--default .select2-selection--single  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    min-height: 32px;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.select2-container--default .select2-selection--multiple  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
    min-height: 32px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 0;
}

#register .submit {
    color: var(--header-text-color);
    font-family: var(--primary-font);
    background: var(--title-color);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    width: 100%;
    height: 64px;

    text-align: center;
    border: 0;
    border-radius: 16px;
}

#register .title h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 44px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--title-color);
}
#register .title span {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 23px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--primary-color);

}
#register h4 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 19px;

    color: var(--primary-color);
}

/* checkbox */
#register .form-control-checkbox {
    width: 21.52px;
    height: 22px;
    border: 1px solid var(--primary-color);
    background-color: transparent; /* Set the background-color to transparent */
    border-radius: 0;
    margin-top: 0;
}
#register .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
#register .form-control-checkbox-group {
    display: flex;
    align-items: center;
}
#register .form-check-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    width: 100%;
    text-decoration-line: none;
    color: #212121;
    padding-left: 12px;
}
#register .form-check-label a{
    color: #212121;
}
#register .logo-img {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    padding: 0 0.75rem;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
#register .logo-img img {
    width: 200px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/



#hero {
    width: 100%;
    height: 95vh;
    background: linear-gradient(to top, rgba(144, 56, 127, 0.65), transparent);
    overflow: hidden;
    position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 37px;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#hero .carousel-item::before {
    content: "";
    z-index: -1;
  background: linear-gradient(to top, rgba(144, 56, 127, 0.65), transparent);
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero h2 {
    font-weight: 700;
    font-size: 28px;
    color:var(--title-color-1);
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
}

#hero p {
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    font-family: var(--title-font);
    color:var(--title-color-1);
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--primary-color);
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: var(--primary-color);
}

#hero .btn-get-started:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    #hero {
        height: 100vh;
    }

    #hero .carousel-container {
        top: 8px;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}







.medical_societies {
    padding: 60px 0;
    background-color: var(--primary-color);
}
.medical_societies .section-header{
    margin-bottom: 30px;
    color: var(--title-color);
    font-family: var(--primary-font);
    text-align: center;

    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
}

.medical_societies .medical_societie-item {
    padding: 40px;
    background: #fff;
    height: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.medical_societies .medical_societie-item .icon {
    width: 60%;
    height: 100%;
    position: relative;
}

.medical_societies .medical_societie-item:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(238, 238, 238, 0);
    z-index: 1;
    transition: 0.3s;
    border-radius: 10px;

}

.medical_societies .medical_societie-item:hover:before {
    background: rgb(238 238 238);
}
.medical_societies .medical_societie-item .text-inside {
    position: absolute;
    display: grid;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;



}

.medical_societies .medical_societie-item:hover .text-inside {
    opacity: 1;
}


.home_features {
    padding: 75px 0 30px 0;
    position: relative;
    z-index: 3;
}

.home_features .icon-boxes .icon-box {
    text-align: center;
    background: #fff;
    padding: 20px;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}

.home_features .icon-boxes .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}

.home_features .icon-boxes .icon-box p {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    color: #17355C;
}
.home_features .icon-boxes .aos-animate:not(:last-child) {
    position: relative;
}

.home_features .icon-boxes .aos-animate:not(:last-child)::after {
    content: "";
    display: block;
    width: 2px;
    height: 65%;
    background-color: #A8B5B6;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(30%);
}
@media (max-width: 768px) {
    .home_features .icon-boxes .aos-animate:not(:last-child)::after {
        display: none;
    }
}

.home_request {
    padding: 60px 0;
    margin-bottom: 60px;

}

.home_request .container {
    padding: 80px;
    background: var(--section-background-color);
    border-radius: 100px;
}

@media (max-width: 992px) {
    .home_request .container {
        padding: 60px;
    }
}

.home_request .content h3 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
}



.home_request .content p {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
}
.home_request .content h2 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
}
.home_request .content ul {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
}
.home_request .post-image {
    height: 175px;
    background-size: cover;
    background-position: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.home_request .btn-book-a-table {
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 0px;
    margin: 12px 0;
    width: 100%;
    border-radius: 12px;
    border: 3px solid #d2d8d9;
    transition: 0.5s;
    background: #a8b5b6;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
}

.home_request .btn-book-a-table:hover {
    border: 3px solid #a8b5b6;
    background: #d2d8d9;
}


.reach_out_to_us {
    padding: 60px 0;
}

.reach_out_to_us .container {
    padding: 60px;
    background: var(--section-background-color);
    border-radius: 100px;
}

@media (max-width: 992px) {
    .reach_out_to_us .container {
        padding: 60px;
    }
}

.reach_out_to_us .content p {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
}


.reach_out_to_us .section-title h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
}

.reach_out_to_us .btn-book-a-table {
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 60px;
    border-radius: 12px;
    border: 3px solid #d2d8d9;
    transition: 0.5s;
    background: #a8b5b6;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
}

.reach_out_to_us .btn-book-a-table:hover {
    border: 3px solid #a8b5b6;
    background: #d2d8d9;
}

.recent-posts .read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    color: #7D306E; /* Fallback solid text color */
    border: 2px solid #D56DC1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.recent-posts .read-more-link i {
    transition: transform 0.3s ease;
}

.recent-posts .read-more-link:hover {
    background: linear-gradient(311.19deg, #D56DC1, #AE489B, #90387F, #7D306E);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

.recent-posts .read-more-link:hover i {
    transform: translateX(4px);
}

.recent-posts .register-now-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(311.19deg, #D56DC1, #AE489B, #90387F, #7D306E);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.recent-posts .register-now-link i {
    transition: transform 0.3s ease;
}

.recent-posts .register-now-link:hover {
    background-color: color-mix(in srgb, var(--primary-color, #69085C), white 20%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.recent-posts .register-now-link:hover i {
    transform: translateX(4px);
}


.stakeholders h3 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
}
.stakeholders p {
    color: var(--primary-color);
    font-family: var(--primary-font);

    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    align-items: center;
    text-align: center;
    letter-spacing: -0.05em;
    text-transform: capitalize;
}



.alliances {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.alliances::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.alliances .section-title h2 {
    color: var(--color-white);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}


.alliances .alliance-item {
    text-align: center;
    color: var(--color-white);
}

.alliances .alliance-item .alliance-img {
    width: 100px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    margin: 0 auto;
}

.alliances .alliance-item h3 {
    margin: 10px 0 5px 0;
    color: var(--color-white);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 15px;
}

.alliances .alliance-item h4 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.alliances .alliance-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}



@media (min-width: 992px) {
    .alliances .alliance-item p {
        width: 80%;
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f3f2;
}

.section-title {
  padding-bottom: 30px;
  text-align: center;
}

.section-title h2 {
    font-weight: 700;
    font-size: 28px;
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color:var(--title-color);
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h3 {
    font-weight: 400;
    font-size: 28px;
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color: var(--primary-color);
}
.section-title p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    text-transform: capitalize;
    margin-bottom: 0;
}


.home-page .features .content+.content {
    margin-top: 100px;
}

.home-page .features .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: #62B247;
    margin-left: 50px;
    margin-right: 50px;
}

.home-page .features .content p{
    text-align: justify;
    margin: 0 50px;
}
.home-page .features .content p:last-child {
    margin-bottom: 0;
}

.home-page .features .content .col-md-7  {
    display: flex;
    align-items: center;
}

.home-page .features .content img {
    width: 450px;
    height: 450px;
    box-shadow: 0px 4px 47px rgba(0, 0, 0, 0.09);
    border-radius: 20px;
}

.home-page .features_mobile_responsive {
    display: none;
}

.home-page .features_mobile {
    margin: 50px 0;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.home-page .features_mobile h3 {
    font-weight: 600;
    font-size: 26px;
    color: #ffffff;
    margin-left: 50px;
    margin-right: 50px;
    text-align: left;
}

.home-page .features_mobile p {
    text-align: justify;
    margin: 0 50px;
    color: #ffffff;

}

@media (min-width: 768px) {
    .home-page .features {
        display: flex;
    }

    .home-page .features_mobile_responsive {
        display: none;
    }
}

@media (max-width: 767px) {
    .home-page .features {
        display: none;
    }
    .home-page .features_mobile_responsive {
        display: block;
    }

}




.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.user-avatar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;
    margin: 0 30px;
}

.user-avatar a {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 12px;
    text-align: right;
    text-transform: capitalize;
    color: #000000;
    padding: 10px 5px;
    border: 2px solid #000000;
}

.logout-button a {
    color: #333;
    text-decoration: none;
}
.profile {
    margin: 0 30px;
}
@media (max-width: 990px) {
    .logout-button {
        margin-right: 0;
    }
    .user-avatar {
        justify-content: start;
        margin: 0 20px;
    }
    .profile {
        margin: 0;
    }
}


input.-internal-autofill-selected {
    background-color: transparent !important;
}


#pagination-links .pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #064469;
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: #064469;
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: #064469;
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem #064469;;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #064469;
    --bs-pagination-active-border-color: #064469;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

.progress, .progress-stacked {
    height: 11px;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: var(--bs-secondary-bg);
    --bs-progress-border-radius: var(--bs-border-radius);
    --bs-progress-box-shadow: var(--bs-box-shadow-inset);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: #064469;
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color: #064469;
    border-radius: var(--bs-progress-border-radius);
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
    content: attr(data-browse);
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
    padding: 0.9rem 0.75rem;
    overflow: hidden;
    line-height: 1.5;
    color: #495057;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 48px;padding: 0.9rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 31px;
    position: absolute;
    top: 6px;
    right: 1px;
    width: 20px;
}


.research_alliances {
    background: var(--section-background-color);
}
.research_alliances .section-header h2 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}
.research_alliances .section-header p {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    align-items: center;
    text-align: center;
    letter-spacing: -0.05em;
    text-transform: capitalize;
}


.research_alliances .box {
    background: #FFFFFF;
    box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.42);
    /* height: 100%; */
    padding: 30px 30px;
    text-align: center;
    transition: 0.3s;
    /* min-height: 359px; */
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

}

.research_alliances .box .icon {
    border-radius: 100%;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    transition: 0.3s;
    height: 50px;
}

.research_alliances .box h3 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    min-height: 42px;
    color: var(--title-color);
}
.research_alliances .box p {
    padding: 10px 0;
    min-height: 92px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: var(--primary-color);
    margin: 0;
}

.research_alliances .box .read-more {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: var(--primary-color);
    text-transform: uppercase;
}






.about_us_contents {
    background: var(--color-white);
}
.about_us_contents .section-header h2 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}
.about_us_contents .section-header p {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    align-items: center;
    text-align: center;
    letter-spacing: -0.05em;
    text-transform: capitalize;
}




#view-modal .modal-footer a{
    background: var(--primary-color);
    font-family: var(--primary-font);
    color: var( --color-white);
    border-radius: 20px;
    border: var(--bs-btn-border-width) solid var(--primary-color);
}
#view-modal #frm_add span {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: justify;
}
#view-modal .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border:0;
    /* border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color); */
    /* border-top-left-radius: var(--bs-modal-inner-border-radius); */
    /* border-top-right-radius: var(--bs-modal-inner-border-radius); */
}
#view-modal .modal-header h4 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
}
#view-modal .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}
#view-modal .modal-footer {
    display: flex;
    width: 100%;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--bs-modal-footer-bg);
    border:0;
    text-align: center;
}
.icon_close {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    width: 100%;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 18px;
}
.request_service  {
    background: var(--section-background-color);
}
.request_service .section-header {
    padding: 10px 0;
}
.request_service .section-header h2 {
    color: var(--title-color);
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;

}
.request_service .section-header p {
    color: var(--heading-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    letter-spacing: -0.05em;
    text-transform: capitalize;
}

.request_service .title h2 {
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}
.request_service .title p {
    color: var(--heading-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    letter-spacing: -0.05em;
    text-transform: capitalize;

}

.request_service .consultBtn {
    padding: 10px 50px;
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    border: 0;
    border-radius: 95px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    text-transform: capitalize;
    color:var(--btn-text-color);
}

.request_service .consultBtn:hover {
    border: 1px solid var(--btn-text-color);
    background: var(--btn-text-color);
    color:var(--title-color);
}
.request_service  .btn-start:hover {
    background: var(--primary-color);
}
.request_service  .btn-start {
    color: var(--color-white);
    background: var(--btn-color);
    border: 0;
    padding: 12px 34px;
    width: 100%;
    gap: 10px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

.request_service .required-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--heading-color);
    padding: 0;
}
.request_service .title-label {
    font-family: var(--heading-color);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--heading-color);
    padding: 0;
}
.request_service .required-label i{
    font-family: var(--primary-font);
    font-size: 14px;
    color: var(--title-color);
    padding-right: 0.25rem;
}


.request_service .title h2  {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    text-transform: capitalize;
}

.request_service .form-control  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;

    color: #212121;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.request_service .form-control:focus {
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.request_service .form-control:-webkit-autofill {
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.request_service .select2-container--default .select2-selection--single  {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;

    color: var(--heading-color);
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.request_service .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}


.request_service .title h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 44px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--heading-color);
}
.request_service .title span {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 23px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--heading-color);

}
.request_service h4 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 19px;

    color: var(--heading-color);
}

/* checkbox */
.request_service .form-control-checkbox {
    width: 21.52px;
    height: 22px;
    border: 1px solid #212121;
    background-color: transparent; /* Set the background-color to transparent */
    border-radius: 0;
    margin-top: 0;
}
.request_service .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.request_service .form-control-checkbox-group {
    display: flex;
    align-items: center;
}
.request_service .form-check-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    width: 100%;
    text-decoration-line: none;
    color: #212121;
    padding-left: 12px;
}
.request_service .form-check-label a{
    color: #212121;
}



.form-switch {
    padding-left: 2.5em;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tox-tinymce {
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.recent-posts {
    background: var(--section-background-color);
}
.recent-posts article {
    box-shadow: 0 4px 16px rgba(var(--color-secondary-dark-rgb), 0.1);
    padding: 30px;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    background: var(--color-white);
}

.recent-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
    height: 350px;
    background-size: cover;
    background-position: center;
}

.recent-posts .post-details .post-category {
    font-size: 16px;
    color: var(--title-color);
    margin-bottom: 10px;
}
.recent-posts .post-details .post-description {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    min-height: 100px;
}
.recent-posts .post-details .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--title-color);
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    min-height: 48px;
}

.recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.recent-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-posts .post-date {
    font-size: 14px;
    color: rgba(var(--default-color-rgb), 0.5);
    margin-bottom: 0;
}

.recent-posts .read-more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 10px 20px;
    gap: 10px;
    background: var(--title-color);
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #FFFFFF;
}
.recent-posts .read-more:hover {
    background-color: var(--primary-color);
}

.recent-posts .recent-posts-btn {
    padding: 10px 50px;
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    border: 1px solid var(--btn-text-color);
    border-radius: 95px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    text-transform: capitalize;
    color:var(--btn-text-color);
}

.recent-posts .recent-posts-btn:hover {
    border: 1px solid var(--btn-text-color);
    background: var(--btn-text-color);
    color:var(--title-color);
}

.recent-posts .select2-container--default .select2-selection--single  {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    min-height: 42px;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 5px;
    background: none;
}
.recent-posts .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.recent-posts .select2-container--default .select2-selection--multiple  {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 5px;
    background: none;
    min-height: 42px;
}
.recent-posts .select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 0;
}

.recent-posts .form-control {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    padding: 0.375rem 0.75rem;
    color: #212121;
    min-height: 42px;
    border: 1px solid #727272;
    border-radius: 5px;
    background: none;
}
.recent-posts .form-control:focus {
    min-height: 42px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.recent-posts .form-control:-webkit-autofill {
    min-height: 42px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}
.recent-posts .section-title h2 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}
.blog .posts-list article {
    box-shadow: 1px 1px 26px -6px rgba(0, 0, 0, 0.356);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 15px;
    overflow: hidden;
}

.blog .posts-list .post-category {
    font-size: 16px;
    color: rgba(var(--title-color), 0.6);
    margin-bottom: 10px;
}

.blog .posts-list .title {
    font-size: 22px;
    font-weight: 700;
    padding: 0px;
    margin: 0px 0px 20px;
}

.blog .posts-list .title a {
    color: var(--title-color);
    transition: all 0.3s ease 0s;
}

.blog .posts-list .title a:hover {
    color: var(--primary-color);
}

.blog-details .article {
    box-shadow: 1px 1px 26px -6px rgba(0, 0, 0, 0.356);
    padding: 30px;
}

.blog-details .post-img {
    overflow: hidden;
   /* margin: -30px -30px 15px -30px;*/
    height: 400px;
    background-size: cover;
    background-position: center;
}

.blog-details .title {
    color: var(--title-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0px;
    margin: 30px 0px;
    font-family: var(--primary-font);
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
    font-family: var(--primary-font);
}



.blog-details .meta-top {
    margin-top: 20px;
    color: rgba(var(--title-color), 0.6);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0px;
    margin: 0px;
}

.blog-details .meta-top ul li + li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(var(--title-color), 0.6);
}

.blog-details .meta-top a {
    color: rgba(var(--title-color), 0.6);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}


.blog-details .sidebar {
    padding: 30px;
    box-shadow: 1px 1px 26px -6px rgba(0, 0, 0, 0.356);
}
.blog-details .sidebar .recent-posts {
    background: none;
}

.blog-details .sidebar .sidebar-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0px;
    margin: 0px;
    font-family: var(--primary-font);
}

.blog-details .sidebar .sidebar-item + .sidebar-item {
    margin-top: 40px;
}


.blog-details .sidebar .categories ul {
    list-style: none;
    padding: 0px;
}

.blog-details .sidebar .categories ul li + li {
    padding-top: 10px;
}

.blog-details .sidebar .categories ul a {
    color: rgba(var(--primary-color), 0.8);
    transition: all 0.3s ease 0s;
    font-family: var(--primary-font);
}

.blog-details .sidebar .categories ul a:hover {
    color: var(--btn-color);
}

.blog-details .sidebar .categories ul a span {
    padding-left: 5px;
    color: rgba(var(--primary-color), 0.5);
    font-size: 14px;
    font-family: var(--primary-font);
}

.blog-details .sidebar .recent-posts .post-item {
    display: flex;
    margin-top: 15px;
}

.blog-details .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px;
}

.blog-details .sidebar .recent-posts h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: var(--primary-font);
}

.blog-details .sidebar .recent-posts h4 a {
    color: var(--primary-color);
    transition: all 0.3s ease 0s;
    font-family: var(--primary-font);
}

.blog-details .sidebar .recent-posts h4 a:hover {
    color: var(--btn-color);
}

.blog-details .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(var(--btn-color), 0.5);
    font-family: var(--primary-font);
}

.blog-details .sidebar .tags {
    margin-bottom: -10px;
}

.blog-details .sidebar .tags ul {
    list-style: none;
    padding: 0px;
}

.blog-details .sidebar .tags ul li {
    display: inline-block;
    width: 100%;
}

.blog-details .sidebar .tags ul a {
    color: var( --header-text-color);
    font-size: 14px;
    font-family: var(--primary-font);
    padding: 6px 14px;
    margin: 0px 6px 8px 0px;
    border: 1px solid var(--btn-color);
    background: var(--btn-color);
    display: inline-block;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.blog-details .sidebar .tags ul a:hover {
    color: var( --header-text-color);
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}

.blog-details .sidebar .tags ul a span {
    padding-left: 5px;
    color: var(--btn-color);
    font-size: 14px;
    font-family: var(--primary-font);
}

.health-assessment {
    background: var(--section-background-color);
}
.health-assessment .nav-tabs {
    border: 0;
}

.health-assessment .nav-tabs .nav-item .nav-link {
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color:var(--title-color);
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 15px 0;
    transition: 0.3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
}

.health-assessment .nav-tabs .nav-item .nav-link:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(269.32deg, rgba(213, 109, 193, 0) 0%, #AE489B 54.66%, rgba(125, 48, 110, 0) 98.82%);
    transition: all 0.3s ease-in-out 0s;
}

.health-assessment .nav-tabs .nav-item:last-child .nav-link:before {
    height: 0;
}
.health-assessment .nav-tabs .nav-item .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.health-assessment .nav-tabs .nav-item .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 575px) {
    .health-assessment .nav-tabs .nav-item .nav-link h4 {
        font-size: 16px;
    }
}

.health-assessment .nav-tabs .nav-item .nav-link:hover {
    color: var(--primary-color);
    text-decoration: underline
}

.health-assessment .nav-tabs .nav-item .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    text-decoration: auto;
    text-decoration: underline
}

.health-assessment .tab-content {
    margin-top: 10px;
}

.health-assessment .tab-pane h3 {
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    color: var(--title-color);
}

.health-assessment .tab-pane .laine:after {

    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(269.32deg, rgba(213, 109, 193, 0) 0%, #AE489B 54.66%, rgba(125, 48, 110, 0) 98.82%);
    transition: all 0.3s ease-in-out 0s;
}

.health-assessment .tab-pane ul {
    list-style: none;
    padding: 0;
}

.health-assessment .tab-pane ul li {
    padding-top: 10px;
}

.health-assessment .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--primary-color);
}

.health-assessment .tab-pane p:last-child {
    margin-bottom: 0;
}

.health-assessment .btn-start:hover {
    background: var(--primary-color);
}

.health-assessment .btn-start {
    padding: 10px 50px;
    display: block;
    width: 100%;
    border:0;
    color: var(--color-white);
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    border-radius: 95px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    text-transform: capitalize;
}
.health-assessment .btn-start {
    padding: 10px 50px;
    display: block;
    width: 100%;
    border:0;
    color: var(--color-white);
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    border-radius: 95px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    text-transform: capitalize;
}
.health-assessment .btn-start:hover {
    background: var(--primary-color);
}


.health-assessment .form-check-input {
    border: var(--bs-border-width) solid var(--primary-color);
    --bs-form-check-bg: var(--section-background-color);
}
.health-assessment .col-form-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--primary-color);
}
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.health-assessment .required-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 0 0.25rem;
}

.health-assessment .required-label i {
    font-family: var(--primary-font);
    font-size: 14px;
    color: var(--title-color);
    padding-right: 0.25rem;
}

.health-assessment .message-resulte {
    font-family: var(--primary-font);
    font-style: normal;
    line-height: 25px;
    text-transform: capitalize;
    font-weight: 700;
    font-size:18px;
    background: linear-gradient(311.19deg, #D56DC1 -1.57%, #AE489B 17.24%, #90387F 54.27%, #7D306E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.health-assessment h5 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-style: normal;
    line-height: 25px;
    text-transform: capitalize;
    font-weight: 700;
    margin:5px 0;
    font-size:18px;
}

.health-assessment .form-control {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: var(--primary-color);
    min-height: 48px;
    border-radius: 8px;
    background: none;
}

.health-assessment .form-control:focus {
    min-height: 48px;
    border-radius: 8px;
    background: none;
}

.health-assessment .form-control:-webkit-autofill {
    min-height: 48px;
    border-radius: 8px;
    background: none;
}

.health-assessment .select2-container--default .select2-selection--single {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;

    color: var(--primary-color);
    height: 48px;
    border-radius: 8px;
    background: none;
}

.health-assessment .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}


.health-assessment .title h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 44px;
    /* identical to box height, or 176% */

    color: var(--primary-color);
}


/* checkbox */
.health-assessment .form-control-checkbox {
    width: 21.52px;
    height: 22px;
    border: 1px solid var(--title-color);
    background-color: transparent; /* Set the background-color to transparent */
    border-radius: 0;
    margin-top: 0;
}


.health-assessment .form-control-checkbox-group {
    display: flex;
    align-items: center;
}

.health-assessment .form-check-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    width: 100%;
    text-decoration-line: none;
    color: var(--primary-color);
    padding-left: 12px;
}


.health-assessment #other_location {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: var(--primary-color);
    min-height: 32px;
    border: 0;
    border-bottom: 1px solid var(--title-color);
    border-radius: 0px;
    background: none;
}

.health-assessment #other_location:focus {
    border: 0;
    border-bottom: 1px solid var(--title-color);
    border-radius: 0px;
    min-height: 32px;
    background: none;
}

.health-assessment #other_location:-webkit-autofill {
    border: 0;
    border-bottom: 1px solid var(--title-color);

    border-radius: 0px;
    min-height: 32px;
    background: none;
}

.health-assessment .content .back {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: start;
}

.health-assessment .content .back i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.health-assessment .content .back:hover {
    padding-right: 19px;
}

.health-assessment .content .back:hover i {
    margin-left: 10px;
}


.membership-form .membership-card {
    min-height: 540px;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.membership-form .membership-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.membership-form .membership-card.popular {
    background: var(--primary-color);
    color: var(--color-white);
}


.membership-form .membership-card.popular .btn-light {
    background: var(--color-white);
    color: var(--primary-color);
}

.membership-form .membership-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.membership-form .membership-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.membership-form .membership-card .price {
    margin-bottom: 1rem;
}

.membership-form .membership-card .price div {
    margin-bottom: 0.5rem;
}

.membership-form .membership-card .price .currency,
.membership-form .membership-card .price .amount,
.membership-form .membership-card .price .period {
    font-size: 1.1rem;
}

.membership-form .membership-card .description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.membership-form .membership-card .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.membership-form .membership-card .btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--color-white);
}

.membership-form .membership-card .btn-light:hover {
    background: color-mix(in srgb, var(--color-white), transparent 10%);
}

.membership-form .g-recaptcha {
    transform: scale(0.92);
    transform-origin: 0 0;
}

.membership .membership-card {
    height: 100%;
    min-height: 540px;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.membership .membership-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.membership .membership-card.popular {
    background: var(--primary-color);
    color: var( --color-white);
}

.membership .membership-card.popular h3,
.membership .membership-card.popular h4 {
    color: var( --color-white);
}

.membership .membership-card.popular .price .currency,
.membership .membership-card.popular .price .amount,
.membership .membership-card.popular .price .period {
    color: var( --color-white);
}

.membership .membership-card.popular .features-list li {
    color: var( --color-white);
}

.membership .membership-card.popular .features-list li i {
    color: var( --color-white);
}

.membership .membership-card.popular .btn-light {
    background: var( --color-white);
    color: var(--primary-color);
}

.membership .membership-card.popular .btn-light:hover {
    background: color-mix(in srgb, var( --color-white), transparent 10%);
}

.membership .membership-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var( --color-white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.membership .membership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.membership .membership-card .price {
}

.membership .membership-card .price .currency {
    font-weight: 600;
    vertical-align: top;
    line-height: 1;
}

.membership .membership-card .price .amount {
    font-weight: 700;
    line-height: 1;
}

.membership .membership-card .price .period {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.membership .membership-card .description {
    font-size: 0.975rem;
}

.membership .membership-card h4 {
    margin-bottom: 1rem;
}

.membership .membership-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.membership .membership-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.membership .membership-card .features-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.membership .membership-card .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.membership .membership-card .btn.btn-primary {
    background: var(--primary-color);
    border: none;
    color: var( --color-white);
}

.membership .membership-card .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--primary-color), transparent 15%);
}

.buyhelp-products .product-card {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: calc(10px + .0025 * (100vw - 320px));
}

.buyhelp-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.buyhelp-products .product-image {
    text-align: center;
    padding: 20px;
    position: relative;
}

.buyhelp-products .product-image img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    transition: all .3s ease-in-out;
}

.buyhelp-products .product-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.buyhelp-products .product-tags .badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 500;
    border-radius: 4px;
    margin-right: 5px;
}

.buyhelp-products .product-tags .bg-accent {
    background-color: var(--primary-color);
    color: var(--color-white);
    padding: 4px calc(7px + 3 * (100vw - 320px) / 1600);
    border-radius: 4px;
}

.buyhelp-products .product-tags .bg-sale {
    background-color: #ff6b6b;
    color: var(--color-white);
}

.buyhelp-products .product-tags .bg-sold-out {
    background-color: #6c757d;
    color: var(--color-white);
}

.buyhelp-products .product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.buyhelp-products .product-actions button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: none;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.buyhelp-products .product-actions button:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.buyhelp-products .product-actions button i {
    font-size: 1rem;
}

.buyhelp-products .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.buyhelp-products .product-detail {
    padding: 1.25rem;
}
.buyhelp-products .product-detail .brand-name {
    color: #4a5568;
    margin-bottom: 5px;
}
.buyhelp-products .product-detail a {
    color: #222;
    display: block;
}

.buyhelp-products .product-detail a h6 {
    font-weight: 600;
    line-height: 22px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 3px;
    font-size: 16px;
}

.buyhelp-products .product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    position: relative;
}

.buyhelp-products .product-bottom h5 {
    margin: 0;
    padding: 0;
}

.buyhelp-products .product-bottom .add-to-cart-box {
    border-radius: 4px;
    max-width: 100%;
    background-color: transparent;
    margin: 0;
    position: unset;
}

.buyhelp-products .product-bottom .add-to-cart-box .btn-add-cart {
    border-radius: 4px;
    border: 1px solid var(--title-color);
    background-color: #fff;
    color: var(--title-color);
    font-weight: 600;
    padding: 7px 17px;
    margin: 0;
    transition: all 0.3s ease;
}

.buyhelp-products .product-bottom .add-to-cart-box .btn-add-cart:hover {
    background-color: color-mix(in srgb, var(--title-color), #000 10%);
    color: var(--white);
}




.buyhelp-products .product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ffc107;
    font-size: 0.875rem;
}

.buyhelp-products .product-rating i {
    margin-right: 2px;
}

.buyhelp-products .product-rating .rating-count {
    margin-left: 4px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.75rem;
}

.buyhelp-products .btn-add-to-cart {
    width: 100%;
    padding: 0.6rem;
    background-color: var(--primary-color);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.buyhelp-products .btn-add-to-cart:hover {
    background-color: color-mix(in srgb, var(--primary-color), #000 10%);
}

.buyhelp-products .btn-add-to-cart i {
    font-size: 1rem;
}

.buyhelp-products .btn-add-to-cart.btn-disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.buyhelp-products .btn-add-to-cart.btn-disabled:hover {
    background-color: #e9ecef;
}

@media (max-width: 991.98px) {
    .buyhelp-products .product-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .buyhelp-products .product-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .buyhelp-products .product-actions {
        opacity: 1;
        transform: translateX(0);
    }
}
