/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700&display=swap');

/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

body {
    line-height: 25px;
    font-family: 'Rubik', sans-serif;
    background-color: #fff;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.03em;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h1 {
    font-weight: 500;
    font-size: 25px;
    line-height: 44px;
    letter-spacing: 0.03px;
}


h2 {
    font-size: 40px;
    line-height: 60px;
    text-transform: normal;
    letter-spacing: 0.03px;
}

h3 {
    font-size: 36px;
    line-height: 54px;
}

h4 {
    font-weight: 500;
    font-size: 29.5px;
    line-height: 44px;
}

ol,
ul {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: none;
}

small {
    font-size: 15px;
    line-height: 24px;
}

.mh-100 {
    min-height: 100% !important;
}

.mh-auto {
    min-height: auto !important;
}


/*======================
   03. Preloader css
========================*/


/*Proloader START CSS*/

.proloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    background: #fff;
}

.loader_34 {
    /* Preloader */
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.loader_34 .ytp-spinner {
    /* Spinner Container */
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}

.loader_34 .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
}

.loader_34 .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}

.loader_34 .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.loader_34 .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.loader_34 .ytp-spinner-left {
    /* Position inside Container*/
    right: 50%;
}

.loader_34 .ytp-spinner-right {
    /* Position inside Container*/
    left: 50%;
}

.loader_34 .ytp-spinner-circle {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    /* Spinner Color */
    border-color: #4DC1B5 #4DC1B5 transparent;
    border-radius: 50%;
    border-width: 6px;
}

.loader_34 .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: transparent;
    -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}

.loader_34 .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: transparent;
    -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
    animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}


/* Preloader Animations */

@-webkit-keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
    }

    25% {
        -webkit-transform: rotate(270deg);
    }

    37.5% {
        -webkit-transform: rotate(405deg);
    }

    50% {
        -webkit-transform: rotate(540deg);
    }

    62.5% {
        -webkit-transform: rotate(675deg);
    }

    75% {
        -webkit-transform: rotate(810deg);
    }

    87.5% {
        -webkit-transform: rotate(945deg);
    }

    to {
        -webkit-transform: rotate(1080deg);
    }
}

@keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    25% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    37.5% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }

    50% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
    }

    62.5% {
        -webkit-transform: rotate(675deg);
        transform: rotate(675deg);
    }

    75% {
        -webkit-transform: rotate(810deg);
        transform: rotate(810deg);
    }

    87.5% {
        -webkit-transform: rotate(945deg);
        transform: rotate(945deg);
    }

    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

@-webkit-keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
    }

    50% {
        -webkit-transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(130deg);
    }
}

@keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }

    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}

@-webkit-keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
    }

    50% {
        -webkit-transform: rotate(5deg);
    }

    to {
        -webkit-transform: rotate(-130deg);
    }
}

@keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }

    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    to {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
}


/*Hamburger-menu START CSS*/

.hamburger-menu {
    cursor: pointer;
    position: absolute;
    right: 15px;
    display: none;
    z-index: 999;
    top: -15px;
}

.hamburger-menu span {
    background: #4DC1B5;
    width: 30px;
    height: 3px;
    display: block;
    margin: 5px 0;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.hamburger-menu .line-top.current {
    -webkit-transform: translateY(200%) rotate(135deg);
    -ms-transform: translateY(200%) rotate(135deg);
    transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
    opacity: 0;
}

.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-325%) rotate(-135deg);
}


/*ofcanvas-menu*/

.ofcavas-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    top: 0;
    display: none;
    right: -100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-align: center;
    overflow: auto;
    padding: 30px 0;
}

.ofcavas-menu.current {
    right: 0;
}

.ofcavas-menu>ul {
    margin-top: 150px;
    line-height: 22px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ofcavas-menu ul li {
    text-align: right;
    margin-top: 20px;
}

.ofcavas-menu ul li a {
    font-weight: 400;
    font-size: 29.5px;
    line-height: 44px;
    color: #000000;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
}

.ofcavas-menu ul li a:hover {
    color: #4DC1B5;
}

.ofcavas-menu ul li a i {
    transition: 0.3s;
}

.ofcavas-menu ul li a[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.ofcavas-menu .button {
    margin-top: 15px;
    margin-right: 1em;
    line-height: 29px;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1024;
    width: 100%;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 4px rgba(154, 154, 154, 0.25);
    box-shadow: 0px 4px 4px rgba(154, 154, 154, 0.25);
}

.logo img {
    max-width: 176px;
}

.menu {
    text-align: right;
}

.menu>li {
    display: inline-block;
    color: #fff;
    line-height: 92px;
}

.menu>li:last-child {
    line-height: 1;
}

.menu>li.dropdown_item {
    position: relative;
}

.menu>li>a {
    font-size: 13px;
    color: #000000;
    margin: 0px 25px;
    padding: 0;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.menu>li>a>i {
    position: absolute;
    bottom: 23px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.menu>li:hover>a>i {
    transform: translateX(-50%) rotate(180deg);
}

.menu>li:last-child>a {
    padding-right: 0;
    margin-right: 0;
}

.menu>li>a.active,
.menu>li>a:hover {
    color: #4DC1B5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.menu>li>a.active::before,
.menu>li>a:hover::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4DC1B5;
    left: calc(50% - 2.5px);
    top: 27px;
}

.menu>li>a.button.active::before,
.menu>li>a.button:hover::before {
    display: none;
}

.menu>li>ul {
    position: absolute;
    min-width: 173px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    border-radius: 20px;
    padding: 15px 0;
    opacity: 0;
    display: none;
    transition: 0.3s;
    left: 50%;
    transform: translateX(-50%);
}

.menu>li:hover>ul {
    opacity: 1;
    display: block;
}

.menu>li>ul>li {
    display: block;
    text-align: center;
}

.menu>li>ul>li>a {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #000000;
    padding: 8px 10px;
    transition: 0.3s;
    display: block;
}

.menu>li>ul>li>a:hover,
.menu>li>ul>li>a.active {
    color: #4DC1B5;
}

header .button {
    background: #fd7e78;
    text-transform: inherit;
}

header .button:hover {
    background: #e8524b;
}

button.button {
    border: none;
}

.button {
    padding: 13.5px 30px !important;
    background: #4DC1B5;
    -webkit-box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.25);
    box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.25);
    border-radius: 5px;
    letter-spacing: 0.05em;
    color: #FFFFFF !important;
    font-size: 19px !important;
    text-align: center !important;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: inline-block;
    /*text-transform: capitalize;*/
}



.button:hover {
    background-color: #3575BB;
}

.button.blue_bg {
    background-color: #3575BB;
}

.button.blue_bg:hover {
    background-color: #4DC1B5;
}

.blue_text {
    color: #3575BB;
}

.green_text {
    color: #4DC1B5;
}

.green_bg {
    background: #4DC1B5;
}


/*home Section*/
.home_wrapper {
    padding: 155px 0 150px;
    border-bottom: 1px solid #F2F2F2;
    position: relative;
    min-height: 730px;
}

.home_wrapper h2 {
    text-transform: none;
}

.para {
    font-size: 19px;
    line-height: 25px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

.home_img {
    position: absolute;
    right: 15px;
    bottom: -200px;
    z-index: -1;
}

.scroll-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #4DC1B5;
    padding: 8px 10px;
    border-radius: 10px;
}

/*Quote section*/

#quote__wrap {
    padding: 100px 0 0;
}

.quote__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.quote_logo {
    width: 20%;
}

.quote__text_wrap {
    width: 78%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.quote_icon {
    width: 15%;
}

.quote_img {
    width: 65px;
    height: 65px;
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    border-radius: 50%;
    display: block;
    text-align: center;
}

.quote_icon img {
    max-width: 30px;
    position: relative;
    top: 18px;
}

.quote__text {
    margin-left: 35px;
}

.quote_author.blue_text {
    margin: 25px 0 0;
    display: block;
}

.quote_logo img {
    width: 100%;
    margin-top: 15px;
}

/*medilink section*/
.medilink_wrapper {
    padding-top: 80px;
}

.medi_box {
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    border-radius: 20px;
    padding: 40px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    min-height: 325px;
}

.medi_box:hover {
    -webkit-box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    /*border-color: transparent;*/
}

.medi_box ul li {
    position: relative;
    margin-top: 25px;
    padding-left: 30px;
    max-width: 525px;
}

.medi_box ul li::before {
    position: absolute;
    content: '';
    left: 0;
    top: 5px;
    background-image: url(../img/star.svg);
    height: 13px;
    width: 13px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

/*video section*/
.video_wrapper {
    margin-top: 150px;
}

.video_box_wrapper {
    background: #4DC1B5;
    border-radius: 20px;
    padding: 40px;
}

.video_content {
    padding: 0 60px;
}

.video_content p {
    line-height: 30px;
}

.video_box {
    height: 400px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    border-radius: 20px;
    background-image: url(../img/video_bg.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;

}

.video_box .play_btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.pulse {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: relative;
    background-color: #4DC1B5;
    text-align: center;
}

.pulse i {
    font-size: 12px;
    line-height: 40px;
    margin: 0;
    color: #fff;
    z-index: 1;
}

.pulse span {
    position: relative;
    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.pulse::before,
.pulse::after,
.pulse span::before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #4DC1B5;
    border-radius: 50%;
    -webkit-animation: pulsing 2.5s linear infinite;
    animation: pulsing 2.5s linear infinite;
    opacity: 0;
    z-index: -1;
}

.pulse::after {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.pulse span::before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes pulsing {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes pulsing {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
}


/*Features section*/
.feature_wrapper {
    padding-top: 150px;
    padding-bottom: 150px;
}

.feature_wrapper h2 {
    line-height: 46px;
}

.feature_wrapper .col-sm-6:hover {
    z-index: 1;
}

.feature_wrapper .box_2 img {
    max-height: 120px;
}

.box_2 {
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    text-align: center;
    padding: 60px 40px;
    height: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.box_2:hover {
    -webkit-box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    border-color: transparent;
}

.box_2.number_1 {
    border-radius: 20px 0 0 0;
}

.box_2.number_3 {
    border-radius: 0 20px 0 0;
}

.box_2.number_4 {
    border-radius: 0 0 0 20px;
}

.box_2.number_6 {
    border-radius: 0 0 20px 0;
}

a.blue_text {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a.blue_text:hover {
    color: #4DC1B5;
}

a.blue_text:hover .icon_box {
    background: #4DC1B5;
}

.icon_box {
    width: 30px;
    height: 30px;
    background: #3575BB;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    margin-left: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.icon_box i {
    margin-left: -13px;
}

/*news css*/
.news_wrapper {
    padding-bottom: 150px;
    position: relative;
}

.news_box {
    border-radius: 20px;
    overflow: hidden;
}

.news_img {
    max-height: 245px;
    overflow: hidden;
}

.news_box .news_content {
    padding: 20px 25px 25px;
    background: #FAFAFA;
}

.news_footer p {
    font-weight: 300;
    line-height: 18px;
    opacity: 0.6;
    margin-top: 10px;
}

.news_footer a {
    font-weight: 500;
    line-height: 18px;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #4DC1B5;
    display: inline-block;
    transition: 0.3s;
    margin-top: 10px;
}

.news_footer a:hover {
    color: #3575BB;
}

/*try box*/

.try_box {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 56px;
}

.try_box .button {
    padding: 22px 50px !important;
    background: #3575BB;
    -webkit-box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.25);
    box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.25);
    border-radius: 5px;
}

.button.v2 {
    padding: 14px 38px !important;
    background: #fd7e78 !important;
    -webkit-box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.25);
    box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.25);
    border-radius: 5px;
    letter-spacing: 0.05em;
    color: #FFFFFF !important;
    font-family: "Poppins", sans-serif;
    font-size: 40px !important;
    line-height: 46px !important;
    font-weight: 800;
    text-align: center !important;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: inline-block;
    /*text-transform: capitalize;*/
}

.try_box .button h2 {
    line-height: 46px;
}

.try_box .green_text {
    line-height: 46px;
    text-transform: capitalize;
}

.testimonial_section {
    padding: 150px 0;
}

.testimonial_section h2 {
    line-height: 46px;
}

.box_3 {
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    border-radius: 20px;
    padding: 25px 20px 10px 25px;
    height: 100%;
    min-height: 188px;
}

.box_3 small {
    letter-spacing: -0.02px;
}

.testimonial_section .owl-nav button {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #000000;
    border-radius: 50%;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    top: calc(50% - 15px);
    font-size: 20px;
    left: -60px;
    padding: 0;
}

.testimonial_section .owl-nav button:hover {
    background: #4DC1B5;
}

.testimonial_section .owl-nav button.owl-prev {
    text-align: right;
}

.testimonial_section .owl-nav button.owl-next {
    left: auto;
    right: -60px;
    text-align: left;
}

/*contact css*/
.inner_wrapper {
    padding: 100px 0 20px;
    min-height: 330px;
    background: #FAFAFA;
}

.inner_content .medi_box {
    padding: 34px;
    min-height: 189px;
}

.contact_box {
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    border-radius: 20px;
    padding: 40px 30px;
}

.contact_box .button {
    height: 60px;
}

.input_box {
    height: 60px;
    background: #FAFAFA;
    border: none;
    outline: none;
    box-shadow: none;
    box-sizing: border-box;
    border-radius: 4px;
    width: 100%;
    margin-top: 20px;
    padding: 0 30px;
    transition: 0.3s;
}

.input_box::placeholder {
    color: #828282;
}

textarea.input_box {
    height: 130px;
    padding-top: 25px;
    resize: none;
}

.input_box:focus {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    border-radius: 10px;
}

.contact_box_2 .media>span {
    width: 24px;
    text-align: center;
    margin-right: 25px;
}

.contact_box_2 .media a {
    color: #000000;
}


.contact_box_2 {
    padding: 40px;
    border: 1px solid #F2F2F2;
}

.map_wrapper {
    border-radius: 5px;
    overflow: hidden;
    margin-top: 9px;
    height: 206px;
}

.map_wrapper iframe {
    width: 100%;
    height: 206px;
    border: none;
}

.social_icons_list a {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 35px;
    transition: 0.3s;
}

.social_icons_list a:hover {
    background: #F2F2F2;
}

.social_icons_list a:last-child {
    margin-right: 0px;
}

.medi_box.v2 ul li::before {
    background-image: url(../img/check.svg);
}

.legal_wrapper .nav {
    background: #FAFAFA;
    border-radius: 10px;
    padding: 10px;
}

.legal_wrapper .nav a {
    font-size: 19px;
    line-height: 23px;
    color: #000000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.legal_wrapper .nav-pills .nav-link.active {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    border-radius: 10px;
    color: #4DC1B5;
}

.legal_wrapper .para {
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    padding: 13px 20px;
}

.legal_wrapper .tab-content p {
    max-width: 820px;
}

.me_img {
    border-radius: 20px;
}

.client_img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.news_wrapper_2 {
    padding-top: 160px;
}

.blog_main_img {
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}

.border-top {
    border-top: 1px solid #E0E0E0;
}

.border-bottom {
    border-bottom: 1px solid #E0E0E0;
}

/*footer*/
footer {
    background-color: #333333;
    padding-top: 100px;
    padding-bottom: 25px;
}

footer ul li {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.05em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
    padding-left: 32px;
    position: relative;
    color: #fff;
}

footer ul li a {
    color: #FFFFFF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

footer ul li a:hover {
    color: #4DC1B5;
}


footer ul li span {
    display: inline-block;
    width: 20px;
    text-align: center;
    position: absolute;
    left: 0;
    top: -2px;
}

footer ul li p {
    color: rgba(255, 255, 255, 0.5);
}

.footer_bottom {
    border-top: 1px solid #4DC1B5;
    margin-top: 40px;
}

.copyright {
    font-size: 14px;
    line-height: 17px;
    color: #fff;
}

.social_icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #F2F2F2;
    display: inline-block;
    color: #F2F2F2;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.social_icons a:hover {
    background-color: #4DC1B5;
    border-color: #4DC1B5;
}

.medi_box h2 {
    line-height: 46px;
    text-transform: none;
}

.approach_wrapper .medi_box p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.button_lg {
    text-align: left !important;
    background: #F58981;
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    border-radius: 20px;
    padding: 27px 50px;
    transition: 0.3s;
}

.button_lg.green_bg {
    background: #4DC1B5;
}

.button_lg:hover {
    opacity: 0.8;
}

.button_lg h2 {
    line-height: 46px;
}

.quote_text {
    font-size: 20.5px;
    line-height: 32px;
}

.news_wrapper_2 h3,
.news_wrapper_2 h4 {
    color: #000000;
}

.light_text {
    opacity: 0.6;
}

.status {
    font-weight: 500;
    line-height: 18px;
}

.next_prev_btn ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    align-items: center;
}

.pager li,
.next_prev_btn ul li {
    display: inline-block;
    padding: 5px 10px;
}

.pager li a,
.next_prev_btn ul li a {
    height: 44px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.25);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
    transition: 0.3s;
}

.pager li a:hover,
.pager li a.active {
    background: #4DC1B5;
    color: #ffffff;
}

.next_prev_btn a:hover {
    color: #4DC1B5;
}

/*return-to-top START CSS*/

.back-to-top {
    font-size: 24px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    border-radius: 50%;
    background: #4DC1B5;
    z-index: 1000;
}

.back-to-top i {
    color: #fff;
}

/*-----------------------------------
        how it Works CSS
------------------------------------*/


.nav.nav-tabs.hw_tab {
    border: 1px solid #F2F2F2;
    border-radius: 50px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    margin: -50px 0 30px;
    background-color: #fff;
}

.nav.nav-tabs.hw_tab li {
    width: 45%;
    text-align: center;
}

.nav.nav-tabs.hw_tab li a {
    font-size: 29.5px;
    line-height: 44px;
    text-align: center;
    border: 1px solid #F2F2F2;
    border-radius: 50px;
    width: 100%;
    display: block;
    padding: 12px;
    color: #000;
    font-weight: 500;
    background-color: transparent;
    transition: 0.3s;
}

.nav.nav-tabs.hw_tab li a.active {
    color: #fff;
    background-color: #F58981;
    border-color: transparent;
}

.hw_slider {
    margin: 45px 0 0;
}


.slider_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 30px;
    transition: 0.3s;

}

.slider_arrow img {
    width: auto;
    /*visibility: hidden;*/
    /*opacity: 0;*/
    /*transition: 0.5s;*/
}

/*.slider_item__wrap:hover .slider_arrow img{
    visibility: visible;
    opacity: 1;
}*/
/*.slider_item__wrap.active .slider_item_img,
.slider_item__wrap.active .slider_item_text,
.slider_item__wrap:hover .slider_item_img,
.slider_item__wrap:hover .slider_item_text{
}*/
.slider_item_img {
    width: 26%;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: center;
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    transition: 0.3s;
}

.slider_item_img img {
    max-width: 220px;
}

.slider_item_text {
    width: 70%;
    border: 1px solid #F2F2F2;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    transition: 0.3s;
}


.slider__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.slider__header_left h3 {
    font-size: 29px;
    line-height: 44px;
    font-weight: 500;
    margin: 0 0 45px;
}

.slider__header_left h3 span {
    font-size: 40px;
    font-weight: 600;
    color: #4DC1B5;
    line-height: 60px;
}

.slider_item_text p {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.3px;
    margin: 0 0 10px;
}

.slider__header_right h6 {
    font-size: 19px;
    line-height: 30px;
    color: #F58981;
    font-weight: 500;
}

#demo_popup {
    background: #fff !important;
    opacity: 1;
}

.modal-backdrop {
    background-color: #fff;
    opacity: 1;
}

.modal-dialog {
    max-width: 550px;
}

.modal-content {
    border: none;
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
    border-radius: 20px;
}

.modal-header {
    border: none;
    padding: 20px 20px 10px;
}

.modal-body {
    padding: 0 40px 45px;
}

.demo_text p {
    font-size: 14px;
    line-height: 22px;
}

.demo-popup_img img {
    max-width: 120px;
}

/*Show Cookies*/
.instructions {
    text-align: center;
    font-size: 20px;
    margin: 15vh;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
    //   Default Modal Styles   //
////////////////////////////////////////////////////////////////////////////////////////////// */
/*   This is the background overlay   */
.backgroundOverlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    opacity: 0.8;
    z-index: 101;
    display: none;
}

/*   This is the Popup Window   */
.delayedPopupWindow {
    display: none;
    position: fixed;
    width: auto;
    max-width: 380px;
    bottom: 15px;
    right: 15px;
    background-color: #fff;
    border-radius: 20px;
    z-index: 102;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(183, 183, 183, 0.25);
}

.cookie_action {
    padding: 20px 0 0;
}

.cookie_action a {
    margin-right: 14px;
}

.btn.v1 {
    font-size: 19px;
    line-height: 23px;
    color: #F58981;
    display: inline-block;
    border: none;
    box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.25);
    padding: 12px 25px;
    border-radius: 5px;
}

.btn.v2 {
    font-size: 19px;
    line-height: 23px;
    color: #F58981;
    display: inline-block;
    border: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    background: #4DC1B5;
    box-shadow: 0px 4px 4px rgba(121, 121, 121, 0.25);
}

.owl-carousel.news_slider .owl-dots.disabled {
    display: block;
}

.owl-carousel.news_slider .owl-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
}

.owl-carousel.news_slider .owl-dot {
    background-color: transparent;
    border: none;
}

.owl-carousel.news_slider .owl-dot span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    transition: 0.4s;
    margin: 0 5px;
}

.owl-carousel.news_slider .owl-dot.active span {
    background: #4DC1B5;
}



/*------Faq css----------*/
.faq-wrapper{
    margin: 0 0 90px;
}
.faq-title h4{
    margin: 0 0 40px;
}
.btn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
    padding: 5px 0 15px;
    border: none;
}

.btn:focus,
.btn:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.btn p {
    text-align: left;
    font-size: 20px;
    line-height: 35px;
    font-weight: 400;
    padding-right: 30px;
}

.btn i {
    text-align: right;
    line-height: 36px;
    position: relative;
    right: 10px;
    transition: 0.3s;
}
.btn[aria-expanded="true"] i{
    transform: rotate(180deg);
  
}
.btn[aria-expanded="false"] i{
    transform: rotate(0deg);
  
}
/*.btn.collapsed i{
    transform: rotate(0deg);
}*/
.card-header {
    padding: 0;
    background: transparent;
    border: none;
}

.card {
    border-bottom: 1px solid #ddd !important;
    border-top: none;
    border-left: none;
    border-right: none;
}

.card-header h6 {
    line-height: 1;
}

.card-body {
    padding: 5px 0 5px;
}

.card-body p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    margin: 0 0 15px;
}