/**
* Template Name: Medicio
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden !important;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #65c9cd;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
} */

/* #preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #167344;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
} */

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #167344;
    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: #5ec6ca;
    color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #830540;
    color: #fff;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    z-index: 996;
    transition: all 0.5s;
}

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

#topbar i {
    padding-right: 6px;
    line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #ffffff;
    transition: all 0.5s;
    z-index: 997;
    padding: 0px;
    /* top: 40px; */
    /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 992px) {
    #header {
        /* padding: 15px 0; */
    }
}

#header.header-scrolled {
    top: 0;
    background: rgb(255, 255, 255);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;

}

.navchangecolor {
    color: rgb(0, 0, 0) !important
}

/* #navbar a{
  color: red !important;
} */

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

#header .logo img {
    height: 80px;
    width: 80px;
}

@media(max-width:576px) {
    #header .logo img {
        height: 76px;
        width: 76px;
    }
}

/**
* Appointment Button
*/

.appointment-btn {
    margin-left: 25px;
    background: #167344;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.appointment-btn:hover {
    background: #65c9cd;
    color: #fff;
}

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

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 9px 10px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 500;
}

.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: #ffffff; */
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    border-top: 2px;
    border-top: #5b045b 3px solid;

    background: white;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    color: #000000 !important;
}

.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: #000000 !important;
}

.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%;
    }
}

.navbar a {
    color: #000000;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #555555;
    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(60, 60, 60, 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;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

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

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

.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: #167344;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(60, 60, 60, 0.8);
    overflow: hidden;
    position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#hero .container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-top: 4px solid #167344;
}

@media (max-width: 1200px) {
    #hero .container {
        margin-left: 50px;
        margin-right: 50px;
    }
}

#hero h2 {
    color: #2f2f2f;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}

#hero p {
    margin: 0 auto 30px auto;
    color: #555555;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(63, 187, 192, 0.8);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: #167344;
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #167344;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    background: #167344;
}

#hero .btn-get-started:hover {
    background: #65c9cd;
}

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

    #hero .container {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 160vh;
    }
}

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

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

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

.section-title h2 {
    font-size: 32px;
    font-family: 'bootstrap-icons';
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

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

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

.slider_img {
    height: 600px;
    width: 100%;
    margin-top: 80px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #ecf8f9;
    min-height: 40px;
    margin-top: 120px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 70px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    /* box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12); */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.featured-services .icon-box::before {
    content: "";
    position: absolute;
    background: #d9f1f2;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .icon-box:hover::before {
    background: #167344;
    top: 0;
    border-radius: 0px;
}

.featured-services .icon {
    margin-bottom: 15px;
}

.featured-services .icon i {
    font-size: 48px;
    line-height: 1;
    color: #167344;
    transition: all 0.3s ease-in-out;
}

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.featured-services .title a {
    color: #111;
}

.featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
    color: #fff;
}

.featured-services .icon-box:hover .icon i {
    color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: #167344;
    color: #fff;
    background-size: cover;
    padding: 30px 0;
}

.cta h3 {
    font-size: 28px;
    font-weight: 700;
}

.cta .cta-btn {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #fff;
    color: #167344;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #167344;
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding-bottom: 30px;
}

.counts .count-box {
    box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
}

.counts .count-box i {
    display: block;
    font-size: 30px;
    color: #167344;
    float: left;
}

.counts .count-box span {
    font-size: 42px;
    line-height: 24px;
    display: block;
    font-weight: 700;
    color: #555555;
    margin-left: 50px;
}

.counts .count-box p {
    padding: 30px 0 0 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

.counts .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #7b7b7b;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
    color: #167344;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.features .icon-box i {
    font-size: 48px;
    float: left;
    color: #167344;
}

.features .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

/* :root{ --main-color : #a05ca1; }
.counter{
    color: #a05ca1;
    background: #a05ca1;
    font-family: 'Crete Round', serif;
    text-align: center;
    width: 245px;
    padding: 70px 15px 50px;
    margin: 50px auto 0;
    border-radius: 25px;
    box-shadow: -1px -1px 0 1px #a05ca1, 1px 1px 0 1px #a05ca1;
    position: relative;
    z-index: 1;
}
.counter:before{
    content:"";
    background: #fff;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius:100%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}
.counter .counter-icon{
    color: #fff;
    background: var(--main-color);
    font-size: 35px;
    line-height: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: -35px;
    left: 50%;
    box-shadow: -1px -1px 0 1px #a05ca1, 1px 1px 0 1px #a05ca1;
}
.counter h3{
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.counter .counter-value{
    font-size: 35px;
    line-height: 35px;
    font-weight: 600;
    display: block;
}
.counter.purple{ --main-color: #6c5ce7; }
.counter.purple,
.counter.purple .counter-icon{ box-shadow: -1px -1px 0 1px #978ed8, 1px 1px 0 1px #2d1bb3; }
.counter.blue{ --main-color: #2880ac; }
.counter.blue,
.counter.blue .counter-icon{ box-shadow: -1px -1px 0 1px #508dab, 1px 1px 0 1px #084a6b; }
.counter.pink{ --main-color: #e84393; }
.counter.pink,
.counter.pink .counter-icon{ box-shadow: -1px -1px 0 1px #f36dae, 1px 1px 0 1px #9e1356; }
@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
}    */

/* <script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.min.js"></script>

$(document).ready(function(){
    $('.counter-value').each(function(){
        $(this).prop('Counter',0).animate({
            Counter: $(this).text()
        },{
            duration: 3500,
            easing: 'swing',
            step: function (now){
                $(this).text(Math.ceil(now));
            }
        });
    });
});
License Terms */



/*--------------------------------------------------------------
# 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: #167344;
}

.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: #167344;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

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

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
    border: 0;
}

.departments .nav-link {
    border: 0;
    padding: 20px;
    color: #555555;
    border-radius: 0;
    border-left: 5px solid #fff;
    cursor: pointer;
}

.departments .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.departments .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.departments .nav-link:hover h4 {
    color: #167344;
}

.departments .nav-link.active {
    background: #f7fcfc;
    border-color: #167344;
}

.departments .nav-link.active h4 {
    color: #167344;
}

.departments .tab-pane.active {
    animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
    float: left;
    max-width: 300px;
    padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
    .departments .tab-pane img {
        float: none;
        padding: 0 0 15px 0;
        max-width: 100%;
    }
}

.departments .tab-pane h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #167344;
}

.departments .tab-pane p {
    color: #777777;
}

.departments .tab-pane p:last-child {
    margin-bottom: 0;
}

@keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    /* min-height: 254px; */
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #006634;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #ffffff;
    height: 250px;
    color: black;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #167344;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #167344;
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 4px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.doctors .member .member-img {
    position: relative;
    overflow: hidden;
}

.doctors .member .social {
    position: absolute;
    width: 100% !important;
    left: 0;
    bottom: 0;
    right: 0;
    height: 250px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: math;
}

.doctors .member .social a {
    transition: color 0.3s;
    color: #555555;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.doctors .member .social a i {
    line-height: 0;
}

.doctors .member .social a:hover {
    color: #167344;
}

.doctors .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.doctors .member .member-info {
    padding: 15px 15px;
    background-color: #521252;
    height: 114px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}

.doctors .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #ffffff;
}

.doctors .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
}

.doctors .member .member-info p {
    /* font-style: italic; */
    font-size: 14px;
    font-family: math;
    line-height: 26px;
    color: #ffffff;
}

.doctors .member:hover .social {
    opacity: 1;
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
    padding: 20px 0 30px 0;
}

.contact .info-box i {
    font-size: 32px;
    color: #167344;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #c5ebec;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
    padding: 30px;
}

.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: 4px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #167344;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

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

.contact .php-email-form button[type=submit] {
    background: #167344;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #167344;
    padding: 0 0 30px 0;
    color: #ffffff;

    font-size: 14px;
}

#footer .footer-top {
    background: #167344;
    padding: 31px 0 0px 0;
    border-bottom: 2px solid white;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fdfdfd;
    color: #0c8923;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    /* background: #65c9cd; */
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #ffffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #ffffff;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #167344;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #65c9cd;
}

#footer .copyright {
    text-align: center;
    padding-top: 16px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
}



.serviceBox {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 15px 0 50px;
    margin: 0 10px;
    border-radius: 30px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.serviceBox:before,
.serviceBox:after {
    content: "";
    background: linear-gradient(to top right, #a25aa3 49%, transparent 50%);
    width: 60px;
    height: 60px;
    border-radius: 0 0 0 30px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.serviceBox:after {
    background: linear-gradient(to top left, #a25aa3 49%, transparent 50%);
    border-radius: 0 0 30px 0;
    left: auto;
    right: 0;
}

.serviceBox .service-icon {
    color: #fff;
    background-image: linear-gradient(to bottom right, #147243, #a25ba2);
    font-size: 45px;
    line-height: 75px;
    height: 75px;
    margin: 0 -10px 30px;
    border-radius: 30px 30px 0 0;
    position: relative;
}

.serviceBox .service-icon:before,
.serviceBox .service-icon:after {
    content: "";
    background: linear-gradient(to top right, transparent 49%, #a25aa3 50%);
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.serviceBox .service-icon:after {
    background: linear-gradient(to top left, transparent 49%, #a25aa3 50%);
    left: auto;
    right: 0;
}

.serviceBox .title {
    color: #167344;
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 10px 10px;
}

.serviceBox .description {
    color: #888;
    font-size: 14px;
    line-height: 23px;
    margin: 0 20px;
}

.serviceBox.yellow {
    --color1: #FCA91B;
    --color2: #C67C18;
}

.serviceBox.orange {
    --color1: #F85E1E;
    --color2: #CF5124;
}

.serviceBox.green {
    --color1: #2BB239;
    --color2: #278B31;
}

.section_img {
    /* height: 250px; */
    width: 100% !important;
}

.cancer_home_img {
    /* height: 240px; */
    width: 100%;
}

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

.paragraph_font {
    font-family: emoji;
    font-size: 18px;
}

.line_clmp5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn_grad {
    /* background-image: linear-gradient(to right, #314755 0%, #26a0da  51%, #314755  100%); */
    /* background-color: #6b0f1a;
background-image: linear-gradient(to right, #6b0f1a , yellow); */
    background-image: linear-gradient(to top, #a25aa3 0%, #62c395 100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white !important;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn_grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

/* .counter_home{
  color: var(--main-color);
  font-family: 'Bitter', serif;
  text-align: center;
  padding: 12px 0 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
} */
/* .counter_home:before,
.counter_home:after{
  content: '';
  background-color: #a25ba3;
  height: 105px;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  right: 8px;
  z-index: -1;
}
.counter_home:after{
  background-color: transparent;
  height: 107px;
  border: 5px solid #a25ba3;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 105px;
  left: 0;
  right: 0;
} */
/* .counter_home .counter-content{
  background-color: #fff;
  height: 163px;
  width: 163px;
  padding: 30px 20px;
  margin: 0 auto 5px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.counter_home .counter-value{
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 5px;
  display: block;
}
.counter_home h3{
  color: #555;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-transform: capitalize;
  margin: 0 0 15px;
} */
/* .counter_home .counter-icon{
  background-color: #fff;
  font-size: 25px;
  line-height: 52px;
  height: 50px;
  width: 50px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.counter_home.blue{ --main-color: #428d66; }
.counter_home.green{ --main-color: #0fbf81; }
.counter_home.purple{ --main-color: #4834D4; }
@media screen and (max-width:990px){
  .counter{ margin-bottom: 40px; }
}    */

.slider_font {
    font-size: 60px !important;
}

/* faq */
.faq_class {
    box-shadow: none !important;
    background-color: darkgreen !important;
    color: white !important;
}

.about_us_page_box {
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
    padding: 0 15px 50px;
    margin-top: 15px;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
}

.about_us_page_box:before {
    content: "";
    background: linear-gradient(to bottom, #990099, #990099);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0% 80%, 0 0);
    clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0% 80%, 0 0);
}

.about_us_page_box .service-icon {
    background: rgb(5 83 46);
    font-size: 60px;
    line-height: 110px;
    width: 100px;
    height: 110px;
    margin: -20px auto 20px;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: all 0.3s;
}

.about_us_page_box:hover .service-icon {
    text-shadow: 0 0 5px #000;
    font-size: 65px;
}

.about_us_page_box .service-icon:before,
.about_us_page_box .service-icon:after {
    content: "";
    background: linear-gradient(-45deg, #28595f 49%, transparent 50%);
    height: 20px;
    width: 20px;
    position: absolute;
    top: 0;
    left: -20px;
}

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

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

.about_us_page_box .description {
    font-size: 15px;
}

.about_us_page_box.red:before {
    background: linear-gradient(to bottom, #E53947, #f85c6c);
}

.about_us_page_box.red .service-icon {
    background: #e0535f;
}

.about_us_page_box.red .service-icon:before,
.about_us_page_box.red .service-icon:after {
    background: linear-gradient(-45deg, #752027 49%, transparent 50%);
}

.about_us_page_box.blue:before {
    background: linear-gradient(to bottom, #174B6D, #644B82);
}

.about_us_page_box.blue .service-icon {
    background: #156092;
}

.about_us_page_box.blue .service-icon:before,
.about_us_page_box.blue .service-icon:after {
    background: linear-gradient(-45deg, #15374d 49%, transparent 50%);
}

.about_us_page_box.green:before {
    background: linear-gradient(to bottom, #12AB8F, #68BA58);
}

.about_us_page_box.green .service-icon {
    background: #0a977d;
}

.about_us_page_box.green .service-icon:before,
.about_us_page_box.green .service-icon:after {
    background: linear-gradient(-45deg, #2b665b 49%, transparent 50%);
}

@media only screen and (max-width:990px) {
    .about_us_page_box {
        margin: 15px 0 40px;
    }
}

.margit_section_top {
    margin-top: 94px;
}

.margit_section_topone {
    margin-top: 120px;
}

@media(max-width:576px) {
    .margit_section_topone {
        margin-top: 90px;
    }
}

.misson_card {
    color: var(--main-color);
    background: #970299;
    font-family: 'Nanum Gothic', sans-serif;
    text-align: center;
    padding: 35px 25px;
    margin: 0 10px;
    border-radius: 20px;
    position: relative;
    z-index: 3;
}

.misson_card:before,
.misson_card:after {
    content: "";
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.misson_card:before {
    background: #fff;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 15px 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.misson_card:after {
    width: calc(100% + 20px);
    height: calc(100% - 50px);
    border: 4px solid #006734;
    border-radius: 5px 5px;
    z-index: -2;
}

.mission-icon {
    color: #006734;
    font-size: 35px;
    transition: all 0.3s;
    margin: 0px auto 6px;

}

.missino_title {
    color: #006734;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 7px;
}

.misson_description {
    color: #555;
    font-size: 17px;
    font-family: sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 22px;
    margin: 0;
}

.misson_card.green {
    --main-color: #10ac84;
}

.misson_card.red {
    --main-color: #F96B51;
}

.misson_card.blue {
    --main-color: #029AB3;
}

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

.about_us_img {
    height: 503px;
    width: 100%;
    border-radius: 20px;
}

.people_img {
    /* height: 300px; */
    width: 100% !important;
}

.slider_top {
    /* margin-top:90px; */
}


/* CONTACT */

.right_conatct_social_icon {
    background: linear-gradient(to top right, #006734 -5%, #006734 100%);
}

/* .contact_us{
    padding: 120px 0px;
} */

.contact_inner {
    background-color: #fff;
    position: relative;
    box-shadow: 20px 22px 44px #cccc;
    border-radius: 25px;
}

.contact_field {
    padding: 60px 340px 90px 100px;
}

.right_conatct_social_icon {
    height: 100%;
}

.contact_field h3 {
    color: #000;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px
}

.contact_field p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.contact_field .form-control {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
}

.contact_field .form-control:focus {
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #1325e8;
}

.contact_field .form-control::placeholder {
    font-size: 13px;
    letter-spacing: 1px;
}

.contact_info_sec {
    position: absolute;
    background-color: #732b75;
    right: 1px;
    top: 18%;
    height: 340px;
    width: 340px;
    padding: 40px;
    border-radius: 25px 0 0 25px;
}

.contact_info_sec h4 {
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.info_single {
    margin: 30px 0px;
}

.info_single i {
    margin-right: 15px;
}

.info_single span {
    font-size: 14px;
    letter-spacing: 1px;
}

button.contact_form_submit {
    background: linear-gradient(to top right, #942c94 -5%, #a25aa3 100%);
    border: none;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    margin-top: 25px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
}

.socil_item_inner li {
    list-style: none;
}

.socil_item_inner li a {
    color: #fff;
    margin: 0px 15px;
    font-size: 14px;
}

.socil_item_inner {
    padding-bottom: 10px;
}

.map_sec {
    padding: 50px 0px;
}

.map_inner h4,
.map_inner p {
    color: #000;
    text-align: center
}

.map_inner p {
    font-size: 13px;
}

.map_bind {
    margin-top: 50px;
    border-radius: 30px;
    overflow: hidden;
}

.ngo_btn {
    background-color: #990099;
    color: white;
}

.section_all {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.section-title-border {
    background-color: #000;
    height: 1 3px;
    width: 44px;
}

.section-title-border-white {
    background-color: #fff;
    height: 2px;
    width: 100px;
}

.text_custom {
    color: #00bd2a;
}

.about_icon i {
    font-size: 22px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    display: inline-block;
    background: #fff;
    border-radius: 35px;
    color: #00bd2a;
    box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}



.about_icon span {
    position: relative;
    top: -10px;
}

.about_content_box_all {
    padding: 28px;
}

.indivisual_support_img {
    /* height: 300px; */
    width: 100%;
}

.bread_crumb {
    background: linear-gradient(rgba(92, 91, 91, 0.75),
            rgba(0, 0, 0, .75)), url('/user/assets/img/ngo.jpg');
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    margin-top: 80px;
    background-position: center;
}

.bread_crumb2 {
    background: linear-gradient(rgba(60, 60, 60, 0.75),
            rgba(57, 57, 57, 0.75)), url('/user/assets/img/ngo.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
    margin-top: 80px;
}

.bread_crumb3 {
    background: linear-gradient(rgba(101, 101, 101, 0.75),
            rgba(47, 47, 47, 0.75)), url('/user/assets/img/ngo.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
    margin-top: 80px;
}

.bread_crumb4 {
    background: linear-gradient(rgba(92, 92, 92, 0.75),
            rgba(64, 64, 64, 0.75)), url('../img/ngo.jpg') center center no-repeat;
    background-size: cover;
    height: 360px;
    margin-top: 80px;
    width: 100%;
}
.bread_crumb5 {
    background: linear-gradient(rgba(92, 92, 92, 0.75),
            rgba(64, 64, 64, 0.75)), url('../img/ngo.jpg') center center no-repeat;
    background-size: cover;
    height: 360px;
    margin-top: 80px;
    width: 100%;
}
@media(max-width:576px) {
    .bread_crumb4 {

        height: 200px;

    }
}

.breadcrumb {
    display: inline-block;
    padding: 0;
    margin: 0;
    background: transparent;
    overflow: hidden;
}

.bread_crumb .container {
    padding: 90px 0;
}

.breadcrumb li {
    float: left;
    margin-right: 5px;
    border: 2px solid #a25aa2;
    border-radius: 10px;
    background: #a25aa2;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    position: relative;
}

.breadcrumb li:last-child {
    padding: 10px 15px;
    background: #fff;
    margin-right: 0;
    color: #a25aa2;
}

.breadcrumb li:before {
    content: "" !important;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #a25aa2;
    position: absolute;
    top: 50%;
    right: -13px;
    z-index: 1;
    transform: translateY(-50%);
}

.breadcrumb li:last-child:before {
    display: none;
}

.breadcrumb li:after {
    content: "";
    display: block;
    width: 18px;
    height: 30px;
    border-radius: 7px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
}

.breadcrumb li:first-child:after {
    display: none;
}

.breadcrumb li a {
    display: block;
    padding: 10px 15px 10px 25px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.breadcrumb li:first-child a {
    padding: 10px 15px;
}

.breadcrumb li a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 479px) {
    .breadcrumb li a {
        padding: 7px 7px 7px 11px;
        font-size: 12px;
    }

    .breadcrumb li:last-child,
    .breadcrumb li:first-child a {
        padding: 7px;
        font-size: 12px;
    }

    .breadcrumb li:before {
        width: 15px;
        height: 18px;
        right: -12px;
    }

    .breadcrumb li:after {
        width: 13px;
        height: 22px;
        left: -7px;
    }
}

.color_privacy_polic {
    color: #9a079a;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.moving-border {
    width: 100%;
    height: 232px;
    position: relative;
    background: #ffffff;
    padding: 17px;
}

.moving-border::before,
.moving-border::after {
    content: "";
    position: absolute;
    inset: -0.2rem;
    z-index: -1;
    background: linear-gradient(var(--angle),
            #032146, #C3F2FF, #b00);
    animation: rotate 10s linear infinite;
}

.moving-border::after {
    filter: blur(10px);
}

@keyframes rotate {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

.one h1 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.one h1:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    margin-left: -14px;
    background-color: #b80000;
}

.one h1:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    margin-left: -50px;
    background-color: #b80000;
}

.logo_footer {
    height: 60px;
    width: 80px;
    margin-bottom: 8px;
}

.agreculture_img {
    height: 600px;
    width: 100%;
}

@media(max-width:576px) {
    .agreculture_img {
        height: 260px;
        width: 100%;
    }
}

.health_card {
    height: 250px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background: #d312bc;
    color: white;
}

.health_card:hover {
    height: 250px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background: white;
    color: #d312bc;
}

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

.btn_map {
    background: #d312bc;
    color: white;
}

.btn_map:hover {
    background: #d312bc;
    color: white;
}

:root {
    --main-color: #d312bc;
}

.counter_box {
    color: var(--main-color);
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 0 30px 30px;
    height: 400px;
    position: relative;
    z-index: 1;
}

.counter_box:before,
.counter_box:after {
    content: "";
    background: #fff;
    border-radius: 20px;
    position: absolute;
    top: 38px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: -1;
}

.counter_box:after {
    background-color: var(--main-color);
    border-radius: 30px;
    top: 55%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.counter_box .service-icon {
    color: #fff;
    background: var(--main-color);
    font-size: 35px;
    line-height: 67px;
    width: 75px;
    height: 75px;
    margin: 0 auto 60px;
    border-radius: 50%;
    border: 5px solid #fff;
    position: relative;
}

.counter_box .service-icon:before,
.counter_box .service-icon:after {
    content: '';
    background-color: var(--main-color);
    height: 70px;
    width: 140px;
    border-radius: 0 0 100px 100px/0 0 100px 100px;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
}

.counter_box .service-icon:before {
    height: 10px;
    width: 170px;
    border-radius: 10px 10px 0 0;
    top: auto;
    bottom: 50%;
}

.counter_box .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: 0 4px rgba(0, 0, 0, 0.05);
    margin: 0 0 10px;
}

.counter_box .description {
    color: #060606;
    font-size: 16px;
    line-height: 25px;
    margin: 0;
}

/* .counter_box.orange{ --main-color: #e77a1b; }
.counter_box.blue{ --main-color: #0C6CBA; }
.counter_box.green{ --main-color: #4CA131; } */
@media only screen and (max-width: 1199px) {
    .counter_box {
        margin: 0 0 30px;
    }
}


.news_event {
    height: 250px;
    width: 100%;
}

.counter_icon {
    color: white;
    margin-bottom: 10px;
    font-size: 50px;
}

.blog_div {
    height: 250px;
    padding: 15px 15px;
    background-color: #521252;
    font-family: 'boxicons';
}

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

.blog_btn {
    background: white;
    color: #521252;
    font-family: 'boxicons';
}

.blog_btn:hover {
    background: white;
    color: #521252;
    font-family: 'boxicons';
}

.bolg_img_new {
    height: 300px;
    width: 100%;
}

.section_padding {
    /* padding: 60px 0 !important; */
}

.about_p {
    font-size: 21px;
    color: black;
    font-family: 'emoji'
}

.moretext {
    display: none;
}

.gradient_btn {
    background-image: linear-gradient(to right, rgb(157 94 157), rgb(238 43 137));
    color: white;
}

/* Slider css */
