*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background: white;
}

a {
    text-decoration: none !important;
    color: var(--colorPrimary);
}

.base_margin {
    margin-top: 149px;
    min-height: 500px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    transition: 0.4s;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar_root.full {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1), transparent);
}

.toolbar_root.full .primary_header {
    background: transparent;
}

#toolbar {
    background: rgba(0, 0, 0, 0);
    transition: 0.4s ease;
    position: relative;
}


.logo_wrapper {
    padding: 8px;
    justify-content: center;
    max-width: 400px;
    min-width: 280px;
}

.toolbar_root #Andromeda_logo {
    height: 50px;
    width: 100%;
    margin: 8px 16px 8px 16px;
    align-self: center;
    background-image: url("../images/andromeda_logo@3x.png");
    transition: 0.4s;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

.primary_header {
    background: #eb8e32;
    color: #212121;
    font-family: 'League Spartan', sans-serif;
    transition: 0.3s;
}


.primary-header-text {
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    font-size: 14px;
    padding: 6px 2px;
    font-family: var(--main-font);
    font-weight: 500;
}

.toolbar_menu_section {
    flex: 0 0 auto;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    flex: 1 1 auto;
    padding: 0 14px;
}

.menu_item {
    /*height: 100%;*/
    display: flex;
    align-items: center;
    background: transparent;
    cursor: pointer;
    align-self: center;
    transition: 0.4s ease;
    margin: 4px;
    border-radius: 6px;
}

.menu_item > span {
    color: #212121;
    padding: 8px;
    margin: 0 8px;
    font-size: 18px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'League Spartan', sans-serif;
    transition: 0.4s ease;
}

.menu_item span.small {
    font-size: 16px;
    margin: 0;
    padding: 8px;
}

.menu_item > img {
    width: 20px;
    height: 20px;
    margin: 0 8px;
    object-fit: contain;
}

.menu_item > i {
    color: #212121;
    padding: 8px;
    margin: 0;
    font-size: 14px;
    transition: 0.4s ease;
}


.menu_item:hover {
}

.menu_item:hover > span, .menu_item:hover > i {
    color: var(--colorAccent);
}


.toolbar_menu_icon {
    visibility: hidden;
    color: var(--colorAccent);
    padding: 20px;
    cursor: pointer;
}

.toolbar_menu_icon:hover {
    color: var(--colorAccent);
}

.search_bar_container {
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.08);
    padding: 6px 12px;
    margin: 0 8px;
    align-self: center;
}

.toolbar_dropdown_container {
    /*position: relative;*/
}

.toolbar_dropdown_content {
    position: absolute;
    padding: 0;
    left: 0;
    right: 0;
    top: calc(100%);
    /*opacity: 0;*/
    height: 0;
    overflow-y: hidden;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
    max-height: 500px;
    pointer-events: none;
}

.toolbar_dropdown_container:hover .toolbar_dropdown_content {
    height: auto;
    overflow-y: auto;
    pointer-events: all;
    padding: 8px 0;
}


.toolbar_dropdown_content.small {
    position: absolute;
    padding: 0;
    width: 350px;
    right: 0;
    left: auto;
    top: calc(100%);
    height: 0;
    overflow-y: hidden;
    /*background: #fafafa;*/
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
    max-height: 500px;
    pointer-events: none;
    /*clip-path: polygon(0 4px, calc(100% - 20px) 4px, calc(100% - 16px) 0, calc(100% - 14px) 4px, 100% 4px, 100% 100%, 0 100%);*/
}

.toolbar_dropdown_content.small a {
    border: none;
    height: auto;
}

.toolbar_dropdown_content_expandable {
    position: absolute;
    padding: 0;
    left: 0;
    right: 0;
    top: 100%;
    height: 0;
    overflow-y: hidden;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
    max-height: 500px;
    pointer-events: none;
}

.toolbar_dropdown_content_expandable.expand {
    height: auto;
    overflow-y: auto;
    pointer-events: all;
    padding: 8px 0;
}

.toolbar_dropdown_content_expandable_bg {
    position: fixed;
    padding: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9990;
    overflow-y: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.5s ease;
    pointer-events: none;
}

.toolbar_dropdown_content_expandable_bg.expand {
    bottom: 0;
    pointer-events: all;
}

.toolbar_dropdown_content a {
    min-height: 40px;
    border-bottom: none !important;
    border-left: 3px solid white;
    padding: 0;
    transition: 0.4s ease;
}

.toolbar_dropdown_content .heading {
    font-family: var(--main-font);
    font-weight: bold;
    border-bottom: 1px solid var(--divider);
    padding: 8px 4px;
    margin: 0 16px;
    color: white;
    text-transform: uppercase;
}

.toolbar_dropdown_content a:hover {
    border-color: #212121;
}

.static_sub_toolbar {
    background: rgba(179, 179, 179, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.static_sub_toolbar a {
    color: white;
    background: transparent;
    padding: 8px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: var(--main-font);
    transition: 0.4s ease;
}

.static_sub_toolbar a:hover, .static_sub_toolbar a.active {
    color: #212121;
    background: rgba(255, 255, 255, 0.5);
}

.banner_container {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner_container .heading_content {
    position: relative;
    pointer-events: none;
}

.banner_container .banner_content {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--main-font);
    text-align: center;
}

.banner_container .title {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--main-font);
    position: absolute;
    top: 50%;
    width: 70%;
    text-align: center;
    left: 50%;
    font-size: 40px;
    transform: translate(-50%, -50%);
}

.banner_container span.title:after {
    content: '';
    width: 70%;
    bottom: -10px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.7);
}

.page_title {
    font-family: var(--main-font);
    font-weight: 200;
    color: #212121;
    font-size: 26px;
    padding: 0 8px;
}

.drawer_item {
    display: flex;
    cursor: pointer;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 18px;
    transition: 0.4s;
    font-family: 'League Spartan', sans-serif;
}

.drawer_item.other_link {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
}

.drawer_item:hover {
    background-color: #f6f6f6;
}

.drawer_item.other_link:hover {
    color: var(--colorAccent);
    background-color: transparent;
}

.drawer_item.offer .upper_tag {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: right;
    margin: -5px 8px 0 -8px;
    padding: 0;
    color: #ed1c24 !important;
}

.funky_divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--divider), var(--divider), var(--divider), var(--divider), transparent);
}

.main_content {
    width: 100%;
    padding: 0 10px;
    max-width: var(--content-width);
}

.home-sideNav-virtual-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-sideNav {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 350px;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    left: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

.side_navigation::-webkit-scrollbar {
    display: none;
}

.side_navigation_content {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1 1 100%;
}

.side_navigation_content .heading {
    font-family: var(--main-font);
    font-weight: bold;
    border-bottom: 1px solid var(--divider);
    padding: 8px 4px;
    margin: 0 16px;
    color: #212121;
    text-transform: uppercase;
}

.header_content {
    padding: 24px 16px;
}

.header_content > div {
    max-width: 600px;
}

.header_content span {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--colorAccent);
}

.header_content .accent_button {
    align-self: flex-start;
    margin-top: 24px;
    padding: 16px 24px;
}

.header_container {
    position: relative;
    width: 100%;
    height: calc(100vw * 0.4);
}

.slide_container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide_track {
    position: relative;
    height: 100%;
    transition: transform 0.4s ease-in;
}

.slide {
    position: relative;
    z-index: 45;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide_content_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
}

.slide_content_wrapper .title {
    color: white;
    padding: 8px 14px;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5;
    text-align: center;
    font-family: 'League Spartan', sans-serif;
}

.slide_content_wrapper .subtitle {
    color: white;
    padding: 0 14px 14px;
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: center;
    font-family: 'League Spartan', sans-serif;
}

.slide_container:hover .slide_nav_button {
    display: block;
    transition: 0.4s ease;
}

.slide_nav_button {
    display: none;
    position: absolute;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    z-index: 52;
    font-size: 18px;
    padding: 18px 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: 0.4s ease;
}

.slide_nav_button:hover {
    background-color: var(--colorAccent);
}

.slide_nav_button#left_button {
    left: 0;
}

.slide_nav_button#right_button {
    right: 0;
}

.slide_right_gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    right: 0;
    z-index: 50;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.3));
}

.slide_left_gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    left: 0;
    z-index: 50;
    background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.3));
}

.banner_wrapper {
    width: 100%;
    position: relative;
}

.banner_wrapper > img {
    width: 100%;
    /*max-height: 500px;*/
    object-fit: cover;
}

.banner_wrapper > .banner_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner_content .heading {
    color: white;
    padding: 8px 0;
    font-size: 60px;
    line-height: 1;
    align-self: flex-start;
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
    margin: 0 16px;
    border-bottom: 2px solid white;
}


.banner_content .sub_heading {
    color: white;
    padding: 0 16px 8px;
    font-size: 18px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
    margin: 0;
}


.page_heading {
    color: var(--colorAccent);
    font-size: 32px !important;
    font-weight: 500;
    line-height: 1.4;
    margin: 12px 0;
    align-self: center;
    width: auto;
    padding: 0 12px 4px;
    text-align: center;
    font-family: var(--main-font);
    position: relative;
}

.page_heading:after {
    position: absolute;
    content: "";
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    bottom: 0;
    background: linear-gradient(to right, transparent, #88bcf1, transparent);
}

.page_sub_heading {
    color: #212121;
    font-size: 20px;
    max-width: 1000px;
    font-weight: normal;
    margin-bottom: 20px;
    margin-top: 6px;
    line-height: 1.5;
    align-self: center;
    text-align: center;
    font-family: var(--main-font);
}

.page_sub_heading > span {
    font-family: var(--main-font);
}

.why_choose_item_wrapper {
    border-radius: 8px;
    padding: 24px;
    background: #f5f6fd;
    margin: 80px 8px 8px 8px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    width: calc((100% / 2) - 16px);
}

.why_choose_item_wrapper img {
    width: 100px;
    align-self: center;
    height: 100px;
    margin-top: -72px;
    margin-bottom: 24px;
}


.why_choose_item_wrapper span {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin-top: 12px;
    align-self: center;
    text-align: center;
    color: #212121;
}

.why_choose_item_wrapper span b {
    color: var(--colorAccent);
    font-weight: 700;
}

.why_choose_item_wrapper p {
    font-weight: normal;
    text-align: center;
    width: 90%;
    font-size: 16px;
    line-height: 1.6;
    align-self: center;
}

.who_visit_content_wrapper {
    background: #e5ebf7;
    padding: 16px;
    border-radius: 24px;
    flex: 1 1 auto;
    margin: 8px;
    max-width: 600px;
    align-self: center;
}

.who_visit_content_wrapper span {
    padding: 16px;
    border-radius: 16px;
    background: var(--colorAccent);
    color: white;
    line-height: 1.3;
    font-size: 20px;
    font-weight: 600;
}

.who_visit_content_wrapper li {
    font-size: 16px;
    line-height: 1.6;
    margin: 6px;
}

.footer_logo {
    width: 90%;
    margin: 0 0 16px;
    transition: 0.4s;
}

.footer_wrapper {
    background: #C3E0EF;
    width: 100%;
    min-height: 100px;
    padding: 50px 20px 20px;
    position: relative;
}

.footer_wrapper .text_content {
    font-size: 12px;
    text-transform: uppercase;
}

.footer_heading {
    color: #274760;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: var(--main-font);
}

.footer_link {
    color: #274760;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    font-family: var(--main-font);
    padding: 4px 0;
}

.footer_link i {
    margin-right: 8px;
    align-self: center;
}

.footer_link:hover {
    text-decoration: underline !important;
}

.footer_container {
    width: calc((100% / 4) - 3px);
    padding: 20px;
}

.footer_content {
    font-size: 12px;
    padding: 0;
    margin: 8px 0;
}

.footer_content b {
    font-size: 14px;
}

.footer_content a {
    text-decoration: underline !important;
}


.footer_social_link {
    background-color: white;
    font-weight: 500;
    font-size: 16px;
    padding-top: 8px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: var(--colorAccent);
    margin: 8px 4px;
    border-radius: 50%;
    transition: 0.4s ease;
}

.footer_social_link:hover {
    background-color: var(--colorAccent);
    color: white;
}

.footer_social_link:hover img {
    filter: invert(100%);
}

.footer_wrapper input {
    padding: 6px;
    background-color: #fefefe;
    border: 1px solid var(--divider);
    font-family: var(--main-font);
    font-size: 11px;
    width: 100px;
    outline: none;
}

.footer_wrapper button {
    background-color: var(--colorAccent);
    color: white;
    min-width: 40px;
    font-family: var(--main-font);
    font-size: 11px;
    border: none;
    outline: none;
    padding: 8px;
}

.footer_wrapper .accent_button {
    padding: 8px;
    letter-spacing: normal;
    font-size: 12px;
    margin-top: 12px;
    text-transform: capitalize;
}


.contact_detail_container {
    max-width: 1200px;
    align-self: center;
    margin: 16px;
}

.contact_detail_container > .column_alignment {
    padding: 12px;
}

.contact_detail_container .row_alignment {
    align-items: center;
    border-radius: 12px;
    flex: 1 1 auto;
    background: #d2eaef;
    padding: 16px 24px;
    box-shadow: 0 0 0 transparent;
    transform: translateY(0);
    transition: 0.4s ease;
}

.contact_detail_container .row_alignment:hover {
    transform: translateY(-2px);
}


.contact_detail_container i {
    font-size: 32px;
    color: #307bc4;
}

.contact_detail_container span {
    color: #274760;
    font-size: 18px;
    font-weight: bold;
    margin: 0 20px;
    font-family: var(--main-font);
}

.contact_detail_container a {
    font-size: 16px;
    margin: 6px 20px 0;
    color: #274760;
    line-height: 1.2;
    align-self: flex-start;
    padding-bottom: 0px;
    font-family: var(--main-font);
    transform: scale(1);
    transition: 0.4s ease;
}

.contact_detail_container a:hover {
    color: var(--colorAccent);
    transform: scale(1.04);
}

.contact_detail_container .divider {
    width: 1px;
    height: 100%;
    background-color: #e4e4e4;
    flex: 0 0 auto;
}

.bs_form {
    background: white;
    margin: 10px;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.bs_form .content {
    padding: 16px;
}

.bs_form p {
    margin: 0;
    padding: 0;
}

.bs_form label, .input_label {
    font-size: 14px;
    padding: 4px 12px;
    margin-bottom: -4px;
    margin-top: 12px;
    font-family: 'League Spartan', sans-serif;
}

.bs_form input, .bs_form select, .input_field, .bs_form textarea {
    padding: 16px;
    width: calc(100% - 12px) !important;
    font-size: 16px;
    margin: 6px 6px 12px;
    background: white;
    font-family: var(--main-font);
    outline: none;
    border: 1px solid rgba(48, 123, 196, 0.5);
    border-radius: 12px;
    transition: all 0.4s;
}


.bs_form textarea {
    min-height: 100px;
    resize: vertical;
}

.bs_form input:focus, .bs_form select:focus, .bs_form textarea:focus, .input_field:focus {
    border: 1px solid var(--colorAccent)
}

.error input, .error textarea {
    border: 1px solid var(--error_color);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.errorlist {
    list-style: none;
    padding: 0;
    margin: -16px 10px 24px;
}

.errorlist > li, .error_text {
    font-size: 12px;
    font-weight: 600;
    color: var(--error_color);
}


.address_form label {
    color: #212121;
    font-weight: bold;
    font-size: 12px;
    padding: 6px;
}

.address_form .column_alignment {
    margin: 6px !important;
}

.address_form input, .address_form select, .address_form .input_field {
    margin-bottom: 4px;
}

.white_button_border {
    background-color: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 1);
    font-family: var(--main-font);
    padding: 8px 16px;
    font-weight: 700;
    text-decoration: none;
    outline: none;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 1);
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.5s ease;
}

.white_button_border:hover {
    color: var(--colorPrimary);
    background-color: white;
}

.white_button_border.light {
    background-color: rgba(255, 255, 255, 0.5);
    color: #212121;
}


.accent_button_border {
    background-color: transparent;
    color: #212121;
    font-family: var(--main-font);
    padding: 8px 16px;
    font-weight: 700;
    text-decoration: none;
    outline: none;
    border: 2px solid #212121;
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.5s ease;
}

.accent_button_border:hover {
    color: white;
    background-color: var(--colorAccent);
    border-color: var(--colorAccent);
}

.accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    font-size: 18px;
    text-decoration: none;
    outline: none;
    text-align: center;
    border-radius: 8px;
    font-family: var(--main-font);
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.accent_button.white {
    background-color: white;
    color: #212121;
}

.accent_button.small {
    padding: 6px 12px;
    font-size: 12px;
}

.bordered_button {
    background-color: white;
    color: var(--colorPrimary);
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #212121;
    letter-spacing: 1px;
    text-decoration: none;
    outline: none;
    font-family: var(--main-font);
    cursor: pointer;
    transition: 0.4s;
}

.bordered_button:hover {
    background-color: var(--colorAccent);
    border: 1px solid var(--colorAccent);
    color: white;
    transition: 0.4s;
}

.link_button {
    background-color: transparent;
    color: #212121;
    padding: 10px 0 0;
    font-size: 12px;
    border: none;
    text-decoration: none;
    outline: none;
    font-family: var(--main-font);
    cursor: pointer;
    transition: 0.4s;
}

.link_button:hover {
    text-decoration: underline !important;
    transition: 0.4s;
}


.line_button {
    background-color: transparent;
    color: white;
    font-weight: bold;
    padding: 8px 0;
    margin: 8px;
    border: none;
    letter-spacing: 1px;
    text-decoration: none;
    outline: none;
    text-transform: uppercase;
    font-family: var(--main-font);
    cursor: pointer;
    transition: 0.4s;
    position: relative;
}

.line_button:after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 100%;
    height: 1px;
    left: 0;
    background: white;
    transition: 0.4s ease;
}

.line_button:hover:after {
    bottom: 0;
}


.line_button.dark {
    color: #4d4d4d;
}

.line_button.dark:after {
    background: #4d4d4d;
}

.promo_video_wrapper {
    /*background-image: url('../images/tf_image-100.jpg');*/
    /*background-size: 100%;*/
    /*background-repeat: no-repeat;*/
    padding: 60px 20px;
    /*background-position: top;*/
    width: 100%;
    min-height: 400px;
    transition: 2s ease;
    position: relative;
    overflow: hidden;
}

.promo_video_wrapper .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 2s ease;
    transform: scale(1.01, 1.01);
    z-index: 0;
}

.promo_video_wrapper:hover .bg {
    transform: scale(1.2, 1.2);
}

.promo_video_content {
    min-height: 400px;
    width: 100%;
}

.flip-card {
    perspective: 1000px;
    align-self: center;
    width: 100%;
    max-width: 500px
}

.flip-card-inner {
    position: relative;
    width: 100%;
    min-height: 400px;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-inner.flip {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px;
}

.about_container .about_p {
    text-align: left;
}

.about_p, .about_p p {
    line-height: 1.6;
    font-size: 14px;
    color: var(--colorPrimary);
    font-family: 'League Spartan', sans-serif;
    margin: 20px;
    text-align: start;
}

.about_p b {
    line-height: 2;
}

.about_p .about_img {
    box-shadow: none;
    border: none;
}

.about_img {
    max-width: 500px;
    object-fit: cover;
    max-height: 400px;
    margin: 8px;
    border: 4px solid white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.about_container.highlight {
    border-radius: 4px;
    margin-top: 30px;
    border: 2px solid var(--colorAccent);
    background-color: var(--colorAccent);
}

.about_container.highlight p {
    color: white;
    font-size: 15px;
}

.divider {
    height: 1px !important;
    background-color: #212121;
}

.social_login_container {
}

.social_button {
    color: white;
    padding: 14px 24px;
    border: none;
    text-decoration: none;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.4s;
}

.social_button > span {
    font-weight: bold;
    text-align: center;
    margin-left: 16px;
    font-family: var(--main-font);
}

.social_button:hover {
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.shipping_detail {
    font-size: 15px;
    margin: 2px 8px;
    font-family: 'League Spartan', sans-serif;
}

.faq_banner span {
    color: white;
    font-size: 12px;
    margin: 8px;
    text-align: center;
}


.faq_banner span b {
    font-size: 32px;
}

.faq_heading {
    font-weight: normal;
    font-size: 14px;
    padding: 8px 16px;
    cursor: pointer;
    background: transparent;
    color: var(--colorAccent);
    transition: 0.4s ease;
    margin: 0 16px;
    text-align: left;
    text-transform: uppercase;
}

.faq_heading.highlight {
    color: white;
    background: var(--colorAccent);
    transition: 0.4s ease;
}

.faq_block {
    max-width: 1000px;
    align-self: center;
    width: calc(100% - 16px);
    margin: 0 8px;
    display: none;
}


.faq_block.active {
    display: flex;
}

.question_wrapper {
    margin: 4px;
    background: var(--colorAccentLight);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
    position: relative;
}


.question_wrapper:before {
    content: '\f055';
    font-weight: bold;
    position: absolute;
    font-family: "Font Awesome 6 Free";
    top: 22px;
    transform: translateY(-50%);
    right: 20px;
    font-size: 16px;
    color: var(--colorAccent);
    pointer-events: none;
}

.question_wrapper.active {
    background: #f6f6f6;
}


.question_wrapper.active:before {
    content: '\f056';
    color: white;
}

.question_wrapper.active .question {
    background: var(--colorAccent);
    color: white;
}

.question_wrapper.active .answer {
    display: flex;
}


.question_wrapper .question {
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    padding: 16px 30px 16px 16px;
    color: var(--colorAccent);
}

.question_wrapper .answer {
    display: none;
    border-top: 1px solid var(--divider);
    font-family: 'League Spartan', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    padding: 16px 30px 16px 16px;
    color: var(--colorPrimaryDark);
    transition: 0.4s ease;
}

.question_wrapper .answer a {
    color: var(--colorAccent);
    text-decoration: underline;

}

.why_its_done_item_wrapper {
    position: relative;
    width: calc(100% - 32px);
    margin-bottom: 40px;
    flex: 1 1 auto;
}


.why_its_done_item_wrapper:before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 3px solid #e75733;
}


.why_its_done_item_wrapper span {
    padding: 16px;
    flex: 1 1 auto;
    font-size: 16px;
    line-height: 1.5;
    background: #feedec;
    z-index: 2;
}

.why_its_done_item_wrapper.c2:before {
    border-color: #c167a6;
}

.why_its_done_item_wrapper.c2 span {
    background: #f5ebf2;
}

.why_its_done_item_wrapper.c3:before {
    border-color: #019cb6;
}

.why_its_done_item_wrapper.c3 span {
    background: #ebfcff;
}

.why_its_done_item_wrapper.c0:before {
    border-color: #8aff54;
}

.why_its_done_item_wrapper.c0 span {
    background: #e9fedf;
}

.how_often_section_wrapper {
    position: relative;
    margin-top: 40px;
}

.how_often_section_wrapper .section_bg {
    background: #d3e3fd;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 70px;
}

.section_wrapper {
    width: 100%;
    padding: 40px 0;
}

.home_about_section_wrapper {
    background-image: url("../images/home_about_bg@3x-100.jpg");
    background-size: cover;
}

#dialog-background {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: none;
}

.dialog-container {
    position: fixed;
    top: 80px;
    display: none;
    left: 50%;
    max-width: 900px;
    transform: translateX(-50%);
    width: calc(100% - 12px);
    z-index: 999999;
}

.dialog-container.popup {
    top: auto;
    left: auto;
    right: 40px;
    bottom: 40px;
    max-width: 500px;
    transform: translate(0, 0);
}


.dialog-container.country_dialog {
    max-width: 500px;
}

.dialog-container.wrapper {
    background-color: white;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--colorAccent);
}

.dialog-container h2 {
    font-family: 'League Spartan', sans-serif;
    color: var(--colorAccent);
    font-size: 22px;
    white-space: normal;
}

.dialog-container .high_label {
    font-family: 'League Spartan', sans-serif;
    color: var(--colorAccent);
    font-size: 16px;
    margin: 8px;
    font-weight: bold;
    white-space: normal;
}

.dialog-container .close-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 16px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--dark_blue_grey);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.toggle_wrapper {
    border: 1px solid var(--divider);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.toggle_wrapper span {
    padding: 8px 12px;
    color: #212121;
    background: white;
    transition: 0.4s ease;
}

.toggle_wrapper span.active {
    background: #212121;
    color: white;
}

.chart {
    display: none;
    width: 100%;
    height: auto;
}


.chart.active {
    display: flex;
}


.dialog-container#share_dialog {
    background-color: white;
    padding: 16px;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.dialog-container#share_dialog span {
    font-size: 14px;
    margin: 4px;
    color: #424242;
}

.copy_link_wrapper {
    border: 1px solid #424242;
    padding: 12px 16px;
    white-space: nowrap;
    max-width: 400px;
    overflow: hidden;
    cursor: pointer;
    text-overflow: ellipsis;
}

.social_share_button_wrapper i {
    cursor: pointer;
    color: #424242;
    padding: 8px;
    font-size: 20px;
}

.treatment_slide_wrapper {
    position: relative;
    margin: 4px;
    border-radius: 16px 8px;
    background: white;
    width: calc((100% / 4) - 8px);
    cursor: pointer;
    transition: 0.4s ease;
}

.treatment_slide_wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.treatment_slide_wrapper .title {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 100px 16px 16px;
    width: 100%;
    color: white;
    font-weight: 500;
    font-size: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.treatment_slide_wrapper .content {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    color: white;
    align-items: center;
    height: 100%;
    line-height: 1.4;
    backdrop-filter: blur(2px);
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7));
    transition: 0.4s ease;
}

.treatment_slide_wrapper:hover .content {
    opacity: 1;
}

.testimonial_item_wrapper {
    background: white;
    border-radius: 12px;
    margin: 40px 6px 6px;
    align-self: flex-start;
    position: relative;
    transition: 0.4s ease;
    overflow: hidden;
}

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


.testimonial_item_wrapper .client_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.testimonial_item_wrapper i {
    color: #ffdc64;
    margin: 4px;
    font-size: 14px;
}

.testimonial_item_wrapper span {
    margin: 4px;
    font-size: 14px;
}

.contact_form_container {
    background: linear-gradient(to bottom, #52a2c4, #5097ac);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 16px;
}

.contact_form_container a {
    margin: 12px 0;
    color: white;
    font-size: 16px;
    align-items: center;
    font-family: League Spartan, sans-serif;
    line-height: 1.5;
}

.contact_form_container i {
    margin-right: 8px;
}

.contact_form_container .accent_button {
    border-radius: 6px;
    margin: 6px;
}

.extra_detail {
    font-size: 13px;
    font-family: var(--main-font);
    color: #aeaeae;
}

.extra_detail > b {
    font-weight: bold;
    color: var(--greenColor);
}

.cost_detail {
    margin-top: 10px;
    font-size: 14px;
    font-family: var(--main-font);
    color: var(--colorPrimary);
}

.cost_detail i {
    font-style: normal;
    font-weight: 400;
    color: var(--colorAccent);
}

.payable_amount {
    margin-top: 10px;
    padding-top: 5px;
    font-size: 16px;
    font-family: var(--main-font);
    color: var(--greenColor);
    border-top: 1px solid var(--divider);
}

.payable_amount i {
    font-style: normal;
    font-weight: bold;
}

.order_summary_container {
    padding: 10px;
    margin: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.order_summary_container .heading {
    font-size: 14px;
    font-weight: bold;
    align-self: flex-start;
    padding-bottom: 3px;
    font-family: 'League Spartan', sans-serif;
    color: #333333;
}

.order_summary_container .value {
    font-size: 13px;
    padding-top: 4px;
    font-family: 'League Spartan', sans-serif;
    color: #3e3e3e;
}

.order_tracking_wrapper {
    position: relative;
}


.order_tracking_wrapper:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 9px;
    bottom: 20px;
    width: 2px;
    z-index: 1;
    background: #b1b1b1;
}

.order_tracking_wrapper span {
    font-size: 14px;
    z-index: 2;
    padding: 8px 0;
}


.order_tracking_wrapper i {
    color: #656565;
    margin: 0 5px 0 0;
    background-color: white;
    border-radius: 50%;
}


.order_tracking_wrapper span.active {
    font-size: 14px;
    font-weight: bold;
}


.order_tracking_wrapper span.active i {
    color: var(--greenColor);
}

.navigation_button {
    background: var(--colorAccent);
    border-radius: 2px;
    padding: 10px;
    color: white;
    margin: 8px;
    cursor: pointer;
}

.out_of_stock {
    border: 2px dashed #909090;
    color: #909090;
    font-family: var(--main-font);
    font-weight: bold;
    padding: 8px 16px;
    text-align: center;
}

.image_zoom_container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 99999;
    display: none;
}

.image_zoom_container.active {
    display: flex;
    cursor: zoom-out;
}

.zoomed_image_wrapper {
    overflow: scroll;
}

.zoomed_image_wrapper::-webkit-scrollbar-thumb {
    background: transparent;
}

.zoomed_image_wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.image_zoom_container .zoomed_image {
    width: auto;
    height: 150%;
    object-fit: contain;
    display: none;
}

.image_zoom_container .zoomed_image.active {
    display: flex;
}

.thumbnail_container .thumbnail_img {
    width: 60px;
    height: 60px;
    border: 2px solid var(--divider);
    margin: 2px 4px;
    opacity: 0.5;
    object-fit: cover;
}

.thumbnail_img.active, .thumbnail_img:hover {
    opacity: 1;
    cursor: pointer;
    border: 2px solid var(--colorPrimary);
}

.image_zoom_container .close-icon {
    padding: 6px 8px;
    background: white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    margin: 4px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    align-self: flex-start;
}

.cookie_consent_wrapper {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 8px;
    background: white;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    transition: 1s ease;
}

.cookie_consent_wrapper.active {
    bottom: 0;
}

.blog_grid_container {
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.blog_grid_container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog_grid_container span {
    font-size: 15px;
    font-weight: bold;
    margin: 16px 8px 8px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog_grid_container p {
    font-size: 12px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 20px 8px;
    text-overflow: ellipsis;
}

.blog_grid_container a {
    margin-bottom: 16px;
    align-self: center;
}

.sitemap_group_wrapper .heading {
    font-weight: 500;
    font-size: 24px;
    margin: 16px 8px;
}


.sitemap_group_wrapper a {
    font-weight: 400;
    font-size: 14px;
    margin: 8px;
}

.top_slide_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.top_slide_nav#left {
    left: 4px;
}

.top_slide_nav#right {
    right: 4px;
}

.left_panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 700px;
    height: 100%;
    box-shadow: -8px 0 8px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    opacity: 0;
    background: white;
    z-index: 9999999;
    overflow: scroll;
}

.left_panel.active {
    right: 0;
    opacity: 1;
}

.left_panel .heading_wrapper {
    padding: 16px;
    border-bottom: 1px solid var(--divider);
    align-items: center;
}

.left_panel .heading_wrapper i {
    cursor: pointer;
    align-self: center;
}

.side_nav_dropdown_container {
    display: none;
}

.side_nav_dropdown_container.expand {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--divider);
    padding-left: 8px;
    background: #fdfdfd;
}

.gallery_item_container {
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    margin: 8px;
}

.gallery_item_container > span {
    color: #212121;
    font-family: "Montserrat", sans-serif;
    padding: 6px;
    font-weight: bold;
    max-width: 250px;
    align-self: center;
    overflow-wrap: break-word;
    line-height: 1.4;
    text-align: center;
}

.gallery_item_container > img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    height: 250px;
}

.gallery_item_container > iframe {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: none;
}

.home_blog_grid_item {
    width: 90%;
    max-width: 350px;
    margin: 8px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
    transform: translateY(0);
    cursor: pointer;
}

.home_blog_grid_item:hover {
    transform: translateY(-8px);
}

.home_blog_grid_item.column_alignment img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.home_blog_grid_item.row_alignment img {
    width: 35%;
    height: 100px;
    object-fit: cover;
}

.home_blog_grid_item > div {
    padding: 16px;
}

.home_blog_grid_item span {
    color: #212121;
    font-size: 16px;
    font-weight: 500;
}

.home_blog_grid_item p {
    font-size: 14px;
    line-height: 1.5;
    color: #7c7b7b;
    overflow: hidden;
    height: calc(14px * 1.5 * 4);
}

.treatment_care_section_wrapper {
    background: var(--colorAccent);
    border-radius: 24px;
    padding: 16px 24px 16px calc(92px + 24px);
    margin: 8px 8px 8px -92px;
    z-index: 2;
}

.treatment_care_section_wrapper * {
    color: white;
}

.about_stats_item_wrapper {
    padding: 16px;
    align-self: center;
    max-width: 400px;
}

.about_stats_item_wrapper img {
    width: 80px;
    height: 80px;
    margin-right: 24px;
    object-fit: contain;
    object-position: center;
}

.about_stats_item_wrapper span {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #6a6c6c;
}

.about_stats_item_wrapper span b {
    font-weight: bold;
    font-size: 40px;
}

.about_content_wrapper {
    background: white;
    margin: 8px;
    border-radius: 12px;
    padding: 16px;
    max-width: calc(100% - 16px);
}

.about_content_wrapper p {
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    padding: 16px;
}

.about_content_wrapper li {
    line-height: 1.7;
    font-size: 16px;
}


@media only screen and (max-width: 800px) {


    .toolbar_root #Andromeda_logo {
        height: 40px;
        /*margin: 8px;*/
        background-position: left !important;
        transition: 0.4s;
    }

    .contact_detail_container > .row_alignment.border {
        border-bottom: 1px solid #e4e4e4;
        border-right: none;
    }


    .header_container {
        position: relative;
        width: 100%;
        height: calc(100vw * 1.1);
    }

    .slide img {
        width: 100%;
        height: calc(100vw * 1.1);
        object-fit: cover;
    }

    .slide .slide_content {
        bottom: 10px;
        width: 100%;
    }

    .slide_content span {
        padding: 8px;
        font-size: 12px;
    }

    .slide_nav_button {
        font-size: 12px;
        padding: 8px 12px;
    }

    .primary-header-text {
        font-size: 12px;
    }

    .toolbar_menu_icon {
        visibility: visible;
    }

    .app-menu .menu_item {
        display: none;
    }

    .container_wrapper {
        margin: 6px 16px;
    }

    .container_wrapper .page_sub_heading {
        margin: 0 10px 10px;
    }

    .base_margin {
        margin-top: 96px;
    }

    .about_img {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .contact_strip p {
        font-size: 20px;
        padding: 16px;
    }

    .newsletter_block {
        padding: 20px 4px !important;
    }

    .newsletter_block form {
        padding: 16px 0;
        margin: 0;
        width: 100%;
        align-items: stretch;
        justify-content: stretch;
    }


    .footer_container {
        width: calc(100%);
    }


    .footer_container {
        padding: 0;
    }

    .footer_wrapper {
        padding: 20px;
    }


    .footer_heading {
        margin-top: 32px;
        margin-bottom: 12px;
        /*padding: 12px 8px;*/
        /*border-bottom: 1px solid #535353;*/
        /*position: relative;*/
    }

    /*.footer_heading:before {*/
    /*    content: '\f067';*/
    /*    position: absolute;*/
    /*    top: 50%;*/
    /*    transform: translateY(-50%);*/
    /*    right: 2px;*/
    /*    color: var(--colorAccent);*/
    /*    font-family: "Font Awesome 5 Free";*/
    /*}*/
    /*.footer_heading.active:before {*/
    /*    content: '\f068';*/
    /*}*/
    .footer_sub_content {
        display: none;
        padding: 8px 8px 20px;
    }

    .footer_sub_content.active {
        display: flex;
    }

    .dialog-container.popup {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
    }


    .why_choose_item_wrapper {
        width: calc((100%) - 16px);
    }

    .treatment_slide_wrapper {
        width: calc((100%) - 8px);
    }
}

.what_we_treat_button {
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    background: #f3f7fd;
    font-weight: 400;
    margin: 8px;
    font-size: 16px;
    box-shadow: 0 0 0 transparent;
    transition: 0.4s ease;
}

.what_we_treat_button:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.doctor_item_wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    transform: translateY(0);
}

.doctor_item_wrapper:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.doctor_item_wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top center;
}

.doctor_item_wrapper .name {
    font-size: 18px;
    color: white;
    background: var(--colorAccent);
    font-weight: 500;
    text-align: center;
    padding: 16px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.doctor_item_wrapper .designation {
    padding: 16px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.doctor_item_wrapper p {
    font-size: 14px;
    padding: 16px 16px;
    margin: 0;
    text-align: center;
}


.dynamic_content_wrapper {
    padding: 8px;
    font-size: 18px !important;
    font-family: "League Spartan", sans-serif !important;
    line-height: 1.5;
}

.dynamic_content_wrapper h1,
.dynamic_content_wrapper h2,
.dynamic_content_wrapper h3 {
    font-family: "League Spartan", sans-serif !important;
    line-height: 1.5;
}

.dynamic_content_wrapper ul,
.dynamic_content_wrapper ol,
.dynamic_content_wrapper li,
.dynamic_content_wrapper span,
.dynamic_content_wrapper p {
    margin: 4px 0;
    font-size: 18px !important;
    font-family: "League Spartan", sans-serif !important;
}


.dynamic_content_wrapper ul {
    padding-left: 16px;
}

.dynamic_content_wrapper ol {
    padding-left: 42px;
}


.dynamic_content_wrapper .page_heading {
    font-size: 32px !important;
}

.treatment_offered_section_wrapper {
    background-image: url("../images/treatmne_section_bg_img-100.jpg");
    background-size: cover;
    background-position: top right;
}

.importance_content_wrapper {
    background: linear-gradient(to top, var(--colorAccent), transparent);
    padding: 2px;
    border-radius: 10px;
}

.importance_content_wrapper > div {
    padding: 24px;
    background: white;
    border-radius: 8px;
}

.approach_section_wrapper {
    position: relative;
    width: 100%;
}

.approach_section_wrapper > div {
    width: 90%;
    max-width: 1200px;
    border-radius: 16px;
    z-index: 2;
    background: #D8ECFF;
    padding: 24px;
}

.approach_section_wrapper:before {
    content: '';
    position: absolute;
    top: 50%;
    height: 50%;
    max-height: 200px;
    background: var(--colorAccent);
    left: 0;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
}

.about_feature_item_wrapper {
    padding: 8px;
}

.about_feature_item_wrapper img {
    width: 80px;
    height: 80px;
    align-self: center;
    object-fit: contain;
    margin-right: 16px;
}

.about_feature_item_wrapper p {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 2px;
}

.about_feature_item_wrapper ul {
    padding-left: 16px;
    margin: 0;
}

.about_feature_item_wrapper ul li {
    line-height: 1.3;
    font-size: 16px;
}

.about_feature_item_wrapper p b {
    font-size: 18px;
}

.mission_vision_title_wrapper {
    align-self: center;
}

.mission_vision_title_wrapper img {
    width: 150px;
    height: 150px;
    align-self: center;
    margin-bottom: 16px;
    object-position: center;
    object-fit: contain;
}

.mission_vision_title_wrapper span {
    text-align: center;
    color: var(--colorAccent);
    font-weight: 500;
    font-size: 36px;
}

.mission_vision_content_wrapper {
    position: relative;
    padding: 24px;
    max-width: 600px;
}

.mission_vision_content_wrapper p {
    font-size: 20px;
    line-height: 1.3;
    background: #f3f5fb;
    padding: 24px;
    margin: 0;
    z-index: 1;
}

.mission_vision_content_wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-position: top right;
    background-image: url("../images/mission_vision_side_border@2x.png");
}

.mission_vision_content_wrapper.left:before {
    transform: rotate(180deg);
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
}

.mission_vision_section_wrapper {
    position: relative;
    align-self: center;
}

.mission_vision_section_wrapper .center_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 2;
}

.doctor_detail_section_wrapper {
    background: linear-gradient(to right, #B7D1EA, #337DC3);
    padding: 40px 0;
    margin-bottom: 50px;
}

.doctor_detail_section_wrapper .doctor_image {
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    margin-bottom: -100px;
    align-self: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.doctor_detail_section_wrapper .doctor_name {
    font-size: 40px;
    color: white;
}

.doctor_detail_section_wrapper p {
    font-size: 18px;
    line-height: 1.5;
    color: white;
}

.doctor_detail_item {
    margin: 8px;
    border: 1px solid var(--colorAccent);
    padding: 16px;
}

.doctor_detail_item span {
    font-size: 18px;
    line-height: 1.3;
    font-family: "League Spartan", sans-serif !important;
}

.doctor_detail_item p,
.doctor_detail_item li {
    font-size: 18px;
    line-height: 1.3;
    font-family: "League Spartan", sans-serif !important;
    margin-top: 2px;
}

.doctor_detail_item li p {
    margin-bottom: 0;
}

.fellowship_item_wrapper {
    margin: 58px 8px 8px;
    width: calc(100% - 16px);
    max-width: 400px;
    border-radius: 8px;
    padding: 16px;
    background: #E98F2E;
}

.fellowship_item_wrapper img {
    width: 100px;
    height: 100px;
    align-self: center;
    margin-bottom: 16px;
    object-position: center;
    object-fit: cover;
    border-radius: 50%;
    margin-top: -66px;
    border: 2px solid #E98F2E;
}

.fellowship_item_wrapper span {
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
}

.home_address_help_image {
    max-width: 350px;
    margin: -20px 0 -20px 24px;
}

.footer_cr_text {
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.71);
    font-size: 14px;
    text-align: end;
}

@media only screen and (max-width: 500px) {

    .footer_cr_text {
        font-size: 14px;
        text-align: center;
    }

    .home_address_help_image {
        width: calc(100% - 24px);
        max-width: unset;
        margin: 12px;
        align-self: center;
    }

    .doctor_detail_section_wrapper .doctor_image {
        margin-bottom: 16px;
    }

    .footer_wrapper input {
        width: auto;
    }

    .footer_logo {
        align-self: center;
    }

    .faq_heading {
        text-align: center;
        justify-content: center;
        border-bottom: 1px solid #e8e8e8;
    }

    .faq_block {
        margin-bottom: 16px;
    }

    .thumbnail_container .thumbnail_img {
        opacity: 1;
    }


    .page_heading {
        font-size: 26px !important;
    }
}
