

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'ui-serif';
    color: #444444;
    overflow-x: hidden;
}

a {
    color: #1b196a;
    text-decoration: none;
}

a:hover {
    color: #3291e6;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: auto;
}

#main {
    margin-top: 41px;
}

p {
    font-family: ui-serif;
    font-size: 18px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #1b196a;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #298ce5;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.datepicker-dropdown {
    padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #1b196a;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #ffffff;
    transition: 0.3s;
}

/* #topbar .contact-info a:hover {
  color: #1b196a;
} */

#topbar .contact-info i {
    color: #000000;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: #ffffff;
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #1b196a;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgb(255, 255, 255);
    transition: all 0.5s;
    z-index: 997;
    padding: 8px 0;
    top: 39px;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
    top: 0;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #ffffff;
}

#header .logo img {
height: 82px;
}

/**
* Appointment Button *
*/
.appointment-btn {
    margin-left: 25px;
    background: #1b196a;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.appointment-btn:hover {
    background: #166ab5;
    color: #fff;
}

@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 19px;
    color: rgb(27 26 107);
    white-space: nowrap;
    font-family: ui-serif;
    /* text-transform: uppercase; */
    transition: 0.3s;
    /* border-bottom: 2px solid #fff; */
    padding: 5px 2px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #f1602e;
    /* border-color: #1b196a; */
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 20px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #082744;
    border: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #1b196a;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #2c4964;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #2c4964;
    border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #1b196a;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #1b196a;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 90vh;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    margin-bottom: -200px;
}

#hero .container {
    position: relative;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: #2c4964;
}

#hero h2 {
    color: #2c4964;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    margin-top: 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #1b196a;
}

#hero .btn-get-started:hover {
    background: #3291e6;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero {
        margin-bottom: 0;
        height: 100vh;
    }

    #hero .container {
        padding-bottom: 63px;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@media (max-height: 600px) {
    #hero {
        height: 110vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f7fd;
}

.section-title {
    text-align: center;
    padding-bottom: 5px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c4964;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #1b196a;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}



/*--------------------------------------------------------------
Home
--------------------------------------------------------------*/
.slider_img {
    height: 500px;
}

/* home notice section */
:root {
    --main-color: #03A9BA;
}

.notice_box {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 0 0 40px;
    height: 360px;
    border-bottom: 7px solid #1b196a;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: relative;
    z-index: 1;
}

.notice_box .title {
    color: #fff;
    background: #1b196a;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 5px;
    margin: 0 0 35px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
    position: relative;
}

.notice_box .title:before {
    content: "";
    /* background: #1b196a; */
    width: calc(100% - 50px);
    height: 100%;
    border-radius: 0 0 25px 25px;
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
    transform: translateX(-50%);
    position: absolute;
    bottom: -12px;
    left: 50%;
    z-index: -1;
}

.notice_box .service-icon {
    color: var(--main-color);
    font-size: 40px;
    line-height: 40px;
    margin: 0 auto 20px;
}

.notice_box .description {
    color: #555;
    /* font-size: 14px; */
    line-height: 25px;
    text-align: center;
    margin: 0 15px;
}

.notice_box.purple {
    --main-color: #AA6AC0;
}

.notice_box.pink {
    --main-color: #FC679F;
}

.notice_box.green {
    --main-color: #A1C437;
}

@media only screen and (max-width: 1199px) {
    /* .notice_box{ margin: 0 0 40px;
    } */
}


/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
    width: 100%;
}

.appointment .php-email-form .form-group {
    padding-bottom: 8px;
}

.appointment .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.appointment .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.appointment .php-email-form .error-message br+br {
    margin-top: 25px;
}

.appointment .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.appointment .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.appointment .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
    border-color: #1b196a;
}

.appointment .php-email-form input,
.appointment .php-email-form select {
    height: 44px;
}

.appointment .php-email-form textarea {
    padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
    background: #1b196a;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
    background: #1c84e3;
}


/*--------------------------------------------------------------
# ABOUT
--------------------------------------------------------------*/
.about_home_img {
    height: 540px;
    width: 100%;
}

.about_home_btn {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    background: #037c5e;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    transition: 0.5s ease-in-out;
}

.about_home_btn:focus {
    color: #fff;
}

.about_home_btn:hover {
    color: #037c5e;
    background: none;
    border-radius: 100px;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #037c5e,
        0 0 0 5px #037c5e, 0 0 0 6.5px #fff, 0 0 0 7px #037c5e;
}

@media only screen and (max-width: 767px) {
    .about_home_btn {
        margin-bottom: 30px;
    }
}

.text_color {
    color: #1b196a;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #ffffff;
    float: left;
    width: 44px;
    height: 44px;
    /* background:#1b196a;; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c4964;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 17px;
    color: #4b7dab;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #01a99e;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    /* background: #1b196a; */
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #1c84e3;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* facilities page */

.FacilitiesBox {
    color: var(--main-color);
    background: white;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    /* padding: 35px 15px 25px; */
    border-radius: 20px 20px 0 0;
    margin: 0 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    position: relative;
    z-index: 1;
}

.FacilitiesBox:before,
.FacilitiesBox:after {
    content: "";
    background: var(--main-color);
    height: 60px;
    position: absolute;
    bottom: 0;
    left: -10px;
    right: -10px;
    z-index: -1;
}

.FacilitiesBox:after {
    background: #fff;
    height: 40px;
    bottom: 21px;
    left: -1px;
    right: -1px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.FacilitiesBox .title {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 7px;
}

.FacilitiesBox .description {
    color: #888;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 24px;
    margin: 0 0 7px;
}

.FacilitiesBox .service-icon {
    color: var(--main-color);
    font-size: 45px;
}

.FacilitiesBox .service-icon:before,
.FacilitiesBox .service-icon:after {
    content: "";
    background: linear-gradient(to top left, var(--dark-color) 45%, transparent 50%);
    width: 10px;
    height: 12px;
    position: absolute;
    left: -10px;
    bottom: 60px;
}

.FacilitiesBox .service-icon:after {
    transform: rotateY(180deg);
    left: auto;
    right: -10px;
}

.FacilitiesBox.blue {
    --main-color: #1291B2;
    --dark-color: #1B6070;
}

/* @media only screen and (max-width: 1199px){
  .FacilitiesBox{ margin: 0 10px 30px; }
} */

.main_section {
    margin-top: 131px;
}

/* blog box */


.blogBox img {
    width: 100%;
    height: 258px;
}

.blogBox .service-content {
    position: relative;
    background: #36bab0;
    height: 277px;
    color: white;
    padding: 50px 30px 30px;
}

.blogBox .service-icon {
    text-align: center;
    display: block;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 10px;
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}

.blogBox .service-icon i {
    font-size: 30px;
    line-height: 70px;
    color: #00a996;
    transform: rotate(-45deg);
}

.blogBox .title {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.blogBox .description {
    font-size: 14px;
    font-size: 14px;
    font-weight: 500;

}

.blogBox .read-more {
    display: inline-block;
    padding: 7px 20px;
    border: 1px solid white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: #00a996;
    text-transform: capitalize;
    transition: all 0.5s ease 0s;
}

.blogBox .read-more:hover {
    color: #00a996;
    background: white;
    text-decoration: none;
}

.blogBox.middle .service-content {
    padding: 30px 30px 50px;
}

.blogBox.middle .service-icon {
    bottom: -35px;
    top: auto;
}

@media only screen and (max-width: 990px) {
    .blogBox .title {
        font-size: 17px;
    }
}

/* @media only screen and (max-width: 767px){
  .blogBox{ margin: 0 0 30px 0; }
} */

/* about us */
.about_side_img {
    height: 500px;
    width: 100%;
    position: relative;
}

.about_side_img::before {
    content: "";
    position: absolute;
    background-color: aqua;
    width: 20px;
    height: 210px;

    border-radius: 10px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.6);

    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
}

.before_after {

    z-index: 1;
    position: relative;
}

.before_after .about_h_b::after {
    content: "";
    width: 13%;
    height: 500px;
    background: #cfcbc8;
    position: absolute;
    top: 0px;
    left: 87%;
    border-top-left-radius: 112px;
    border-bottom-left-radius: 90px;
}

.about_content {
    width: 83%;
}

.about_letter_specing {
    letter-spacing: 3px !important;
}

.abouttt_box {
    padding-top: 30px;
}

/* About page */
.We_Truly_Care_Box {
    border-bottom: 10px double #0d85a0;
    z-index: 1;
    position: relative;
    top: 0;
    height: 180px;
    transition: all 0.3s ease 0s;
}

.We_Truly_Care_Box:hover {
    top: -20px;
    border-bottom: 10px double #0d85a0;
}

.We_Truly_Care_Box:after {
    content: "";
    width: 2px;
    height: 100%;
    background: #268e93;
    position: absolute;
    bottom: 0;
    left: 37.5px;
    z-index: -1;
    transition: all 0.3s ease 0s;
}

.We_Truly_Care_Box:hover:after {
    background: #58a4b0;
}

.We_Truly_Care_Box .service-icon {
    display: inline-block;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid #268e93;
    text-align: center;
    line-height: 70px;
    float: left;
    font-size: 40px;
    color: #268e93;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.We_Truly_Care_Box:hover .service-icon {
    border-color: #58a4b0;
    color: #58a4b0;
    margin-top: -30px;
    animation: bounce 1s ease normal none 1;
}

.We_Truly_Care_Box .service-content {
    margin-left: 69px;
    padding-bottom: 21px;
}


.We_Truly_Care_Box .title {
    font-size: 20px;
    color: #222;
    margin-top: 0;
}

.We_Truly_Care_Box .description {
    font-size: 16px;
    color: #444;
    line-height: 24px;
}

/* .We_Truly_Care_Box .read-more{
  display: inline-block;
  padding: 4px 16px;
  font-size: 13px;
  color: #58a4b0;
  text-transform: capitalize;
  border: 2px solid #58a4b0;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.We_Truly_Care_Box:hover .read-more{
  bottom: 25px;
  opacity: 1;
} */
.We_Truly_Care_Box .read-more:hover {
    background: #58a4b0;
    color: #fff;
}

#carouselExampleControls {
    margin-top: 120px;
}

/* .{

} */

/* facility */
.breadcrumb {
    position: relative;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    height: 250px;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center !important;
}

.facility_img {
    height: 110px;
    width: 110px;
    border-radius: 50%;
}

.fasility_banner_font {
    position: absolute;
    top: 50%;
    /* left: 40%; */
    color: white;
    font-weight: bold;
    font-size: 40px !important;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.fasility_font {
    position: absolute;
    top: 50%;
    color: #084b92;
    font-weight: bold;
    font-size: 19px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* appontment */
.blog_line_clamp_h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_line_clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home_line_clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (min-width: 1025px) and (max-width:1280px) {
    .about_line_clamp {
        display: -webkit-box;
        -webkit-line-clamp: 14;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}



.border_facility {
    border-right: 1px solid grey;
    border-top: none;
    border-left: none;
    border-bottom: none;
}

/* @media screen and (min-width: 576px) and (max-width:768) { */
@media only screen and (min-width:576px) and (max-width:768px) {
    .slider_img {
        height: 350px !important;
    }

    .border_facility_tab {
        border-right: 1px solid grey;
        border-top: none;
        border-left: none;
        border-bottom: none;
    }

    .about_content {
        width: 90%;
    }

    #carouselExampleControls {
        margin-top: 101px;
    }

    .about_home_img {
        height: 407px;
        width: 100%;
    }

    .before_after .about_h_b::after {
        content: "";
        width: 6%;
        height: 348px;
        background: #cfcbc8;
        position: absolute;
        top: 0px;
        left: 93%;
    }
}

.facility_sectionn {
    margin-top: 77px;
}

@media only screen and (max-width:576px) {
    #topbar {
        display: none !important;
    }


    #header {
        top: 0px !important;
    }

    #carouselExampleControls {
        margin-top: 62px;
    }

    .slider_img {
        height: 220px !important;
        /* margin-top: 6px; */
    }

    section {
        padding: 20px 0;
        overflow: hidden;
    }


    .about_home_img {
        height: 206px;
        width: 100%;
    }

    .blogBox .service-content {
        height: 268px;
        padding: 50px 30px 30px;
    }

    .blogBox img {
        width: 100%;
        height: 223px;
    }

    .abouttt_box {
        padding-top: 0px;
    }

    .about_side_img {
        height: 238px;
        width: 100%;
        position: relative;
    }

    #main {
        margin-top: 31px;
    }

    .before_after .about_h_b::after {
        width: 0%;
        height: 0px;
        top: 0px;
        left: 100%;
    }

    .about_content {
        width: 100%;
    }

    .breadcrumb {
        height: 122px;
    }

    .fasility_banner_font {
        top: 29%;
    }

    .facility_sectionn {
        margin-top: 55px;
    }

    .border_facility {
        border: none;
    }

    .facility_border_mob {
        border-top: none;
        border-bottom: 1px solid grey;
        border-left: none;
        border-right: none;
    }

    .package_section {
        margin-top: 20px;
    }

}

.e_cart {
    font-size: 23px;
    /* margin-top: 5px; */
    color: #00546d !important;
}

.cart_notification {
    position: absolute;
    left: 38px;
    top: -9px;
    text-align: center;
    border-radius: 7px;
    width: 18px;
    height: 18px;
    background-color: #ff6161;
    border: 1px solid #fff;
    font-weight: 400;
    color: #f0f0f0;
    line-height: 16px;
    font-size: 12px;
}

/* read more btn */

.read_more_btn {
    color: #fff;
    background-color: #118b98;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 15px 5px;
    border-radius: 0;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.read_more_btn:focus {
    color: #fff;
}

.read_more_btn:hover {
    color: #fff;
    padding-left: 45px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.read_more_btn:before {
    content: '';
    background: rgba(255, 255, 255, 0.3);
    height: 100%;
    width: 120%;
    transform-origin: right center;
    transform: translateX(-50%) rotate(0);
    position: absolute;
    left: 50%;
    top: -100%;
    z-index: -1;
    transition: all 0.3s ease 0s;
}

.read_more_btn:after {
    content: "\f105";
    background-color: rgba(0, 0, 0, 0.8);
    font-family: "Font Awesome 5 Free";
    font-size: 22px;
    font-weight: 900;
    line-height: 30px;
    height: 30px;
    width: 30px;
    padding: 0 0 0 3px;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: -50px;
    top: 50%;
    transition: all 0.3s ease 0s;
}

.read_more_btn:hover:before {
    top: -90%;
    transform: translateX(-50%) rotate(-10deg);
}

.read_more_btn:hover:after {
    left: 8px;
}

@media only screen and (max-width: 767px) {
    .read_more_btn {
        margin-bottom: 5px;
    }
}

.event_home_img {
    height: 200px;
    width: 100%;
}

.f_right {
    float: right;
}

.event_home_card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.news_img {
    height: 242px;
    width: 100%;
}

.line_clamp2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line_clamp3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line_clamp4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_height_p {
    height: 95px;
}

.news_card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height: 426px;
}

.text_color {
    color: #00546d;
}

/* gallery */
.box {
    /* background: #581a14; */
    font-family: 'Mandali', sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.box:before {
    content: "";
    background: #fff;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    transform: translateY(150%);
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.box:hover:before {
    transform: translateY(0);
}

.box img {
    width: 100%;
    height: 200px;
    transition: all 0.45s ease-in-out;
}

.box:hover img {
    opacity: 0.3;
}

.box-content {
    color: #fff;
    /* background: #36100c; */
    width: 85%;
    padding: 15px 5px;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: -50%;
    left: 50%;
    z-index: 2;
    transition: all 0.6s ease;
}

.box:hover .box-content {
    top: 50%;
}

.box .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 2px;
}

.box .post {
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 12px;
    display: block;
}

.box .icon {
    padding: 0;
    margin: 0;
    list-style: none;
}

.box .icon li {
    margin: 0 3px;
    display: inline-block;
}

.box .icon li a {
    color: #581a14;
    background: #fff;
    font-size: 15px;
    line-height: 33px;
    width: 34px;
    height: 34px;
    display: block;
    position: relative;
    transition: all 0.35s;
}

.box .icon li a:hover {
    color: #fff;
    background: #842f28;
    border-radius: 50px;
}

@media only screen and (max-width:990px) {
    .box {
        margin: 0 0 30px;
    }
}

/* teacher */

:root {
    --main-color: #196a6a;
}

.teacher_box {
    color: var(--main-color);
    font-family: 'Poppins', sans-serif;
    /* text-align: center; */
    padding: 35px 28px 25px;
    position: relative;
    z-index: 1;
}

.teacher_box:before,
.teacher_box:after {
    content: "";
    border-radius: 25px;
    border: 10px solid var(--main-color);
    clip-path: polygon(65% 0, 100% 0, 100% 35%, 35% 100%, 0 100%, 0 65%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.teacher_box:after {
    border-width: 3px;
    clip-path: polygon(0 0, 60% 0, 55% 5%, 96% 44%, 100% 40%, 100% 100%, 40% 100%, 43% 95%, 5% 55%, 0 60%);
    top: 3px;
    bottom: 3px;
    right: 3px;
    left: 3px;
}

.teacher_box .service-icon {
    font-size: 40px;
    margin: 0 0 10px;
}

.teacher_box .title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.teacher_box .description {
    color: #555;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 22px;
    margin: 0s;
}

.teacher_box.gray {
    --main-color: #252D36;
}

.teacher_box.purple {
    --main-color: #BE2EDD;
}

.teacher_box.blue {
    --main-color: #0bb7ce;
}

@media only screen and (max-width: 1199px) {
    .teacher_box {
        margin: 0 0 40px;
    }
}

.teacher_img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.course_img {
    height: 120px;
    width: 100%;
    border-radius: 5%;
}

/* staff */
.staff_box {
    font-family: 'Titillium Web', sans-serif;
    /* text-align: center; */
    padding: 10px 15px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.staff_box:before {
    content: "";
    background: #16a085;
    width: 80px;
    height: 15px;
    border-radius: 15px 15px 0 0;
    transform: translateX(-50%);
    position: absolute;
    top: -15px;
    left: 50%;
}

.staff_box .service-icon {
    color: #1abc9c;
    background: #fff;
    font-size: 50px;
    line-height: 93px;
    width: 118px;
    height: 119px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 10px solid #1abc9c;
    position: relative;
    transition: all 0.3s ease 0s;
}

.staff_box:hover .service-icon {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) inset;
}

.staff_box .service-icon i {
    transition: all 0.3s ease 0s;
}

.staff_box:hover .service-icon i {
    text-shadow: 0 0 2px #000;
    transform: rotateX(360deg) rotateY(360deg);
}

.staff_box .service-icon:before {
    content: "";
    background: #1abc9c;
    width: 55px;
    height: 35px;
    border-radius: 0 0 15px 15px;
    transform: translateX(-50%);
    position: absolute;
    top: -35px;
    left: 50%;
}

.staff_box .title {
    color: #16a085;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.staff_box .description {
    font-size: 15px;
    line-height: 28px;
}

.staff_box.purple:before {
    background: #8e44ad;
}

.staff_box.purple .service-icon {
    color: #9b59b6;
    border-color: #9b59b6;
}

.staff_box.purple .service-icon:before {
    background: #9b59b6;
}

.staff_box.purple .title {
    color: #8e44ad;
}

.staff_box.blue:before {
    background: #2980b9;
}

.staff_box.blue .service-icon {
    color: #3498db;
    border-color: #3498db;
}

.staff_box.blue .service-icon:before {
    background: #3498db;
}

.staff_box.blue .title {
    color: #2980b9;
}

.staff_box.red:before {
    background: #c0392b;
}

.staff_box.red .service-icon {
    color: #e74c3c;
    border-color: #e74c3c;
}

.staff_box.red .service-icon:before {
    background: #e74c3c;
}

.staff_box.red .title {
    color: #c0392b;
}

@media only screen and (max-width:990px) {
    .staff_box {
        margin: 0 0 30px;
    }
}


.shopping_img {
    height: 220px;
    width: 100%;
}

.product_card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.gallery_img {
    height: 200px;
    width: 100%;
}

.btn-info {
    background-color: #3c1fc9 !important;
    color: white;
}

.btn-info:hover {
    background-color: #3c1fc9 !important;
    color: white;
}

.btn_add_to_cart {
    color: #000;
    background-color: #409624;
    border-color: #409624;
}

.btn_add_to_cart:hover {
    color: #000;
    background-color: #409624 !important;
    border-color: #409624 !important;
}

/* LOGIN */


.login_page .form-container {
    background: #ecf0f3;
    font-family: 'Nunito', sans-serif;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 14px 14px 20px #cbced1, -14px -14px 20px white;
}

.login_page .form-container .form-icon {
    color: #3c1fc9;
    font-size: 55px;
    text-align: center;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50px;
    box-shadow: 7px 7px 10px #cbced1, -7px -7px 10px #fff;
}

.login_page .form-container .title {
    color: #3c1fc9;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 0 20px;
}

.login_page .form-container .form-horizontal .form-group {
    margin: 0 0 25px 0;
}

.login_page .form-container .form-horizontal .form-group label {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.login_page .form-container .form-horizontal .form-control {
    color: #333;
    background: #ecf0f3;
    font-size: 15px;
    height: 50px;
    padding: 20px;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px #fff;
    display: inline-block;
    transition: all 0.3s ease 0s;
}

.login_page .form-container .form-horizontal .form-control:focus {
    box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px #fff;
    outline: none;
}

.login_page .form-container .form-horizontal .form-control::placeholder {
    color: #808080;
    font-size: 14px;
}

.login_page .form-container .form-horizontal .btn {
    color: #000;
    background-color: #3c1fc9;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    padding: 12px 15px 11px;
    border-radius: 20px;
    box-shadow: 6px 6px 6px #cbced1, -6px -6px 6px #fff;
    border: none;
    transition: all 0.5s ease 0s;
}

.login_page .form-container .form-horizontal .btn:hover,
.login_page .form-container .form-horizontal .btn:focus {
    color: #fff;
    letter-spacing: 3px;
    box-shadow: none;
    outline: none;
}


.counter {
    padding: 30px 0;
}

.counter .counter-content {
    height: 140px;
    width: 140px;
    color: #303030;
    text-align: center;
    padding: 20px 10px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: all 0.3s;
}

.counter .counter-content:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.counter .counter-content:before,
.counter .counter-content:after {
    content: '';
    height: 180px;
    width: 180px;
    border: 3px solid #000000;
    border-left: none;
    border-right: none;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(10deg);
    transition: all 0.3s;
}

.counter .counter-content:after {
    border: 10px solid #1b196a;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.counter .counter-content:hover:before {
    transform: translateX(-50%) translateY(-50%) rotate(190deg);
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.9);
}

.counter .counter-content:hover:after {
    transform: translateX(-50%) translateY(-50%) rotate(-225deg);
}

.counter .counter-value {
    font-size: 35px;
    font-weight: 600;
}

.counter .title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.counter.purple .counter-content:before {
    border-color: #67478A;
}

.counter.purple .counter-content:after {
    border: 10px solid #67478A;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.counter.yellow .counter-content:before {
    border-color: #1b196a;
}

.counter.yellow .counter-content:after {
    border: 10px solid #1b196a;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.counter.blue .counter-content:before {
    border-color: #5A9BA1;
}

.counter.blue .counter-content:after {
    border: 10px solid #5A9BA1;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

@media screen and (max-width: 990px) {
    .counter {
        margin-bottom: 30px;
    }
}

/* Prinicipal MSG */

/* .animated_card
{
    width: 100%;
    height: 250px;
    background-color: #000;
    position: relative;
    box-shadow: 0px 0px 5px 2px #000;
    cursor: pointer;
    overflow: hidden;
} */
/* .animated_card::before
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-280deg);
    width: 160%;
    height: 130%;
    background-image: conic-gradient(#ff00bb 0deg, #ff00bb 90deg, transparent 130deg, transparent 180deg, #4530FF 180deg, #4530FF 270deg, transparent 310deg, transparent 360deg);
    transition: transform 2s;
} */
/* .animated_card:hover::before
{
    transform: translate(-50%,-50%) rotate(-100deg);
}
.animated_card::after
{
    content: '';
    background-image: url(/User/assets/img/slider3.jpg);
    color: #ddd;
    height: 300px;
    position: absolute;
    background-color: #000;
    display: flex;
    font-size: 17px;
    align-items: center;
    justify-content: center;
    height: 242px;
    width:90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
} */

.animated_border img {
    height: 350px;
    width: 100%;
}

/* textimonial */


.testimonial {
    background-color: white;
    text-align: center;
    padding: 30px 30px 50px;
    margin: 100px 15px 160px;
    position: relative;
}

.testimonial::before,
.testimonial::after {
    content: "";
    border-top: 40px solid white;
    border-right: 125px solid transparent;
    position: absolute;
    bottom: -40px;
    left: 0;
}

.testimonial::after {
    border-right: none;
    border-left: 125px solid transparent;
    left: auto;
    right: 0;
}

.testimonial .icon {
    display: inline-block;
    font-size: 80px;
    color: #016d9b;
    margin-bottom: 20px;
    opacity: 0.6;
}

.testimonial .description {
    font-size: 14px;
    color: #777;
    text-align: justify;
    margin-bottom: 30px;
    opacity: 0.9;
}

.testimonial .testimonial-content {
    width: 100%;
    left: 0;
    position: absolute;
}

.testimonial .pic {
    display: inline-block;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 4px 4px #016d9b;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.testimonial .pic img {
    width: 100%;
    height: auto;
}

.testimonial .name {
    font-size: 15px;
    font-weight: bold;
    color: white;
    text-transform: capitalize;
    margin: 10px 0 5px 0;
}

.testimonial .title {
    display: block;
    font-size: 14px;
    color: #ffd9b8;
}

.owl-controls {
    margin-top: 20px;
}

.owl-pagination {
    display: flex;
    justify-content: center;
}

.owl-page {
    height: 10px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10%;
}

.owl-page:hover,
.owl-page.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.owl-page:not(first-item) {
    margin-left: 10px;
}

.seven h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;

    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center;
}

.seven h1:after,
.seven h1:before {
    content: " ";
    display: block;
    border-bottom: 1px solid #f8f8f8;
    border-top: 1px solid #f8f8f8;
    height: 5px;
    /* background-color:#f8f8f8; */
}




/* textimonial */

@media (max-width: 767px) {
    .carousel-inner .textimonial_slider>div {
        display: none;
    }

    .carousel-inner .textimonial_slider>div:first-child {
        display: block;
    }
}

.carousel-inner .textimonial_slider.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

/* textimonial */
.textimonial_box {
    font-family: 'Lato', sans-serif;
    text-align: center;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    padding: 25px 10px 0;
    margin: 0 9px;
    /* background-color: #1b196a; */
    position: relative;
}

.textimonial_box:before {
    content: "";
    background: #ffffff;
    ;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 39px;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
}

.textimonial_box .service-icon {
    color: #fff;
    /* background: #F97F51; */
    font-size: 40px;
    line-height: 80px;
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    box-shadow: 7px 0 10px rgba(0, 0, 0, 0.3), 0 0 0 10px #fff, 5px 0 20px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    /* transform: rotate(45deg); */
    position: relative;
    transition: all 0.3s ease 0s;
}

.textimonial_box .service-icon i {
    transform: rotate(-45deg);
}

.textimonial_box .title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0 0 5px;
}

.textimonial_box .description {
    color: #ffffff;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}

.textimonial_box.blue:before,
/* .textimonial_box.blue .service-icon{
            background-color: #ff9f00;
        } */
.textimonial_box.blue .title {
    color: #ff9f00;
}

@media only screen and (max-width:990px) {
    .textimonial_box {
        margin: 0 0 30px;
    }
}

.textimonial_imgg {
    height: 87px;
    width: 80px;
    z-index: 9999;
    border-radius: 50%;
}

/* HOME TEACHER SECTION */
.home_teacher {
    color: #606060;
    padding: 0 10px 60px;
    background-color: #F9A11C;
    border: 1px solid transparent;
    border-radius: 20px;
    margin: 80px 0 30px;
    position: relative;
}

.home_teacher .service-content {
    text-align: center;
    padding: 15px 20px 30px;
    margin-top: -80px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 25px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s;
}

.home_teacher .service-content:hover {
    box-shadow: 0 0 20px -5px #000;
}

.home_teacher .service-content:after {
    content: '';
    height: 50px;
    width: 50px;
    border: 25px solid transparent;
    border-top: 25px solid #fff;
    transform: translateX(-50%);
    position: absolute;
    bottom: -50px;
    left: 50%;
}

.home_teacher .service-icon {
    display: inline-block;
    color: #F9A11C;
    font-size: 90px;
    margin-bottom: 10px;
    transition: all 0.3s ease 0s;
}

.home_teacher:hover .service-icon {
    transform: rotateX(360deg);
}

.home_teacher .title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.home_teacher .description {
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}

.home_teacher .read-more {
    display: block;
    width: 60%;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    background-color: #6D4D42;
    border-radius: 15px;
    transform: translateX(-50%);
    transition: all 0.3s ease 0s;
    position: absolute;
    left: 50%;
    bottom: -20px;
}

.home_teacher .read-more:hover {
    text-decoration: none;
    letter-spacing: 2px;
    box-shadow: 0 0 10px #000;
}

/* .home_teacher.green{background-color: #1b196a;} */
.home_teacher.green .service-icon {
    color: #1b196a;
}

.home_teacher.green .read-more {
    background-color: #312dd3;
}

@media only screen and (max-width:990px) {
    .home_teacher {
        margin-bottom: 60px;
    }

    .home_teacher .service-content {
        padding: 20px 15px 30px;
    }
}

@media only screen and (max-width:767px) {
    /* .home_teacher{ margin-bottom: 130px; } */
}

.home_teacher_img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.about_section {
    margin-top: 123px;
}

.home_slider_heading {
    font-size: 70px !important;
    color: rgb(0, 0, 0);
}

.home_slider_para {
    font-size: 30px !important;
    color: rgb(0, 0, 0);
}

.news_image {
    height: 200px;
    width: 100%;
}

.main_section2 {
    margin-top: 95px;
}
