
body {
    font-family: "Poppins", sans-serif;
    color: #075E54;
}
:root {
    --primary-font: 'Poppins', sans-serif;
    --title-font: 'Playfair Display', sans-serif;
    --primary-color: #20897F;
    --title-color: #20897F;
    --background-color-rgb: 0, 0, 0;
    --btn-color: #075E54;
    --btn-text-color: #F9F9F9;
    --title-color-1: #505050;
    --first-text-color:#20897F;
    --second-text-color:#20897F;
    --thread-text-color:#20897F;
    --header-text-color: #F1EEEC;
    --header-background-color: #F1EEEC;
    --background-color: #F3F3F3;
    --color-white: #FFFFFF;
    --section-background-color: #EBF2F9;
    --color-secondary: #EBEBEB;
    --color-secondary-rgb: 72, 86, 100;
    /* Secondary colors */
    --color-secondary-light: #8f9fae;
    --color-secondary-dark: #3a4753;
    --default-color: #212529;
    --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: 70px;
    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: 40px;
    height: 40px;
}
@media (max-width: 992px) {
    .header .logo img {
        max-height: 48px;
        height: 38px;
    }
    .mobile-nav-toggle {
        display: block !important;
        color: var(--primary-color);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        top: 0;
        margin: 27px 0;
        z-index: 9999;
        right: 20px;
    }
}
.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(--primary-color);
        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(--primary-color);
    }

    .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: 1;
    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 {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    font-family: var(--primary-font);
    color: var(--primary-color);
    text-transform: uppercase;
}



.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 h4 {
    font-weight: 400;
    font-size: 28px;

    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 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 h4 {
    /*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 h4 .num {
    color: var(--primary-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h4: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 h4 {
    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;
}


#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 .sign-up-form {
    margin-top: 20px;
    padding: 10px;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

#hero .sign-up-form .form-control {
    border: none;
}

#hero .sign-up-form .form-control:active,
#hero .sign-up-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

#hero .sign-up-form input[type=submit] {
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0px 30px;
    border-radius: 30px;
    color: var(--color-white);
}

#hero .sign-up-form input[type=submit]:hover {
    background-color: var(--color-white);
    color: var(--primary-color);
}


#hero:before {
    content: "";
    background: rgba(144, 56, 127, 0.65);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    z-index: 2;
}


#hero h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    text-align: left;
    color: var(--btn-text-color);
}

#hero p {
    color: var(--header-text-color);
    font-family: var(--primary-font);
    margin: 5px 0 0 0;
    font-size: 20px;
}


@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 1024px),(max-height: 768px) {
    #hero {
        margin-bottom: -150px;
        height: 100vh;
    }
}

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

    #hero h2 {
        font-size: 32px;
    }

    #hero p {
        font-size: 18px;
    }
}

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

#hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    align-items: center; /* توسيط عمودي */
    justify-content: center; /* توسيط أفقي */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 40%;
    height: 50%;
    margin: auto;
}
@media (min-width: 1024px) {
    #hero .carousel-container {
        width: 80%;
    }
}
#hero .carousel-container-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    top: 50px;
    left: 0;
    right: 0;
    width: 300px;
    height: 465px;
    margin: auto;
    margin-left: 50%;
}




#hero .carousel-content-image {
    padding: 30px;
    animation-duration: 0.5s;
}
#hero .carousel-content {
    padding: 30px;
    color: #fff;
    animation-duration: 0.5s;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(50px);
    border-radius: 20px;
    display: grid;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
}


#hero .carousel-content h2 {
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 28px;
    line-height: 127.13%;
}

#hero .carousel-content p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 38px;
    text-align: justify;
    text-transform: capitalize;
    color: #F9F9F9;
}

#hero .carousel-content h4 {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 47px;
    text-align: justify;
    text-transform: capitalize;
    color: #F9F9F9;
}

#hero .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 13px 70px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    animation-delay: 0.8s;
    background: #064469;
    box-shadow: inset 2px 2px 4px rgba(170, 170, 204, 0.25);
    border-radius: 8px;
    text-transform: capitalize;
}

#hero .btn-get-started:hover {
    background: #064469;
    color: #fff;
    text-decoration: none;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
}

#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-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#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: #064469;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 2rem;
    margin-left: 15%;
}
@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 992px) {
    #hero {
        height: calc(120vh - 70px);
    }
    #hero .carousel-content h2 {
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 35px;
    }
    #hero .carousel-content h4 {
        font-size: 16px;
        line-height: 35px;
    }
    #hero .carousel-content p {
        font-size: 14px;
        line-height: 35px;
    }
    #hero .btn-get-started {
        font-size: 14px;
        padding: 13px 40px;
        line-height: 1;
    }

}

@media (max-height: 500px) {
    #hero {
        height: 180vh;
    }
    #hero .carousel-content h2 {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 25px;
    }
    #hero .carousel-content h4 {
        font-size: 14px;
        line-height: 25px;
    }
    #hero .carousel-content p {
        font-size: 12px;
        line-height: 25px;
    }
    #hero .btn-get-started {
        font-size: 12px;
        padding: 13px 20px;
        line-height: 1;
    }
    #hero .carousel-content {
        padding: 10px;
    }
}




.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;
}



.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);
}

.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 , .content-wrapper  {
    background: var(--background-color);
}

.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-messages .pagination  , #pagination-links-mail-messages .pagination  , #pagination-links .pagination  {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--title-color);
    --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: var(--title-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--title-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem var(--title-color);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--title-color);
    --bs-pagination-active-border-color: var(--title-color);
    --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;
}


.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(--background-color);
}
.recent-posts .card {
    box-shadow: 1px 1px 26px -6px rgba(0, 0, 0, 0.356);
    background-color: var(--bs-body-bg);
    border: 0;
}
.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 {
    box-shadow: 0px 4px 30.6px rgba(0, 0, 0, 0.07);
    padding: 12px 24px;
    background: var(--title-color);
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    text-align: start;
}
.recent-posts .read-more:hover {
    background-color: var(--primary-color);
}

.messages {
    padding: 10px 0;
}

.messages .comments-count {
    font-weight: bold;
}

.messages .text {
    margin-top: 10px;
    position: relative;
}

.messages .text .text-img {
    margin-right: 14px;
}

.messages .text .text-img img {
    width: 60px;
}

.messages .text h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.messages .text h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
}

.messages .text h5 a:hover {
    color: var(--title-color);
}

.messages .text time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}


.recent-posts .nav-tabs {
    border: 0;
    display: flex;
}
.recent-posts .nav-link {
    background-color: var(--background-color);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0 15px;
    padding: 10px 5px;
    transition: 0.3s;
    border-radius: 0;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}
.recent-posts .nav-link {
    margin: 0 10px;
    padding: 10px 0;
}


.recent-posts .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.recent-posts .nav-link h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 575px) {
    .recent-posts .nav-link h4 {
        font-size: 16px;
    }
}
.recent-posts .nav-link.active {
    background-color: var(--background-color);
}


.recent-posts .nav-link:hover {
    color: var(--title-color);
    border-color: var(--title-color);
}

.recent-posts .nav-link.active {
    color: var(--title-color);
    border-color: var(--title-color);
    background: none;
}

.recent-posts .tab-content .tab-header {
    padding: 30px 0;
}

.recent-posts .tab-content .tab-header p {
    font-size: 14px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.recent-posts .tab-content .tab-header h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--title-color);
}

.recent-posts .tab-content .menu-item {
    text-align-last: center;
}

.recent-posts .tab-content .menu-item .menu-img {
    padding: 0 60px;
    margin-bottom: 15px;
}

.recent-posts .tab-content .menu-item h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
}

.recent-posts .tab-content .menu-item .ingredients {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 5px;
}

.recent-posts .tab-content .menu-item .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--title-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.475rem 0.75rem;
    border: 0;
    border-radius: 2px;
    background: var(--color-white);
    min-height: 48px;
}
.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);
}

.blog-details .btn-start:hover {
    background: var(--primary-color);
}

.blog-details .btn-start {
    padding: 10px 50px;
    display: block;
    border:0;
    width: auto;
    color: var(--color-white);
    background: linear-gradient(to bottom, #4382CA 0%, #4382CA 100%);
    border-radius: 95px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    text-transform: capitalize;
}

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

.submit-tenders .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(to bottom, #4382CA 0%, #4382CA 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;
}

.submit-tenders .nav-tabs .nav-item .nav-link:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(to bottom, #4382CA 0%, #4382CA 100%);
    transition: all 0.3s ease-in-out 0s;
}

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

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

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

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

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

.submit-tenders .tab-content {
    margin-top: 10px;
}

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

.submit-tenders .tab-pane .laine:after {

    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(to bottom, #4382CA 0%, #4382CA 100%);
    transition: all 0.3s ease-in-out 0s;
}

.submit-tenders .tab-pane ul {
    list-style: none;
    padding: 0;
}

.submit-tenders .tab-pane ul li {
    padding-top: 10px;
}

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

.submit-tenders .tab-pane p:last-child {
    margin-bottom: 0;
}

.submit-tenders .btn-start:hover {
    background: var(--primary-color);
}

.submit-tenders .btn-start {
    padding: 10px 50px;
    display: block;
    width: 100%;
    border:0;
    color: var(--color-white);
    background: linear-gradient(to bottom, #4382CA 0%, #4382CA 100%);
    border-radius: 95px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    text-transform: capitalize;
}
.submit-tenders .btn-start {
    padding: 10px 50px;
    display: block;
    width: 100%;
    border:0;
    color: var(--color-white);
    background: linear-gradient(to bottom, #4382CA 0%, #4382CA 100%);
    border-radius: 95px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    text-transform: capitalize;
}
.submit-tenders .btn-start:hover {
    background: var(--primary-color);
}


.submit-tenders .form-check-input {
    border: var(--bs-border-width) solid var(--primary-color);
    --bs-form-check-bg: var(--section-background-color);
}
.submit-tenders .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);
}

.submit-tenders .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;
}

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

.submit-tenders .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(to bottom, #4382CA 0%, #4382CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.submit-tenders 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;
}

.submit-tenders .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;
}

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

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

.submit-tenders .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;
}

.submit-tenders .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}


.submit-tenders .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 */
.submit-tenders .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;
}


.submit-tenders .form-control-checkbox-group {
    display: flex;
    align-items: center;
}

.submit-tenders .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;
}


.submit-tenders #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;
}

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

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

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

.submit-tenders .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;
}

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

.submit-tenders .content .back:hover {
    padding-right: 19px;
}

.submit-tenders .content .back:hover i {
    margin-left: 10px;
}
.recent-posts .results-item {
    transition: box-shadow 0.2s;
    box-shadow: 0px 4px 30.6px rgba(0, 0, 0, 0.07);
    border-bottom: 5px solid var(--btn-color);
}

.recent-posts .results-item .card-title {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500
}

.recent-posts .results-item .item-detail {
    font-size: 14px;
    margin-bottom: 10px
}

.recent-posts .results-item .item-detail .item-detail-label {
    font-weight: 400;
    text-transform: uppercase;
    color: var(--title-color);
    font-size: 0.9rem
}

.recent-posts .results-item .item-detail .item-detail-value {
    font-weight: 600
}

.recent-posts .results-item .item-detail .item-detail-subvalue {
    font-size: 0.9rem
}

.recent-posts .results-item .search-fragment {
    font-size: 0.75rem;
    color: var(--title-color);
    display: block
}

.recent-posts .results-item .search-fragment .highlight {
    background: #F0F0F0;
    color: var(--title-color);
    font-weight: 600;
    padding: 0 2px
}

.recent-posts .results-item ion-icon.watch {
    font-size: 34px;
    transition: transform 0.2s
}

.recent-posts .results-item:hover {
    box-shadow: rgba(0,0,0,0.08) 0px 4px 12px
}

.recent-posts .results-item:hover ion-icon.watch {
    color: var(--title-color);
    transform: scale(1.1)
}

.recent-posts .results-item .type.pi .badge {
    color: var(--title-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0px;
    margin: 0px;
    font-family: var(--primary-font);
    border-radius: 0;
}


.recent-posts .sidebar {
    padding: 30px;
    box-shadow: 0px 4px 30.6px rgba(0, 0, 0, 0.07);
    background-color: var(--color-white);
    border-radius: 2px;
    border-bottom: 5px solid var(--btn-color);
}


.recent-posts .sidebar .recent-posts {
    background: none;
}

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

.recent-posts .sidebar .sidebar-item + .sidebar-item {
    margin-top: 40px;
}


.recent-posts .sidebar .categories ul {
    list-style: none;
    padding: 0px;
}

.recent-posts .sidebar .categories ul li + li {
    padding-top: 10px;
}

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

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

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

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

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

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

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

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

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

.recent-posts .sidebar .tags {
    margin-bottom: -10px;
}

.recent-posts .sidebar .tags ul {
    list-style: none;
    padding: 0px;
}

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

.recent-posts .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%;
}

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

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

.main-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    padding: 12px;
    box-shadow: rgba(38,82,133,0.8) 0px 4px 4px -4px,rgba(0,0,0,0.05) 0px 4px 6px -2px;
    background: white;
    border-radius: 0;
}

.main-search-form label {
    font-size: 24px;
    margin: 4px 10px 0 5px;
    cursor: pointer;
    font-weight: 400
}

.main-search-form ion-icon {
    --ionicon-stroke-width: 64px
}

.main-search-form input {
    text-indent: 20px;
    width: 100%;
    border: none;
    padding: 0;
    outline: 0;
    margin: 1px 5px 0 1px;
    font-weight: 600;
    background-color: transparent;
    z-index: 1;
    transform: rotateX(0);
    transition: cubic-bezier(1,0.05,0.05,1) 0.5s
}

.main-search-form input.flip {
    transform: rotateX(360deg)
}

.main-search-form input::placeholder {
    color: var(--title-color-1);
    transform: rotateX(0);
    transition: cubic-bezier(1,0.05,0.05,1) 0.3s
}

.main-search-form button {
    margin-left: 20px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--title-color-1);
    outline: 0;
    border: 0px;
    background: none;
    font-size: 16px;
}
.main-search-form button:hover {
    background: none;
    color: var(--title-color-1);
}



#contact .info {
    padding: 40px;
    overflow: hidden;
}



#contact .info p {
    font-family: var(--primary-font);
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--primary-color);;
}

#contact .info-item {
    padding-top: 20px;
    margin-top: 20px;
}

#contact .info-item i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
    background: #ECF1F0;
    padding: 5px 20px;
}

#contact .info-item h4 {
    padding: 0;
    margin-bottom: 5px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 19px;
    color: var(--title-color);
    text-transform: capitalize;
}

#contact .info-item p {
    font-family: var(--primary-font);
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    color: #727272;
}







#contact {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
    position: relative;

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




@media (max-width: 500px) {

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

@media (max-height: 500px) {

}



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

    color: var(--primary-color);;
    height: 48px;
    border:0;
    border-radius: 0;
    background:  #ECF1F0;
}
#contact .form-control:focus {
    height: 42px;
    border: 0;
    border-radius: 0;
    background:  #ECF1F0;
}
#contact .form-control:-webkit-autofill {
    height: 48px;
    border: 0;
    border-radius: 0;
    background:  #ECF1F0;
}
#contact .submit {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: capitalize;
    color: #FFFFFF;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    margin-right: 10px;
    padding: 12px 26px;
    background: var(--title-color);
    border-radius: 34px;
    position: relative;
    border: 0;
    z-index: 4;
}

#contact  h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 44px;
    color: var(--title-color);

    text-transform: capitalize;

}

#contact h3 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;

    color: var(--primary-color);
    text-transform: capitalize;
}
.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 .btn-get-started {
    font-family: "Work Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: capitalize;

    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    margin-right: 10px;
    padding: 12px 26px;
    background: var(--primary-color);
    color: #FFFFFF;

    border-radius: 34px;
    position: relative;
    z-index: 4;
}

.faq .btn-get-started:hover {
    background: #FFFFFF;

    color: var(--primary-color);
}
.form-floating>label {
    padding: 1rem 1.5rem;
}
#navbar .menu-primary {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
}


#navbar .menu-secondary {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
}
.navbar-mobile ul .menu-primary {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.navbar-mobile ul .menu-secondary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
#navbar .menu-secondary li  {
    margin-bottom: 0px;
}

.recent-posts .content .back {
    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;
    font-family: var(--title-font);
    font-style: normal;
    text-align: justify;
    text-transform: capitalize;
    color: var(--title-color);
    position: relative;
    cursor: pointer;
    height: 100%;
    border: 0;
    text-decoration: underline;
}
.recent-posts .content .back i {
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
    font-size: 18px;
}
.recent-posts .content .back:hover {
    padding-right: 19px;
}
.recent-posts .content .back:hover i {
    margin-left: 10px;
}
