@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,800;1,900&amp;display=swap');
@import url('fontawesome-all.css');
@import url('flaticon.css');
@import url('owl.css');
@import url('jquery.fancybox.min.css');

/*** 

====================================================================
	Reset
====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}


/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
    font-size: 14px;
    color: #000000;
    line-height: 1.6em;
    font-weight: 500;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #f52429;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: 500;
    margin: 0px;
    background: none;
    /* line-height: 1.8em; */
}

textarea {
    overflow: hidden;
}

button {
    outline: none !important;
    cursor: pointer;
}

p,
.text {
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    margin: 0;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    z-index: 9;
    overflow: hidden;
}

.page-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/bg.jpg);
    opacity: .23;
}

.auto-container {
    position: relative;
    max-width: 1400px;
    padding: 0px 15px;
    margin: 0 auto;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

figure {
    margin-bottom: 0;
}

.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

.centered {
    text-align: center !important;
}


/*Btn Style One*/

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 21px;
    color: #ec1f26;
    padding: 6px 12px;
    border: 2px solid #091b4e;
    font-weight: 600;
    overflow: hidden;
    border-radius: 30px;
    background-color: #fff;
}

.btn-style-one:hover {
    color: #ffffff;
    background: linear-gradient(to left, #091b4e, #ec1f26);
    border: 2px solid;
}

@keyframes rainbow {
    0% {
        background-color: #25bdd8;
    }

    25% {
        background-color: #5798fe;
    }

    50% {
        background-color: #7cbe47;
    }

    75% {
        background-color: #9c49fa;
    }

    100% {
        background-color: #ff4880;
    }
}

@-webkit-keyframes rainbow {
    0% {
        background-color: #25bdd8;
    }

    25% {
        background-color: #5798fe;
    }

    50% {
        background-color: #7cbe47;
    }

    75% {
        background-color: #9c49fa;
    }

    100% {
        background-color: #ff4880;
    }
}


/*Btn Style Two*/

.btn-style-two {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    padding: 25px 50px;
    font-weight: 700;
    overflow: hidden;
    border-radius: 5px;
    background-color: #1e2c67;
}

.btn-style-two .btn-title {
    position: relative;
}

.btn-style-two:hover {
    color: #1e2c67;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.btn-style-two:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}


/*Btn Style Three*/

.btn-style-three {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #f1ecff;
    font-weight: 500;
    padding: 10px 32px;
    background-color: #1a2940;
    overflow: hidden;
    border-radius: 5px;
    transition: all 300ms linear;
}

.btn-style-three .btn-title {
    position: relative;
}

.btn-style-three:hover {
    color: #1a2940;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-three:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.btn-style-three:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}


/*Btn Style Four */

.btn-style-four {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 500;
    overflow: hidden;
    border: 1px solid #333333;
    background-color: #333333;
}

.btn-style-four:hover {
    color: #333333;
    border: 1px solid #ffffff;
    -webkit-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    -moz-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    -ms-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    -o-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
}


/*=== Social Icon One ===*/

.social-icon-one {
    position: absolute;
    right: 70px;
    top: 10px;
    z-index: 9;
    width: auto;
    text-align: center;
}

.shr_btn {
    position: absolute;
    background: #091b4e;
    color: #fff;
    width: 119px;
    padding: 7px 0;
    font-size: 20px;
    transform: rotate(-90deg);
    left: -42px;
    transition: all ease-in-out .8s;
    cursor: pointer;
    top: 0;
}

.social_share .shr_btn {
    left: -82px;
}

.state_of_art {
    position: absolute;
    left: 160px;
    top: 0;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    background: #c5223c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 0px 0px 22px 22px;
}

.state_of_art span {
    color: #f4f4f4;
}

.social-icon-one .sclul {
    position: relative;
    transition: all ease-in-out .8s;
}

.social_share .social-icon-one .sclul {
    right: 0px;
}

.social-icon-one li {
    position: relative;
    display: inline-block;
}

.social-icon-one li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 38px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #4681c0;
    text-align: center;
    font-weight: 400;
    border-radius: 3px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 3px 0;
    box-shadow: inset 0px 0px 10px #989898;
}

.social-icon-one li:nth-child(2) a {
    color: #ff0090;
}

.social-icon-one li:nth-child(3) a {
    color: #199030;
}

.social-icon-one li:nth-child(4) a {
    color: red;
}

.social-icon-one li:nth-child(5) a {
    background: linear-gradient(45deg, #b30d1c, #ff6c81);
}

.social-icon-one li a:hover {
    color: #fff;
    background: #ff0004;
}

.social-icon-one li:first-child {
    margin-left: 0;
}

._scl_close {
    color: #ec1f26;
    display: inline-block;
    font-weight: 600;
    font-size: 32px;
    cursor: pointer;
}

.appointment {
    width:160px;
    /* top: 20rem; */
    position: absolute;
        /* right: -103px; */
    background: #ff3437;
    color: #ffffff !important;
    font-size: 18px;
    text-transform: uppercase;
    padding: 7px 17px;
    cursor: pointer;
    /* transform: rotate(-90deg); */
    transition: all ease-in-out .8s;
    z-index: 91;
    border-radius: 20px 20px 20px 20px;
    -webkit-animation: NAME-YOUR-ANIMATION 5s infinite;
    /* Safari 4+ */
    -moz-animation: NAME-YOUR-ANIMATION 5s infinite;
    /* Fx 5+ */
    -o-animation: NAME-YOUR-ANIMATION 5s infinite;
    /* Opera 12+ */
    animation: NAME-YOUR-ANIMATION 5s infinite;
    /* IE 10+, Fx 29+ */
}
@-webkit-keyframes NAME-YOUR-ANIMATION {
    0%,
    19% {
        background-color: #C5223C;
    }
    20%,
    39% {
        background-color: #EA4335;
    }
    40%,
    59% {
        background-color: #c2991c;
    }
    60%,
    79% {
        background-color: #119033;
    }
    80%,
    100% {
        background-color: #1900ff;
    }

}

.appointment:hover {
    color: #fff;
}

.social_share .appointment {
    left: -105px;
}


/*=== Social Icon Two ===*/

.social-icon-two {
    position: relative;
    text-align: center;
    margin-top: 15px;
    display: inline-block;
    background: rgb(255 255 255 / 22%);
    padding: 9px 17px;
    border-radius: 32px;
}

.social-icon-two li {
    position: relative;
    display: inline-block;
}

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 18px;
    width: 36px;
    height: 36px;
    line-height: 32px;
    color: #007bff;
    border: 1px solid;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    margin: 0 1px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background: #fff;
}

.social-icon-two li:nth-child(2) a {
    color: red;
}

.social-icon-two li:nth-child(3) a {
    color: #e014d0;
}

.social-icon-two li:nth-child(4) a {
    color: #ff0002;
}

.social-icon-two li:nth-child(5) a {
    color: #e50932;
}

.social-icon-two li a:hover {
    color: #ffffff;
    background: #ff3437;
}

.social-icon-two li a:first-child {}

.f_map_widjet a {
    display: inline-block;
    position: relative;
    margin-top: 4px;
    border: 2px solid #ccc;
    padding: 6px;
    text-align: center;
}

.f_map_widjet a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
}

.f_map_widjet span {}


/*=== List Style One ===*/

.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #222222;
    font-weight: 500;
    padding-left: 25px;
    margin-bottom: 13px;
}

.list-style-one li:before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 14px;
    line-height: 26px;
    padding: 0px;
    color: #ff4788;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
    color: #44bce2;
}


/*=== List Style Two ===*/

.list-style-two {
    position: relative;
}

.list-style-two li {
    position: relative;
    font-size: 15px;
    line-height: 25px;
    color: #666666;
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 15px;
}

.list-style-two li:before {
    content: "\f182";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 15px;
    line-height: 25px;
    padding: 0px;
    color: #666666;
    font-family: "LineAwesome";
}

.list-style-two li a:hover {
    color: #44bce2;
}

.theme_color {
    color: #fa7720;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.tabs-box {
    position: relative;
}

.tabs-box .tab {
    display: none;
}

.tabs-box .active-tab {
    display: block;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.html);
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.dropdown-toggle::after {
    display: none;
}

.fa {
    line-height: inherit;
}


/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 36px;
    height: 40px;
    color: #ffffff;
    font-size: 20px;
    line-height: 41px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #c5223c;
    display: none;
    border-radius: 21px 21px 0px 0px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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


/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header {
    position: absolute;
    z-index: 999;
    width: 100%;
}

.main-header.fixed-header {}

.main-header .header-top {
    position: absolute;
    text-align: right;
    right: 0;
    z-index: 99;
    top: 66px;
}

.main-header .auto-container {
    max-width: 1155px;
}


/* Top Left*/

.main-header .header-top .top-left {
    position: relative;
    background: transparent;
    padding: 0;
    display: inline-block;
}

.main-header .header-top .top-left::before {
    content: "";
    position: absolute;
}

.main-header .header-top .info-list {
    position: relative;
    display: inline-block;
}

.main-header .header-top .info-list li {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 12px;
    color: #000000;
    font-weight: 500;
    margin: 0 0px;
}


.main-header .header-top .info-list li a {
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    color: inherit;
    font-weight: 600;
}

.main-header .header-top .info-list li a:hover {
    color: #ec1f26;
}

.main-header .header-top .info-list li span.fa {
    position: relative;
    display: inline-block;
    margin-right: 7px;
    color: #ffffff;
    font-size: 17px;
    line-height: 36px;
    width: 32px;
    height: 38px;
    background: #ff3437;
    font-weight: 600;
    text-align: center;
    border-radius: 15px 15px 0px 0px;
}

.main-header .header-top .top-right {
    position: relative;
    float: right;
}

.main-header .header-top .login-info {
    position: relative;
}

.social-links {
    position: absolute;
    z-index: 9;
    width: 40px;
    left: 12px;
    top: 20rem;
}

.main-header .header-top .login-info li {
    position: relative;
    float: left;
    font-size: 14px;
    line-height: 30px;
    color: #c8bee3;
    font-weight: 700;
    padding: 10px 0;
    margin-left: 13px;
}

.main-header .header-top .login-info li a {
    display: inline-block;
    color: #c8bee3;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-top .login-info li a:hover {
    color: #25bdd8;
}


/*=== Header Upper ===*/

.main-header .header-upper {
    position: relative;
    background: #fff;
}

.main-header .header-upper .logo-outer {
    position: absolute;
    text-align: center;
    z-index: 999;
    width: 152px;
    top: 8px;
    left: 0;
}

.main-header .header-upper .logo-outer:before {
    position: absolute;
    right: 100%;
    top: 0;
    background-color: #ffffff;
    content: "";
}

.main-header .header-upper .logo {
    margin: auto;
}

.main-header .header-upper .logo:before {
    position: absolute;
    margin: auto;
    content: "";
}

.main-header .header-upper .logo img {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius:10%;
}

.main-header .header-upper .social-links {
    position: absolute;
    padding: 0;
    margin-left: 0;
    right: 5%;
    top: 14px;
}

.main-header .nav-outer {
    position: relative;
    display: inline-block;
    padding: 0 0px;
    top: 0;
    margin: 60px 0px 0 177px;
    border-radius: 0px 30px 30px 0px;
}

.top-wraapper {
    position: relative;
    height: 100vh;
}


/*===  Header Lower ===*/

.main-header .header-lower {
    position: relative;
    width: 100%;
}

.main-menu {
    position: relative;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    left: 0;
}

.main-menu .navigation>li {
    position: relative;
    display: inline-block;
    padding: 7px 14px;
    margin-left: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    opacity: 1;
    padding: 0 0;
    color: #000000;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:hover>a {
    color: #c5223c;
}

.main-menu .navigation>li.current>a {}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 203px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 0px 0px;
    background-color: #ffffff;
    border-top: 3px solid #c5223c;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.main-menu .navigation>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    display: block;
    background: #091b4e;
}

.main-menu .navigation>li>ul>li:hover:before {
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 5px 12px;
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    color: #181818;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sticky-header .main-menu .navigation>li>a {
    padding: 19px 0px;
}

.sticky-header .main-menu .navigation>li>a:before {
    display: none;
}

.main-menu .navigation>li>ul>li:hover>a {
    background: #c5223c;
    color: #fff;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 5px;
    display: block;
    line-height: 24px;
    font-size: 23px;
    font-weight: 800;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 253px;
    z-index: 100;
    display: none;
    padding: 0px 0px;
    background-color: #ffffff;
    border-top: 3px solid #062a56;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    display: block;
    background: #ed2124;
}

.main-menu .navigation>li>ul>li>ul>li:hover:before {
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 2px 19px;
    line-height: 22px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #000000;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
    color: #ffffff;
    background: #062a56;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 13px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    float: right;
    padding: 30px 0;
}

.main-header .outer-box .btn-box {
    position: relative;
    float: right;
}

.main-header .outer-box .btn-box .theme-btn {
    text-transform: uppercase;
    display: block;
}


/*search box btn*/

.main-header .search-box-outer {
    position: relative;
    float: left;
    padding: 10px 30px;
    margin-left: 30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .search-box-outer:before {
    position: absolute;
    left: 0;
    top: 13px;
    height: 24px;
    width: 1px;
    background-color: #e8e8e8;
    content: "";
}

.main-header .search-box-btn {
    position: relative;
    float: left;
    font-size: 16px;
    line-height: 30px;
    background: none;
    color: #222222;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .search-box-btn:hover {
    color: #343434;
}

.dropdown-toggle::after {
    display: none;
}

.main-header .search-box-outer .dropdown-menu {
    top: 70px !important;
    left: auto !important;
    right: 0;
    padding: 0px;
    width: 280px;
    border-radius: 0px;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    border-top: 3px solid #ff4788;
}

.main-header .search-panel .form-container {
    padding: 25px 20px;
}

.main-header .search-panel .form-group {
    position: relative;
    margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 7px 40px 7px 15px;
    height: 40px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
}

.main-header .search-panel input:focus,
.main-header .search-panel select:focus {
    border-color: #25262c;
}

.main-header .search-panel .search-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #555555;
    font-size: 12px;
    background: none;
    cursor: pointer;
}

.main-header .outer-box .social-links {
    position: relative;
    float: left;
    margin-left: 20px;
    padding: 20px 0;
    padding-left: 20px;
}

.main-header .outer-box .social-links:before {
    position: absolute;
    left: -3px;
    top: 15px;
    height: 35px;
    border-left: 1px solid #e5e5e5;
    content: "";
}


/*** 

====================================================================
			Header Style Two
====================================================================

***/

.header-style-two {
    position: relative;
}

.header-style-two .main-menu,
.header-style-two .nav-outer {
    width: 100%;
}

.header-style-two .main-menu .navbar-collapse {
    display: block !important;
}

.header-style-two .header-upper .logo-outer {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 12;
}

.header-style-two .header-upper .logo-outer:before {
    display: none;
}

.header-style-two .header-upper .logo:before {
    background-color: #ffffff;
}

.header-style-two .header-top .top-left {
    padding-left: 0;
}

.header-style-two .main-menu .navigation>li {
    margin-left: 0;
    margin-right: 90px;
}

.header-style-two .main-menu .navigation>li:last-child {
    margin-right: 0;
}

.header-style-two .header-top .top-right {
    padding: 10px 0;
}

.header-style-two .social-icon-two li {
    margin-left: 35px;
}

.header-style-two .social-icon-two li a {
    font-size: 15px;
    color: #c8bfe3;
}

.header-style-two .social-icon-two li a:hover {
    color: #ff4788;
}


/*** 

====================================================================
				Sticky Header
====================================================================

***/

.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: -1;
    background: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -webkit-transition: top 300ms ease;
    -moz-transition: top 300ms ease;
    -ms-transition: top 300ms ease;
    -o-transition: top 300ms ease;
    transition: top 300ms ease;
}

.fixed-header .sticky-header {
    opacity: 1;
    z-index: 99999;
    visibility: visible;
}

.fixed-header .sticky-header .logo {
    padding: 10px 0;
    width: 201px;
}

.sticky-header .main-menu .navigation>li {
    margin-left: 32px !important;
    padding: 0;
    margin-right: 0;
    background-color: transparent;
}

.sticky-header .main-menu .navigation>li.dropdown>a:after,
.sticky-header .main-menu .navigation>li:before {
    display: none;
}

.sticky-header .main-menu .navigation>li>a {
    padding: 20px 0px !important;
    line-height: 30px;
    font-size: 17px;
    font-weight: 600;
    color: #696478;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a,
.sticky-header .main-menu .navigation>li.current-menu-item>a {
    opacity: 1;
    font-weight: 700;
    color: #1e2c67;
}


/*** 

====================================================================
			Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: #ff4788;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(37, 189, 216, 0.80);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 60vh;
    max-height: 60vh;
    overflow-y: auto;
    background: #333;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    color: #ff4788;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a,
.mobile-menu .navigation li>a:hover {
    color: #ff4788;
}

.mobile-menu .navigation li.current>a:before {
    height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    background: #ff4788;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 5px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 28px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {
    color: #ff4788;
}


/*** 

====================================================================
		Page Banner
====================================================================

***/

.page-banner {
    position: relative;
    padding: 120px 0 120px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.page-banner:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-color: #09031c;
    opacity: .50;
    z-index: 0;
}

.page-banner:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 23px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/icons/curve.html);
    content: "";
}

.page-banner.curve-offwhite:after {
    background-image: url(../images/icons/curve-offwhite.html);
}

.page-banner h1 {
    position: relative;
    font-size: 80px;
    color: #ffffff;
    line-height: 1.2em;
    font-weight: 700;
}

.page-banner .home-btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -43px;
    margin-bottom: -43px;
    height: 86px;
    width: 86px;
    line-height: 86px;
    z-index: 9;
    background-color: #ffffff;
    color: #1e2c67;
    font-size: 30px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease;
}

.page-banner .home-btn:hover {
    color: #ffffff;
    background-color: #1e2c67;
}

.parallax-scene {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.anim-icons .icon {
    position: absolute !important;
    background-repeat: no-repeat;
    background-position: center;
}


/*** 

====================================================================
		Section Title
====================================================================

***/

/* .sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 33px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: normal;
    color: #999999;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.2em;
    color: #0b5658;
    font-weight: 700;
    text-transform: uppercase;
}

.sec-title h2:before {
    position: absolute;
    left: 0;
    content: "";
    right: 0;
    margin: auto;
}

.sec-title h3 {
    color: #ff3437;
    font-size: 22px;
}

.sec-title.light h3 {
    color: #fff;
}

.sec-title .text {
    position: relative;
    font-size: 15px;
    line-height: 28px;
    color: #555555;
    font-weight: 300;
    margin-top: 20px;
}

.sec-title.text-center h2:before {
    right: 0;
    margin: 0 auto;
}

.sec-title.light h2 {
    color: #ffffff;
} */


/*** 

====================================================================
		Banner Section
====================================================================

***/

.banner-section {
    position: relative;
}

.banner-section:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 23px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    z-index: 9;
}

.banner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.banner {
    background-image: url(../images/main-slider/1.jpg);
}

.banner-carousel {
    position: relative;
}

.banner-carousel .slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 220px 0;
}

.banner-carousel .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-carousel .slide-item .image-layer:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #09031c;
    opacity: .50;
    content: "";
}

.banner-carousel .content-box {
    position: relative;
    max-width: 810px;
    margin: 0 auto;
    text-align: center;
    padding: 0 70px;
}

.banner-carousel .content-box .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.banner-carousel .content-box .icon-box .icon-star-1,
.banner-carousel .content-box .icon-box .icon-star-2 {
    position: absolute;
    left: 0;
    top: 20px;
}

.banner-carousel .content-box .icon-box .icon-star-2 {
    right: 0;
    left: auto;
}

.banner-carousel .active .content-box .icon-box {
    opacity: 1;
}

.icon-star-1 {
    height: 95px;
    width: 57px;
    background-image: url(../images/icons/icon-star.html);
}

.icon-star-2 {
    height: 95px;
    width: 57px;
    background-image: url(../images/icons/icon-star-2.html);
}

.banner-carousel .content-box .title {
    display: block;
    font-size: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .active .content-box .title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-carousel .content-box h2 {
    display: block;
    font-size: 100px;
    line-height: .9em;
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    margin-bottom: 40px;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .active .content-box h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.banner-carousel .content-box .btn-box {
    position: relative;
    opacity: 0;
    z-index: 9;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .active .content-box .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.banner-carousel .active .content-box .btn-box a {
    font-size: 22px;
}

.banner-section.style-two .banner-carousel .slide-item {
    padding: 190px 0;
}

.banner-section.style-two .content-box {
    text-align: left;
    max-width: 100%;
    padding: 0;
}

.banner-section.style-two .content-box .icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.banner-section .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -28px;
    width: 100%;
    height: 0;
}

.slides {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.slide1 {
    background-image: url(../images/main-slider/1.jpg);
}

.slide2 {
    background-image: url(../images/main-slider/2.jpg);
}

.banner-section .owl-nav .owl-prev,
.banner-section .owl-nav .owl-next {
    position: absolute;
    left: 30px;
    top: 0;
    background: none;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    text-align: center;
    line-height: 52px;
    color: #ffffff;
    font-size: 20px;
    opacity: 0.30;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-section .owl-nav .owl-next {
    left: auto;
    right: 30px;
}

.banner-section .owl-nav .owl-prev:hover,
.banner-section .owl-nav .owl-next:hover {
    opacity: 1;
}

.banner-section .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
}

.banner-section .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 8px solid #ffffff;
    margin: 0px 2px;
    opacity: 0.20;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-section .owl-dot:last-child {
    margin-bottom: 0;
}

.banner-section .owl-dot.active,
.banner-section .owl-dot:hover {
    opacity: 1;
}

.banner_carousel {
    position: relative;
}

.banner_carousel::before {
    content: "";
    position: absolute;
    right: 0;
    z-index: 1;
}

.banner_carousel .owl-dots {
    position: absolute;
    top: inherit;
    width: 200px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 2;
    padding-top: 0;
    bottom: 16px;
    text-align: center;
}

.banner_carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #fefefe;
    color: #FFF;
    margin: 0 4px;
}


/*** 

====================================================================
		about Section
====================================================================

***/

.top_abt_section {
    position: relative;
    padding: 0px 0 42px;
}

.top_abt_section::before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
}

.tp_abt_row .col-md-3 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0px 8px;
}

.tp_abt_row .col-md-3::before {
    content: "";
    position: absolute;
    width: 33%;
    height: 8px;
    top: -8px;
    right: 0;
    left: 0;
    margin: auto;
    background: #ff3437;
}

.tp_abt_row .col-md-3:nth-child(1),
.tp_abt_row .col-md-3:nth-child(5) {}

.tp_abt_row .col-md-3:nth-child(2),
.tp_abt_row .col-md-3:nth-child(4) {}

.tp_abt_row .col-md-3:nth-child(3) {}

.tp_abt_row {
    position: relative;
    margin-top: 0;
    z-index: 2;
}

.tp_list {
    position: relative;
    text-align: center;
    padding: 17px 16px;
    margin-top: 0;
}

.tp_list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 65%;
    left: 0;
    top: 0;
    border-radius: 0px 0px 97px 97px;
    z-index: -1;
    background: linear-gradient(to top, #c7c7c7, white);
}

.tp_list h3 {
    text-transform: capitalize;
    font-size: 19px;
    text-align: center;
    font-weight: 500;
    margin: 0px 0 9px;
    color: #333;
}

.tp_icon {
    position: relative;
    display: inline-block;
    width: 119px;
    height: 119px;
    background: #f3f3f3;
    border: 5px solid #fffbfb;
    border-radius: 50%;
    line-height: 100px;
    box-shadow: 0px 6px 5px #838383;
}

.offers-section {
    position: relative;
    padding: 0px 0 100px;
}

.offers-section::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 112px;
    height: 10px;
    max-width: 890px;
    left: 0;
    right: 0;
    margin: auto;
    border-bottom: 0;
}

.offers-section::after {
    content: "";
    position: absolute;
    left: initial;
    right: 0px;
    transform: skew(0deg, 10deg);
}

.about-content {
    position: relative;
    text-align: center;
    z-index: 1;
    margin: 0 0 50px;
}

.about-content span {
    font-size: 25px;
    margin-bottom: 10px;
    display: inline-block;
    color: #ffffff;
    border-radius: 28px;
    padding: 7px 16px 11px;
    background: #ec2022;
}

.about-content h2 {
    text-transform: uppercase;
    color: #196b6d;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 55px;
}

.about-content h3 {
    text-transform: capitalize;
    color: #ff3437;
    margin-bottom: 16px;
    font-size: 33px;
}

.about-content h3::before,
.about-content h3::after {
    content: "";
    position: absolute;
    width: 148px;
    height: 100px;
    /* background-image: url(../images/abtbg.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: -61px;
    left: 166px;
    opacity: .6;
}

.about-content h3::after {
    left: initial;
    right: 166px;
}

.about-content p {
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
}

.doctor_secion {
    position: relative;
    background: #f5f5f5;
    border-radius: 263px;
    padding: 24px 8px;
    border: 10px solid #e0e0e0;
    z-index: 1;
}

.doctor_secion::before,
.doctor_secion::after {
    content: "";
    position: absolute;
}

.doctor_secion::after {
    top: initial;
    bottom: 99px;
    border-top: 0;
}

.doc_row {
    align-items: center;
    margin: 0;
}

.doc_block {
    position: relative;
    text-align: center;
}

.doc_block::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    /* background: #944054; */
    left: -15px;
    bottom: -15px;
    border-radius: 0px 0px 0px 191px;
}

.doc_block::after {
    content: "";
    position: absolute;
}

.doc_img {
    position: relative;
    /* border: 2px dotted; */
    overflow: hidden;
    border-radius: 50%;
    padding: 11px;
    background: #ffffff;
    box-shadow: 0px 0px 10px #9a9a9a;
}

.doc_img img {
    display: inline-block;
    border-radius: 50%;
}

.doctor_info {
    position: relative;
    padding-right: 48px;
}

.doctor_info h2 {
    text-transform: uppercase;
    color: #379fa2;
    font-weight: 700;
    margin: 0 0 9px;
    font-size: 44px;
}

.doctor_info h3 {
    font-size: 19px;
    display: inline-block;
    margin: 0 0 5px;
    font-weight: 600;
}

.degrees {
    margin: 9px 0px 0px;
}

.degrees h4 {
    font-size: 19px;
    font-weight: 500;
    padding: 8px 0px;
    border-bottom: 2px dotted;
}

.degrees h4:last-child {
    border-bottom: 0px;
}

.doctor_info a {
    display: inline-block;
    background: #379fa2;
    color: #fff;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 4px;
    margin: 8px 0 0;
}

.doctor_info a:hover {
    background: #FF3437;
    color: #fff;
}

.hospital_why_section {
    position: relative;
    padding: 308px 0px 265px;
    margin: -231px 0 0;
}

.hospital_why_section::before {
    content: "";
    position: absolute;
    top: 0;
}

.hospital_why_section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #005255;
    clip-path: polygon(100% 0, 100% 50%, 50% 78%, 0 50%, 0 0, 50% 0);
    top: 0;
    z-index: -1;
}

.happytosay {
    position: relative;
    text-align: center;
}

.happytosay h2 {
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    font-size: 35px;
    margin: 0 0 20px;
}

.happytosay p {
    color: #eee;
    border-bottom: 2px dotted #adadad;
    padding-bottom: 8px;
}

.hpl_why_list {
    position: relative;
    text-align: center;
}

.hpl_why_list h2 {
    font-size: 47px;
    color: #fff;
}

.hpl_why_list span {
    display: block;
    font-size: 17px;
    line-height: 26px;
    color: #eee;
}

.hplwhy_row .col-md-3 {
    border-right: 2px dotted #adadad;
    padding: 5px 11px;
}

.hplwhy_row .col-md-3:nth-child(4) {
    border-right: 0px;
}

.hplwhy_row .col-md-3::before {
    content: "";
    position: absolute;
}

.abtn_btmrow {
    align-items: center;
    margin: 65px 0 116px;
    position: relative;
}

.abt_b_list {
    text-align: center;
    background: linear-gradient(to left, #ebebeb, transparent);
    padding: 27px 33px;
}

.abtn_btmrow .col-md-4:nth-child(2) .abt_b_list {
    background: #fff;
    padding: 64px 12px;
    border: 12px solid #ececec;
}

.abtn_btmrow .col-md-4:nth-child(3) .abt_b_list {
    background: linear-gradient(to right, #ebebeb, transparent);
}

.abt_b_pic {
    position: relative;
}

.abt_b_list h3 {
    font-size: 26px;
    margin: 5px 0 6px;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 2px dotted;
    color: #ff293b;
    font-weight: 600;
}

.abt_b_list p {
    margin: 0px;
}

.abtn_btmrow .col-md-4 {
    padding: 0px;
}

.about_pic {
    border: 11px solid #e9edf5;
}

.abtbg {
    position: absolute;
    left: -87px;
    top: -73px;
    width: 36%;
    opacity: .2;
}

.abtbg img {
    width: 100%;
}


/* services */

.row.ser_list_row {
    margin: 0 6px;
}

.ser_list_row .col-md-4 {
    padding: 0 6px;
}

.serevices_list {
    position: relative;
    text-align: center;
    height: 40vh;
    background: #354668;
    color: #fff;
    margin-bottom: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all ease-in-out .5s;
}

.ser_list_row .col-md-4:nth-child(1) .serevices_list:nth-child(1) {
    background-image: url(../images/services/neurology.jpg);
}

.ser_list_row .col-md-4:nth-child(1) .serevices_list:nth-child(2) {
    background-image: url(../images/services/nephrology.jpg);
}

.ser_list_row .col-md-4:nth-child(2) .serevices_list:nth-child(1) {
    height: 81.5vh;
    background-image: url(../images/services/cardiology.jpg);
}

.ser_list_row .col-md-4:nth-child(3) .serevices_list:nth-child(1) {
    background-image: url(../images/services/pulmonology.jpg);
}

.ser_list_row .col-md-4:nth-child(3) .serevices_list:nth-child(2) {
    background-image: url(../images/services/criticalcare.html);
}

.serevices_list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(21 43 90 / 85%);
    left: 0;
}

.ser_list_row .col-md-4:nth-child(2) .serevices_list:nth-child(1)::before {
    background: rgb(239 119 30 / 72%);
}

.services_info {
    position: absolute;
    bottom: 0;
    max-width: 350px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all ease-in-out .5s;
    padding-bottom: 37px;
}

.services_info span {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    border: 1px dashed;
    border-radius: 50%;
    line-height: 80px;
    margin-bottom: 12px;
}

.services_info span img {
    width: 52px;
}

.serevices_list h3 {
    text-transform: uppercase;
    margin-bottom: 7px;
    font-size: 25px;
}

.serevices_list p {
    font-size: 14px;
    color: #eee;
    line-height: 24px;
}

.serevices_list a {
    display: inline-block;
    font-size: 32px;
    transition: all ease-in-out .7s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 90px;
    text-align: center;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: 0px;
}

.serevices_list:hover .services_info {
    bottom: 30px;
}

.serevices_list:hover .services_info a {
    opacity: 1;
    visibility: visible;
}

.banner_hospital_bg_sec {
    position: relative;
    overflow: hidden;
}


/*** 

====================================================================
		Welcome Section
====================================================================

***/

.welcome-section {
    position: relative;
    padding: 0px 0 70px;
}

.welcome-section .icon-balloon {
    top: auto !important;
    bottom: 160px !important;
    left: -260px !important;
}

.welcome-section .icon-rocket {
    top: auto !important;
    left: auto !important;
    right: -220px !important;
    bottom: 170px !important;
}

.welcome-section .icon-star-4 {
    top: auto !important;
    bottom: 170px !important;
    left: -60px !important;
}

.icon-balloon {
    height: 310px;
    width: 218px;
    background-image: url(../images/icons/icon-balloon.html);
}

.icon-rocket {
    height: 144px;
    width: 116px;
    background-image: url(../images/icons/icon-rocket.html);
}

.icon-star-4 {
    height: 51px;
    width: 43px;
    background-image: url(../images/icons/icon-star-4.html);
}

.welcome-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.welcome-section .image-column .inner-column {
    position: relative;
    padding-left: 80px;
    padding-top: 80px;
    padding-right: 30px;
}

.welcome-section .image-column .inner-column:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 280px;
    width: 270px;
    background-color: #ff4986;
    content: "";
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.welcome-section .image-column .image {
    position: relative;
    margin-bottom: 0;
}

.welcome-section .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 5px;
}

.welcome-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.welcome-section .content-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.welcome-section .content-column .sec-title {
    margin-bottom: 30px;
}

.welcome-section .content-column .message {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 36px;
    color: #696478;
    font-weight: 400;
    margin-bottom: 36px;
}

.welcome-section .content-column .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #696478;
    font-weight: 400;
    margin-bottom: 55px;
}


/*** 

====================================================================
		Welcome Section Two
====================================================================

***/

.welcome-section-two {
    position: relative;
    padding: 120px 0;
}

.welcome-section-two .icon-star-3 {
    left: -70px !important;
    top: 140px !important;
}

.welcome-section-two .icon-star-4 {
    top: auto !important;
    left: 55px !important;
    bottom: 180px !important;
}

.welcome-section-two .icon-balloon {
    top: auto !important;
    left: -360px !important;
    bottom: -40px !important;
}

.welcome-section-two .icon-sun {
    top: 290px !important;
    right: -210px !important;
    left: auto !important;
}

.welcome-section-two .icon-rocket {
    top: auto !important;
    bottom: 0 !important;
    right: -260px !important;
    left: auto !important;
}

.welcome-section-two .image-column {
    position: relative;
    margin-bottom: 50px;
}

.welcome-section-two .image-column .inner-box {
    position: relative;
    display: block;
}

.welcome-section-two .image-column .image {
    position: relative;
    display: block;
    border-radius: 7px;
    margin-bottom: 0;
    overflow: hidden;
}

.welcome-section-two .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 7px;
}

.welcome-section-two .image-column .image:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    opacity: 0.70;
    background: -webkit-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    background: -ms-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.welcome-section-two .image-column .image:hover:after {
    height: 100%;
    opacity: 1;
}

.welcome-section-two .image-column .icon-box {
    position: absolute;
    left: 50%;
    bottom: 50%;
    margin-left: -43px;
    margin-bottom: -43px;
    width: 84px;
    height: 84px;
    line-height: 84px;
    text-align: center;
    font-size: 36px;
    background: #ff4789;
    color: #ffffff;
    border-radius: 50%;
    -webkit-transition: transform 600ms ease;
    -moz-transition: transform 600ms ease;
    -ms-transition: transform 600ms ease;
    -o-transition: transform 600ms ease;
    transition: transform 600ms ease;
    z-index: 1;
}

.welcome-section-two .image-column:hover .icon-box {
    background-color: #25bdd8;
    -webkit-transform: scale(-1.3) rotate(-180deg);
    -moz-transform: scale(-1.3) rotate(-180deg);
    -ms-transform: scale(-1.3) rotate(-180deg);
    -o-transform: scale(-1.3) rotate(-180deg);
    transform: scale(-1.3) rotate(-180deg);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.welcome-section-two .image-column:nth-child(1) .icon-box {
    background: #ff4789;
}

.welcome-section-two .image-column:nth-child(2) .icon-box {
    background: #25bdd8;
}

.welcome-section-two .image-column:nth-child(3) .icon-box {
    background: #f9b001;
}

.welcome-section-two .image-column:nth-child(1) .image:after {
    background: -webkit-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    background: -ms-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
}

.welcome-section-two .image-column:nth-child(2) .image:after {
    background: -webkit-linear-gradient(bottom, #25bdd8, rgba(0, 0, 0, 0));
    background: -ms-linear-gradient(bottom, #25bdd8, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(bottom, #25bdd8, rgba(0, 0, 0, 0));
}

.welcome-section-two .image-column:nth-child(3) .image:after {
    background: -webkit-linear-gradient(bottom, #f9b001, rgba(0, 0, 0, 0));
    background: -ms-linear-gradient(bottom, #f9b001, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(bottom, #f9b001, rgba(0, 0, 0, 0));
}

.welcome-section-two .text {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 40px;
    color: #696478;
    font-weight: 400;
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 50px;
    text-align: center;
}

.welcome-section-two .btn-box {
    position: relative;
    text-align: center;
}


/*** 

====================================================================
		About Section
====================================================================

***/

.about-section {
    position: relative;
    padding: 120px 0 90px;
    background-color: #f2f5f6;
}

.about-section .icon-star-3 {
    right: -60px !important;
    top: 140px !important;
    left: auto !important;
}

.about-section .icon-star-4 {
    left: -160px !important;
    bottom: 260px !important;
    top: auto !important;
}

.about-section .icon-sun {
    right: -215px !important;
    bottom: 220px !important;
    top: auto !important;
    left: auto !important;
}

.about-section .sec-title .text {
    font-size: 22px;
    line-height: 40px;
    color: #696478;
    margin-top: 40px;
}

.about-section .text-block {
    position: relative;
    margin-bottom: 30px;
}

.about-section .text-block .inner-box {
    position: relative;
    background-color: #25bdd8;
    padding: 60px 55px 60px;
    border-radius: 10px;
}

.about-section .text-block .icon {
    position: relative;
    display: block;
    font-size: 64px;
    line-height: 1em;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-section .text-block h4 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
}

.about-section .image-block {
    position: relative;
    margin-bottom: 30px;
}

.about-section .image-block .image {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px;
}

.about-section .image-block .image img {
    display: block;
    width: 100%;
    height: auto;
}


/***

====================================================================
			Fun Fact Section
====================================================================

***/

.fun-fact-section {
    position: relative;
    padding: 110px 0 70px;
    border-top: 1px solid #e8e6ec;
}

.fun-fact-section .fact-counter {
    position: relative;
}

.fun-fact-section .counter-column {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.fun-fact-section .count-box {
    position: relative;
    font-size: 60px;
    line-height: 1em;
    color: #1e2c67;
    font-weight: 400;
}

.fun-fact-section .count-box .count-text {
    position: relative;
    display: inline-block;
    font-size: 60px;
    line-height: 1em;
    color: #1e2c67;
    font-weight: 400;
}

.fun-fact-section .counter-title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #696478;
    padding-bottom: 30px;
    margin-top: 12px;
    font-family: 'Exo', sans-serif;
}

.fun-fact-section .counter-title:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    width: 30px;
    background-color: #25bdd8;
    content: "";
    border-radius: 2px;
}

.fun-fact-section .counter-column:nth-child(2) .counter-title:before {
    background-color: #ff4788;
}

.fun-fact-section .counter-column:nth-child(3) .counter-title:before {
    background-color: #5fc24b;
}

.fun-fact-section .counter-column:nth-child(4) .counter-title:before {
    background-color: #f9b001;
}


/*** 

====================================================================
		Program Section
====================================================================

***/

.program-section {
    position: relative;
    padding: 0px 0 62px;
}

.program-section::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 94%;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-right: 2px dotted #333;
}

.program-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 53%;
    top: 0px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.services_title_head {
    text-align: center;
}

.whatwedo {
    position: relative;
    text-transform: capitalize;
    font-size: 22px;
    text-align: center;
    color: #fff;
    margin: 0 0 9px;
}

.ser_head {}

.ser_head p {
    font-size: 22px;
    display: inline-block;
    padding-bottom: 10px;
}

.ser_head.sec-title {
    position: relative;
    left: 0;
    top: 0;
    z-index: 99;
    text-align: center;
    width: 310px;
    height: 310px;
    background: #379fa2;
    border-radius: 50%;
    padding: 71px 33px 0;
    border: 7px solid #f5f5f5;
    box-shadow: 0px 10px 5px #818181;
    margin: -415px auto 0;
}

.ser_head.sec-title h2,
.ser_head.sec-title p {
    color: #fff;
}

.services_timeline.main-timeline {
    position: relative;
    display: table;
    margin: auto;
    width: 100%;
}

.services_timeline.main-timeline .timeline {
    position: relative;
    margin-top: -79px;
}

.services_timeline.main-timeline .timeline {
    width: 42%;
    padding: 0;
    margin: 0 0 0 50px;
    float: right;
    position: relative;
    min-height: 237px;
}

.services_timeline.main-timeline .timeline:nth-child(even) {
    margin: 0 26px 0 0;
    float: left;
}

.services_timeline.main-timeline .timeline:first-child {
    margin-top: 0;
}

.services_timeline.main-timeline .timeline:before,
.services_timeline.main-timeline .timeline:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

.services_timeline.main-timeline .timeline:before {
    content: "";
    width: 100%;
    height: 100%;
    /* box-shadow: -8px 0 5px -5px rgba(0, 0, 0, 0.5) inset; */
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.services_timeline.main-timeline .timeline-icon {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 7px solid transparent;
    border-top-color: #c9c9c9;
    border-right-color: #c9c9c9;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -103px;
    z-index: 1;
    transform: rotate(45deg);
}

.services_timeline.main-timeline .year {
    display: block;
    width: 124px;
    height: 124px;
    line-height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    margin: auto;
    font-size: 30px;
    font-weight: bold;
    color: #f44556;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: rotate(-45deg);
}

.services_timeline.main-timeline .timeline-content {
    width: 74%;
    float: right;
    /* background: #f3fffe; */
    padding: 41px 20px;
    margin: 16px 0;
    z-index: 1;
    position: relative;
    /* box-shadow: 0px 0px 0px 3px #e7f9f8; */
    border-left: 6px solid #c9c9c9;
}

.services_timeline.main-timeline .timeline-content a {
    display: inline-block;
    background: #005255;
    padding: 3px 14px;
    border-radius: 30px;
    margin-top: 13px;
    color: #ffffff;
}

.services_timeline.main-timeline .timeline-content .ser_image {
    position: absolute;
    top: 18px;
    left: -234px;
    width: 169px;
    right: 0;
    overflow: hidden;
    border-radius: 50%;
    border: 6px solid #fbfbfb;
    box-shadow: 0px 0px 10px #b1b1b1;
    transition: all ease-in-out .7s;
}

.services_timeline.main-timeline .timeline-content .ser_image img {
    transition: all ease-in-out .7s;
}

.services_timeline.main-timeline .timeline:hover .timeline-content .ser_image img {
    filter: grayscale(0);
    transform: scale(1.2);
}

.services_timeline.main-timeline .timeline-content .ser_image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(4, 22, 74, 0.09);
    z-index: 1;
}

.services_timeline.main-timeline .timeline-content:before {
    content: "";
    width: 7%;
    height: 7px;
    background: #c9c9c9;
    position: absolute;
    top: 50%;
    left: -8%;
    z-index: -1;
    transform: translateY(-50%);
}

.services_timeline.main-timeline .title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px;
    text-transform: capitalize;
}

.services_timeline.main-timeline .description {
    font-size: 15px;
    color: #181818;
    line-height: 24px;
    margin: 0;
}

.services_timeline.main-timeline .timeline:nth-child(even) .timeline-content .ser_image {
    position: absolute;
    right: -234px;
    bottom: initial;
    left: initial;
}

.services_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
    transform: rotate(-135deg);
    right: -101px;
    left: initial;
}

.services_timeline.main-timeline .timeline:nth-child(even) .year {
    transform: rotate(135deg);
}

.services_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
    float: left;
}

.services_timeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
    left: auto;
    right: -7%;
}

.services_timeline.main-timeline .timeline:nth-child(even) .year {
    color: #e97e2e;
}

.services_timeline.main-timeline .timeline:nth-child(even) .timeline-content,
.services_timeline.main-timeline .timeline:nth-child(even).timeline-content:before {
    /* background: #f3f9ff; */
    /* box-shadow: 0px 0px 0px 3px #dfeeff; */
    border-left: 0px;
    text-align: right;
    border-right: 6px solid #c9c9c9;
}

@media only screen and (max-width: 1199px) {
    .services_timeline.main-timeline .timeline {
        /* margin-top: -103px; */
    }

    .services_timeline.main-timeline .timeline-content:before {
        left: -18%;
    }

    .services_timeline.main-timeline .timeline:nth-child(2n) .timeline-content:before {
        right: -18%;
    }
}

@media only screen and (max-width: 990px) {
    .services_timeline.main-timeline .timeline {
        margin-top: -127px;
    }

    .services_timeline.main-timeline .timeline-content:before {
        left: -2%;
    }

    .services_timeline.main-timeline .timeline:nth-child(2n) .timeline-content:before {
        right: -2%;
    }
}

@media only screen and (max-width: 767px) {
    .services_timeline.main-timeline .timeline {
        margin-top: 0;
    }

    .services_timeline.main-timeline .timeline:before,
    .services_timeline.main-timeline .timeline:nth-child(2n):before {
        box-shadow: none;
    }

    .services_timeline.main-timeline .timeline-icon,
    .services_timeline.main-timeline .timeline:nth-child(2n) .timeline-icon {
        margin-top: -30px;
        margin-bottom: 20px;
        position: relative;
        transform: rotate(135deg);
    }

    .services_timeline.main-timeline .year,
    .services_timeline.main-timeline .timeline:nth-child(2n) .year {
        transform: rotate(-135deg);
    }

    .services_timeline.main-timeline .timeline-content,
    .services_timeline.main-timeline .timeline:nth-child(2n) .timeline-content {
        width: 100%;
        float: none;
        border-radius: 0 0 20px 20px;
        text-align: center;
        padding: 25px 20px;
        margin: 0 auto;
    }

    .services_timeline.main-timeline .timeline-content:before,
    .services_timeline.main-timeline .timeline:nth-child(2n) .timeline-content:before {
        width: 15px;
        height: 25px;
        position: absolute;
        top: -22px;
        left: 50%;
        z-index: -1;
        transform: translate(-50%, 0);
    }
}

.sericon {
    position: absolute;
    width: 64px;
    left: 0px;
    right: 0px;
    margin: auto;
    top: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    transform: scale(.9);
    transition: all ease-in-out .8s;
    z-index: 1;
}

.services_timeline.main-timeline .timeline:hover .sericon {
    transform: scale(1);
}

.ser_btm {
    text-transform: capitalize;
    font-size: 30px;
    text-align: center;
    margin-top: 49px;
    background: #c5223c;
    color: #fff;
    line-height: 38px;
    border-radius: 30px;
}


/*** 

====================================================================
		FAQ'S Section
====================================================================

***/

.faq-section {
    position: relative;
    background-color: #f2f5f6;
    padding: 120px 0 70px;
}

.faq-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.faq-section .image-column .inner-column {
    position: relative;
    padding-right: 30px;
}

.faq-section .image-column .image {
    position: relative;
    margin-bottom: 0;
}

.faq-section .image-column .image img {
    display: block;
    width: 100%;
}

.faq-section .image-column .sec-title {
    margin-bottom: 45px;
}

.faq-section .accordion-column {
    position: relative;
    margin-bottom: 50px;
}

.accordion-box {
    position: relative;
    counter-reset: count;
}

.accordion-box .block {
    position: relative;
    margin-bottom: 10px;
}

.accordion-box .block:last-child {
    margin-bottom: 0;
}

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    color: #1e2c67;
    font-weight: 400;
    cursor: pointer;
    padding: 25px 30px;
    background-color: #ffffff;
    padding-right: 100px;
    border: 1px solid #ece6dd;
    border-radius: 8px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn:before {
    position: absolute;
    right: 22px;
    top: 22px;
    height: 35px;
    width: 35px;
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    line-height: 35px;
    text-align: center;
    background: #1e2c67;
    content: "\f067";
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
    position: relative;
    background-color: #1e2c67;
    color: #ffffff;
}

.accordion-box .block .acc-btn.active:before {
    background-color: #25bdd8;
    content: "\f068";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
}

.accordion-box .block .content {
    position: relative;
    padding: 30px 30px 25px;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .content .text {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #696478;
    font-weight: 400;
}


/*** 

====================================================================
		Activities Section
====================================================================

***/

.activities-section {
    position: relative;
    padding: 120px 0;
    background-color: #1e2c67;
}

.activities-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/pattern-2.html);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    opacity: .10;
}

.activities-section .icon-star-4 {
    top: 140px !important;
    left: -60px !important;
}

.activities-section .icon-star-3 {
    top: 180px !important;
    right: -190px !important;
    left: auto !important;
}

.activities-section .icon-sun-2 {
    top: auto !important;
    left: -224px !important;
    bottom: 110px !important;
}

.activities-section .sec-title {
    margin-bottom: 45px;
}

.activities-section .auto-container {
    max-width: 1400px;
}

.activities-section .activities-carousel {
    position: relative;
    padding-bottom: 80px;
}

.activity-block {
    position: relative;
}

.activity-block .inner-box {
    position: relative;
    border-radius: 10px;
    background-color: #ffffff;
    border-bottom: 4px solid #25bdd8;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    overflow: hidden;
}

.activity-block.pink .inner-box {
    border-bottom-color: #ff4788;
}

.activity-block.green .inner-box {
    border-bottom-color: #5fc24b;
}

.activity-block.yellow .inner-box {
    border-bottom-color: #f9b001;
}

.activity-block.orange .inner-box {
    border-bottom-color: #ff4e31;
}

.activity-block .inner-box:hover {
    background-color: #25bdd8;
}

.activity-block.pink .inner-box:hover {
    background-color: #ff4788;
}

.activity-block.green .inner-box:hover {
    background-color: #5fc24b;
}

.activity-block.yellow .inner-box:hover {
    background-color: #f9b001;
}

.activity-block.orange .inner-box:hover {
    background-color: #ff4e31;
}

.activity-block .image-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.activity-block .image {
    position: relative;
    margin-bottom: 0;
}

.activity-block .image img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.activity-block .inner-box:hover .image img {
    opacity: .80;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.activity-block .caption-box {
    position: relative;
    padding: 25px 30px;
}

.activity-block .caption-box h4 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 25px;
    color: #1e2c67;
    font-weight: 700;
}

.activity-block .caption-box h4 a {
    color: #1e2c67;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.activity-block .caption-box h4 a:hover,
.activity-block .inner-box:hover .caption-box h4 a {
    color: #ffffff;
}

.activities-carousel .owl-nav {
    display: none;
}

.activities-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    text-align: center;
}

.activities-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 21px;
    width: 21px;
    border: 8px solid #ffffff;
    opacity: .1;
    margin: 0 2px;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.activities-carousel .owl-dot:hover,
.activities-carousel .owl-dot.active {
    opacity: 1;
}


/*** 

====================================================================
		Events Section
====================================================================

***/

.events-section {
    position: relative;
    padding: 120px 0 90px;
}

.events-section.events-page {
    padding-bottom: 120px;
}

.events-section.events-page .sec-title h2 {
    padding-top: 0;
}

.events-section.events-page .sec-title h2:before {
    display: none;
}

.events-section .icon-star-3 {
    left: -130px !important;
    top: 160px !important;
}

.events-section .icon-star-4 {
    left: -70px !important;
    bottom: 75px !important;
    top: auto !important;
}

.events-section .icon-star-6 {
    right: -120px !important;
    top: 135px !important;
    left: auto !important;
}

.events-section .icon-balloon-2 {
    right: -360px !important;
    bottom: 40px !important;
    left: auto !important;
    top: auto !important;
}

.event-block {
    position: relative;
    margin-bottom: 30px;
}

.event-block .inner-box {
    position: relative;
    padding-left: 210px;
    border: 1px solid #e8e6ec;
    min-height: 210px;
    border-radius: 10px;
    padding-top: 50px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.event-block .inner-box:hover {
    box-shadow: 0 10px 30px rgba(0, 10, 30, .05);
}

.event-block .date {
    position: absolute;
    left: 40px;
    top: 40px;
    height: 130px;
    width: 130px;
    background-color: #25bdd8;
    text-align: center;
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    overflow: hidden;
}

.event-block .date .date-text {
    position: relative;
    display: block;
    padding: 25px 30px 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.event-block .inner-box:hover .date-text {
    opacity: 0;
}

.event-block .date .event-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.event-block .date .event-thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.event-block .inner-box:hover .event-thumb {
    opacity: 1;
}

.event-block h5 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #1e2c67;
    font-weight: 700;
    margin-bottom: 15px;
}

.event-block h5 a {
    color: #1e2c67;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.event-block h5 a:hover {
    color: #25bdd8;
}

.event-block .event-info {
    position: relative;
}

.event-block .event-info li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #1e2c67;
    font-weight: 500;
    padding-left: 40px;
    margin-bottom: 8px;
}

.event-block .event-info li span {
    color: #696478;
    font-weight: 500;
    margin-right: 5px;
}

.event-block .event-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    color: #ff4788;
    font-weight: 400;
}


/*** 

====================================================================
		Events Page Section
====================================================================

***/

.events-page-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.events-container {
    position: relative;
}

.events-container .month-carousel {
    position: relative;
    width: 370px;
    margin: 0 auto;
}

.events-container .month-carousel li {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 700;
    background-color: #1e2c67;
    padding: 15px 10px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.events-container .month-carousel li:hover,
.events-container .month-carousel .active.center li {
    background-color: #25bdd8;
}

.events-container .events-carousel {
    position: relative;
    z-index: 9;
}

.events-container .events-carousel .owl-stage-outer {
    overflow: visible;
}

.event-calendar {
    position: relative;
    padding: 55px 0 0;
    z-index: 9;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.owl-theme .active .event-calendar {
    opacity: 1;
}

.event-calendar .calendar-inner {
    position: relative;
    min-width: 1000px;
}

.event-calendar .title-box {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.event-calendar .title-box h2 {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 1.2em;
    color: #1e2c67;
    font-weight: 700;
}

.event-calendar .week-days {
    position: relative;
    background-color: #25bdd8;
    border-radius: 5px 5px 0 0;
}

.event-calendar .week-days li {
    position: relative;
    float: left;
    width: 14.285%;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    color: #ffffff;
    line-height: 30px;
    border-right: 1px solid #fe8230;
}

.event-calendar .week-days li:last-child {
    border-right: 0;
}

.event-calendar .month-days {
    position: relative;
    border-left: 1px solid #e9e7ed;
    z-index: 99;
}

.event-day {
    position: relative;
    float: left;
    width: 14.285%;
    text-align: center;
    background-color: #ffffff;
    padding: 40px 25px 35px;
    border-right: 1px solid #e9e7ed;
    border-bottom: 1px solid #e9e7ed;
}

.event-day .count {
    position: relative;
    display: inline-block;
    height: 38px;
    width: 38px;
    font-size: 18px;
    color: #ffffff;
    line-height: 38px;
    font-weight: 700;
    text-align: center;
    background-color: #1e2c67;
    border-radius: 50%;
    margin-bottom: 10px;
}

.event-day .title {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #696478;
    font-weight: 700;
}

.event-day.active {
    background-color: #f2f5f6;
}

.event-day.active .count {
    background-color: #25bdd8;
}

.event-day.active .title {
    color: #1e2c67;
}

.event-day .overlay-link {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.event-day .event-popup {
    position: absolute;
    left: -10px;
    bottom: 85%;
    margin-top: 10px;
    width: 570px;
    background-color: #25bdd8;
    padding: 40px 40px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.event-day:hover .event-popup {
    opacity: 1;
    visibility: visible;
    bottom: 95%;
}

.event-day .event-popup:before {
    position: absolute;
    left: 75px;
    bottom: -10px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid #25bdd8;
    content: "";
}

.event-day .event-popup .inner {
    position: relative;
    padding-left: 170px;
    min-height: 130px;
    text-align: left;
    padding-top: 10px;
}

.event-day .event-popup .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    overflow: hidden;
}

.event-day .event-popup h5 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.event-day .event-popup h5 a {
    color: #ffffff;
}

.event-day .event-popup .event-info {
    position: relative;
}

.event-day .event-popup .event-info li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 600;
    padding-left: 40px;
    margin-bottom: 8px;
}

.event-day .event-popup .event-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    color: #ffffff;
    font-weight: 300;
}

.events-carousel .owl-stage-outer {
    position: relative;
    overflow: visible;
}


/*.events-carousel:before,
.events-carousel:after{
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 1000%;
	background-color: #ffffff;
	content: "";
	z-index: 9;
}

.events-carousel:after{
	left: auto;
	right: 100%;
}*/

.event-day:nth-child(6) .event-popup,
.event-day:nth-child(7) .event-popup,
.event-day:nth-child(20) .event-popup,
.event-day:nth-child(21) .event-popup,
.event-day:nth-child(27) .event-popup,
.event-day:nth-child(28) .event-popup,
.event-day:nth-child(13) .event-popup,
.event-day:nth-child(14) .event-popup {
    left: auto;
    right: -10px;
}

.event-day:nth-child(7) .event-popup:before,
.event-day:nth-child(14) .event-popup:before,
.event-day:nth-child(21) .event-popup:before,
.event-day:nth-child(28) .event-popup:before {
    left: auto;
    right: 75px;
}


/*** 

====================================================================
		Event Single
====================================================================

***/

.event-single {
    position: relative;
    padding: 120px 0 110px;
}

.event-single .image-column {
    position: relative;
    margin-bottom: 60px;
}

.event-single .image-column .image-box {
    position: relative;
}

.event-single .image-column .image {
    position: relative;
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
}

.event-single .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
}

.event-single .content-column {
    position: relative;
    margin-bottom: 60px;
}

.event-single .content-column .inner-column {
    position: relative;
    padding-left: 20px;
}

.event-single .content-column h2 {
    top: -8px;
    font-size: 40px;
    line-height: 1.2em;
    color: #1e2c67;
    font-weight: 700;
    margin-bottom: 25px;
}

.event-single .content-column p {
    font-size: 16px;
    line-height: 30px;
    color: #696478;
    margin-bottom: 30px;
}

.event-single .venue-block {
    position: relative;
    margin-bottom: 30px;
    min-height: 470px;
}

.event-single .venue-block .inner-box {
    position: relative;
    padding: 55px 60px 52px;
    background-color: #1e2c67;
    border-radius: 5px;
}

.event-single .venue-block h4 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 35px;
}

.event-single .venue-block .text {
    font-size: 16px;
    line-height: 30px;
    color: #c8bfe3;
    font-weight: 400;
    margin-bottom: 38px;
}

.event-single .venue-block .venue-info {
    position: relative;
    display: block;
    margin-bottom: 28px;
}

.event-single .venue-block .venue-info li {
    position: relative;
    display: block;
    color: #ffffff;
    padding-left: 40px;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 12px;
}

.event-single .venue-block .venue-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    color: #25bdd8;
    font-size: 22px;
}

.event-single .venue-block .venue-info li a {
    color: #ffffff;
    transition: all 300ms ease;
}

.event-single .venue-block .venue-info li a:hover {
    color: #ffffff;
}

.event-single .organize-block {
    position: relative;
    min-height: 470px;
    margin-bottom: 30px;
}

.event-single .organize-block .inner-box {
    position: relative;
    padding: 55px 60px 50px;
    background-color: #25bdd8;
    border-radius: 5px;
}

.event-single .organize-block h4 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 35px;
}

.event-single .organize-block .text {
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 36px;
}

.event-single .organize-block .organize-info {
    position: relative;
    display: block;
}

.event-single .organize-block .organize-info li {
    position: relative;
    display: block;
    color: #ffffff;
    padding-left: 40px;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.event-single .organize-block .organize-info li:last-child {
    margin-bottom: 0;
}

.event-single .organize-block .organize-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 20px;
}

.event-single .organize-block .organize-info li a {
    color: #ffffff;
    transition: all 300ms ease;
}

.event-single .organize-block .organize-info li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.event-single .map-block {
    position: relative;
    margin-bottom: 30px;
}

.event-single .map-canvas {
    position: relative;
    min-height: 470px;
    width: 100%;
}

.asahcmaab {
    text-align: center;
    padding: 25px 0;
    position: relative;
    z-index: 1;
    border-bottom: 2px dotted #7e7e7e;
}

.asahcmaab h2 {
    font-size: 27px;
    font-weight: 300;
    margin-top: 0;
    display: inline-block;
    color: #fff;
}

.asahcmaab h2:before {
    content: '';
    display: inline-block;
    position: relative;
    top: 6px;
    left: 234px
}

.asahcmaab h2 {
    color: #fff;
    font-size: 29px;
    font-weight: 200;
    margin: 0 0 19px;
    text-transform: capitalize;
}

.asahcmaab p {
    font-size: 24px;
    font-weight: 300;
}

.asahcmaab p a {
    text-decoration: none;
    outline: 0;
    color: #fff;
    margin-left: 8px;
    background: #ff3437;
    padding: 7px 14px;
    border-radius: 10px;
    display: inline-block;
}

.f_g_row .col-md-6 {
    padding: 0 7px;
}

.fg_list {}

.fg_list span {
    position: absolute;
    bottom: -14px;
    width: 100px;
    left: 0px;
    right: 0px;
    margin: auto;
    background: #ff0004;
    color: #ffffff;
    padding: 3px 0;
    border-radius: 30px;
}


/*** 

====================================================================
		Newsletter Section
====================================================================

***/

.newsletter-section {
    position: relative;
    padding: 24px 0 29px;
    color: #fff;
    text-align: center;
    margin: 0px 0 0;
}

.newsletter-section .auto-container::before {
    content: "";
    position: absolute;
    bottom: -47px;
    left: 0;
    right: 0;
    margin: auto;
}

.add_bar_row .col-md-4 {
    border-right: 2px dotted #7e7e7e;
    padding: 29px 9px;
    text-align: center;
    color: #ddd;
}

.add_bar_row .col-md-4:nth-child(3) {
    border-right: 0px;
}

._addre_bar i {
    width: 45px;
    height: 45px;
    background: #c5223c;
    color: #ffffff;
    border-radius: 50%;
    font-size: 19px;
    line-height: 44px;
    margin-bottom: 15px;
}

._addre_bar h5 {
    font-weight: 400;
    font-size: 14px;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    width: 50%;
    height: 10px;
    background: #c5223c;
}

.newsletter-section::after {
    content: "";
    position: absolute;
}

.newsletter-section .title-column {
    position: relative;
}

.newsletter-section .title-column .inner-column {
    position: relative;
    padding-top: 0;
}

.newsletter-section h2 {}

.newsletter-section h4 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: inherit;
    color: #ffffff;
    font-weight: 500;
}

.newsletter-section .inner-container {
    max-width: 1245px;
    margin: auto;
}


/*Subscribe Form*/

.subscribe-form {
    position: relative;
}

.subscribe-form .form-group {
    position: relative;
    display: block;
    margin: 0px;
    width: 100%;
    padding-right: 200px;
}

.newsletter-section .form-control {
    height: 45px;
    background: transparent;
    color: #fff;
}

.newsletter-section .form-control::placeholder {
    color: #eee;
}

.subscribe-form .form-group .icon {
    position: absolute;
    left: 24px;
    top: 20px;
    z-index: 1;
    color: #888888;
    font-size: 16px;
    line-height: 1em;
}

.subscribe-form .form-group input[type="text"],
.subscribe-form .form-group input[type="tel"],
.subscribe-form .form-group input[type="email"],
.subscribe-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    line-height: 30px;
    font-size: 16px;
    color: #858687;
    font-weight: 500;
    background: #ffffff;
    padding: 25px 40px;
    border-radius: 0px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.subscribe-form .form-group input[type="submit"],
.subscribe-form .form-group button {
    position: absolute;
    right: 15px;
    top: 0px;
    min-width: 185px;
    height: 100%;
    border-radius: 0px;
    background: #5dc575;
}

section.tips-secrtion {
    padding: 62px 0 0;
    position: relative;
}

.blogs_section {
    position: relative;
    padding: 0px 0px 80px;
}

.why_section {
    position: relative;
    padding: 0px 0px 51px;
}

.whylist {
    position: relative;
    text-align: center;
    padding: 0 34px 19px;
    margin-bottom: 20px;
}

.whylist::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 70%;
    border: 1px dashed #333;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.why_pic {
    position: relative;
    display: inline-block;
    background: #ffcb71;
    padding: 36px 15px;
    box-shadow: 0px 0px 10px #7e7e7e;
    border-radius: 58px;
    margin: 0 0 14px;
    border: 4px solid #ffffff;
}

.why_info {
    position: relative;
}

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


/*** 

====================================================================
	 	events Section
====================================================================

***/

.events_section {
    padding: 0px 0 100px;
    position: relative;
}

.evnt_lists {
    position: relative;
    text-align: center;
    background: #f2f2f2;
    padding: 7px;
    box-shadow: 0px 4px 9px #a8a7a7;
    margin: 12px;
}

.evnt_pic {
    position: relative;
    overflow: hidden;
    height: 215px;
}

.evet_info {
    position: relative;
    padding: 16px;
    background: linear-gradient(to top, #d7eded, transparent);
}

.evet_info h3 {
    font-size: 19px;
}

.evet_info a {
    display: inline-block;
    background: #ff3437;
    padding: 3px 14px;
    border-radius: 30px;
    margin-top: 13px;
    color: #ffffff;
}

.evet_info a:hover {
    background: #379FA2;
    color: #fff;
}

.events_slider .owl-dots {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin: 5px 0 0;
}

.events_slider .owl-dot {
    position: relative;
    display: inline-block;
    height: 4px;
    width: 25px;
    background: #155c5e;
    opacity: 1;
    margin: 0 2px;
    border-radius: 2px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.events_slider .owl-dot:hover,
.events_slider .owl-dot.active {
    opacity: 1;
    background: #ff3437;
}


/*** 

====================================================================
	 	Testimonial Section
====================================================================

***/

.testimonial-section {
    position: relative;
    padding: 0px 0 100px;
}

.testimonial-head {
    margin-bottom: 31px;
}

.testimonial-section:before {
    position: absolute;
    content: "";
    top: 44px;
    left: 0;
    width: 78%;
    max-width: 592px;
    height: 289px;
    z-index: -1;
    border-top: 6px solid #e1e1e1;
    border-right: 6px solid #e1e1e1;
    border-left: 6px solid #e1e1e1;
    right: 0;
    margin: auto;
    border-radius: 21px;
}

.testimonial-section::after {
    left: initial;
    right: 0px;
    background: linear-gradient(to right, #e1163c, transparent, transparent);
    transform: rotate(13deg);
}

.sml_icon {
    position: absolute;
    right: 7px;
    top: 7px;
    width: 48px;
    opacity: .6;
}

.testimonial-carousel {
    position: relative;
    margin: 0 auto;
}

.testimonial-block {
    position: relative;
    padding-bottom: 31px;
}

.testimonial-block .inner-box {
    position: relative;
    background-color: #afffc2;
    padding: 77px 27px 20px;
    text-align: center;
    z-index: 9;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0%);
}

.testimonial-block .inner-box:before,
.testimonial-block .inner-box:after {
    position: absolute;
    left: 30px;
    top: 30px;
    height: 36px;
    width: 42px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-block .inner-box:after {
    left: auto;
    top: auto;
    right: 30px;
    bottom: 30px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.active .testimonial-block .inner-box:before,
.active .testimonial-block .inner-box:after {
    opacity: 1;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.testimonial-block .text {
    position: relative;
    display: block;
    font-size: 21px;
    line-height: 32px;
    color: #000000;
    font-weight: 300;
    margin-bottom: 25px;
}

.testimonial-block .info-box {
    position: relative;
}

.testimonial-block .name {
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #000000;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.testimonial-block .designation {
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #696478;
    margin-bottom: 5px;
}

.testimonial-block .thumb {
    position: relative;
    display: inline-block;
    height: 58px;
    width: 58px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 18px;
}

.testimonial-block:after,
.testimonial-block:before {
    position: absolute;
    left: 30px;
    right: 30px;
    height: 100%;
    bottom: 30px;
    margin: 0 auto;
    /* background-color: #e8e8e8; */
    content: "";
    z-index: 1;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
}

.testimonial-block:before {
    left: 60px;
    right: 60px;
    bottom: 0px;
    z-index: -1;
}

.testimonial-carousel .active .testimonial-block:before,
.testimonial-carousel .active .testimonial-block:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.testimonial-carousel .active .testimonial-block:before {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.testimonial-carousel .owl-nav {
    display: none;
}

.testimonial-carousel .owl-dots {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin: 5px 0 0;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 4px;
    width: 25px;
    background: #155c5e;
    opacity: 1;
    margin: 0 2px;
    border-radius: 2px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-carousel .owl-dot:hover,
.testimonial-carousel .owl-dot.active {
    opacity: 1;
    background: #ff3437;
}

.testimnila_box.serviceBox {
    text-align: center;
    padding: 54px 14px;
    position: relative;
    margin: 33px 9px;
    border-radius: 16px;
    background: #f5f5f5;
    box-shadow: 0px 0px 10px #a9a9a9;
    min-height: 271px;
    z-index: 1;
}

.testimnila_box.serviceBox:before {
    content: '';
    position: absolute;
    z-index: -1;
}

.testimnila_box.serviceBox .service-icon {
    font-size: 22px;
    position: absolute;
    left: 27px;
    top: -24px;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    background: #379fa2;
    line-height: 42px;
    border-radius: 50%;
}

.service_icon_btm {
    font-size: 22px;
    position: absolute;
    right: 27px;
    bottom: -24px;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    background: #379fa2;
    line-height: 44px;
    border-radius: 50%;
}

.testimnila_box.serviceBox .title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #c5223c;
}

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

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

.testimoanial_read {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.testimoanial_read::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    border-bottom: 1px solid #ccc;
    left: 0;
    top: 16px;
    z-index: -1;
}

.testimoanial_read a {
    display: inline-block;
    color: #f08533;
    font-weight: 600;
    font-size: 20px;
    border: 2px solid;
    padding: 7px 19px;
    border-radius: 30px;
    background: #fff;
}

.gg_review {
    position: relative;
    width: 200px;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto 16px;
    text-align: center;
    border-radius: 9px;
    overflow: hidden;
    border: 6px solid #e1e1e1;
    padding: 6px;
    background: #fff;
}

.gg_review i {
    display: inline-block;
    border-radius: 50%;
    font-size: 43px;
    line-height: 48px;
    margin: 0 0 7px;
}

.ratings {
    position: relative;
    margin: 0;
    color: #ffb13c;
}

.patientcare_section {
    position: relative;
    padding: 0 0 140px;
}

.patuentcare_main_text {
    position: relative;
    background: #379fa2;
    color: #fff;
    padding: 26px;
    border-radius: 0px 48px 46px 0px;
}

.patuentcare_main_text::before {
    content: "";
    position: absolute;
    width: 123%;
    height: 100%;
    background: #379fa2;
    right: 100%;
    top: 0;
}

.patuentcare_main_text h2 {
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px dotted;
    margin: 0 0 12px;
    font-size: 27px;
    font-weight: 600;
}

.patuentcare_main_text p {
    line-height: 44px;
    border-bottom: 1px dotted;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 26px;
    font-weight: 300;
}

.patuentcare_main_text p:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

.pattiencare_info_block {
    position: relative;
    padding: 49px 0;
}

.pattiencare_info_block::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    right: 89%;
    border: 9px solid #155c5e;
    z-index: -1;
    border-radius: 17px;
}

.pattiencare_info_block::after {}

.patient_blocks {
    position: relative;
    margin-bottom: 0;
}

.patient_blocks:last-child p {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

.patntcr_img {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    border: 7px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
}

.ptnt_care_info {
    position: relative;
}

.ptnt_care_info h3 {
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #091b4e;
}

.ptnt_care_info p {
    line-height: 23px;
    text-align: justify;
    border-bottom: 1px dotted;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.faculty_physicians {
    text-align: center;
    margin-top: 54px;
}

.faculty_physicians h2 {
    text-transform: uppercase;
    padding: 11px 5px;
    background: linear-gradient(to right, #091b4e, #e1163c);
    font-size: 22px;
    color: #fff;
    border-radius: 11px;
}

.fac_row_list_ {
    position: relative;
    padding: 38px 0 54px;
}

.fac_row_list_::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    border-right: 2px dotted;
    top: 0;
    z-index: 1;
}

.fac_row_list_ .col-md-6 {
    padding: 28px 10px;
    font-size: 18px;
}

.fac_row_list_ .col-md-6:nth-child(1),
.fac_row_list_ .col-md-6:nth-child(5),
.fac_row_list_ .col-md-6:nth-child(9) {
    background: linear-gradient(to left, #dce5fd, transparent);
}

.fac_row_list_ .col-md-6:nth-child(4),
.fac_row_list_ .col-md-6:nth-child(8) {
    background: linear-gradient(to right, #ffd4dc, transparent);
}

.facility_section {
    position: relative;
    padding: 67px 0 80px;
}

.facility_section::before,
.facility_section::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 446px;
    top: 0;
}

.facility_section::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.facility_section::after {
    background: #ff3437;
    z-index: -1;
}

.emergency_bg {
    position: absolute;
    right: 0px;
    bottom: 41px;
    width: 43%;
}

.emergency_bg img {
    width: 100%;
    filter: grayscale(1);
}

.facility_list_block {
    position: relative;
}

.facilites_title_head {
    position: absolute;
    left: 105px;
    font-family: 'Saira', sans-serif;
    text-transform: uppercase;
    font-size: 43px;
    top: 16rem;
    color: #f08533;
    right: 0;
    text-align: center;
    line-height: 63px;
}

.title_head {
    color: #fff;
    text-align: center;
}

.title_head span {
    font-size: 34px;
    display: block;
    line-height: 44px;
    font-weight: 300;
}

.title_head h3 {
    font-size: 23px;
    display: inline-block;
    background: #155c5e;
    padding: 3px 13px;
    border-radius: 30px;
    margin: 12px 0 7px;
}

.title_head h4 {
    font-weight: 300;
}

.title_head h2 {
    font-size: 33px;
    display: inline-block;
    background: #155c5e;
    padding: 3px 13px;
    border-radius: 30px;
    margin: 12px 0 34px;
}

.fac_row {
    position: relative;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
}

.fac_row::before {
    content: "";
    position: absolute;
}

.fac_row .col-md-3 {
    padding: 0 10px;
}

.fac_block {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 17px;
    display: inline-block;
    margin-bottom: 10px;
}

.fac_block::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #062f30, transparent);
    bottom: 0;
    left: 0;
    z-index: 1;
}

.fac_block img {
    transition: all ease-in-out .7s;
}

.fac_block:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.fac_block h3 {
    position: absolute;
    text-transform: capitalize;
    color: #ffffff;
    font-size: 18px;
    left: 0;
    right: 0;
    bottom: 15px;
    margin: auto;
    z-index: 1;
    padding: 0 9px;
}

.fac_desc {
    position: absolute;
    left: 12px;
    bottom: 30px;
    z-index: 2;
    width: 48%;
    text-align: center;
    background: #eb131d;
    color: #ffffff;
    font-size: 16px;
    padding: 12px 11px;
    border-radius: 13px;
}

.appointment_form {
    position: relative;
    text-align: center;
    padding: 64px 33px 0;
}

.appointment_form form {
    position: relative;
}

.appointment_form h2 {
    text-transform: uppercase;
    font-size: 27px;
    margin: 0 0 10px;
    color: #fff;
}

.appointment_form form .form-control {
    border: none;
    border-radius: 0px;
    border-bottom: 1px dotted #ccc;
    background: transparent;
    color: #fff;
}

.appointment_form form .form-control::placeholder {
    color: #ffff;
}

.appointment_form form textarea.form-control {
    height: 94px;
}

.appointment_form form .btn {
    background: #eb131d;
    color: #ffffff;
    display: inline-block;
    padding: 4px 16px;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.faq_section {
    position: relative;
    padding: 0 0 100px;
}

.faq_timeline.main-timeline {
    position: relative;
}

.faq_timeline.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.faq_timeline.main-timeline .timeline {
    width: 48%;
    padding: 43px 0 0 0;
    margin: 0 5px 25px 0;
    float: left;
    text-align: right;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px dashed black;
}

.faq_timeline.main-timeline .timeline-content {
    min-height: 128px;
    padding: 8px 15px 0px 0;
    border-right: 2px solid #0b1a4d;
    display: block;
    position: relative;
    /* background: linear-gradient(to left, #ececec, transparent); */
}

.faq_timeline.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.faq_timeline.main-timeline .timeline-content:before,
.faq_timeline.main-timeline .timeline-content:after {
    content: '';
    background-color: #379fa2;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    position: absolute;
    right: -4px;
    top: 0;
}

.faq_timeline.main-timeline .timeline-content:after {
    top: auto;
    bottom: 0;
}

.faq_timeline.main-timeline .timeline-year {
    color: #fff;
    background: #005255;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    position: absolute;
    right: -2px;
    top: -45px;
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0 50%);
}

.faq_timeline.main-timeline .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 7px;
}

.faq_timeline.main-timeline .description {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    margin: 0;
}

.faq_timeline.main-timeline .timeline:nth-child(even) {
    margin: 0 0 25px 5px;
    float: right;
}

.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
    text-align: left;
    padding: 8px 0 0 15px;
    border-left: 2px solid #0b1a4d;
    border-right: none;
    background: linear-gradient(to right, #ececec, transparent);
}

.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content:before,
.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content:after {
    right: auto;
    left: -4px;
}

.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-year {
    right: auto;
    left: -2px;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

@media screen and (max-width:767px) {

    .faq_timeline.main-timeline .timeline,
    .faq_timeline.main-timeline .timeline:nth-child(even) {
        width: 100%;
        margin: 0 0 25px;
    }
}

.blog_section {
    position: relative;
    padding: 0 0 93px;
}

.bl_slides {
    position: relative;
    margin: 14px 14px;
}

.bl_slides::before {
    content: "";
    position: absolute;
    right: 0;
    width: 87%;
    height: 100%;
    box-shadow: 0px 0px 10px #cfcfcf;
    border-radius: 17px;
}

.blog_img_ {
    border: 8px solid #fff;
    box-shadow: 0px 0px 10px #9b9b9b;
    overflow: hidden;
    border-radius: 23px;
}

.blog_desc_ {
    position: relative;
    padding: 84px 14px;
}

.blog_desc_ h3 {
    font-size: 22px;
    margin: 0 0 12px;
}

.blog_desc_ p {
    line-height: 25px;
    margin: 0 0 15px;
}

.blog_desc_ a {
    display: inline-block;
    background: linear-gradient(to left, #091b4e, #eb133c);
    color: #fff;
    font-size: 17px;
    padding: 5px 13px;
    border-radius: 4px;
}

.blogs_slider .owl-nav {
    position: absolute;
    right: 119%;
    width: 109px;
    bottom: 47px;
}

.blogs_slider .owl-nav button {
    display: inline-block;
    background: transparent;
}

.blogs_slider .owl-nav button span {
    display: inline-block;
    background: #fff;
    border: 1px dotted #04064a;
    padding: 9px 16px 16px;
    font-size: 34px;
    line-height: 14px;
    color: #e1163c;
    margin: 0 4px;
}


/*** 

====================================================================
	Contact Section
====================================================================

***/

.contact-section {
    position: relative;
    padding: 120px 0 100px;
}

.contact-section .sec-title {
    margin-bottom: 35px;
}

.contact-section .sec-title .text {
    font-size: 22px;
    line-height: 36px;
    color: #696478;
    font-weight: 400;
    margin-top: 40px;
}

.contact-section .contact-form {
    position: relative;
}

.contact-section .row {
    margin: 0 -10px;
}

.contact-form .form-group {
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group input[type="url"],
.contact-form .form-group textarea,
.contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    color: #858687;
    line-height: 28px;
    padding: 25px 30px;
    border: 1px solid transparent;
    background-color: #f2f5f6;
    font-weight: 500;
    border-radius: 15px;
    height: 80px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #ff4880;
}

.contact-form .form-group textarea {
    height: 250px;
    resize: none;
}

.contact-form label.error {
    color: #ff4880;
    padding-top: 10px;
    text-transform: capitalize;
    display: block;
}

.contact-section .contact-info {
    position: relative;
}

.contact-section .contact-info li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #696478;
    font-weight: 500;
    padding-left: 40px;
    margin-bottom: 30px;
}

.contact-section .contact-info li a {
    color: #696478;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-section .contact-info li a:hover {
    color: #ff4986;
}

.contact-section .contact-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #ff4986;
    font-weight: 400;
}

.contact-map-section {
    position: relative;
}

.contact-map-section .map-canvas {
    position: relative;
    min-height: 560px;
    width: 100%;
}


/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer {
    position: relative;
}

.main-footer::before {
    position: absolute;
    content: "";
    /* background-image: url(../images/footer_bg.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main-footer::after {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(0 82 85 / 94%);
    z-index: -1;
    bottom: -1px;
}

.main-footer .footer-upper {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px 0px 0px;
    margin-top: 0;
}

.main-footer .footer-upper .footer-column {
    position: relative;
    margin-bottom: 24px;
    z-index: 1;
}

.main-footer .footer-upper .footer-column:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 137px;
    right: 12px;
    top: 83px;
}

.main-footer .footer-upper .footer-column:last-child:before {
    content: none;
}

.main-footer .footer-widget .widget-title {
    position: relative;
    font-size: 23px;
    font-weight: 600;
    color: #e1e1e1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.main-footer .footer-widget .widget-title::before {
    content: "";
    position: absolute;
    width: 62px;
    height: 2px;
    left: 0;
    top: 32px;
}

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


/*Logo Widget*/

.logo-widget {
    position: relative;
    text-align: center;
}

.logo-widget .logo img {
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: 0;
    width: 149px;
    border-radius:10%;
}

.logo-widget .logo img:hover {
    opacity: 1;
}

.logo-widget .text {
    position: relative;
    color: #000000;
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 7px;
}


/*Links Widget*/

.main-footer .links-widget {
    position: relative;
}

.main-footer .activity-list {
    position: relative;
    padding-top: 10px;
}

.main-footer .activity-list li {
    position: relative;
    margin-bottom: 10px;
}

.main-footer .activity-list li:last-child {
    margin-bottom: 0;
}

.main-footer .activity-list li a {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #c8bfe3;
    padding: 10px 15px;
    padding-left: 30px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .activity-list li a:hover {
    border: 1px solid #ff4788;
}

.main-footer .list {
    position: relative;
}

.main-footer .list li {
    position: relative;
    display: block;
    margin-bottom: 1px;
    padding-left: 17px;
}

.main-footer .list li:before {
    position: absolute;
    left: 0;
    top: 8px;
    height: 10px;
    width: 10px;
    border-radius: 1px;
    background: rgb(221 221 221 / 51%);
    content: "";
}

.main-footer .list li a {
    position: relative;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #ccc;
}

.main-footer .list li a:hover {
    color: #3dd6da;
}


/*COntact Widget*/

.main-footer .contact-widget {
    position: relative;
}

.main-footer .contact-info {
    position: relative;
}

.main-footer .contact-info li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
    padding-left: 44px;
    margin-bottom: 20px;
}

.main-footer .contact-info li:last-child {
    margin-bottom: 0;
}

.main-footer .contact-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    background: #e81f31;
    text-align: center;
    color: #ffffff;
}

.main-footer .contact-info li a {
    color: #000000;
    display: inline-block;
    transition: all 300ms ease;
}

.main-footer .contact-info li a:hover {
    color: #f72f67;
}

.main-footer .footer-bottom {
    position: relative;
    text-align: center;
}

.main-footer .footer-bottom:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .03;
    content: "";
}

.main-footer .footer-bottom .social-icon-two {
    position: relative;
    float: right;
}

.main-footer .footer-bottom .copyright {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    padding: 12px 0px;
    border-top: 2px dotted #7e7e7e;
    color: #e1e1e1;
}

.main-footer .footer-bottom .copyright a {
    color: #1ceaf2;
}

.main-footer .footer-bottom .copyright a:hover {
    text-decoration: underline;
}


/*** 

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container {
    position: relative;
    padding: 120px 0 70px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side {
    margin-bottom: 50px;
}

.sidebar-widget {
    position: relative;
    padding: 45px 50px;
    background-color: #f2f5f6;
    margin-bottom: 30px;
    border-radius: 7px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}


/* Sidebar Title */

.sidebar-title {
    position: relative;
    margin-bottom: 25px;
}

.sidebar-title h5 {
    position: relative;
    font-size: 22px;
    color: #1e2c67;
    font-weight: 700;
    line-height: 30px;
}


/*Search Box Widget*/

.sidebar .search-box {
    position: relative;
    padding: 50px;
    border-radius: 7px;
    background-color: #25bdd8;
}

.sidebar .search-box .form-group {
    position: relative;
    margin: 0px;
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
    position: relative;
    line-height: 30px;
    padding: 25px 30px;
    border: 1px solid transparent;
    background: #ffffff;
    display: block;
    font-size: 16px;
    width: 100%;
    height: 80px;
    color: #696478;
    border-radius: 10px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group input[type="submit"],
.sidebar .search-box .form-group button {
    position: absolute;
    right: 30px;
    top: 25px;
    line-height: 30px;
    display: block;
    font-size: 16px;
    background-color: transparent;
    color: #1e2c67;
    font-weight: normal;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group button:hover {
    color: #ff4880;
}

.sidebar .search-box .form-group input[type="text"]:focus,
.sidebar .search-box .form-group input[type="search"]:focus {
    border-color: #25bdd8;
}

.sidebar .search-box .sidebar-title h5 {
    color: #ffffff;
}


/* Categories */

.categories {
    position: relative;
    padding: 45px 50px 50px;
}

.category-list li {
    position: relative;
    margin-bottom: 20px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li a {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: #696478;
    display: block;
    padding-left: 20px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.category-list li a:before {
    position: absolute;
    left: 0;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 5px;
    background-color: #ff4986;
    content: "";
}

.category-list li.active a,
.category-list li a:hover {
    color: #ff4986;
}


/* Post Widget */

.posts-widget {
    position: relative;
}

.posts-widget .post {
    position: relative;
    margin-bottom: 35px;
}

.posts-widget .post:last-child {
    margin-bottom: 0;
}

.posts-widget .post .post-inner {
    position: relative;
    padding-left: 80px;
}

.posts-widget .post .image {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.posts-widget .post .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.posts-widget .post .post-inner:hover .image img {
    opacity: .70;
}

.posts-widget .post .date {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #25bdd8;
    font-weight: 600;
    margin-bottom: 5px;
}

.posts-widget .post h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.5em;
    color: #393d72;
    font-weight: 700;
}

.posts-widget .post h5 a {
    color: #393d72;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.posts-widget .post h5 a:hover {
    color: #ff4986;
}


/*Popular Tags*/

.sidebar .popular-tags {
    position: relative;
}

.sidebar .tags-list li {
    position: relative;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebar .tags-list a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #25bdd8;
    border-radius: 5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar .tags-list a:hover {
    background-color: #1e2c67;
    color: #ffffff;
}


/*** 

====================================================================
	Comments Area
====================================================================

 ***/

.sidebar-page-container .group-title {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-page-container .group-title h3 {
    position: relative;
    font-size: 40px;
    color: #1e2c67;
    font-weight: 700;
}

.sidebar-page-container .comments-area .comment-box {
    position: relative;
    padding: 0 0 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #e8e6ec;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar-page-container .comments-area .comment {
    position: relative;
    min-height: 70px;
    padding: 0px 0px 0px 150px;
    font-size: 14px;
}

.sidebar-page-container .comments-area .reply-comment {
    margin-left: 120px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb {
    position: absolute;
    left: 0px;
    top: 8px;
    width: 110px;
    height: 115px;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar-page-container .comments-area .comment-box .author-thumb img {
    width: 100%;
    display: block;
}

.sidebar-page-container .comments-area .comment-info {
    margin-bottom: 30px;
}

.sidebar-page-container .comments-area .comment-box strong {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #393d72;
    line-height: 30px;
    text-transform: capitalize;
    margin-right: 10px;
}

.sidebar-page-container .comments-area .comment-info .comment-time {
    display: inline-block;
    font-size: 14px;
    color: #25bdd8;
    font-weight: 400;
    line-height: 30px;
}

.sidebar-page-container .comments-area .comment-box .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #696478;
}

.sidebar-page-container .comments-area .comment-box .reply-outer {
    position: absolute;
    right: 0;
    top: 0;
}

.sidebar-page-container .comments-area .comment-box .theme-btn {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    line-height: 20px;
    font-weight: 700;
    border-radius: 5px;
    background-color: #1e2c67;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar-page-container .comments-area .comment-box .theme-btn:hover {
    background-color: #25bdd8;
}

.modal-dialog.app_dialouge {
    max-width: 394px;
    margin-top: 7%;
    text-align: center;
}

.app_content .modal-header {
    display: block;
    text-align: center;
    border: none;
    padding-bottom: 0;
}

.app_content .modal-header h4 {
    text-transform: uppercase;
    color: #1c1c1c;
    font-weight: 600;
}

.app_content .modal-header .close {
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(to left, #709938, #eba836);
    opacity: 1;
    color: #fff;
    font-size: 37px;
    padding: 1px 6px;
    line-height: 39px;
}

.modal-dialog .btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 6px 30px;
    font-weight: 600;
    background: linear-gradient(to left, #709938, #eba836);
    overflow: hidden;
    min-width: 123px;
    border-radius: 30px;
    border: 0px;
}

.innercnt_section {
    position: relative;
    padding: 90px 0px;
    min-height: 60vh;
}

.breadcrumb {
    text-align: center;
    display: block;
    padding: 130px 0;
    margin: 104px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background: 0 0
}

.breadcrumb h1 {
    font-size: 38px;
    text-transform: capitalize;
    margin-bottom: 3px;
    color: #f0f0f0;
    font-weight: 500;
    z-index: 1
}

.breadcrumb ul {
    display: inline-block;
    margin: auto;
    list-style: none;
    padding: 6px 7px;
    border-radius: 31px;
}

.breadcrumb ul li {
    display: inline-block;
    position: relative;
    color: #ffe809;
    padding: 0 8px;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 300
}

.breadcrumb ul li:before {
    content: "/";
    position: absolute;
    right: -5px;
    top: 0;
    color: #fcfcfc;
    font-weight: 600;
    font-size: 14px
}

.breadcrumb ul li:last-child:before {
    content: none
}

.breadcrumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/breadcumb/main.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
}

.cardiology_b::before {
    background-image: url(../images/breadcumb/cardiology.jpg);
}

.neurology_b::before {
    background-image: url(../images/breadcumb/neurology.jpg);
}

.pulmonology_b::before {
    background-image: url(../images/breadcumb/pulmonology.jpg);
}

.dentalcare_b::before {
    background-image: url(../images/breadcumb/dental.jpg);
}

.orthopedic_b::before {
    background-image: url(../images/breadcumb/orthopedic.jpg);
}

.gastroenterology_b::before {
    background-image: url(../images/breadcumb/Gastroenterology.jpg);
}

.trauma_care_b::before {
    background-image: url(../images/breadcumb/trauma-care.jpg);
}

.general_medicine_b::before {
    background-image: url(../images/breadcumb/Ancillary-departments.jpg);
}

.breadcrumb::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgb(0 82 85 / 88%);
    left: 0
}

.breadcrumb ul li a {
    color: #ffffff;
}

.list_uls {
    position: relative;
    z-index: 1;
}

.services_text h2 {
    font-size: 22px;
    color: #00979d;
    margin: 19px 0 7px;
    font-weight: 600
}

.services_text h3 {
    font-size: 19px;
    color: #ff0004;
    margin: 14px 0 3px;
    font-weight: 600;
}

.services_text h4 {
    font-size: 17px;
    color: #28a745;
    margin: 14px 0 3px;
    font-weight: 600;
}

.services_text p {
    text-align: justify;
    line-height: 25px;
    margin-bottom: 10px;
    font-size: 16px;
}

.services_text a {
    color: red
}

.ser_inner_nav {
    position: relative
}

.services_text .ser_inner_nav h3 {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 0;
    text-align: center;
    background: #c5223c;
    padding: 11px 0;
}

.ser_inner_nav ul {
    position: relative;
    padding: 0 16px;
    background: #fff;
    box-shadow: 0px 3px 2px #ccc;
}

.ser_inner_nav ul li {
    display: block
}

.services_text .ser_inner_nav ul li a {
    display: block;
    color: #000;
    padding: 14px 8px;
    border-bottom: 2px dotted #828282;
    font-size: 15px;
    background: #fff;
    text-transform: capitalize
}

.services_text .ser_inner_nav ul li:last-child a {
    border-bottom: 0px;
}

.services_text .ser_inner_nav ul li a.active {
    color: #c5223c;
}

.ol_styles {
    position: relative;
    padding-left: 26px
}

.ol_styles li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 4px
}

.ol_styles li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff0f13;
    font-weight: 600;
    font-size: 13px
}

.ser_inner_pic {
    text-align: center;
    margin-bottom: 20px;
}

.ser_inner_pic img {
    border: 5px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
}

.counter {
    color: var(--color1);
    background: #088e97;
    text-align: center;
    padding: 58px 23px 11px;
    border-radius: 20px 20px;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.counter:before {
    content: "";
    background: #fff;
    width: calc(100% - 30px);
    height: calc(100% + 15px);
    border-radius: 10px 10px;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: -1;
}

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

.counter .counter-icon {
    color: #fff;
    background: #c5223c;
    font-size: 35px;
    font-weight: 600;
    width: 80px;
    height: 60px;
    line-height: 60px;
    border-radius: 10px 0 10px 10px;
    transform: translateX(-50%);
    position: absolute;
    top: -20px;
    left: 50%;
}

.counter .counter-icon:before {
    content: "";
    background: linear-gradient(45deg, #0c0404 49%, transparent 50%);
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    right: -12px;
}

.counter h3 {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.counter p {
    font-size: 16px;
}

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

.map iframe {
    border: 10px solid #f6f6f6;
    width: 100%;
    height: 300px;
}

.testimnila_timelien.main-timeline {
    position: relative;
}

.testimnila_timelien.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.testimnila_timelien.main-timeline:before {
    content: '';
    height: 100%;
    width: 3px;
    border-left: 3px dashed #0f8185;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
}

.testimnila_timelien.main-timeline .timeline {
    width: 50%;
    padding: 15px 15px 15px 55px;
    margin: 0 0 0 5px;
    float: right;
    position: relative;
    z-index: 1;
}

.testimnila_timelien.main-timeline .timeline:before {
    content: '';
    background-color: #0f8185;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: -10px;
    top: 50%;
}

.testimnila_timelien.main-timeline .timeline-content {
    background: rgb(255 255 255);
    text-align: center;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgb(0 0 0 / 26%);
    display: block;
    position: relative;
}

.testimnila_timelien.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.testimnila_timelien.main-timeline .timeline-content:before,
.testimnila_timelien.main-timeline .timeline-content:after {
    content: "";
    background: #c5223c;
    width: 35px;
    height: 35px;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    left: -33px;
    z-index: -1;
}

.testimnila_timelien.main-timeline .timeline-content:after {
    background: linear-gradient(to left, transparent, #a2a2a2);
    height: auto;
    width: auto;
    border-radius: 20px;
    transform: translateY(0);
    left: -15px;
    right: -15px;
    top: -15px;
    bottom: -15px;
    z-index: -2;
}

.testimnila_timelien.main-timeline .timeline-icon {
    color: #ff3437;
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    margin: 0 0 10px;
}

.testimnila_timelien.main-timeline .title {
    color: #0f8185;
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

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

.testimnila_timelien.main-timeline .timeline:nth-child(even) {
    padding: 15px 55px 15px 15px;
    margin: 0 5px 0 0;
    float: left;
}

.testimnila_timelien.main-timeline .timeline:nth-child(even):before {
    left: auto;
    right: -10px;
}

.testimnila_timelien.main-timeline .timeline:nth-child(even) .timeline-content:before {
    left: auto;
    right: -33px;
}

.testimnila_timelien.main-timeline .timeline:nth-child(even) .timeline-content:after {
    transform: rotate(180deg);
}

@media screen and (max-width:767px) {
    .testimnila_timelien.main-timeline:before {
        transform: translateX(-50%);
        left: 18px;
    }

    .testimnila_timelien.main-timeline .timeline,
    .testimnila_timelien.main-timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 15px 15px 15px 55px;
        margin: 0 0 30px;
    }

    .testimnila_timelien.main-timeline .timeline:before,
    .testimnila_timelien.main-timeline .timeline:nth-child(even):before {
        left: -7px;
    }

    .testimnila_timelien.main-timeline .timeline-content:before,
    .testimnila_timelien.main-timeline .timeline:nth-child(even) .timeline-content:before {
        left: -33px;
        right: auto;
    }

    .testimnila_timelien.main-timeline .timeline:nth-child(even) .timeline-content:after {
        transform: rotate(0);
    }

    .testimnila_timelien.main-timeline .title {
        font-size: 23px;
    }
}

.box {
    position: relative;
    overflow: hidden;
    height: 161px;
    border-radius: 19px;
    margin-bottom: 30px;
}

.box:before {
    content: "";
    background: linear-gradient(to top, rgb(255 52 55 / 89%), #075155);
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    transform: translateX(-50%) translateY(-50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.box:hover:before {
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.box img {
    width: 100%;
    height: auto;
    transform: scale3d(1.1, 1.1, 1);
    transition: all 0.25s linear;
}

.box:hover img {
    transform: scale(1.25);
}

.box .inner-content {
    color: #fff;
    text-align: center;
    width: 70%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 70%;
    left: 50%;
    transition: all 600ms ease;
    z-index: 1;
}

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

.box .title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 3px;
}

.box .post {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0 0 12px;
    display: block;
}

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

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

.box .icon li a {
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    height: 35px;
    width: 35px;
    border: 2px solid #fff;
    border-radius: 10px 0 10px 0;
    display: block;
    transition: all 0.3s;
}

.box .icon li a:hover {
    color: #ff5733;
    background: #fff;
    border-radius: 50px 50px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}


.video_block iframe {
    width: 100%;
    height: 240px;
    margin-bottom: 30px;
    border: 8px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
}

.inner_abot_pic {
    margin: 20px 0px;
    border: 10px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
}

.pricingTable {
    text-align: center;
    padding: 20px 0 0;
    position: relative;
    z-index: 1;
}

.pricingTable:before,
.pricingTable:after {
    content: "";
    background:#c5223c;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50%;
    z-index: -2;
}

.pricingTable:after {
    background: #fff;
    border-radius: 20px 20px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    top: 90px;
    left: 10px;
    right: 10px;
    bottom: 19px;
}

.pricingTable .pricingTable-header {
    margin: 0 0 50px;
}

.pricingTable .title {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.pricingTable .price-value {
    color: var(--main-color);
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 30px;
    margin: 0 0 12px;
}

.pricingTable .pricing-content {
    padding: 0;
    margin: 0 0 35px;
    list-style: none;
    display: inline-block;
}

.pricingTable .pricing-content li {
    font-size: 15px;
    line-height: 25px;
    text-transform: capitalize;
    position: relative;
    padding: 0 18px;
}

.pricingTable .pricing-content li:last-child {
    margin: 0;
}

.pricingTable .pricingTable-signup a {
    color: #fff;
    background: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 7px 30px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.pricingTable .pricingTable-signup a:hover {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}


.inner_docrow {
    margin-bottom: 30px;
}

.inner_docrow .doc_img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 11px;
    background: #ffffff;
    box-shadow: 0px 0px 10px #9a9a9a;
}

.dbblock {
    display: block;
}

.first_upcoming {
    background: #fb3336;
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 19px 8px;
    border-radius: 10px;
    margin-top: 10px;
}

.careers-section {
    position: relative;
}

.careers-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 87%;
    border: 1px solid #ccc;
    top: 16px
}

.career-form {
    margin: auto;
    margin-top: 32px;
    padding: 0 23px;
}

.career-heading {
    display: table;
    margin: auto;
    text-align: center;
    background-color: #fff;
    position: relative;
    padding: 0 23px
}

.career-heading p {
    background-color: #ff3437;
    font-size: 27px;
    padding: 11px 22px;
    margin-top: 11px;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
}

.career-form .form-group {
    margin-bottom: 24px
}

.career-form .form-control {
    height: 56px
}

.career-form textarea.form-control {
    height: 120px
}

.career-form .btn {
    width: auto;
    padding: 8px 18px;
    margin-top: 18px;
    position: relative;
    background: #0a575c;
    border: navajowhite;
}

.nriportal_pic {
    margin: -162px 0 50px;
    position: relative;
    border: 10px solid #f5f5f5;
    box-shadow: 0px 7px 4px #b0b0b0;
}

.card_pay {
    background: linear-gradient(to left, #00979d, #f53235);
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    padding: 9px 48px;
    line-height: 34px;
    border-radius: 10px;
}

.nricntrow .col-md-6:nth-child(1) {
    border-right: 2px dotted #333;
}

.getcardbtn {
    text-align: center;
}

.getcardbtn a {
    display: inline-block;
    background: linear-gradient(to left, #00979d, #f53235);
    color: #fff;
    padding: 6px 13px;
    border-radius: 4px;
    font-size: 19px;
}

.clrblue li strong {
    color: #379FA2;
}

.evnt_list_ {
    position: relative;
    text-align: center;
    padding: 4px;
    background: #ececec;
    box-shadow: 0px 0px 10px #929292;
    overflow: hidden;
    margin-bottom: 30px;
}

.evnt_pic_l {
    position: relative;
}

.event_info_l {
    position: relative;
    background: #ffd1d1;
    padding: 18px 5px;
    min-height: 140px;
}

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

.event_info_l a {
    display: inline-block;
    background: #ff3437;
    padding: 3px 14px;
    border-radius: 30px;
    margin-top: 13px;
    color: #ffffff;
}

._evnts_nav {
    position: relative;
    padding: 17px 18px;
    margin: 0 0 26px;
    border-top: 4px solid #1dadb4;
    background: #ff3437;
    color: #fff;
}

._evnts_nav h4 {
    text-transform: capitalize;
    font-size: 40px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
}

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

._evnts_nav ul li a {
    display: block;
    position: relative;
    color: #fff;
    border-bottom: 2px dotted;
    padding-bottom: 10px;
    margin-bottom: 10px;
    padding-left: 17px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
}

._evnts_nav ul li a::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #ffffff;
    left: 0;
    border-radius: 50%;
    top: 5px;
}

._evnts_nav ul li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.event_list_box .box{
    height: 141px;
    box-shadow: 0px 0px 10px #ccc;
}
.nri-card {
    width: 378px;
    height: 239px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: auto;
    background: url(../images/new.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;

}
.p-aadhar{
    position: absolute;
    right: 20%;
    top: 65%;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    font-family: math;
}
.p-name {
    position: absolute;
    right: 34%;
    top: 73%;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    /* font-family: math; */
}
.p-number{
    position: absolute;
    right: 29%;
    top: 82%;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    /* font-family: math; */
}
.nri-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.getcardbtn {
    text-align: center;
}

.getcardbtn a {
    display: inline-block;
    background: linear-gradient(to left, #00979d, #f53235);
    color: #fff;
    padding: 6px 13px;
    border-radius: 4px;
    font-size: 19px;
}
.getcardbtn button {
    display: inline-block;
    background: linear-gradient(to left, #00979d, #f53235);
    color: #fff;
    padding: 6px 13px;
    border-radius: 4px;
    font-size: 19px;
    margin-top:15px
}

.clrblue li strong {
    color: #379FA2;
}
#basicDate.form-control:read-only{
    background-color:#fff;
    
}
.radio-button {
    margin: 10px;
  }
  
  .radio-button input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
  }
  
  .radio-button label {
    display: inline-block;
    background-color: #fff;
    padding: 10px 20px;
    font-family: sans-serif, Arial;
    font-size: 16px;
    border: 2px solid #444;
    border-radius: 4px;
  }
  
  .radio-button label:hover {
    background-color: #dfd;
  }
  
  .radio-button input[type="radio"]:focus+label {
    border: 2px dashed #444;
  }
  
  .radio-button input[type="radio"]:checked+label {
    background-color: #bfb;
    border-color: #4c4;
  }
  input[type="radio"]:disabled + label {
    color: grey; 
    background-color:#eee
}
.hidden{
    display:none
}
.visible{
    display:block
}















.ser_team_icon {
    position: absolute;
    width: 138px;
    left: 0;
    right: 0;
    margin: auto;
    top: 190px;
}

.ser_head.sec-title1 {
    position: relative;
    left: 0;
    top: 145;
    width: auto;
    text-align: center;
    margin-bottom: 19px;
}
.sec-title1 h2 {
    position: relative;
    display: block;
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    color: #c5223c;
}

.sec-title1 h2:before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 90px;
    height: 4px;
    content: "";
    border-radius: 2px;
    right: 0;
    margin: auto;
}

.servicesblocks::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 50%;
    background: linear-gradient(to top, transparent, #8dc63f, transparent);
    bottom: -46px;
    left: 0;
    right: 0;
    margin: auto;
}
.servicesblocks {
    position: relative;
}
.hm_team_pic {
    margin: 0 auto 0;
    width: 337px;
}

._hmdoc_info {
    position: relative;
   
  width: 83%;
  margin: auto;
  background: linear-gradient(to top, #379fa2, #379fa2);
  padding: 14px 0;
  border-radius: 11px;
  padding-left:20px;
}


._hmdoc_info h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    /* padding: 20px; */
    font-weight: 600;
}
._hmdoc_info h3 {
    font-size: 20px;
    color: #eee;
    margin: 6px 0 9px;
}
._hmdoc_info h4 {
    font-size: 17px;
    color: #eee;
}







 .navigation li.current > a {
    color: #c5223c;
   
}







/* Why Choose Section Start */


.why_section {
    position: relative;
    padding: 0px 0 94px;
}
.why_chosseus {
    position: relative;
}
.why_section::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: 0px;
    background: linear-gradient(to left, #fdc601, #379fa2, #c5223c);
    width: 70%;
    height: 8px;
}
.why_heda {
    position: relative;
    text-transform: uppercase;
    font-size: 43px;
    color: #aa1e2e;
    text-align: center;
    font-weight: 600;
    margin-bottom: 41px;
}
.whyrow .col-md-2 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 0;
}
.why_c_list {
    position: relative;
    font-size: 19px;
    text-align: center;
}
.why_c_list::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 50px;
    z-index: -1;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: auto;
    border-right: 1px dashed;
}
.why_c_list .why_icon {
    display: inline-block;
    width: 110px;
    height: 110px;
    text-align: center;
    border: 1px dashed #2d2d2d;
    border-radius: 50%;
    box-shadow: 0px 0px 9px #b3b3b3;
    line-height: 95px;
    background: #fff;
}
.why_c_list .why_icon img {
    width: 60px;
}
.why_c_list .why_ti {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    margin-top: 35px;
    background: linear-gradient(to bottom, white, #efefef);
    padding: 12px 13px;
    box-shadow: 0px 6px 7px #868686;
}
.why_c_list::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 49px;
    border-radius: 30px;
    top: 12px;
    left: 0;
    transition: all ease-in-out .5s;
    z-index: -1;
}
/* End Why Choose Section  */




 /* .about-section {
    position: relative;
    padding: 0px 0 52px;
}

.about-section:before, .about-section:after {
    content: "";
    position: absolute;
    width: 29%;
    height: 69px;
    top: 124px;
    background-position: center;
    opacity: .4;
    background: linear-gradient(to right, #9dbfdf, transparent);
}


.h_abt_row .col-md-1:nth-child(1):before {
    border-left: 5px solid #c5d9eb;
    left: 56px;
}

.h_abt_row .col-md-1::before {
    content: "";
    position: absolute;
    width: 189px;
    height: 46%;
    bottom: 134px;
    border-bottom: 5px solid #c5d9eb;
    border-top: 5px solid #c5d9eb;
    z-index: -1;
}

.about-section .content-column {
    margin-bottom: 0px;
    text-align: center;
}
.about-section .content-column .inner-column {
    position: relative;
    margin-bottom: 18px;
}
.about-section .sec-title {
    margin-bottom: 0;
    padding: 63px 0 0;
}
.sec-title {
    position: relative;
    
}

.about-section .sec-title::before, .about-section .sec-title::after {
    content: "";
    position: absolute;
    width: 38%;
    height: 24%;
    left: 0;
    right: 0;
    top: 0px;
    margin: auto;
    background: linear-gradient(to bottom, #d6ffea, transparent);
}

.about-section .content-column h2 {
    text-transform: uppercase;
    font-size: 86px;
    position: relative;
    letter-spacing: 11px;
    display: inline-block;
    border-bottom: 2px solid;
    padding-bottom: 12px;
}

.sec-title h2 {
    
    line-height: 1.2em;
    font-weight: 600;
    color: #013666;
}

.about-section .content-column h2::after {
    left: initial;
    right: 0;
}
.about-section .content-column h2::before, .about-section .content-column h2::after {
    content: "";
    position: absolute;
    width: 27%;
    height: 12px;

    top: 49px;
}

.about-section .content-column h3 {
    text-transform: uppercase;
    color: #179f5a;
    padding: 7px 0px;
    margin: 0px 0 4px;
    font-weight: 500;
    font-size: 48px;
}

.sec-title .divider {
    position: relative;
    width: 60px;
    height: 20px;
    margin-top: 16px;
    display: none;
}

.sec-title .divider svg {
    display: block;
    width: 100%;
    transform: translateY(-50%);
    top: 50%;
    position: relative;
    fill: #cf5ba2 !important;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

.about-section .content-column .sec-title p {
    text-align: justify;
    font-size: 16px;
    line-height: 31px;
}

.sec-title .text, .sec-title p {
    position: relative;
    margin-top: 0;
}

.abt_quote {
    position: relative;
    padding: 18px 12px;
    background: #daedff;
    font-size: 18px;
    margin: 18px 0 0;
    color: #1c1c1c;
    box-shadow: 0px 6px 4px #b1b1b1;
}

.about-section .sec-title::after {
    width: 2px;
    height: 48px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    background: #003874;
}


.about-section .content-column .link-box {
    position: relative;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}
.btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    padding: 7px 27px;
    font-weight: 500;
    background: linear-gradient(to left, #08386a, #2da55d);
    overflow: hidden;
    min-width: 150px;
    border-radius: 30px;
}

.h_abt_row .col-md-1:nth-child(3):before {
    border-right: 5px solid #c5d9eb;
    right: 56px;
}
.h_abt_row .col-md-1::before {
    content: "";
    position: absolute;
    width: 189px;
    height: 46%;
    bottom: 134px;
    border-bottom: 5px solid #c5d9eb;
    border-top: 5px solid #c5d9eb;
    z-index: -1;
}  */



.about_section2 {
  position: relative;
  padding: 70px 0 14px;
}
.about_section2::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 1264px;
  height: 95%;
  border: 1px solid #ccc;
  left: 0;
  right: 0;
  margin: auto;
  top: 116px;
}
.about-section-two-right2 {
  text-align: center;
}
.about-section-two-right2 .section-head2 {
  margin-bottom: 20px;
  display: inline-block;
  padding: 0 87px;
  background-image: url(../images/bg-coe.png);
  z-index: 1;
}
.section-head2 {
  position: relative;
  /* margin-bottom: 25px; */
}
.about-section-two-right2 .section-head2::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 448px;
  height: 225px;
  background-size: cover;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  opacity: .7;
  z-index: -1;
}
.wt-small-separator2 {
  letter-spacing: 0;
  padding-right: 0;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  font-weight: 400;
  color: #deb100;
}
.about_head2 h1 {
  font-weight: 500;
  font-size: 56px;
}
 .about_head2 h1 {
  text-transform: uppercase;
  color:#aa1e2e;
}

.about_head2 h3 {
  display: inline-block;
  color: #2d2d2c;
  border-top: 2px solid;
  border-bottom: 2px solid;
  font-weight: 500;
  font-size: 27px;
  padding: 6px 0;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-section-two-right2 .ab-two-info2 p.abt_text2 {
  margin-bottom: 13px;
  line-height: 31px;
  padding: 0 9px;
  text-align: justify;
  font-size: 15px;
}

.add_seetness_to_life2 {
  text-align: center;
  position: relative;
  padding: 27px 0 87px;
}
.container2 {
  position: relative;
  max-width: 1200px;
}

.add_stol2 {
  padding: 28px 0;
  background: #0e6f76;
  border-radius: 49px;
  box-shadow: 0 0 0 10px #dcdcdc;
}
.add_seetness_to_life2 {
  text-align: center;
}
.add_seetness_to_life2 h2 {
  font-weight: 500;
  font-size: 23px;
  text-transform: uppercase;
  color: #f8d445;
  margin: 0;
}

.site-button {
  color: #191919 !important;
  padding: 9px 13px;
  cursor: pointer;
  display: inline-table;
  position:relative;
  font-weight: 500;
  transition: .5s;
  border: 1px solid #000;
   
  font-size: 19px;
}

.site-button.sb-bdr-dark {
  border-right: 6px solid #e4b90e;
}

.site-button:visited {
  background-color: #ea130e;
}