*{
    padding: 0;
    margin: 0;
}

.topbar{
    padding: 15px 0px;
}
.topbar .cta-card-one, .topbar .cta-card-two{
    display: flex;
}
.topbar .cta-card-one img{
    width: 35px;
    height: 55px;
    margin-right: 10px;
}
.topbar .cta-card-one p{
    font-size: 16px;
    color: #8a8c93;
    font-weight: 600;
    line-height: 22px;
}
.topbar .cta-card-one p a {
    text-decoration: none;
    color: #353742;
    font-size: 24px;
    font-weight: 900;
    transition: all .2s linear;
    transition-delay: .1s;
    line-height: 33px;
    font-family: 'Inter', sans-serif;
}
.topbar .cta-card-one{
    border: none;
    border-right: 1px solid black;
    padding-right: 10px;
}
.topbar .cta-card-two img{
    width: 30px;
    height: 50px;
    margin-right: 10px;
}
.topbar .cta-card-two p{
    font-size: 16px;
    color: #353742;
    font-weight: 600;
    line-height: 22px;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
.dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    /* Safari 4.0 - 8.0 */
    animation: fadeIn 0.3s alternate;
}
.nav-item.dropdown.dropdown-mega {
    position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 90%;
    top: auto;
    left: 5%;
}
.navbar-toggler {
    border: none;
    padding: 0;
outline: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 11;
    float: right;
}
.navbar-toggler .hamburger-toggle .hamburger {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    pointer-events: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
    width: 100%;
    height: 4px;
    position: absolute;
    background: #333;
    border-radius: 2px;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
    left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    transform: translate(0% -50%) !important;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
    left: 0px;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
    top: 45%;
    transform: rotate(45deg);
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
    left: 50%;
    width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
    top: 45%;
    transform: rotate(-45deg);
}
.icons {
    display: inline-flex;
    margin-left: auto;
}
.icons a {
    transition: all 0.2s ease-in-out;
    padding: 0.2rem 0.4rem;
    color: #ccc !important;
    text-decoration: none;
}
.icons a:hover {
    color: white;
    text-shadow: 0 0 30px white;
}
.navbar-nav .nav-item{
    margin-right: 25px;
}
.navbar-nav .nav-item:hover .dropdown-menu.first{
    display: block;
}
.navbar-nav .nav-item .nav-link{
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: #e9e9e9;
}
.navbar-nav .nav-item .dropdown-menu .dropdown-item{
    position: relative;
    display: block;
    border-bottom: 1px solid #e9e9e9;
    color: #353742;
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
    text-align: left;
    text-transform: capitalize;
    transition: all .5s ease;
    width: 100%;
}
.navbar-nav .nav-item .dropdown-menu .dropdown-item:hover{
    color: #2889d8;
    background: none;
}
.navbar-nav .nav-item .dropdown-menu .dropdown-item:before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    content: "";
    margin: 15px 0;
    width: 0;
    background: #2889d8;
    opacity: 0;
    transition: all .5s ease;
    transition: all .2s linear;
    transition-delay: .1s;
}
.navbar-nav .nav-item .dropdown-menu li:hover .dropdown-item:before{
    opacity: 1; 
    width: 5px;
}
.btn.btn-appointment{
    position: relative;
    display: inline-block;
    padding-left: 30px;
    padding-right: 10px;
    background-color: #4599de;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 40px;
    -webkit-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
    text-shadow: none;
}
.btn.btn-appointment i{
    margin-left: 10px;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    font-size: 16px;
    color: #4599de;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.btn.btn-appointment:hover i{
    color: #fff;
    background: #2d6aaf;
}
.btn.btn-appointment.mobile{
    display: none;
}
.hamburger-toggle{
    background: white;
    border-radius: 50%;
}

.owl-carousel.one .item{
    padding:0 !important;
    height:530px !important;;
    max-height: 100%;
}
.owl-carousel.one .owl-item div{
    position: relative;
    overflow: hidden;
}
.owl-carousel.one .owl-item img{
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    max-height: 1490px;
    -webkit-transition: all 20s;
    -moz-transition: all 20s;
    -o-transition: all 20s;
    transition: all 20s;
    transition-timing-function:linear;
}
.owl-carousel.one .owl-item img{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
}       
.owl-carousel.one .owl-item.active img{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.testimonial-section{
    margin-top: 25px;
}
.testimonial-section .testimonial-wrapper{
    padding: 25px 25px 10px 25px;
    border-radius: 15px;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 15%)
}
.testimony-slide{
    padding: 10px 25px;
    position: relative;
}
.testimony-slide .testimony p{
    line-height: 25px;
    font-size: 17px;
    text-shadow: none;
    font-weight: 400;
    position: relative;
    padding-left: 25px;
    padding-top: 0px;
}
.testimony-slide .testimony .author{
    text-align: right;
}
.testimony-slide .testimony .author h4{
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    color: #000;
    padding-right: 0px;
    padding-bottom: 0;
}
.testimony-slide .testimony .author h5{
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #000;
    padding-right: 0px;
    padding-bottom: 0;
}
.owl-theme .custom-nav {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
}
.owl-theme .custom-nav .owl-prev, .owl-theme .custom-nav .owl-next {
    position: absolute;
    height: 50px;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}
.owl-theme .custom-nav .owl-prev i, .owl-theme .custom-nav .owl-next i {
    font-size: 1.25rem;
    color: black;
}
.owl-theme .custom-nav .owl-prev:hover, .owl-theme .custom-nav .owl-next:hover{
    background-color: transparent;
}
.owl-theme .custom-nav .owl-prev {
    left: 0;
}
.owl-theme .custom-nav .owl-next {
    right: 0;
}

.about-section{
    padding: 50px 0px;
    background-color: #f4f5f7 !important;
}
.about-section .about-content{
    padding: 15px;
}
.about-section .about-content h2{
    color: #353742;
    text-align: left;
    font-size: 47px;
    font-weight: 900;
    font-style: normal;
    line-height: 48px;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 15px;
}
.about-section .about-content h2 span{
    color: #4599de;
}
.about-section .about-content p{
    line-height: 30px;
    font-size: 18px;
    text-shadow: none;
    text-align: justify;
    font-weight: 500;
    color: #898f92;
    margin-bottom: 15px;
}
.about-section .about-content p a{
    color: #4599de;
    text-decoration: none;
}
.about-section .about-buttons{
    padding-top: 15px;
    display: flex;
    justify-content: space-around;
}
.btn.btn-call{
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    padding: 3px 25px;
    border-radius: 5px;
    position: relative;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-left: 40px;
    display: inline-block;
}
.btn.btn-call span{
    font-size: 14px;
    font-weight: 500;
}
.btn.btn-call i{
    font-size: 25px;
    color: #4599de;
}
.btn.btn-call:hover i{
    animation: oscillate-rotation 1s infinite ease-in-out;
}
@keyframes ring-circle-anim {
    0% {
        transform: rotate(0) scale(1.1) skew(0deg);
        opacity: 0;
    }
    30% {
        transform: rotate(0) scale(1.5) skew(0deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1.7) skew(0deg);
        opacity: 0.1;
    }
}
@keyframes ring-circle-fill-anim {
    0% {
        transform: rotate(0) scale(1) skew(0deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1.4) skew(0deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(1.1) skew(0deg);
        opacity: 0.2;
    }
}
@keyframes oscillate-rotation {
    0% {
        transform: rotate(0) scale(1) skew(0deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(0deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(0deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(0deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(0deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(0deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(0deg);
    }
}

.speciality-section{
    background-color: white;
    padding: 50px 0px;
}
.speciality-section .section-header h2{
    color: #353742;
    text-align: left;
    font-size: 47px;
    font-weight: 900;
    font-style: normal;
    line-height: 48px;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 15px;
}
.speciality-section .section-header h2 span{
    color: #4599de;
}
.speciality-section .section-header p{
    line-height: 30px;
    font-size: 18px;
    text-shadow: none;
    margin: 13px 0;
    font-weight: 500;
    color: #898f92;
}
.speciality-section .speciality-card{
    padding: 50px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}
.speciality-section .speciality-card h3{
    color: #333;
    font-weight: 800;
    font-size: 21px;
    line-height: 23px;
    display: block;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 6px;
    text-transform: uppercase;
}
.speciality-section .speciality-card p{
    color: #898f92;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
    text-transform: none;
    font-weight: 500;
}
.speciality-section .speciality-card a{
    text-decoration: none;
    font-size: 17px;
    line-height: 25px;
    color: #2d6aaf;
    font-weight: 500;
}
.speciality-section .speciality-card:hover{
    background-color: #063c73;
}
.speciality-section .speciality-card:hover .speciality-image img{
    position: relative;
    opacity: 0;
}
.speciality-section .speciality-card:hover .speciality-image.cataract{
    background: url(../images/services/cataract-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.glaucoma{
    background: url(../images/services/glaucoma-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.lasik{
    background: url(../images/services/lasik-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.diabetic-retinopathy{
    background: url(../images/services/diabetic-retinopathy-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.refractive-errors{
    background: url(../images/services/refractive-errors-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.pediatric-opthalmology{
    background: url(../images/services/pediatric-opthalmology-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.contact-lens{
    background: url(../images/services/contact-lens-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.uveitis{
    background: url(../images/services/uveitis-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.vision-rehabilitation{
    background: url(../images/services/vision-rehabilitation-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.myopia{
    background: url(../images/services/myopia-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.hyperopia{
    background: url(../images/services/hyperopia-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover .speciality-image.binocular{
    background: url(../images/services/binocular-white.png) no-repeat;
    position: relative;
}
.speciality-section .speciality-card:hover h3, .speciality-section .speciality-card:hover p, .speciality-section .speciality-card:hover a{
    color: white;
}

.cta-section2{
    background-image: url(../images/cta-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px;
}
.cta-section2 .emergency, .cta-section2 .content, .cta-section2 .button{
    padding: 15px;
}
.cta-section2 .emergency{
    display: flex;
}
.cta-section2 .emergency img{
    margin-right: 10px;
}
.cta-section2 .emergency h3{
    color: #fff;
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
}
.cta-section2 .emergency a{
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    font-weight: 900;
    line-height: 30px;
}
.cta-section2 .content p{
    color: #fff;
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
    margin: 0;
}

.team-section{
    background-color: white;
    padding: 50px 0px;
}
.team-section .team-content{
    padding: 40px 50px;
}
.team-section .team-content h2{
    color: #353742;
    text-align: left;
    font-size: 47px;
    font-weight: 900;
    font-style: normal;
    line-height: 48px;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 35px;
}
.team-section .team-content h2 span{
    color: #4599de;
}
.team-section .team-content p{
    line-height: 30px;
    font-size: 18px;
    text-shadow: none;
    text-align: justify;
    font-weight: 500;
    color: #898f92;
    margin-bottom: 35px;
}
.team-section .doctor-card{
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #fff;
    padding: 37px 0 24px 0;
    background: #fff;
    text-align: center;
    min-height: 147px;
    box-shadow: 0 10px 15px rgb(0 0 0 / 7%);
}
.team-section .doctor-card img{
    margin-bottom: 18px;
}
.team-section .doctor-card a{
    text-decoration: none;
    color: #4599de;
    margin: 0 0 0 0;
    font-size: 21px;
    font-weight: 700;
    padding-bottom: 8px;
}
.team-section .doctor-card p{
    margin: 0;
    font-size: 16px;
    color: #222;
    font-weight: normal;
    line-height: 19px;
    padding: 0 29px;
}

.counter-section{
    background-image: url(../images/counter-bg.jpg);
    background-position: center;
    background-size: 100%;
    background-size: cover;
    padding: 55px 0;
}
.counter-section p{
    text-align: center;
    color: #fff;
    font-size: 50px;
    line-height: 1em;
    font-weight: 800;
    position: relative;
}
.counter-section p:after{
    content: "";
    position: absolute;
    height: 5px;
    width: 100px;
    background: #fff;
    left: 33%;
    bottom: -22px;
}
.counter-section h3{
    text-align: center;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    margin-top: 50px;
    padding: 0 62px;
    line-height: 27px;
}

.testimonial-section2{
    background-color: white;
    padding: 50px 0px;
}
.testimonial-section2 .section-header h2{
    color: #353742;
    text-align: left;
    font-size: 47px;
    font-weight: 900;
    font-style: normal;
    line-height: 48px;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 15px;
}
.testimonial-section2 .section-header h2 span{
    color: #4599de;
}
.testimonial-section2 .section-header p{
    line-height: 30px;
    font-size: 18px;
    text-shadow: none;
    margin: 13px 0;
    font-weight: 500;
    color: #898f92;
}
.testimonial-section2 .section-body{
    padding: 0px 50px; 
}
.testimonial-section2 .card-wrapper{
    background-image: url(../images/testimony-card-bg.png);
    background-position: center;
    background-size: 100%;
    background-size: cover;
    border-radius: 10px;
    padding: 15px 50px;
}
.testimonial-section2 .testimnoy-card{
    padding: 25px;
}
.testimonial-section2 .testimnoy-card p{
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    line-height: 28px;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0px;
    margin: 11px 0 14px;
    padding: 38px 54px 53px 27px;
    text-align: left;
    position: relative;
}
.testimonial-section2 .testimnoy-card .testimony-info{
    display: flex;
    justify-content: space-between;
}
.testimonial-section2 .testimnoy-card .ratings ul, .testimonial-section2 .testimnoy-card .ratings ul li{
    display: inline-block;
}
.testimonial-section2 .testimnoy-card .ratings ul li i{
    color: rgb(236, 236, 7);
    font-size: 25px;
}
.testimonial-section2 .testimnoy-card .author p.name{
    text-align: right;
    color: #fff;
    padding: 0;
    padding-bottom: 6px;
    padding-right: 10px;
    margin: 0;
}
.testimonial-section2 .testimnoy-card .author p.role{
    text-align: right;
    color: #fff;
    font-size: 13px;
    padding: 0;
    padding-right: 10px;
    margin: 0;
}
.testimonial-section2 .section-body .logos{
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
}

.cta-section{
    padding: 50px 0px 0px 0px;
}
.cta-section .cta-logo{
    position: relative;
    margin-top: 65px;
    width: 100%;
    max-width: 1215px;
}
.cta-section .cta-logo .cta-image{
    position: absolute;
    z-index: 9;
    left: 62.5%;
    top: -100px;
}
.cta-section .cta-wrapper{
    display: flex;
}
.cta-section .cta-left{
    margin-right: 13px;
    width: 49.5%;
    margin-bottom: 0px;
}
.cta-section .cta-right{
    width: 49.5%;
    margin-bottom: 0px;
}
.cta-section .cta-left .background-image{
    background-image: url(../images/footer-top-left.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
.cta-section .cta-right .background-image{
    background-image: url(../images/footer-top-right.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
.cta-section .cta-content{
    text-align: center;
    padding: 117px 0;
}
.cta-section .cta-content h2{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    line-height: 34px;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 25px;
}
.btn.btn-appointment2{
    position: relative;
    display: inline-block;
    padding-left: 30px;
    padding-right: 10px;
    background-color: #353742;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 40px;
    -webkit-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
    text-shadow: none;
}
.btn.btn-appointment2 i{
    margin-left: 10px;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    font-size: 16px;
    color: #353742;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.btn.btn-appointment2:hover i{
    color: #fff;
    background: #2d6aaf;
}
.btn.btn-appointment2.mobile{
    display: none;
}

.main-footer{
    background: #353742;
    position: relative;
    padding: 80px 0 25px 75px;
}
.main-footer p{
    color: #a5a7b3;
    font-size: 16px;
    line-height: 34px;
    font-weight: 500;
    margin: 0;
    padding-top: 34px;
    padding-bottom: 34px;
}
.main-footer .social-icons ul{
    margin-bottom: 25px;
}
.main-footer .social-icons ul, .main-footer .social-icons ul li{
    display: inline-block;
}
.main-footer .social-icons ul li{
    margin-right: 15px;
}
.main-footer .social-icons ul li a{
    position: relative;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: all .2s linear;
    transition-delay: .1s;
    line-height: 18px;
}
.main-footer .social-icons ul li a i{
    font-size: 25px;
}
.main-footer .link-list{
    padding: 0px 30px;
}
.main-footer .link-list h4, .main-footer .link-contact h4{
    color: #fff;
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 42px;
}
.main-footer .link-list ul li{
    margin-bottom: 15px;
}
.main-footer .link-list ul li a{
    text-decoration: none;
    position: relative;
    color: #a5a7b3;
    font-size: 16px;
    font-weight: 500;
    transition: all .2s linear;
    transition-delay: .1s;
    line-height: 18px;
}
.main-footer .link-list ul li a:hover, .main-footer .link-contact li a:hover, .main-footer p.copyright a:hover{
    color: #fff;
}
.main-footer .link-contact li{
    position: relative;
    display: block;
    padding-left: 30px !important;
    border-bottom: 1px solid #4a4b55;
    padding-bottom: 17px;
    margin-bottom: 17px;
}
.main-footer .link-contact li a{
    text-decoration: none;
    position: relative;
    color: #a5a7b3;
    font-size: 16px;
    font-weight: 500;
    transition: all .2s linear;
    transition-delay: .1s;
    line-height: 18px;
}
.main-footer .link-contact li a i{
    color: #4599de;
    margin-right: 5px;
}
.main-footer p.copyright, .main-footer p.copyright a{
    text-decoration: none;
    color: #a5a7b3;
    font-size: 16px;
    font-weight: 500;
    transition: all .2s linear;
    transition-delay: .1s;
}
.main-footer hr{
    color: white;
}

.inner-hero.about{
    background-image: url(../images/banners/about-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.about .inner-content{
    padding: 25px;
}
.inner-hero.about .inner-content h1{
    color: #353742;
    font-size: 35px;
    font-weight: 900;
    line-height: 46px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.inner-hero.about .inner-content p{
    line-height: 24px;
    font-size: 16px;
    text-shadow: none;
    font-weight: normal;
    margin-bottom: 55px;
}

.about-team{
    padding: 50px 0px;
    background-color: #f4f5f7 !important;
}
.about-team h2{
    color: #353742;
    font-size: 47px;
    font-weight: 900;
    font-style: normal;
    line-height: 48px;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 25px;
}
.about-team h2 span{
    color: #4599de;
}
.about-team p{
    line-height: 30px;
    font-size: 18px;
    text-shadow: none;
    margin: 13px 0;
    font-weight: 500;
    color: #898f92;
}
.about-team-card{
    padding: 25px 15px;
}
.about-team-card h3{
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    color: #42464e;
    padding-bottom: 0;
}
.about-team-card p.qualification{
    color: #4599de;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.about-team-card p.about{
    margin-top: 8px;
    padding-top: 13px;
    border-top: 1px solid #ebebe9;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #42464e;
}

.inner-hero.team{
    background-image: url(../images/banners/team-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.team .inner-content{
    padding: 25px;
}
.inner-hero.team .inner-content h1{
    color: #353742;
    font-size: 35px;
    font-weight: 900;
    line-height: 46px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.doctor-section{
    padding: 50px 0px;
}
.doctor-section img{
    border-radius: 50%;
}
.doctor-details{
    padding: 50px 0px;
}
.doctor-details h2{
    color: #353742;
    text-align: left;
    font-size: 32px;
    font-weight: 900;
    line-height: 40px;
    position: relative;
}
.doctor-details h2:after{
    content: "";
    position: absolute;
    background: #4aafe4;
    width: 65px;
    height: 5px;
    top: 20px;
    left: 18%;
}

.inner-hero.services{
    background-image: url(../images/banners/services-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.services .inner-content{
    padding: 25px;
}
.inner-hero.services .inner-content h1{
    color: #353742;
    font-size: 35px;
    font-weight: 900;
    line-height: 46px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.inner-hero.cataract{
    background-image: url(../images/banners/cataract-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.glaucoma{
    background-image: url(../images/banners/glaucoma-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.lasik{
    background-image: url(../images/banners/lasik-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.retina{
    background-image: url(../images/banners/retina-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.laser-surgery{
    background-image: url(../images/banners/laser-surgery-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.cryosurgery{
    background-image: url(../images/banners/cryosurgery-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.diabetic-retinopathy{
    background-image: url(../images/banners/diabetic-retinopathy-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.retinal-detachment{
    background-image: url(../images/banners/retinal-detachment-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.vitrectomy-surgery{
    background-image: url(../images/banners/vitrectomy-surgery-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.contact-lens{
    background-image: url(../images/banners/contact-lens-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.pediatric-ophthalmology{
    background-image: url(../images/banners/pediatric-ophthalmology-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.uveitis{
    background-image: url(../images/banners/uveitis-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.vision-rehab{
    background-image: url(../images/banners/vision-rehab-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.refractive-errors{
    background-image: url(../images/banners/refractive-errors-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.myopia{
    background-image: url(../images/banners/myopia-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.hyperopia{
    background-image: url(../images/banners/hyperopia-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.binocular{
    background-image: url(../images/banners/binocular-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.aesthetic-surgery{
    background-image: url(../images/banners/aesthetic-surgery-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.blogs{
    background-image: url(../images/banners/blogs-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero.contact{
    background-image: url(../images/banners/contact-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}
.inner-hero .inner-content{
    padding: 25px;
}
.inner-hero .inner-content h1{
    color: #353742;
    font-size: 35px;
    font-weight: 900;
    line-height: 46px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.inner-hero .inner-content p{
    color: #353742;
    font-size: 23px;
    font-weight: 900;
    line-height: 46px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.inner-hero .inner-content ul li{
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 7px;
    list-style-type: none;
    position: relative;
    padding-left: 15px;
}
.inner-hero .inner-content ul li i{
    color: #4599de;
    margin-right: 10px;
}
.inner-hero .inner-content h1 span.one{
    font-size: 45px;
    color: #273a89;
}
.inner-hero .inner-content h1 span.two{
    font-size: 45px;
    color: #4599de;
}
.treatment-section{
    background-color: #f4f5f7 !important;
    padding: 50px 0px;
}
.treatment-section h2{
    color: #353742;
    text-align: center;
    font-size: 47px;
    font-weight: 900;
    font-style: normal;
    line-height: 48px;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 20px;
}
.treatment-section h4{
    text-align: center;
    font-size: 21px;
    line-height: 28px;
    text-decoration: none;
    font-weight: 800;
    padding: 10px 0 17px;
    text-transform: uppercase;
    margin-top: 15px;
}
.treatment-section p{
    line-height: 30px;
    font-size: 18px;
    text-shadow: none;
    margin: 13px 0;
    font-weight: 500;
    color: #898f92;
    text-align: center;
    margin-bottom: 25px;
}

.service-details{
    padding: 50px 0px;
}
.service-details h2{
    color: #4599de;
    text-align: left;
    font-size: 29px;
    font-weight: 900;
    font-style: normal;
    line-height: 25px;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 0;
    padding-left: 0px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.service-details .services-side ul li{
    font-weight: 600;
    position: relative;
    cursor: pointer;
    width: 100%;
    display: flex;
    margin-bottom: 10px;
}
.service-details .services-side ul li a{
    padding: 12px 18px;
    font-size: 20px;
    line-height: 24px;
    border-radius: 100px;
    border: 1px solid #ccc;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    color: #353742 ! IMPORTANT;
    width: 100%;
}
.service-details h3{
    color: #353742;
    text-align: left;
    font-size: 29px;
    font-weight: 900;
    font-style: normal;
    line-height: 38px;
    text-decoration: none;
    text-transform: none;
    padding-bottom: 18px;
    position: relative;
    margin-bottom: 20px;
}
.service-details h3:before, .service-details h4:before{
    content: "";
    position: absolute;
    width: 100px;
    height: 5px;
    background: #4599de;
    bottom: 0;
}
.service-details p{
    line-height: 25px;
    font-size: 16px;
    text-shadow: none;
    margin: 13px 0;
    font-weight: 400;
    padding-bottom: 0.5em;
    position: relative;
}
.service-details h4{
    color: #353742;
    text-align: left;
    font-size: 22px;
    font-weight: 900;
    font-style: normal;
    line-height: 38px;
    text-decoration: none;
    text-transform: none;
    padding-bottom: 18px;
    position: relative;
    margin-bottom: 20px;
}
.service-details .data-contents ul li{
    line-height: 28px;
    font-size: 16px;
    text-shadow: none;
    font-weight: 400;
    list-style-type: none;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
}
.service-details .data-contents ul li:before{
    content: "";
    position: absolute;
    width: 34px;
    height: 17px;
    background: url(../images/small-eye.png) no-repeat;
    left: 0;
    top: 7px;
    margin-right: 5px;
}
.service-details .data-contents ul.inner{
    display: flex;
    justify-content: space-between;
}
.service-details .table-contents ul li{
    font-weight: 500;
    list-style-type: none;
    margin: 10px 0;
}
.service-details .table-contents ul li a{
    color: #222222;
    font-size: 20px;
    padding-left: 30px;
    text-decoration: none;
    position: relative;
    line-height: 28px;
}
.service-details .table-contents ul li a i{
    color: #4599de;
    margin-right: 10px;
}

.contact-section{
    padding: 50px 0px;
}
.contact-section .contact-wrapper, .contact-section .form-wrapper{
    padding: 25px;
}
.contact-section h2{
    color: #353742;
    font-size: 47px;
    font-weight: 900;
    font-style: normal;
    line-height: 48px;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 25px;
}
.contact-section h2 span{
    color: #4599de;
    font-weight: 900;
}
.contact-section .contact-wrapper .contact-list{
    margin-bottom: 22px;
    border-bottom: 1.5px dashed #d9d4d4;
    padding-bottom: 30px;
    display: flex;
}
.contact-section .contact-wrapper .contact-list{
    font-size: 20px;
    line-height: 31px;
    font-weight: 400;
    color: #666;
}
.contact-section .contact-wrapper .contact-list .contact-icon{
    font-size: 25px;
    padding: 20px 13px;
    color: #fff;
    background: #4599de;
    text-align: center;
    border-radius: 50%;
    width: 12%;
    margin-right: 15px;
}
.contact-section .contact-wrapper .contact-list a{
    color: #666;
    text-decoration: none;
}
.contact-section .contact-wrapper .contact-list span{
    margin-top: 15px;
}
.form-wrapper .form-control{
    width: 100%;
    padding: 27px;
    border-width: 0;
    border-radius: 10px;
    color: black;
    background-color: #e6e9f7;
    font-size: 15px;
    font-weight: 500;
}
.btn.btn-submit{
    background-color: #4599de;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 40px;
    border: 0;
    padding: 22px 54px
}
.btn.btn-submit:hover{
    background-color: black;
}

.blogs-section{
    padding: 50px 0px;
}
.blogs-section .blog-card{
    padding: 50px;
}
.blogs-section .blog-card a{
    text-decoration: none;
}
.blogs-section .blog-card a h2{
    color: #4599de;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
}
.blogs-section .blog-card a p{
    color: black;
    font-size: 18px;
    font-weight: 400;
}

.thank-section{
    padding: 50px 0px;
}
.thank-section .thank-content{
    padding: 50px 25px;
}
.thank-section .thank-content h1{
    font-size: 55px;
    color: #273a89;
    font-weight: 900;
    line-height: 65px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.thank-section .thank-content h2{
    color: #4599de;
    font-size: 35px;
    font-weight: 900;
    line-height: 45px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.thank-section .thank-content h3{
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 15px;
    list-style-type: none;
}
.thank-section .thank-content p{
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    text-decoration: none;
    list-style-type: none;
}
.thank-section .thank-content p a{
    text-decoration: none;
    color: crimson;
}

@media only screen and (max-width: 1425px) {
    .cta-section .cta-logo .cta-image {
        left: 45%;
        top: -120px;
    }
    .inner-hero.services .inner-content h1 {
        margin-bottom: 30px;
    }
    .inner-hero .inner-content p {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 25px;
    }
}
@media only screen and (max-width: 1365px) {
    .topbar .cta-card-one p a {
        font-size: 20px;
        line-height: 30px;
    }
    .topbar .cta-card-one p {
        font-size: 15px;
        line-height: 20px;
    }
    .topbar .cta-card-two p {
        font-size: 15px;
        line-height: 20px;
    }
    .cta-section2 .emergency, .cta-section2 .content, .cta-section2 .button {
        padding: 10px;
    }
    .cta-section2 .emergency h3 {
        font-size: 25px;
        line-height: 33px;
    }
    .cta-section2 .emergency a {
        font-size: 27px;
    }
    .team-section .doctor-card p {
        font-size: 14px;
    }
    .testimonial-section2 .testimnoy-card p{
        padding: 25px;
    }
    .testimonial-section2 .section-body .logos {
        padding: 15px 30px;
    }
    .cta-section .cta-logo .cta-image {
        left: 42%;
    }
    .contact-section .contact-wrapper .contact-list {
        font-size: 18px;
        line-height: 25px;
    }
    .form-wrapper .form-control {
        padding: 20px;
    }
    .contact-section h2 {
        margin-bottom: 30px;
    }
    .contact-section .contact-wrapper .contact-list .contact-icon{
        height: 63px;
    }
    .thank-section .thank-content{
        padding: 15px;
    }
}
@media only screen and (max-width: 1280px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        line-height: 25px;
    }
    .testimonial-section .testimonial-wrapper {
        margin-bottom: 25px;
    }
    .cta-section .cta-logo .cta-image {
        left: 43%;
        top: -70px;
    }
    .cta-section .cta-logo .cta-image img {
        width: 220px;
    }
}
@media only screen and (max-width: 1024px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        line-height: 25px;
    }
    .topbar .cta-card-one p a {
        font-size: 16px;
        line-height: 25px;
    }
    .topbar .cta-card-one p {
        font-size: 14px;
        line-height: 20px;
    }
    .topbar .cta-card-two p {
        font-size: 12px;
        line-height: 18px;
    }
    .about-section .about-content p {
        line-height: 20px;
        font-size: 15px;
    }
    .testimony-slide {
        padding: 10px;
    }
    .btn.btn-call {
        padding: 3px 10px;
        font-size: 18px;
        margin-left: 15px;
    }
    .btn.btn-appointment {
        padding-left: 20px;
        padding-right: 5px;
        line-height: 25px;
    }
    .speciality-section .speciality-card {
        padding: 20px;
    }
    .cta-section2 .emergency h3 {
        font-size: 18px;
        line-height: 25px;
    }
    .cta-section2 .emergency a {
        font-size: 22px;
    }
    .cta-section2 .content p {
        font-size: 14px;
        line-height: 24px;
    }
    .team-section .doctor-card a {
        font-size: 22px;
    }
    .about-section .about-content h2, .speciality-section .section-header h2, .team-section .team-content h2 {
        font-size: 40px;
        line-height: 45px;
    }
    .team-section .doctor-card p{
        font-size: 12px;
    }
    .team-section .team-content h2, .team-section .team-content p {
        margin-bottom: 20px;
    }
    .testimonial-section2 .testimnoy-card {
        padding: 50px;
    }
    .testimonial-section2 .testimnoy-card .author p.name, .testimonial-section2 .testimnoy-card .author p.role {
        padding-right: 22px;
    }
    .cta-section .cta-logo .cta-image {
        left: 45%;
        top: -35px;
    }
    .cta-section .cta-logo .cta-image img {
        width: 100px;
    }
    .about-team-card {
        padding: 25px 0px;
    }
    .about-team-card p.about {
        margin-top: 5px;
        padding-top: 5px;
        font-size: 14px;
        line-height: 20px;
    }
    .thank-section .thank-content {
        padding: 10px;
    }
    .thank-section .thank-content h1 {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 20px;
    }
    .thank-section .thank-content h2 {
        font-size: 25px;
        line-height: 35px;
    }
}
@media only screen and (max-width: 900px) {
    .btn.btn-top.desktop{
        display: none;
    }  
    .btn.btn-top.mobile{
        display: block;
    } 
    .about-section .about-content p {
        line-height: 25px;
        font-size: 18px;
    }
    .speciality-section .speciality-card {
        padding: 20px 50px;
        text-align: center;
    }
    .team-section .doctor-card p {
        font-size: 16px;
    }
    .cta-section .cta-logo .cta-image {
        left: 38%;
        top: -100px;
    }
    .cta-section .cta-logo .cta-image img {
        width: 180px;
    }
    .cta-section .cta-content h2 {
        font-size: 27px;
        line-height: 33px;
    }
    .about-team-card {
        padding: 25px;
    }
    .about-team-card h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .about-team-card p.qualification {
        font-size: 22px;
        line-height: 30px;
    }
    .about-team-card p.about {
        font-size: 18px;
        line-height: 22px;
    }
    .contact-section .contact-wrapper .contact-list .contact-icon{
        height: auto;
    }
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 600px) {
    .topbar {
        padding: 5px 0px 0px 0px;
    }
    .topbar .cta-card-one, .topbar .cta-card-two{
        display: none;
    }
    .testimonial-section .testimonial-wrapper {
        padding: 15px;
    }
    .testimony-slide .testimony p {
        line-height: 20px;
        font-size: 14px;
        padding-left: 0px;
    }
    .about-section .about-buttons{
        flex-direction: column;
    }
    .about-section .about-buttons a{
        margin-bottom: 15px;
    }
    .speciality-section .speciality-card {
        padding: 25px;
        text-align: center;
    }
    .speciality-section .section-header{
        padding: 25px;
    }
    .team-section .team-content {
        padding: 40px 20px;
    }
    .testimonial-section2 .section-body {
        padding: 0px 10px;
    }
    .testimonial-section2 .card-wrapper {
        padding: 15px;
        height: 390px;
    }
    .testimonial-section2 .testimnoy-card {
        padding: 0px;
    }
    .testimonial-section2 .testimnoy-card p {
        font-size: 15px;
        line-height: 22px;
        padding: 25px;
    }
    .testimonial-section2 .testimnoy-card .ratings ul li i {
        font-size: 15px;
    }
    .testimonial-section2 .testimnoy-card .testimony-info{
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .testimonial-section2 .testimnoy-card .author p.name, .testimonial-section2 .testimnoy-card .author p.role{
        text-align: center;
    }
    .testimonial-section2 .section-body .logos, .cta-section .cta-wrapper{
        flex-direction: column;
    }
    .cta-section .cta-logo .cta-image {
        display: none;
    }
    .cta-section .cta-left, .cta-section .cta-right {
        width: 99%;
    }
    .main-footer {
        padding: 50px 0 15px 15px;
    }
    .main-footer .link-list, .main-footer .link-contact {
        padding: 0px 15px;
    }
    .main-footer p.copyright, .main-footer p.copyright a {
        font-size: 12px;
    }
    .about-team h2 {
        font-size: 35px;
        line-height: 40px;
    }
    .about-team-card h3 {
        font-size: 25px;
        line-height: 35px;
    }
    .about-team-card p.qualification {
        font-size: 18px;
        line-height: 25px;
    }
    .about-team-card p.about {
        font-size: 16px;
        line-height: 20px;
    }
    .blogs-section .blog-card {
        padding: 20px;
    }
    .contact-section h2 {
        font-size: 33px;
        line-height: 40px;
    }
    .contact-section .contact-wrapper .contact-list .contact-icon {
        height: auto;
        width: auto;
    }
    .service-details .data-contents ul.inner {
        flex-direction: column;
    }
    .service-details .table-contents ul li a {
        font-size: 16px;
        padding-left: 10px;
        line-height: 20px;
    }
    .service-details h3, .service-details h4 {
        font-size: 22px;
        line-height: 27px;
    }
    .service-details p {
        text-align: justify;
    }
}
@media only screen and (max-width: 400px) {
    
}
@media only screen and (max-width: 320px) {
    
}
