/* ----------------------- Import google fonts poppins ---------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ------------------------------ Global styles ------------------------------ */
:root{
    --th-green:#000248;
    --th-lightgreen:#69C2FF;
    --th-black:#000000;
    --th-white:#FFFFFF;
    font-family: 'DM Sans', sans-serif;
    --th-body-text:18px;
}
@media (max-width:1200px) {
    :root{
        --th-body-text:17px;
    }
}
@media (max-width:768px) {
    :root{
        --th-body-text:16px;
    }
}        
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family:var(--th-font-poppins);
    font-size:var(--th-body-text);
    line-height:1.5;
}

.transition{
    transition: all 0.3s;
}

h1,h2,h3,h4,h5,h6{
    font-weight:700;
}
h1{
    font-size:64px;
    line-height: 70px;
}

h2{
    font-size:44px;
    line-height:58px;
}

h3{
    font-size:32px;
    line-height: 42px;
}

h4{
    font-size:26px;
    line-height: 36px;
}

h5{
    font-size:22px;
    line-height: 32px;
}

h6{
    font-size:18px;
    line-height: 28px;
}

.text-green{
    color: var(--th-green);
}

.text-lightgreen{
    color: var(--th-lightgreen);
}

p{
    font-size:var(--th-body-text);
    line-height: 1.5;
    margin-bottom: 0;
}

a{
     text-decoration: none;
    color:var(--th-lightgreen);
    font-weight:500;
}
a:hover{
    color:var(--th-green);
}
a:focus{
    
}
a:focus-visible,
.btn:focus-visible{
    outline:0px;
}

.btn:focus{
    background:var(--th-lightgreen);
    border-color:var(--th-lightgreen);
    box-shadow:none;
}
.btn{
    font-size:20px;
    line-height:1.5;
    font-weight:500;
    letter-spacing:3px;
    color:var(--th-white);
    text-transform: uppercase;
    background-color:var(--th-green);
    border-radius: 0px;
    border-color:var(--th-green);
    padding:12px 30px;
    box-sizing: border-box;
}
.btn:hover{
    color:var(--th-black);
    background-color:var(--th-lightgreen);
    border-color:var(--th-lightgreen);
}

.btn-green{
    background-color:var(--th-green);
    border-color:var(--th-green);
    color:var(--th-lightgreen);
    font-weight:500;
}
.btn-green:hover{
    background-color:var(--th-lightgreen);
    border-color: var(--th-lightgreen);
    color:var(--th-green);
}

.btn-lightgreen{
    background-color:var(--th-lightgreen);
    border-color: var(--th-lightgreen);
    color:var(--th-green);
    font-weight:500;
}
.btn-lightgreen:hover{
    background-color:var(--th-green);
    border-color:var(--th-green);
    color:var(--th-lightgreen);
}

.text-btn-green{
    color:var(--th-green);
    font-weight:500;
}
.text-btn-green:hover{
    color:var(--th-lightgreen);
}



.text-btn-light-green{
    color:var(--th-lightgreen);
    font-weight:500;
}
.text-btn-light-green:hover{
    color:var(--th-green);
}


.text-btn-icon{
    color:var(--th-black);
    font-weight: 700;
    text-transform: uppercase;
}
.text-btn-icon:hover{
    color:var(--th-lightgreen);
}
.text-btn-icon::after{
    content:"\f061";
    font-family:'Font Awesome 6 Free';
    display: inline-block;
    margin-left: 10px;
    transition: all 0.3s;
}
.text-btn-icon:hover::after{
    color:var(--th-lightgreen);
}

.text-btn-green.text-btn-icon {
    color:var(--th-green);
}
.text-btn-green.text-btn-icon:hover {
    color:var(--th-lightgreen);
}
.text-btn-green.text-btn-icon::after{
    color:var(--th-green);
}
.text-btn-green.text-btn-icon:hover::after {
    color:var(--th-lightgreen);
}





.text-btn-light-green.text-btn-icon {
    color:var(--th-lightgreen);
}
.text-btn-light-green.text-btn-icon:hover {
    color:var(--th-green);
}
.text-btn-light-green.text-btn-icon::after{
    color:var(--th-lightgreen);
}
.text-btn-light-green.text-btn-icon:hover::after{
    color:var(--th-green);
}

.bg_grey{
    background: linear-gradient(180deg, #EAF8FF 0%, #F6F6FF 100%);
}







/* ------------------------------ Topbar style ------------------------------ */
.topbar{
    background-color: var(--th-green);
}
nav.navbar{
    padding: 10px 0;
}
.contact-info a{
    color:var(--th-white);
}
.contact-info a:hover{
    color:var(--th-lightgreen);
}
.contact-info .contact-number{
    margin-right:15px;
    position: relative;
}
.contact-info .contact-number::after{
    content:"";
    width:2px;
    height:24px;
    display: inline-block;
    background-color: var(--th-white);
    position: absolute;
    top: 0;
    right:-10px;
}
.appointment-btn .btn{
    font-size: 18px;
    line-height:28px;
    letter-spacing:0px;
}
.appointment-btn .btn:hover{
    background-color:var(--th-white);
    border-color:var(--th-white);
    color:var(--th-green);
}
.navigation-menu .navbar-brand img{
    width:100%;
    max-width:292px;
}
.navigation-menu .navbar-nav .nav-item .nav-link{
    font-size: 18px;
    line-height:30px;
    font-weight: 600;
    color:var(--th-black);
    padding:0px;
    padding-left:20px;
}
.navigation-menu .navbar-nav .nav-item .nav-link:hover,
.navigation-menu .navbar-nav .nav-item .nav-link.active{
    color:var(--th-lightgreen);
}
.navbar-toggler:focus{
    box-shadow: none;
}
.navigation-menu .navbar-toggler{
    background-color:var(--th-green);
    width:40px;
    height:40px;
    padding: 0;
}
.navigation-menu .navbar-toggler i{
    color:var(--th-white);
    font-size: 22px;
}
.navigation-menu .navbar-toggler[aria-expanded="true"]{
    background-color:var(--th-lightgreen);
    border-color:var(--th-lightgreen);
}
.navigation-menu .navbar-toggler[aria-expanded="true"] i{
    color:var(--th-green);
}
.navigation-menu .navbar-toggler[aria-expanded="true"] i::before{
    content:"\f00d";
}


/* ------------------------ Hero section style start ------------------------ */
.hero-sec{
    padding:7% 0;
    /*height:75vh;*/
    background-image:url('../image/slider-02.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center;
}
.hero-sec::before{
    content: "";
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(#EAF8FF), to(#F6F6FF));
    background: -webkit-linear-gradient(top, #EAF8FF 0%, #F6F6FF 100%);
    background: -o-linear-gradient(top, #EAF8FF 0%, #F6F6FF 100%);
    background: linear-gradient(180deg, #EAF8FF 0%, #F6F6FF 100%);    
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b5026",endColorstr="#201c2b",GradientType=1);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index:-1;
}
.welcome-info{
    position: relative;
    z-index:2;
}
.welcome-info h6.sub_title{
    font-size: 20px;
    line-height:30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom:40px;
}
.welcome-info .welcome-text,
.welcome-info .welcome-infotext{
    margin-bottom: 40px;    
}
.welcome-info a.btn{
    color:var(--th-white);
}
.welcome-info a.btn:hover{
    color:var(--th-green);
}


/* ------------------------- About us section style ------------------------- */
.about-section {
    padding: 120px 0;
}
.about_content p {
    margin-bottom: 30px;
}
.about_img img{
    max-width: 100%;
}
.readmore-btn{
    margin-top: auto;
}

/* ------------------------- Serviecs section style ------------------------- */
.services-section {
    background: linear-gradient(180deg, #f4f9eb 70%, #ffffff 30%);
    padding: 100px 0 80px;
}
.services-section .sec_title {
    margin-bottom: 70px;
}
.services-block {
    box-shadow: 0 0 35px 16px rgb(0 0 0 / 15%);
    border-radius: 0;
    background: #ffffff;
    padding: 27px;
    border: 0;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.service_icon {
    overflow: hidden;
    width: 150px;
    height: 150px;
    background: rgb(28 79 38 / 10%);
    border-radius: 100%;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.service_icon img{
    max-width: 100%;
    max-height: 90px;
    margin: auto;
}
.services-block h4 {
    color: var(--th-green);
    font-weight: 600;
    width: 100%;
}
.services-block a {
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: auto;
}
.services-block p {
    color: #7f7f7f;
    margin-bottom: 15px;
}
.services_col {
    margin-bottom: 50px;
}

/* ---------------------- visiting hours section style ---------------------- */
.visiting-hours {
    background-color: #f4f9eb;
    padding: 100px 0px;
}
.visiting-hours .sec_title {
    margin-bottom: 70px;
}
.visiting-img img {
    box-shadow: 0px 0px 50px 0px #c7c7c7;
}
.visiting-hours .hours{
    max-width:300px;
    margin:0px auto;
}
.visiting-hours .hours h3{
    font-weight: 600;
    padding-bottom:15px;
    margin-bottom: 0;
    border-bottom: 3px solid var(--th-green);
}
.visiting-hours .hours ul{
    margin-top: 20px;
}
.visiting-hours .hours ul li{
    margin-bottom: 20px;
}
.visiting-hours .hours ul li:last-child{
    margin-bottom: 0;
}
.visiting-hours .hours ul li{
    display: flex;
    justify-content:space-between;
}
.visiting-hours .hours ul li span.day-name{
    font-weight:700;
}

/* ----------------------- Find a doctor section style ---------------------- */

.cardiologist{
    padding: 100px 0;
}
.cardiologist h2{
    color:var(--th-green);
    margin-bottom: 25px;
}
.cardiologist-card .card-body{
    background-color:var(--th-lightgreen);
    margin-top: -50px;
}
.cardiologist-card .cardiologist-name{
    color:var(--th-green);
    font-size: 24px;
    font-weight: 700;
}
.cardiologist-card .card-text{
    color:var(--th-white);
}
.cardiologist .card{
    border: 0;
    border-radius: 0;
}
.cardiologist .card img{
    border-radius: 0;
}

/* ------------------------ Contact us section style ------------------------ */
.contactus{
    background-color: var(--th-white);
    padding: 30px 20px;
} 
.contactus .contact-left{
    max-width: 645px;
    margin-left: auto;
    margin-right: 0;
}
.contactus .contact-left h2{
    color:var(--th-green);
}
.contact-form input, .contact-form textarea{
    background: transparent;
    padding: 10px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--th-green);
}
.contact-form select{
     padding: 10px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--th-green);
    background-color: transparent;
}
.contact-form textarea {
    min-height: calc(6.5em + 0.75rem + 2px);
}
.contact-form input:focus,.contact-form textarea:focus, .contact-form select:focus {
    color: #212529;
    background-color: transparent;
    border-color: var(--th-black);
    outline: 0;
    box-shadow: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder, .contact-form select::placeholder{
    color:var(--th-black);
}
.contact-form button{
    letter-spacing: 1;
    width: 100%;
    text-transform: none;
    padding: 15px 30px;
}
.contact-form button:hover{
    background-color: var(--th-white);
    color:var(--th-green);
}
.contact-right {
    margin-left: 80px;
}
.contact-right iframe{
    width: 100%;
    height: calc(85vh - 20px);
}
/*------------------------Make appointment section style----------------------*/
.Appointment {
    /*height: 75vh;*/
    background-image: url(../image/back1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6% 0;
}
.Appointment::before{
    content: "";
    position: absolute;
    background: rgb(27,80,38);
    background: -moz-linear-gradient(180deg, rgba(27,80,38,0.32) 1%, rgba(32,28,43,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(27,80,38,0.32) 1%, rgba(32,28,43,0) 100%);
   background: linear-gradient(180deg, rgb(27 80 38 / 69%) 1%, rgb(27 80 38 / 53%) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b5026",endColorstr="#201c2b",GradientType=1);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index:1;
}
.Appointment .pos-r{
    position: relative;
    z-index: 1;
}
.contactus.Appointment h2{
    color: var(--th-white);
}
.contact-form input#datetime{
    width: 100%;
    color: var(--th-white);
}
.Appointment-form input, .Appointment-form textarea{
    border: 2px solid var(--th-white);
    color: var(--th-white);
    font-weight: 400;
}
.Appointment-form select{
    border: 2px solid var(--th-white);
    font-weight: 400;
}
.Appointment-form input:focus,.Appointment-form textarea:focus, .Appointment-form select:focus {
    border-color: var(--th-white);
    color: #fff;
}
.Appointment-form input::placeholder, .Appointment-form textarea::placeholder, .Appointment-form select::placeholder{
    color:var(--th-white);
}
.Appointment-form select {
    color:var(--th-white);
    filter: brightness(0) invert(1);
}
.Appointment-form select option{
    color:var(--th-black);
}
/*.Appointment-form select option:hover{
    backdrop-filter: grayscale(1) contrast(3) blur(1px);
}*/
.Appointment-form input::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
.Appointment-form input:active,.Appointment-form textarea:active, .Appointment-form select:active {
    color:var(--th-white);
}
/* -------------------------- Footer section style -------------------------- */
.footer-top {
    background: #FAFAFB;
    padding: 80px 0;
    border-top: 10px solid #fff;
}
.footer-bottom {
    background: #000248;
    color: #fff;
    padding: 11px 10px;
    text-align: center;
}
.footer-widget h4 {
    font-size: 24px;
    margin-bottom: 20px;
}
.footer-widget a {
    color: var(--th-green);
    display: block;
}
.footer-logo {
    max-width: 400px;
    margin: 0 auto 90px;
}
.footer-logo img{
    max-width: 100%;
}
.social_icon  ul {
    display: flex;
    justify-content: center;
    margin: 50px 0 20px;
    padding: 0;
}

.social_icon ul li {
    list-style: none;
}
.social_icon ul li a{
    background: var(--th-lightgreen);
}
.social_icon ul li a {
    background: var(--th-lightgreen);
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    margin: 0 10px;
    color: #fff;
    font-size: 28px;
    line-height: 50px;
}
.social_icon ul li a:hover{
    background: var(--th-green);
}

.inner_page_title {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 30px;
}
.inner_top_sec {
    padding: 50px 0;
}
.service_box {
    box-shadow: 0 8px 9px -4px rgba(0,0,0,0.15),0 4px 18px 0 rgba(0,0,0,0.1);
    background: linear-gradient(180deg, #EAF8FF 0%, #F6F6FF 100%);
    padding: 40px 35px;
    border-radius: 10px;
    height: 100%;
}
.service_box h2 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--th-green);
    margin-bottom: 15px;
}
.industry_list li {
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.industry_list li:after {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--th-lightgreen);
}

.industry_list {
    padding: 0;
}

.business_info_text h2{
    line-height: 1.2;
} 

.how_we_work {
    background-color:rgb(105 194 255 / 10%);
    position: relative;
}
.how_we_work::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color:var(--th-green);
    position: absolute;
    top: 0;
    right: -70%;
    z-index: 1;
}

.how_we_work .how_we_work_text,
.how_we_work .free_quote{
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

.how_we_work .how_we_work_steps{
    margin-top: 40px;
}
.how_we_work .free_quote{
    background-color:var(--th-green);
}

.work_steps-box:last-child{
    margin-bottom: 0 !important; 
}
.how_we_work .free_quote .free_quote_block{
    position: relative;
    z-index: 10;
}
.how_we_work .free_quote .free_quote_block h3.sec_title {
    margin-bottom: 50px;
}
.how_we_work .free_quote .free_quote_block form input:focus,
.how_we_work .free_quote .free_quote_block form input:focus-visible,
.how_we_work .free_quote .free_quote_block form textarea:focus,
.how_we_work .free_quote .free_quote_block form textarea:focus-visible{
    box-shadow:none;
    outline:0;
    border-color:var(--th-lightgreen);
    background-color:rgba(255, 255, 255, 0.05);
}
.how_we_work .free_quote .free_quote_block form input,
.how_we_work .free_quote .free_quote_block form textarea{
    background-color:transparent;
    border:2px solid rgba(255, 255, 255, 0.2);
    height:50px;
    border-radius: 0;
    padding: 10px 15px;
    color: var(--th-white);
}
.how_we_work .free_quote .free_quote_block form input::placeholder,
.how_we_work .free_quote .free_quote_block form textarea::placeholder{
    color:#e7e7e7;
    opacity:0.5;
}
.how_we_work .free_quote .free_quote_block form textarea{
    height: 200px;
}
.how_we_work .free_quote .free_quote_block form button[type="submit"]{
    width:100%;
    background-color:var(--th-lightgreen);
    color:var(--th-green);
    font-size: 16px;
    font-weight:bold;
    border:2px solid var(--th-lightgreen);
    padding:20px 30px;
}
.how_we_work .free_quote .free_quote_block form button[type="submit"]:hover{
    color:var(--th-white);
    background-color:transparent;
}
.form_dividers{
    border-color:rgba(255, 255, 255, 0.5);
    margin:40px 0px;
}
.call_btn{
    color:var(--th-white);
    font-weight: 100 !important; 
}
.call_btn a:hover{
    color:var(--th-white) !important;
}
