
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    box-sizing: border-box;
}

body {
    background: white;
    overflow-x: hidden;
    font-family: system-ui;
}
/* Navbar========================================================================= */

.navigation-menu__labels button {
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
}

.navigation-menu {
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    margin: 0;
    padding: 0px 15px;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    color: black;
    background-color: rgba(241, 250, 255, 1);
}

.navigation-menu .menu_btn {
    border: 2px solid rgb(24, 145, 189);
    padding: 6px 10px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    margin-left: 30px;
}
.navigation-menu .menu_btn:hover {
    text-decoration: none;
    color: black;
}

.menu_logo img {
    /* width: 18%; */
    width: 80%;
}
.header_btn {
    color: black;
    background: transparent;
    font-weight: 600;
    font-size: 16px;
}
.header_btn:hover {
    text-decoration: none;
    color: black;
}
@media only screen and (min-width: 800px) {
    .navigation-menu {
        justify-content: space-around;
        padding: 40px 16px;
        z-index: 999;
    }
}

.navigation-menu__overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: 0.3s;
}

body.open .navigation-menu__overlay {
    visibility: visible;
    opacity: 1;
}

@media only screen and (min-width: 800px) {
    .navigation-menu__overlay {
        display: none;
    }
}
.navigation-menu .menu_btn {
    margin-left: 0px;
}

.hamburger-menu {
    position: absolute;
    padding: 0;
    top: 10px;
    right: 0;
    /* display: grid; */
    place-items: center;
    width: 64px;
    height: 64px;
    background: none;
    border: none;
}

#close-icon {
    display: none;
}

@media only screen and (min-width: 800px) {
    .hamburger-menu {
        display: none;
    }
}

.site-identity-logo {
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-size: 18px;
}

/* .navigation-menu__labels {
    position: fixed;
    visibility: hidden;
    z-index: 3;
    top: 50px;
    left: 0;
    height: auto;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    background-color: rgba(241, 250, 255, 1);
    color: black;
    transition: translate 0.3s;
    translate: -100% 0;
} */

.navigation-menu__labels {
    position: fixed;
    visibility: hidden;
    z-index: 3;
    top: 90px;
    right: 0;
    height: 100vh;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    background-color: rgba(241, 250, 255, 1);
    color: black;
    transition: translate 0.5s;
    translate: 100% 0;
}

@media only screen and (min-width: 800px) {
    .navigation-menu__labels {
        position: static;
        top: 0;
        left: 0;
        width: auto;
        background: transparent;
        display: contents;
        visibility: visible;
    }
}

body.open .navigation-menu__labels {
    translate: 0 0;
    visibility: visible;
    padding: 30px;
}

.navigation-menu__labels > button {
    color: black;
    background: transparent;
    font-weight: 600;
    font-size: 16px;
}

.navigation-menu__labels > button.active {
    color: inherit;
}

/* Banner */

.banner {
    /* margin-top: 50px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding: 170px 0px; */
    background: url(../images/banner_image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 475px;
}

.banner .banner_text {
    text-align: center;
    color: white;
}

.banner_text h1{
    font-size: 37px;
    font-family: "Montserrat", sans-serif;
}

.banner .banner_text p {
    margin-top: 10px;
    font-size: 17px;
    font-family: "Inter", sans-serif;
}

/* banner_input==================== */
.search-sec {
    background: white;
    padding: 12px 50px;
    width: 80%;
    border-radius: 40px;
    margin-top: 30px;
}

.banner_box_one {
    width: 93%;
    font-size: 14px;
    background-color: rgba(239, 249, 255, 1);
    border-radius: 10px;
    padding: 4%;
    font-weight: 500;
    outline: none;
}
.border-right {
    width: 2px;
    height: 35px;
    background-color: rgb(180, 180, 180);
}
.banner_input_location {
    position: relative;
    width: 100%;
}
.banner_input_location i {
    position: absolute;
    top: 34%;
    left: 5px;
}
.banner_box_two {
    width: 93%;
    font-size: 14px;
    background-color: rgba(239, 249, 255, 1);
    border-radius: 10px;
    /* padding: 4%; */
    font-weight: 500;
    outline: none;
    padding-left: 50px;
}
.banner_box_three {
    width: 93%;
    background-color: rgba(239, 249, 255, 1);
    border-radius: 10px;
    /* padding: 4%; */
    font-weight: 500;
    color: #6a6e7b;
}

.banner_box_three .select {
    border: none;
    font-size: 14px;
    outline: none;
    border-radius: 25px;
    position: relative;
    padding: 9px 0px;
}

.banner_box_three .select__control {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background-color: transparent;
    border: none;
    width: 100%;
}

.banner_box_three .select__view-button {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
}

.banner_box_three .select__view-button:checked ~ .select__options {
    display: block;
}

.select__view-button {
    transition: transform 0.25s;
}

.banner_box_three
    .select__view-button:checked
    + .select__control
    > .control__chevron
    > i {
    transform: rotate(180deg);
    transition: transform 0.25s;
}

.banner_box_three .control__label {
    color: #515151;
    font-weight: 600;
}

.banner_box_three .chevron__img {
    height: 15px;
}

.banner_box_three .select__options {
    position: absolute;
    display: none;
    top: 55px;
    left: 0;
    width: 100%;
    max-height: calc(7 * 40px);
    overflow: auto;
    box-shadow: 2px 2px 2px 0px rgba(58, 58, 58, 0.1);
}

.banner_box_three .select__options .options__option:last-child {
    border: none;
}

.banner_box_three .options__option {
    height: 39px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #c4c4c4;
    color: #515151;
    background: #fff;
}

.banner_box_three .options__option input[type="radio"] {
    width: 100%;
    line-height: 40px;
    padding: 0 15px;
}

.banner_box_three .options__option input[type="radio"]:checked + label {
    background: #b71a73;
    color: #fff;
}

.banner_box_three .options__option label {
    display: block;
    width: 100%;
    cursor: pointer;
    line-height: 39px;
    padding: 0 15px;
}

.banner_box_three .options__option input[type="radio"] {
    display: none;
}

.banner_box_four {
    background-image: linear-gradient(
        rgba(23, 87, 187, 1),
        rgba(44, 160, 222, 1)
    );
    border-radius: 30px;
    padding: 7px 75px;
    color: white;
}

/* Service card ================================================================== */

#features {
    margin-top: 15px;
}

#features .container{
    background-color: rgba(239, 249, 255, 1);
    padding: 40px;
}
.equal-height {
    background-color: white;
    border-radius: 10px;
}
.features-area .equal-height::after {
    background: #e7e7e7 none repeat scroll 0 0;
    content: "";
    height: 100%;
    position: absolute;
    right: -1px;
    top: 0;
    width: 1px;
}

.features-area.item-full .equal-height::before {
    background: none;
    content: "";
    height: 1px;
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 100%;
}

.features-area .features-items .col-md-5,
.features-area .features-items .col-md-7 {
    display: table-cell;
    float: none;
    vertical-align: middle;
}

.features-area .features-items.reversed .col-md-5,
.features-area .features-items.reversed .col-md-7 {
    display: inline-block;
    float: left;
}

.features-area .features-items.reversed .info-box {
    float: right;
}

.features-area .features-items .item {
    padding: 15px 30px;
}

.features-area.item-full .features-items .item {
    padding: 30px 14px;
}

.features-area .features-items .item h4 {
    position: relative;
}

.features-area.bottom-small {
    padding-bottom: 25px;
}

.features-area.default-padding.bottom-none {
    padding-bottom: 30px;
}

.feature-card__icon {
    height: 45px;
    width: auto;
}

.feature-card__icon img{
    height: 100%;
    width: 100%;
}

.feature-card {
    background-color: #EFF9FF;
    padding: 30px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card__icon-bg{
    display: flex;
    justify-content: center;
}



.features-area .item .icon i {
    background-image: linear-gradient(
        rgba(23, 87, 187, 1),
        rgba(44, 160, 222, 1)
    );
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    height: 70px;
    line-height: 100px;
    position: relative;
    text-align: center;
    width: 70px;
}

.features-area .features-items .items-box i {
    background: transparent;
}

.features-area .item .icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.features-area .features-items.icon-solid i {
    border-radius: inherit;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    color: #ffaf5a;
    display: inline-block;
    font-size: 50px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
}


.cyberx-sec3_first {
    padding-right: 75px;
}

.cyberx-sec3_first p{
    font-size: 15px;
    font-family: "Inter", sans-serif;
    line-height: 24px;
}


.how-section3 .col-lg-6 h2 {
    font-size: 30px;
    line-height: 40px;
    font-family: "Montserrat", sans-serif;    
}



.how-section3 .col-lg-6 h2 {
    font-weight: 400 !important;
}
.features-area .item .info h4 {
    text-transform: capitalize;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    font-weight: 500;
}
.features-area .features-items .col-lg-3 {
    position: static !important;
    padding: 25px;
}

.features-area .item .info p {
    margin: 0;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    color: #000000b0;
    line-height: 25px;
}

.features-area .features-items.less-icon .items-box.inc-cell .item .info {
    padding-left: 0;
}

.features-area .features-items .items-box.inc-cell .item .info a {
    color: #666666;
    display: inline-block;
    margin-top: 15px;
    text-transform: uppercase;
}

.features-area .features-items .items-box.inc-cell .item .info a:hover {
    color: #ffaf5a;
}

/* Section3=============================================== */
.how-section3 {
    /* margin-top: -15%;
    padding: 12% 5% 5% 5%; */
    margin-top: 75px;
}

.how-section3 h4 {
    color: black;
    font-weight: 500;
    font-size: 30px;
}
.how-section3 .subheading {
    color: #3931af;
    font-size: 20px;
}

.how-img {
    text-align: center;
}
.how-img img {
    width: 40%;
}
.how-section3 .highlight {
    height: 24px;
    width: 50%;
}

.cyberx-sec3_btn{
    margin-top: 35px;
}

.cyberx-sec3_btn a {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 13px 20px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
}

/* Section 4=========================================================================== */
.Section_4 {
    margin-top: 75px;
    /* padding: 5% 6% 0% 6%; */
    background-color: rgba(239, 249, 255, 1);
}
.Section_4 .left .highligh_border {
    width: 100%;
    height: 10px;
    background-image: linear-gradient(
        to right,
        rgba(23, 88, 187, 1),
        rgba(41, 150, 217, 1)
    );
    border-radius: 40px;
}
.Section_4 .left .text {
    color: rgba(50, 103, 255, 1);
    font-size: 15px;
    font-weight: 500;
}




.Section_4 .left h4 {
    color: black;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    margin: 15px 0;
}

.Section_4 .left .content {
    color: #c1a0a0;
    font-size: 15px;
    font-size: 15px;
    font-weight: 500;
}



.Section_4 .right {
    background-color: white;
    color: black;
    padding: 40px 30px;
   
}

.Section_4 .right h4{
font-size: 27px;
font-weight: 600;
}

.right{

}


.Section_4 .right p {
    font-size: 15px;
    margin-top: 12px;
    margin-bottom: 4px;
}
.Section_4 .right .Timing p {
    font-size: 14px;
    margin-top: 7px;
}
.Section_4 .right a {
    padding: 10px 50px;
    text-decoration: none;
    text-align: center;
    background-image: linear-gradient(
        rgba(23, 88, 187, 1),
        rgba(41, 150, 217, 1)
    );
    color: white;
    border-radius: 10px;
    margin-top: 20px;
    width: 100%;
    font-family: 'Inter';
}
.highligh_border_2 {
    width: 87%;
    height: 10px;
    background-image: linear-gradient(
        rgba(23, 88, 187, 1),
        rgba(41, 150, 217, 1)
    );
    border-radius: 40px;
}

/* Section 5 ================================================================== */

.Section_5 {
    /* padding: 5%; */
    margin-top: 75px;
}

.Section_5 h4 {
    font-weight: 400;
}

.feature-card {
    background-color: #EFF9FF;
    padding: 30px;
    height: auto;
}

.feature-card h5{
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

/* .Section_5 .feature-card img {
    width: 18%;
} */

.feature-card .feature-card__content p {
    color: rgba(84, 84, 84, 1);
    font-size: 15px;
    text-align: justify;
}

.feature-card .dental_pic {
    height: 220px;
}

.Section_5 .service {
    color: #3267ff;
    font-weight: 700;
    font-size: 17px;
}

/* Section_6============================================================== */

.section_6 {
    background-image: url(../images/section_6_bg_image.png);
    /* padding: 80px 0px; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    height: 300px;
    margin-top: 50px;
}

.section_6 h3 {
    font-size: 35px;
    color: white;
    width: 40%;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Montserrat';
}

.section_6 .booking_sec {
    width: 30%;
}

.section_6 .booking_sec .Book_app {
    padding: 10px 20px;
    text-decoration: none;
    color: black;
    background-color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    font-family: 'Inter';
}

.section_6 .booking_sec p {
    font-size: 12px;
    font-family: 'Inter';
}

.section_6 .booking_sec .calling {
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    /* background-color: #007bff; */
    background-color: #37b1f3a8;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    font-family: 'Inter';
}

/* section_7================================================================== */

.section_7{
    margin-top: 75px;
}

.section_7 h4 {
    font-weight: 400;
    font-family: 'Montserrat';
    font-size: 24px;
}

.section_7 .Popular_h p {
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
    font-size: 15px;
    font-family: 'Inter';
    font-size: 16px;
    margin-bottom: 32px;
}

.section_7 .left .bulding_card {
    height: 100%;
}

.section_7 .left .bulding_card img {
    width: 100%;
    height: 100%;
}

.section_7 .left .bulding_card-2 {
    height: 176px;
    background-image: linear-gradient(
        rgba(23, 87, 187, 1),
        rgba(44, 160, 222, 1)
    );
    color: white;
    padding: 20px;
}

.section_7 .left .bulding_card-2 p {
    font-size: 13px;
    font-family: 'Inter';
    }


.section_7 .left .bulding_card-3 i {
    color: #2891d6;
}

.section_7 .left .bulding_card-3 {
    height: 100%;
    color: black;
    padding: 20px;
    background-color: rgba(241, 250, 255, 1);
}

.section_7 .left .bulding_card-3 h5 {
    font-weight: 400;
}

.section_7 .left .bulding_card-3 p {
    font-size: 13px;
}

.left_graph h6{
    font-size: 17px;
}

.section_7 .right img {
    width: 100%;
    height: 375px;
}

/* Section 9============================================================== */

.sectionClass {
    padding: 50px 0px;
    position: relative;
    display: block;
}

/* .fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative;
} */

.sectiontitle {
    background-position: center;
    margin: 30px 0 0px;
    text-align: center;
    min-height: 20px;
}

.sectiontitle h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
}

.headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101f2e;
}

.projectFactsWrap {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
    background-image: linear-gradient(
        rgba(23, 87, 187, 1),
        rgba(44, 160, 222, 1)
    );
}

#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    width: 25%;
    height: 100%;
    padding: 30px 0px;
    text-align: center;
}

.projectFactsWrap .item p.number {
    font-size: 40px;
    float: left;
    font-weight: 500;
    font-family: 'Montserrat';
}

.projectFactsWrap .item p {
    color: white;
    font-size: 18px;
    margin: 0;
    padding: 0px;
    font-family: 'Inter';
    font-weight: 500;
}

.projectFactsWrap .item span {
    width: 60px;
    background: rgba(255, 255, 255, 0.8);
    height: 2px;
    display: block;
    margin: 0 auto;
}

.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.projectFactsWrap .item:hover i,
.projectFactsWrap .item:hover p {
    color: white;
}

.projectFactsWrap .item:hover span {
    background: white;
}
#projectFacts .projectFactsWrap .fadeInUpBig img {
    width: 20%;
}
.counter_P {
    font-size: 13px !important;
}

@media (max-width: 786px) {
    .projectFactsWrap .item {
        flex: 0 0 50%;
    }
}

/* Section_10======================================================== */
.Section_10 {
    margin-top: 75px;
    position: relative;
    padding-bottom: 50px;
}
.Section_10 .Sec10_wlc {
    color: #0E63F3;
}
.Section_10 h4 {
    font-size: 35px;
    font-weight: 700;
    color:#1D2B4F ;
    font-family: 'Montserrat';
}
.Section_10 p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    font-family: 'Inter';
}
.Section_10 a {
    padding: 10px 18px;
    border-radius: 30px;
    color: white;
    background-image: linear-gradient(
        rgba(23, 87, 187, 1),
        rgba(44, 160, 222, 1)
    );
    width: 32%;
    text-decoration: none;
    font-family: 'Inter';
}
.Section_10 a i {
    color: white;
    font-size: 18px;
}
.Section_10 a p {
    color: white;
    font-size: 18px;
    font-family: 'Inter';
}

.Section_10 .Apartments i {
    background: linear-gradient(180deg, #175dbe 0%, #2894d8 100%);
    color: white;
    border-radius: 50%;
    font-size: 18px;
}

.Section_10 .Center {
    position: absolute;
    width: 20%;
    top: 50%;
    right: 35%;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 0px 5px 1px #f7e2e2;
}

.Section_10 .Center .available_dr h5 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.Section_10 .Center i {
    color: rgba(0, 0, 0, 0.393);
    font-size: 22px;
}

.Section_10 .Center .dr_details .dr_profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Section_10 .Center .dr_details img {
    width: 100%;
}

.Section_10 .Center .dr_details .dr_name h6 {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.Section_10 .Center a {
    width: 100%;
}

.Section_10 .Center a i {
    color: white;
    font-size: 17px;
}

.Section_10 .Center p {
    font-size: 13px;
}


/* Section1 11 ===================================================================== */
.section_11 {
    padding: 3% 0;
    background-color: rgba(241, 250, 255, 1);
    margin-top: 75px;
}

.section_11 h3 {
    font-weight: 400;
    font-family: 'Montserrat';
}

.section_11 p {
   font-family: 'Inter';
   font-size: 15px;
   color: rgba(0, 0, 0, 0.5);
}

.section_11 .card-product {
    padding: 12px;
}

.section_11 .card-product:after {
    content: "";
    display: table;
    clear: both;
    visibility: hidden;
}

.section_11 .card-product .img-wrap {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.section_11 .card-product .img-wrap img {
    height: 275px;
    max-width: 100%;
    object-fit: cover;
}

.section_11 .card-product .info-wrap {
    overflow: hidden;
}

.section_11 .card-product .action-wrap {
    padding-top: 4px;
    margin-top: 4px;
}

.section_11 .card-product .bottom-wrap {
    padding: 15px;
    border-top: 1px solid #eee;
}

.section_11 .card-product .title {
    margin-top: 0;
}

.section_11 .card-product .info-wrap h6 a {
    text-decoration: none;
    font-family: 'Montserrat';
    font-weight: 700;    
}

.section_11 .card-product .info-wrap .action-wrap a {
    background-color: #f7f9fe;
    padding: 5px 5px;
    font-size: 11px;
    color: black;
    font-weight: 600;
    font-family: 'Inter';
}

.section_11 .card-product .info-wrap .action-wrap .price-wrap i {
    color: rgba(254, 182, 47, 1);
}

.section_11 .card-product .info-wrap .action-wrap .price-wrap span {
    color: rgba(99, 110, 136, 0.532);
    font-weight: bold;
}

.price-wrap{
    font-size: 9px;
}



/* section 12==================================================================================================== */

.section_12{
    margin-top: 75px;
}

.section_12 h3 {
    font-weight: 400;
    font-family: 'Montserrat';
    margin-bottom: 3px;
}

.section_12 .card {
    margin: 0 auto;
    border: none;
}

.section_12 .card .carousel-item {
    min-height: 190px;
}

.section_12 .card .carousel-caption {
    right: 15px;
    left: 15px;
    top: 15px;
    color: #3d3d3d;
    box-shadow: 0px -0px 10px 0px rgb(244, 244, 244);
    min-height: 175px;
    padding: 15px 20px;
    position: relative;
    border-radius: 15px;
}

.section_12 .card .carousel-caption .col-sm-3 {
    display: flex;
    align-items: center;
}

.section_12 .card .carousel-caption .col-sm-9 {
    text-align: left;
}

.section_12 .card .carousel-control-prev,
.card .carousel-control-next {
    color: #3d3d3d !important;
    opacity: 1 !important;
}

/*.section_12 .carousel-control-prev-icon,*/
/*.carousel-control-next-icon {*/
/*    background-image: none;*/
/*    color: #fff;*/
/*    font-size: 14px;*/
/*    background-image: linear-gradient(*/
/*        rgba(23, 87, 187, 1),*/
/*        rgba(44, 160, 222, 1)*/
/*    );*/
/*    height: 35px;*/
/*    line-height: 32px;*/
/*    width: 35px;*/
/*    border-radius: 5px;*/
/*}*/
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.section_12 .carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    opacity: 0.85;
}

.section_12 .carousel-control-prev {
    left: 40%;
    top: 110%;
}

.section_12 .carousel-control-next {
    right: 40%;
    top: 110%;
}


/* @media (min-width: 320px) and (max-width: 575px) {
    .section_12 .carousel-caption {
        position: relative;
    }
    .section_12 .card .carousel-caption {
        left: 0;
        top: 0;
        margin-bottom: 15px;
    }
    .section_12 .card .carousel-caption img {
        margin: 0 auto;
    }
    .carousel-control-prev {
        left: 35%;
        top: 105%;
    }
    .section_12 .carousel-control-next {
        right: 35%;
        top: 105%;
    }
    .section_12 .card .carousel-caption h3 {
        margin-top: 0;
        font-size: 16px;
        font-weight: 700;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .section_12 .carousel-caption {
        position: relative;
    }
    .section_12 .card .carousel-caption {
        left: 0;
        top: 0;
        margin-bottom: 15px;
    }
    .section_12 .card .carousel-caption img {
        margin: 0 auto;
    }
    .card .carousel-caption h3,
    .card .carousel-caption small {
        text-align: center;
    }
    .section_12 .carousel-control-prev {
        left: 35%;
        top: 105%;
    }
    .section_12 .carousel-control-next {
        right: 35%;
        top: 105%;
    }
}
@media (min-width: 767px) and (max-width: 991px) {
    .section_12 .card .carousel-caption h3 {
        margin-top: 0;
        font-size: 16px;
        font-weight: 700;
    }
}*/
.testimonials_p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    font-family: 'Inter';
}

.section_12 .carousel-caption .tsti_img {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
}
.section_12 .carousel-caption p {
    text-align: justify;
    width: 100%;
    padding-top: 30px;
    font-size: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.505);
}
.section_12 .carousel-caption .post {
    font-size: 10px;
    text-align: left;
}
.section_12 .carousel-caption i {
    color: rgba(254, 182, 47, 1);
    font-size: 12px;
}

/* Section1 13 ===================================================================== */
.section_13 h3 {
    font-weight: 400;
    font-family: 'Montserrat';
}
.section_13 .footer_newslatter {
    text-align: center;
    padding: 20px 0px;
    background-image: linear-gradient(
        rgba(23, 87, 187, 1),
        rgba(44, 160, 222, 1)
    );
    color: white;
    margin-top: 100px;
}
.section_13 .footer_newslatter a {
    padding: 10px 15px;
    background-color: white;
    border-radius: 20px;
    width: 18%;
}
.section_13 .footer_newslatter a p {
    font-size: 13px;
    font-weight: 600;
}
.section_13 .footer_newslatter a i {
    background-image: linear-gradient(
        rgba(23, 87, 187, 1),
        rgba(44, 160, 222, 1)
    );
    border-radius: 50%;
    font-size: 22px;
}


.social_profile ul li{
    display: flex;
}

/* Section 14========================================================================== */

.footer {
    background: black;
    padding-top: 60px;
    padding-bottom: 5px;
}
/*END FOOTER SOCIAL DESIGN*/

.footer .single_footer p {
    font-size: 16px;
    font-family: 'Montserrat';
}

@media only screen and (max-width: 768px) {
    .single_footer {
        margin-bottom: 30px;
        text-align: center;
    }
}

.single_footer .health {
    color: #0E63F3;
}

.single_footer h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 600;
    /* text-transform: uppercase; */
    font-size: 20px;
    font-family: 'Montserrat';
}

.single_footer h4::after {
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background: #fff;
    margin-top: 10px;
}

.single_footer p {
    color: #fff;
}
.single_footer ul {
    margin: 0;
    padding: 0;
}

.social_profile ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    width:50%;
}

/*.social_profile ul li a{*/
/*    margin: 0 20px 0 0;*/
/*    margin-top: 20px;*/
/*    font-size: 20px !important;*/
/*}*/

.social_profile ul li a {
    margin: 0 0px 0 0;
    margin-top: 0px;
    font-size: 20px !important;
}

.single_footer ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 36px;
    font-size: 15px;
    text-transform: capitalize;
    font-family: 'Inter';
    text-decoration: none !important;
}

.single_footer ul li a:hover {
    color: rgb(44, 160, 222);
}

.single_footer_address ul li {
    color: #fff;
}

.single_footer_address ul li span {
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.contact_social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

/*START NEWSLETTER CSS*/
.subscribe {
    display: block;
    position: relative;
    margin-top: 15px;
    width: 100%;
}

.subscribe__input {
       background-color: #fff;
    border: medium none;
    border-radius: 5px;
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 500;
    height: 60px;
    letter-spacing: 0.4px;
    margin: 0;
    padding: 0 50px 0 20px;
    text-align: left;
    text-transform: capitalize;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .subscribe__input {
        padding: 0 50px 0 20px;
    }
}

.subscribe__btn {
    background-color: transparent;
    border-radius: 0 25px 25px 0;
    color: rgb(44, 160, 222);
    cursor: pointer;
    display: block;
    font-size: 20px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}
.subscribe__btn i {
    transition: all 0.3s ease 0s;
}
@media only screen and (max-width: 768px) {
    .subscribe__btn {
        right: 0px;
    }
}

.subscribe__btn:hover i {
    color: #01c7e9;
}
button {
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
} 
/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
/* .social_profile {
    margin-top: 25px;
}
.social_profile ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.social_profile ul li {
    float: left;
}
.social_profile ul li a {
    text-align: center;
    border: 0px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    margin: 0px 5px;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 768px) {
    .social_profile ul li a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 480px) {
    .social_profile ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
.social_profile ul li a:hover {
    background: rgb(44, 160, 222);
    border: 1px solid #ff3666;
    color: #fff;
    border: 0px;
}
/*END SOCIAL PROFILE CSS*/
 .copyright {
    margin-top: 25px;
    padding-top: 25px;
    color: #fff;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    font-family: 'Montserrat';
}

.copyright a {
    color:#ffffff !important;
    transition: all 0.2s ease 0s;
}
.copyright a:hover {
    color: #ff3666;
}

@media only screen and (max-width: 1050px) {
    .banner_box_one {
        width: 93%;
        /* font-size: 12px; */
    }

    .search-sec {
        width: 90%;
    }

    .banner_box_two {
        font-size: 13px;
    }

    /* .banner_box_three .select__control {
        font-size: 13px;
    } */

    .banner_box_four {
        padding: 10px;
        font-size: 14px;
    }

    .features-area .equal-height .item p {
        font-size: 14px;
    }

    .Section_4 .right a {
        padding: 10px 30px;
        margin-bottom: 30px;
    }

    /* .Section_5 .feature-card img {
        width: 23%;
    } */

    .section_6 h3 {
        width: 50%;
    }

    .section_6 .booking_sec {
        width: 37%;
    }

    .section_7 .Popular_h{
       margin-bottom: 45px !important;
    }

    .section_7 .Popular_h p {
        width: 70%;
    }

    .section_8 .left .bulding_card-2 {
        height: 190px;
        padding: 10px;
    }

    .section_8 .left .bulding_card-2 h5 {
        font-weight: 400;
    }

    .section_8 .left .bulding_card-2 p {
        padding-left: 11px;
    }
    
    .section_8 .left .bulding_card-3 p {
        padding-left: 10px;
    }

    .projectFactsWrap .item p.number {
        font-size: 32px;
    }

    .Section_10 a {
        width: 40%;
    }

    .Section_10 .Center {
        padding: 18px;
    }

    .Section_10 p {
        font-size: 15px;
    }

    .Section_10 .Center {
        box-shadow: 1px 0px 20px 0px whitesmoke;
    }

    .Section_10 {
        padding: 5% 5% 14% 5%;
    }

    .section_11 .info-wrap .action-wrap .price-wrap {
        font-size: 12px;
    }

    .section_11 .info-wrap p {
        font-size: 12px;
    }

    .section_13 .footer_newslatter a {
        width: 22%;
    }

    .social_profile ul li a {
        font-size: 13px;
        width: 40px;
        height: 40px;
    }

    .subscribe__input {
        font-size: 15px;
        padding: 0px 45px 0 1px;
        height: 50px;
    }

    .subscribe__btn {
        height: 50px;
    }
}

@media only screen and (max-width: 800px) {
    .banner_box_four {
        width: 100%;
    }
    /* .banner_box_three .select__control {
        font-size: 12px !important;
    } */
    /* .banner_box_one {
        font-size: 12px !important;
    } */
    .banner_box_three .select {
        padding: 4%;
    }
    .search-sec {
        padding: 10px;
        width: 98%;
    }
    /* .banner_box_one {
        font-size: 9px;
    } */
    .banner .banner_text h1 {
        font-size: 32px;
    }
    .search-sec {
        padding: 12px 20px;
        width: 95%;
    }
    /* .banner_box_three .select__control {
        font-size: 9px;
    } */
    .search-sec {
        padding: 12px 49px;
        width: 90%;
    }
    .banner {
        padding: 90px 0px;
    }
    .banner_box_two p {
        font-size: 9px;
    }
    .banner_box_four {
        border-radius: 20px;
        padding: 9px;
    }
    .how-img {
        text-align: center;
        padding: 40px;
    }
    .section_6 .booking_sec {
        width: 50%;
    }
    .section_6 h3 {
        width: 75%;
    } 
    /* .section_7 .Popular_h p {
        width: 90%;
    } */
    .section_8 .right img {
        padding: 30px 0px;
    }
    .Section_10 .Center {
        width: 40%;
        top: 4%;
        right: 10%;
    }
    .Section_10 {
        padding: 5%;
    }
    .section_12 #carouselExampleControls .carousel-item .row {
        padding: 0px 20px 0px 0px;
    }
    .section_12 h6 {
        font-size: 13px;
    }
    .section_12 .carousel-caption .post {
        font-size: 9px;
    }
    .section_12 .carousel-caption i {
        font-size: 10px;
    }
    .section_12 .carousel-caption p {
        font-size: 12px;
    }
    .section_13 .footer_newslatter a {
        width: 30%;
    }
    .menu_logo img {
        width: 100%;
    }
    .navigation-menu {
        height: 90px;
    }
}

@media only screen and (max-width: 500px) {
    .banner_box_two {
        padding-left: 35px;
    }
    .banner_input_location i {
        top: 12px;
        font-size: 13px;
        left: 15px;
    }
    .banner_box_one {
        width: 95%;
    }
    .border-right {
        display: none;
    }
    .banner_box_four {
        width: 93%;
    }
    .banner .banner_text h1 {
        font-size: 28px;
    }
    /* .banner_box_one {
        font-size: 10px;
    } */
    /* .banner .banner_box_two {
        font-size: 10px;
    } */
    .banner .banner_box_two p {
        padding-left: 5px;
    }
    /* .banner_box_three .select__control {
        font-size: 10px;
    } */
    .banner_box_four {
        border-radius: 10px;
        font-size: 10px;
    }
    .search-sec {
        padding: 7px 10px;
        border-radius: 20px;
    }
    .banner {
        padding: 50px 0px;
    }
    .search-sec {
        width: 98%;
    }
    .how-section3 .highlight {
        width: 80%;
    }
    .Section_4 .right {
        margin-bottom: 30px;
    }
    .Section_4 .right a {
        margin-bottom: 0px;
    }
    .Section_5 h4 {
        font-size: 23px;
        padding-top: 15px;
    }
    .Section_5 .feature-card img {
        width: 100%;
    }
    .section_6 .booking_sec {
        width: 90%;
    }
    .section_6 {
        padding: 35px 0px;
    }
    .section_6 h3 {
        width: 100%;
        font-size: 30px;
    }
    .section_7 .Popular_h p {
        width: 100%;
        font-size: 16px;
    }
    .section_8 .left .bulding_card-2 {
        margin-top: 15px;
    }
    .sectionClass {
        padding: 20px 0px;
    }
    .section_8 .right img {
        padding: 30px 0px 0px 0px;
    }
    .projectFactsWrap .item p.number {
        font-size: 25px;
    }
    .projectFactsWrap .item {
        padding: 20px 0px;
    }
    .Section_10 .Center {
        display: none;
    }
    .Section_10 .right img {
        width: 100% !important;
        padding-top: 30px;
    }
    .section_13 .footer_newslatter a {
        width: 50%;
    }
    .footer .single_footer p {
        font-size: 15px;
    }
    .section_12 .carousel-control-prev {
        top: 100%;
    }
    .section_12 .carousel-control-next {
        top: 100%;
    }
    .banner .banner_text {
        width: 90%;
    }
}
@media only screen and (max-width: 400px) {
  
    .banner .banner_box_two p {
        padding-left: 13px;
    }
    /* .banner_box_one {
        font-size: 11px;
    } */
    /* .banner .banner_box_two p {
        font-size: 11px;
    } */
    /* .banner_box_three .select__control {
        font-size: 11px;
    } */
    .section_6 h3 {
        font-size: 35px;
        color: white;
        width: 40%;
        font-weight: 500;
        text-align: center;
        letter-spacing: 1px;
        font-family: 'Montserrat';
    }

    .section_6 .booking_sec .Book_app {
        padding: 10px 20px;
        font-size: 10px;
    }
    .section_7 .Popular_h p {
        font-size: 14px;
    }
    .Section_10 a {
        width: 50%;
    }
    .Section_5 h4 {
        font-size: 20px;
        padding-top: 15px;
        font-family: 'Montserrat';
    }

   
}

@media only screen and (max-width: 325px) {
    /* .banner_box_one {
        font-size: 9px;
    } */
    /* .banner_box_three .select__control {
        font-size: 9px;
    } */
    /* .banner .banner_box_two p {
        font-size: 9px;
    } */
    .how-img {
        padding: 40px 10px 40px 10px;
    }
    .Section_4 {
        padding: 6% 7% 0% 8%;
    }
    .Section_4 .right a {
        font-size: 12px;
    }
    .section_6 .booking_sec .Book_app {
        padding: 10px;
        font-size: 11px;
    }
    .Section_5 h4 {
        font-size: 17px;
    }
    .section_6 .booking_sec .calling {
        padding: 10px;
        font-size: 11px;
    }
    .section_7 .Popular_h p {
        font-size: 13px;
    }
    .projectFactsWrap .item p.number {
        font-size: 20px;
    }

    .Section_10 h4 {
        font-size: 30px;
    }
    .Section_10 a {
        width: 60%;
    }
    .Section_10 a p {
        font-size: 16px;
    }
    .Section_10 a i {
        font-size: 18px;
    }
    .section_11 h3 {
        font-size: 24px;
    }
    .section_12 .carousel-control-prev {
        left: 36%;
    }
    .section_13 .footer_newslatter a {
        width: 65%;
    }

    .section_13 .footer_newslatter p{
        font-family: 'Inter';
    }

 

    .footer .single_footer p {
        font-size: 13px;
    }
    .subscribe__input {
        padding: 0px 100px 0 1px;
    }


    .whenNoData {
        margin: auto;
        width: 60%;
        /* border: 3px solid #73AD21; */
        padding: 10px;
    }
}  


/* -------------------------------------------responsive---------------------------------------------- */
@media (max-width: 1299.98px) {
    .section_6 .booking_sec {
        width: 35%;
    }

    .Section_10 .Center {
        position: absolute;
        width: 22%;
        top: 45%;
        right: 34%;
    }
 }

 @media (max-width: 1199.98px) {
    .features-area.item-full .features-items .item {
        padding: 14px;
    }

    .features-area .features-items .col-lg-3 {
        padding: 7px;
    }

    .how-section3 .highlight {
        height: 24px;
        width: 100%;
    }

    .Section_4 .right {
        padding: 20px 12px !important;
        width: 100%;
    }

    .Section_4 .left h4{
        margin: 5px 0;
    }

    .section_11 .card-product .img-wrap img {
        height: 215px;
    }

    .cyberx-sec3_btn{
        width: fit-content;
        margin: 0 auto;
    }

    .how-section3 .col-lg-6 h2{
        text-align: center;
    }

    .cyberx-sec3_first p {
        text-align: center;
    }

    .how-img img{
        margin-top: 45px;
    }

    .how-section3 .highlight{
        width: 50%;
    }

    .right {
        margin: 0 auto;
    }

    .projectFactsWrap .item p.number {
        font-size: 34px;
    }

    .healthcare_sec1 {
        padding: 0 75px 0 0;
    }

    .Section_10 .Center {
        top:37%;
    }
}

 @media (max-width: 1099.98px) {
    .Section_10 .Center {
        width: 28%;
        top: 48%;
        right: 30%;
    }

    .Section_10{
        padding: 0;
    }

    .section_7 .left .bulding_card-2 {
        height: 175px;
        padding: 21px;
    }

    .section_6 h3 {
        font-size: 30px;
        width: 50%;
    }

    .section_6 .booking_sec {
        width: 50%;
    }

    .section_7 .Popular_h p {
        width: 100%;
    }

    .Section_10 a {
        padding: 5px 25px;
        width: fit-content;
    }

    .section_11 {
        margin-top: 100px;
    }

    .banner_box_four {
        padding: 10px 75px;
        font-size: 14px;
    }

    #projectFacts .projectFactsWrap .fadeInUpBig img {
        width: 25%;
    }

    .navigation-menu {
        padding: 40px 7px;
    }

    .header_btn {
        font-size: 13px;
    }
    
    .navigation-menu .menu_btn {
        padding: 6px 10px;
        font-size: 13px;
    }

.header_sign a{
    font-size: 13px;
}


   
}


@media (max-width: 991.98px) {
.how-section3 .col-lg-6 h2 {
    font-weight: 400 !important;
    text-align: center;
}

.cyberx-sec3_first p {
    text-align: center;
}

.Section_4 .left .content {
    font-size: 15px;
    font-weight: 400;
}

.Section_4 {
    padding-bottom: 45px;
}

.section_13 .footer_newslatter a {
    width: 30%;
}

.section_13 h3{
    font-size: 24px;
}

.section_13 p{
    font-size: 14px;
}

.price-wrap{
    font-size: 9px;
}

.border-right{
    display: none;
}

.search-sec {
    width: 45%;
    background: #ffffff7d;
}

.banner_box_one {
    width: 100%;
}

.banner_box_four {
    padding: 10px 50px;
    font-size: 13px;
}

.banner_box_three .select {
    border: none;
    font-size: 14px;
    outline: none;
    border-radius: 25px;
    position: relative;
    padding: 10px 0px;
}

.banner_text h1 {
    font-size: 32px;
}

.banner .banner_text p {
    margin-top: 8px;
    font-size: 16px;
    margin-bottom: 0px;
}

.search-sec {
    padding: 12px 35px;
    width: 80%;
    border-radius: 18px;
    margin-top: 30px;
}



.cyberx-sec3_btn a {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 9px 17px;
    border-radius: 10px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

.Section_4 .right {
    padding: 20px 12px;
    border-radius: 18px;
}

.banner {
    background-position: center;
    height: 500px;
}

.banner_box_one {
padding: 10px 15px;
font-size: 14px;
}

.banner_box_two {
    font-size: 14px;
    padding: 10px 0;
    padding-left: 35px;
    width: 100%;
}

.banner_input_location i {
    position: absolute;
    top: 30%;
    left: 0px;
}

.banner_box_three{
    width: 100%;
}

.how-img {
    text-align: center;
    height: 375px;
}

.how-img img{
    width: 100%;
    height: 100%;
}

.cyberx-sec3_first{
    padding: 0;
}

.how-section3 .col-lg-6 h2 {
    font-size: 24px;
    line-height: 32px;
}

.cyberx-sec3_btn {
    width: fit-content;
    margin: 12px auto 0;
}

.Section_4 .left h4 {
    font-size: 24px;
    line-height: 32px;
}

.Section_4 .left .content {
    font-size: 14px;
    font-weight: 400;
}

.Section_4 .left .content {
    font-size: 14px;
    font-weight: 400;
}
  
.highligh_border_2 {
        height: 7px;
}

.Section_4 .left .highligh_border {
        height: 7px;
}

.Section_4 .left .text {
    color: rgba(50, 103, 255, 1);
    font-size: 13px;
    font-weight: 600;
}

.Section_10 h4 {
    font-size: 30px;
}

.Section_10 p {
    font-size: 14px;
}

.Section_10 a p {
    font-size: 14px;
}

.Section_10 a i {
    font-size: 14px;
}

.Section_10 .Center .available_dr h5{
    font-size: 15px;
}

.Section_10 .Center .dr_details .dr_name h6{
    font-size: 13px;
}

.Section_10 .Center p {
    font-size: 11px;
}

.Section_10 .Center {
    padding: 24px;
}

.Section_10 .Center {
    width: 27%;
    right: 28%;
    padding:20px 10px;
}
}

@media (max-width: 849.98px) {
    /* .Section_10 .Center {
        width: 32%;
        right: 28%;
    } */
}

@media (max-width: 799.98px) {
.navigation-menu {
    padding: 40px 7px;
}

.header_btn {
    font-size: 15px;
}

.navigation-menu .menu_btn {
    padding: 5px;
    font-size: 15px;
}

.header_sign a{
font-size: 15px;
}
}


@media (max-width: 768.98px) {
.how-section3 .col-lg-6 h2 {
    font-size: 25px;
    line-height: 34px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.how-section3 .highlight {
    height: 20px;
    width: 50%;
}

.cyberx-sec3_btn a {
    padding: 10px 16px;
    border-radius: 7px;
    font-size: 14px;
}

.cyberx-sec3_btn a {
    padding: 10px 16px;
    border-radius: 7px;
    font-size: 14px;
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.search-sec {
    width: 65%;
}

.banner_text h1 {
    font-size: 27px;
}

.banner .banner_text p {
    font-size: 15px;
}

.banner_input_location i {
    position: absolute;
    top: 32%;
    left: 0px;
}

.section_6 h3 {
    font-size: 24px;
    width: 75%;
}

.section_6 .booking_sec {
    width: 62%;
}

.Section_10 .Center {
    /* left: 10%;
    top: 75%;
    width: 45%; */
    
}

.single_footer h4::after {
    width: 68px;
    margin: auto;
    margin-top: 10px;
}

.social_profile ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    width:100%;
}

.single_footer ul li a {
    line-height: 30px;
    font-size: 14px;
}

.social_profile ul li a {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.single_footer .health{
   text-align: center
}

.section_6 .booking_sec{
    width: 54%;
}

.footer_location{
    justify-content: center;
    margin-bottom: 20px;
}

/*.Section_10 .Center {*/
/*    width: 46%;*/
/*    right: 49%;*/
/*    padding: 20px 25px;*/
/*    top: 75%;*/
/*}*/
       .Section_10 .Center {
        width: 33%;
        right: 22%;
        padding: 20px 25px;
        top: 40%;
    }
}


@media (max-width: 649.98px) {
    .search-sec {
        width: 75%;
    }

    .section_6 .booking_sec {
        width: 75%;
    }

    .section_6 h3 {
        width: 85%;
    }
}


@media (max-width: 575.98px) {
    .search-sec {
        width: 80%;
    }

    .banner_text h1 {
        font-size: 25px;
    }

    .banner .banner_text p {
        font-size: 14px;
    }

    .banner_box_one {
        padding: 7px 15px;
        font-size: 13px;
    }

    .banner_box_two {
        font-size: 13px;
        padding: 7px 0;
        padding-left: 35px;
    }

   .banner_input_location i {
        top: 30%;
        left:10px;
    }

    .banner_box_three .select {
       font-size: 13px;
       padding: 7px 0px;
    }

    .cyberx-sec3_first {
        padding: 0 12px;
    }

    .cyberx-sec3_first p {
        font-size: 14px;
        line-height: 22px;
    }

    .how-section3 .col-lg-6 h2 {
        line-height: 32px;
        font-size: 23px;
    }

    .how-img {
        text-align: center;
        height: 350px;
    }

    .left{
        padding: 20px 12px 0!important;
    }

    .Section_4 .right {
        padding: 20px 12px;
        border-radius: 0;
    }
    
    .Section_4 {
        padding-bottom: 0;
    }

    .Section_4 .right h4 {
        font-size: 24px;
    }

    .Section_4 .right p {
        font-size: 14px;
        margin-top: 8px;
    }

    .Section_4 .right a {
        font-size: 14px;
        font-weight: 500;
    }

    .Section_5{
        margin-top: 50px;
    }

    .Section_5 h4 {
        font-weight: 400;
        font-size: 22px;
    }

    .section_6 .booking_sec {
        width: 80%;
    }

    .section_6 h3 {
        width: 90%;
    }

    .section_7 .left .bulding_card-2 {
        height: auto;
        padding: 20px;
    }

    .healthcare_sec1 {
        padding:0 15px;
    }

    .Section_10 .Center {
        left: 3%;
        top: 75%;
        width: 51%;
    }

    .Section_10 .right img {
        width: 100%;
        padding-top: 0;
    }

    .section_13 .footer_newslatter a{
        width: 45%;
    }

    .Section_10 .Center {
        left: 2%;
    }

    .copyright {
        font-size: 14px;
    }

    .section_11 {
        margin-top: 75px;
    }

}


@media (max-width: 475.98px) {
.search-sec {
    padding: 10px 20px;
    width: 85%;
    border-radius: 18px;
    margin-top: 30px;
  }

  .how-img {
    text-align: center;
    height: 300px;
}

.section_6 .booking_sec {
    width: 83%;
}

.section_6 .booking_sec .Book_app{
    font-size: 11px;
    padding: 10pxpx;
}

.section_6 .booking_sec .calling {
    padding: 10px;
    font-size: 11px;
}

.section_11 h3 {
    font-size: 24px;
}
}

@media (max-width: 399.98px) {
    .banner_text h1 {
        font-size: 22px;
    }

    .banner .banner_text p {
        font-size: 12px;
        padding: 0 35px;
    }

    .how-section3 .col-lg-6 h2 {
        font-size: 21px;
        line-height: 27px;
    }

   .cyberx-sec3_btn a {
    font-size: 13px;
    }

    .how-img {
    text-align: center;
    height: 225px;
   }

   .Section_5 h4 {
    font-weight: 400;
    font-size: 21px;
}

.section_6 h3 {
    font-size: 21px;
    width: 90%;
}

.section_6 .booking_sec .Book_app{
    font-size: 10px;
    padding: 7px;
}

.section_6 .booking_sec .calling {
    padding: 7px;
    font-size: 10px;
}

.section_6 .booking_sec {
    width: 95%;
}

.section_13 .footer_newslatter p {
    font-size: 12px;
}

.section_13 h3 {
    font-size: 21px;
}

.section_13 .footer_newslatter a{
    width: 62%;
}

.section_13 .footer_newslatter a i{
    font-size: 11px;
}

.section_13 .footer_newslatter a p{
    font-size: 11px;
}
}



/* ---------------------------------------------section-counter--------------------------------------------------- */

.count{
    font-family: 'Josefin Sans', sans-serif;
    font-size: 40px;
    font-weight: bold;
  }
  .counter-wrapper{
    position: relative;
    margin-top: 75px;
  }
  .counter-wrapper:after{
    content: '';
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-image: linear-gradient(rgba(23, 87, 187, 1), rgba(44, 160, 222, 1));
  }
  .counter-inner{
    position:relative;
    z-index:2;
  }
  .count-icon{
    font-size: 42px;
  }

  #count2{
    font-size: 48px;
  }

  /* -------------------------------Universal---------------------------------------------- */

a{
    text-decoration: none !important;
}

li{
    list-style: none !important;
}

ul{
    padding-left: 0;
}

/* -------------------------------------------------------------------------------- */

.carousel img {
    width: 60px;
    max-height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
  }
  .carousel-inner {
    padding: 1em;
  }
  
  @media screen and (min-width: 576px) {
    .carousel-inner {
      display: flex;
      width: 90%;
      margin-inline: auto;
      padding: 1em 0;
      overflow: hidden;
    }
    .carousel-item {
      display: block !important;
      margin-right: 0 !important;
      flex: 0 0 calc(100% / 2);
    }
  }
  @media screen and (min-width: 768px) {
    .carousel-item {
      display: block !important;
      margin-right: 0 !important;
      flex: 0 0 calc(100% / 3);
    }
  }
  .carousel .card {
    margin: 0 0.5em;
    border: 0;
  }
  
  .carousel-control-prev,
  .carousel-control-next {

    width: 3rem;
    height: 3rem;
    background: #265cbb !important;
    opacity: .8 !important;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .section_12 .carousel-control-next {
    right: 46%;
    top: 117%;
    width: 37px;
    height: 37px;
    border-radius: 7px;
}

.section_12 .carousel-control-prev {
    left: 46%;
    top: 117%;
    width: 37px;
    height: 37px;
    border-radius: 7px;
    background: #93afde;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
   rotate: 180deg !important;
   width: 1.5rem !important;
   height: 1.5rem !important;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}


/* ---------------------------navbar---------------------------------------- */

header .header-logo {
    color: #001b4f;
      font-weight: 700;
      font-size: 23px;
      transition: .4s;
      -webkit-transition: .4s;
      -moz-transition: .4s;
      -ms-transition: .4s;
      -o-transition: .4s;
  }
  
  header {
    background: #fff;
    -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
    box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header .main-menu>li {
    position: relative;
  }
  
  header .main-menu>li>a {
    color: #173966;
    font-size: 15px;
    padding: 25px 1.5vw;
    font-weight: 700;
    display: block;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  header .main-menu>li.active>a {
    color: #10bd3b;
  }
  
  header .main-menu>li:hover>a {
    color: #10bd3b;
  }
  
  header .main-menu>li>a>i {
    color: #03328E;
  }
  
  header .main-menu>li>a:hover>i {
    color: #fff;
  }
  
  header .main-menu>li:hover>a i {
    color: #fff;
  }
  
  header .main-menu .sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 180px;
    overflow: hidden;
    border-top: 2px solid #f49306;
    background: #fff;
    -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    z-index: 5;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  
  header .main-menu .sub-menu a {
    padding: 11px 10px;
    display: block;
    color: #173966;
    font-weight: 600;
    font-size: 15px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  header .main-menu .sub-menu a i {
    color: #03328E;
  }
  
  header .main-menu .sub-menu a:hover {
    background: #10bd3b;
    color: #fff;
  }
  
  header .main-menu>li:hover .sub-menu {
    display: block;
  }
  
  header .header-logo figure img {
    max-width: 200px;
  }
  
  header .demo-link {
    margin-left: 1vw;
  }
  
  header .side-menu-close {
    background: transparent;
  }
  
  header .side-menu-close span {
    background: #21395F;
    width: 28px;
  }
  
  #call-action .call-action {
    color: #001b4f;
    font-weight: 700;
    font-size: 23px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  #call-action .call-action:hover {
    color: #10bd3b;
  }
  
  /* side menu */
  .side-menu-wrap {
    width: 300px;
    position: fixed;
    left: -100%;
    top: 0;
    background: #fff;
    height: 100%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    overflow-y: auto;
    z-index: 15000;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .side-menu-wrap.opened {
    left: 0;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
  }
  
  .side-menu-logo {
    border-bottom: 2px solid #FE8204;
  }
  
  .side-menu-nav .main-menu>li {
    position: relative;
    border-bottom: 1px solid #ccc;
  }
  
  .side-menu-nav .main-menu>li>a>i {
    color: #03328E;
  }
  
  .side-menu-nav .main-menu .sub-menu {
    border-top: 1px solid #FE8204;
    background: #fff;
    display: none;
  }
  
  .side-menu-nav .main-menu .sub-menu li {
    border-bottom: 1px solid #eee;
  }
  
  .side-menu-nav .main-menu .sub-menu a {
    padding: 10px 22px;
    display: block;
    color: #212529;
    font-weight: 600;
    font-size: .9em;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .side-menu-nav .main-menu .sub-menu a i {
    color: #03328E;
  }
  
  .side-menu-nav .main-menu .sub-menu~i {
    font-size: .8em;
    position: absolute;
    padding: 21px 11px;
    right: 0;
    top: 0;
    border-left: 1px solid #ccc;
  }
  
  .side-menu-nav .main-menu .sub-menu a:hover {
    background: #F5F5F5;
  }
  
  .side-menu-nav .main-menu>li>a {
    color: #212529;
    padding: 15px 30px 15px 10px;
    font-weight: 600;
    display: block;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .side-menu-wrap .side-menu-close {
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    width: 30px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
  
  .side-menu-close {
    height: 40px;
    width: 40px;
    background: #21395F;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  
  .side-menu-close span {
    height: 2px;
    width: 20px;
    background: #fff;
    position: relative;
    opacity: 1;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .side-menu-close span:nth-child(1) {
    top: -5px;
  }
  
  .side-menu-close span:nth-child(3) {
    bottom: -5px;
  }
  
  .side-menu-close.closed span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    -webkit-transform: translateY(7px) rotate(45deg);
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
  }
  
  .side-menu-close.closed span:nth-child(2) {
    opacity: 0;
  }
  
  .side-menu-close.closed span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -moz-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
  }
  
  /*  custom overlay */
  .custom-overlay {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 12500;
    visibility: hidden;
    opacity: 0;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }
  
  .custom-overlay.show {
    visibility: visible;
    opacity: 1;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
  }


  @media (max-width: 1099.98px) {
    .section_12 .carousel-control-prev{
      left: 45%;
  }
  
  .section_12 .carousel-control-next {
      right: 45%;  
  }  
  }


@media (max-width: 991.98px) {
.section_12 .carousel-control-prev{
      left: 43%;
  }
  
.section_12 .carousel-control-next {
      right: 43%;  
  }  

  .about_content_wrapper img {
    height: auto;
    width: 100%;
}
}

@media (max-width: 767.98px) {
.section_12 .carousel-control-prev{
      left: 42%;
  }
  
  .section_12 .carousel-control-next {
      right: 42%;  
   }  


}


@media (max-width: 575.98px) {
        .about_content_wrapper p {
            font-size: 14px;
        }
 }


@media (max-width: 499.98px) {
    .section_12 .carousel-control-prev{
      left: 40%;
  }
  
  .section_12 .carousel-control-next {
      right: 41%;  
  }  
}


@media (max-width: 399.98px) {
    .section_12 .carousel-control-prev{
      left: 38%;
      width: 27px;
      height: 27px;
  }
  
  .section_12 .carousel-control-next {
      right: 38%;  
      width: 27px;
      height: 27px;
    }  
  }


  /* -------------------------------------about_page--------------------------------------------- */

  .about_content_wrapper h1{
    font-family: 'Montserrat';
    font-size: 42px;
    font-weight: 600;
  }

  .about_content_wrapper p{
    font-family: 'Inter';
    font-size: 16px;
    text-align: justify;
  }

  .about_left span{
    color: rgba(50, 103, 255, 1);
    font-size: 15px;
    font-weight: 500;
  }

  .about_left h4{
    font-size: 24px;
    font-family: 'Montserrat';
    margin: 20px 0 0;
  }

  .about_left{
    padding: 15px;
  }

  .about_left p{
    font-size: 15px;
    font-family: 'inter';
  }

  .about_content_wrapper img{
    height: 600px;
    width: 100%;
  }


  /* --------------------------------blog_content-------------------------------------- */

  .blog_content h1{
    font-size: 42px;
    font-family: 'Montserrat';
  }

  .blog_content p{
    font-size: 15px;
    font-family: 'Inter';
    margin: 14px 0;
  }

  .card_head a{
     font-size: 14px;
     font-family: 'Inter';
     padding: 0;
     color: #007bff;
  }

  .card_head span{
    font-size: 13px;
    color:#7f7c7c;
    display: inline-block;
    font-family: 'Inter';
    padding: 0;
    padding-top: 4px;
   
 }

 .blog_cards{
    margin: 25px 0 50px;
 }

 .blog_cards .card-title{
    font-size: 20px;
    font-family: 'Montserrat';
    margin-top: 12px;
 }

 .blog_cards .card-text{
    font-size: 14px;
    font-family: 'Inter';
    margin-top: 12px;
 }

 .blog_cards .card img{
    height: 275px;
 }

 /* ------------------------------------------------sign-up--------------------------------------------- */

 .sign-up_heading h1{
    font-family: 'Montserrat';
    font-size: 27px;
 }

 .sign-up_form h2{
    font-family: 'Montserrat';
    font-size: 24px;
    font-weight: 600;
 }

 .sign-up_form p{
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
 }

 .xxsm\:w-full{
    border-radius: 20px;
 }

 .sign-up_form form label{
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 600;
 }

 .sign-up_form form button{
    font-family: 'Inter';
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
 }

 .sign-up_form form span{
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    margin-top: 3px;
    display: inline-block;
    width: 100%;
 }


 @media (max-width: 1024.98px) {
    .sign-up_form h2{
       text-align: center;
       margin-bottom: 14px;
     }
    
     .sign-up_form p{
        text-align: center;
        font-size: 17px;
        line-height: 0;
     }
 }

 @media (max-width: 991.98px) {
    .sign-up_heading h1{
        font-size: 24px;
     }
 }

 @media (max-width: 575.98px) {
    .sign-up_heading h1{
        font-size: 22px;
     }
 }


  
  


  
  