@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
p{
    font-size: 14px;
    /* font-weight: 500; */
}

.t {
    color: white;
}

.h1, h1{
    color:#fdb813
}


.tt {
    color: white;
}


li {
    list-style-type: none;
}
a {
    text-decoration: none;
}
section {
    padding: 80px 0;
    overflow: hidden;
    background: #fff;
    position: relative;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-24 {
    font-size: 24px;
}
.fs-30 {
    font-size: 30px;
}
.fs-34 {
    font-size: 34px;
}
.bg-primary {
    background-color: #ef8233 !important;
}
.bg-grey {
    background-color: #fcf1ef !important;
}
.bg-dark {
    background-color: #292a2d !important;
}
.bg-secondary {
    background-color: #243254 !important;
}
.text-primary {
    color: #fdb813 !important;
}
.text-secondary {
    color: #243254 !important;
}
.mt-80 {
    margin-top: 80px;
}

/* Header */

nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    height: 80px;
    background-color: #243254;
    padding: 0 5%;

}
nav .logo { 
    float: left;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #fff;
}
nav .links {
    float: right;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
nav .links li {
    list-style: none;
}
nav .links a {
    display: block;
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
    color: #fdb813;
    text-decoration: none;
    position: relative;
}
nav .links a:hover {
    color: white;
}
nav .links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}
nav .links a:hover::before {
    visibility: visible;
    transform: scaleX(1);
    color: white;
}
#nav-toggle {
     position: absolute;
     top: -100px;
}
nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}
nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}

.footer-wrapper h5.text-white.fw-bold {
    color: #fdb813!important;
}

h5.e.fw-bold {
    color: #fdb813 !important;
}

@media screen and (max-width: 768px) {
    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }
    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 80px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(0, 0, 0, .8);
        overflow: hidden;
        transition: all .5s ease-in-out;
    }
    nav .links a {
        font-size: 20px;
    }
    nav :checked ~ .links {
        bottom: 0;
    }
    nav .icon-burger {
        display: block;
    }
    nav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
}


/* Header */

.breadcrumbs-wrapper {
    margin-top: 80px;
}

.services-icon-title i{
    font-size: 50px;
}
.butn {
    padding: 9px 30px;
    line-height: normal;
    background-color: #fff;
    color: #fdb813;
    border: 2px solid #fdb813;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
    z-index: 9999;
    letter-spacing: 1px;
    transition: all 0.4s ease-in-out 0s;
}
.butn:hover {
    background: #fdb813;
    box-shadow: 5px 4px 13px 0 rgb(177 135 69 / 25%);
    color: #fff;
    border:2px solid;
}

.scroll-to-top {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 50px;
    right: 35px;
    display: none;
    border-radius: 50%;
    background: #d5a353;
    border: 1px solid #d5a353;
    width: 35px;
    height: 35px;
    line-height: 30px;
    z-index: 9999;
    outline: 0;
}

.scroll-to-top i {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

.scroll-to-top:hover {
    background: #fff;
}

.scroll-to-top:hover i {
    color: #b18745;
}

.footer-shift {
    padding-left: 70px;
}

.contact-icon {
    font-size: 18px;
}

.social-icon {
    font-size: 20px;
}

.footer-list p.text-white {
    position: relative;
}

.footer-list i {
    position: absolute;
    left: -27px;
}

.contact-footer {
    padding-left: 27px;
}

/* index */
.service-descr p.text-center {
    font-size: 16px;
    font-weight: 600;
}

.card_decor {
    border: none;
    border-top: 1px solid #f8f8f8;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.card_decor:hover{
    transform: translateY(-10px);
    box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
}

section.speciality {
    background: #ebd8ca;
}

.mar-fa{
    margin-left:10px;
}

.butn:hover .mar-fa{
    margin-left:20px;
    transition: all 0.3s;
}

.treatment-card h3{
    font-size: 20px;
}

.expertise .card{
    min-height: 380px;
    border:none;
    border-top: 1px solid #f8f8f8;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-view{
    position: absolute;
    bottom: 10px;
    z-index: 1;
}

.expertise .card:hover {
    background-color: #ebd8ca;
    transform: translateY(-10px);
    box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
}

.bg-light-orange{
    background: #ffeec4;
}

.bg-ter {
    background-color: #fdb813;
}

ul.list-circle li {
    list-style: disc;
}

.doc-cover {
    padding: 10px;
    background: #ebd8ca;
    border-radius: 5px;
}

nav .links .active a::before {
    visibility: visible;
    transform: scaleX(1);
    color: white;
}

.copyright i {
    padding: 10px;
    width: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    /* background: #ebd8ca; */
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

.copyright i:hover{
    background: #fff;
}

.expertise .know-card{
    min-height: 500px;
}

.btn-pos{
    left:20px;
    right:20px;
}
/* Our Director */

.doctor-info p {
    font-size: 18px;
}

.doctor-info p {
    font-size: 14px;
    font-weight: 500;
}

/* Awards & Honours */
.awards{
    padding-right: 30px;
}

.awards li {
    list-style: disc;
}
/* .awards li p{
    font-size: 19px;
} */
.awards li p{
    font-size: 16px;
}

/* Know your Eye */

.read-more:hover {
    color: #ef8233;
}

.height{
    height:78px;
}

.know-expertise h3 {
    font-size: 22px;
}
/* Gallery */

.img-container {
    width: 100vw;
    height: 60vh;
    background-color: lightblue;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    }
  .img-container img {
    width: 600px;
    height: 450px;
    background-color: #87A0E2;
    border-radius: 16px;
    position: absolute;
    user-select: none;
    transition-property: transform, opacity, zIndex, ; 
    transition-duration: 0.3s; 
    transition-timing-function: ease-out; 
    }
  .arrows {
    width: 900px;
    height: auto;
    display: flex;
    justify-content: space-between;
    z-index: 100;
    }
  .arrows svg {
    width: 60px;
    height: 60px;
    position: relative;
    fill: white;
    opacity: 0.8;
    cursor: pointer;
    }
  
  .arrows svg:active {
    transform: scale(0.9);
    opacity: 1;
    transition-property: transform, opacity; 
    transition-duration: 0.3s; 
    transition-timing-function: ease-out; 
    }


    .happy-patient video {
        border: 3px solid #ef8233;
        width: 100%;
        max-height:350px;
        background-color: #243254;
        border-radius: 20px;
    }
    
    .test_item img {
        width: 100%;
    }

    .feedback-form-btn {
        position: fixed;
        right: -59px;
        color: #fff;
        transform: rotate(90deg);
        top: 40%;
        padding: 6px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        background-color: #40c351;
        min-width: 150px;
        text-align: center;
        z-index: 5;
        border: 1px solid #fff;
    }

    .feedback-form-btn.btn_call {
        top: calc(40% + 150px);
        /* background-color: #40c351; */
        background-color: #243254;
    }
  /* Blog */


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

.blog {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.blog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    flex-wrap: wrap;
}

.blog-box {
    background-color: #fff;
    border: 1px solid #ececec;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.blog-img {
    width: 100%;
    height: auto;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.blog-text span {
    cursor: pointer;
    font-weight: 300;
    color: #243254;
    font-size: 15px;
}

.blog-text .blog-title {
    font-size: 20px;
    font-weight: 500;
    color: #272727;
}

.blog-text .blog-title:hover {
    color: #ef8233;
    transition: all ease 0.3s;
}

.blog-text p {
    color: #9b9b9b;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0px;
}

.blog-text a {
    color: #0f0f0f;
}

.blog-text a:hover {
    color: #ef8233;
    transition: all ease 0.3s;
}

.blog-img img {
    border-radius: 5px 5px 0px 0;
}

a.readmore {
    width: 150px;
    padding: 10px;
    text-align: center;
    background: #fdb813;
    border-radius: 20px;
    font-weight: 500;
    color: #fff;
    border: 2px solid #fdb813;
}

a.readmore:hover
{
   color:#fdb813;
   border:2px solid #fdb813;
   background: #fff;
}

.popular-blog {
    padding: 10px;
    /* border: 1px solid; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.about-us {
    margin-top: 10px;
    padding: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.popular-blog li{
    padding-top: 10px;
    border-top: 1px solid #f1f1f1;
}

.about-title h4.mb-3 {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.popular-blog-info {
    margin-left: 8px;
}

.popular-blog-info a {
    color: #fdb813;
}

.popular-blog-info a:hover {
    color: #243254;
    transition: all ease 0.3s;
}

.popular-blog-info p {
    color: #243254;
}

/* Blog Individual */


.blog-bg-img {
    padding: 200px 0px;
}

.popular-blog-info {
    margin-left: 8px;
}

.indi-blog-box {
    background-color: #fefefe;
    box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, .06), 0 0 1.25rem rgba(30, 34, 40, .04);
    border: 0;
    color: inherit;
}

.indi-info {
    margin-left: 25px;
    margin-right: 25px;
}

.like-card {
    background-color: #fefefe;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border: 0;
    color: inherit;
}