@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
body {
  font-family: "Inter", sans-serif!important;
}
@font-face {
    font-display: swap;
    font-family: JekoExtraBold;
    src: url(../fonts/JekoExtraBold.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: JekoMedium;
    src: url(../fonts/JekoMedium.ttf) format("truetype")
}

/*header*/
.custom-logo {
 max-height: 50px;
 width: auto;
}

header#header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 15;
}
header#header a.logo {
    display: none;
}
header#header nav.main-navigation ul#menu-main-menu {
    display: flex;
    gap: 30px;
}
header#header nav.main-navigation ul#menu-main-menu>li>a {
    font-size: 16px;
    color: #353535;
    text-decoration: none;
    font-weight: 400;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li>a:hover {
    color: #004fe0;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children {
    position: relative;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children ul.sub-menu {
    position: absolute;
    left: 0;
    margin: 0;
    padding: 20px 20px 10px;
    background: #fff;
    min-width: 240px;
    z-index: 11;
    box-shadow: 4px 4px 7px 3px #00000017;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}
@media screen and (min-width: 992px) {
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transition: all .5s ease;
}
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children ul.sub-menu>li {
    list-style: none;
    border-bottom: 1px solid #dddddd85;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children ul.sub-menu>li:last-child {
    border-bottom: 0px solid #dddddd85;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children ul.sub-menu>li>a {
    font-size: 16px;
    color: #353535;
    text-decoration: none;
    font-weight: 400;
    padding: 10px 0;
    display: block;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children ul.sub-menu>li>a:hover {
    color: #004fe0;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children {
    padding-right: 20px;
}
/*header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children:before {
    content: '';
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #353535;
    border-left: 1px solid #353535;
    position: absolute;
    right: 3px;
    transform: rotate(-45deg);
    top: 7px;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children:hover::before {
    border-bottom: 1px solid #004fe0;
    border-left: 1px solid #004fe0;
    transition: all .3s ease;
}*/

header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children>a:before {
    content: '';
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #353535;
    border-left: 1px solid #353535;
    position: absolute;
    right: 3px;
    transform: rotate(-45deg);
    top: 7px;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children>a:hover::before {
    border-bottom: 1px solid #004fe0;
    border-left: 1px solid #004fe0;
    transition: all .3s ease;
}


header#header  nav.main-navigation ul#menu-main-menu .get_started_btn a {
    background: #004fe0;
    color: #fff;
    padding: 10px 30px;
    border-radius: 20px;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu .get_started_btn a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    display: inline-block;
    transform: rotate(225deg);
    margin-left: 9px;
    transition: all .3s ease;
}
header#header  nav.main-navigation ul#menu-main-menu .get_started_btn a:hover {
    background: #00eaff;
    color: #004fe0;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu .get_started_btn a:hover:after {
    border-bottom: 2px solid #004fe0;
    border-left: 2px solid #004fe0;
    transition: all .3s ease;
}

/*End header*/

/*footer*/
footer.site-footer {
    background: #EFEFEF;
    padding: 56px 0 50px;
}
footer.site-footer .container {
    max-width: 1440px;
    padding: 0 60px;
}
.upper-footer .top-block h3 {
    color: #0050df;
    font-family: 'Inter';
    font-size: 18px;
    letter-spacing: -.54px;
    line-height: 26px;
    margin-bottom: 33px;
    font-weight: 400;
}
.upper-footer ul.ft-list, .upper-footer ul {
    margin: 0;
    padding: 0;
}
.upper-footer ul.ft-list li, .upper-footer ul li {
    list-style: none;
}
.upper-footer ul.ft-list li a, .upper-footer ul li a {
    color: #353535;
    text-decoration: underline;
    font-size: 16px;
    letter-spacing: -.48px;
    line-height: 32px;
}
.upper-footer .body-small span {
    font-weight: 500;
}
.upper-footer .body-small {
    font-size: 14px !important;
    letter-spacing: -.28px !important;
    line-height: 20px !important;
    color: #212529;
    font-weight: 400;
}
.lower-footer .row p {
    width: fit-content;
    padding-left: 15px;
    font-size: 14px !important;
    letter-spacing: -.28px !important;
    line-height: 20px !important;
    color: #004fe0;
}
.lower-footer .row img {
    width: 138px;
    height: 78px;
    object-fit: contain;
    padding: 0;
}
.lower-footer .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: end;
    margin-top: 30px;
}
/*end footer*/

/*home page section*/

section.hero-banner .bg-image {
    padding: 228px 40px 277px;
    border-radius: 20px 20px 0 0;
    max-width: 1440px;
    margin: 0 auto;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
}
.logo_side_image {
    position: absolute;
    right: 36px;
    top: 36px;
    z-index: 11;
}
.main_heading_box h1 {
    color: #fff;
    font-family: JekoMedium;
    font-size: 72px;
    margin-bottom: 25px;
    line-height: 76px;
    font-weight: 600;
    letter-spacing: -1.00px;
}
.main_heading_box {
    text-align: left;
}
section.hero-banner .bg-image:before {
    content: '';
    background: radial-gradient(21% 19% at 90% 10%,hsla(0,0%,100%,.9) 0,hsla(0,0%,100%,0) 100%),linear-gradient(90deg,rgba(53,37,27,.6) 48%,transparent 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
}
section.hero-banner .bg-image {
    padding: 228px 40px 277px;
    border-radius: 20px 20px 0 0;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    background-position: 15% 24%!important;
    background-size: 117%!important;
}
.main_heading_box p {
    font-size: 20px;
    letter-spacing: -.4px;
    line-height: 28px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 400;
}
.main_banner_btn {
    display: flex;
    gap: 20px;
}
.main_banner_btn a {
    background-color: #fff;
    border-color: #fff;
    border-radius: 41px;
    color: #0050df;
    padding: 18px 32px;
    font-size: 18px;
    letter-spacing: -.18px;
    transition: all .15s ease;
    list-style: none;
    text-decoration: none;
    line-height: 1;
    font-weight: 500;
}
.main_banner_btn a:hover {
    background-color: #00eaff;
    border-color: #00eaff;
    color: #0050df;
    transition: all .15s ease;
}
section.cards_section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    margin-top: -175px;
}
section.cards_section {
    position: relative;
}
section.cards_section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 175px);
    background: #eff6fc;
    bottom: 0;
}
section.cards_section .cards_wrapper .card {
    width: calc(25% - 15px);
}
section.cards_section .cards_wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
section.cards_section .cards_wrapper .card img {
    max-height: 80px;
    max-width: 80px;
    min-width: 80px;
    min-height: 80px;
    margin-bottom: 35px;
}
section.cards_section .cards_wrapper .card {
    padding: 25px 27px 37px;
    border-radius: 20px;
    box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, .15);
}
section.cards_section .cards_wrapper .card .card_content h3 {
    font-family: JekoMedium;
    color: #0050df;
    margin-bottom: 30px;
    font-size: 28px;
    letter-spacing: -.98px;
    line-height: 36px;
    font-weight: 600;
}
section.cards_section .cards_wrapper .card .card_content p {
    font-size: 16px;
    letter-spacing: -.48px;
    line-height: 22px;
    margin-bottom: 40px;
    font-style: normal;
    font-weight: 400;
}
section.cards_section .cards_wrapper .card .card_content .btn {
    background-color: transparent;
    border-color: #0050df;
    border-radius: 41px;
    color: #0050df;
    padding: 18px 32px;
    font-size: 18px;
    letter-spacing: -.18px;
    transition: all .15s;
    line-height: 1;
    font-weight: 600;
}

section.cards_section .cards_wrapper .card .card_content .btn:hover {
    background-color: #0050df;
    border-color: #0050df;
    color: #fff;
    transition: all .15s;
}
section.cards_section .cards_wrapper .card .card_content {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
section#always-here-for-you {
    background-color: #eff6fc;
    padding: 130px 40px 140px;
}
section#always-here-for-you h2 {
    font-family: JekoMedium;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -1.47px;
    line-height: 42px;
    margin-bottom: 30px;
    color: #0050df;
}
section#always-here-for-you p {
    font-size: 16px;
    letter-spacing: -.48px;
    line-height: 22px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 50px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
section#always-here-for-you a {
    background-color: #0050df;
    border-color: #0050df;
    border-radius: 41px;
    color: #fff;
    padding: 18px 32px;
    font-size: 18px;
    letter-spacing: -.18px;
    transition: all .15s;
    line-height: 1;
    text-decoration: none;
}
section#always-here-for-you a:Hover {
    background-color: #00eaff;
    border-color: #00eaff;
    color: #0050df;
    transition: all .15s;
}
section#complete-peace {
    background: #eff6fc;
}
section#complete-peace .row {
    max-width: 1440px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 20px;
    background: #fff;
}
section#complete-peace .image_section {
    max-width: 623px;
}
section#complete-peace .col {
    display: flex;
    gap: 10px;
    align-items: center;
}
.right_content_section h3, section#clinical-services .copy-col h2 {
    font-family: JekoMedium;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -1.47px;
    line-height: 42px;
    margin-bottom: 30px;
    color: #0050df;
}
section#clinical-services .copy-col p{
    color: #212529;
    font-size: 16px;
}
.right_content_section {
    padding: 0 15px;
}
.right_content_section ul li {
    color: #212529;
    font-size: 16px;
}
.right_content_section ul {
    margin-bottom: 50px;
}
.right_content_section a, section#clinical-services .copy-col a {
    background-color: #0050df;
    border-color: #0050df;
    border-radius: 41px;
    color: #fff;
    padding: 18px 32px;
    font-size: 18px;
    letter-spacing: -.18px;
    display: block;
    width: fit-content;
    text-decoration: none;
    transition: all .15s;
    line-height: 1;
}
.right_content_section a:hover, section#clinical-services .copy-col a:hover {
    background-color: #00eaff;
    border-color: #00eaff;
    color: #0050df;
}
.clinical_image img {
    width: 100%;
    height: 100%;
}
.clinical_image {
    max-width: 623px;
}
section#clinical-services .row {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}
section#clinical-services {
    background: #eff6fc;
    padding: 100px 0 100px;
}
section#clinical-services .clinical_image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
section#clinical-services .clinical_image {
    max-width: 623px;
}
section#health-just-got-easy .container {
    max-width: 1440px;
    padding: 0 40px;
}
.health-just-content {
    background: #0050df;
    padding: 112px 40px 133px;
    text-align: center;
    border-radius: 500px;
}
section#health-just-got-easy {
    padding: 50px 0;
}
.health-just-content h3 {
    font-family: JekoMedium;
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1;
}
.health-just-content p {
    max-width: 680px;
    font-size: 16px;
    letter-spacing: -.48px;
    line-height: 22px;
    font-style: normal;
    font-weight: 400;
    margin: 0 auto 20px;
    color: #fff;
}
.health_button {
    background-color: #fff;
    border-color: #fff;
    border-radius: 41px;
    color: #0050df;
    padding: 18px 100px 18px;
    font-size: 18px;
    letter-spacing: -.18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    transition: all .3s ease;
}
.health_button:hover {
    background-color: #00eaff;
    border-color: #00eaff;
    color: #0050df;
    transition: all .3s ease;
}
section#our-branches {
    padding: 63px 0 50px;
}
section#our-branches .inner-container {
    padding: 18px 34px 13px;
    border-radius: 20px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 557px;
}
div#accordionBranches {
    max-width: 342px;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    padding: 20px 0;
}
div#accordionBranches .accordion-item button {
    color: #0050df;
    padding: 3px 25px;
    font-size: 28px;
    font-weight: 600;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);

}
section#our-branches .col.text-center .our_branch_heading h2 {
    font-family: JekoMedium;
    font-size: 42px;
    letter-spacing: -1.47px;
    line-height: 42px;
    margin-bottom: 11px;
    color: #0050df;
    font-style: normal;
    font-weight: 600;
}
.col.text-center .our_branch_heading p {
    color: #212529;
    font-size: 16px;
    letter-spacing: -.48px;
    line-height: 22px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 42px;
}
div#accordionBranches .accordion-item {
    border: 0;
}
div#accordionBranches .accordion-body {
    padding: 2px 25px 30px;
    text-align: left;
}
div#accordionBranches .accordion-body>br {
    display: none;
}
div#accordionBranches address.body-small {
    font-size: 14px;
    color: #212925;
}
div#accordionBranches .accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: transparent;
    box-shadow: none;
}
div#accordionBranches .accordion-body li {
    font-size: 14px;
    list-style: none;
    text-decoration: none;
}
div#accordionBranches .accordion-body ul {
    padding: 0;
}
div#accordionBranches .accordion-button:focus {
    box-shadow: none;
}
div#accordionBranches .accordion-body li a {
    text-decoration: none;
}



.navbar-toggler {
    border: none!important;
    box-shadow: none!important;
    padding: 0!important;
    padding-right: 0px !important;
    display: none;
}
.navbar-toggler #navbar-toggler-icon {
    cursor: pointer;
    height: 18px;
    margin: 0 auto;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    width: 26px;
    z-index: 9999;
}
.navbar-toggler #navbar-toggler-icon span:first-child {
    top: 0;
}
.navbar-toggler #navbar-toggler-icon span {
    background: #353535;
    border-radius: 2px;
    display: block;
    height: 2px;
    left: 0;
    opacity: 1;
    position: absolute;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    width: 100%;
}
.navbar-toggler #navbar-toggler-icon span:nth-child(2), .navbar-toggler #navbar-toggler-icon span:nth-child(3) {
    top: 7px;
}
.navbar-toggler #navbar-toggler-icon span:nth-child(4) {
    top: 14px;
}
.navbar-toggler.active #navbar-toggler-icon span:nth-child(2) {
    transform: rotate(45deg);
}
.navbar-toggler.active #navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg);
}
.navbar-toggler.active #navbar-toggler-icon span:first-child, .navbar-toggler.active #navbar-toggler-icon span:nth-child(4) {
    left: 50%;
    top: 0;
    width: 0;
}
/*end home page section*/



/*new menu*/
header#header #mega-menu-wrap-main-menu #mega-menu-main-menu {
    display: flex;
    gap: 30px;
}
header#header div#mega-menu-wrap-main-menu {
    background: transparent;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    line-height: 40px;
    height: 40px;
    padding: 0px 0px!important;
    vertical-align: baseline;
    width: auto;
    display: block;
    color: #353535!important;
    text-transform: none;
    text-decoration: none;
    text-align: left;
    background: rgba(0, 0, 0, 0);
    border: 0;
    border-radius: 0px;
    font-family: inherit;
    font-size: 16px!important;
    font-weight: normal;
    outline: none;
    font-weight: 400;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover {
    color: #004fe0!important;
    background: transparent!important;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    background: transparent!important;
    color: #353535!important;
    font-weight: normal;
    text-decoration: none;
    border-color: transparent!important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
    content: ''!important;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #353535;
    border-left: 1px solid #353535;
    position: relative;
    right: 3px;
    transform: rotate(-45deg);
    top: 16px;
    margin-left: 10px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link:hover > span.mega-indicator:after {
    border-bottom: 1px solid #004fe0;
    border-left: 1px solid #004fe0;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-get_started_btn.mega-menu-item.get_started_btn > a.mega-menu-link {
    background: #004fe0!important;
    color: #fff!important;
    padding: 10px 30px!important;
    line-height: 1.2;
    border-radius: 20px!important;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-get_started_btn.mega-menu-item.get_started_btn > a.mega-menu-link:hover {
    background: #00eaff!important;
    color: #004fe0!important;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-get_started_btn.mega-menu-item.get_started_btn > a.mega-menu-link:after {
    content: '';
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    display: inline-block;
    transform: rotate(225deg);
    margin-left: 9px;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-get_started_btn.mega-menu-item.get_started_btn > a.mega-menu-link:hover:after {
    border-bottom: 2px solid #004fe0;
    border-left: 2px solid #004fe0;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
    background: transparent!important;
    color: #004fe0!important;
    font-weight: normal;
    text-decoration: none;
    border-color: transparent!important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link span:after {
    border-color: #004fe0!important;
}
header#header {
    position: relative;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > ul.mega-sub-menu {
    border-radius: 0 0 20px 20px!important;
    border-top: 1px solid #efefef!important;
    box-shadow: 0 15px 23px 0 rgba(0, 0, 0, .15)!important;
    margin-top: 13px!important;
    padding: 30px 25px!important;
    background: #FFF!important;
}
header#header div#mega-menu-wrap-main-menu ul#mega-menu-main-menu .textwidget p, header#header div#mega-menu-wrap-main-menu ul#mega-menu-main-menu .textwidget p strong {
    font-size: 28px;
    letter-spacing: -1.0px;
    line-height: 36px;
    margin-bottom: 15px;
    color: #353535;
    font-weight: 600!important;
    font-family: 'Inter';
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > ul.mega-sub-menu ul.mega-sub-menu > li > a.mega-menu-link {
    color: #353535!important;
    text-decoration: none!important;
    transition: all .15s;
    font-size: 16px!important;
    letter-spacing: -.48px;
    line-height: 16px;
    padding: 8px 0!important;
    font-family: 'Inter'!important;
    font-style: normal;
    font-weight: 400!important;
    text-transform: capitalize!important;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > ul.mega-sub-menu ul.mega-sub-menu > li > a.mega-menu-link:hover {
    color: #004fe0!important;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > ul.mega-sub-menu ul.mega-sub-menu > li{
    margin: 0!important;
    padding: 0!important;
}
.mega-menu-column.mega-service_menus.mega-menu-columns-8-of-12.service_menus ul.mega-sub-menu {
    padding-left: 33.33%!important;
}

/*end mega menu*/




/*responsive css*/
@media only screen and (max-width: 767px) {
section.cards_section .container {
    padding: 0 24px;
    margin-top: -30px;
}
section.cards_section .cards_wrapper .card {
    width: calc(100% - 0px);
    padding: 30px 10px 50px;
    border-radius: 0px;
    box-shadow: none;
    border: 0px solid rgba(0, 0, 0, .125);
    border-bottom: 1px solid hsla(0, 1%, 65%, .3);
}
section.cards_section .cards_wrapper .card:last-child {
    border-bottom: 0px solid hsla(0, 1%, 65%, .3);
}
section.cards_section .cards_wrapper {
    display: flex;
    gap: 00px;
    flex-wrap: wrap;
    padding: 0 12px;
    background: #fff!important;
    border-radius: 20px;
    box-shadow: 3px 3px 15px 0 rgba(0,0,0,.1);
}
section.cards_section:before {
    height: calc(100% - 30px);
    z-index: -1;
}
section#always-here-for-you {
    padding: 60px 24px 78px;
}
section#complete-peace .container-fluid {
    padding: 0;
}
section#complete-peace .row {
    padding: 37px 24px 87px;
    border-radius: 0px;
}
section#complete-peace .col {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
}
.right_content_section {
    padding: 0 0px;
}
.right_content_section h3, section#clinical-services .copy-col h2 {
    line-height: 46px;
}
section#clinical-services {
    padding: 37px 0 87px;
}
section#clinical-services .col, section#clinical-services .inner-container .row, section#clinical-services .inner-container .row .ms-md-auto, section#clinical-services .inner-container .row .me-md-auto {
    padding: 0;
}
section#clinical-services .row {
    gap: 30px;
}
section#clinical-services .copy-col p, .col.text-center .our_branch_heading p  {
    font-size: 14px;
}
section#our-branches .inner-container {
    padding: 37px 12px 37px;
    border-radius: 0px;
    background-image: none!important;
}
div#accordionBranches .accordion-item button {
    font-size: 24px;
}
div#accordionBranches {
    max-width: 100%;
    border-radius: 0px;
    padding: 0;
}
.col.text-center .our_branch_heading p {
    margin-bottom: 0px;
}
div#accordionBranches .accordion-button:not(.collapsed) {
    background-color: #ccdcf9;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.accordion-collapse.collapse.show {
    background: #eff6fc;
}
section#our-branches .inner-container {
    height: auto;
}
.health-just-content h3 {
    font-size: 28px;
    margin-bottom: 38px;
    font-weight: 600;
}
.health-just-content p {
    font-size: 14px;
    margin: 0 auto 38px;
}
.health_button {
    padding: 14px 48px;
    font-size: 16px;
    transition: all .3s ease;
}
.health-just-content {
    padding: 102px 0px 102px;
}
section#health-just-got-easy {
    padding: 40px 0;
}
footer.site-footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
footer.site-footer .container {
    padding: 0 36px;
}
.upper-footer .col-4 {
    width: 100%;
    border-bottom: 1px solid #bdbdbd;
    padding: 0 0 28px;
    margin-bottom: 28px;
}
.upper-footer .col-8 {
    padding: 0;
    width: 100%;
}
.upper-footer .col-8 .col-12.col-md-6.col-lg-3 {
    width: 50%;
    margin-bottom: 43px;
}
.upper-footer .top-block h3 {
    font-weight: 500;
}
.upper-footer ul.ft-list li a, .upper-footer ul li a {
    font-size: 14px;
    line-height: 26px;
}
.upper-footer .body-small {
    margin-bottom: 10px;
}
.lower-footer p {
    border-top: 1px solid #bdbdbd;
    padding: 28px 30px 0!important;
    margin-top: 28px;
    text-align: center;
}
section.hero-banner .bg-image:before {
    background: radial-gradient(21% 19% at 0 10%,hsla(0,0%,100%,.9) 0,hsla(0,0%,100%,0) 100%),linear-gradient(0deg,rgba(53,37,27,.6) 47%,hsla(0,0%,100%,0) 80%);
}
section.hero-banner .bg-image {
    padding: 218px 24px 80px;
    background-position: 68% 29%!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
}
section.hero-banner .banner-content.text-center {
    padding: 0;
}
.main_heading_box h1 {
    font-size: 54px;
    letter-spacing: -1.00px;
    line-height: 58px;
}
.main_heading_box p {
    font-size: 18px;
    margin-bottom: 16px;
}
.logo_side_image {
    right: auto;
    top: 24px;
    left: 24px;
}
.main_banner_btn a, section.cards_section .cards_wrapper .card .card_content .btn, section#always-here-for-you a, .right_content_section a, section#clinical-services .copy-col a {
    padding: 14px 28px;
    font-size: 16px;
}
.main_banner_btn {
    gap: 24px;
}
.lower-footer .row {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 15px;
    flex-direction: column-reverse;
}
/*header css*/
nav.main-navigation {
    position: absolute;
    background: #fff;
    top: 95px;
    height: calc(100vh - 95px);
    z-index: 999;
    right: -100%;
    width: calc(100% - 40px);
    padding: 20px;
    max-height: calc(100% - 80px);
    overflow-x: scroll;
    transition: all .3s ease;
}
nav.main-navigation.active_menu {
    right: 0%;
    transition: all .3s ease;
}
header#header {
    padding: 25px 24px 20px;
}
.navbar-toggler {
    display: block;
}
header#header nav.main-navigation ul#menu-main-menu {
    display: flex;
    gap: 0;
}
header#header nav.main-navigation ul#menu-main-menu>li>a {
    font-size: 20px;
    line-height: 24px;
    padding: 20px 52px 20px 10px;
    display: block;
}
header#header nav.main-navigation ul#menu-main-menu>li {
    width: 100%;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children:before {
    width: 13px;
    height: 13px;
    border-bottom: 2px solid #353535;
    border-left: 2px solid #353535;
    top: 20px!important;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children:hover::before {
    border-bottom: 2px solid #004fe0;
    border-left: 2px solid #004fe0;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children {
    padding-right: 0px;
}
/*header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children:hover ul.sub-menu {
    position: relative;
    transition: all .5s ease;
}*/
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children ul.sub-menu {
    padding: 0 10px;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0px;
    transition: all .5s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children ul.sub-menu>li>a {
    font-size: 20px;
    padding: 12px 0;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li>a {
    border-bottom: 1px solid #dddddd85;
}
header#header  nav.main-navigation ul#menu-main-menu .get_started_btn a {
    display: block;
    width: fit-content;
    margin-top: 20px;
}
body.fixed {
    overflow: hidden;
}
.page-wrapper {
    position: relative;
    overflow-x: hidden;
}
body.fixed .page-wrapper {
    position: static;
}
/*end header css*/
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
section.cards_section .container {
    padding: 0 20px;
    margin-top: -30px;
}
section.cards_section .cards_wrapper .card {
    width: calc(100% - 0px);
    padding: 30px 10px 50px;
    border-radius: 0px;
    box-shadow: none;
    border: 0px solid rgba(0, 0, 0, .125);
    border-bottom: 1px solid hsla(0, 1%, 65%, .3);
}
section.cards_section .cards_wrapper .card:last-child {
    border-bottom: 0px solid hsla(0, 1%, 65%, .3);
}
section.cards_section .cards_wrapper {
    display: flex;
    gap: 00px;
    flex-wrap: wrap;
    padding: 0 22px;
    background: #fff!important;
    border-radius: 20px;
    box-shadow: 3px 3px 15px 0 rgba(0,0,0,.1);
}
section.cards_section:before {
    height: calc(100% - 30px);
    z-index: -1;
}
/*section#always-here-for-you {
    padding: 60px 24px 78px;
}*/
section#complete-peace .container-fluid {
    padding: 0 20px;
}
section#complete-peace .row {
    padding: 24px 14px;
    border-radius: 20px;
}
section#complete-peace .col {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    flex-wrap: nowrap;
}
.right_content_section {
    padding: 0 0px;
}
.right_content_section h3, section#clinical-services .copy-col h2 {
    line-height: 46px;
}
section#clinical-services {
    padding: 74px 0 74px;
}
section#clinical-services .col, section#clinical-services .inner-container .row, section#clinical-services .inner-container .row .ms-md-auto, section#clinical-services .inner-container .row .me-md-auto {
    padding: 0;
}
section#clinical-services .row {
    gap: 30px;
}
section#clinical-services .copy-col p, .col.text-center .our_branch_heading p  {
    font-size: 14px;
}
section#our-branches .inner-container {
    padding: 20px;
}
div#accordionBranches .accordion-item button {
    font-size: 32px;
    font-weight: 700;
}

.col.text-center .our_branch_heading p {
    margin-bottom: 0px;
}

section#our-branches .inner-container {
    height: 560px;
}
.health-just-content h3 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}
.health-just-content p {
    font-size: 15px;
    margin: 0 auto 20px;
    max-width: 425px;
    letter-spacing: -.42px;
    line-height: 22px;
}
.health_button {
    padding: 18px 100px;
    font-size: 16px;
    transition: all .3s ease;
}
.health-just-content {
    padding:112px 0px 133px;
}
section#health-just-got-easy .container {
    padding: 0 32px;
}
section#health-just-got-easy {
    padding: 40px 0;
}
footer.site-footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
footer.site-footer .container {
    padding: 0 32px;
}
.upper-footer .col-4 {
    /*width: 100%;*/
    /*border-bottom: 1px solid #bdbdbd;*/
    padding: 0 0 28px;
    /*margin-bottom: 28px;*/
}
.upper-footer .col-8 {
    padding: 0;
    /*width: 100%;*/
}
.upper-footer .col-8 .col-12.col-md-6.col-lg-3 {
    width: 50%;
    margin-bottom: 43px;
}
.upper-footer .top-block h3 {
    font-weight: 500;
}
.upper-footer ul.ft-list li a, .upper-footer ul li a {
    font-size: 14px;
    line-height: 26px;
}
.upper-footer .body-small {
    margin-bottom: 10px;
}
.lower-footer .row p {
    padding-left: 0px;
}
.upper-footer .body-small {
    font-size: 16px !important;
}
.lower-footer .row p {
    font-size: 14px !important;
    letter-spacing: -.28px !important;
    line-height: 20px !important;
    margin-bottom: 0;
}
.upper-footer .body-small {
    font-size: 14px !important;
    letter-spacing: -.28px !important;
    line-height: 20px !important;
}
section.hero-banner .bg-image {
    padding: 291px 24px 160px;
    background-position: 57% 29%!important;
    background-size: 185%!important;
    background-repeat: no-repeat!important;
}
section.hero-banner .banner-content.text-center {
    padding: 0;
}
.main_heading_box h1 {
    font-size: 54px;
    letter-spacing: -1.00px;
    line-height: 58px;
}
.main_heading_box p {
    font-size: 18px;
    margin-bottom: 16px;
}
.main_banner_btn a, section.cards_section .cards_wrapper .card .card_content .btn, section#always-here-for-you a, .right_content_section a, section#clinical-services .copy-col a {
    padding: 18px 32px;
    font-size: 16px;
    letter-spacing: -.16px;
}
.main_banner_btn {
    gap: 10px;
}

/*header css*/
nav.main-navigation {
    position: absolute;
    background: #fff;
    top: 80px;
    height: 100%;
    z-index: 999;
    right: -100%;
    width: calc(100% - 40px);
    padding: 20px;
    max-height: calc(100% - 80px);
    overflow-x: scroll;
    transition: all .3s ease;
}
nav.main-navigation.active_menu {
    right: 0%;
    transition: all .3s ease;
}
header#header {
    padding: 25px 24px 20px;
}
.navbar-toggler {
    display: block;
}
header#header nav.main-navigation ul#menu-main-menu {
    display: flex;
    gap: 0;
}
header#header nav.main-navigation ul#menu-main-menu>li>a {
    font-size: 20px;
    line-height: 24px;
    padding: 20px 52px 20px 10px;
    display: block;
}
header#header nav.main-navigation ul#menu-main-menu>li {
    width: 100%;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children:before {
    width: 13px;
    height: 13px;
    border-bottom: 2px solid #353535;
    border-left: 2px solid #353535;
    top: 20px!important;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children:hover::before {
    border-bottom: 2px solid #004fe0;
    border-left: 2px solid #004fe0;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children {
    padding-right: 0px;
}
/*header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children:hover ul.sub-menu {
    position: relative;
    transition: all .5s ease;
}*/
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children ul.sub-menu {
    padding: 0 10px;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0px;
    transition: all .5s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children ul.sub-menu>li>a {
    font-size: 20px;
    padding: 12px 0;
    transition: all .3s ease;
}
header#header nav.main-navigation ul#menu-main-menu>li>a {
    border-bottom: 1px solid #dddddd85;
}
header#header  nav.main-navigation ul#menu-main-menu .get_started_btn a {
    display: block;
    width: fit-content;
    margin-top: 20px;
}
body.fixed {
    overflow: hidden;
}
.page-wrapper {
    position: relative;
    overflow-x: hidden;
}
body.fixed .page-wrapper {
    position: static;
}
section#complete-peace .image_section {
    max-width: 384px;
}
section#complete-peace .image_section img {
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
    border-radius: 20px 500px 500px 20px;
}
section#complete-peace .image_section, section#clinical-services .clinical_image {
    max-width: 384px;
    height: 100%;
    max-height: 450px;
}
/*end header css*/
}

@media only screen and (min-width: 992px) and (max-width: 1025px) {
header#header {
    padding: 25px 20px 15px;
}
section.hero-banner .bg-image {
    padding: 228px 20px 277px;
    border-radius: 20px 20px 0 0;
    background-position: 57% 29%!important;
    background-size: 185%!important;
}
section.hero-banner .banner-content.text-center.text-lg-left {
    padding-right: 0;
    padding-left: 0;
}
.main_heading_box h1 {
    font-size: 54px;
}
.main_heading_box p {
    margin-bottom: 40px;
    font-size: 18px;
    letter-spacing: -.2px;
    line-height: 24px;
}
.main_banner_btn a {
    padding: 18px 32px;
    font-size: 16px;
}
.main_banner_btn {
    gap: 10px;
}
section.cards_section .container {
    padding: 0 20px;
    margin-top: -155px;
}
section.cards_section:before {
    height: calc(100% - 75px);
}
section.cards_section .cards_wrapper {
    gap: 5px;
}
section.cards_section .cards_wrapper .card {
    width: calc(25% - 4px);
}
section#always-here-for-you {
    padding: 120px 40px 120px;
}
section#complete-peace .container-fluid {
    padding: 0 20px;
}
section#complete-peace .row {
    padding: 24px 4px;
}
section#complete-peace .image_section {
    max-width: 384px;
    height: 487px;
}
section#complete-peace .image_section img {
    height: 100%!important;
    object-fit: cover;
    border-radius: 20px 500px 500px 20px;
}
section#clinical-services .clinical_image {
    max-width: 384px;
    height: 470px;
    padding-right: 0;
}
section#clinical-services .clinical_image img{
    height: 100%!important;
    object-fit: cover;
    border-radius: 20px;
}
section#clinical-services .container-fluid, section#clinical-services .container-fluid .col {
    padding: 0;
}
section#clinical-services {
    padding: 74px 0 74px;
}
section#our-branches .col.text-center .our_branch_heading h2 {
    font-size: 54px;
    line-height: 56px;
    margin-bottom: 24px;
}
.col.text-center .our_branch_heading p {
    margin-bottom: 57px;
}
div#accordionBranches .accordion-item button {
    font-size: 32px;
}
section#our-branches .col.text-center {
    padding: 0;
}
.health-just-content p {
    max-width: 574px;
}
.upper-footer .col-8 {
    flex: 0 0 auto;
    width: 75%;
}
.upper-footer .col-4 {
    flex: 0 0 auto;
    width: 25%;
}
.upper-footer .col-8 .row {
    justify-content: end;
}
.upper-footer .col-12.col-md-6.col-lg-3 {
    flex: 0 0 auto;
    width: 33%;
}
.upper-footer .col-12.col-md-6.col-lg-3:last-child {
    margin-top: 50px;
}
footer.site-footer .container {
    padding: 0 20px;
}
footer.site-footer {
    border-radius: 20px 20px 0 0;
}
.lower-footer .row p {
    font-size: 15px !important;
}
.lower-footer .row img {
    margin-right: 20px;
}
}
/*end responsive ccss*/


/*about css*/

section.about-section {
    background-color: #eff6fc;
    border-radius: 20px 20px 0 0;
    padding: 50px 0 55px;
}
section.about-section .bg-image {
    max-width: 1440px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}
section.about-section .bg-image .about_banner_1, section.about-section .bg-image .about_banner_2 {
    width: 25%;
}
.about_banner_1 img {
    border-radius: 100%;
}
.about_banner_2 img {
    border-radius: 30px;
}
.aligment_content p {
    max-width: 670px!important;
}
.aligment_content p:first-child {
    margin-bottom: 40px!important;
}
section.about-section .bg-image .about_banner_content {
    width: 50%;
    background-color: #afdff8;
    border-radius: 174px;
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 164px;
    align-items: center;
    height: 340px;
}
.about_banner_content h1, .about_banner_content p {
    font-size: 42px;
    color: #0050df;
    font-weight: 600;
    padding: 0 96px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0;
}
section.content_about_section {
    background: #eff6fc;
}
section.content_about_section>.container {
    max-width: 1440px;
    width: 100%;
    padding: 0 52px;
}
section.content_about_section {
    padding: 0 40px 50px;
}
.row.content_about_row {
    background: #fff;
    border-radius: 20px;
    padding: 81px 45px 67px;
}
div#our-services-cards h2 {
    font-family: JekoExtraBold;
    color: #0050df;
    font-weight: 500;
    font-size: 42px;
    letter-spacing: -1.47px;
    line-height: 42px;
    margin-bottom: 8px;
}
div#our-services-cards p {
    color: #212529;
    margin-bottom: 85px;
    max-width: 545px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    letter-spacing: -.48px;
    line-height: 22px;
}
section.content_about_section .content-section {
    padding: 45px 0;
}
section.content_about_section .block-col {
    max-width: 623px;
}
section.content_about_section  .content-section img {
    border-radius: 20px;
}
section.content_about_section  .content-section h3 {
    font-family: JekoExtraBold;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -1.47px;
    line-height: 42px;
    color: #0050df;
    margin-bottom: 30px;
}
section.content_about_section  .content-section p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -.48px;
    line-height: 22px;
    margin-bottom: 40px;
    color: #212529;
}
section.content_about_section  .content-section .content_button {
    background-color: #0050df;
    border-color: #0050df;
    border-radius: 41px;
    color: #fff;
    padding: 18px 32px;
    font-size: 18px;
    letter-spacing: -.18px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    display: block;
    width: fit-content;
        border: 0;
    transition: all .3s ease;
}
section.content_about_section  .content-section .content_button:hover {
    background-color: #00eaff;
    border-color: #00eaff;
    color: #0050df;
    transition: all .3s ease;
}
@media only screen and (max-width: 767px) {
section.about-section .bg-image {
    padding: 0 24px;
}
section.about-section .bg-image .about_banner_1, section.about-section .bg-image .about_banner_2 {
    width: 50%;
}
section.about-section .bg-image {
    flex-wrap: wrap;
}
section.about-section .bg-image .about_banner_content {
    width: 100%;
    height: auto;
}
.about_banner_content h1, .about_banner_content p {
    font-size: 28px;
    padding: 50px 30px;
}
section.content_about_section {
    padding: 0 00px 50px;
}
section.content_about_section>.container {
    padding: 0 12px;
}
.row.content_about_row {
    border-radius: 0px;
    padding: 37px 24px 67px;
}
div#our-services-cards p {
    font-size: 14px;
    margin-bottom: 40px;
}
section.content_about_section  .content-section p {
    font-size: 14px;
}
section.content_about_section  .content-section .content_button {
    padding: 14px 28px;
    font-size: 16px;
    transition: all .3s ease;
}
section.content_about_section .content-section {
    padding: 37px 0;
}
section.content_about_section {
    padding: 0;
}
.condition_content p span {
    font-size: 14px;
    line-height: .5;
    position: relative;
}
section#health-just-got-easy .container {
    padding: 0 32px;
}

}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.about_banner_2 {
    display: none;
}
section.about-section .bg-image .about_banner_1, section.about-section .bg-image .about_banner_2 {
    width: 33.33333333%;
}
.about_banner_content h1, .about_banner_content p {
    font-size: 42px;
    /*padding: 0 150px;*/
    padding: 0 50px;
    line-height: 44px;
}
section.about-section .bg-image .about_banner_content {
    width: 66.6666666%;
    height: 243px;
}
section.about-section .bg-image {
    padding: 0 24px;
}
section.content_about_section {
    padding: 0 0px 50px;
}
section.content_about_section>.container {
    padding: 0 12px;
}
div#our-services-cards h2 {
    font-size: 54px;
    line-height: 58px;
}
div#our-services-cards p {
    max-width: 440px;
    font-size: 15px;
}
section.content_about_section .block-col {
    max-width: 384px;
    height: 467px;
}
section.content_about_section .block-col img {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.row.content_about_row {
    padding: 81px 34px 67px;
}
.content-section.image-right .col-xl-4.col-md-5.offset-lg-1.copy-col.order-1.offset-md-1 {
    margin-left: 5%;
}
section.content_about_section {
    padding: 0;
}
}
@media only screen and (min-width: 992px) and (max-width: 1025px) {
.about_banner_2 {
    display: none;
}
section.about-section .bg-image .about_banner_1, section.about-section .bg-image .about_banner_2 {
    width: 33.33333333%;
}
.about_banner_content h1, .about_banner_content p {
    font-size: 42px;
    padding: 0 150px;
    line-height: 44px;
}
section.about-section .bg-image .about_banner_content {
    width: 66.6666666%;
    height: 325px;
}
section.about-section .bg-image {
    padding: 0 24px;
}
section.content_about_section {
    padding: 0 0px 50px;
}
section.content_about_section>.container {
    padding: 0 12px;
}
div#our-services-cards h2 {
    font-size: 54px;
    line-height: 58px;
}
div#our-services-cards p {
    max-width: 500px;
    font-size: 15px;
}
section.content_about_section .block-col {
    max-width: 384px;
    height: 467px;
}
section.content_about_section .block-col img {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.row.content_about_row {
    padding: 81px 34px 67px;
}
.content-section.image-right .col-xl-4.col-md-5.offset-lg-1.copy-col.order-1.offset-md-1 {
    margin-left: 5%;
}
section.content_about_section {
    padding: 0;
}
}
/*end about css*/


/*branch page*/
section.branches-info .container {
    max-width: 1440px;
    padding: 58px 40px 125px;
}
.left_content h2 {
    font-size: 42px;
    letter-spacing: -1.47px;
    line-height: 42px;
    color: #0050df;
    margin-bottom: 30px;
    font-family: JekoExtraBold;
    font-weight: 500;
}
.left_content p {
    font-size: 16px;
    color: #212529;
    letter-spacing: -.44px;
    line-height: 22px;
}
.branches-contact span {
    display: block;
    font-size: 14px;
}

.branches-contact p {
    font-size: 14px;
}
.opening_time h2 {
    font-family: JekoExtraBold, "sans-serif";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -.98px;
    line-height: 36px;
    margin-top: 48px;
    margin-bottom: 8px;
}
.time_content {
    padding: 8px;
    border-bottom: 1px solid #dee2e6;
}
.time_content .content_body p {
    margin: 0;
    font-size: 16px;
    color: #212529;
    line-height: 25px;
    letter-spacing: .45px;
}
.time_content .content_body {
    display: flex;
    gap: 10px;
}
.week_time {
    width: 33.333%;
    font-weight: 700;
    letter-spacing: .05px!important;
}
.branches-map iframe {
    height: 555px;
}
section.branches-info .row {
    align-items: center;
}
.branches-contact p {
    letter-spacing: -.28px !important;
    line-height: 20px;
}

@media only screen and (max-width: 767px) {
section.branches-info .container {
    padding: 60px 24px 70px;
}
.branches-map iframe {
    height: 375px;
    margin-bottom: 30px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
section.branches-info .container {
    padding: 125px 20px 200px;
}
.left_content h2 {
    font-size: 54px;
    margin-bottom: 60px;
}
.branches-map iframe {
    height: 300px;
}
.opening_time h2 {
    font-size: 32px;
    margin: 48px 0 8px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1025px) {
section.branches-info .container {
    padding: 125px 20px 200px;
}
.left_content h2 {
    font-size: 54px;
    margin-bottom: 60px;
    line-height: 58px;
}
.branches-map iframe {
    height: 400px;
}
.opening_time h2 {
    font-size: 32px;
    margin: 48px 0 8px;
}
}
/*end branch page*/

/*alignment page*/
#conditions-wrap {
    background-color: #eff6fc;
    border-radius: 20px;
    padding: 20px 0
}

@media (max-width: 767.98px) {
    #conditions-wrap{
        margin-bottom:30px
    }
}

#conditions-wrap .conditions-outer{
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    overflow-x: hidden;
    position: relative;
    width: 100%
}

#conditions-wrap .conditions-outer:last-of-type{
    margin-bottom: 0
}

#conditions-wrap .conditions-outer .conditions-inner{
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    min-width: 100%;
    transform: translateX(-100%) translateZ(0)
}

#conditions-wrap .conditions-outer .conditions-inner:not(:last-of-type) .conditions{
    margin-left: 8px
}

#conditions-wrap .conditions-outer .conditions-inner .conditions{
    align-items: flex-start;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0
}


#conditions-wrap .conditions-outer:first-of-type .conditions-inner{
    animation: marqueeLtr 50s linear infinite
}

@keyframes marqueeLtr {
    0% {
        transform: translateX(-50%) translateZ(0)
    }

    to {
        transform: translateX(0) translateZ(0)
    }
}
ul.conditions {
    flex-wrap: wrap;
    max-width: 80vw;
}
ul.conditions li a {
    background-color: #fff;
    border-radius: 200px;
    padding: 9px 26px;
    will-change: transform;
    display: block;
    font-size: 18px;
    color: #212529;
    text-decoration: none;
    line-height: .5;
}
ul.conditions li a svg {
    width: 27px;
    height: 27px;
    position: relative;
    top: -2px;
}
.condition_content p span {
    font-size: 14px;
    line-height: 1.2;
    position: relative;
    border-top: 1px solid #ddd;
    display: block;
    padding-top: 20px;
}
.aligment_content h2 + p {
    margin-bottom: 40px!important;
}
/*End alignment page*/

/*sign up page*/
section.page-content-section.site_pages {
    padding: 50px 0 20px;
}
section.page-content-section.site_pages .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 55px;
}
section.page-content-section.site_pages .container .row {
    background: #eff6fc;
    padding: 50px 45px 60px;
    border-radius: 20px;
}
section.page-content-section.site_pages .page-content {
    max-width: 645px;
    margin: 0 auto;
}
section.page-content-section.site_pages .page-content h1 {
    font-size: 28px;
    letter-spacing: -.98px;
    line-height: 36px;
    margin-bottom: 40px;
    color: #0050df;
    font-family: JekoExtraBold, "sans-serif";
    text-align: center;
}
section.page-content-section.site_pages .page-content label {
    font-size: 16px;
    letter-spacing: -.48px;
    margin-bottom: 7px;
    font-weight: 400;
    line-height: 22px;
    color: #212529;
}
section.page-content-section.site_pages .page-content input, section.page-content-section.site_pages .page-content select {
    background-color: #fff;
    border-radius: 44px;
    font-family: InterRegular, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    font-size: 16px;
    letter-spacing: -.48px;
    padding: 18px 20px;
    border: 1px solid #dee2e6;
    outline: 0;
    width: 100%;
}
section.page-content-section.site_pages .page-content select {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    appearance: none;
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 50%;
    background-color: #fff;
}
.field_wraps_div {
    margin-bottom: 30px;
}
.field_wraps_div p {
    margin: 0;
}

.title_wrap {
    width: calc(20% - 5px);
}
.first_name_wrap, .last_name_wrap {
    width: calc(40% - 8px);
}
.day_wrap, .year_wrap {
    width: calc(25% - 8px);
}
.month_wrap, .country_wrap, .postcode_wrap, .email_wrap, .phone_wrap, .gp_country_wrap, .gp_postcode_wrap {
    width: calc(50% - 5px);
}
.address_wrap, .city_wrap, .gp_address_wrap, .gp_city_wrap {
    width: 100%;
}
.field_wraps_div {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.accept_field label input {
    width: 20px !important;
    margin-right: 10px;
}
.accept_field label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.accept_field label input + span:before {
    content: '';
    background-color: #fff;
    border: 2px solid #0050df;
    border-radius: 100%;
    height: 24px;
    position: absolute;
    width: 25px;
    left: 0px;
}
.accept_field label input + span {
    position: relative;
    padding-left: 31px;
}
.accept_field label input[type="checkbox"]:checked + span:after {
    content: '';
    background: #0050df;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 9px;
    top: 8px;
    border-radius: 80px;
}

.accept_field {
    text-align: center;
}
.submit_fields p input.wpcf7-form-control.wpcf7-submit {
    background-color: #0050df;
    border-color: #0050df;
    border-radius: 41px;
    color: #fff;
    padding: 18px 32px;
    transition: all .15s;
    font-size: 18px;
    letter-spacing: -.18px;
    max-width: 200px;
    margin: 0 auto;
}
.submit_fields p {
    text-align: center;
}
.accept_field span.wpcf7-list-item {
    margin: 0;
}
.submit_fields span.wpcf7-spinner {
    display: none;
}
@media only screen and (max-width: 767px) {
section.page-content-section.site_pages {
    padding: 20px 0 20px;
}
section.page-content-section.site_pages .container {
    padding: 0 12px;
}
section.page-content-section.site_pages .container .row {
    padding: 40px 24px 50px;
    border-radius: 0px;
}
section.page-content-section.site_pages .container .row .col.col-md-12 {
    padding: 0;
}
.title_wrap {
    width: calc(25% - 5px);
}
.last_name_wrap {
    width: calc(100% - 0px);
}
.first_name_wrap {
    width: calc(75% - 5px);
}
.country_wrap, .postcode_wrap, .email_wrap, .phone_wrap, .gp_country_wrap, .gp_postcode_wrap {
    width: calc(100% - 0px);
}
}
/*end signup page*/

/*privacy pages*/
section.pages_banner {
    padding: 100px 0;
    text-align: center;
    background-size: cover!important;
    background-position: center center!important;
    position: relative;
}
section.pages_banner:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    position: absolute;
    top: 0;
    opacity: .5;
}
section.pages_banner h1 {
    color: #fff;
    position: relative;
    font-size: 50px;
    font-family: JekoMedium;
}
section.pages_banner ol.breadcrumb li a:after {
    content: '/';
    margin: 0 7px;
}
section.pages_banner ol.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    font-weight: 700;
}
section.pages_banner ol.breadcrumb li {
    color: #fff;
    font-size: 16px;
}

section.pages_banner ol.breadcrumb {
    position: relative;
    z-index: 1;
    justify-content: center;
    margin-top: 20px;
}
.privacy-policy section.page-content-section.site_pages .page-content, .page-id-218 section.page-content-section.site_pages .page-content {
    max-width: 100%;
    margin: 0 auto;
}
table.CookieDeclarationTable {
    border: 1px solid #000;
    background: #fff;
}
table.CookieDeclarationTable th, table.CookieDeclarationTable td {
    padding: 5px 10px;
    border-bottom: 1px solid;
    border-right: 1px solid;
}
section.page-content-section.site_pages ol li {
    margin-bottom: 10px;
}
.page-id-218 section.page-content-section.site_pages h2, .page-id-218 section.page-content-section.site_pages h3, .page-id-218 section.page-content-section.site_pages h4, .page-id-218 section.page-content-section.site_pages h5 {
    color: #115ae1;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}
/*end privacy pages*/

/*contact us page*/
.page-id-221 section.page-content-section.site_pages .page-content {
    max-width: 100%;
}
.page-id-221 section.page-content-section.site_pages {
    padding-top: 0;
    margin-top: -100px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.page-id-221 section.page-content-section.site_pages .container .row {
    padding: 0;
}
p:empty {
    display: none;
}
.page-id-221 section.page-content-section.site_pages .page-content {
    display: flex;
    gap: 40px;
}
.page-id-221 section.page-content-section.site_pages .col.col-md-12 {
    padding: 0;
}
.page-id-221 section.page-content-section.site_pages .container .row {
    overflow: hidden;
}
.page-id-221 section.page-content-section.site_pages .page-content .get_in_touch_section {
    width: 30%;
    background: #004fe0;
    margin: 0;
    padding: 30px;
    color: #fff;
}
.page-id-221 section.page-content-section.site_pages div#wpcf7-f6-p221-o1 {
    width: calc(70% - 80px);
    padding: 50px 10px 10px;
}
.page-id-221 div#wpcf7-f6-p221-o1 form.wpcf7-form p {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.page-id-221 div#wpcf7-f6-p221-o1 form.wpcf7-form p br {
    display: none !important;
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form span.wpcf7-form-control-wrap {
    width: calc(50% - 15px);
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form span.wpcf7-form-control-wrap[data-name="textarea-609"] {
    width: calc(100% - 15px);
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form select {
    background-position: 93% 50%;
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form textarea {
    background-color: #fff;
    border-radius: 20px;
    font-family: InterRegular, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    font-size: 16px;
    letter-spacing: -.48px;
    padding: 18px 20px;
    border: 1px solid #dee2e6;
    outline: 0;
    width: 100%;
    height: 150px;
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form input.wpcf7-form-control.wpcf7-submit {
    background-color: rgb(0, 80, 223);
    color: rgb(255, 255, 255);
    font-size: 18px;
    letter-spacing: -0.18px;
    font-weight: 400;
    line-height: 1;
    display: block;
    width: fit-content;
    border-color: rgb(0, 80, 223);
    border-radius: 41px;
    padding: 18px 32px;
    text-decoration: none;
    transition: 0.3s;
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: rgb(0, 234, 255);
    color: rgb(0, 80, 223);
    border-color: rgb(0, 234, 255);
    transition: 0.3s;
}
.page-id-221 section.pages_banner {
    padding-bottom: 170px;
    background-position: 50% 16%!important;
}
.get_in_touch_section p a {
    color: #fff;
    text-decoration: none;
}
.get_in_touch_section p {
    flex-wrap: nowrap;
    word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
.page-id-221 section.page-content-section.site_pages .page-content .get_in_touch_section {
    width: 100%;
    background: #004fe0;
    margin: 0;
    padding: 30px;
    color: #fff;
}
.page-id-221 section.page-content-section.site_pages .page-content {
    gap: 00px;
    flex-wrap: wrap;
}
.page-id-221 section.page-content-section.site_pages div#wpcf7-f6-p221-o1 {
    width: calc(100% - 0px);
    padding: 30px 24px 30px;
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form span.wpcf7-form-control-wrap {
    width: calc(100% - 0px);
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form span.wpcf7-form-control-wrap[data-name="textarea-609"] {
    width: calc(100% - 0px);
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.page-id-221 section.page-content-section.site_pages .page-content .get_in_touch_section {
    width: 50%;
}
.page-id-221 section.page-content-section.site_pages .page-content {
    display: flex;
    gap: 20px;
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form span.wpcf7-form-control-wrap {
    width: calc(100% - 0px);
}
.page-id-221 section.page-content-section.site_pages .page-content div#wpcf7-f6-p221-o1 form.wpcf7-form span.wpcf7-form-control-wrap[data-name="textarea-609"] {
    width: calc(100% - 0px);
}
}
/*end contact us page*/

/*our service section*/
div#our-services-cards {
    padding: 83px 5px 33px;
}
div#our-services-cards h2 {
    margin-bottom: 40px;
}
.content_about_heading h2 {
    font-family: JekoExtraBold;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -1.47px;
    line-height: 42px;
    color: #0050df;
    margin-bottom: 30px;
    text-align: center;
}
section.service-section {
    padding: 58px 0px 125px;
}
section.service-section .container .row {
    align-items: center;
}
section.service-section .container {
    max-width: 1440px;
    width: 100%;
    padding: 0 52px;
}
.service_banner_content h1 {
    font-family: JekoExtraBold, "sans-serif";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -2.52px;
    line-height: 76px;
    margin-bottom: 30px;
    color: #0050df;
}
.service_banner_content p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -.4px;
    line-height: 28px;
    margin-bottom: 50px;
    color: #212529;
}
.service_banner_content .sign_up_button, .booking_button, .branches-contact .signup_button {
    background-color: #0050df;
    border-color: #0050df;
    border-radius: 41px;
    color: #fff;
    font-size: 18px;
    letter-spacing: -.18px;
    padding: 18px 32px;
    line-height: 1;
    text-decoration: none;
    transition: all .15s;
    display: block;
    width: fit-content;
}
.service_banner_content .sign_up_button:hover, .booking_button:hover, .branches-contact .signup_button:hover {
    background-color: #00eaff;
    border-color: #00eaff;
    color: #0050df;
}
.branches-contact .signup_button {
    margin-top: 20px;
}
section.service-section .service_banner_1 img {
    border-radius: 100%;
}
@media only screen and (max-width: 767px) {
section.service-section .container {
    padding: 0 24px;
}
.service_banner_content h1 {
    font-size: 42px;
    line-height: 46px;
    margin: 30px 0 20px;
    letter-spacing: -1.26px;
}
section.service-section {
    padding: 60px 0px 70px;
}
section.content_about_section  .content-section h3 {
    margin-top: 30px;
}
}
/*end our service section*/

/*medipack page*/

section.content_about_section.medipack_section {
    padding: 0 0 50px;
    background: transparent;
}
section.content_about_section.medipack_section .row.content_about_row {
    background: #fff;
    border-radius: 20px;
    padding: 45px 0px 55px;
}
section.content_about_section.medipack_section .row.content_about_row .content-section:first-child h1 {
    font-family: JekoExtraBold, "sans-serif";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -2.52px;
    line-height: 76px;
    margin-bottom: 30px;
    color: #0050df;
}
section.content_about_section.medipack_section .row.content_about_row .content-section:first-child p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -.4px;
    line-height: 28px;
    margin-bottom: 50px;
    color: #212529;
}
section.content_about_section.medipack_section .row.content_about_row .content-section p img {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}
section.content_about_section.medipack_section .row.content_about_row .content-section h2, section.auto_renew_prescriptions h2 {
    font-family: JekoExtraBold, "sans-serif";
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -1.47px;
    line-height: 42px;
    margin-bottom: 30px;
    color: #0050df;
}
section.content_about_section.medipack_section .block-col {
    max-width: 670px;
}
section.auto_renew_prescriptions {
    background: #eff6fc;
    padding: 50px 0;
}
section.auto_renew_prescriptions .container {
    max-width: 1440px;
    padding: 0 52px;
}
section.auto_renew_prescriptions .bg-image.row {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    align-items: center;
}
.service_banner_1.block-col {
    max-width: 623px;
}
section.auto_renew_prescriptions .bg-image.row p {
    font-size: 16px;
    letter-spacing: -.48px;
    line-height: 22px;
    margin-bottom: 40px;
}
section.auto_renew_prescriptions .service_banner_1 img {
    border-radius: 20px 500px 500px 20px;
}
section.content_about_section.medipack_section .row.content_about_row .content-section p img {
    border-radius: 0;
}
@media only screen and (max-width: 767px) {
section.content_about_section.medipack_section .row.content_about_row {
    padding: 30px 24px 0px;
}
section.content_about_section.medipack_section .row.content_about_row .content-section:first-child h1 {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 20px;
    margin-top: 30px;
    letter-spacing: -1.26px;
}
section.content_about_section.medipack_section .row.content_about_row .content-section:first-child p {
    font-size: 18px;
    letter-spacing: -.36px;
    line-height: 24px;
    margin-bottom: 30px;
}
section.content_about_section.medipack_section .row.content_about_row .content-section p img {
    margin-top: 30px;
}
section.auto_renew_prescriptions {
    padding: 40px 0 50px;
}
section.auto_renew_prescriptions .container {
    padding: 0 12px;
}
section.auto_renew_prescriptions .bg-image.row {
    padding: 37px 12px;
    border-radius: 0px;
}
section.auto_renew_prescriptions .service_banner_1 img {
    margin-bottom: 30px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
section.content_about_section.medipack_section .row.content_about_row {
    border-radius: 20px;
    padding: 0px 24px 0px;
}
section.content_about_section.medipack_section .block-col, .service_banner_1.block-col {
    max-width: 384px;
}
section.auto_renew_prescriptions .service_banner_1.block-col {
    max-width: 345px!important;
}
section.content_about_section.medipack_section .row.content_about_row .content-section:first-child h1 {
    margin-bottom: 30px;
    color: #0050df;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -1.47px;
    line-height: 44px;
}
section.content_about_section.medipack_section .row.content_about_row .content-section:first-child  .block-col img {
    object-fit: contain;
}
section.auto_renew_prescriptions .bg-image.row {
    padding: 24px 14px;
}
section.auto_renew_prescriptions .container {
    padding: 0 12px;
}
section.auto_renew_prescriptions {
    padding: 50px 25px!important;
}
section.auto_renew_prescriptions .bg-image.row {
    flex-wrap: nowrap;
}
section.page-content-section.site_pages .container {
    padding: 0 36px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1025px) {
section.content_about_section.medipack_section .row.content_about_row {
    border-radius: 20px;
    padding: 0px 24px 0px;
}
section.content_about_section.medipack_section .block-col, .service_banner_1.block-col {
    max-width: 384px;
}
section.auto_renew_prescriptions .service_banner_1.block-col {
    max-width: 345px!important;
}
section.content_about_section.medipack_section .row.content_about_row .content-section:first-child h1 {
    margin-bottom: 30px;
    color: #0050df;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -1.47px;
    line-height: 44px;
}
section.content_about_section.medipack_section .row.content_about_row .content-section:first-child  .block-col img {
    object-fit: contain;
}
section.auto_renew_prescriptions .bg-image.row {
    padding: 24px 14px;
}
section.auto_renew_prescriptions .container {
    padding: 0 12px;
}
section.auto_renew_prescriptions {
    padding: 50px 25px!important;
}
section.auto_renew_prescriptions .bg-image.row {
    flex-wrap: nowrap;
}
section.page-content-section.site_pages .container {
    padding: 0 36px;
}
}
button.book_btn {
    background-color: #fff;
    border-color: #fff;
    border-radius: 41px;
    color: #0050df;
    padding: 18px 32px;
    font-size: 18px;
    letter-spacing: -.18px;
    transition: all .15s ease;
    list-style: none;
    text-decoration: none;
    line-height: 1;
    font-weight: 500;
        border: 0;
}

div#wpcf7-f187-p188-o1 .submit_fields label input[type="checkbox"] {
    opacity: 0;
}


@media only screen and (max-width: 767px) {
    button.book_btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    ul.conditions {
        max-width: 250vw;
    }
    .left_content p {
    font-size: 14px;
    letter-spacing: -.42px;
    line-height: 22px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    button.book_btn {
        padding: 18px 32px;
        font-size: 16px;
    }
    section.cards_section .cards_wrapper .card .card_content h3 {
        font-size: 32px;
    }
    section.cards_section .cards_wrapper .card .card_content p {
        font-size: 14px;
    }
    .lower-footer .row {
        margin-top: 20px;
    }
    .service_banner_content h1 {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 60px;
    }
    .service_banner_content p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 50px;
    }
    section.service-section {
    padding: 125px 0px 200px;
}
section.service-section .container {
    padding: 0 20px;
}
section.content_about_section div#our-services-cards {
    max-width: 492px;
    margin: 0 auto;
}
ul.conditions {
    max-width: 150vw;
}
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
.health-just-content h3 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}
.health-just-content p {
    font-size: 14px;
}
.service_banner_content h1 {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 60px;
    }
    .service_banner_content p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 50px;
    }
    section.service-section {
    padding: 125px 0px 200px;
}
section.service-section .container {
    padding: 0 20px;
}
section.content_about_section div#our-services-cards {
    max-width: 492px;
    margin: 0 auto;
}
.service_banner_1.block-col {
    max-width: 404px!important;
}
ul.conditions {
    max-width: 150vw;
}
.time_content .content_body p {
    letter-spacing: 0.30px;
}
}
/*end medipack page*/

@media only screen and (max-width: 360px) {
    .main_banner_btn {
        gap: 10px;
        flex-wrap: wrap;
    }
    .first_name_wrap {
        width: calc(72% - 5px);
    }
    .title_wrap {
        width: calc(28% - 5px);
    }
    .title_wrap select {
        padding-left: 10px!important;
    }
    .day_wrap, .year_wrap {
        width: calc(100% - 0px);
    }
    .month_wrap {
        width: calc(100% - 0px);
    }
}
@media only screen and (min-width: 361px) and (max-width: 480px) {
    .title_wrap select, .day_wrap select, .year_wrap select, .month_wrap select{
        padding-left: 10px!important;
    }
}
@media only screen and (max-width: 991px) {
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children>a:before {
    width: 10px;
    height: 10px;
    top: 20px;
}
header#header nav.main-navigation ul#menu-main-menu>li.menu-item-has-children a.active + ul.sub-menu{
    opacity: 1!important;
    visibility: visible!important;
    position: relative;
    transition: all .5s ease;
}
}

/*mega menu responsive*/
@media only screen and (min-width: 992px) {
header#header div#mega-menu-wrap-main-menu, ul#mega-menu-main-menu {
    position: static!important;
}
}
@media only screen and (max-width: 991px) {
header#header #mega-menu-wrap-main-menu #mega-menu-main-menu {
    flex-wrap: wrap;
    gap: 0!important;
}
header#header #mega-menu-wrap-main-menu #mega-menu-main-menu > li {
    width: 100%;
    border-top: 1px solid #efefef;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > ul.mega-sub-menu {
    border-radius: 0!important;
    border-top: 0px solid #efefef!important;
    box-shadow: none;
    margin-top: 0px!important;
    padding: 0!important;
    background: #FFF!important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
    position: relative;
}
.mega-menu-column.mega-menu-columns-4-of-12 {
    display: none!important;
}
.mega-menu-column.mega-service_menus.mega-menu-columns-8-of-12.service_menus ul.mega-sub-menu {
    padding-left: 0%!important;
}
nav.main-navigation {
    min-height: calc(100vh - 80px);
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    line-height: 24px;
    height: fit-content;
    padding: 20px 24px 20px 24px!important;
    font-size: 20px!important;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu li.service_menu {
    visibility: hidden !important;
    opacity: 0;
    height: 0 !important;
}
#mega-menu-wrap-main-menu .mega-toggle-on .service_menus {
    visibility: visible !important;
    opacity: 1 !important;
    height: 100%!important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
    height: 0!important;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu.mega-toggle-on > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
    height: 100%!important;
    transition: all .3s ease;
}
nav.main-navigation {
    padding: 0!important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > ul.mega-sub-menu ul.mega-sub-menu > li > a.mega-menu-link {
    font-size: 20px!important;
    line-height: 30px;
    padding: 5px 24px!important;
    transition: all .3s ease;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #353535;
    border-left: 2px solid #353535;
    right: 3px;
    top: 6px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    display: flex;
    justify-content: space-between;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-get_started_btn.mega-menu-item.get_started_btn > a.mega-menu-link {
    border-radius: 60px!important;
    width: fit-content;
    margin-top: 20px;
    margin-left: 24px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-get_started_btn.mega-menu-item.get_started_btn > a.mega-menu-link:after {
    position: relative;
    top: 7px;
    right: -2px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link:hover > span.mega-indicator:after {
    border-bottom: 2px solid #004fe0;
    border-left: 2px solid #004fe0;
}
}
@media only screen and (max-width: 768px) {
#mega-menu-wrap-main-menu .mega-menu-toggle {
    display: none;
}
#mega-menu-wrap-main-menu .mega-menu-toggle + #mega-menu-main-menu {
    left: 0!important;
    visibility: visible!important;
    position: relative!important;
    width: 100%!important;
    background: transparent!important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
    box-shadow: none!important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link:hover > span.mega-indicator:after {
    border-bottom: 2px solid #004fe0;
    border-left: 2px solid #004fe0;
}
header#header #mega-menu-wrap-main-menu #mega-menu-main-menu {
    flex-wrap: nowrap!important;
}
}
/*end mega menu responsive*/

/*app box css*/
.app_section p a {
    color: #000;
}
.app_section p {
    font-size: 18px;
    max-width: 370px;
}
.downloads-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.downloads-wrap .download-item img {
    width: 100%;
    height: 55px;
    object-fit: contain;
}
.downloads-wrap .download-item {
    max-width: 180px;
}
/*end app box css*/
.contact_branches {
    text-decoration: underline!important;
}
.accept_field span.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}
.downloads-wrap .download-item img {
    object-position: left;
}
@media only screen and (max-width: 767px) {
.app_section p, .app_section .downloads-wrap {
    padding: 0;
}
.downloads-wrap {
    gap: 15px;
}
.download-item {
    width: calc(50% - 8px);
}
}
button.signup {
    background-color: #fff;
    border-color: #fff;
    border-radius: 41px;
    color: #0050df;
    padding: 18px 32px;
    font-size: 18px;
    letter-spacing: -.18px;
    transition: all .15s 
ease;
    list-style: none;
    text-decoration: none;
    line-height: 1;
    font-weight: 500;
}
.main_banner_btn button {
    border: 0;
}
section.condition-section.treat_condition_section {
    padding: 70px 0;
    background: #f1f6fa;
}
.condition-wrap {
    text-align: center;
    margin-bottom: 50px;
}
section.common_aliment-section.service-section.main-service-section h1 {
    line-height: 90px!important;
    letter-spacing: -0.52px;
    font-size: 65px;
}
section.common_aliment-section.service-section.main-service-section p {
    font-weight: 400;
    padding-right: 15px;
}
section.condition-section.treat_condition_section .condition-wrap h2 {
    font-family: JekoExtraBold, "sans-serif";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 76px;
    margin-bottom: 30px;
    color: #0050df;
}
section.condition-section.treat_condition_section .condition-wrap p {
    max-width: 750px;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
}
.aliment-item-box {
    background: #fff;
    border: 4px solid #0050df;
    border-radius: 10px;
    padding: 25px;
}
.aliment-item-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: 100%;
}
.treat_condition_left_content .aliment-title {
    font-size: 18px;
    font-weight: 700;
    color: #0050df;
}
.aliment-item-box .aliment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aliment-item-box .aliment-image {
    width: 135px;
    height: 135px;
    border-radius: 15px;
    overflow: hidden;
}
.treat_condition_content {
    width: calc(100% - 155px);
}
.treat_condition_left_content .aliment-content h2 {
    display: none;
}
.treat_condition_left_content .aliment-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400;
}
.aliment-content p strong {
    font-weight: 400;
}
.treat_condition_left_content .aliment-content p + p {
    display: none;
}
section.condition-section.treat_condition_section .aliment-item {
    padding-bottom: 25px;
}
.treat_condition_btn_grp button, .treat_condition_btn_grp a {
    width: 50%;
    max-height: 44px;
}

.treat_condition_btn_grp {
    padding: 0 20px;
    gap: 20px;
    display: flex;
    width: 100%;
}
.treat_condition_btn_grp a.learn-more-btn {
    background: #0050df;
    color: #fff;
    border: 2px solid #0050df;
    text-align: center;
    list-style: none;
    text-decoration: none;
    padding: 8px;
    border-radius: 60px;
    font-weight: 500;
    transition: all .3s ease;
}
.treat_condition_btn_grp a.learn-more-btn:hover {
    background: #fff;
    color: #0050df;
    transition: all .3s ease;
}

.treat_condition_btn_grp button.book-btn:hover {
    background: #0050df;
    color: #fff;
    transition: all .3s ease;
}
.treat_condition_btn_grp button.book-btn {
    background: #fff;
    border-radius: 50px;
    border-color: #0050df;
    color: #0050df;
    font-weight: 500;
    outline: 0;
    transition: all .3s ease;
}

span.aliment-category {
    font-size: 10px;
    background: #ccb17f;
    color: #fff;
    padding: 1px 5px;
    border-radius: 25px;
    margin-bottom: 5px;
}
.treat_condition_left_content .aliment_cat {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    gap: 6px;
}

.treat_condition_left_content span.aliment-category.private {
    background: #2cb461;
}
.treat_condition_left_content span.aliment-category {
    font-size: 10px;
    background: #ccb17f;
    color: #fff;
    padding: 1px 5px;
    border-radius: 25px;
    margin-bottom: 5px;
    min-width: 50px;
    text-align: center;
}

@media only screen and (max-width:767px) { 
section.common_aliment-section.service-section.main-service-section h1 {
    line-height: 54px!important;
    letter-spacing: -0.52px;
    font-size: 45px;
}
section.condition-section.treat_condition_section .condition-wrap h2 {
    font-size: 36px;
    line-height: 56px;
}
section.common_aliment-section.service-section.main-service-section p {
    font-weight: 500;
    padding-right: 0px;
    font-size: 18px;
}
section.condition-section.treat_condition_section .condition-wrap p {
    font-size: 16px;
}
.treat_condition_btn_grp {
    padding: 0;
    gap: 10px;
}
}
@media only screen and (min-width:768px) and (max-width:1025px) { 
section.condition-section.treat_condition_section .aliment-item.col-md-4 {
    flex: 0 0 auto;
    width: 50%;
}
.aliment-item-box {
    gap: 15px;
}
.treat_condition_btn_grp {
    padding: 0;
}
section.common_aliment-section.service-section.main-service-section .common_aliment_banner_content.service_banner_content {
    margin: 0;
    width: 50%;
}
section.common_aliment-section.service-section.main-service-section h1 {
    line-height: 50px!important;
    letter-spacing: -0.52px;
    font-size: 45px;
    margin-bottom: 30px;
}
section.condition-section.treat_condition_section .condition-wrap h2 {
    font-size: 46px;
    line-height: 76px;
}
}
button.health_button {
    border: 0;
}
button{
border:0;
}
