@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&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&display=swap');
@import url('fontawesome-all.css');
@import url('animate.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;
}
:root {
    --color-default: rgb(34, 34, 34);
    --color-primary:#a90928;
    /* 0c394a */
    --color-secondary: #093176;
    /* 	f9c022 */
    
  
    --color-text: #616161;
    --color-text-btn: #ffffff;
    --card1-gradient-color1: #f12711;
    --card1-gradient-color2: #f5af19;
    --card2-gradient-color1: #7F00FF;
    --card2-gradient-color2: #E100FF;
    --card3-gradient-color1: #3f2b96;
    --card3-gradient-color2: #a8c0ff;
    --card4-gradient-color1: #11998e;
    --card4-gradient-color2: #38ef7d;
  
  }

/*** 

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

 ***/

body {
    font-size: 14px;
    color: #202020;
    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: #23bfcb;
}

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

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

textarea {
    overflow: hidden;
}

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

p,
.text {
    font-size: 15px;
    line-height: 30px;
    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%;
    opacity: .7;
    z-index: -1;
    background-image: url(../imgs/bg.jpg);
}

.auto-container {
    position: relative;
    max-width: 1155px;
    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: 16px;
    line-height: 24px;
    color: #fff;
    padding: 4px 14px;
    font-weight: 500;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(to left, #0f285f, #0f285f);
    border: 2px dotted #fff;
}

.btn-style-one:hover {
    color: #ffffff;
    background:linear-gradient(to left, #0f285f, #0f285f);
}

/*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: "";
    -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: relative;
}

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

.social-icon-one li a {
    position: relative;
    display: inline-block;
    font-size: 23px;
    background: transparent;
    color: #53a0f3;
    text-align: center;
    font-weight: 400;
    line-height: 23px;
    padding: 0 8px;
    border-right: 1px dashed #525151;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

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

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

.social-icon-one li a:hover {
    color: #ffffff;
}

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



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

.social-icon-two {
    position: relative;
    text-align: center;
    margin-top: 0;
    display: inline-block;
    background: #093176;
    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: 35px;
    height: 35px;
    line-height: 34px;
    color: #c50c25;
    background: #ffffff;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    margin: 0 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;
}

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

.social-icon-two li a:first-child {
    margin-left: 0;
}
.f_map_widjet a {
    display: inline-block;
    position: relative;
    margin-top: 4px;
    border: 9px solid #fff;
    border-radius: 22px;
    overflow: hidden;
}

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

.f_map_widjet span {
    width: 117px;
    position: absolute;
    right: -50px;
    bottom: -37px;
    border: 7px solid #fff;
}


/*=== 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(../imgs/icons/preloader.svg);
}

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: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #093176;
    display: none;
    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;
}

.scroll-to-top:hover {
    background: rgb(172 0 25) ;
}


/*** 

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

***/

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

.main-header.fixed-header {
    
    background: #2b6480;
}

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

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


/* Top Left*/

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

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

.main-header .header-top .info-list {
    position: relative;
    display: inline-block;
    left: -135px;
}
.main-header .header-top .info-list li:last-child{
    border-right: none;
}
.main-header .header-top .info-list li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    padding: 0px 11px;
    border-right: 1px dashed #525151;
}

.main-header .header-top .info-list li a {
    display: inline-block;
    color: #000;
    -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 .info-list li a:hover {
    color: var(--color-primary);
}

.main-header .header-top .info-list li span {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    color: #ffffff;
    font-size: 15px;
    line-height: 29px;
    width: 29px;
    height: 29px;
    background: #00396a;
    /* background: linear-gradient(to right, #00396a, #ff001a); */
    text-align: center;
    border-radius: 50%;
}

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

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

.social-links {
    display: inline-block;
    padding: 0 9px;
    margin: 0;
    position: relative;
    top: 3px;
}

.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;
    text-align: right;
}

.main-header .header-upper .logo-outer {
    position: absolute;
    text-align: center;
    z-index: 999;
    /* width: 318px; */
    top: 0;
    
    padding: 0 7px;
    border-top: 7px solid #40587e;
}

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

.main-header .header-upper .logo {}

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

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

.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;
    margin: auto;
    padding: 7px 120px 0 0px;
    border-radius: 0px 30px 30px 0px;
}

.appointment {
    top: 70px;
    position: absolute;
    right: 0;
    cursor: pointer;
}
.appointment span {
    background: linear-gradient(to right, #00396a, #00396a);
    /* border: 2px dotted #ffffff; */
    font-size: 16px;
    text-transform: capitalize;
    padding: 7px 13px;
    border-radius: 30px;
    color: #fff;
}
.appointment:hover{
    color: #fff;
}
.top-wraapper {
    position: relative;
    height: 100vh;
}

.top-wraapper1{
    position: relative;
}


._why_row .col-md-3 {
    border-right: 2px dotted #eee;
}
._why_row .col-md-3:nth-child(4) {
    border-right: 0px;
}

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

.why_icon {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 50%;
    line-height: 110px;
    margin-bottom: 13px;
    border: 2px dotted #ccc;
}

.why_icon img {
    filter: brightness(0) invert(1);
}

.why_blocks h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #eee;
}

.why_blocks p {
    color: #ccc;
    font-size: 15px;
    line-height: 23px;
    margin-top: 8px;
}

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

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

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

.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: 9px 8px;
    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::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 14px;
    right: 0;
    transform: rotate(-18deg);
    top: 17px;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    opacity: 1;
    padding: 0 0;
    color: #000;
    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;
}

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

.main-menu .navigation>li.current>a {
    font-weight: 700;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 197px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 0px 0px;
    background-color: #ffffff;
    border-top: 3px solid #c91025;
    -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.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: #f08534;
}

.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: 4px 16px;
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    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;
}

.main-menu .navigation>li>ul>li::before {
    display: none;
}

.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: #0e3858;
    color: #fff;
}

.main-menu .navigation>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: 800;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 240px;
    z-index: 100;
    display: none;
    padding: 0px 0px;
    background-color: #ffffff;
    border-top: 3px solid #ff4788;
    -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: #ff4788;
}

.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: 13px 20px;
    line-height: 24px;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    color: #696478;
    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: #ff4788;
}

.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: 30px;
    line-height: 41px;
    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: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #153647;
    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: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid #ff4788;
    -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(../imgs/icons/curve.png);
    content: "";
}

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

.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: 25px;
}

.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: #153647;
    font-weight: 700;
    padding-top: 20px;
    text-transform: uppercase;
}

.sec-title h2:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 8px;
    width: 15%;
    height: 0px;
    content: "";
    border-bottom: 2px dotted #23bfcb;
}

.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(../imgs/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(../imgs/icons/icon-star.png);
}

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

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

.icon-star-8 {
    height: 26px;
    width: 22px;
    background-image: url(../imgs/icons/icon-star-8.png);
}

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

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

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

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


.slide1 .container {
    position: relative;
    height: 100%;
}

.slider_gif {
    position: absolute;
    right: 11%;
    top: 23%;
    width: 417px;
}

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

.banner_carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 80px;
    height: 100px;
    /* background: #1e2a4a; */
    background-position: left center;
    background-position: 22px center;
    background-repeat: no-repeat;
    background-size: 39px;
    position: relative;
    color: #FFF;
    text-transform: uppercase;
    margin: 0 8px;
    /* z-index: 1; */
}


/* .banner_carousel .owl-dot.active {
    background: #F08534;
} */

.banner_carousel .owl-dots .owl-dot:nth-child(1) {
    background-image: url(../imgs/services/cardiology.png);
}

.banner_carousel .owl-dots .owl-dot:nth-child(2) {
    background-image: url(../imgs/services/family.png);
}

.banner_carousel .owl-dots .owl-dot:nth-child(3) {
    background-image: url(../imgs/services/nephrology.png);
}

.banner_carousel .owl-dots .owl-dot:nth-child(4) {
    background-image: url(../imgs/services/pulmonology.png);
}

.banner_carousel .owl-dots .owl-dot:nth-child(5) {
    background-image: url(../imgs/services/criticalcare.png);
}

.banner_carousel .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    padding: 0;
    background: #333;
    z-index: -1;
    border-radius: 50%;
    border: 7px solid #ccc;
    top: 10px;
}

.banner_carousel .owl-dots .owl-dot.active::before {
    background: #F08534;
}

.banner_carousel .owl-dots .owl-dot::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    padding: 0;
    background: #1e2a4a;
    z-index: -1;
    left: 0;
    bottom: -6px;
    right: 0;
    margin: auto;
}


/*** 

====================================================================
		Offers Section
====================================================================

***/

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

.offers-section::before {
    content: "";
    position: absolute;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
}



.about-content {
    position: relative;
    margin-bottom: 31px;
}

.about-content span {
    font-size: 25px;
    margin-bottom: 10px;
    display: block;
    color: #f08534;
}

.about-content h2 {
    text-transform: uppercase;
    color: #163062;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 36px;
}

.about-content h2::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    background: #a6061c;
    right: 0;
    top: 24px;
}

.about-content h3 {
    text-transform: uppercase;
    color: #a6061c;
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 16px;
    text-align: justify;
    line-height: 26px;
}
.consult_block {
    position: relative;
    /* margin-top: -1px; */
    text-align: center;
    padding: 27px 25px 25px 25px;
    z-index: 1;
    background: #093176;
    color: #fff;
    width: 419px;
    /* height: 389px;  */
    border: 11px solid #f5f5f5;
    box-shadow: -2px 0px 7px #6a6a6a;
}
.team-carousel .owl-dots {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-top: 25px;
}
.offers-section .col-md-6:nth-child(2){
    text-align: center;
}
.offers-section .col-md-6:nth-child(2) p {
    /* padding-top: 15px; */
    position: relative;
    color: #fff;
}
.offers-section .col-md-9{
    max-width: 79%;
}
.place_1{
    line-height: 40px;
}
.place_1 h2 {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 29px;
}
.place_1 h4 {
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid;
}
.place_1 h4 i {
    font-size: 38px;
    display: block;
    padding-bottom: 13px;
}
.place_1 h6 {
    padding: 6px 0px;
    font-weight: 300;
}
.place_1 p {
    font-weight: 300;
    border-bottom: 1px solid;
    padding: 5px 0px;
}
.consult_head {
    position: relative;
    text-align: center;
    text-transform: uppercase;
}
.consult_head h1 {
    /* padding-bottom: 24px; */
    padding-top: 29px;
    color: #163062;
    font-size: 27px;
    display: inline-block;
    margin-bottom: 24px;
    left: -9px;
    border-bottom: 2px solid #a6061c;
}
.team-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 21px;
    width: 21px;
    border: 3px solid #1f2651;
    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;
    background: #fff;
}

.team-carousel .owl-dot:hover,
.team-carousel .owl-dot.active {
    opacity: 1;
    border: 3px solid #c90f2a;
}
.abt_btm_row {
    align-items: center;
}

._abt_info_btm h3 {
    font-size: 23px;
    margin: 0 0 0;
    color: #e02549;
    text-transform: uppercase;
    display: inline-block;
}

._abt_info_btm span {
    color: #1e1e1e;
}

._abt_info_btm p {
    font-size: 15px;
    line-height: 24px;
}
._abt_info_btm::before {
    position: absolute;
    content: " ";
    width: 100%;
    left: 0px;
    height:220px;
    background: #f5f5f5;
    top: -40px;
    z-index: -1;
    box-shadow: 2px 17px 12px #c1c1c1;
}
.mvv_icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: #fff;
    border: 5px solid #f5f5f5;
    border-radius: 50%;
    padding: 14px;
    display: inline-block;
}

.mvv_list_bocks {
    position: relative;
    text-align: center;
    padding-bottom: 85px;
    padding-top: 10px;
}
.mvv_list_bocks .col-md-4:last-child{
    border-right: none;
}
.abt_btm_row {
    align-items: center;
    padding-bottom: 20px;
}

.abt_btm_row:last-child {
    padding-bottom: 0px;
    border-bottom: 0;
}

.consultation_block {
    position: relative;
    display: block;
    /* top: -250px; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 41px 0px 35px ;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 3px 7px #7d7d7d;
}




.consultation_block::before {
    content: "";
    position: absolute;
    content: "";
    position: absolute;
    background: #c52947;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
}

.consultation_block h2 {
    text-transform: uppercase;
    margin: 6px 0 12px;
    color: #fff;
}

.consultation_block span {
    display: inline-block;
    color: #fff;
    border: 2px dotted #fff;
    position: relative;
    background: #000;
    font-size: 28px;
    padding:2px 17px;
    border-radius: 30px;
}
.consultation_block p{
    position: relative;
    color: #fff;
    font-size: 34px;
    line-height: 1.3;
  font-weight: 300;
  padding: 0px 14px;
}
.what_we {
    text-align: center;
    display: inline-block;
}

.what_we h3 {
    display: inline-block;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    padding-bottom: 12px;
    font-size: 38px;
}

.abt_bottom {
    position: relative;
    text-align: center;
    padding: 0 20px 31px;
    margin-bottom: 0px;
}

.abt_bottom::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 87%;
    border: 1px dashed;
    left: 0;
    bottom: 0;
    background: #fff;
}

._abt_info_btm {
    position: relative;
    color: #333;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
}


/* 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(../imgs/services/neurology.jpg);
}

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

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

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

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

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

/*** 

====================================================================
		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: 0 0 51px;
}

.program-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: 75px;
    right: 53px;
    margin: auto;
    border: 5px solid #c2e3d2;
    left: 0;
    border-radius: 50%;
}

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

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

.services-row {
    position: relative;
}

.services-row .owl-dots {
    text-align: center;
    position: absolute;
    width: 50%;
    height: auto;
    left: -33px;
    margin: auto;
    z-index: 99;
    bottom: 38px;
}

.services-row .owl-dot {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #589e7a;
    border-radius: 50%;
    margin: 3px 2px;
    background: #ffffff;
}

.services-row .owl-dot.active {
    background: #589e7a;
}

.services-row::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 27px;
    right: 70px;
    background: #d9d7ed;
    transform: rotate(45deg);
    border-radius: 19px;
}

.whatwedo {
    position: relative;
    font-size: 25px;
    top: 0;
    left: 0;
    font-weight: 600;
    color: #589e7a;
    text-align: center;
}

.services-row .col-md-3 {
    border-right: 1px solid #909090;
    border-bottom: 1px solid;
    padding: 35px 0;
}

.services-row .col-md-3:nth-child(4),
.services-row .col-md-3:nth-child(8) {
    border-right: 0px;
}

.services-row .col-md-3:nth-child(5),
.services-row .col-md-3:nth-child(6),
.services-row .col-md-3:nth-child(7),
.services-row .col-md-3:nth-child(8) {
    border-bottom: 0px;
}

.services-row .col-md-3:nth-child(1)::before,
.services-row .col-md-3:nth-child(2)::before,
.services-row .col-md-3:nth-child(3)::before {
    content: "";
    position: absolute;
    bottom: -17px;
    right: -20px;
    width: 40px;
    height: 40px;
    border: 6px solid #f7253a;
    border-radius: 50%;
    background: #19191c;
    z-index: 1;
}

.ser_head p {
    /* color: #eee; */
    font-size: 18px;
}

.ser_head.sec-title {
    position: relative;
    text-align: center;
}

.services-blocks {
    position: relative;
    margin: 0px 0;
    align-items: center;
}

.ser_image::before {
    content: "";
    position: absolute;
    width: 42%;
    height: 100%;
    background: #171348;
    top: 0;
    z-index: -1;
    left: 0px;
    right: 0;
    margin: auto;
}

.services-blocks:hover .ser_image::before {
    visibility: visible;
    opacity: 1;
}

.services-blocks .col-md-6 {
    padding: 0px;
}

.ser_image {
    text-align: center;
    padding: 92px 0;
    overflow: hidden;
}

.service-carousel .owl-item img {
    width: auto;
    transition: all ease-in-out .7s;
}

.service-carousel .ser_image img {
    display: inline-block;
    border-radius: 50%;
    width: 286px;
    border: 10px solid #f5f5f5;
    box-shadow: 0px 0px 10px;
    transform: scale(.7);
}

.service-carousel .owl-item.active img {
    transform: scale(1);
}

.service_section .auto-container {
    max-width: 1250px;
    position: relative;
}

.ser_info {
    display: inline-block;
    position: relative;
}

.ser_info::before,
.ser_info::after {
    content: "";
    position: absolute;
    z-index: -1;
}

.ser_info::after {
    top: initial;
    bottom: 0px;
    /* width: 90%; */
    /* height: 4px; */
    transform: inherit;
}

.services-blocks h3 {
    text-transform: uppercase;
    color: #1c1854;
    font-size: 28px;
    margin-bottom: 9px;
    font-weight: 600;
    display: inline-block;
}

.services-blocks h3::before {
    content: "";
    position: absolute;
}

.services-blocks p {
    font-size: 15px;
    line-height: 26px;
}

.services-blocks a {
    color: #589e7a;
    display: inline-block;
    background: #fff;
    border: 2px solid;
    padding: 5px 17px;
    margin-top: 21px;
    position: relative;
    border-radius: 20px;
}

.services-blocks:hover a {
    background-color: #589e7a;
    color: #fff;
}

.ser_btm {
    text-align: center;
}

.ser_btm h3 {
    text-transform: uppercase;
    font-size: 42px;
    display: inline-block;
    color: #589e7a;
    border-top: 1px dashed #171348;
    padding: 11px 0 0;
}


/* services styles */

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

.mobile_ser_imag_icon {
    display: none;
}

.service_tabs_slicer .carousel-indicators {
    position: relative;
    padding: 0px;
    list-style: none;
    display: block;
    margin: 0;
    z-index: 5;
}

.service_tabs_slicer .carousel-indicators li {
    display: inline-block;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 7px;
    position: relative;
    opacity: 1;
    padding: 0;
    border: 4px solid #ccc;
}

.service_tabs_slicer .carousel-indicators li::before {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 41%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.service_tabs_slicer .carousel-indicators li.active::before {
    display: block;
    background: rgb(102 19 160 / 66%);
}

.service_tabs_slicer .carousel-indicators li img {
    display: block;
}

.service_carosal_inner {
    position: relative;
    margin-top: -61px;
}

.service_carosal_inner .carousel-item {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.service_carosal_inner .carousel-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 43%), #232323);
    left: 0;
    bottom: 0;
}


/* 
.service_carosal_inner .carousel-item:nth-child(1) {
    background-image: url(../images/services/thyriod_big.jpg);
}

.service_carosal_inner .carousel-item:nth-child(2) {
    background-image: url(../images/services/hormonaldisoders_-big.jpg);
}

.service_carosal_inner .carousel-item:nth-child(3) {
    background-image: url(../images/services/obecity_big.jpg);
}

.service_carosal_inner .carousel-item:nth-child(4) {
    background-image: url(../images/services/cholesterol_bigl.jpg);
}

.service_carosal_inner .carousel-item:nth-child(5) {
    background-image: url(../images/services/diabetesheart_big.jpg);
}

.service_carosal_inner .carousel-item:nth-child(6) {
    background-image: url(../images/services/diabeteeyes_big.jpg);
}

.service_carosal_inner .carousel-item:nth-child(7) {
    background-image: url(../images/services/polycysticovarysyndrome_big.jpg);
} */

.service_carosal_inner .services_info {
    max-width: 781px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%), #621f92);
    padding: 30px 51px;
}

.service_carosal_inner .services_info h2 {
    position: relative;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 46px;
}

.service_carosal_inner .services_info p {
    position: relative;
    color: #eee;
}

.service_carosal_inner .services_info a {
    display: inline-block;
    position: relative;
    color: #eee;
    border: 1px solid;
    padding: 5px 13px;
    border-radius: 30px;
}

.service_section {
    position: relative;
    padding: 204px 0 99px;
    margin-top:-326px;
}

.service_section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 83%;
    background: linear-gradient(to bottom, #0c1842, rgb(12 24 66));
    top: 169px;
    transform: skew(0deg, -4deg);
}

 

.ser_row_l .col-md-3 {
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    padding: 79px 0 48px;
    padding-left: 6px;
    padding-right: 6px;
}

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

.ser_row_l .col-md-3:nth-child(5),
.ser_row_l .col-md-3:nth-child(6),
.ser_row_l .col-md-3:nth-child(7),
.ser_row_l .col-md-3:nth-child(8) {
    border-bottom: 0px;
}

.ser_sec_herad span {
    color: #f1b88a;
    font-size: 22px;
    display: block;
    margin-top: 97px;
}

.ser_sec_herad h2 {
    color: #fff;
    margin-bottom: 29px;
    font-size: 48px;
}

.ser_sec_herad h2::before,
.ser_sec_herad h2::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed #fff;
    left: 10%;
    top: 25px;
}

.ser_sec_herad h2::after {
    left: initial;
    right: 10%;
}

.services_list_ {
    text-align: center;
}

.ser_images_l {
    display: inline-block;
    position: relative;
    width: 134px;
    height: 134px;
    line-height: 120px;
    z-index: 1;
}

.ser_images_l::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border: 1px dashed #eee;
    transform: rotate(45deg);
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    transition: all ease-in-out .6s;
}

.ser_images_l::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-color: #b1081c;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    transition: all ease-in-out .6s;
    opacity: 0;
    visibility: hidden;
    transform: rotate(45deg);
    z-index: -1;
}

.services_list_:hover .ser_images_l::after {
    opacity: 1;
    visibility: visible;
}

.services_list_:hover .ser_images_l::before {
    transform: rotate(0deg);
}

.ser_images_l img {
    width: 70px;
}

.ser_list_title_info {
    position: relative;
}

.ser_list_title_info h3 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    font-size: 19px;
    margin-top: 46px;
    min-height: 44px;
}

.ser_list_title_info p {
    display: block;
    color: #e0dede;
    padding-bottom: 10px;
}

.ser_list_title_info a {
    display: inline-block;
    color: #ececec;
    border: 1px solid;
    padding: 5px 17px;
    border-radius: 30px;
    transition: all ease-in-out .5s;
}

.services_list_:hover .ser_list_title_info a {
    color: #b1081c;
}
.ser_row_l .col-md-3:nth-child(1) .ser_images_l img{
    width: 103px
}
.ser_row_l .col-md-3:nth-child(2) .ser_images_l img{
    width: 128px; padding-top: 8px;
}
.ser_row_l .col-md-3:nth-child(3) .ser_images_l img{
    width: 95px;
}
.ser_row_l .col-md-3:nth-child(5) .ser_images_l img{
    width: 112px;
}
.ser_row_l .col-md-3:nth-child(6) .ser_images_l img{
    width: 79px;
}
.ser_row_l .col-md-3:nth-child(7) .ser_images_l img{
    width: 139px;
    padding-top: 11px;
}
.ser_row_l .col-md-3:nth-child(8) .ser_images_l img{
    width: 90px;
}
.total_knee_replacement_section {
    position: relative;
    padding: 110px 0;
}

.total_knee_replacement_section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../imgs/total-knee-repalcement-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0px;
    top: 0;
    border-radius: 0px 38px 38px 0px;
    transition: all ease-in-out .7s;
    clip-path: polygon(0 0, 100% 16%, 100% 84%, 0% 100%);
}

.total_knee_replacement_section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(17 14 60 / 86%);
    clip-path: polygon(0 0, 100% 16%, 100% 84%, 0% 100%);
}

.total_knee_replacement_section .auto-container {
    display: flex;
    align-items: center;
    padding: 15px 0px 0px;
}

.total_knee_replacement_section .auto-container .row {
    width: 100%;
}

.tt_knee_rpl_list {
    position: relative;
    z-index: 1;
}

.tt_knee_rpl_list_block {
    position: absolute;
    text-align: center;
    padding: 129px 25px 0;
    background: #fff;
    border: 11px solid #a2d7db;
    border-radius: 50%;
    width: 532px;
    height: 532px;
    top: -94px;
}

.tt_knee_rpl_list_block::before {
    content: "";
    position: absolute;
    left: 100%;
    top: -11px;
    width: 100%;
    height: 379px;
    z-index: -1;
    border-left: 0;
}

.tt_knee_rpl_list_block::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    left: 100%;
    top: 182px;
}

.tt_knee_rpl_list_block h4 {
    font-size: 25px;
    color: #23bfcb;
    margin: 0 0 24px;
    font-weight: 500;
}

.tt_knee_rpl_list_block h3 {
    font-size: 22px;
    color: #fff;
    display: inline-block;
    padding: 7px 17px;
    background: #23bfcb;
    margin: 0 0 10px;
    border-radius: 7px;
    font-weight: 500;
}

.tt_knee_rpl_list_block h2 {
    text-transform: uppercase;
    color: #171348;
    font-weight: 500;
    font-size: 50px;
    margin: 12px 0 0;
}


/*** 

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


/*** 

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

***/

.newsletter-section {
    position: relative;
    text-align: center;
    position: relative;
    text-align: center;
    padding: 0px 0 25px;
}
.add_bar_row{
    padding-left: 55px;
}
.add_bar_row .col-md-6 {
    padding: 28px 15px;
    /* background: #ffd19b; */
    max-width: 47%;
    border-right: 1px dashed #fff;
    margin: -147px 6px 0;
     
}
.add_bar_row .col-md-6:last-child{
    border-right: none;
}
._addre_bar i {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #153647;
    border-radius: 4px;
    font-size: 21px;
    line-height: 40px;
    margin-bottom: 15px;
}
._addre_bar h2{
    color: #fff;
    padding-bottom: 4px;
}
._addre_bar h5 {
    font-weight: 300;
    font-size: 19px;
    color: #fff;
    line-height: 31px;
    padding-top: 20px;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0px;
    right: 0px;
    margin: auto;
}

.newsletter-section::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: -1;
}

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

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

.newsletter-section h2 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    display: -webkit-inline-box;
    margin-bottom: 0;
    border-bottom: 2px dotted;
    font-size: 38px;
}

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

.tips-row-section {
    position: relative;
}

.tips-row-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #e81f31;
    left: -17px;
    top: -17px;
}

.tips-row-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #e81f31;
    right: -17px;
    top: -17px;
    z-index: -1;
}

.tips-desc {
    position: relative;
    background: #fefefe;
    padding: 0;
    left: 0;
    margin-top: 0;
    width: 100%;
    bottom: 0;
}

.tips-desc h5 {
    position: relative;
    font-size: 26px;
    color: #333;
}

.tips-desc h3 {
    text-transform: uppercase;
    margin-bottom: 13px;
    color: #e81f31;
    font-weight: 600;
    font-size: 39px;
}

.tips-list p {
    position: relative;
    padding-left: 24px;
    color: #151515;
    font-weight: 500;
    line-height: 31px;
}

.tips-list p:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    border-bottom: 2px solid #333;
    left: 0;
    top: 13px;
}


/*** 

====================================================================
		Team Section
====================================================================

***/

.team-section {
    position: relative;
    padding: 64px 0 91px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.facilities-row .col-md-2 {
    /* border-right: 2px dashed #e4e4e4; */
    flex: 0 0 20.666667%;
    max-width: 20%;
    padding: 0 6px;
}

.facilities-row .col-md-2:nth-child(6) {
    margin-left: 116px;
}

.fac-title {
    margin-bottom: 26px;
}

.fac-title h2:before {
    /* background-color: #f29c59; */
}

.facility-list {
    text-align: center;
    color: #353535;
    line-height: 30px;
    margin-bottom: 12px;
    position: relative;
}

.facility-list::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: rgb(30 42 74 / 75%);
    top: 0px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .8s;
}

.facility-list:hover:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.facility-list::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 5px;
    background: #192136;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.facility-list a {
    position: absolute;
    left: 0px;
    top: 30%;
    width: 50px;
    height: 50px;
    background: #f78c39;
    color: #fff;
    font-size: 30px;
    line-height: 46px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .9s;
}

.facility-list:hover a {
    opacity: 1;
    visibility: visible;
    left: 42%;
}

.facility-list a:hover {
    background-color: #f5f5f5;
}

.fac_img {
    margin-bottom: 0;
}

.doc_info {
    position: relative;
    padding: 13px 0;
    background: linear-gradient(to bottom, #f1eef4, #e9bc9f);
}
 
.doc_info h3 {
    text-transform: uppercase;
    font-size: 17px;
}

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

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

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

.team-section .icon-star-6 {
    top: 140px !important;
    right: -115px !important;
    left: auto !important;
}

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

.icon-star-6 {
    height: 92px;
    width: 54px;
    background-image: url(../imgs/icons/icon-star-6.png);
}

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

.team-block .inner-box {
    position: relative;
    border: 1px solid #e8e6ec;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

.team-block .image-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 250px;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
}

.team-block .image-box .image {
    display: none;
    margin-bottom: 0;
}

.team-block .image-box img {
    display: block;
    width: 100%;
    height: auto;
}

.team-block .info-box {
    position: relative;
    padding-left: 250px;
}

.team-block .info-box .inner {
    position: relative;
    padding: 50px 60px 50px;
}

.team-block .info-box .name {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #1e2c67;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-block .info-box .name 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;
}

.team-block .info-box .name a:hover {
    color: #25bdd8;
}

.team-block .info-box .designation {
    display: block;
    font-size: 16px;
    color: #696478;
    margin-bottom: 30px;
}

.team-block .info-box .text {
    position: relative;
}

.team-block .info-box .social-links {
    position: relative;
    display: block;
    text-align: center;
    background-color: #25bdd8;
    padding: 10px 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;
}

.team-block .inner-box:hover .info-box .social-links {
    background-color: #1e2c67;
}

.team-block .social-links li {
    position: relative;
    display: inline-block;
    margin: 0 16px;
}

.team-block .social-links li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.team-block .social-links li a:hover {
    color: #ff4986;
}

.appointmeent-section {
    position: relative;
}

.appointment-block {
    max-width: 603px;
    text-align: center;
    padding: 27px 45px;
    box-shadow: 0px 0px 14px #d0d0d0;
    background: #fff;
    position: relative;
}

.appointment-block::before,
.appointment-block::after {
    content: "";
    position: absolute;
    width: 163px;
    height: 163px;
    background: #ffcad9;
    left: -66px;
    bottom: -66px;
    z-index: -1;
    border-radius: 50%;
}

.appointment-block::after {
    left: inherit;
    right: -56px;
    background: transparent;
}

.appointment-block h2 {
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
}

.appointment-block .form-control {
    background-color: #f5f5f5;
    border: none;
}

.appointment-block .form-control {
    height: 45px;
}

.appointment-block textarea.form-control {
    height: 100px;
}

.appointment-block .btn {
    width: 204px;
    padding: 10px 5px;
    margin-top: 0;
}

.docotor-app-img {
    /* position: absolute; */
    /* right: 98px; */
    /* top: 85px; */
}

.video_section {
    position: relative;
    text-align: center;
    padding: 0 0 31px;
}

.vide_title {
    position: absolute;
    text-transform: uppercase;
    right: -15rem;
    transform: rotate(-90deg);
    color: #fff;
    font-size: 26px;
    padding: 0;
    top: 12rem;
}

.video_section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: -104%;
    background: #333;
}

.video_section a {
    display: inline-block;
    width: 90px;
    height: 90px;
    background: #f08533;
    color: #fff;
    font-size: 39px;
    border-radius: 50%;
    line-height: 85px;
    box-shadow: 0px 0px 0px 10px #e6e7e6;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all ease-in-out .8s;
}

.video_section:hover a {
    background: #1E2A4A;
    color: #ffff;
    transform: rotate(360deg);
}

 

.counter {
    color: #192136;
    text-align: center;
    width: auto;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 0 24px;
}

.counter:before {
    content: '';
    border: 2px dotted #171348;
    border-bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    z-index: -1;
    transition: all 0.3s ease 0s;
    height: 54%;
}

.counter:hover:before {}

.counter .counter-icon {
    color: #6dced7;
    background: #171348;
    font-size: 28px;
    text-align: center;
    line-height: 63px;
    width: 80px;
    height: 80px;
    margin: 0 16px 0px;
    border-radius: 50px;
    border: 9px solid #fefefe;
    display: inline-block;
}

.counter h3 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    padding: 0 13px;
    margin: 0 0 15px;
    color: #069ba9;
}

.counter .counter-value {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    display: block;
    padding: 0 12px;
}

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

.service_icon_btm {
    position: absolute;
    bottom: 32px;
    right: 50px;
    font-size: 26px;
    color: #153647;
}

.home-about {
    text-align: center;
    position: relative;
    top: -90px;
}

.home-about img {
    display: inline-block;
    border: 6px solid #dde8e7;
    height: 500px;
}
.why-section {
    position: relative;
    padding: 100px 0 111px;
    /* margin-top: 50px; */
    z-index: -1;
}

.why-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 115%;
    background:linear-gradient(to right, #093176, #a90928);
    top: 44px;
    transform: skew(0deg, 3deg);
}
.why-section .section-title {
    margin-bottom: 26px;
    color: #fff;
    margin-left: 7px;
    max-width: 100%;
    margin-right: 0px;
}

.why-section .section-title h2 {
    color: inherit;
}

.why-blocks {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}
._why_row{
    padding-top: 30px;
}
.why-row .col-md-3:nth-child(1),
.why-row .col-md-3:nth-child(2),
.why-row .col-md-3:nth-child(3) {
    border-right: 1px dashed #ccc;
}

.why-blocks h4 {
    color: #ffffff;
    font-size: 60px;
}

.why-blocks span {
    text-transform: uppercase;
    color: #eee;
    font-size: 17px;
}

/*** 

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

***/

.main-footer {
    position: relative;
    padding-top: 40px;
}

.main-footer:before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 41%;
    height: 50px;
    content: "";
    z-index: -1;
}

.main-footer .anim-icons .icon {
    opacity: 0.08;
}

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

.f_c_row::before {
    content: "";
    position: absolute;
    width: 42%;
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
    background: #343c38;
    top: 24px;
}

.f_c_row .col-md-4:nth-child(3) .f_c_info_list a {
    background: #0f1630;
}

._f_logo {
    text-align: center;
    position: relative;
    margin: 0px 0 16px;
    z-index: 2;
}

._f_logo img {
    width: 196px;
    border-radius: 10px;
}

.footer_about {
    text-align: center;
}

.footer_about a {
    display: inline-block;
    color: #c50c25;
    margin: 8px 0 18px;
    font-size: 17px;
}

.useful-links {
    display: inline-block;
    margin: 5px 0 29px;
    padding: 5px 22px;
    border-top: 1px solid #a1a1a1;
    border-bottom: 1px solid #a1a1a1;
}

.useful-links .useful-ul {
    text-align: center;
}

.useful-links .useful-ul span {
    display: inline-block;
    margin-right: 20px;
    text-transform: uppercase;
    color: #c50c25;
    font-weight: 600;
    font-size: 21px;
}

.useful-links .useful-ul li {
    display: inline-block;
}

.useful-links .useful-ul li a {
    padding: 0 7px;
    border-right: 1px solid #989898;
    color: #181818;
    font-size: 15px;
}

.useful-links .useful-ul li:last-child a {
    border-right: 0px;
}

.main-footer .footer-upper .footer-column {
    position: relative;
    margin-bottom: 35px;
}

.main-footer .footer-widget .widget-title {
    position: relative;
    font-size: 23px;
    font-weight: 600;
    color: #988ceb;
    margin-bottom: 18px;
    text-transform: uppercase;
    text-align: center;
}

.main-footer .footer-widget .widget-title::before {
    content: "";
    position: absolute;
    width: 34%;
    height: 2px;
    border-bottom: 2px solid #afa4ff;
    left: 0;
    top: 29px;
    right: 0;
    margin: auto;
}
a:hover {
    color: #153647 ;
    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: 12px;
    width: 302px;
}

.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: 7px;
    padding-left: 17px;
}

.main-footer .list li:before {
    position: absolute;
    left: 0;
    top: 9px;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    border: 2px solid #14aae9;
    content: "";
}

.main-footer .list li a {
    position: relative;
    font-size: 15px;
    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: inherit;
}

.main-footer .list li a:hover {
    color: #14aae9;
}


/*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: 16px;
    line-height: 30px;
    padding: 8px 0px;
}

.main-footer .footer-bottom .copyright a {
    color: #c50c25;
}

.main-footer .footer-bottom .copyright a:hover {
    text-decoration: none;
}
.asahcmaab {
    background:var(--color-secondary);
    text-align: center;
    padding:35px 0 0px;
    position: relative;
    /* background-image: url(../imgs/footerbg.jpg); */
}

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

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

.asahcmaab p {
    color: #fff;
    font-size: 32px;
    font-weight: 200;
    margin: 0 0 26px;
    text-transform: uppercase
}

.asahcmaab h2 a {
    text-decoration: none;
    outline: 0;
    color: #fff;
    margin-left: 8px;
    background:var(--color-primary);
    padding: 3px 14px;
    border-radius: 10px;
    display: inline-block;
    font-size: 20px;
}

/*** 

====================================================================
	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;
}

 
::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
.blog-sec {
    padding-top: 50px;
}
.single-blog-post {
    margin-bottom: 30px;
}

.single-blog-post .post-image a {
    display: block;
}

.single-blog-post .post-content {
    background-color: #ffffff;
    box-shadow: 0 5px 42px 5px rgb(199 199 199 / 20%);
    padding: 35px 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 21px;
}

.single-blog-post .post-content .post-meta {
    margin-bottom: 9px;
}

.single-blog-post .post-content .post-meta ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.single-blog-post .post-content .post-meta ul li {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    color: #ffffff;
    position: relative;
    background-color: #93ad1a;
    padding: 17px 6px;
    text-align: center;
    width: 100%;
}

.bog_row .col-md-6:nth-child(1) {
    margin-top: 71px;
}

.blog_blocks {
    position: relative;
}

.blog_blocks::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease 0s;
    bottom: 0px;
    background: linear-gradient(to bottom, rgb(0 0 0 / 3%), #0a1b31);
}

.blog-desc {
    position: absolute;
    bottom: 0;
    text-align: center;
    padding: 16px 12px;
}

.blog-desc h3 {
    color: #fff;
    font-size: 19px;
    padding-bottom: 30px;
}

.blog-desc a {
    color: #ffffff;
    display: inline-block;
    border: 1px solid;
    padding: 5px 12px;
}

.single-blog-post .post-content .post-meta ul li span {
    /* display: block; */
}

.single-blog-post .post-content .post-meta ul li span i {
    margin-right: 4px;
}

.single-blog-post .post-content .post-meta ul li::before {
    position: absolute;
    right: -11px;
    top: 3px;
    width: 1px;
    height: 13px;
    background-color: #7d7d7d;
    content: '';
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
}

.single-blog-post .post-content .post-meta ul li a {
    color: #19ce67;
}

.single-blog-post .post-content .post-meta ul li:last-child {
    margin-right: 0;
}

.single-blog-post .post-content .post-meta ul li:last-child::before {
    display: none;
}

.single-blog-post .post-content h3 {
    margin-bottom: 9px;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 500;
}

.single-blog-post .post-content h3 a {
    display: inline-block;
    color: #000;
}

.single-blog-post .post-content p {
    margin-top: 9px;
    margin-bottom: 17px;
    color: #eee;
}
/*================================================
Blog Details Area CSS
=================================================*/

.blog-details-desc .article-content {
    margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta {
    margin-bottom: -10px;
}

.blog-details-desc .article-content .entry-meta ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
    position: relative;
    display: inline-block;
    color: #121521;
    margin-right: 21px;
    font-family: 'Open Sans', sans-serif;
}

.blog-details-desc .article-content .entry-meta ul li span {
    display: inline-block;
    color: #121521;
}

.blog-details-desc .article-content .entry-meta ul li a {
    display: inline-block;
    color: #7d7d7d;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
    color: #19ce67;
}

.blog-details-desc .article-content .entry-meta ul li i {
    color: #19ce67;
    margin-right: 2px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
    content: '';
    position: absolute;
    top: 11px;
    right: -15px;
    width: 6px;
    height: 1px;
    background: #19ce67;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
    margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
    display: none;
}

.blog-details-desc .article-content h3 {
    margin-bottom: 13px;
    margin-top: 25px;
    font-size: 23px;
    font-weight: 600;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
    padding-left: 0;
    list-style-type: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
    -ms-flex: 0 0 33.3333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding-right: 10px;
    padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
    margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
    padding-left: 0;
    list-style-type: none;
    margin-top: 25px;
    margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 34px;
    font-family: 'Open Sans', sans-serif;
}

.blog-details-desc .article-content .features-list li i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    background-color: #d2f5e1;
    color: #19ce67;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    font-size: 11px;
    position: absolute;
    left: 0;
    top: -2px;
}

.blog-details-desc .article-content .features-list li:hover i {
    background-color: #19ce67;
    color: #ffffff;
}

.blog-details-desc .article-content .features-list li:last-child {
    margin-bottom: 0;
}

.blog-details-desc .article-footer {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.blog-details-desc .article-footer .article-tags span {
    display: inline-block;
    color: #121521;
    font-size: 20px;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.blog-details-desc .article-footer .article-tags a {
    display: inline-block;
    color: #7d7d7d;
}

.blog-details-desc .article-footer .article-tags a:hover {
    color: #19ce67;
}

.blog-details-desc .article-footer .article-share {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
    padding-left: 0;
    list-style-type: none;
    text-align: right;
    margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
    display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
    display: inline-block;
    margin-right: 2px;
    font-weight: 500;
    color: #7d7d7d;
}

.blog-details-desc .article-footer .article-share .social li a {
    display: block;
    color: #19ce67;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background-color: #def5ee;
    text-align: center;
    font-size: 14px;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
    color: #ffffff;
    background-color: #19ce67;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.blog-details-desc .post-navigation {
    margin-top: 30px;
}
/*section-title*/
    
.section-title {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title span {
    display: block;
    margin-bottom: 5px;
    color: #a6061c;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title h2 {
    margin-bottom: 0;
    font-size:37px;
     
    text-transform: uppercase;
    color: var(--color-secondary);
    position: relative;
}

.section-title p {
    max-width: 520px;
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}
/*
* gallery

*/

.services_sections {
    padding: 30px 0px 53px;
    position: relative;
}

.mainrow .col-md-7,
.mainrow .col-md-5 {
    padding: 2px;
}

.secondrow .col-md-6 {
    padding: 8px;
}

.services_list {
    width: 100%;
    height: 270px;
    background-color: #333;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: block;
}

.services_list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, black, transparent);
}

.block-title__title{
    top: -20px;
    text-transform: uppercase;
    font-size: 40px;
}

 

.srv_info {
    position: absolute;
    left: 0px;
    width: 100%;
    bottom: 0px;
    z-index: 1;
    transition: all ease-in-out .8s;
    padding: 0 0 11px;
}

.srv_info h3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 17px;
    margin: 0;
}

.srv_info span {
    display: inline-block;
    position: absolute;
    width: 100px;
    left: 0px;
    right: 0px;
    margin: auto;
    background-color: #d32852;
    color: #fff;
    bottom: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .8s;
}

.services_list:hover .srv_info {
    padding: 0 0 37px;
}

.services_list:hover .srv_info span {
    opacity: 1;
    visibility: visible;
}

.servoce-quote {
    text-align: center;
    background: #ffd27c;
    text-transform: uppercase;
    font-size: 26px;
    padding: 25px 0;
    margin-top: 5px;
    border-radius: 13px;
}
.appointment-form {
    position: relative;
    background: #f9f9f9;
    left: 10px;
    box-shadow: 0px 3px 7px #b1b1b1;
}


.appointment-form::after {
    content: "";
    position: absolute;
    width: 68%;
    height: 100px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 15px;
    z-index: -1;
}
.app_form {
    text-align: center;
    padding: 4px 41px 32px;
}

.appointment-form h2 {
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 0;
    /* background: #000c37; */
    color: #000;
    padding: 33px 0px 0px;
    text-align: center;
}

.appointment-form p {
    margin-bottom: 20px;
    color: #000;
}

.appointment-form .form-group {
    position: relative;
    z-index: 1;
}

.appointment-form .form-group i {
    position: absolute;
    right: 14px;
    top: 12px;
    z-index: -1;
    color: #474747;
    font-size: 18px;
}

.appointment-form .form-control {
    background-color: transparent;
    border-radius: 0px;
    height: 56px;
    border: navajowhite;
    border-bottom: 2px dotted #606060;
    color: #000;
}

.appointment-form textarea.form-control {
    height: 90px;
}

.appointment-form .form-control::placeholder {
    color: #000;
}
.social-links-1 {
    position: relative;
    z-index: 9;
    right: -162px;
    text-align: center;
    top: -29px;
}

.social-icon-one-1 {
    padding: 0px;
    margin: 0px;
}

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

.social-icon-one-1 li a {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #007bff;
    text-align: center;
    border-left: 1px dashed #333;
    padding: 2px 12px;
}

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

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

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

.social-icon-one-1 li:nth-child(5) a {
    color: #fff;
    background-color: #8e56a1;
    padding: 8px;
    bottom: 2px;
    border-radius: 4%;
    border-left: none;
    cursor: pointer
}

.social-icon-one-1 li:nth-child(5) a:hover{
    color: #fff;
}
.social-icon-one-1 li:nth-child(5) .fa-calendar{
    font-family:"fontawesome";
}
.social-icon-one-1 li:nth-child(5) span{
    font-family:'Open Sans',sans-serif;
    font-size: 16px;
    margin-left: 7px;
}
.overlay-inner .content {
    text-align: center;
    width: 100%;
    transform: translateX(-19%);
    position: relative;
    left: 14%;
    /* bottom: 58px; */
    z-index: 2;
    transition: all .3s ease 0;
}
/*
* 10. testimonials style
*/
.int_qoute_svg {
    position: absolute;
    top: 122px;
    left: 17%;
    transform: inherit;
    /* margin-top: 37px; */
    margin: auto;
    right: 0px;
    z-index: 5;
    display: flex;
    /* justify-content: center; */
}
.int_qoute_svg1 {
    position: absolute;
    top: 68%;
    right: 13%;
    transform: inherit;
    /* margin-top: 37px; */
    margin: auto;
    /* left: 0px; */
    z-index: 5;
    display: flex;
    /* justify-content: center; */
}
@media only Screen and (max-width:384px) and (min-width:300px){
    .int_qoute_svg {
        position: absolute;
        top: 160px!important;
        left: 0px;
        transform: inherit;
        /* margin-top: 37px; */
        margin: auto;
        right: 0px;
        z-index: 5;
        display: flex;
        justify-content: center;
    }
    }
@media only Screen and (max-width:490px) and (min-width:385px){
.int_qoute_svg {
    position: absolute;
    top: 156px;
    left: 0px;
    transform: inherit;
    /* margin-top: 37px; */
    margin: auto;
    right: 0px;
    z-index: 5;
    display: flex;
    justify-content: center;
}
}
@media only Screen and (max-width:768px){
    .int_qoute_svg {
        position: absolute;
        top: 114px;
        left: 0px;
        transform: inherit;
        /* margin-top: 37px; */
        margin: auto;
        right: 0px;
        z-index: 5;
        display: flex;
        justify-content: center;
    }
}
.int_qoute_svg i {
    font-size: 82px;
    margin-left: 6px;
    color: #ffd8df;
    display: flex;
    width: 70px;
    height: 70px;
    /* background: #1f194b; */
    border-radius: 50%;
    line-height: 41px;
    /* box-shadow: 0px 0px 0px 7px #ccc; */
    justify-content: center;
}
.int_qoute_svg1 i {
    font-size: 82px;
    margin-left: 6px;
    color: #ffd8df;
    display: flex;
    width: 70px;
    height: 70px;
    /* background: #1f194b; */
    border-radius: 50%;
    line-height: 41px;
    /* box-shadow: 0px 0px 0px 7px #ccc; */
    justify-content: center;
}
.testimonial-carousel .owl-dots {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin: 5px 0 0;
}
.testimonial-carousel .item{
    
}
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    /* height: 21px; */
    width: 21px;
    border: 3px solid #0f285f;
    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;
}

.testimonial-carousel .owl-dot:hover,
.testimonial-carousel .owl-dot.active {
    opacity: 1;
    border: 3px solid #8b1323;
}
.testimonials-one__single {
    text-align: center;
    padding: 58px 18px;
    margin: 12px 0px 0;
    position: relative;
}

.tearimonila_app_section::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 81px;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    
}

.ggrw_pic {
    text-align: center;
}

.ggrw_pic img {
    width: 256px;
    padding: 7px;
    background: #ececec;
    margin: 0 0 22px;
}

.testimonial_block {
    position: relative;
    padding: 0 0 47px;
}
.testimonial-row::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 253px;
    border-radius: 5px;
    background: linear-gradient(to top, #c72f43,#082285);
    left: 11%;
    top: 26%;
}
.testimonial-row::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 253px;
    border-radius: 5px;
    background: linear-gradient(to top, #c72f43,#082285);
    right: 7%;
    top: 26%;
}
.smily_icon {
    position: absolute;
    top: 47%;
    left: 7.5%;
    /* opacity: .8; */
    background: linear-gradient(to right, #8b1323, #083176);
    border-radius: 50%;
    padding: 10px;
}
.smily_icon img{
    filter: brightness(0) invert(1);
}
.smily_icon2 {
    position: absolute;
    top: 47%;
    right: 7.5%;
    /* opacity: .8; */
    background: linear-gradient(to right, #8b1323, #083176);
    border-radius: 50%;
    padding: 10px;
}
.smily_icon2 img{
    filter: brightness(0) invert(1);
}
/* .testimonial_block::before {
    left: 91px;
    top: 88px;
    content: "\f10d";
}
.testimonial_block::after {
    right: 88px;
    bottom: 22px;
    content: "\f10e";
} */

.testimonials-one__single::before,
.testimonials-one__single::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 87%;
    top: 10px;
}
/* .testimonials-one__single::before {
    border: 9px solid;
    left: 0;
    border-right: 0px;
    width: 100%;
    border-color: #fbeaed;
    border-radius: 75px 5px 75px 5px;
    background: #fffefe;
    z-index: -1;
    border-left: 0px;
} */
/* .testimonials-one__single::after {
    border: 2px solid;
    right: 0;
    bottom: 0px;
    border-left: 0px;
} */

.testimonials-one__image {
    position: relative;
    top: 0;
    display: inline-block;
}

.testimonials-one__image>img {
    border-radius: 50%;
    border: 1px solid #FFFFFF;
}

.testimonials-one__title {
    margin: 9px 0 0;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
}
.testimonials-one__designation {
    color: #A0A0A0;
    font-size: 14px;
    font-style: italic;
}

.testimonials-one__carousel .owl-item img {
    width: auto;
    display: inline-block;
}

.testimonials-one__text {
    margin: 0;
    font-size: 20px;
    line-height: 32px;
    margin-top: 8px;
    font-weight: 400;
    color: #000000;
    padding: 0px 60px;
}

.testimonials-one__carousel .owl-item img,
.testimonials-two__carousel .owl-item img {
    width: auto;
}

.testimonials-one__carousel .owl-dots,
.testimonials-two__carousel .owl-dots {
    margin: 28px 0 0;
    border-radius: 30px;
    position: relative;
}

.testimonials-one__carousel .owl-dots .owl-dot {
    margin: 0 4px;
    width: 28px;
    height: 6px;
    background-color: #172345;
    border: none;
}

.testimonials-one__carousel .owl-dots .owl-dot.active {
    background-color: #27b5cc;
}

.testimonials-one__carousel .owl-dots .owl-dot span,
.testimonials-one__carousel .owl-dots .owl-dot.active span,
.testimonials-one__carousel .owl-dots .owl-dot:hover span,
.testimonials-two__carousel .owl-dots .owl-dot.active span,
.testimonials-two__carousel .owl-dots .owl-dot:hover span {
    display: none;
}

.testimonials-one__carousel .owl-nav,
.testimonials-two__carousel .owl-nav {
    margin-top: 40px;
}

@media (min-width: 768px) {
    .testimonials-one__carousel .owl-nav,
    .testimonials-two__carousel .owl-nav {
        margin-top: 0;
    }
}

.testimonials-one__carousel .owl-nav [class*=owl-],
.testimonials-two__carousel .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #181E44;
    border-radius: 50%;
    padding: 0;
}

.testimonials-one__carousel .owl-nav [class*=owl-] i,
.testimonials-two__carousel .owl-nav [class*=owl-] i {
    line-height: 40px;
}

.testimonials-one__carousel .owl-nav [class*=owl-]:hover,
.testimonials-two__carousel .owl-nav [class*=owl-]:hover {
    background-color: #EB4343;
}

.testimonials-one__carousel .owl-nav [class*=owl-]:hover i,
.testimonials-two__carousel .owl-nav [class*=owl-]:hover i {
    color: #fff;
}

.testimonials-one__page {
    background-color: #fff;
    padding-bottom: 35px;
}

.testimonials-one__page .row.high-gutters {
    margin-left: -45px;
    margin-right: -45px;
}

.testimonials-one__page .row.high-gutters>[class*=col-] {
    padding-left: 45px;
    padding-right: 45px;
}

.testimonials-one__page .testimonials-one__single {
    background-color: #F4F4F4;
    margin-bottom: 65px;
}

.testimonials-two {
    position: relative;
    background-color: #205081;
    padding-top: 145px;
    padding-bottom: 100px;
}

.testimonials-two:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .4;
}

.block-title__title.light {
    color: #fff;
}

.testi_app_row .col-lg-6 {
    background-color: #ea3824;
    padding: 35px;
}

.testi_app_row .col-lg-6:nth-child(2) {
    background-color: #142446;
}

.testi_app_row .col-lg-6::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100px;
    top: 55px;
}

.testi_app_row .col-lg-6:nth-child(1):before {
    background-color: #ea3824;
    right: 100%;
}

.testi_app_row .col-lg-6:nth-child(2):before {
    background-color: #142446;
    left: 100%;
    top: 191px;
}

.testimonials-two .container {
    position: relative;
}

.testimonials-two__qoute {
    display: block;
    border-radius: 0 !important;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.testimonials-two__image,
.testimonials-two__content {
    display: table-cell;
    vertical-align: top;
}

.testimonials-two__image {
    width: 122px;
}

.testimonials-two__image>img {
    border-radius: 50%;
}

.testimonials-two__content {
    padding-left: 75px;
}

.testimonials-two__text {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 35px;
}

.testimonials-two__title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    margin-top: 40px;
}

.testimonials-two__designation {
    margin: 0;
    color: #849BB3;
    font-size: 18px;
    font-style: italic;
    margin-top: 5px;
}
.testimonial-section {
    padding-top: 25px;
    padding-bottom: 35px;
}
.testimonial-head{
    padding-bottom: 30px;
}
.testimonials-two__carousel .owl-dots {
    margin: 0;
    position: absolute;
    top: -55px;
    left: 195px;
}
.testimonials-one__single .testimonials-icon img {
    width: 54px;
    position: absolute;
    top: 10px;
    left: 46%;
}
.testimonials-two__home-five {
    background-image: none;
    background-color: #fff;
    padding-top: 0;
}
.gg_review {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 210px;
    margin: 0 auto 10px;
    text-align: center;
    padding: 11px 9px;
    border-radius: 5px;
}
.testimonials-two__home-five:before {
    display: none;
}

.testimonials-two__home-five .testimonials-two__text {
    color: #797979;
    font-size: 22px;
    line-height: 35px;
    font-family: 'Lora';
}

.testimonials-two__home-five .testimonials-two__title {
    color: #2c62bd;
}

.testimonials-two__home-five .testimonials-two__designation {
    color: #849BB3;
    font-family: 'Playfair Display';
}

.testimonials-two__home-five .testimonials-two__carousel {
    padding-left: 45px;
    padding-right: 45px;
}

.testimonials-two__home-five .testimonials-two__carousel .owl-dots .owl-dot span {
    background-color: #2C62BD;
}

.testimonials-two__home-five .testimonials-two__carousel .owl-dots .owl-dot.active span {
    background-color: #08AE8D;
}

.testimonials-two__home-five .testimonials-two__carousel .owl-dots {
    bottom: 0;
    top: auto;
    left: auto;
    right: 45px;
}
/*** 

====================================================================
	Portfolio Section
====================================================================

***/
.portfolio-section {
    position: relative;
    /* margin-top: -206px; */
}
.portfolio-section .outer-container{
	position:relative;
	padding:0px 35px;
}

.portfolio-section .outer-container .owl-dots,
.portfolio-section .outer-container .owl-nav{
	display:none;
}

.portfolio-block{
	position:relative;
    
}

.portfolio-block .inner-box{
	position:relative;
	overflow:hidden;
    box-shadow: 0px 3px 7px #7d7d7d;
    border-radius: 5px;
}

.portfolio-block .inner-box .image{
	position:relative;
}

.portfolio-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
    filter: grayscale(1);
}

.portfolio-block .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgb(7 25 59));
	background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.8));
	background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.8));
	background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.8));
}

.portfolio-block .inner-box:hover .image .overlay-box .content{
	transform:translateX(-150%);
	-moz-transform:translateX(-150%);
	-webkit-transform:translateX(-150%);
	-ms-transform:translateX(-150%);
	-o-transform:translateX(-150%);
}
.portfolio-block .inner-box .image .overlay-box .overlay-inner {
    position: relative;
    left: 0px;
    top: 60%;
    padding: 0px 35px 25px;
}

.portfolio-block .inner-box .image .overlay-box .content{
	position:relative;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.portfolio-block .inner-box .image .overlay-box .title{
	position:relative;
	color:#ffffff;
	font-weight:600;
	font-size:14px;
	font-family: 'Muli', sans-serif;
}

.portfolio-block .inner-box .image .overlay-box h3 {
    position: relative;
    color: #ffffff;
    font-weight: 500;
    font-size: 21px;
    /* line-height: 1.3em; */
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.30);
}

.portfolio-block .inner-box .image .overlay-box h3:before{
	position:absolute;
	content:'';
	left:0px;
	top:-1px;
	width:45px;
	height:1px;
	background-color:#a6061c;
}

.portfolio-block .inner-box .image .overlay-link{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.portfolio-block .inner-box .image .overlay-link:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:0px;
	background-color:rgb(0 0 0 / 52%);
	transition: all 600ms ease;
}

.portfolio-block .inner-box:hover .image .overlay-link:before{
	height:100%;
}

.portfolio-block .inner-box .image .overlay-link .plus {
    position: absolute;
    left: 48%;
    top: 40%;
    opacity: 0;
    width: 125px;
    height: 125px;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    margin-left: -58px;
    /* margin-top: -82px; */
    display: inline-block;
    transition: all 500ms ease;
    background-image: linear-gradient(to right, #163062, #a6061c);
}

.portfolio-block .inner-box:hover .image .overlay-link .plus{
	opacity:1;
	margin-top:-35px;
	transition-delay: 500ms;
}
.portfolio-carousel .col-md-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 20%;
    max-width: 25%;
    padding-left: 10px;
    padding-right: 10px;
}
.portfolio-carousel .sec-row{
    padding-top: 20px;
}
.serv-head {
    padding-bottom: 25px;
}
.portfolio-section1{
    display: none;
}
/****
===========================
asthma-managing Section
===========================
****/
.asthma-managing{
    position: relative;
}
.asthma-managing .container {
    height:540px;
    background:#000000;
    box-shadow: 0px 3px 7px #7d7d7d;
}
.asthma-managing .part-1{
    position: relative;
    color: #fff;
}
.asthma-managing .row{
}
.managing-matter {
    position: relative;
    text-align: center;
    padding: 65px 31px;
    left: 13px;
}
.asthma-managing h2 {
    padding-bottom: 12px;
    text-transform: uppercase;
    font-size: 45px;
    font-weight: 600;
}
.managing-img {
    position: relative;
}
.managing-img img {
    /* border: 8px solid #ccc; */
    width: 540px;
    filter: grayscale(1);
    left: 16px;
    position: relative;
}
.latest-blocks {
    padding: 20px 5px;
    box-shadow: 0px 0px 10px #ccc;
    background-color: #fff;
    margin: 11px 0 7px;
}

.latestdesc {
    margin: 9px 0 8px 0;
    position: relative;
    z-index: 1;
}

.latestdesc::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 144%;
    background: transparent;
    right: 0px;
    left: auto;
    margin: 0 auto;
    top: -22px;
    opacity: 1;
    z-index: -1;
}

.latestdesc h4 {
    color: #c30822;
    font-weight: 500;
    font-size: 21px;
    padding-right: 100px;
}

.date-loaction span {
    color: #d84a4a;
    margin-right: 8px;
    padding-right: 9px;
    /* border-right: 1px solid; */
}

.latestimg {
    display: table;
    margin: auto;
    position: relative;
    z-index: 1;
}
/* .date {
    position: absolute;
    bottom: 234px;
    background: #ffffff;
    color: #000;
    padding: 8px 8px;
    border: 5px solid #dbdbdb;
    height: 78px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% calc(100% - -2px), 0% 100%, 0% 0%);
    left: 0%;
} */
.date1{
    position: absolute;
    bottom: 107px;
    background: var(--color-secondary);
    color: #fff;
    padding: 8px 13px;
    height: 100px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% calc(100% - 20px), 0% 100%, 0% 0%);
    left: 68%;
}
.date {
    font-size: 18px;
    color: #444444;
    margin-bottom: 22px;
}
.date span {
    font-size: 45px;
    color: #242424;
}
.date p {
    color: #000;
}
.date1 p {
    color: #fff;
}
.date3{
    display: none;
}
.date4{
    display: none;
}
.latestdesc p {
    color: #000;
    font-size: 14px;
    line-height: 24px;
}

.latestdesc p a {
    color: #d84a4a;
    display: block;
}

.new-info {
    text-align: center;
    padding: 32px 0 18px 0;
    margin-bottom: 9px;
}

.new-info h4 {
    color: #375371;
    font-weight: 600;
    margin-bottom: 10px;
}

.new-info p {
    color: #d84a4a;
}

.latest-news .post {
    position: relative;
    padding-left: 95px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dddddd;
    min-height: 80px;
}

.latest-news .post:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.latest-news .post-thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
}

.latest-news .post-thumb img {
    position: relative;
    display: block;
    width: 100%;
}

.latest-news .post h5 {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: #222222;
    font-weight: 700;
    margin-bottom: 4px;
}

.latest-news .post h5 a {
    color: #222222;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.latest-news .post:hover h5 a {
    color: #7abf18;
}

.latest-news .post .post-info {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: #888888;
    font-weight: 400;
}
/*** 

====================================================================
	Modal
====================================================================

 ***/
 .codemodal .close {
    color: #fff;
    text-align: end;
    padding-right: 10px;
    padding-top: 10px;
}
.popupteamsection{
    text-align: center;
}
.pp_teamhead h2 {
    color: #ffffff;
    padding-bottom: 10px;
    font-size: 27px;
    font-weight: 100;
}
.pp_teamhead h4 {
    padding-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
}
.popupteamsection .play-icon img {
    width: 57%;
    padding-top: 5px;
}
.modal-content {
    background: #a41021;
    border: 16px solid #eaeaea;
}
.modal-dialog {
    max-width: 400px;
}
/****
==========================
Treated
==========================
****/
.treated{
    position: relative;
    padding-bottom: 80px;
    text-align: center;
}
.treated .treat-expert h2{
text-transform: uppercase;
color: #bf0f1d;
}
.treat-expert .col-md-4{
    border-right: 1px dashed #000;
    border-bottom: 1px dashed #000;
    padding: 43px;
}
.treat-expert .col-md-4:nth-child(3),
.treat-expert .col-md-4:nth-child(6){
    border-right: none;
}
.treat-expert .col-md-4:nth-child(4),
.treat-expert .col-md-4:nth-child(5),
.treat-expert .col-md-4:nth-child(6){
    border-bottom: none;
}
.expert-row{
    padding-top: 30px;
}
.treat-expert .col-md-4:nth-child(1) h6{
    padding-left: 20px;
}
.treat-expert .col-md-4 h6{
    text-transform: uppercase;
    padding-top: 20px;
}
.treat-expert .col-md-4:nth-child(6) h6{
    padding-right: 15px;
}
/* CMP FEAUTRES */

.doc_about {
    margin-top: 70px;
    padding-top: 68px;
    padding-bottom: 15px;
    position: relative;
    background-image: url(../imgs/bg_lay.jpg);
    background-size: cover;
}
.doc_about::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 137%;
    top: -210px;
    left: 0;
    background: linear-gradient(to left, rgba(0,13 ,63, 0.8), rgba(0,13 ,63, 1));
    clip-path: polygon(0% 18%, 100% 13%, 100% 93%, 0% 87%);
}
.doc_about .section-title h2{
    color: #fff;

}
.doc_about .section-title p{
    color: #fff;

        margin-top: 9px;
        font-size: 19px;
        font-weight: 500;
   

}


.doc_about_head h2{
    text-transform: uppercase;
    color: #ff3f59;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 36px;
}

.doc_about_head h3{
    /* text-transform: uppercase; */
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}
.doc_about_head p{
    color: #fff;
}

.amenities_title i {
    
    color: #ff3f59;
    margin-right:10px;
    
}

.amenities_title span {
    text-transform: capitalize;
    /* font-weight: 300; */
    color: #fff;
    font-size: 15px;
    
}
.doc_about_block img {
   border:10px solid #fff;
   /* border-radius: 5px; */
   z-index: 1;
   /* filter: grayscale(1); */
}


.doc_about .doc_about_block {
    /* padding-top: 25px; */
}
.doc_about  .doc_about_left {
    padding: 50px 0 50px 50px;
}

.doc_about_block  .doc_about_img::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 66px;
    width: 125px;
    height: 125px;
    background: #ff3f59;
   
}
.doc_about_block  .doc_about_img::after {
    position: absolute;
    content: '';
    right: 0px;
    bottom:66px;
    width: 125px;
    height: 125px;
    background: #ff3f59;
   
}





.doc_about_list{
    margin-top: 10px;
}



  ul {
    --icon-size: .8em;
    --gutter: .5em;
    padding: 0 0 0 var(--icon-size);
  }
  
  ul.dashed li {
    padding-left: var(--gutter);
    color: #fff;
    padding-bottom: 10px;
    font-size: 15px;
  }
  
  ul.dashed li::marker {
    content: "\f068"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    font-size: var(--icon-size);
    color: #ff3f59;
  }


  @media only screen and (max-width: 425px){
    
        .doc_about  .doc_about_left {
            /* padding: 50px 0 50px 50px; */
            padding: 25px;
        }

        .doc_about  .doc_about_left h2, .doc_about  .doc_about_lefth3 {
            /* padding: 50px 0 50px 50px; */
            text-align: center;
        }
        
        .doc_about_block  .doc_about_img::before {
            position: absolute;
            content: '';
            left: 0px;
            top: 66px;
            width: 125px;
            height: 125px;
            background: #ff3f59;
           
        }
        .doc_about_block  .doc_about_img::after {
            position: absolute;
            content: '';
            right: 0px;
            bottom:66px;
            width: 125px;
            height: 125px;
            background: #ff3f59;
           
        }
    
    }

    @media only screen and (max-width: 1024px){
    
     
        .doc_about_block  .doc_about_img::before {
           display: none;
           
        }
        .doc_about_block  .doc_about_img::after {
           display: none;
           
        }
    
    }

.expert-icon1 img{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    width: 80px;
}
.treat-expert1 {
    position: relative;
    left: 20%;
    z-index: 1;
    top: 21px;
    text-align: center;
}
.treat-expert1 .col-md-4 {
    border-right: 1px dashed #fff;
    border-bottom: 1px dashed #fff;
    padding:30px 10px 30px 10px;
}
.treat-expert1 .col-md-4:nth-child(3),
.treat-expert1 .col-md-4:nth-child(6){
    border-right: none;
}
.treat-expert1 .col-md-4:nth-child(4),
.treat-expert1 .col-md-4:nth-child(5),
.treat-expert1 .col-md-4:nth-child(6){
    border-bottom: none;
}
.expert-row{
    padding-top: 30px;
}
.treat-expert1 .col-md-4:nth-child(1) h6{
    padding-left: 20px;
}
.treat-expert1 .col-md-4:nth-child(5) h6{
    padding-left:6px;
}
.treat-expert1 .col-md-4:nth-child(3) h6{
    padding-left: 10px;
}
.treat-expert1 .col-md-4 h6{
    text-transform: uppercase;
    padding-top: 20px;
    color: #fff;
}
.treat-expert1 .col-md-4:nth-child(6) h6{
    padding-right: 15px;
}
.cmp-head h2 {
    /* text-align: center; */
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 17px;
    border-bottom: 2px dashed;
}
.faq_section {
    position: relative;
    padding: 0 0 85px;
}

.faq_titmeline.main-timeline {
    position: relative;
    display: table;
    padding: 35px 0 18px
}

.faq_titmeline.main-timeline:after {
    content: '';
    display: block;
    clear: both;
    position: absolute;
    width: 112px;
    height: 100%;
    top: 0;
    border: 8px solid #e9e9e9;
    left: 0;
    right: 16px;
    margin: auto
}

.faq_titmeline.main-timeline .timeline {
    width: 46%;
    margin: 0 0 15px;
    padding: 13px 14px 13px;
    float: right;
    position: relative
}

.faq_titmeline.main-timeline .timeline::before {
    content: "";
    position: absolute;
    width: 97%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to right, #eaf0f1, transparent)
}

.faq_titmeline.main-timeline .timeline:nth-child(even)::before {
    background: linear-gradient(to left, #eaf0f1, transparent)
}

.faq_titmeline.main-timeline .timeline-content {
    min-height: 63px;
    padding: 0 0 0 46px;
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
    flex-wrap: wrap
}

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

.faq_titmeline.main-timeline .timeline-icon {
    color: #ffffff;
    background: linear-gradient(to right, #ddd, #f5f5f5, #ddd);
    font-size: 29px;
    text-align: center;
    line-height: 93px;
    width: 84px;
    height: 84px;
    transform: translateY(-50%) perspective(300px) rotateY(-20deg);
    transform-style: preserve-3d;
    position: absolute;
    top: 50%;
    left: -50px;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%)
}

.faq_titmeline.main-timeline .timeline-icon:before {
    content: '';
    background-color:#a90928;
    position: absolute;
    left: 8px;
    right: 8px;
    top: 12px;
    bottom: 0;
    z-index: -1
}

.faq_titmeline.main-timeline .title {
    color: #000e28;
    font-size: 20px;
    text-transform: capitalize;
    margin: 0 0 2px
}

.faq_titmeline.main-timeline .description {
    font-size: 15px;
    margin: 0;
    line-height: 23px
}

.faq_titmeline.main-timeline .timeline:nth-child(even) {
    float: left;
    text-align: right;
    
}

.faq_titmeline.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 0 46px 0 0;
    justify-content: right
}

.faq_titmeline.main-timeline .timeline:nth-child(even) .timeline-icon {
    transform: translateY(-50%) perspective(300px) rotateY(20deg);
    left: auto;
    right: -50px
}

@media screen and (max-width:767px) {
    .faq_titmeline.main-timeline .timeline {
        width: 100%
    }
    .faq_titmeline.main-timeline .timeline-content {
        padding: 0 0 0 130px
    }
    .faq_titmeline.main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 0 130px 0 0
    }
    .faq_titmeline.main-timeline .timeline-icon {
        left: 0
    }
    .faq_titmeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        right: 0
    }
    .faq_titmeline.main-timeline:after{
        display: none;
    }
}

@media screen and (max-width:576px) {
    .faq_titmeline.main-timeline .timeline-content, .faq_titmeline.main-timeline .timeline:nth-child(even) .timeline-content {
        text-align: center;
        padding: 140px 0 0;
        justify-content: center;
    }
    .faq_titmeline.main-timeline .timeline-icon,
    .faq_titmeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateX(-50%) translateY(0) perspective(300px) rotateY(-20deg);
        left: 50%;
        top: 4px
    }
    .faq_titmeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateX(-50%) translateY(0) perspective(300px) rotateY(20deg)
    }
}
.timeline-content p{
    line-height: 26px;
    padding-top: 10px;
}
.faq_section .row{
    padding-top: 20px;
}
.news-block{
	position:relative;
	margin-bottom:30px;
}

.news-block .inner-box{
	position:relative;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	box-shadow:0px 0px 15px rgba(0,0,0,0.15);
}

.news-block .inner-box .image{
	position:relative;
	overflow:hidden;
}

.news-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.news-block .inner-box .image .overlay-box{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	text-align:center;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.news-block .inner-box .image .overlay-box .plus{
	position:absolute;
	left:50%;
	top:50%;
	width:54px;
	height:54px;
	color:#ffffff;
	font-size:18px;
	line-height:54px;
	text-align:center;
	border-radius:50%;
	font-weight:700;
	margin-left:-27px;
	margin-top:-27px;
	transform:scale(0,0);
	-moz-transform:scale(0,0);
	-webkit-transform:scale(0,0);
	-ms-transform:scale(0,0);
	-o-transform:scale(0,0);
	display:inline-block;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
    background: var(--color-primary);
}

.news-block .inner-box:hover .image .overlay-box .plus{
	transform:scale(1,1);
	-moz-transform:scale(1,1);
	-webkit-transform:scale(1,1);
	-ms-transform:scale(1,1);
	-o-transform:scale(1,1);
}

.news-block .inner-box .image .overlay-box:before{
	position:absolute;
	content:'';
	left:-100%;
	top:0px;
	width:100%;
	height:100%;
	opacity:0.85;
	display:block;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color:rgba(0,0,0,0.90);
}

.news-block .inner-box:hover .image .overlay-box:before{
	left:0%
}

.news-block .inner-box .lower-content{
	position:relative;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	padding:30px 10px 35px 12px;
}
.news-block .inner-box .lower-content a{
    font-weight: 600;
    color: var(--color-primary);
}
.news-block .inner-box .lower-content .post-meta{
	position:relative;
}

.news-block .inner-box .lower-content .post-meta li{
	position:relative;
	margin-right:20px;
	color:#999999;
	font-size:14px;
	padding-left:22px;
	display:inline-block;
}

.news-block .inner-box .lower-content .post-meta li:last-child{
	margin-right:0px;
}

.news-block .inner-box .lower-content .post-meta li .fa{
	position:absolute;
	left:0px;
	top:0px;
	color:#999999;
	font-size:14px;
}

.news-block .inner-box .lower-content h5 {
    position: relative;
    font-weight: 600;
    line-height: 25px;
    font-size: 20px;
    /* margin-top: 8px; */
    margin-bottom: 8px;
}

.news-block .inner-box .lower-content h5 a{
	position:relative;
	color:#373434;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
    color:var(--color-primary);
	-o-transition:all 500ms ease;
}

.news-block .inner-box .lower-content h5 a:hover{
	color:var(--color-primary);
}
.btn-style-two {
    position: relative;
    padding: 11px 32px 11px;
    line-height: 24px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    font-weight: 400;
    border-radius: 50px;
    text-transform: capitalize;
    background-color: #191514;
    box-shadow: 0px 2px 10px 3px rgba(0,0,0,0.15);
    display: inline;
}
.btn-style-two:hover{
    background: #000;
    color: #fff;
}
.blog-sec .row{
    padding-top: 40px;
}

.section-title h2::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed var(--color-primary);
    left:9%;
    top: 26px;
}
.section-title h2::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed var(--color-primary);
    left: 10%;
    top: 26px;
    left: initial;
    right: 9%;
}
.title1 h2::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed var(--color-primary);
    left: 1%;
    top: 26px;
}
.title1 h2::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed var(--color-primary);
    left: 10%;
    top: 26px;
    left: initial;
    right: 1%;
}
.title1 h2::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed var(--color-primary);
    left: 1%;
    top: 26px;
}
.title2 h2::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed var(--color-primary);
    left: 1%;
    top: 26px;
}
.title2 h2::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed var(--color-primary);
    left: 10%;
    top: 26px;
    left: initial;
    right: 1%;
}
.title3 h2::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed var(--color-primary);
    left: 13%;
    top: 26px;
}
.title3 h2::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed var(--color-primary);
    left: 10%;
    top: 26px;
    left: initial;
    right: 13%;
}
.title4 {
    /* margin-bottom: -45px; */
}
.title4 h2::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed #fff;
    left: -13%;
    top: 26px;
}
.title4 h2::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed #fff;
    left: 10%;
    top: 26px;
    left: initial;
    right: -13%;
}
.title5 h2::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed #fff;
    left:14%;
    top: 26px;
}
.title5 h2::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px dashed #fff;
    left: 10%;
    top: 26px;
    left: initial;
    right: 14%;
}


/* Bread-crumb */
.bread_cumb_wrap {
    position: relative;
    text-align: center;
    left: 0;
    right: 0;
    padding: 153px 0 60px;
    
  }
  .bread_cumb_wrap::before {
    content: "";
    position: absolute;
    /* background: var(--color-secondary); */
    width: 100%;
    height: 560px;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../imgs/bread-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .1;
}
  .bread_cumb_wrap h1 {
    text-transform: capitalize;
    color: #000000;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .bread_cumb_wrap ul {
    display: inline-block;
    /* box-shadow: 0 5px 4px #ccc; */
    padding: 4px 15px;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 5px 4px #ccc;
    /* border: 0px solid var(--color-primary); */
}
  .bread_cumb_wrap ul li {
    display: inline-block;
    position: relative;
    padding: 0 7px;
    color: #2c2c2c;
    font-size: 17px;
  }

  .bread_cumb_wrap ul li a{
    color: var(--color-secondary);
  }
  .bread_cumb_wrap ul li a:hover{
    color: var(--color-primary);
  }


  .bread_cumb_wrap .active{
    color: var(--color-primary);
  }

  .bread_cumb_wrap .fa {
    color: var(--color-primary);
    font-size: 17px;
}



.bc_inner{

    padding: 50px 100px;
    text-align: center;

}

.c_inner{

    padding: 0px 100px;
    text-align: center;

}


.c_inner .address-info {
    min-height: 250px;
    /* background-color: #f5f5f5; */
    
    padding-top: 34px;
    color: #000;
}

.c_inner .address-info h3 {
    font-size: 18px;
    margin-top: 0;
    font-weight: 600;
    color: #143176;
    margin-bottom: 10px;
}

.c_inner .address-info p{
    margin-bottom: 10px;
}


.c_inner .address-info .timings {
    color: var(--color-primary);
    font-weight: 600;
    margin: 5px 0;
    border-top: 2px dashed #000;
    padding-top: 10px;
}

.c_inner .address-info  .c-appointment {
    font-weight: 600;

    
}

.c_inner .address-info  .c-appointment a{
    color: var(--color-secondary);
}

.c_inner .address-info  .c-appointment a:hover{
    color: var(--color-primary);
}

.c_inner .address-blocks {
    padding: 10px;
    
    margin: 0;
    text-align: center;
    padding-top: 0;
    /* margin-top: 17px; */
    /* margin-bottom: 28px; */
    display: table;
    width: 100%;

    /* border: 10px solid #ffffff;
    background: #f5f5f5;
    box-shadow: 0px 4px 3px #b5b5b5; */
  
}
.c_inner .address-map iframe {
    width: 100%;
    height: 170px;
    border: 10px solid #ffff;
   
}

.c_inner .contact-title{
    margin-bottom: 10px;

}

.c_inner .contact-title h2{
    color: var(--color-secondary);
    margin-bottom: 2px;
}

.c_inner .contact-title h3{
    margin-bottom: 2px;
    font-size: 21px;
    color: var(--color-primary);
}


._c_form_sub {
    position: relative;
    
    padding: 45px 29px;
    margin-top: 35px;
    text-align: center;
   
    background: #e3e7ee7a;
  box-shadow: 0px 4px 3px #b5b5b5;
  border-right: 10px solid #c5596f;
    border-left: 10px solid #4d6a9b;
    border-radius: 32px;
}

._c_form_sub h3 {
    text-transform:capitalize;
    margin-bottom: 30px;
    font-size: 33px;
    font-weight: 400;
    color:#000;

  
  background: #f0d8dd;
  display: inline-flex;
  padding: 2px 28px;
  border-radius: 8px;
}

._c_form_sub .form-control {
    /* background-color: #ffffff; */
    height: 50px;
    color:#0c4f95;
}


._c_form_sub .col-md-4:nth-child(even) .form-control {
    
 
   
   
}


._c_form_sub textarea.form-control {
    height: 90px;
}

._c_form_sub .btn {
    margin-top: 40px;
    background: var(--color-primary);
    border-color: transparent;
    transition: all 0.3s ease;
}
._c_form_sub .btn:hover {
    
    background: var(--color-secondary);
    transition: all 0.3s ease;
   
}

.appointmeent-section .form-group .form-control::placeholder {
    color: #ffffff;
}

.appointmeent-section .form-control::placeholder {
    color: #ffffff;
}


.form-group .form-control::placeholder {
    color: #4e4e4e;
}

 .form-control::placeholder {
    color: #4e4e4e;
}

.c_inner .c-form{
    padding-bottom: 45px;
}


/* TESTIMONIALS */


.t_inner .main-timeline {
    position: relative;
    padding-bottom: 54px;
}

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

.t_inner .main-timeline .timeline {
    border-right: 10px solid var(--color1);
    width: 50%;
    padding: 10px 20px 10px 0;
    box-shadow: 10px 0 var(--color2);
    float: left;
}

.t_inner .main-timeline .timeline-content {
    text-align: right;
    display: block;
    position: relative;
    border-radius: 10px 10px;
}

.t_inner .main-timeline .timeline:nth-child(even)  .timeline-content {
    text-align: left;
}


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

.t_inner .main-timeline .timeline-content:before,
.t_inner .main-timeline .timeline-content:after {
    content: "";
    background: #333;
    width: 80px;
    height: 3px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -80px;
}

.t_inner .main-timeline .timeline-content:after {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    right: -95px;
}
/* 
.main-timeline .timeline-year {
    background: #ffcb2a;
    font-size: 27px;
    font-weight: 400;
    padding: 0 34px;
    border-radius: 100px;
    border: 5px solid #333;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -219px;
    line-height: 38px;
} */

.t_inner .main-timeline .timeline-year {
    color: #00396a;
    background-color: var(--color1);
    font-size: 45px;
    text-align: center;
    line-height: 69px;
    height: 85px;
    width: 85px;
    border-radius: 50%;
    border: 10px solid #00396a;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -219px;
    
}
.t_inner .main-timeline .timeline-year :after {
    content: '';
    height: 25px;
    width: 16px;
    border-top: 20px solid #00396a;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transform: translateX(-50%);
    position: absolute;
    left: -47%;
    bottom: 20px;
    transform: rotate(91deg);
}

.t_inner .main-timeline .timeline:nth-child(even) .timeline-year :after {
    transform: rotate(270deg);
    left: 75px;
}

.t_inner .main-timeline .title {
    color: #fff;
    background: #333;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 10px 9px;
    margin: 0;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(268deg, #a90928de, transparent);
}

.t_inner .main-timeline .description {
   
    background:linear-gradient(92deg,transparent, #f0f0f09c);
    font-size: 15px;
    padding: 20px 10px;
    border-radius: 0 0 10px 10px;
    margin: 0;
}

.t_inner .main-timeline .timeline:nth-child(even) {
    float: right;
    border: none;
    border-left: 10px solid var(--color2);
    box-shadow: -10px 0 var(--color1);
    padding: 10px 0 10px 20px;
    margin: 0 0 0 10px;
}


.t_inner .main-timeline .timeline:nth-child(even) .title  {
    background: linear-gradient(268deg, transparent, #a90928de);
}

.t_inner .main-timeline .timeline:nth-child(even) .title  {
    background: linear-gradient(268deg, transparent, #00396a);
}

.t_inner .main-timeline .timeline:nth-child(even) .description   {
    background: linear-gradient(92deg, #f0f0f09c, transparent);
}


.t_inner .main-timeline .timeline:nth-child(even) .timeline-content:before {
    right: auto;
    left: -80px;
}

.t_inner .main-timeline .timeline:nth-child(even) .timeline-content:after {
    right: auto;
    left: -95px;
}

.t_inner .main-timeline .timeline:nth-child(even) .timeline-year {
    right: auto;
    left: -219px;
}

@media screen and (max-width:767px) {
    .t_inner .main-timeline .timeline,
    .t_inner .main-timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 100px 0 20px 0px;
        margin: 0 0 0 10px;
        box-shadow: -10px 0 var(--color2);
        border: none;
        border-left: 10px solid var(--color1);
        float: none;
    }
    .t_inner  .main-timeline .timeline-content:before,
    .t_inner .main-timeline .timeline-content:after,
    .t_inner .main-timeline .timeline:nth-child(even) .timeline-content:before,
    .t_inner .main-timeline .timeline:nth-child(even) .timeline-content:after {
        top: -50px;
        left: -20px;
        width: 50px;
    }
    .t_inner .main-timeline .timeline-content:after,
    .t_inner .main-timeline .timeline:nth-child(even) .timeline-content:after {
       display: none;
    }
    .t_inner .main-timeline .timeline-content:before,
    .t_inner .main-timeline .timeline:nth-child(even) .timeline-content:before {
       display: none;
    }
    .t_inner  .main-timeline .timeline-year,
    .t_inner  .main-timeline .timeline:nth-child(even) .timeline-year {
        transform: translateX(-50%);
        top: -110px;
        left: 50%;
        right: auto;


    }
    .t_inner .main-timeline .timeline-year :after {
        content: '';
        height: 25px;
        width: 16px;
        border-top: 20px solid #00396a;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        transform: translateX(-50%);
        position: absolute;
        left: 33%;
        bottom: -29px;
        transform: rotate(0deg);
    }

    .t_inner .main-timeline .timeline:nth-child(even) .timeline-year :after {
        transform: rotate(0deg);
      
        left: 23px;
    }
}




.news-block iframe{

    box-shadow: 0px 0px 15px rgba(0,0,0,0.15);

}

.blog-sec .title1 h2::before {
    left: -22%
}

.blog-sec .title1 h2::after{
    right:-22%
}





.i_inner .img-row{
    padding-bottom: 54px;
}

.box {
    position: relative;
    overflow: hidden;
   
  }
  
  .box-content:after,
  .box-content:before,
  .box:after,
  .box:before {
    content: '';
   
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all .3s;
  }
  .box-content .lightboxed:hover{
    box-shadow: 0 0 32px #333;
    transform: scale(1.025);
  }
  
  .box:after {
    top: 25%;
    transition-delay: .1s
  }
  
  .box-content:before {
    top: 50%;
    transition-delay: .2s
  }
  
  .box-content:after {
    top: 75%;
    transition-delay: .3s
  }
  
  .box:hover .box-content:after,
  .box:hover .box-content:before,
  .box:hover:after,
  .box:hover:before {
    opacity: 1
  }
  
  .box img {
    width: 100%;
    height: auto;
    border: 5px solid #e3e3e3;
   
    box-shadow: 0 0 10px #767676;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  
  .box .box-content {
    width: 100%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%) scale(1);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1
  }
  
  .content {
    text-align: center;
    width: 100%;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
    /* bottom: 58px; */
    z-index: 2;
    transition: all .3s ease 0;
}
  
  .box .title {
    color: #25567a;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 0 2px #fff;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateX(-100px);
    transition: all .5s ease .3s
  }
  
  .box .post {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    opacity: 0;
    transform: translateX(100px);
    transition: all .5s ease .3s
  }
  
  .box:hover .post,
  .box:hover .title {
    opacity: 1;
    transform: translateX(0)
  }
  
  .box .icon {
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .box:hover .icon {
    opacity: 1
  }
  
  .box .icon li {
    margin: 0 4px;
    display: inline-block
  }
  
  .box .icon li a {
    color: #fff;
    background-color:var(--color-primary);
    font-size: 18px;
    line-height: 35px;
    height: 35px;
    width: 35px;
    /* border-radius: 0 0 50%; */
    display: block;


    border-radius:50%;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;

  }
  .box:hover img {
   

   
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: .5;
    transform:  scale(1.15);
    
   
  }
  
 
  @media only screen and (max-width:479px) {
    .box .title {
        font-size: 20px
    }
  }
  


  /* VIDEOS */
  .v_inner{

  }
  .v_inner .videos-section {
    padding-bottom: 54px;
  }
  .v_inner .videos-section .videos-box {
    padding: 5px;
    margin-bottom: 30px;
    padding-bottom: 3px;
    padding-top: 9px;
    padding-left: 9px;
    padding-right: 9px;
    border-radius: 8%;
}

.v_inner .videos-section .videos-box iframe {
    border: 5px solid #e3e3e3;
    width: 100%;
}

.v_inner  .videos-section .col-md-3 {
    padding-left: 5px;
    padding-right: 5px;
}

.v_inner .video_head_title{
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
    padding-top: 25px;
    text-align: center;
    padding-bottom: 25px;
    border-top: 2px dashed var(--color-primary);
    border-bottom: 2px dashed var(--color-primary)
 
}
.v_inner .videos-2{
    padding-top:25px;

}


/* BLOGS */

.b_inner{
    padding-bottom: 35px;

}


.b_inner .blog_text {
    position:relative
  }
  .b_inner .blog_text h3 {
    color:#45a2ae;
    margin:27px 0 8px
  }
  .b_inner .blog_text p {
    margin-bottom:10px;
    text-align:justify;
    color:#333
  }
  .b_inner .blog_text a {
    color:#ec2b2f
  }

  .b_inner._blog_pg_ {
    border-bottom:1px dashed #333;
    padding-bottom:20px;
    margin-bottom:30px
  }
  .b_inner .blog_text:last-child ._blog_pg_ {
    border-bottom:0
  }



  .b_inner .blog-block{

    border-bottom:1px dashed #333;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .b_inner h2{
text-transform: capitalize;
color: var(--color-secondary);
  }
  .b_inner ._blog_pg_ a{

    background-color: var(--color-primary);
  color: #fff;
  display: inline-block;
 
  font-weight: 400;
  padding: 5px 15px;
  margin-top: 14px;
  border-radius: 20px;

  }

  .b_inner .blog_img{
   
    box-shadow: 0px 0px 10px #ccc;
    padding:10px;
    background: #f5f5f5;

  }

  .p-sec{
    padding-bottom: 35px;
  }

  .serv-matter h2 {
    color: var(--color-secondary);
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    margin-top: 10px;
}
  
  .ol_styles {
    list-style: none;
    padding: 0 0 0 23px;
  }
  .serv-matter p {
    font-size: 15px;
    margin-bottom: 7px;
    text-align: justify;
    line-height: 28px;
}

.ol_styles li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    line-height: 28px;
    font-size: 15px;
}

.ol_styles li::before {
    position: absolute;
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    font-weight: 700;
    color: var(--color-secondary);
    left: 0px;
    top: 1px;
    transition: all 500ms ease;
}


.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: var(--color-primary);
   
}

.list-group-item.active:hover {
    color: #fff;
}

.list-group-item:hover {
    color: #c53055;
}

.blogs-menu h3 {
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 14px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}

.blogs-sec h3 {
    font-size: 19px;
    color:var(--color-secondary);
}

.blogs-sec p {
    font-size: 15px;
}

.blogs-sec a {
    padding: 6px;
    border-radius: 5px;
    color: #c53055;
}

.blogs-menu a{
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 16px;
}
  

.blogs-menu .blog-head h3{
 
    color: #000;
   
}


.blogs-img{
    padding-top: 25px;
    width: 275px;
    margin: auto;
}


.blogs-img img{
    border: 7px solid #f5f5f5;
    box-shadow: 0px 0px 10px #9f9f9f;
}
.inner-section{
    padding-bottom: 40px;
}
.services_text p{
    text-align: justify;
    line-height: 28px;
    margin-bottom:8px;
}
.services_text .serv-img img{
    border: 7px solid #f5f5f5;
    box-shadow: 0px 0px 10px #9f9f9f;
}
.services_text h2{
    font-size: 23px;
    color: var(--color-secondary);
    margin-bottom: 5px;
}
.services_text a{
    color: var(--color-primary);
}

.p-sec .asthmaimg{
    margin-top: 25px;

}
.serv-matter a{
    color: var(--color-primary);
}

.serv-matter h3{
    margin-top: 10px;
   font-size: 18px;
}


.a_inner{
    padding-bottom: 35px;

}

.a_inner .a-doc-img img{
    border: 10px solid #fff;
    box-shadow: 0px 0px 10px #9f9f9f;
}

.a_inner .a-doc-img h3{
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 18px;
  
}
.a_inner .a_text h2{
    background: linear-gradient(268deg, transparent, #a90928de);
    color: #fff;
    padding: 6px 10px 6px;
  border-radius: 10px;

}

.dr-address{
    padding-top: 25px;
}

.dr-address .c-row-one{
    background: #e3e7ee7a;
    margin-bottom: 25px;
    border: 5px solid #f5f5f5;
    box-shadow: 0px 0px 6px #bebebe;
}
.dr-address .c-row-two {
    background: #a909280f;
    margin-bottom: 25px;
    border: 5px solid #f5f5f5;
    box-shadow: 0px 0px 6px #bebebe;
}
.dr-address-1 .c-row-one{
    background: #e3e7ee7a;
    border: 5px solid #f5f5f5;
    box-shadow: 0px 0px 6px #bebebe;
}
.dr-address-1 .c-row-two{
    background: #a909280f;
    border: 5px solid #f5f5f5;
    box-shadow: 0px 0px 6px #bebebe;
}

.dr-address .col-md-4:nth-child(odd) h3{
    border-radius: 32px;
    background: #093176b2;
    display:inline-flex;
    padding: 2px 28px;
    color: #fff;
}

.dr-address .col-md-4:nth-child(even) h3{
    border-radius: 32px;
  background: #ac1130a3;
  display: inline-flex;
  padding: 2px 28px;
  color: #fff;
}

.dr-address-1 .col-md-4:nth-child(odd) h3{

    border-radius: 32px;
  background: #ac1130a3;
  display: inline-flex;
  padding: 2px 28px;
  color: #fff;
   
}

.dr-address-1 .col-md-4:nth-child(even) h3{
    border-radius: 32px;
    background: #093176b2;
    display:inline-flex;
    padding: 2px 28px;
    color: #fff;
    
}
.c-row-one{
    margin-left: px;
}
.tab-view{
    display: none;
}
.doc_about1 h5 {
    color: #ffffff;
    font-size: 23px;
    text-transform: uppercase;
    padding: 11px;
    background: #c52947;
    display: inline-flex;
    margin-top: 10px;
    /* background: linear-gradient(to right, #97adff , #97adff); */
    /* -webkit-text-fill-color: transparent; */
    /* -webkit-background-clip: text; */
    border: 1px solid #c52947;
}
.doc_about1  .new-line{
    position: relative;
    text-align: center;
}
.inner-section2{
    padding-bottom: 50px;
}