/* Google fonts */

/* @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500&family=Roboto+Slab:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: "Heebo";
}

.w-30 {
    width: 30%;
}

.sec_page_body .paginate svg {
    width: 20px !important;
    display: none !important;
}

/* Three dot or line CSS */
.separator {
    margin: 15px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator:before {
    content: "";
    width: 40px;
    height: 2px;
    background: #1c317a;
    margin-right: 10px;
}

.separator:after {
    content: "";
    width: 40px;
    height: 2px;
    background: #1c317a;
    margin-left: 10px;
}

.separator .dot {
    background: #d92726;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin: 4px;
    display: inline-block;
}

.separator .dot:first-child {
    background: #263c80;
}

.separator .dot:last-child {
    background: #263c80;
}

section {
    padding: 3rem 0;
}

@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}

/* ==================================================================
===================================================================== */
.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background: #fff;
}

.disppear {
    animation: younz 1s forwards;
    -webkit-animation: younz 1s forwards;
}

@keyframes younz {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* =================================================================
  :: back to top
==================================================================== */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #337ab8;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 55px;
    height: 55px;
}

#myBtn:hover {
    background-color: #555;
}

/* === Socail Icon === */
ul.social_link {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 10;
    list-style: none;
    padding: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

ul.social_link li.social_item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0px;
    margin: 0px;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
    cursor: pointer;
}

ul.social_link li.social_item:hover a {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}

ul.social_link li.social_item a {
    text-decoration: none;
    color: #eee;
}

ul.social_link li.facebook {
    background: #4267b2;
}

ul.social_link li.twitter {
    background: #1da1f2;
}

ul.social_link li.instagram {
    background: #833ab4;
}

ul.social_link li.viber {
    background: #7360f2;
}

ul.social_link li.whatsapp {
    background: #128c7e;
}

/* ==================================================================
    :: Top Wrap
===================================================================== */
#top_wrap {
    font-size: 0.75rem;
    position: relative;
    /* z-index: 2; */
    min-height: 30px;
    border-bottom: 1px solid #d2d2d2;
    background-color: #f2f2f2;
}

#top_wrap .top_wrap_info {
    color: #666;
}

#top_wrap .top_wrap_info p {
    margin-bottom: 0px;
    padding-top: 0.5rem;
}

#top_wrap .top_wrap_info p i {
    padding-right: 4px;
    font-weight: 200;
}

#top_wrap .top_wrap_info strong {
    color: #777;
}

#top_wrap .account {
    text-align: right;
}

#top_wrap .account ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    color: #666;
    position: relative;
    cursor: pointer;
}

#top_wrap .account ul li {
    display: inline-block;
    padding: 0.4rem;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

#top_wrap .account ul li:hover {
    color: #337ab8;
}

#top_wrap .account ul li:hover ul {
    display: block;
}

#top_wrap .account ul li span.dropdown-arrow {
    font-size: 0.8rem;
    padding: 0.2rem;
}

#top_wrap .account ul li span.user-icon {
    font-size: 0.9rem;
    padding: 0.2rem;
}

/* === Dropdown === */
#top_wrap .account ul ul {
    position: absolute;
    right: -10px;
    top: 36px;
    background: #f0f0f0;
    /* width: 200px; */
    min-width: 160px;
    text-align: left;
    padding: 20px;
    display: none;
}

#top_wrap .account ul ul li {
    list-style: circle;
    margin-left: 20px;
}

#top_wrap .account ul ul li a {
    text-decoration: none;
    color: #666;
    padding: 0.4rem 0;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

#top_wrap .account ul ul li a:hover {
    color: #337ab8;
}

/* ==== Header ======= */
header {
    padding: 5px 0;
    background: #fff;
}

header .brand_logo img {
    width: 70px;
}

header .top_info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #777;
}

header .top_info .top_info_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 4.4rem;
    font-family: sans-serif;
}

header .top_info .top_info_item .icon {
    padding: 0px;
    font-size: 1.4rem;
    /* margin-right: 8px; */
}

header .top_info .top_info_item .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* color: #bababa; */
    color: #777;
    font-size: 14px;
}

header .top_info .top_info_item .info .title {
    color: rgb(75, 75, 75);
    font-weight: 600;
}

/* Appointment */

header .top_info .top_info_item .appointment button {
    border: 1px solid #337ab8;
    padding: 8px 25px;
    background: #337ab8;
    color: #eee;
}

header .top_info .top_info_item .appointment button a {
    /*background: #3051a0;*/
    color: #eee;
    text-decoration: none;
}

header .top_info .top_info_item .appointment button a:hover {
    color: #fff;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Apply animation to the button */
.animated-button {
    animation: scale 1s infinite;
}

.child-dropdown {
    font-size: 14px !important;
    width: 265px !important;
    text-decoration: none;
    list-style: none;
    text-decoration: none;
}

.h-27 {
    height: 27px;
}

@media only screen and (max-device-width: 480px) {
    .gif-image {
        height: 25px !important;
    }

    header .brand_logo {
        text-align: center;
    }

    #top_wrap .top_wrap_info {
        text-align: center !important;
    }

    #top_wrap .account {
        text-align: center !important;
    }

    header .top_info .top_info_item {
        margin-left: 0px;
    }

    header .top_info .top_info_item .icon {
        padding: 15px;
        font-size: 1.1rem !important;
    }

    header .brand_logo img {
        width: 280px !important;
        margin-top: 0px !important;
    }

    .about_img {
        /* width: 100% !important; */
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .video {
        display: inline !important;
        margin-left: 10px !important;
    }

    .about_des .cat {
        padding: 15px;
    }

    .mo-img-fluid {
        width: 60% !important;
    }
}

@media only screen and (max-device-width: 600px) {
    header .top_info {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .brand_logo {
        text-align: center;
    }
}

/* ====== Nav ======= */

nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #337ab8;
    padding: 0 100px;
    transition: 0.6s;
    /* z-index: 2; */
}

/* Stick Navbar */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

nav .navigation {
    position: relative;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .navigation .menu {
    position: relative;
    display: flex;
    justify-content: flex-start;
    list-style: none;
    user-select: none;
    margin-bottom: 0px;
    padding: 0px;
}

.menu-item>a {
    color: #eee;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 11px 14px;
    transition: 0.3s;
    border-right: 1px solid #626262;
}

.menu-item>a.active {
    background: #626262;
    color: #fff;
}

.menu-item>a:hover {
    background: #626262;
    color: #fff;
}

.menu-item .sub-menu {
    position: absolute;
    background: #3051a0;
    top: 45px;
    line-height: 40px;
    list-style: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
    padding-top: 5px;
    pointer-events: none;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
    transition-property: transform, opacity;
    z-index: 1;
}

.menu-item:hover .sub-menu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
}

.menu-item .sub-menu .sub-item {
    position: relative;
    padding: 1px 0;
    cursor: pointer;
    /* box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2); */
}

.menu-item .sub-menu .sub-item a {
    color: #cfd7e9;
    font-size: 1rem;
    text-decoration: none;
    padding: 15px 30px;
}

.menu-item .sub-menu .sub-item:hover {
    background-color: #4080ef;
    color: #000;
}

.menu-item .sub-menu .sub-item:last-child:hover {
    border-radius: 0 0 8px 8px;
}

/* =======================================================
  Menu Section
========================================================== */
@media (max-width: 1060px) {

    /* Navigation */
    nav {
        padding: 4px;
    }

    nav .navigation .menu {
        position: fixed;
        display: block;
        background: #23252b;
        min-width: 385px;
        height: 100vh;
        top: 0;
        right: -100%;
        padding: 90px 50px;
        overflow-y: auto;
        transition: 0.5s;
        transition-property: right, visibility;
        visibility: hidden;
        z-index: 2;
    }

    nav .navigation .menu.active {
        right: 0;
        visibility: visible;
    }

    .menu-item {
        position: relative;
    }

    .menu-item .sub-menu {
        opacity: 1;
        position: relative;
        top: 0;
        transform: translateX(15px);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        overflow: hidden;
        display: none;
    }

    .menu-item:hover .sub-menu {
        transform: translateX(15px);
    }

    .menu-item .sub-menu .sub-item {
        box-shadow: none;
    }

    .menu-item .sub-menu .sub-item:hover {
        background: none;
    }

    .menu-item .sub-menu .sub-item a:hover {
        color: #4080ef;
        transition: 0.3s;
    }

    .close-btn {
        position: absolute;
        background: url(../images/close.png) no-repeat;
        width: 40px;
        height: 40px;
        background-size: 25px;
        background-position: center;
        top: 0;
        left: 0;
        margin: 25px;
        cursor: pointer;
    }

    .menu-btn {
        background: url(../images/open.png) no-repeat;
        width: 40px;
        height: 40px;
        background-size: 30px;
        background-position: center;
        cursor: pointer;
        display: block;
        position: relative;
        z-index: 1;
    }

    .menu-btn::after {
        content: " Menu ";
        position: absolute;
        left: 30px;
        padding-left: 30px;
        padding-top: 10px;
        display: block;
        color: #cfd7e9;
        font-size: 14px;
    }

    .social__icons {
        display: none;
    }
}

/* === Banner === */
#banner {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #fff;
}

/* Banner Image Fix */
.banner .item {
    /* width: 100%;
    height: 700px; */
    min-height: 330px;
    /* max-height: 800px; */
    /* overflow: hidden; */
    background-position: center center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    display: flex;
    justify-content: center;
    color: #eee;
    position: relative;
    z-index: 1;
}

#banner .item .banner_text {
    color: #eee !important;
}

#banner .item .banner_text .bannder_des {
    color: rgb(204, 201, 201);
    font-size: 0.8rem;
}

#banner .item .banner_text .banner_link {
    margin-top: 2rem;
}

#banner .item .banner_text .banner_link a {
    font-size: 0.8rem;
    text-decoration: none;
    color: #eee;
    font-weight: 300;
    padding: 8px 18px;
    border: 1px solid #eee;
}

#banner .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    left: -4px;
    padding: 0px 8px !important;
    background: hsl(0deg 1% 4% / 22%);
    transform: translateY(-50%);
    padding-bottom: 0px !important;
    font-weight: 200;
    font-size: 16px;
    line-height: 40px;
    color: #b0b0b0;
    width: 50px;
    height: 50px;
    border-radius: 0px;
    -webkit-transform: translateY(-47%);
    -moz-transform: translateY(-47%);
    -ms-transform: translateY(-47%);
    -o-transform: translateY(-47%);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

#banner .owl-carousel .owl-nav button.owl-next:hover {
    background: #337ab8;
    color: #eee;
}

#banner .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    right: -4px;
    padding: 0px 8px !important;
    background: hsl(0deg 1% 4% / 22%);
    transform: translateY(-50%);
    padding-bottom: 0px !important;
    font-size: 16px;
    line-height: 40px;
    color: #b0b0b0;
    width: 50px;
    height: 50px;
    -webkit-transform: translateY(-55%);
    -moz-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    -o-transform: translateY(-55%);
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

#banner .owl-carousel .owl-nav button.owl-prev:hover {
    background: #337ab8;
    color: #eee;
}

#banner .owl-arrow .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.8rem;
}

#banner .owl-dots {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

#banner .owl-dots button.owl-dot.active span {
    background-color: #fff;
    border: 1px solid #eee;
}

#banner .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #a2a2a2;
    display: block;
    -webkit-backface-visibility: visible;
    transition: all 0.2s ease;
    border-radius: 30px;
}

#banner .owl-arrow .owl-nav .owl-prev,
#banner .owl-arrow .owl-nav .owl-next {
    display: inline-block;
    transition: all 0.6s ease-in-out;
    color: #000000;
    padding: 10px;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}

/* =============================================================
  :: Book Appointment
================================================================ */
.book_appointment {
    padding: 30px;
    background: #337ab8;
    color: #f8f8f8;
    font-family: "Barlow Condensed", sans-serif;
    margin-top: -10px;
    position: relative;
    z-index: 1;
}

.book_appointment::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url(../images/bg-eye.jpg) no-repeat left center; */
    background-size: 50%;
    opacity: 0.1;
    z-index: -1;
}

.appointment_info {
    display: flex;
    align-items: center;
    padding: 10px;
    padding-left: 30px;
    /* justify-content: space-between; */
}

.appointment_info h1 {
    font-size: 2rem;
    flex-grow: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment_info .phone-n {
    margin-left: 5rem;
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    letter-spacing: 3px;
    /* font-family: "Poppins", sans-serif; */
    margin-right: 30px;
}

.book_appointment .phone-n h4 {
    font-size: 2.8rem;
    letter-spacing: 3px;
    word-spacing: 6px;
    animation: typing 2s steps(22), blink 0.5s step-end infinite alternate;
}

.book_appointment .phone-n span {
    letter-spacing: 2px;
    word-spacing: 4px;
    font-size: 18px;
    color: #e5e5e5;
    font-weight: 400;
}

@keyframes typing {
    from {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* ====================================================================
    About Section
  ===================================================================== */
#about__section {
    padding: 0rem;
    position: relative;
    /* opacity: 1; */
    background: #fff;
    z-index: 1;
}

#about__section::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url(../images/bg-eye.jpg) no-repeat right center; */
    background-size: contain;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.1;
}

.about_img {
    height: auto;
    /* width: 12%; */
    background: #fff;
    /* box-shadow: 0 2px 10px rgb(0 0 0 / 10%); */
}

.about_img img {
    /* width: 100%; */
    height: 72%;
}

.about_des {
    padding: 7px;
}

.about_des h6 {
    font-style: italic;
    color: #0108f7;
    margin-top: -5px;
    font-weight: 400;
}

.about_des h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.about_des .des {
    line-height: 1.8;
    color: #777;
}

.about_des .cat {
    padding: 15px;
    line-height: 25px;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    text-decoration: none;
    color: #000;
    border: 1px solid #eee;
}

.about_des .cat a {
    text-decoration: none;
}

.about_des .cat a {
    color: #0108f7;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.5s;
    font-style: italic;
    text-decoration: none;
}

.about_des .cat a:hover {
    margin-left: 8px;
}

.read_btn {
    color: #777;
}

.video_btn {
    margin-left: 0px;
    background: #0108f7;
    color: #eee !important;
    border: 1px solid #0108f7;
}

.video_btn .fa-solid {
    margin-left: 6px;
}

.video_btn:hover {
    color: #fff;
}

/*=== Video Section ===*/
.video {
    margin-top: 40px;
    margin-left: 20px;
    display: inline-block;
}

.video-play-button {
    text-decoration: none;
    border: 1px solid #337ab8;
    padding: 10px 35px;
    color: #efefef;
    background: #337ab8;
    /*border-radius: 16px;*/
}

.video-play-button:hover {
    color: #fff;
}

.video-play-button span {
    margin-left: 6px;
}

.video-play-button:hover:after {
    background-color: darken(#fa183d, 10%);
}

.video-play-button img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: auto;
    height: auto;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-overlay {
    /* position: fixed; */
    /* z-index: -6; */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all ease 500ms;
}

.video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
}

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

.video-overlay-close:hover {
    color: #fa183d;
}

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

/* === Message from Chairman === */
#message_from {
    padding: 5rem 0;
    background: rgb(0 0 0 / 70%);
    color: #eee;
    position: relative;
    opacity: 1;
    overflow: hidden;
}

#message_from::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background: url(../images/bg.JPG) no-repeat center center; */
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: -1;
}

#message_from .message_from_img img {
    object-fit: cover;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgb(6 80 251 / 64%);
    border: 6px solid #eee;
}

.message_from_detail {
    text-align: left;
    margin-left: 30px;
    font-style: italic;
}

.message_from_detail h3.name {
    color: #fff;
    margin: 0;
    padding: 0;
}

.message_from_detail .position {
    color: #b1b1b1;
    /* font-style: italic; */
    font-size: 0.8rem;
}

.message_from_detail .des {
    color: #afafaf;
    line-height: 25px;
    font-style: normal;
    font-weight: normal;
    font-weight: 300;
    margin-bottom: 20px;
}

.message_from_cat {
    border: 1px solid #eee;
    background: transparent;
    color: #fff;
    font-size: 0.86rem;
    transition: 0.5s;
    background-color: transparent;
    padding: 6px 20px;
    margin-top: 50px;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.message_from_cat:hover {
    /* margin-left: 8px; */
    background: #fff;
    border: 1px solid #fff;
    color: #000;
}

/* Modal  */
#message_from .modal {
    color: #000;
    font-family: sans-serif;
}

.message_from_popup {
    color: #333;
    font-size: 15px;
}

.message_from_popup .left_box {
    text-align: center;
}

.message_from_popup .right_box .message_from_position {
    color: #0d6efd;
    font-size: 0.85rem;
}

.message_popup .right_box p {
    font-family: sans-serif !important;
    font-size: 16px !important;
}

/* === Services ===== */

#services {
    background: #d5e8f6;
    color: #777;
    padding-bottom: 2rem;
}

#services h1 {
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    color: #000;
}

#services h1 span {
    color: #000;
}

.service {
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    /* border: 1px solid rgb(59, 59, 59); */
    background: #ffffffde;
    margin: 15px;
}

.service .service_item {
    padding: 3rem 2rem;
    /* min-height: 380px; */
}

.service .imgBox {
    font-size: 2rem;
    max-width: 100px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.2rem;
}

.service .imgBox img {
    width: 100%;
}

.service h2 {
    position: relative;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 18px;
    color: #000;
}
@media (max-width:450px){
    .service h2 {
        font-size: .9rem;
    }
    .home-heading{
        font-size: 1.2rem!important;
    }
}

.service h2::after {
    position: absolute;
    content: "";
    bottom: -5px;
    /* top: 28px;
    left: 50%; */
    width: 100%;
    height: 1px;
    right: 0;
    background: rgb(255, 0, 0);
    /* transform: translateX(-50%); */
}

.service p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service_item a {
    font-size: 0.86rem;
    padding: 5px 18px;
    border-radius: 15px;
    text-decoration: none;
    transition: 0.5s;
    font-style: italic;
}

.service_item a:hover {
    /* background: #000;
    color: #eee; */
    margin-left: 8px;
}

#services {
    overflow: hidden;
}

#services .active-a .item {
    /* border: 1px solid #ccc; */
    box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
}

#services .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -40px;
    padding: 0px 8px !important;
    background: rgb(255 255 255);
    transform: translateY(-50%);
    padding-bottom: 5px !important;
    font-size: 32px;
    line-height: 40px;
    color: #3051a0;
    box-shadow: 0 0 8px rgb(0 0 0 / 25%);
}

#services .owl-carousel .owl-nav button.owl-next:hover {
    background: #262f6b;
    color: #fff;
}

#services .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -40px;
    padding: 0px 8px !important;
    background: rgb(255 255 255);
    transform: translateY(-50%);
    padding-bottom: 5px !important;
    font-size: 32px;
    line-height: 40px;
    color: #3051a0;
    box-shadow: 0 0 8px rgb(0 0 0 / 25%);
}

#services .owl-carousel .owl-nav button.owl-prev:hover {
    background: #262f6b;
    color: #fff;
}

#services .owl-arrow .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.8rem;
}

#services .owl-arrow .owl-nav .owl-prev,
#services .owl-arrow .owl-nav .owl-next {
    display: inline-block;
    transition: all 0.6s ease-in-out;
    color: #000000;
}

/*------/ === News & Events === /------*/

.news_events {
    overflow: hidden;
    background: #fff;
    /* margin-top: 1.5rem; */
    /* padding: 5rem 0; */
}

.news__events h2 {
    font-size: 1.6rem;
}

.news_events .item {
    margin: 15px;
    background: #fff;
    color: #777;
    /* padding-bottom: 25px; */
    border: 1px solid #eee;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    /* min-height: 435px; */
    max-width: 600px;
}

.news_events .item .inner_info {
    padding: 18px;
}

.news_events .item .inner_info h1 {
    color: #3e3e3e;
    font-size: 1.5rem;
    font-weight: 600;
    /* margin-bottom: 15px; */
}

.news_events .item .inner_info h1 a {
    text-decoration: none;
    color: #303030;
    transition: 0.5s;
}

.news_events .item .inner_info h1 a:hover {
    color: #0d6efd;
}

.news_events .item .inner_info .date {
    font-size: 0.8rem;
    color: rgb(0 0 0);
    font-style: italic;
    /* margin-bottom: 27px; */
    padding-bottom: 10px;
    display: block;
    font-weight: 400;
}

/* .news_events .item .inner_info p {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-weight: 400;
    line-height: 0px;
} */

.news_events .item .news-img {
    width: 100%;
    height: 225px;
    overflow: hidden;
}

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

.news_events .item .inner_info button {
    background: #000;
    color: #eee;
    padding: 6px 20px;
    border: 2px solid #000;
    font-size: 0.8rem;
}

.news_events .product-grid3 {
    border: none;
    box-shadow: none;
}

.news_events .owl-theme .owl-dots {
    text-align: center;
    margin-top: 18px;
}

.news_events .owl-theme .owl-dots .owl-dot {
    display: inline-block;
}

.news_events .owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 4px;
    border: 2px solid #94a5b4;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.news_events .owl-theme .owl-dots .owl-dot:hover span {
    border-color: #2bb0ef;
}

.news_events .owl-theme .owl-dots .owl-dot.active span {
    border-color: #2bb0ef;
}

.news_events .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 42%;
    right: -40px;
    padding: 0px 1px !important;
    background: rgb(255, 255, 255);
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 5px;
    font-size: 32px;
    line-height: 32px;
    color: #2bb0ef;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.news_events .owl-carousel .owl-nav button.owl-next:hover {
    background: #2bb0ef;
    color: #fff;
}

.news_events .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 42%;
    left: -40px;
    padding: 0px 1px !important;
    background: rgb(255, 255, 255);
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 5px;
    font-size: 32px;
    line-height: 32px;
    color: #2bb0ef;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.news_events .owl-carousel .owl-nav button.owl-prev:hover {
    background: #2bb0ef;
    color: #fff;
}

.news_events .owl-arrow .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.8rem;
}

.news_events .owl-arrow .owl-nav .owl-prev,
.news_events .owl-arrow .owl-nav .owl-next {
    display: inline-block;
    transition: all 0.6s ease-in-out;
    color: #000000;
}

/* View all */
.view_all {
    margin-top: 30px;
}

.view_all a {
    text-decoration: none;
    border: 1px solid #337ab8;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    color: #337ab8;
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
}

.view_all a i {
    padding-left: 4px;
}

.view_all a:hover {
    background: #337ab8;
    color: #fff;
}

/* News & Event List  */

.news_list .item {
    margin: 15px;
    background: #fff;
    color: #777;
    padding-bottom: 25px;
    border: 1px solid #eee;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    min-height: 410px;
    max-width: 600px;
}

.news_list .item h1 {
    color: #3e3e3e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news_list .item h1 a {
    text-decoration: none;
    color: #303030;
    transition: 0.5s;
}

.news_list .item h1 a:hover {
    color: #0d6efd;
}

.news_list .date {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    /* margin-bottom: 27px; */
    padding-bottom: 10px;
    display: block;
    font-weight: 400;
}

.news_list p {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-weight: 400;
    line-height: 22px;
}

.news_list .item .news_list_img {
    width: 100%;
    height: 225px;
    overflow: hidden;
}

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

/* Circle */

.hover15 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0px !important;
    overflow: hidden;
}

.hover15::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: "";
    width: 0;
    height: 0;
    /* background: rgba(244, 229, 172, 0.4); */
    background: #6984c246;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.hover15:hover::before {
    -webkit-animation: circle 0.75s;
    animation: circle 0.75s;
}

.hover15 img {
    transition: all 0.3s;
}

.hover15:hover img {
    transform: scale(1.2);
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* ===== Testimonials ====== */

#testimonials {
    background: #d5e8f6;
    padding: 5rem;
    color: #777;
    position: relative;
    opacity: 1;
    z-index: 1;
}

#testimonials h1 {
    text-align: center;
    font-size: 1.5rem;
    color: #000;
    text-transform: uppercase;
}

#testimonials h1 span {
    color: #000;
}

#testimonials .test_info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#testimonials .test_info .testimonial-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 50%;
}

#testimonials .test_info .testimonial-job {
    font-size: 0.9rem;
    font-weight: 300;
}

.testimonial-item.equal-height.style-6 {
    padding: 25px 35px 35px 45px;
    background: #eee;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    margin: 25px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.testimonial-name {
    font-weight: 400;
    color: #000;
}

.testimonial-content.quote {
    padding: 20px 15px;
    font-size: 0.9rem;
    font-weight: 300;
    height: auto !important;
}

.et_right_sidebar #main-content .container:before {
    display: none;
}

#main-content .container {
    padding-top: 10px;
}

i.fa.fa-quote-left {
    padding: 0px 10px;
    color: #999;
}

#testimonials .owl-pagination {
    display: none;
}

#testimonials .owl-buttons {
    display: none;
}

/* ====== Footer Section ======= */

footer {
    width: 100%;
    background: #262f36;
    padding: 4rem 0;
    color: rgb(175, 175, 175);
    position: relative;
    z-index: 1;
}

footer .footer {
    padding-right: 15px;
}

footer .footer h4 {
    font-size: 1.6rem;
    color: rgb(210, 210, 210);
    margin-bottom: 25px;
}

footer .footer p {
    font-size: 0.9rem;
}

.footer_social ul {
    margin: 0;
    padding: 0;
}

.footer_social ul li {
    display: inline-block;
    padding: 4px;
    color: #eee;
}

.footer_social ul li a {
    color: #eee;
}

/* Quick Link */

.quick_links ul {
    margin: 0;
    padding-left: 10px;
}

.quick_links ul li {
    margin-left: 0px;
    line-height: 28px;
    list-style: none;
}

.quick_links ul li a {
    text-decoration: none;
    color: rgb(175, 175, 175);
    font-size: 0.85rem;
}

.quick_links ul li a:hover {
    color: #fff;
}

/* === Copyright === */

.copyright {
    background: #262f36;
    padding: 1rem 0;
    color: rgb(181, 181, 181);
    font-size: 0.85rem;
    box-shadow: 2px 5px #f000;
}

/* owl carousel re-set */

.owl-carousel .owl-nav .owl-prev:focus,
.owl-carousel .owl-nav .owl-next:focus {
    outline: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
}

/* ======= Meida Queries ===== */

@media screen and (min-width: 480px) {
    .quick_book {
        width: 100%;
        /* min-width: 100%; */
        max-width: 80%;
    }

    .book_appointment {
        display: flex;
        flex-direction: column;
    }
}

/* === Second page === */

.sec_page .breadcrum {
    background: #626262;
    position: relative;
    padding: 0.5rem 0;
    /* color: #818181; */
    color: #bbb;
    opacity: 1;
    z-index: 1;
}

.sec_page .breadcrum::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/banner01.jpg) no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

.breadcrum ul {
    margin: 0;
    padding: 0;
    /* margin-bottom: 10px; */
    /* margin-left: 8px; */
}

.breadcrum ul li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
}

.breadcrum h1.sec_page_title {
    /* font-size: 2rem; */
    font-size: 1.5rem;
    color: #efefef;
    margin: 0;
}

/* === Second Page Body === */
.sec_page_body nav {
    background: transparent;
}

.sec_page_body {
    color: #777;
}

/* .sec_page_body ul {
    margin-left: 20px;
} */

.sec_page_body p.MsoListParagraphCxSpMiddle {
    margin-left: 30px;
}

.sec_page_body p.MsoListParagraphCxSpFirst {
    margin-left: 30px;
}

.sec_page_body p.MsoListParagraphCxSpLast {
    margin-left: 30px;
}

/* === About Page === */

.board_director {
    text-align: center;
    margin-top: 3rem;
}

.board_director h1 {
    font-size: 1.6rem;
    margin-top: 2rem;
    color: #000;
    margin-bottom: 30px;
}

.board_member_item {
    padding: 15px;
    padding: 15px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    border: 1px solid #ccc;
    background: #3051a038;
}

.board_member_item .member_img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
}

.board_member_item .member_img img {
    width: 100%;
    height: 100%;
    object-position: center center;
}

.board_member_item .member_name {
    font-size: 1.2rem;
}

.board_member_item .member_position {
    color: #0d6efd;
    font-size: 0.85rem;
}

.board_member_item .board-member-cat {
    border: 1px solid #000;
    padding: 3px 10px;
    font-size: 0.75rem;
    border-radius: 15px;
    margin-top: 15px;
    color: #eee;
    background: #000;
}

/* Pop Up */
.board_member_detail_popup .left_box {
    text-align: center;
}

.board_member_detail_popup .right_box {
    text-align: left;
}

.board_member_detail_popup .social_link a {
    margin: 5px;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Board Member */
#team_member {
    /* margin-top: 3rem; */
    text-align: center;
}

#team_member h1 {
    font-size: 1.6rem;
    margin-top: 2rem;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.team_member_item {
    padding: 15px;
    padding: 15px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    /* border: 1px solid #ccc;
    background: #3051a038; */
}

.team_member_item .team_member_img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
}

.team_member_item .team_member_img img {
    width: 100%;
    height: 100%;
    object-position: center center;
}

/* .team_member_item .team_member_name {
    font-size: 1.5rem !important;
} */

.team_member_item .team_member_position {
    color: #0d6efd;
    /* font-size: 0.85rem; */
}

.team_member_item .team_member_cat {
    border: 1px solid #000;
    padding: 3px 10px;
    font-size: 0.75rem;
    border-radius: 15px;
    margin-top: 15px;
    color: #eee;
    background: #000;
}

/* Pop Up */
.team_member_detail_popup .left_box {
    text-align: center;
}

.team_member_detail_popup .right_box {
    text-align: left;
}

.team_member_detail_popup .social_link a {
    margin: 5px;
    text-decoration: none;
    font-size: 1.2rem;
}

/* === Specilities Page === */

.spec_item {
    border-bottom: 1px solid rgb(235, 235, 235);
    padding-bottom: 35px;
    margin-bottom: 30px;
}

.spec_item .spec_item_left {
    overflow: hidden;
}

.spec_item .spec_item_left h5 {
    color: red;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.spec_item .spec_item_left .imgBox {
    width: 100%;
    height: 200px;
    background: #fff;
    object-fit: cover;
    display: block;
    border-radius: 0.8rem;
    position: relative;
    border: 4px solid rgb(235, 232, 232);
}

/* .spec_item .spec_item_left .imgBox::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgb(1 8 247 / 35%), rgb(1 8 247 / 35%));
    box-shadow: 0.5rem 0.5rem 3rem 1px rgb(0 0 0 / 5%);
    border-radius: 0.8rem;
} */

.spec_item .spec_item_left .imgBox img {
    width: 80%;
    height: 90%;
    object-fit: cover;
    object-position: center center;
}

/* === right box === */

.spec_item_right {
    margin-top: 30px;
}

.spec_item_right h4 {
    color: #0108f7;
}

.spec_item_right .cat a {
    text-decoration: none;
    font-size: 0.86rem;
    font-style: italic;
}

/* === Doctor Page === */

.doctor_card {
    position: relative;
    /* width: 260px;
    height: 330px; */
    background: rgba(255, 255, 255, 0.5);
    margin: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    padding: 60px 10px;
}

.doctor_card .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0.8;
    transition: 0.5s;
    text-align: center;
}

.doctor_card:hover .content {
    opacity: 1;
    transform: translateY(-20px);
}

.doctor_card .content .imgBox {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    /*border: 1px dashed #3051a09c;*/
}

.doctor_card .content .imgBox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
}

.doctor_card .content .contentBox {
    padding: 10px;
}

.doctor_card .content .contentBox h3 {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin: 20px 0 10px;
    line-height: 1.1em;
}

.doctor_card .content .contentBox h4 {
    color: #3051a0;
    font-size: 14px;
    text-align: center;
    line-height: 1.1em;
}

.doctor_card .content .contentBox p {
    font-size: 14px;
}

.doctor_card .content .contentBox .doctor-cat {
    border: 1px dotted #0d6efd;
    background: transparent;
    padding: 5px 20px;
    font-size: 12px;
    border-radius: 15px;
    transition: all 0.5s;
    font-weight: thin;
    text-decoration: none;
}

.doctor_card .content .contentBox .doctor-cat:hover {
    background: #0d6efd;
    color: #fff;
}

.doctor_card .sci {
    position: absolute;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    width: 100%;
}

.doctor_card .sci li {
    list-style: none;
    margin: 0 10px;
    transform: translateY(40px);
    transition: 0.5s;
    opacity: 0;
    transition-delay: calc(0.1s * var(--i));
}

.doctor_card:hover .sci li {
    transform: translateY(0px);
    opacity: 1;
}

.doctor_card .sci li a {
    /* color: #fff; */
    font-size: 14px;
}

/* === Appointment Page === */

.appointment_page h4.sub-title {
    text-transform: uppercase;
    font-size: 1rem;
    color: #777;
    position: relative;
    margin-bottom: 15px;
}

/*.appointment_page h4.sub-title::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    top: 25px;*/
/*    left: 0;*/
/*    width: 30px;*/
/*    height: 2px;*/
/*    background: red;*/
/*}*/

.appointment_page h2.title {
    font-weight: 400;
    font-size: 1.6rem;
}

.appointment_page h2.title span {
    color: red;
    font-weight: 600;
}

.appointment_page p {
    font-size: 0.85rem;
}

.appointment_page label {
    font-size: 0.95rem;
    display: none;
}

.appointment_page button {
    border: 2px solid #000;
    background: #000;
    color: #eee;
    padding: 6px 15px;
    transition: 0.5s;
}

.appointment_page button:hover {
    color: #fff;
}

/* === Appointment Sidebar === */

.appointment_sidebar h2.heading {
    text-transform: uppercase;
    font-size: 1.5rem;
    border-bottom: 1px solid #d0cccc;
    padding-bottom: 10px;
    text-align: center;
    color: #000;
}

/* === Contact Us Page === */

.contact_page h4.sub-title {
    text-transform: uppercase;
    font-size: 1rem;
    color: #777;
    position: relative;
    margin-bottom: 15px;
}

.contact_page h4.sub-title::after {
    position: absolute;
    content: "";
    top: 25px;
    left: 0;
    width: 30px;
    height: 2px;
    background: red;
}

.contact_page h2.title {
    font-weight: 400;
    font-size: 1.6rem;
}

.contact_page h2.title span {
    color: red;
    font-weight: 600;
}

.contact_page p {
    font-size: 0.85rem;
    width: 80%;
}

.contact_page label {
    font-size: 0.95rem;
    display: none;
}

.contact_page button {
    border: 2px solid red;
    background: red;
    color: #eee;
    padding: 6px 15px;
    transition: 0.5s;
}

.contact_page button:hover {
    color: #fff;
}

/* === Contact Sidebar === */

.contact_sidebar {
    padding: 20px;
    font-size: 0.85rem;
    margin-top: 50px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    padding-bottom: 50px;
}

.contact_sidebar h2.heading {
    color: #000;
    font-size: 1.5rem;
    position: relative;
    margin-bottom: 20px;
}

.contact_sidebar p {
    font-size: 0.8rem;
    color: #777;
    width: 100%;
}

.contact_sidebar span {
    color: #777;
    font-size: 0.86rem;
}

.contact_sidebar p.thankyou {
    font-style: italic;
}

/* Email     */

/* === Gallery === */
.gallery_item {
    box-sizing: border-box;
    /* border: 5px solid #eee; */
    background: #eee;
    color: #777;
    text-align: center;
    width: 100%;
    /* margin-bottom: 30px; */
}

.gallery_img_box {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery_item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 400ms ease-out;
}

.gallery_item a img:hover {
    transform: scale(1.15);
}

.gallery_item h5 {
    color: #000;
    margin-top: 8px;
    text-transform: capitalize;
}

.sub_gallery_item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.sub_gallery_item_img {
    /* width: 330px; */
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #eee;
    /* margin-right: 30px;
    margin-bottom: 30px; */
    cursor: pointer;
}

.sub_gallery_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}

.sub_gallery_item_img img:hover {
    transform: scale(1.15);
}

/* === Career === */
/*Career Contact info*/
.career-contact-section {
    display: flex;
}

.career-contact-section .career-contact-info {
    width: 50%;
    color: #777;
}

.career-contact-section .upload-cv-section {
    width: 40%;
}

.career-contact-section .upload-cv-section label {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.career-contact-section .upload-cv-section input[type="text"] {
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 2px;
    background: #fff;
    color: #333;
    line-height: 20px;
    font-size: 14px;
    width: 100%;
}

.career-contact-section .upload-cv-section input[type="text"]:hover,
.career-contact-section .upload-cv-section input[type="text"]:focus {
    outline: none;
}

.upload-cv-section select {
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 2px;
    background: #fff;
    color: #777;
    width: 100%;
}

.upload-cv-section select:focus {
    outline: none;
}

.career-contact-section .upload-cv-section #cv-upload-btn {
    color: #726464;
    padding: 4px 10px;
    background: #ffffff;
    border: 1px solid #c7c7c7;
    /*border-radius: 19px;*/
    padding: 6px 25px;
    font-size: 14px;
}

/* CV Upload CSS */
.file-upload-wrapper {
    position: relative;
    width: 64%;
    height: 60px;
}

.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 4px 15px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: 34px;
    line-height: 26px;
    color: #727171;
    /*border-radius: 5px 10px 10px 5px;*/
    font-weight: 400;
    border: 1px solid #ccc;
}

.file-upload-wrapper:before {
    content: "Upload";
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 33px;
    background: #337ab8;
    color: #d3cfcf;
    font-weight: 300;
    z-index: 25;
    font-size: 14px;
    line-height: 35px;
    padding: 0 15px;
    /*text-transform: uppercase;*/
    pointer-events: none;
    /*border-radius: 0 5px 5px 0;*/
}

.file-upload-wrapper:hover:before {
    background: #337ab8;
    color: #eee;
}

.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

.career-contact-section .upload-cv-section .apply-btn {
    padding: 4px 15px;
    border: 1px solid #337ab8;
    background: #337ab8;
    color: #eee;
    font-size: 14px;
}

.career .card {
    padding: 1.5rem 1rem;
}

.career h4.title {
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

form.drop-cv-form {
    margin-top: 30px;
}

input#cv {
    margin-left: 10rem;
    margin-bottom: 10px;
}

@media only screen and (max-device-width: 480px) {
    .message_from_img {
        margin-left: 0rem !important;
    }

    .powerby {
        text-align: left !important;
    }
}

/* === Service ==== */
.services_item a {
    text-decoration: none;
    color: #337ab8;
}

.services_item ul li {
    list-style: square;
}

.services_item .view_more_btn {
    margin-top: 30px;
}

/* career CSS add */
.job_vacancy img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.job_vacancy .job_vacancy_info p {
    margin-bottom: 0px;
}

.job_vacancy .job_vacancy_info .btn {
    padding: 4px 15px;
    margin: 0px;
    border-radius: 0px;
    font-size: 14px;
}

/* Career */
.career_item_detail {
    margin-top: 8px;
}

.career_item_detail button.btn {
    padding: 4px 16px;
    border-radius: 0px;
    font-size: 14px;
}

.career_item_detail p {
    margin-bottom: 5px;
    /* margin-top: 5px; */
}

.career_item_detail .label_for {
    font-size: 15px;
    color: #777;
}

.career_item_detail input {
    font-size: 15px;
    color: rgb(97, 96, 96);
    border-radius: 0px;
}

.custom-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-family: Arial;
    background: rgba(0, 0, 0, 0.4);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 110.145ms 0ms;
}

.custom-popup__holder {
    max-width: 600px;
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 8px;
    padding: 50px;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    position: relative;
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 400ms, transform 400ms;
    transition-delay: 300ms;
}

.custom-popup__title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 40px;
    /* width: 100%; */
}

.custom-popup__content {
    flex: 1;
    font-size: 22px;
    line-height: 24px;
    /* width: 100%; */
}

.custom-popup__footer {
    font-size: 28px;
    line-height: 30px;
}

.custom-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 0.3s transform;
}

.custom-popup__close:before,
.custom-popup__close:after {
    content: "";
    position: absolute;
    left: 15px;
    top: 3px;
    display: block;
    width: 2px;
    height: 26px;
    background: #000;
    transform: rotate(45deg);
}

.custom-popup__close:after {
    left: 15px;
    top: 3px;
    transform: rotate(-45deg);
}

.custom-popup__close:hover {
    transform: rotate(90deg);
}

.custom-popup.is-active {
    opacity: 1;
    pointer-events: auto;
}

.custom-popup.is-active .custom-popup__holder {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 980px) {
    .custom-popup__holder {
        width: 90%;
        height: 90vh;
        padding: 25px 15px;
    }

    .custom-popup__close {
        top: 5px;
        right: 5px;
    }

    .custom-popup__title {
        font-size: 14px;
        line-height: 16px;
        width: 100%;
    }

    .custom-popup__content {
        font-size: 12px;
        line-height: 14px;
        width: 100%;
        overflow-y: auto;
        padding: 0 0 20px;
        margin-bottom: 20px;
    }

    .custom-popup__footer {
        font-size: 14px;
        line-height: 16px;
        width: 100%;
    }
}

/* =================================================
    :: Our Package
==================================================== */
.our_package .package_item {
    border: 1px solid #eee;
    padding: 45px 20px;
    /* background-image: linear-gradient(to right,
            rgb(32 135 235 / 95%),
            rgb(37 148 255 / 95%)),
        url(../images/bg-eye.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    color: #efefef;
    height: 100%;
    background-position: center;
}

.our_package .package_item h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    /* text-transform: uppercase; */
}

.our_package .package_item h2.price {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 35px;
    margin-top: 20px;
}

.our_package .package_item p,
.our_package .package_item li {
    color: #efefef;
    font-size: 0.9rem;
}

.our_package .package_item ul {
    margin: 0px;
    padding: 0px;
    margin-left: 18px;
}

.our_package .package_item li {
    margin: 0px;
    padding: 0px;
    margin-bottom: 6px;
}

.our_package .package_item .by_btn {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.our_package .package_item .by_btn a {
    background: #ffffffe6;
    padding: 0.6rem 2.4rem;
    text-decoration: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #000;
    font-weight: 500;
}

.our_package .package_item .by_btn a:hover {
    background: #fff;
}

/* === Order package === */
.order_package .our_package {
    display: flex;
    justify-content: center;
    align-items: center;
}

.order_package .package_item {
    background: #337ab8;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.order_package .package_item h3,
.order_package .package_item h2.price {
    color: #fff;
}

.order_package .package_item h3 {
    font-size: 1rem;
    line-height: 1.5;
}

/*  */
.customer_detail {
    border: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 10px;
}

footer .foo h4 {
    color: #fff;
}

/* order cart */
.order-cart {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.order-cart a {
    /* padding: 10px 30px; */
    background: #fff;
    border-radius: 5px;
    position: relative;
}

.order-cart a i {
    font-size: 1.4rem;
}

/*=== Shopping Cart ===*/
.shopping-cart {
    display: flex;
    justify-content: space-between;
}

.shopping-cart .shopping-cart-item {
    width: 72%;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 4%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s,
        box-shadow 0.3s;
    padding-bottom: 30px;
}

.shopping-cart table {
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
}

.shopping-cart table thead {
    border-bottom: 1px solid #d1d1d1;
}

.shopping-cart table thead tr th {
    color: #3e3e3e;
    padding-bottom: 8px;
}

.shopping-cart table tbody tr {
    border-bottom: 1px solid #ededed;
}

.shopping-cart table tbody tr td {
    padding: 14px 6px;
}

.package_orshopping-cartder_detail table th {
    color: #000;
    padding: 8px;
}

.shopping-cart table tr td form {
    display: flex;
    justify-content: center;
}

.shopping-cart table tr td button {
    width: 20px;
    height: 20px;
    margin: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.6rem;
    border-radius: 50%;
}

.shopping-cart .order-summary {
    width: 25%;
    padding: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 4%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s,
        box-shadow 0.3s;
    padding-bottom: 30px;
    border-radius: 4px;
}

.shopping-cart .order-summary h4 {
    font-size: 1.2rem;
    padding: 2px 4px 10px 2px;
    border-bottom: 1px solid #ddd;
}

.shopping-cart .order-summary .total-amount {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 5px;
}

.shopping-cart .order-summary button {
    width: 100%;
    text-transform: uppercase;
    border-radius: 0px;
    margin-top: 30px;
    padding: 8px 0;
}

.top-right-parent-div {
    display: flex;
    justify-content: flex-end;
}

.right-top-flag-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-height {
    height: 22px;
}

@media all and (max-width: 1170px) {}

@media all and (max-width: 940px) {
    .shopping-cart {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .shopping-cart .shopping-cart-item,
    .shopping-cart .order-summary {
        width: 100%;
    }

    .shopping-cart .order-summary {
        margin-top: 20px;
    }
}

@media all and (max-width: 728px) {
    #top_wrap .account {
        text-align: left;
    }

    .shopping-cart {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .shopping-cart .shopping-cart-item,
    .shopping-cart .order-summary {
        width: 100%;
    }

    .shopping-cart .order-summary {
        margin-top: 20px;
    }
}

@media all and (max-width: 320px) {
    #top_wrap .account {
        text-align: left;
    }

    .book_appointment::after {
        background: none;
        background-size: 108%;
    }

    .shopping-cart {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .shopping-cart .shopping-cart-item,
    .shopping-cart .order-summary {
        width: 100%;
    }

    .shopping-cart .order-summary {
        margin-top: 20px;
    }
}

/* Checkout Model */
#checkoutModal .modal-header,
#checkoutModal .modal-footer {
    border: none;
}

#checkoutModal .modal-header button.close-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    position: relative;
    top: -15px;
    right: -13px;
    font-size: 0.7rem;
    transition: 0.5s;
}

#checkoutModal .modal-header button.close-btn span {
    font-size: 1.1rem;
}

#checkoutModal .modal-header button.close-btn:hover {
    background: red;
    color: #fff;
}

#checkoutModal .modal-content {
    padding: 10px;
}

#checkoutModal .modal-content table tr th {
    padding-bottom: 10px;
}

#checkoutModal .modal-content table tr:last-child {
    border-bottom: none;
}

span.cart-number {
    position: absolute;
    top: -18px;
    left: 80%;
    font-size: 0.6rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_info .top-cart {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_info .top-cart .order-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}

.top_info .top-cart .order-cart a {
    color: #337ab8;
}

.mypackage table {
    border: 1px solid #98bdf3;
    border-collapse: collapse;
}

.mypackage table tr th,
.mypackage table tr td {
    border: 1px solid #98bdf3;
    padding: 6px 6px;
}

.mypackage table tr th {
    background: #0d6efd;
    color: #fff;
    padding: 8px;
}

/* === Register === */
.register-form label {
    font-size: 0.9rem;
}

.register-form input,
.register-form select {
    padding: 7px;
    border: 1px solid #e8e9eb;
    font-size: 0.8rem;
    border-radius: 0px;
    margin-top: 6px;
    outline: none;
}

.register-form button {
    padding: 4px 10px;
    border-radius: 0px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.register-form input:hover,
.register-form select:hover,
.register-form input:focus,
.register-form select:focus {
    outline: none;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}

/* === Login === */
.login-form label {
    font-size: 0.9rem;
}

.login-form input,
.login-form select {
    padding: 8px;
    border: 1px solid #e8e9eb;
    font-size: 0.8rem;
    border-radius: 0px;
    margin-top: 6px;
    outline: none;
}

.login-form button {
    padding: 4px 10px;
    border-radius: 0px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.login-form input:hover,
.login-form select:hover,
.login-form input:focus,
.login-form select:focus {
    outline: none;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}

.login-form button.login {
    display: block;
    width: 100%;
    margin-top: 30px;
}

.login-form .forget {
    text-align: center;
}

.login-form .forget a {
    padding: 4px;
    margin: 0px;
    /* display: block; */
    text-align: left;
    font-size: 0.8rem;
}

/* === my package list === */
.nd-package-list .our_package {
    /* background-color: red; */
    border: 1px solid #eee;
    padding: 20px;
    background-color: #f5f5f5;
}

.nd-package-list table thead {
    /* background-color: #eee; */
    color: #686cff;
}

.nd-package-list table thead tr th {
    padding: 0.6rem;
    border-bottom: 1px solid #686cff;
}

.nd-package-list table tbody tr td {
    padding: 0.8rem 0.6rem;
    border-bottom: 1px solid #dbdbdb;
    font-size: 0.9rem;
}

.nd-package-list table tbody tr:last-child td {
    border-bottom: none !important;
    color: #686cff;
    padding: 2rem 0.6rem;
}

.nd-package-list table thead tr th:last-child,
.nd-package-list table tbody tr td:last-child {
    text-align: center;
}

.nd-package-list .checkout-btn {
    display: flex;
    justify-content: flex-end;
}

.nd-package-list .checkout-btn button.btn {
    border-radius: 0px;
}

/* Package order form  */
.nd-package-order-form .same-as label {
    font-weight: 400;
    margin-left: 4px;
}

.nd-package-order-form input:hover,
.nd-package-order-form select:hover,
.nd-package-order-form input:focus,
.nd-package-order-form select:focus {
    outline: none;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}

/* === Card list === */
.nd-card-list .package_order_detail {
    border: 1px solid #eee;
    padding: 20px;
    background-color: #f5f5f5;
}

.nd-card-list table thead {
    color: #686cff;
}

.nd-card-list table thead tr th {
    padding: 0.6rem;
    border-bottom: 1px solid #686cff;
}

.nd-card-list table tbody tr td {
    padding: 0.8rem 0.6rem;
    border-bottom: 1px solid #dbdbdb;
    font-size: 0.9rem;
}

.nd-card-list table tbody tr:last-child td {
    border-bottom: none !important;
    color: #686cff;
    padding: 2rem 0.4rem;
}

.nd-card-list table thead tr th:last-child,
.nd-card-list table tbody tr td:last-child {
    text-align: center;
}

.nd-card-list table tbody tr td:last-child {
    padding-left: 10px;
}

.nd-card-list table tbody tr td button.btn {
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.nd-card-list .checkout-btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}

/* popup */
.nd-card-list .modal-body table thead {
    background-color: transparent;
}

.nd-card-list .modal-body table thead tr th {
    padding: 0.6rem;
}

.nd-card-list .modal-body table tbody tr td {
    padding: 0.6rem;
    border-bottom: 1px solid #eee;
}

.nd-card-list .modal-body table tbody tr:last-child td {
    border-bottom: none !important;
}

.nd-card-list .modal-header button {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.site-font-color {
    color: #337ab8 !important;
}

header .brand_logo img {
    width: 299px;
    height: auto;
    margin-top: 5px;
}

.gif-image {
    height: 35px;
}

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

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

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

.course-title-height {
    height: 65px;
}

.br-site {
    border-left: 3px solid #337ab8;
}

.site-font-color {
    color: #337ab8;
}

.lh-08 {
    line-height: 0.8;
}

.lh-10 {
    line-height: 1;
}

.lh-14 {
    line-height: 1.4;
}

.cursor-pointer {
    cursor: pointer;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: #337ab8 !important;
    border-color: #337ab8 !important;
}

.nav-active-css {
    color: #fff !important;
    background-color: #337ab8 !important;
    border-color: #337ab8 !important;
}

/* .sec_page_body ul {
    margin-left: 0px;
} */


body {
    font-family: 'Calibri', 'Candara', 'Segoe', 'Segoe UI', 'Optima', 'Arial', sans-serif !important;
}

/* .team_member_item {
    height: auto !important;
} */

@font-face {
    font-family: kalimati;
    src: url("kalimati.otf");
}

.kalimati {
    font-family: "kalimati";
}