@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nova+Mono&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {

    overflow-x: hidden;
}



:root {

    --operator-color: #ee553b;
    --black-color: #000;
    --text-color: #473f3f;
    --white-color: #fff;
    --theme-color: #fff;
    --heading-fontweight: 700;
    --content-fontfamily: "Raleway", sans-serif;
    --heading-fontfamily: "Rubik", sans-serif;
    --subhead-fontfamily: "Montserrat", sans-serif;
    ;
    --section-color: #f4f4f4;
    --section-color1: #4FB99F;
    /* --frame-color: #f2b134; */
    --frame-color: #3aa2b5;
    --testimonial-star: #4FB99F;

}

@font-face {
    font-family: FontFamily;
    src: url(../fonts/school.otf);
}


.menu_extra {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-left: 9%;
    padding-bottom: 25px;
}

@media (max-width: 768px) {
    .logo_img {
        width: 40%;
    }
}

.header-contact {
    background-color: var(--operator-color);
    padding: 18px 20px;
    border-radius: 16px;
    width: fit-content;
    text-align: center;
    display: none;
    background-color: #8EDDBE;
    color: white;
    animation: blink 1s linear infinite;
}

@media (max-width: 993px) {
    .header-contact {
        background-color: var(--operator-color);
        padding: 8px 15px;
        border-radius: 10px;
        width: fit-content;
        text-align: center;
        display: block;
    }
}




@keyframes blink {
  0%, 100% {background-color:#bc015d;}
  50% {background-color: #000;}
}






/* Sidebar styling */
.sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: var(--black-color);
    color: var(--white-color);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;
    display: none;
    /* Initially hidden */
}

.sidebar a,
.sidebar ul {
    color: white;
    text-decoration: none;
}

.sidebar-menu li {
    list-style-type: none;
    margin: 15px 0;
    font-size: 18px;
}

/* Show the sidebar on mobile screens */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    #sidebar {
        display: block;
    }

    .header-content {
        justify-content: end !important;
    }

}

.show-sidebar {
    right: 0;
    /* Show the sidebar */
}


.trus-text {
    font-size: 20px;
    color: #79bf9a;
    font-weight: 900;
}

.fa-whatsapp-lg {
    font-size: 20px;
    color: #11e511;
    
}

.fa-whatsapp-sm {
    font-size: 30px;
    color: #11e511;

}

/* header */

.header {
    display: block;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 100;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.header.scrolled {
    top: -48px;
}




.top_bar_content {
    width: 100%;
    height: 48px;
    font-weight: 600;
    font-size: 15px;

}

.top_bar_item {
    margin-left: 33px;
}

.top_bar_item a {
    font-size: 14px;
    color: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.top_bar_item:first-child {
    margin-left: 37px;
}

.emergencies {
    height: 100%;
    /* background: #ec8b97; */
    color: #000;
    font-size: 14px;
    font-weight: var(--heading-fontweight);
    /* padding-left: 38px; */
    /* padding-right: 38px; */
    padding: 5px 50px 5px 50px;
    border-radius: 5px;
}

/*********************************
3.2 Header Content
*********************************/



@media (max-width: 768px) {
    .header-container {
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        padding: 6px 0px;
        background-color: var(--white-color);
    }
}

.header-content {
    width: 100%;
    height: 75px;
    font-weight: var(--heading-fontweight);
    font-family: "Raleway", sans-serif;
}

.header.scrolled .header-content {
    height: 80px;
}

.main_nav ul li {
    display: inline-block;
    padding: 0px 14px;
}

@media screen and (max-width: 990px) {
    .main_nav ul li {
        display: inline-block;
        padding: 0px 5px;
    }
}


.header-fa-phone {
    font-size: 23px;
}

.appoint-li {
    padding: 0px !important;
}

.main_nav ul li a {
    font-size: 16px;
    color: var(--black-color);
    text-decoration: none;
}

.hamburger i {
    font-size: 30px;
    color: #272727;
}

.appoint-contact {
    /* background-color: var(--operator-color); */
    /* padding: 10px 25px; */
    border-radius: 34px;
    color: var(--white-color) !important;
    font-size: 14px !important;
    font-family: "Rubik", sans-serif;
    /* text-decoration: none; */
    padding: 8px 35px;
    border-radius: 48px 0px; 

}

@keyframes blink {
  0%, 100% {background-color:#bc015d;}
  50% {background-color: #000;}
}

.appoint-contact {
  background-color: #8EDDBE;
  color: white;
  animation: blink 1s linear infinite;
}

.hand-pointer {
    font-size: 19px;
}



.appoint-contact1 {
    font-family: var(--subhead-fontfamily);
    text-decoration: none;
    color: var(--white-color);
}

.appoint-text {
    font-size: 10px;
}

.appoint-contact-number {
    font-size: 14px;
}

.fa-phone-volume {
    transform: rotate(-31deg);
}

/*********************************
3.3 Logo
*********************************/

.logo-container_outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.logo-container {
    position: absolute;
    top: 0;
    left: 8%;
    width: 216px;
    height: 160px;
    z-index: 10;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}


@media screen and (max-width: 426px) {
    .logo-container {
        position: absolute;
        top: 0;
        left: -8%;
        width: 216px;
        height: 160px;

        z-index: 10;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }
}

.header.scrolled .logo-container {
    top: 48px;
    height: 120px;
}

.logo-container a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.logo-content {
    width: 100%;
    height: 100%;
    padding-left: 36px;
}

.logo-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--line-color);
}

.logo {
    margin-top: 27px;
}

.logo span {
    color: #20d34a;
}

.logo-container a .logo:hover {
    color: #283290;
}

.logo-text {
    font-size: 30px;
    font-weight: 500;
    color: #283290;
    line-height: 0.75;
}

.logo-box {
    display: inline-block;
    width: 23px;
    height: 23px;
    background: #20d34a;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 23px;
    text-align: center;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    margin-left: 1px;
}

.logo-sub {
    font-size: 14px;
    font-weight: 400;
    color: #8f8e8e;
    padding-left: 3px;
    margin-top: 2px;
}

/*********************************
4. Menu
*********************************/

.menu_container {

    top: 0;
    right: -50vw;
    width: 50vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 101;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    visibility: hidden;
    opacity: 0;
}

.menu_container.active {
    visibility: visible;
    opacity: 1;
    right: 0;
}

.menu {
    position: absolute;
    top: 150px;
    left: 0;
    padding-left: 15%;
}

.menu_inner {
    width: 100%;
    height: 100%;
}

.menu_list {
    -webkit-transform: translateY(1.5rem);
    -moz-transform: translateY(1.5rem);
    -ms-transform: translateY(1.5rem);
    -o-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
    -webkit-transition: all 1000ms 400ms ease;
    -moz-transition: all 1000ms 400ms ease;
    -ms-transition: all 1000ms 400ms ease;
    -o-transition: all 1000ms 400ms ease;
    transition: all 1000ms 400ms ease;
    opacity: 0;
}

.menu_container.active .menu_list {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.menu_item {
    margin-bottom: 5px;
}

.menu_item a {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: var(--heading-fontweight);
    color: #272727;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu_item a:hover {
    color: #ffb606;
}

.menu_close_container {
    position: absolute;
    top: 86px;
    right: 79px;
    width: 21px;
    height: 21px;
    cursor: pointer;
    z-index: 10;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu_close {
    top: 9px;
    width: 21px;
    height: 3px;
    background: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu_close::after {
    display: block;
    position: absolute;
    top: -9px;
    left: 9px;
    content: '';
    width: 3px;
    height: 21px;
    background: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after {
    background: #20d34a;
}

.menu_appointment a {
    font-size: 13px;
    color: #ffffff;
}


.menu_emergencies {
    font-size: 13px;
    color: #ffffff;
}


.sec1-nav {
    background-image: url(../images/frame_bgmain.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.sec1-cont {
    position: relative;
    z-index: 1;
}

.frame_bg {
    bottom: 0;

}

.welcome-text {
    color: #fff;
    text-align: center;
    background-color: #007bfc;
    border-radius: 10px;
    width: fit-content;
    margin: auto;
    padding: 6px 28px;
}



.des-text {
    font-family: var(--heading-fontfamily);
    font-weight: var(--heading-fontweight);
    color: var(--black-color);
}

.head-text {
    line-height: 2.1;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    font-family: var(--content-fontfamily);
}

.subhead-text {
    line-height: 2.1;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    font-family: var(--subhead-fontfamily);
}


.med-text {
    color: #eb8b97;
}

.nav-text {
    font-size: 10px;
    font-weight: var(--heading-fontweight);
}

.nav-link {
    color: #000;
}

.navbar-nav {
    font-size: 20px;
    font-weight: 600;
}

.navbar-brand {
    font-size: 25px;
    font-weight: 600;
}

.nav-contact {
    text-decoration: none;
    text-wrap: nowrap;
}

@media screen and (max-width: 991px) {
    .nav-contact {
        display: none;
    }
}

.nav-contact-mob {
    text-decoration: none;
}

.navbar-collapse {
    flex-grow: unset;
}

.head-content {
    font-size: 55px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .head-content {
        font-size: 40px !important;

    }
}



.frame {
    /* box-shadow: var(--w, 0px 10px 15px 0px rgba(1, 115, 153, 0.2)); */
    border-radius: 39px;
    background: linear-gradient(97.65deg, #7fbc9a 38.3%, #e98c97 93.3%);
    width: fit-content;
    text-align: center;
    padding: 10px 30px 10px 30px;
    color: #000;
    font-weight: 600;
}



/*  */

.depart-div {
    background-color: var(--operator-color);
}

.dep-heading {
    position: relative;
    font-weight: var(--heading-fontweight);
    color: var(--white-color);
    font-size: 35px;
    font-family: var(--heading-fontfamily);
}

/* .dep-heading:before {

    content: "";
    color: var(--line-color);
    background: var(--line-color);
    width: 100px;
    height: 3px;
    position: absolute;
    bottom: 56px;
    left: 5px;
} */



.dep-text {
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    font-family: var(--content-fontfamily);
    line-height: 2.1;
    font-weight: 500;
}


.learnmore-text {
    color: var(--line-color);
}


.dep-bot-img {
    background-color: var(--theme-color);
}

/* .dep-top-img {
background-color: var(--theme-color);

} */


.hos-frame1 {
    right: 10px;
    top: -85px;
    z-index: -1;
}

.hos-frame2 {
    left: 0px;
    top: 0px;
    z-index: -1;
}

.service-heading {
    font-family: var(--content-fontfamily);
    color: var(--black-color);
    font-size: 18px;
    font-weight: var(--heading-fontweight);
}

.about-head {
    color: var(--black-color);
    font-size: 30px;
    font-weight: var(--heading-fontweight);
    font-family: var(--heading-fontfamily);
}



.gynae-content {
    font-size: 20px;
    font-weight: var(--heading-fontweight);
    font-family: var(--content-fontfamily);
    position: relative;
    color: var(--black-color);

}

.gynae-content::before {
    content: "";
    color: var(--line-color);
    background: var(--line-color);
    width: 4px;
    height: 64px;
    position: absolute;
    /* bottom: -23px; */
    left: -26px;

}

.center-content {
    margin: auto;
    width: fit-content;
}

.gyanae-shape1-image {
    left: -114px;
    top: -196px;
    max-width: 100%;
    z-index: -1;
}


.gyanae-shape2-image {
    top: 89%;
    right: 0%;
    transform: translatey(-50%);
    max-width: 100%;
    z-index: -1;

}

.gynae-text {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--content-fontfamily);
    color: #000;
}




.plus_image2 {
    top: 100%;
    right: 0%;
    transform: translatey(-50%);
    max-width: 100%;
    z-index: 1;
}



.paed-head {
    color: var(--black-color);
    font-size: 35px;
    font-weight: var(--heading-fontweight);

}



.paed-content {
    font-size: 20px;
    font-weight: var(--heading-fontweight);
    font-family: var(--content-fontfamily);
    position: relative;
    color: var(--black-color);

}

.paed-content::before {
    content: "";
    color: var(--line-color);
    background: var(--line-color);
    width: 4px;
    height: 64px;
    position: absolute;
    /* bottom: -23px; */
    left: -26px;

}

.paed-shape {
    left: 0px;
    bottom: 22%;
    max-width: 100%;
}

.paed-text {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--content-fontfamily);
    color: #000;
}

/* .centerofexcelence {
    background-image: url(../images/sec_bg.png);

    background-repeat: no-repeat;

} */

/* .paediatrics {
    background: linear-gradient(180deg, rgb(255 255 255) 00%, rgb(255 190 203 / 24%) 99%);
} */
.paediatrics {
    background: linear-gradient(180deg, rgb(255 255 255) 00%, rgb(255 215 223) 99%);
}

.abouttop-head {
    font-size: 30px;
    font-weight: var(--heading-fontweight);
    color: var(--section-color1);

}

.about-text {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--content-fontfamily);
    line-height: 2.1;
}

.about-image {
    max-width: 100%;
}

.about-bg-image {
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}


.abo-line {
    top: 5%;
    left: 57%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}

/* .aboutus {

    background-image: url(../images/sec_bgs1.png);
    background-size: cover;
    background-repeat: no-repeat;
} */


/* .about-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
} */



.big-plus-img {
    left: -74px;
}

.circle-img {
    bottom: -114px;
    left: 42%;
}



.tcr-infobox-wrapper {
    padding: 40px;
    background-color: var(--section-color);
    border-radius: 25px;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    height: 400px;

}

.tcr-infobox-wrapper-paed {
    padding: 40px;
    background-color: var(--section-color);
    border-radius: 25px;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    height: 400px;

}

@media (max-width: 426px) {
    .tcr-infobox-wrapper-paed {
        padding: 20px;
        background-color: var(--section-color);
        border-radius: 25px;
        margin-bottom: 30px;
        position: relative;
        width: 100%;
        height: 300px;
    }
}



.tcr-infobox-content {
    position: relative;

}

.tcr-infobox-title {
    font-size: 20px;
    color: var(--section-color1);
    font-weight: 600;
    margin-bottom: 17px;
    flex-grow: 1;
    line-height: 1.5;
    font-family: var(--heading-fontfamily);

}

.tcr-infobox-icon {
    font-size: 70px;
    color: #000;
    position: absolute;
    left: 0;
}

.tcr-infobox-text {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
    font-family: var(--content-fontfamily);
    font-weight: 500;
    font-size: 16px;
}

.tcr-infobox-button {

    width: 44px;
    height: 44px;
    border-radius: 100%;
    overflow: hidden;
}



.fa-arrow-right {
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-color: var(--section-color);
    height: 50px;
    width: 50px;
    border-radius: 100%;
    z-index: 1;
}

.fa-arrow-right:hover {
    background-color: var(--section-color1);
    color: #fff;
}



.fa-arrow-right:before {
    content: "\f061";
    position: absolute;
    top: 39%;
    left: 39%;
    transform: translate(-50%, -50%);
    transform: rotate(-36deg);
}

.card-aero {
    position: absolute;
    right: -3px;
    bottom: 0;
    background: var(--theme-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 10px 0 0 10px;
    border-radius: 60% 0 0 0;

}


.card-aero:after {
    content: "";
    width: 75px;
    height: 75px;
    position: absolute;
    background-color: var(--theme-color);
    right: 0px;
    bottom: 0px;
    border-radius: 46px 0px 0px 0px;
    z-index: 0;
}


.card-aero:before {
    content: "";
    display: block;
    width: 80%;
    height: 80%;
    position: absolute;
    border-radius: 20px;
    top: -44px;
    right: -27px;
    box-shadow: inset -20px 30px 0 0 var(--theme-color);
    transform: rotate(90deg);
    z-index: 1;

}



.card-aero1:after {
    content: "";
    display: block;
    width: 80%;
    height: 80%;
    position: absolute;
    border-radius: 20px;
    top: 36px;
    right: 45px;
    box-shadow: inset -20px 30px 0 0 var(--theme-color);
    transform: rotate(90deg);
    z-index: 1;
}

.section-head {
    font-size: 40px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
}

.heading-title {
    font-size: 30px;
    color: var(--section-color1);
    font-weight: var(--heading-fontweight);
    text-align: center;
    font-family: var(--heading-fontfamily);

}

.dep-title {
    font-size: 30px;
    color: var(--section-color1);
    font-weight: var(--heading-fontweight);
    text-align: center;
    font-family: var(--heading-fontfamily);
    -webkit-text-stroke: 1px white;
}

.infobox {
    overflow: hidden;
}



.frame-section {
    background-image: url(../images/doc_frame.png);
    background-size: cover;
    background-repeat: no-repeat;

    background-color: var(--frame-color);
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.frame-section1 {
    background-image: url(../images/doc_frame1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--frame-color);
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.doc-head {
    color: var(--black-color);
    font-size: 30px;
    font-weight: 600;
    font-family: var(--heading-fontfamily);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .doc-head {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.5;
    }

    .doc-img {
        width: 20%;
    }
}


.doc-name {
    font-size: 25px;
    font-weight: 600;
    color: var(--black-color);
    font-family: 'Roboto', sans-serif;
}


.doc-text {
    color: var(--black-color);
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    line-height: 1.9;
    font-size: 15px;
}




/*  */

.star-rotate {
    color: var(--operator-color) !important;
}

.badge {
    --badge-size: 160px;
    --badge-color: var(--black);

    display: flex;
    justify-content: center;
    align-items: center;

    width: var(--badge-size);
    height: var(--badge-size);
    position: absolute;
    right: 69px;
    top: -100px;

    background: var(--black);
    border-radius: 100%;
    box-shadow: inset 0 0 0 0.9rem var(--badge-color);
    animation: identifier 20s linear infinite;
}

.badge__emoji {
    display: block;
    margin: 0;
    animation: identifier 20s linear infinite;
    animation-direction: reverse;
    transition: all 0.3s;

    &:hover {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.badge__char {
    --char-font-weight: 600;
    --char-font-size: 1em;
    --char-width: 10px;
    --char-font-family: "Arial", sans-serif;

    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - var(--char-width) / 2);
    height: calc(var(--badge-size) / 2);
    width: var(--char-width);
    background-repeat: round;
    text-align: center;
    text-transform: uppercase;
    line-height: 1rem;

    font-weight: var(--char-font-weight);
    font-size: var(--char-font-size);
    color: #000;
    font-family: var(--char-font-family);
    transform-origin: bottom center;
    transform: rotate(var(--char-rotate));
}

@-webkit-keyframes identifier {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes identifier {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.text-dec {
    /* background-image: url(../images/text_bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
}

/* .doc-img {
    background-color: var(--theme-color);
    padding: 10px;
    border-radius: 100%;
    margin-right: 20px;
  } */





.house-content {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--content-fontfamily);
    line-height: 1.9;
}

.house-card {
    border: 1px solid #00000000;

    border-radius: 10px;
    background-color: #f4f4f4;

}


.house-head {
    color: var(--black-color);
    font-size: 30px;
    font-weight: var(--heading-fontweight);

    font-family: var(--heading-fontfamily);

}



/* TESTIMONIAL */

.testimonial-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 12%, rgb(237 85 59) 100%);
    margin-bottom: -23px;

}

.testimonial {
    max-height: 350px;
}

.caousel-design {
    margin-top: 80px;
}

.testi-text {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--content-fontfamily);
    line-height: 1.9;

    margin: auto;
}

.testi-user-text {
    color: var(--white-color);
    font-weight: var(--heading-fontweight);
    font-family: var(--subhead-fontfamily);
}

.owl-carousel .owl-item img {
    width: unset !important;
    display: unset !important;
}

.checked {
    color: var(--testimonial-star);
}


.owl-carousel .owl-nav button.owl-prev {


    position: absolute;
    top: 113px;
    left: 0px;

}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 0px;
    top: 113px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #223d3400;
    color: var(--white-color);
    text-decoration: none
}

.owl-nav {
    font-size: 60px;
}

.owl-nav span {
    display: none;
}

.owl-prev::before {
    content: "\f060";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    display: inline-block;
    background-color: var(--section-color);
    padding: 7px 14px;
    border-radius: 100%;
}


.owl-prev:hover::before {
    background-color: var(--section-color1);
}

.owl-next::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    display: inline-block;
    background-color: var(--section-color);
    padding: 7px 14px;
    border-radius: 100%;
}

.owl-next:hover::before {
    background-color: var(--section-color1);
}

/* Footer */

.footer {
    background-color: var(--operator-color);
    font-family: var(--content-fontfamily);
}

.footer-head {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    padding-bottom: 10px;
}

/* .footer-logo {
    background-color: #fff;
    border-radius: 100%;
    padding: 10px;
} */

.footer-content {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 2.1;
    text-align: center;
}

.footer-links li {
    padding-bottom: 18px;
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: #fff;

}

.footer-contact {
    color: var(--white-color);
    font-size: 16px;
    text-decoration: none;
    font-family: "Rubik", sans-serif;

}

.footer-text {
    font-size: 20px;
    font-weight: var(--heading-fontweight);
    color: #79bf9a;
}


.footer-add-contact {
    padding-left: 2rem;
}


/* #housefacilities {
    padding: 67px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
 */



.section-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

@media screen and (max-width:426px) {
    .section-title {
        text-align: center;
    }
}

.section-text {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--content-fontfamily);
    line-height: 1.9;
    text-align: justify;
}



.copyright-icon {
    width: 20px;
}

.copyright-area .container {
    border-top: 1px solid var(--white-color);
}

.copyright-area p {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;

}

.design-copyright {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;

}

@media (max-width: 767px) {
    .copyright-area p {

        text-align: center !important;
    }

    .design-copyright {

        text-align: center !important;
    }
}



.copyright-area {
    background-color: var(--operator-color);
}

.ultra-design:before {
    content: "";
    background-color: #4fb99f;
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    box-shadow: 0 7px 20px 0 rgba(28, 186, 159, .3);
}

.house-badge {
    --badge-size: 160px;
    --badge-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--badge-size);
    height: var(--badge-size);
    position: absolute;
    /* right: 69px; */
    /* top: -100px; */
    top: -74px;
    left: 33px;
    background: var(--black);
    border-radius: 100%;
    box-shadow: inset 0 0 0 0.9rem var(--badge-color);
    animation: identifier 20s linear infinite;
}

.footer-wave {
    background-color: #ee5e46;
    position: relative;
}





.animation-text {
    font-size: 1.5rem;
    color: #1200d7bd;
    font-style: italic;

}

.animation-text svg {
    height: 50px;
}

.fa-play {
    font-size: 14px;
}

.tcr-infobox-content img {
    height: 60px;
}



.contact-text {
    font-size: 20px;
    font-weight: 500;
}

.contact-mob {
    text-decoration: none;
    color: var(--black-color);
}

@media (max-width: 767px) {
    #badge {
        display: none;
    }
}

#circle {
    shape-outside: circle(-400px, -400px, 400px);
    /* (x, y, radius) */
    float: left;
}

.fav-icon-vaagai {
    position: relative;
    top: -9px;
    height: 17px;

}

.vaagai-link {

    text-decoration: none;

}

.fa-xmark {
    font-size: 30px;
}

.contact-head {
    font-size: 30px;
    font-weight: var(--heading-fontweight);
    font-family: var(--heading-fontfamily);
    color: var(--section-color1);
}


@media (max-width: 426px) {
    .contact-head {
        font-size: 25px;

    }
}



.contactus-icon {
    height: 60px;
    width: 60px;
    display: grid;
    place-items: center;
    font-size: 30px;
    background-color: var(--white-color);
    border: 1px solid #cbcbcb;
    padding: 10px;
    border-radius: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-right: 15px;
    color: var(--section-color1);
}

.housefacilities-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 12%, rgb(237 85 59) 100%);
    margin-bottom: -23px;
}