@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}


.section {
    padding: 50px 0px;
}

iframe {
    width: 100%;
}


a:hover {
    text-decoration: none;
}

hr {
    border-color: #6c6c6c;
}


body::-webkit-scrollbar {
    width: 6px
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #fff;
    box-shadow: inset 0 0 6px #fff
}

body::-webkit-scrollbar-thumb {
    background-color: #ec3164;
    outline: 1px solid #ec3164
}


.scroll-content::-webkit-scrollbar {
    width: 6px
}

.scroll-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #fff;
    box-shadow: inset 0 0 6px #fff
}

.scroll-content::-webkit-scrollbar-thumb {
    background-color: #ec3164;
    outline: 1px solid #ec3164
}


.operation-box {
    border: 1px solid #a43792;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}


.header-phone-box {
    background-color: #C93566;
    /*  background-image: linear-gradient(to right, #ec3164 0%, #a43792 100%); */
    padding: 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

h2 {
    font-weight: 700;
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

.header-text {
    font-size: 14px;
}

.font-400 {
    font-weight: 400;
}

.font-700 {
    font-weight: 700;
}

.font-800 {
    font-weight: 800;
}

.font-600 {
    font-weight: 600;
}

.banner-section {
    min-height: 70vh;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.banner-form {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.aboutbanner-section {
    min-height: 70vh;
    background-image: url('../images/about.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.lastbanner-section {
    min-height: 70vh;
    background-image: url('../images/last.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner-content h1 {
    font-size: 40px;
}

.banner-content h2 {
    font-size: 30px;
}

.text-white {
    color: white !important;
}

.border-radius-6 {
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.border-radius-10 {
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}



.container {
    max-width: 100% !important;
    padding-left: 5%;
    padding-right: 5%;
}

.text-purple {
    color: #a81e70 !important;
}

.bg-purple {
    background-color: #a81e70 !important;
}

.bg-pink {
    background-color: #C93566 !important;
}

.bg-red {
    background-color: #EE2D67 !important;
}

.text-pink {
    color: #C93566 !important;
}



.border-white {
    border-color: white;
}

.kauvery-list {
    list-style-type: none;
}

.kauvery-list li {
    position: relative;
    margin-bottom: 8px;
}

.kauvery-list li::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url('../images/right-arrow.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    left: -30px;
    top: 6px;
}

.form-control {
    background-color: white;
    border: 1px solid white;
    border-bottom-color: #000;
    color: #000;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    font-size: 14px;
}

.form-control:focus {
    background-color: white;
    border-color: white;
    border-bottom-color: #000;
    outline: 0;
    box-shadow: none;
    box-shadow: none;
}

.btn-rounded {
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}

.form-border-red {
    border: 3px solid white !important;
}

.btn-primary {
    background-color: #a1228c !important;
    border-color: #a1228c !important;
}

.btn-primary:hover {
    background-color: #ec3164 !important;
    border-color: #ec3164 !important;
}

.btn-yellow {
    background-color: #FCEE20 !important;
    border-color: #FCEE20 !important;
    color: #962067 !important;
}

.btn-yellow:hover {
    background-color: #ec3164 !important;
    border-color: #ec3164 !important;
    color: white !important;
}

.form-wrapper {
    padding: 20px;
}

.font-25 {
    font-size: 25px;
}

.scroll-content {
    height: 160px;
    overflow-y: scroll;
}


.btn-purple {
    background-color: #a1228c;
    /*background-image: linear-gradient(to right, #ec3164 0%, #a43792 100%);*/
    padding: 10px 30px;
    height: 50px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-pink {
    background-color: #C93566;
    background-image: linear-gradient(to right, #ec3164 0%, #a43792 100%);
    padding: 10px 30px;
    height: 50px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-purple:hover {
    background-color: #ba529b;
    border: 1px solid #ba529b;
    color: white;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.btn-pink:hover {
    background-color: #C93566;
    border: 1px solid #C93566;
    color: white;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}


.btn-white {
    background-color: white;
    padding: 10px 30px;
    min-height: 50px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: #962067;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid #ffffff;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.btn-white:hover {
    background-color: white;
    border: 1px solid #C93566;
    color: #962067;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.btn-treatment {
    color: gray;
    font-weight: 700;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 20px;
    padding-left: 40px;
    position: relative;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .15) !important;
    margin-bottom: 20px;
}

.btn-treatment:hover {
    color: #a81e70;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.btn-treatment::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-image: url('../images/treatment-arrow-gray.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.btn-treatment:hover::before {
    background-image: url('../images/treatment-arrow-purple.png');
}

#intro-section {
    background-image: url('../images/intro-image.jpg');
    background-size: cover;
    background-position: left center;
    padding: 30px;
}

.intro-box-1 {
    position: relative;
}

.intro-box-1::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background-color: white;
    transform: translateX(-50%);
}

.intro-box-1::after {
    content: '';
    position: absolute;
    bottom: 0px;
    width: 80%;
    height: 1px;
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.intro-box-2 {
    position: relative;
}

.intro-box-2::after {
    content: '';
    position: absolute;
    bottom: 0px;
    width: 80%;
    height: 1px;
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}



.intro-box-3::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background-color: white;
    transform: translateX(-50%);
}

#risk-section {
    background-image: url('../images/risk-image.jpg');
    background-size: cover;
    background-position: left center;
    padding: 30px;
}

#life-section {
    background-image: url('../images/life-image.png');
    background-size: cover;
    background-position: right center;
    padding: 30px;
}


.btn-sm {
    padding: 5px 15px;
    height: 38px;
}

.benefit-box {
    background-color: #f2f2f2;
    position: relative;
    padding: 25px;
    padding-left: 52px;
    text-align: left !important;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /* min-height: 98px; */
    flex-direction: column;
}

.benefit-box p {
    font-size: 14px;
}

.benefit-box::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    width: 35px;
    height: 35px;
    background-image: url('../images/benefit-mark.png');
    background-size: contain;
    background-position: center center;
}

.why-box {
    background-color: #EFEFEF;
    padding: 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.why-box p {
    font-size: 14px;
    line-height: 15px;
}

.diagnose-box {
    background-color: #EFEFEF;
    padding: 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: relative;
}

.diagnose-box p {
    font-size: 14px;
    line-height: 15px;
}

.diagnose-box img {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #962067;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 20px;
}


.team-border {
    margin: 2%;
    border: 1px #ccc solid;
    padding: 0%;
    position: relative;
}


.team-bg h5 {
    color: #962067;
    font-size: 20px;
    height: 50px;
    padding: 20px;
}

.doctor-text {
    padding: 20px;
    padding-top: 0px;
    text-align: inherit;
    font-weight: normal;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-black {
    border: 0.5px solid black !important;
}

.team-bg1 a {
    text-decoration: none;
}


.view {
    background: #962067;
    color: #fff;
    padding: 5px 0px;
    font-size: 18px;
    text-align: center;
}

.view:hover {
    background: #fdb913;
}

.view1 {
    background: #231f20;
    color: #fff;
    padding: 5px 0px;
    font-size: 18px;
    text-align: center;
}

.team-bg1 .view1:hover {
    background: #fdb913;
}


.bubble {
    height: 200px;
    width: 80%;
    min-width: 80%;
    background: white;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    margin-top: 50px;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    box-shadow: 0px 0px 39px -8px #000 !important;
    position: relative;
}

.bubble::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -31px;
    width: 100px;
    height: 100px;
    background-image: url('../images/testimonial-quote.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.pointer {
    height: 40px;
    width: 40px;
    background: white;
    margin: 0 auto;
    transform: rotate(45deg);
    border-radius: 0 0 12px 0;
    margin-top: -22px;
    position: relative;
}

.blurred {
    background: gray;
    filter: blur(20px);
    position: relative;
    top: -269px;
    /* 	transform: scale(1.05); */
    z-index: -1;
}

#testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 104%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translate(-50%, -50%);
}


.bg-gradient {
    background-image: linear-gradient(to right, #ec3164 0%, #a43792 100%);
}


.image-purple {
    filter: invert(32%) sepia(36%) saturate(1340%) hue-rotate(262deg) brightness(94%) contrast(101%);
    -webkit-filter: invert(32%) sepia(36%) saturate(1340%) hue-rotate(262deg) brightness(94%) contrast(101%);
}

.image-white {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(124deg) brightness(108%) contrast(101%);
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(124deg) brightness(108%) contrast(101%);
}





footer {
    border-top: 1px solid white;
}


.social-links {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
}

.social-links li {
    margin-left: 20px;
}

.thank-you-section {
    height: 80vh;
    background-image: linear-gradient(to right, #ec3164 0%, #a43792 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-white {
    background-image: none;
    background-color: white !important;
}

.bg-gray {
    background-color: #f2f2f2 !important;
}

.modal-body {
    max-height: 400px;
    overflow: scroll;
}

.modal-body::-webkit-scrollbar {
    width: 6px
}

.modal-body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #fff;
    box-shadow: inset 0 0 6px #fff
}

.modal-body::-webkit-scrollbar-thumb {
    background-color: #ec3164;
    outline: 1px solid #ec3164
}

.border-bottom-pink {
    border-bottom: 1px solid #C93566 !important;
}

.new-box {
    border: 1px solid #C93566;
    padding: 30px;
    min-height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-box h5 {
    margin: 0 !important;
}

.highlight-box {
    background-color: #C93566;
    color: white;
    padding: 30px;
    min-height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-box h5 {
    margin: 0 !important;
}

.border-white {
    border-color: white !important;
}

.heart-failure-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.doctor-wrapper {
    border: 1px solid #666666;
}

.doctor-box {
    text-align: center;
    min-height: 75px;
}

.doctor-box img {
    border: 1px solid #666666;
}

.doctor-box h5 {
    font-weight: bold;
}

.doctor-box p {
    margin-bottom: 0px !important;
}

.doctor-carousel .owl-nav {
    height: 0px;
    position: absolute;
    top: 40%;
    left: 50%;
    width: 110%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doctor-carousel .owl-nav button img {
    filter: invert(0%) sepia(83%) saturate(7500%) hue-rotate(66deg) brightness(92%) contrast(115%);
    -webkit-filter: invert(0%) sepia(83%) saturate(7500%) hue-rotate(66deg) brightness(92%) contrast(115%);
}


#statement-carousel .owl-nav {
    height: 0px;
    position: absolute;
    top: 40%;
    left: 50%;
    width: 110%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#statement-carousel .owl-nav button img {
    filter: invert(0%) sepia(83%) saturate(7500%) hue-rotate(66deg) brightness(92%) contrast(115%);
    -webkit-filter: invert(0%) sepia(83%) saturate(7500%) hue-rotate(66deg) brightness(92%) contrast(115%);
}

.statement-box {
    min-height: 224px;
}

.home-doctor-image {
    height: 257px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.doctor-button {
    font-size: 14px;
}


.doctorloctabs button {
    border: 0;
    background: transparent;
    padding: 0;
    border: 1px solid #962067;
    padding: 12px 30px;
    border-radius: 8px;
    color: #962067;
    font-size: 17px;
}

.doctorloctabs button:not(:last-child) {
    margin-right: 1rem;
}

.doctorloctabs {
    margin-top: 30px;
    margin-bottom: 50px;
}

.doctorloctabs button.active {
    background-color: #962067;
    color: #fff;
}

.featured-video {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 315px;
    overflow: hidden;
}

.featured-video-title {
    padding: 20px 5px;
}

.home-videos-wrapper {
    height: 265px;
    overflow: scroll;
}

.video-border {
    border: 1px dashed #e6e7e8;
    height: 1px;
}

.testimonial-video-title {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
}

#testimonial-carousel .owl-nav {
    align-items: center;
    bottom: 70px;
    display: flex;
    height: 0;
    justify-content: space-between;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 100%
}

#testimonial-carousel .owl-nav img {
    filter: invert(98%) sepia(2%) saturate(0) hue-rotate(170deg) brightness(200%) contrast(103%);
    -webkit-filter: invert(98%) sepia(2%) saturate(0) hue-rotate(170deg) brightness(200%) contrast(103%)
}

.testimonial-video-title {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px
}

.testimonial-box {
    min-height: 222px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.testimonial-box img {
    height: 30px !important;
    width: auto !important;
    margin: 0 auto;
}

#feedback-carousel .owl-nav {
    align-items: center;
    bottom: 70px;
    display: flex;
    height: 0;
    justify-content: space-between;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 100%
}

#feedback-carousel .owl-nav img {
    filter: invert(98%) sepia(2%) saturate(0) hue-rotate(170deg) brightness(200%) contrast(103%);
    -webkit-filter: invert(98%) sepia(2%) saturate(0) hue-rotate(170deg) brightness(200%) contrast(103%)
}

.feedback-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px
}

.awards-image {
    min-height: 245px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

#awards-carousel .owl-nav {
    height: 0px;
    position: absolute;
    top: -50px;
    right: -50px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.blog-box,
.home-events-image {
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden
}

.blog-box {
    background-position: 50%;
    height: 280px;
    margin-bottom: 16px
}

#blog-carousel .owl-nav {
    align-items: center;
    display: flex;
    height: 0;
    justify-content: space-between;
    left: 50%;
    position: absolute;
    top: 40%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 110%
}




.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-bottom: 20px;
}

/*.active, .accordion:hover {
  background-color: #ccc; 
} */

.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}

button.accordion::after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.nav-tabs .nav-item {
    background-color: #f4830b;
}


.nav-tabs .nav-item {
    background-color: #fff;

}

.nav-tabs .nav-item {
    margin-bottom: -1px;
    padding: 0 80px;
}

.nav-tabs li {
    width: 50%;


}

.nav-tabs {
    border-bottom: 2px solid #444;
}

.nav-tabs .nav-link.active {
    background-color: #C93566 !important;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    border: solid 1px #C93566;
}

.nav-tabs .nav-link {
    color: #C93566;
    font-size: 25px;
    font-weight: 700;
    border: solid 1px #444;
}

/* Media Queries Ends */
.font-14 {
    font-size: 12px;
}




.nav-link {
    font-weight: 600;
    color: #1E1E1E;
}

.call-section {
    background-image: url('../images/call-bg.png');
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.image-white {
    filter: invert(100%) sepia(0%) saturate(7497%) hue-rotate(327deg) brightness(106%) contrast(101%);
    -webkit-filter: invert(100%) sepia(0%) saturate(7497%) hue-rotate(327deg) brightness(106%) contrast(101%);
}

.protect-box {
    position: relative;
    padding: 20px;
}

.protect-box-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 300px;
    z-index: 300;
}

.border-right-white {
    border-right: 3px solid white;
}

.bg-gray {
    background-color: #F2F2F2 !important;
}

.text-yellow {
    color: #FCEE20 !important;
}



.hospital-box {
    background-blend-mode: darken;
    background-color: rgb(93 15 79);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear
}

.hospital-box p {
    color: #fff
}

.hospital-box h4 {
    color: #fff;
    font-family: Segoe UI;
    font-weight: 700
}

.hospital-box:hover {
    background-color: rgba(0, 0, 0, .388);
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear
}

.hospital-box-arrow {
    filter: invert(98%) sepia(2%) saturate(0) hue-rotate(170deg) brightness(200%) contrast(103%);
    -webkit-filter: invert(98%) sepia(2%) saturate(0) hue-rotate(170deg) brightness(200%) contrast(103%)
}

.testimonial-box {
    border: 1px solid #962067;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.footer-section {
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.form-control {
    background-color: #ffffff42;
    color: white;
    font-weight: 600;
    box-shadow: none;
    outline: 0;
    border: 0px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 30px;
}

.form-control::placeholder {
    color: white;
    opacity: 1;
    /* required in some browsers like Firefox */
}

.location-address {
    min-height: 57px;
}

.first-name-wrapper,
.last-name-wrapper,
.phone-wrapper,
.location-wrapper,
.size-wrapper,
.medical-conditions-wrapper,
.hear-wrapper,
.emergency-wrapper,
.corporate-wrapper,
.amount-wrapper,
.gender-wrapper {
    position: relative;
}

.first-name-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/first-name-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.first-name-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/first-name-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.phone-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/form-phone-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.email-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/form-email-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.location-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/form-location-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.size-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/form-size-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.medical-conditions-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/form-medical-conditions-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.hear-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/form-hear-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.emergency-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/form-emergency-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.corporate-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/form-corporate-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.amount-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/form-amount-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.gender-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('../images/first-name-icon.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}


























/* Media Queries Starts */

/* Extra large devices (large desktops, <1200px) */
@media (max-width: 1199.98px) {
    /* Your styles here */
}

/* Large devices (desktops, <992px) */
@media (max-width: 991.98px) {
    /* Your styles here */
}

/* Medium devices (tablets, <768px) */
@media (max-width: 767.98px) {
    .call-section {
        background-color: #ffffffd6;
        background-blend-mode: overlay;
    }

    .protect-box-content {
        position: relative;
    }

    .bg-gray ul {
        padding: 0px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 17px;
    }
}

/* Small devices (landscape phones, <576px) */
@media (max-width: 575.98px) {
    /* Your styles here */
}

@media(max-width: 480px) {
    .banner-section {
        padding: 0px !important;
        min-height: 17vh;
    }

    .banner-content h1 {
        font-size: 22px !important;
        color: white !important;
    }

    .banner-content h2 {
        color: white !important;
        font-size: 20px;
    }

    .banner-content {
        padding: 30px;
        position: static;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        background-color: #962067;
    }

    #risk-section,
    #intro-section,
    #life-section {
        background-color: #0000004d;
        background-blend-mode: overlay;
        color: white;
    }

    .scroll-content {
        height: 300px;
    }

    #life-section {
        background-position: 90% center;
    }

    .nav-tabs .nav-item {
        margin-bottom: -1px;
        padding: 0 !important;
    }

    .font-25 {
        font-size: 14px !important;
    }


    .logos-section img {
        max-height: 70px;
        margin-bottom: 10px;
    }
}



@media screen and (max-width: 480px) {
    .dsk {
        display: none;
    }

    .dr {
        font-size: 10px;
    }

    .dr p {
        font-size: 10px;
    }

    .dr h6 {
        font-size: 12px;
    }


    .banner-form {
        position: relative;
        top: 0%;
        right: 0%;
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
    }

    .section {
        padding: 20px 0px;
    }
}