@import url('https://fonts.googleapis.com/css2?family=Exo: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,700;1,800;1,900&display=swap');
@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=Dancing+Script:wght@400;500;600;700&display=swap');

/*
font-family: 'Exo', sans-serif;

*/

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


/*** 

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

 ***/

body {
    font-size: 14px;
    color: #787878;
    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: #25bdd8;
}

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

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

textarea {
    overflow: hidden;
}

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

p,
.text {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: #383838;
    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%;
    background-image: url(../images/bg.png);
    opacity: .15;
    /* background-attachment: fixed; */
    /* background-position: center; */
    /* background-size: cover; */
}

.auto-container {
    position: relative;
    max-width: 1202px;
    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: 20px;
    line-height: 30px;
    color: #757575;
    padding: 5px 26px;
    font-weight: 500;
    overflow: hidden;
    border-radius: 38px;
    border: 2px solid;
}

.btn-style-one:hover {
    color: #ffffff;
    -webkit-animation: 2s rainbow infinite alternate;
    animation: 2s rainbow infinite alternate;
}

@keyframes rainbow {
    0% {
        background-color: #25bdd8;
    }
    25% {
        background-color: #5798fe;
    }
    50% {
        background-color: #7cbe47;
    }
    75% {
        background-color: #9c49fa;
    }
    100% {
        background-color: #ff4880;
    }
}

@-webkit-keyframes rainbow {
    0% {
        background-color: #25bdd8;
    }
    25% {
        background-color: #5798fe;
    }
    50% {
        background-color: #7cbe47;
    }
    75% {
        background-color: #9c49fa;
    }
    100% {
        background-color: #ff4880;
    }
}


/*Btn Style Two*/

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

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

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

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

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


/*Btn Style Three*/

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

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

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

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

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


/*Btn Style Four */

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

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


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

.social-icon-one {
    position: relative;
}

.social-icon-one li {
    position: relative;
    display: inline-block;
    margin-bottom: 7px;
}

.social-icon-one li a {
    position: relative;
    display: inline-block;
    font-size: 19px;
    line-height: 38px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #1879e9;
    text-align: center;
    font-weight: 400;
    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;
    box-shadow: 0px 0px 10px #b9b9b9;
}

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

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

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

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

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


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

.social-icon-two {
    position: relative;
}

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

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 17px;
    width: 37px;
    height: 37px;
    line-height: 32px;
    color: #2f8cea;
    border: 1px solid;
    border-radius: 50%;
    font-weight: 400;
    background: #fff;
    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:nth-child(2) a {
    color: #e51414;
}

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

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

.social-icon-two li a:hover {
    color: #1fa0e4;
}

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


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

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

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

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

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


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

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

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

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

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

.theme_color {
    color: #fa7720;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.tabs-box {
    position: relative;
}

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

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

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.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;
    opacity: 1 !important;
    right: 20px;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #ec1662;
    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: #0e2e4c;
}


/*** 

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

***/

.main-header {
    position: absolute;
    display: block;
    width: 100%;
    z-index: 99999;
}

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


/* Top Left*/

.main-header .header-top .top-left {
    position: absolute;
    float: inherit;
    padding: 0 14px 0px 0;
    margin-top: 0;
    border-radius: 0px;
    right: 76px;
    top: 45px;
}

.main-header .header-top .top-left::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: transparent;
    right: -150%;
}

.top-bottom-info .info-list {
    position: absolute;
    display: inline-block;
    top: 17rem;
    right: 0;
    z-index: 99;
    width: 344px;
}

.top-bottom-info .info-list li {
    position: absolute;
    right: -294px;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    background: #143852;
    color: #ffffff;
    font-weight: 500;
    padding: 11px 22px 11px 66px;
    margin-right: 8px;
    border: 2px solid;
    border-radius: 42px;
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all ease-in-out .8s;
}

.top-bottom-info .info-list li:nth-child(2) {
    top: 60px;
    background: #2785b7;
}

.top-bottom-info .info-list li:nth-child(3) {
    top: 119px;
    background: #ec1662;
}

.top-bottom-info .info-list li:nth-child(4) {
    top: 178px;
    background: #499a32;
    display: none;
}

.top-bottom-info .info-list li:hover {
    right: -30px;
}

.top-bottom-info .info-list li a {
    display: inline-block;
    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;
}

.top-bottom-info .info-list li a:hover {
    color: #f4fdfc;
}

.top-bottom-info .info-list li span {
    position: absolute;
    left: 5px;
    margin-right: 10px;
    display: inline-block;
    width: 46px;
    height: 46px;
    background: #f4fdfc;
    color: #000d25;
    font-size: 24px;
    line-height: 44px;
    border-radius: 50%;
    text-align: center;
    top: 3px;
}

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

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

.social-links {
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 16rem;
    z-index: 999;
    width: 50px;
}

.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 .auto-container {
    max-width: 1166px;
}

.main-header .header-upper .logo-outer {
    position: absolute;
    text-align: center;
    z-index: 999;
}

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

.main-header .header-upper .logo {
    position: absolute;
    width: 179px;
    right: 0;
    margin: auto;
    top: 11px;
    left: 26px;
}

.main-header .header-upper .logo:before {
    position: absolute;
    right: 0;
    left: 0;
    top: -59px;
    margin: auto;
    content: "";
    width: 2px;
    height: 59px;
}

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

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

.main-header .nav-outer {
    position: relative;
    margin: auto;
    top: 0;
    display: inline-block;
}

.appointment {
    top: 21px;
    position: absolute;
    left: 497px;
    background: transparent;
    color: #4c4c4e;
    font-size: 16px;
    text-transform: uppercase;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 99;
    text-align: center;
    border-radius: 5px;
    line-height: 39px;
    border: 1px solid #ccc;
}

.appointment span {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: auto;
    margin-bottom: 0;
    background: #ec1662;
    color: #fff;
    font-weight: 600;
    font-size: 19px;
    line-height: 34px;
    border-radius: 4px;
    margin-right: 7px;
}

.appointment::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100px;
    /* border-right: 2px solid #00256d; */
    right: 0;
    top: 70px;
    left: 0;
    margin: auto;
    z-index: -1;
}

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

.menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 70px;
    height: 82px;
    text-align: center;
    background: #fc1e69;
    border-radius: 0px 0px 37px 37px;
    padding-top: 9px;
    /* box-shadow: 0px 0px 0px 10px rgb(254 35 100 / 13%); */
    cursor: pointer;
    display: none;
}

.menu-toggle::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 69px;
    border-right: 2px solid #f1d8e6;
    right: 0;
    top: -70px;
    left: 0;
    margin: auto;
    z-index: -1;
}

.is-sticky .menu-toggle {
    top: 19px;
}

.menu-toggle span {
    display: table;
    margin: auto;
    width: 36px;
    height: 3px;
    border-bottom: 2px solid #f5f5f5;
    margin-top: 5px;
}

.menu-toggle p {
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 3px;
    color: #fff;
}

.menu-wrapper {
    position: fixed;
    right: 0px;
    background-color: #050e17;
    z-index: 9999999;
    top: 0;
    max-width: 300px;
    visibility: hidden;
    right: -300px;
    transition: all ease-in-out .7s;
    width: 100%;
    padding: 28px 25px 15px;
    text-align: center;
    height: 100%;
}

.menu-visible .menu-wrapper {
    visibility: visible;
    right: 0px;
}

.close-menu {
    position: absolute;
    left: 0px;
    cursor: pointer;
    background: #fd2561;
    top: 19px;
    color: #ffffff;
    padding: 7px 11px 7px;
    font-size: 20px;
}

.menu-overlay {
    position: fixed;
    width: 0%;
    height: 100%;
    background-color: rgb(35 34 35 / 72%);
    right: 0px;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
    transition: all ease-in-out .7s;
}

.menu-visible .menu-overlay {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
    list-style: none;
    text-align: center;
    line-height: 1;
    z-index: 99;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#cssmenu {
    width: 100%;
    color: #ffffff;
    text-align: left;
    height: auto;
    margin-top: 77px;
    height: 453px;
    overflow-y: auto;
}


/* width */

#cssmenu::-webkit-scrollbar {
    width: 4px;
}


/* Track */

#cssmenu::-webkit-scrollbar-track {
    background: #f94074;
}


/* Handle */

#cssmenu::-webkit-scrollbar-thumb {
    background: #d2cfcf;
}


/* Handle on hover */

#cssmenu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#cssmenu ul ul {
    display: none;
}

.color-palate.visible-palate .menu-overlay {
    height: 100%;
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    /* z-index: 99; */
    left: 0;
    background-color: #152433b5;
}

.align-right {
    float: right;
}

#cssmenu>ul>li>a {
    padding: 20px 20px;
    /* border-left: 1px solid #1682ba; */
    /* border-right: 1px solid #1682ba; */
    border-bottom: 1px dashed #c7c7c7;
    cursor: pointer;
    z-index: 2;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: normal;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
    background: transparent;
    /* background: -webkit-linear-gradient(#36aae7, #1fa0e4); */
    background: -moz-linear-gradient(#36aae7, #1fa0e4);
    background: -o-linear-gradient(#36aae7, #1fa0e4);
    background: -ms-linear-gradient(#36aae7, #1fa0e4);
    /* background: linear-gradient(#36aae7, #1fa0e4); */
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15); */
}

#cssmenu>ul>li>a:hover,
#cssmenu>ul>li.active>a,
#cssmenu>ul>li.open>a {
    color: #ffffff;
    background: transparent;
    /* background: -webkit-linear-gradient(#1fa0e4, #1992d1); */
    background: -moz-linear-gradient(#1fa0e4, #1992d1);
    background: -o-linear-gradient(#1fa0e4, #1992d1);
    background: -ms-linear-gradient(#1fa0e4, #1992d1);
    /* background: linear-gradient(#1fa0e4, #1992d1); */
}

#cssmenu>ul>li.open>a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #f3f4f5;
}

#cssmenu>ul>li:last-child>a,
#cssmenu>ul>li.last>a {
    border: 0px;
}

.holder {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.holder::after,
.holder::before {
    display: block;
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    right: 20px;
    z-index: 10;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.holder::after {
    top: 17px;
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
}

#cssmenu>ul>li>a:hover>span::after,
#cssmenu>ul>li.active>a>span::after,
#cssmenu>ul>li.open>a>span::after {
    border-color: #000000;
}

.holder::before {
    top: 18px;
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-color: inherit;
    border-left-color: inherit;
}

#cssmenu ul ul li a {
    cursor: pointer;
    border-bottom: 1px solid #000000;
    /* border-left: 1px solid #32373e; */
    /* border-right: 1px solid #32373e; */
    padding: 10px 20px;
    z-index: 1;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    color: #000000;
    background: #efefef;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#cssmenu ul ul li:hover>a,
#cssmenu ul ul li.open>a,
#cssmenu ul ul li.active>a {
    color: #fd2561;
}

#cssmenu ul ul li:first-child>a {
    box-shadow: none;
}

#cssmenu ul ul ul li:first-child>a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#cssmenu ul ul ul li a {
    padding-left: 30px;
}

#cssmenu>ul>li>ul>li:last-child>a,
#cssmenu>ul>li>ul>li.last>a {
    border-bottom: 0;
}

#cssmenu>ul>li>ul>li.open:last-child>a,
#cssmenu>ul>li>ul>li.last.open>a {
    border-bottom: 1px solid #32373e;
}

#cssmenu>ul>li>ul>li.open:last-child>ul>li:last-child>a {
    border-bottom: 0;
}

#cssmenu ul ul li.has-sub>a::after {
    display: block;
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    right: 20px;
    z-index: 10;
    top: 11.5px;
    border-top: 2px solid #eeeeee;
    border-left: 2px solid #eeeeee;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#cssmenu ul ul li.active>a::after,
#cssmenu ul ul li.open>a::after,
#cssmenu ul ul li>a:hover::after {
    border-color: #ffffff;
}


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

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

.main-menu {
    position: relative;
    display: block;
    margin-top: 74px;
}

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

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

.main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 18px 0;
    margin-left: 60px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

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

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 267px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 0px 0px;
    background-color: #032863;
    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.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: #ec2b1c;
}

.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: 9px 20px;
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    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;
}

.to_nav_links {
    position: absolute;
    top: 37px;
    right: 182px;
}

.to_nav_links ul li {
    display: inline-block;
}

.to_nav_links ul li a {
    display: block;
    padding: 0 13px;
    border-right: 1px solid #717171;
    color: #000;
    font-size: 16px;
}

.to_nav_links ul li:last-child a {
    /* border-right: 0px; */
}

.locateus {
    position: absolute;
    right: 13px;
    top: 24px;
    background: #3a86bc;
    color: #fff;
    padding: 7px 17px 7px 9px;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 30px;
}

.locateus i {
    position: relative;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    background: #fffefc;
    line-height: 30px;
    border-radius: 50%;
    color: #000;
    margin-right: 5px;
    font-weight: 600;
}

.locateus:hover {
    background: #FB2167;
    color: #fff;
}

.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 {
    color: #ffffff;
    background: #ff4788;
}

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.page-banner.curve-offwhite:after {
    background-image: url(../images/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 span {
    display: block;
    font-size: 25px;
    color: #e8296e;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 37px;
    line-height: 1.2em;
    color: #353535;
    font-weight: 500;
    padding-top: 20px;
    text-transform: uppercase;
}

.sec-title h2:before {
    position: absolute;
    left: 0;
    top: 12px;
    width: 84px;
    height: 2px;
    background-color: #ff5190;
    content: "";
    border-radius: 2px;
}

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


/*** 

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

***/

.banner-section {
    position: relative;
}

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

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

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

.banner-carousel {
    position: relative;
}

.banner .auto-container {
    height: 100vh;
}

.banner-content {
    position: absolute;
    right: 10%;
    top: 32%;
    text-align: center;
}

.banner-content span {
    position: relative;
    font-size: 29px;
    margin-bottom: 11px;
    display: block;
    font-family: 'Dancing Script', cursive;
}

.banner-content h4 {
    position: relative;
    text-transform: uppercase;
    color: #fc1e69;
    font-size: 36px;
}

.banner-content h1 {
    position: relative;
    text-transform: uppercase;
    color: #011029;
    font-size: 52px;
}

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

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

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

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

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

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

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

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

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

.icon-star-2 {
    height: 95px;
    width: 57px;
    background-image: url(../images/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(../images/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;
}


/*** 

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

***/

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

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

.offers-section .icon-star-3 {
    left: -100px !important;
    top: 300px !important;
}

.offers-section .icon-sun {
    left: auto !important;
    top: auto !important;
    right: -200px !important;
    bottom: 50px !important;
}

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

.icon-sun {
    height: 71px;
    width: 135px;
    background-image: url(../images/icons/icon-sun.png);
}

.speciality-section {
    position: relative;
    padding: 0px 0 48px;
}

.speciality-section .auto-container {}

.speciality-section::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 1043px;
    height: auto;
    left: 0px;
    right: 0;
    margin: auto;
    bottom: 0;
    /* background: linear-gradient(to bottom, rgb(0 0 0 / 0%), #153750); */
}

.speciality-section::after {
    content: "";
    position: absolute;
    width: 855px;
    height: 160px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    /* background-image: url('../images/home-about.png'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.spality_img {
    position: absolute;
    bottom: -72px;
}

.speciality-blocks {
    position: relative;
    max-width: 1000px;
    margin: 0px auto 66px;
}

.specialty_head {
    position: relative;
    margin-top: -49px;
    text-align: left;
}

.speciality-blocks span {
    display: block;
    font-size: 28px;
    color: #616161;
    margin-bottom: 11px;
}

.specilatytitle {
    z-index: 1;
    text-transform: uppercase;
    font-size: 21px;
    display: inline-block;
    margin-bottom: 3px;
    line-height: 43px;
    background: #ec1662;
    color: #fffefc;
    font-weight: 600;
    padding: 3px 15px;
}

.specilatytitle::before {
    content: "";
    position: absolute;
    width: 54%;
    height: 2px;
    left: 340px;
    top: 6px;
}

.offer-block {
    position: relative;
    padding: 0 15px;
    margin-top: 0;
}

.speciality-row {
    position: relative;
}

.speciality-row .col-md-3 {
    padding: 0 6px;
}

.speciality-row {
    position: relative;
    margin: 0 -6px;
}

.sp_img {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.sp_img img {
    /* filter: grayscale(100%); */
    transition: linear .4s;
}

.sp-bg:hover .sp_img img {
    /* filter: grayscale(0%); */
}

.sp_img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 91%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%), #072a42);
    z-index: 1;
    bottom: 0;
}

.sp_info {
    position: absolute;
    z-index: 1;
    padding: 19px 16px 8px;
    margin-top: 0;
    bottom: 11px;
    text-align: center;
    width: 100%;
}

.sp_info a {
    position: relative;
    bottom: 0;
    left: 0px;
    right: 0px;
    margin: auto;
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 15px;
    display: inline-block;
    border: 1px solid;
    margin-top: 10px;
}

.sp-bg:hover .sp_info a {
    background-color: #e8296e;
    color: #fff;
}

.sp-cnter-title {
    border-radius: 99px;
    position: relative;
    width: 100%;
    text-align: center;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 9;
    bottom: 0px;
    display: block;
    padding: 0;
}

.sp-cnter-title span {
    color: #001d50;
    display: initial;
    padding-top: 0;
    margin-bottom: 0;
}

.sp-cnter-title h3 {
    text-transform: uppercase;
    color: #f72f67;
    font-size: 38px;
    font-weight: 500;
}


/* .speciality-row::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    border-bottom: 2px dashed #9e9e9e;
    left: 0;
    right: 0;
    margin: auto;
    top: 55%;
}

.speciality-row::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 83%;
    border-right: 2px dashed #9e9e9e;
    left: 0;
    right: 0;
    margin: auto;
    top: 45px;
} */

.offer-block .inner-box {
    position: relative;
    text-align: center;
    padding: 0;
    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;
    margin: auto;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* .speciality-row .offer-block:nth-child(1) .inner-box {
    background-image: url(../images/specila-services/nenotal-icu.jpg);
}

.speciality-row .offer-block:nth-child(2) .inner-box {
    background-image: url(../images/specila-services/pediatric-icu.jpg);
}

.speciality-row .offer-block:nth-child(3) .inner-box {
    background-image: url(../images/specila-services/pediatric-surgery.jpg);
}

.speciality-row .offer-block:nth-child(4) .inner-box {
    background-image: url(../images/specila-services/immunization.jpg);
} */

.offer-block .inner-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.speciality-row .offer-block:nth-child(1) .inner-box::before {}

.speciality-row .offer-block:nth-child(2) .inner-box::before {}

.speciality-row .offer-block:nth-child(3) .inner-box::before {}

.speciality-row .offer-block:nth-child(4) .inner-box::before {}

.offer-block .inner-box:hover {
    box-shadow: none;
}

.offer-block .icon-box {
    position: relative;
    display: inline-block;
    height: 110px;
    width: 110px;
    line-height: 110px;
    text-align: center;
    font-size: 55px;
    color: #ffffff;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.offer-block .inner-box:hover .icon-box {
    -webkit-transform: scale(-1) rotate(-180deg);
    -moz-transform: scale(-1) rotate(-180deg);
    -ms-transform: scale(-1) rotate(-180deg);
    -o-transform: scale(-1) rotate(-180deg);
    transform: scale(-1) rotate(-180deg);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.offer-block .inner-box h3 {
    text-transform: uppercase;
    color: #fff;
    margin-top: 0;
    font-size: 15px;
    bottom: 0;
    width: 100%;
    z-index: 2;
    padding: 0;
}

.offer-block .inner-box p {
    color: #000;
    position: relative;
    font-size: 17px;
    line-height: 27px;
}

.offer-block h5 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.2em;
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

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

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

.why-us {
    position: absolute;
    max-width: 433px;
    margin: auto;
    margin-top: 0;
    text-align: center;
    right: 236px;
    width: 100%;
    display: none;
}

._why-choose-us {
    position: relative;
    text-align: center;
    padding: 16px 17px 0px;
    box-shadow: none;
}

._why-choose-us::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100px;
    /* border-right: 2px solid #ccc; */
    right: 0;
    top: -76px;
    left: 0px;
    margin: auto;
    z-index: -1;
}

._why-img {
    display: inline-block;
    margin-bottom: 6px;
}

._why-row .col-md-3 {
    padding: 0 0px;
}

._why-row .col-md-3:nth-child(2) ._why-img {
    /* background-color: #b0ffc3; */
}

._why-row .col-md-3:nth-child(3) ._why-img {
    /* background-color: #b1e4ff; */
}

._why-row .col-md-3:nth-child(4) ._why-img {
    /* background-color: #feff9f; */
}

._why-row .col-md-3:nth-child(1):before,
._why-row .col-md-3:nth-child(2):before,
._why-row .col-md-3:nth-child(3):before,
._why-row .col-md-3:nth-child(4):before {
    content: "";
    position: absolute;
    width: 80px;
    height: 44px;
    border-right: 2px solid #ccc;
    right: 0;
    top: 31px;
    margin: auto;
}

._why-img img {
    width: 36px;
    opacity: .8;
}

._why-choose-us h3 {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #000;
}

.about_block_section {
    position: relative;
    right: 0;
}

.about-content {
    position: relative;
    text-align: center;
    max-width: 1161px;
    margin: auto;
    margin-top: 0;
    background: transparent;
    right: 0;
    z-index: 2;
}

.about-line {
    content: "";
    position: absolute;
    width: 100px;
    height: 641px;
    top: -324px;
    z-index: -1;
    left: 0px;
    right: 182px;
    margin: auto;
}

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

.about-content h1 {
    text-transform: uppercase;
    color: #3e86b3;
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 55px;
}

.about-content h4 {
    text-transform: uppercase;
    color: #ec1662;
    margin-bottom: 16px;
    font-size: 30px;
}

.about-content p {
    margin: auto;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 29px;
    color: #2f2f2f;
    text-align: justify;
}

.exp_block {
    position: absolute;
    bottom: -216px;
    text-align: center;
    padding: 16px 15px;
    box-shadow: 0px 0px 10px #7b7b7b;
    height: 200px;
    width: 153px;
    border-radius: 103px 100px 0px 0px;
    left: 58px;
    background: #fff;
    z-index: 1;
    display: none;
}

.exp_block h3 {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: #e8276e;
    color: #fff;
    font-size: 42px;
    border-radius: 50%;
    line-height: 94px;
    box-shadow: 0px 0px 0px 7px #d8d8d8;
    margin-bottom: 12px;
    margin-top: 7px;
    font-weight: 600;
}

.exp_block p {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 23px;
}

.succesrate {
    left: initial;
    right: 58px;
}

.succesrate h3 {
    background: #3E86B3;
    font-size: 31px;
}


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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


/***

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

***/

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

.program-section {
    position: relative;
    padding: 100px 0 194px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background: #033048;
}

.program-section .icon-star-5 {
    top: auto !important;
    left: -190px !important;
    bottom: 145px !important;
}

.program-section .icon-star-4 {
    right: -140px !important;
    bottom: 240px !important;
    top: auto !important;
    left: auto !important;
}

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

.program-section .icon-star-3 {
    top: 190px !important;
    left: -100px !important;
}

.services-row {
    position: relative;
}

.services-row::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    border-bottom: 1px solid #d2d2d2;
    top: 228px;
    left: 0;
}

.services-row .col-md-3 {
    border-right: 1px solid #d2d2d2;
    margin-bottom: 40px;
}

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

.services-blocks {
    text-align: center;
    position: relative;
    display: block;
    padding: 22px 6px;
    min-height: 212px;
}

.services-blocks h3 {
    text-transform: uppercase;
    color: #171717;
    font-size: 17px;
    margin-bottom: 13px;
    font-weight: 600;
}

.services-blocks p {
    color: #737373;
    font-size: 15px;
    line-height: 27px;
}

.services-blocks span {
    color: #fefdfe;
    display: inline-block;
    background: #252525;
    padding: 3px 9px;
    margin-top: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100px;
}

.services-blocks:hover span {
    background-color: #F72F67;
    color: #fff;
}

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

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

.program-block .inner-box {
    position: relative;
    border-radius: 15px;
    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;
}

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

.program-block .image-box {
    position: relative;
}

.program-block .image {
    position: relative;
    margin-bottom: 0;
    background-color: #ff4880;
}

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

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

.program-block .lower-content {
    position: relative;
    padding: 55px 60px 0;
    background-color: #ffffff;
}

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

.program-block h4 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;
}

.program-block .inner-box:hover h4 a {
    color: #25bdd8;
}

.program-block .text {
    position: relative;
    margin-bottom: 20px;
}

.program-block .program-info {
    position: relative;
    border-top: 1px solid #e8e6ec;
    padding: 25px 0 45px;
}

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

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

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

.program-block .btn-box {
    position: relative;
    text-align: center;
}

.program-block .btn-box a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    padding: 10px 30px;
    color: #ffffff;
    background-color: #25bdd8;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.program-block .inner-box:hover .btn-box a {
    background-color: #1e2c67;
}

.program-section.style-two {
    background-color: #ffffff;
    padding: 120px 0 115px;
}

.program-section.style-two .program-block .lower-content {
    border: 1px solid #ece6dd;
    border-top: 0;
}


/*** 

====================================================================
		Program Single
====================================================================

***/

.program-single {
    position: relative;
    padding: 120px 0 100px;
}

.program-single .icon-star-3 {
    left: auto !important;
    right: -80px !important;
    top: 310px !important;
}

.program-single .icon-balloon {
    top: auto !important;
    left: -360px !important;
    bottom: 40px !important;
}

.program-single .image-column {
    position: relative;
}

.program-single .image-column .image {
    position: relative;
    margin-bottom: 30px;
}

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

.program-single .info-column {
    position: relative;
    margin-bottom: 30px;
}

.program-single .program-info {
    position: relative;
}

.program-single .program-info .inner {
    position: relative;
    padding: 55px 50px 30px;
    border: 1px solid #e8e6ec;
    border-bottom: 0;
}

.program-single .program-info h4 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: #25bdd8;
    font-weight: 400;
    margin-bottom: 30px;
}

.program-single .program-info .info-list {
    position: relative;
}

.program-single .program-info .info-list li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #1e2c67;
    font-weight: 500;
    margin-bottom: 15px;
    padding-left: 45px;
}

.program-single .program-info .info-list li span {
    display: block;
    color: #696478;
    font-weight: 500;
    margin-bottom: 8px;
}

.program-single .program-info .info-list li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 26px;
    color: #ff4788;
    font-weight: 400;
}

.program-single .program-info .theme-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.program-single .content-box {
    position: relative;
}

.program-single .content-box h2 {
    position: relative;
    font-size: 60px;
    line-height: 1em;
    color: #1e2c67;
    font-weight: 700;
    margin-bottom: 30px;
}

.program-single .content-box p {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #696478;
    font-weight: 400;
}


/*** 

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

***/

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

.faq-section .icon-star-4 {
    left: -155px !important;
    top: 175px !important;
}

.faq-section .icon-sun {
    top: auto !important;
    left: auto !important;
    right: -265px !important;
    bottom: 90px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

.activity-block {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

.events-container {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

.newsletter-section {
    position: relative;
    padding: 0px 0 0;
    z-index: 1;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    /* max-width: 1017px; */
    /* box-shadow: 0px 0px 10px #9e9d9d; */
    /* bottom: -17px; */
    left: 0px;
    right: 0px;
    margin: auto;
    /* background: #eaeaea; */
}

.newsletter-section::after {
    content: "";
    position: absolute;
    width: 100%;
    /* height: 100px; */
    /* max-width: 926px; */
    /* box-shadow: 0px 0px 10px #9e9d9d; */
    /* bottom: -34px; */
    left: 0px;
    right: 0px;
    margin: auto;
    /* background: #f1f1f1; */
    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: #f72f67;
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 38px;
}

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

.newsletter-section .inner-container {
    max-width: 1125px;
    margin: auto;
    background: transparent;
    padding: 0px 23px;
    border-radius: 11px;
}


/*Subscribe Form*/

.subscribeus {
    text-align: center;
    padding: 52px 38px;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: 30px;
    background: #f0f9ff;
}

.subscribeus h2 {
    text-transform: uppercase;
    color: #000;
    margin-bottom: 5px;
}

.subscribeus h4 {
    font-size: 16px;
}

.subscribe-form {
    position: relative;
    margin-top: 22px;
}

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

.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: 67px;
    line-height: 30px;
    font-size: 18px;
    color: #444444;
    font-weight: 500;
    background: #ffffff;
    /* border: 2px solid; */
    padding: 25px 40px;
    border-radius: 44px;
    -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: 5px;
    top: 6px;
    min-width: 160px;
    border-radius: 44px;
    background: #205d84;
    color: #fff;
    padding: 12px 26px;
    border: none;
}

.whychooseus {
    padding: 8px 0 49px;
    position: relative;
}

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

._why_image_ {
    display: inline-block;
}

._why_tititle_ {
    text-transform: uppercase;
    margin-top: 13px;
    font-size: 15px;
    font-weight: 500;
    color: #464646;
}

.why_head_title_ {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 43px;
}
.why_head_title_ h2{
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: 41px;
    font-weight: 600;
    line-height: 20px;
}

._why_row .col-md-2:nth-child(1),
._why_row .col-md-2:nth-child(2),
._why_row .col-md-2:nth-child(3),
._why_row .col-md-2:nth-child(4),
._why_row .col-md-2:nth-child(5) {
    border-right: 1px solid #ccc;
}

.why_head_title_::before,
.why_head_title_::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-bottom: 1px solid #ccc;
    left: 12%;
    top: 10px;
}

.why_head_title_::after {
    left: initial;
    right: 12%;
}

.why_row_section {
    position: relative;
}

.why_row_section::before {
    content: "";
    position: absolute;
    width: 33%;
    height: 76%;
    left: 242px;
    bottom: 0;
}

.tips-desc {
    position: absolute;
    background: #f7ee62;
    padding: 22px 0px 23px 13px;
    left: -16px;
    margin-top: 0;
    width: 84%;
    bottom: 0;
}

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

.tips-desc h3 {
    text-transform: uppercase;
    margin-bottom: 13px;
    color: #000;
    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: 19px 0 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: 0;
    left: 0px;
    margin: auto;
    /* background-image: url(../images/testimonila-framr.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .8;
}

.team-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: 0;
    right: 0px;
    margin: auto;
    /* background-image: url(../images/testimonila-framr2.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .8;
}

.facilities-row .col-md-2 {
    flex: 0 0 40.666667%;
    max-width: 32%;
    margin-bottom: 4px;
    padding: 0 2px;
}

.facilities-row .col-md-2:last-child {
    border-right: 0px;
}

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

.facilities-row .col-md-2:nth-child(5) {}

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

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

.fac-title p {
    color: #333;
}

.facility-list {
    text-align: center;
    font-size: 18px;
    background: #0b1123;
    color: #fdfbfe;
    line-height: 27px;
    display: table-cell;
    vertical-align: middle;
    width: 600px;
    height: 139px;
    padding: 0 13px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.facility-list::after {
    content: "";
    position: absolute;
    width: 124px;
    height: 124px;
    left: 0;
    right: 0;
    margin: auto;
    top: 20px;
    z-index: -1;
    transform: rotate(45deg);
}

.facilities-row .col-md-2:nth-child(2) .facility-list::after {
    /* background-color: #c2ffd1; */
}

.facilities-row .col-md-2:nth-child(3) .facility-list::after {
    /* background-color: #fff6a5; */
}

.facilities-row .col-md-2:nth-child(4) .facility-list::after {
    /* background-color: #c4d9f1; */
}

.facilities-row .col-md-2:nth-child(5) .facility-list::after {
    /* background-color: #ffd9ad; */
}

.facility-list::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    left: 0;
    right: 0;
    margin: auto;
    top: 7px;
    border: 1px solid #737373;
    z-index: -1;
}

.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(../images/icons/icon-balloon-2.png);
}

.icon-star-6 {
    height: 92px;
    width: 54px;
    background-image: url(../images/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;
    margin-top: 0;
    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: 50px;
    top: -399px;
}


/*** 

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

***/

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

.testimonial-head {
    max-width: 400px;
    margin: auto;
    margin-top: 13px;
    margin-bottom: 35px;
}

.testimonial-section .icon-star-4 {
    top: 200px !important;
    left: -20px !important;
}

.testimonial-section .icon-star-3 {
    top: 390px !important;
    right: -80px !important;
    left: auto !important;
}

.testimonial-section .icon-sun-2 {
    top: auto !important;
    left: -140px !important;
    bottom: 210px !important;
}

.testimonial-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    opacity: .10;
    z-index: -1;
}

.testimonial-carousel {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.testimonial-list {
    max-width: 977px;
    margin: auto;
    margin-bottom: 52px;
}

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

.testimonial-block .inner-box {
    position: relative;
    background-color: transparent;
    padding: 13px 14px;
    text-align: center;
    z-index: 9;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0%);
}

.testimonial-block .inner-box:before {
    position: absolute;
    left: 6px;
    right: 0;
    margin: auto;
    top: 3px;
    height: 262px;
    width: 262px;
    border: 2px dashed #757575;
    background-position: center;
    content: "";
    border-radius: 50%;
}

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

._terow .col-md-4:nth-child(1),
._terow .col-md-4:nth-child(3) {
    margin-top: -100px;
}

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

.testimonial-block .text {
    border-radius: 50%;
    width: 244px;
    height: 244px;
    position: relative;
    left: 20px;
    /* display: table-cell; */
    /* margin: auto; */
    /* vertical-align: middle; */
    font-size: 15px;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 0;
    padding: 52px 20px 0;
    background: #ec1662;
    box-shadow: 0px 0px 10px #757575;
}

._terow .col-md-4:nth-child(1) .testimonial-block .text,
._terow .col-md-4:nth-child(3) .testimonial-block .text {
    background: #ffffff;
    color: #000;
}

._terow .col-md-4:nth-child(2) .testimonial-block .inner-box a {
    /* color: #fff; */
}

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

.testimonial-block .inner-box a {
    position: absolute;
    bottom: 146px;
    left: 0;
    right: 0;
    margin: auto;
    width: 109px;
    color: #292929;
    padding: 5px 0;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0px 0px 10px #333;
    background: #f5f5f5;
    border-radius: 30px;
}

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

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

.testimonial-block .thumb {
    position: relative;
    display: inline-block;
    height: 58px;
    width: 58px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -34px;
    background: #fff;
    margin-bottom: 28px;
}

.testimonial-block:after,
.testimonial-block:before {
    position: absolute;
    left: 30px;
    right: 30px;
    height: 100%;
    bottom: 30px;
    margin: 0 auto;
    /* background-color: #e8e8e8; */
    content: "";
    z-index: 1;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
}

.testimonial-block:before {
    left: 60px;
    right: 60px;
    bottom: 46px;
    width: 6px;
    height: 50px;
    border-right: 2px dashed #757575;
    text-align: center;
}

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

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

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

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

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 21px;
    width: 21px;
    border: 8px solid #616161;
    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: 8px solid #fc1e69;
}

.add-image {
    text-align: center;
}

.add-image img {
    position: relative;
    margin-top: 0;
}

.appointmentrow .col-md-3:nth-child(2) {
    margin-top: 0;
}

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

.app_hospita {
    position: absolute;
    left: 222px;
    bottom: 99px;
    width: 191px;
    border: 5px solid #ccc;
    display: none;
    overflow: hidden;
}

.app_hospita::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 41%);
    z-index: 1;
    bottom: 0;
    left: 0px;
    top: 0px;
    right: 0px;
    margin: auto;
    transition: all ease-in-out .5s;
    /* border-radius: 100%; */
}

.app_hospita:hover:before {
    width: 0%;
    height: 0%;
}

.facility_section {
    position: relative;
    text-align: center;
    background-image: url(../images/facilities_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 129px 0px 130px;
}

.facility_section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(220 0 79 / 87%);
    left: 0;
    top: 0;
}

.shapes {
    position: absolute;
}

.shape1 {
    top: 0px;
}

.shape2 {
    bottom: 0px;
}

._fac_row .col-md-2 {
    -ms-flex: 0 0 20.666667%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 4px;
    border-right: 1px dashed #eee;
}

._fac_row .col-md-2:nth-child(5) {
    border-right: 0px;
}

.facility_tititle_head {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 43px;
    display: inline-block;
    border-bottom: 1px solid;
    line-height: 51px;
}
.facility_tititle_head h2{
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 50px;
    display: inline-block;
    line-height: 51px;
}
.facility_block {
    position: relative;
    z-index: 1;
    padding: 30px 3px;
}

.fac_title {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-top: 21px;
}

._fac_bottom {
    color: #fff;
    font-size: 26px;
    max-width: 967px;
    margin: auto;
    line-height: 36px;
    margin-top: -28px;
    font-weight: 300;
    padding-top: 47px;
    border-top: 1px dashed #eee;
}

.fac_raed {
    text-align: center;
}

.fac_raed a {
    display: inline-block;
    background: #ffff;
    padding: 18px 23px;
    color: #d91a60;
    font-weight: 600;
    font-size: 21px;
    margin-top: 20px;
}


/*** 

====================================================================
		Clients Section
====================================================================

***/

.clients-section {
    position: relative;
    padding: 110px 0;
}

.clients-section .sponsors-outer {
    position: relative;
    text-align: center;
}

.clients-section .sponsors-outer .text {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 1.3em;
    color: #75717b;
    font-weight: 500;
    margin-bottom: 50px;
}

.clients-section .slide-item {
    position: relative;
}

.clients-section .image-box {
    position: relative;
    margin: 0;
    text-align: center;
}

.clients-section .image-box img {
    display: inline-block;
    max-width: 100%;
    width: auto;
    height: auto;
    opacity: 0.70;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.clients-section .image-box:hover img {
    opacity: 1;
}

.clients-section .sponsors-carousel .owl-dots,
.clients-section .sponsors-carousel .owl-nav {
    display: none;
}

.clients-section.style-two {
    background-color: #ff4789;
    padding: 80px 0px;
    border: 0;
}


/*** 

====================================================================
		Gallery Section
====================================================================

***/

.gallery-section {
    position: relative;
}

.gallery-item {
    position: relative;
}

.gallery-item .image-box {
    position: relative;
    overflow: hidden;
}

.gallery-item .image-box .image {
    position: relative;
}

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

.gallery-item .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background-color: rgba(52, 28, 119, .90);
    content: "";
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}

.gallery-item .image-box:hover .overlay-box {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.gallery-item .overlay-box a {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -29px;
    margin-left: -20px;
}

.gallery-item .overlay-box a span {
    display: block;
    height: 58px;
    width: 58px;
    background-color: #25bdd8;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 400;
    line-height: 58px;
}

.gallery-section .owl-nav {
    display: none;
}


/*** 

====================================================================
		  Video Section
====================================================================

***/

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

.video-section .icon-star-6 {
    left: -160px !important;
    top: -10px !important;
}

.video-section .icon-star-8 {
    left: auto !important;
    right: -110px !important;
    top: -40px !important;
}

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

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

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

.video-box {
    position: relative;
}

.video-box .image {
    position: relative;
    border-radius: 7px;
    margin-bottom: 0;
}

.video-box .image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 7px;
}

.video-box .link {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 7px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.video-box .link:hover {
    background-color: rgba(0, 0, 0, 0.40);
}

.video-box .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100px;
    width: 100px;
    background-color: #25bdd8;
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    padding-left: 5px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

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

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

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

.video-section .content-column .sec-title h2 {
    letter-spacing: -0.02em;
}

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

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


/*** 

====================================================================
		Call To Action
====================================================================

***/

.call-to-action {
    position: relative;
    padding: 110px 0;
    background-color: #ff4788;
}

.call-to-action h2 {
    position: relative;
    float: left;
    display: block;
    font-size: 50px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
}

.call-to-action .btn-box {
    position: relative;
    float: right;
    padding-top: 20px;
}

.call-to-action.alternate {
    padding: 110px 0 130px;
}


/*** 

====================================================================
		News Section Two
====================================================================

***/

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

.news-section-two .icon-star-5 {
    top: auto !important;
    left: -190px !important;
    bottom: 145px !important;
}

.news-section-two .icon-star-4 {
    right: -140px !important;
    bottom: 240px !important;
    top: auto !important;
    left: auto !important;
}

.news-section-two .icon-star-3 {
    top: 190px !important;
    left: -100px !important;
}

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

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

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

.news-block .image-box .image {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    border: 10px;
    background-color: #393d72;
}

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

.news-block .inner-box:hover .image-box .image img {
    opacity: .70;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.news-block .lower-content {
    position: relative;
    padding: 25px 0px 0;
}

.news-block .post-info {
    position: relative;
    margin-bottom: 5px;
}

.news-block .post-info li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 25px;
    margin-right: 13px;
    color: #25bdd8;
    font-weight: 400;
}

.news-block .post-info li a {
    color: #25bdd8;
    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;
}

.news-block .post-info li a:hover {
    color: #25bdd8;
}

.news-block h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.25em;
    color: #1e2c67;
    font-weight: 700;
    margin-bottom: 25px;
}

.news-block h3 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;
}

.news-block h3 a:hover {
    color: #ff4788;
}

.news-block .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #696478;
    font-weight: 400;
    margin-bottom: 32px;
}

.news-block .btn-box {
    position: relative;
}

.news-block .btn-box a {
    display: inline-block;
    font-size: 32px;
    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;
}

.news-block .btn-box a:hover {
    color: #ff4788;
}

.news-section-two.style-two {
    padding: 120px 0 80px;
}

.news-section-two.style-two .news-block {
    margin-bottom: 60px;
}


/*** 

====================================================================
		News Detail
====================================================================

***/

.news-detail {
    position: relative;
}

.news-detail .upper-box {
    position: relative;
}

.news-detail .upper-box .image-box {
    position: relative;
}

.news-detail .upper-box .image {
    position: relative;
    margin-bottom: 0;
}

.news-detail .upper-box .image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.news-detail .lower-content {
    position: relative;
    padding-top: 25px;
    padding-bottom: 30px;
}

.news-detail .lower-content .post-info {
    position: relative;
    margin-bottom: 5px;
}

.news-detail .lower-content .post-info li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 25px;
    margin-right: 13px;
    color: #25bdd8;
    font-weight: 400;
}

.news-detail .lower-content .post-info li a {
    color: #25bdd8;
    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;
}

.news-detail .lower-content .post-info li a:hover {
    color: #25bdd8;
}

.news-detail .lower-content h3 {
    position: relative;
    font-size: 40px;
    line-height: 1.2em;
    color: #1e2c67;
    font-weight: 700;
    margin-bottom: 30px;
}

.news-detail .lower-content p {
    position: relative;
    font-size: 15px;
    line-height: 30px;
    color: #696478;
    font-weight: 400;
    margin-bottom: 30px;
}

.news-detail .post-share-options {
    position: relative;
    padding: 30px 0px;
    margin-bottom: 10px;
    border-top: 1px solid #e8e6ec;
}

.news-detail .post-share-options .tags {
    position: relative;
}

.news-detail .post-share-options .tags li {
    position: relative;
    display: inline-block;
    margin-right: 4px;
}

.news-detail .post-share-options .tags li.title {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    color: #1e2c67;
    padding: 10px 0;
    font-weight: 700;
    margin-right: 15px;
}

.news-detail .post-share-options .tags li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #25bdd8;
    border-radius: 5px;
    transition: all 300ms ease;
}

.news-detail .post-share-options .tags li a:hover {
    background-color: #1e2c67;
    color: #ffffff;
}

.news-detail .post-share-options .social-icon-one li {
    margin-left: 35px;
}


/*Author Box*/

.author-box {
    position: relative;
    padding: 60px 60px;
    background-color: #1e2c67;
    border-radius: 10px;
    margin-bottom: 50px;
}

.author-box .inner-box {
    position: relative;
    padding-left: 210px;
    min-height: 170px;
    padding-top: 5px;
}

.author-box .image-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 170px;
}

.author-box .image-box img {
    display: block;
    width: 100%;
    border-radius: 50%;
    height: auto;
}

.author-box .name {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 35px;
}

.author-box .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #c8bfe3;
    font-weight: 400;
}

.author-box .contact-info {
    position: relative;
}

.author-box .contact-info li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: #393d72;
    font-weight: 500;
    margin-right: 40px;
}

.author-box .contact-info li span {
    color: #ff4880;
    margin-right: 15px;
}

.author-box .contact-info li:last-child {
    margin-right: 0;
}

.author-box .contact-info li a {
    color: #393d72;
    display: inline-block;
    transition: all 300ms ease;
}

.author-box .contact-info li a:hover {
    color: #ff4880;
}


/*** 

====================================================================
	Contact Map Section
====================================================================

***/

.map-section {
    position: relative;
}

.map-outer {
    position: relative;
}

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

.map-data {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
}

.map-data a {
    display: block;
}

.map-data h6 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #121212;
}


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.asahcmaab {
    background: #ec1662;
    text-align: center;
    padding: 28px 0;
    position: relative;
}

.asahcmaab h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
    margin-top: 11px;
    text-transform: uppercase;
}

.asahcmaab h2:before {
    content: '';
    /* width: 41px; */
    /* height: 48px; */
    display: inline-block;
    /* position: relative; */
    /* top: 6px; */
}

.asahcmaab p {
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    margin: 0;
}

.asahcmaab h2 a {
    text-decoration: none;
    outline: none;
    color: #fff;
}


/*** 

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

***/

.main-footer {
    position: relative;
    background-color: rgb(20 56 82);
}

.main-footer:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    z-index: -1;
}

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

.main-footer .icon-balloon-gray {
    left: auto !important;
    right: -360px !important;
    top: 80px !important;
    bottom: auto !important;
}

.main-footer .icon-sun-gray {
    left: -250px !important;
    top: 190px !important;
}

.main-footer .icon-star-gray {
    top: 50px !important;
    left: 280px !important;
}

.main-footer .icon-star-gray-2 {
    left: -25px !important;
    top: auto !important;
    bottom: 210px !important;
}

.main-footer .icon-star-gray-3 {
    left: auto !important;
    right: -100px !important;
    bottom: 185px !important;
    top: auto !important;
}

.icon-sun-gray {
    height: 52px;
    width: 98px;
    background-image: url(../images/icons/icon-sun-gray.png);
}

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

.icon-star-gray-2 {
    height: 19px;
    width: 15px;
    background-image: url(../images/icons/icon-star-gray-2.png);
}

.icon-star-gray-3 {
    height: 27px;
    width: 31px;
    background-image: url(../images/icons/icon-star-gray-3.png);
}

.icon-balloon-gray {
    height: 277px;
    width: 217px;
    background-image: url(../images/icons/icon-balloon-gray.png);
}

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

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

.main-footer .footer-upper .footer-column:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 176px;
    border-right: 1px solid #868484;
    right: 15px;
    top: 88px;
}

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

.main-footer .footer-widget .widget-title {
    position: relative;
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.main-footer .footer-widget .widget-title::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 18px;
    border-right: 2px solid #ff7aab;
    left: 8px;
    top: 29px;
}

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


/*Logo Widget*/

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

.logo-widget .logo img {
    position: relative;
    opacity: 1;
    -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: #f5f5f5;
    padding: 12px;
    width: 177px;
    margin-top: 27px;
    border-radius: 6px;
}

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

.main-footer .list li:before {
    position: absolute;
    left: -4px;
    top: 8px;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    border: 2px solid #d0d0d0;
    content: "";
}

.main-footer .list li a {
    position: relative;
    font-size: 14px;
    line-height: 26px;
    color: #d0d0d0;
    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;
}

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


/*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: #d0d0d0;
    font-weight: 500;
    padding-left: 44px;
    margin-bottom: 28px;
}

.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: transparent;
    text-align: center;
    color: #fff;
    border: 1px dashed;
}

.main-footer .contact-info li a {
    color: #d0d0d0;
    display: inline-block;
    transition: all 300ms ease;
}

.main-footer .contact-info li a:hover {
    color: #f72f67;
}

.main-footer .footer-bottom {
    position: relative;
    padding: 18px 0px;
    text-align: center;
}

.main-footer .footer-bottom:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    content: "";
    border-top: 1px solid #868484;
}

.main-footer .social-icon-two {
    position: relative;
    display: table;
    margin: auto;
    margin-top: 25px;
}

.main-footer .footer-bottom .copyright {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
}

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

.main-footer .footer-bottom .copyright a:hover {
    text-decoration: underline;
}

.useful-links {
    display: table;
    margin: auto;
    padding: 15px 0 15px;
    border-bottom: 1px solid #868484;
    border-top: 1px solid #868484;
    margin-bottom: 40px;
}

.useful-ul {
    overflow: hidden;
}

.useful-links span {
    margin-right: 20px;
    text-transform: uppercase;
    color: #ff80ad;
    font-weight: 500;
    font-size: 25px;
    display: block;
    text-align: center;
    margin-bottom: 14px;
}

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

.useful-ul li a {
    padding: 0 10px;
    border-right: 1px solid #989898;
    display: block;
    color: #fffdf9;
    font-size: 16px;
}

.useful-ul li:nth-child(5) a {
    border: none;
}


/*** 

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


/*** 

====================================================================
	Comment Form
====================================================================

 ***/

.comment-form .row {
    margin: 0 -10px;
}

.comment-form .form-group {
    padding: 0 10px;
    margin-bottom: 20px;
}

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

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus {
    border-color: #25bdd8;
}

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

.facility_image img {
    margin-top: -50px;
}

.appointment-section {
    position: relative;
    padding: 26px 0px 70px;
    /* background-image: url(../images/app-bg.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

.appointment-section::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    /* background-color: rgb(255 228 38 / 74%); */
    top: 0;
    z-index: -1;
}

.appointment-section::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    /* background-color: rgb(1 11 31 / 91%); */
    top: 0;
    z-index: -1;
    right: 0;
}

.appointment-form {
    position: relative;
    background: transparent;
    margin-top: 15px;
}

.appointment_form_block {
    position: relative;
    text-align: center;
    padding: 29px 38px;
    box-shadow: 0px 0px 10px #ccc;
    right: 130px;
    background: #fff;
}

.appointment-form span {
    display: block;
    font-size: 35px;
    color: #fc1e69;
    margin-bottom: 14px;
}

.appointment-form h5 {
    color: #d2d2d2;
    margin-bottom: 7px;
}

.appointment-form h3 {
    margin-bottom: 16px;
    color: #3e86b3;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
    border-left: 3px solid;
    padding-left: 12px;
}

.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form .form-control {
    border: none;
    border-radius: 0px;
    border-bottom: 1px dashed #717171;
    color: #000;
    background-color: transparent;
    height: 40px;
}

.appointment-form select.form-control option {
    background-color: #333;
    color: #fff;
}

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

.appointment-form .form-control::placeholder {
    color: #000;
}

.appointment-form .btn {
    width: 132px;
    margin-top: 6px;
    background-color: #0e2b40;
    color: #fff;
    border-color: transparent;
    padding: 8px 0;
    border-radius: 30px;
}

.app_image {
    position: relative;
}

.app_image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient( 73deg, #06355d, transparent);
    bottom: 0;
}

.blog_block {
    position: relative;
}

.blog_block::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 93%;
    border-right: 1px solid #ccc;
    left: 57px;
}

.blog-row {
    margin-bottom: 30px;
    padding-bottom: 18px;
    position: relative;
}

.blog-row:before {
    content: "";
    position: absolute;
    width: 76%;
    height: 2px;
    border-bottom: 1px solid #ccc;
    right: 70px;
    bottom: 2px;
}

.blog-row:last-child:before {
    display: none;
}

.blog2 {
    text-align: right;
}

.blog-row:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

.blog-desec1 {
    text-align: right;
}

.blog-date {
    position: relative;
    text-align: center;
    padding: 16px 0;
    width: 110px;
    height: 110px;
    margin: auto;
    border-radius: 50%;
}

.blog-date::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    background-color: #fff;
    transform: rotate(45deg);
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    box-shadow: 0px 0px 10px #ccc;
}

.blog-date span {
    position: relative;
    color: #0e2b40;
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
}

.blog-date h4 {
    position: relative;
    font-size: 28px;
}

.blog-row:nth-child(2) .blog-date span,
.blog-row:nth-child(2) .blog-date h4 {
    color: #fff;
}

.blog-row:nth-child(2) .blog-date::before {
    background-color: #143852;
}

.blog-desc {
    padding-top: 0;
    padding-left: -4px;
}

.blog-desc h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #000;
    font-weight: 600;
}

.blog-desc span {
    display: inline-block;
    color: #ff0e52;
    margin-bottom: 6px;
}

.blog-desc p {
    line-height: 25px;
    margin-bottom: 9px;
    font-size: 14px;
}

.blog-desc a {
    display: inline-block;
    color: #000;
    border: 1px solid;
    padding: 2px 9px;
    border-radius: 30px;
}

.blog-image {
    position: relative;
    text-align: center;
}

.blog-image img {
    border: 1px solid #ccc;
    padding: 8px;
    width: 162px;
    filter: grayscale(1);
    transition: all ease-in-out .5s;
}

.blog-row:hover .blog-image img {
    filter: grayscale(0);
}

._blog_images {
    position: relative;
}

._blog_images::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 48 80 / 68%);
    z-index: 1;
    bottom: 0;
}

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

.ser_baby {
    margin-top: 35px;
}

.ser_d_none {
    display: none;
}

._serlist {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
    margin-bottom: 11px;
    z-index: 1;
    text-align: right;
}

.leftrow .col-md-12:nth-child(1) ._serlist,
.leftrow .col-md-12:nth-child(4) ._serlist {
    left: 113px;
}

.leftrow .col-md-12:nth-child(2) ._serlist {
    left: 42px;
}

.leftrow .col-md-12:nth-child(3) ._serlist {
    left: 42px;
}

.right_row ._serlist {
    text-align: left;
}

.right_row .col-md-12:nth-child(1) ._serlist,
.right_row .col-md-12:nth-child(4) ._serlist {
    right: 113px;
}

.right_row .col-md-12:nth-child(2) ._serlist {
    right: 42px;
}

.right_row .col-md-12:nth-child(3) ._serlist {
    right: 42px;
}

._serlist::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 76px;
    /* border: 1px solid #888; */
    z-index: -1;
    right: 55px;
    margin: auto;
    top: 15px;
    border-radius: 42px;
    background: #0b2942;
}

.right_row ._serlist::before {
    right: initial;
    left: 55px;
}

.ser_title {
    position: relative;
    margin-bottom: 174px;
}

.ser_title::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: -1;
    left: 0;
    right: 0;
    margin: auto;
}

.ser_title span {
    color: #eee;
    display: block;
    font-size: 32px;
    padding-top: 42px;
}

.ser_title h2 {
    color: #fff;
    font-size: 54px;
}

._ser_img {
    width: 106px;
    height: 106px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    border: 1px solid rgb(255 255 255 / 23%);
    display: inline-block;
    background: #eaeaea;
    text-align: center;
    line-height: 94px;
}

._ser_img img {
    transition: linear .7s;
    width: 60px;
    filter: contrast(-0%);
}

._serlist:hover ._ser_img img {
    filter: contrast(0%);
    transform: rotate(23deg);
}

._sertiile {
    text-align: center;
    color: #fef9f0;
    font-size: 16px;
    position: absolute;
    right: 129px;
    top: 41px;
}

.right_row ._sertiile {
    right: inherit;
    left: 46px;
    width: 100%;
    text-align: left;
    padding-left: 77px;
}

.service_section {
    background-image: url(../images/ser_bg.jpg);
}

.service_section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(3 37 64 / 90%);
    top: 0px;
    left: 0px;
}

.servucesshapes {
    position: absolute;
}

.ser_shape1 {
    top: 0px;
}

.ser_shape2 {
    bottom: 0px;
}

.service_carosal_inner {
    text-align: center;
    max-width: 446px;
    margin: auto;
    margin-top: -37px;
    z-index: 99;
}

.service_carosal_inner .carousel-item h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    margin-bottom: 9px;
}

.service_carosal_inner .carousel-item h2::before {
    content: "";
    position: absolute;
    width: 39%;
    height: 2px;
    border-bottom: 2px solid #ffb1e2;
    left: 0px;
    right: 0px;
    margin: auto;
    top: 31px;
}

.service_carosal_inner .carousel-item p {
    color: #eee;
    font-size: 15px;
    line-height: 25px;
}

.service_carosal_inner .carousel-item a {
    display: inline-block;
    color: #eee;
    border: 1px solid;
    border-radius: 30px;
    padding: 5px 10px;
    margin-top: 13px;
}

.service_tab_blocks .carousel-indicators {
    position: relative;
    max-width: 1148px;
    width: 100%;
    margin: auto;
    text-align: center;
}

.service_tab_blocks .carousel-indicators li {
    position: relative;
    -ms-flex: initial;
    flex: auto;
    width: 102px;
    height: 102px;
    margin: 0 19px;
    text-indent: 0;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 90px;
    display: inline-block;
}

.service_tab_blocks .carousel-indicators li.active {
    background-color: #ec2a71;
}

.service_tab_blocks .carousel-indicators li:nth-child(1) {
    top: 260px;
    left: 72px;
}

.service_tab_blocks .carousel-indicators li:nth-child(2) {
    top: 106px;
}

.service_tab_blocks .carousel-indicators li:nth-child(3) {
    top: -20px;
    right: 25px;
}

.service_tab_blocks .carousel-indicators li:nth-child(4) {
    top: -109px;
    right: 12px;
}

.service_tab_blocks .carousel-indicators li:nth-child(5) {
    top: -109px;
    left: 19px;
}

.service_tab_blocks .carousel-indicators li:nth-child(6) {
    top: -20px;
    left: 25px;
}

.service_tab_blocks .carousel-indicators li:nth-child(7) {
    top: 106px;
}

.service_tab_blocks .carousel-indicators li:nth-child(8) {
    top: 260px;
    right: 72px;
}

.service_tab_blocks .carousel-indicators li::before {
    position: absolute;
    top: -52px;
    left: 76px;
    display: inline-block;
    width: 2px;
    height: 46%;
    content: "";
    border-right: 1px dashed #fbfbfb;
    transform: rotate( 29deg);
}

.service_tab_blocks .carousel-indicators li.active::before {
    border-right: 2px dashed #f5679b;
}

.service_tab_blocks .carousel-indicators li:nth-child(2):before {
    top: -40px;
    left: 104px;
    transform: rotate( 44deg);
}

.service_tab_blocks .carousel-indicators li:nth-child(3):before {
    top: -30px;
    left: 100px;
    transform: rotate( 54deg);
}

.service_tab_blocks .carousel-indicators li:nth-child(3):before {
    top: -27px;
    left: 125px;
    transform: rotate( 60deg);
}

.service_tab_blocks .carousel-indicators li:nth-child(4):before {
    top: 19px;
    left: 138px;
    transform: rotate( 90deg);
}

.service_tab_blocks .carousel-indicators li:nth-child(5):before {
    top: 64px;
    left: 131px;
    transform: rotate( 124deg);
}

.service_tab_blocks .carousel-indicators li:nth-child(6):before {
    top: 88px;
    left: 114px;
    transform: rotate( 137deg);
}

.service_tab_blocks .carousel-indicators li:nth-child(7):before {
    top: 104px;
    left: 88px;
    transform: rotate( 151deg);
}

.service_tab_blocks .carousel-indicators li:nth-child(8):before {
    display: none;
}

.service_tab_blocks .carousel-indicators li img {
    width: 47px;
}

.ser_image_icon {
    position: absolute;
    bottom: 103px;
    width: 314px;
    left: 0;
    right: 0;
    margin: auto;
}

.mobile_ser_imag_icon {
    display: none;
}

._sertiile span {
    display: initial;
}

._g_c_t {
    position: relative;
    max-width: 742px;
    margin: auto;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 1;
}

._g_c_t::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: -1;
    left: 0;
    right: 0;
    margin: auto;
}

._g_c_t span {
    display: block;
    font-size: 35px;
    margin-bottom: 9px;
    color: #ffb1e2;
    padding-top: 251px;
    font-weight: 300;
    position: relative;
}

._g_c_t span::before,
._g_c_t span::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 2px;
    border-bottom: 1px solid #ffb1e2;
    left: 0px;
    bottom: 9px;
}

._g_c_t span::after {
    left: initial;
    right: 0px;
}

._g_c_t h3 {
    display: block;
    text-transform: uppercase;
    font-weight: 300;
    color: #cacaca;
    font-size: 64px;
}

._g_c_t h4 {
    display: block;
    text-transform: uppercase;
    color: #ececec;
    font-weight: 500;
    margin-top: 3px;
}

.inner_breadcumb {
    padding: 178px 0px 50px;
    text-align: center;
}

.inner_breadcumb h1 {
    text-transform: uppercase;
    color: #00476b;
    font-size: 31px;
    font-weight: 600;
}

.braed_cumb {
    display: inline-block;
    list-style: none;
    background: #ec1662;
    padding: 5px 0;
    margin-top: 12px;
    border-radius: 30px;
}

.braed_cumb li {
    display: inline-block;
    position: relative;
    text-transform: capitalize;
    color: #fff;
    padding: 0 17px;
}

.braed_cumb li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    right: -6px;
    top: 6px;
    background: #ccc;
}

.braed_cumb li:last-child:before {
    content: none;
}

.braed_cumb li a {
    display: block;
    color: #fff;
}

.inner_body {
    position: relative;
    min-height: 60vh;
    padding: 50px 0 75px;
}

.inner_body .auto-container {
    max-width: 1180px;
}

.service_text p {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 26px;
    color: #333;
}

.inner_service_img {
    position: relative;
    z-index: 1;
    margin: 0 0 35px;
}

.inner_service_img::before,
.inner_service_img::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: #081a4a;
    left: -17px;
    top: -17px;
    z-index: -1;
    opacity: 1;
}

.inner_service_img::after {
    left: initial;
    top: initial;
    right: -17px;
    bottom: -17px;
    background: #ec1662;
}

.service_text h3 {
    font-size: 20px;
    color: #ec1662;
    font-weight: 600;
    margin: 26px 0 14px;
}

.service_text h4 {
    font-size: 18px;
    color: #0c4f80;
    font-weight: 600;
    margin: 18px 0 7px;
    background: #d3e4ef;
    display: inline-block;
    padding: 5px 10px;
    border-left: 3px solid;
}

.ol_styles {
    list-style: none;
    padding: 0px;
    padding-left: 14px;
}

.ol_styles li {
    position: relative;
    padding-left: 25px;
    color: #333;
    line-height: 26px;
    font-size: 15px;
}

.ol_styles li::before {
    position: absolute;
    left: 8px;
    top: 8px;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    border: 2px solid #3f3f3f;
    content: "";
}

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

.contact_info_b span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #1268ec;
    color: #fff;
    font-size: 30px;
    line-height: 48px;
    border-radius: 5px;
    margin-bottom: 13px;
}

.contact_info_b p {
    position: relative;
}

._c_row .col-md-4 {
    border-right: 2px dashed;
}

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

._c_form_sub {
    position: relative;
    border: 5px solid #ccc;
    padding: 38px 32px;
    margin-top: 47px;
    text-align: center;
}

._c_form_sub h3 {
    text-transform: uppercase;
    margin-bottom: 25px;
}

._c_form_sub .form-control {
    background-color: #f5f5f5;
    height: 50px;
}

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

._c_form_sub .btn {
    margin-top: 40px;
}

._c_map iframe {
    margin-top: 47px;
    box-shadow: 0px 0px 10px #333;
    width: 100%;
    height: 296px;
}

.serviceBox {
    text-align: center;
}

.serviceBox .service-icon {
    color: #c31c58;
    background: #053371;
    font-size: 45px;
    line-height: 91px;
    width: 93px;
    height: 93px;
    margin: 0 auto 40px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.serviceBox .service-icon:before,
.serviceBox .service-icon:after {
    content: "";
    background: #faf6f7;
    width: 88%;
    height: 88%;
    border-radius: 15px;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.serviceBox .service-icon:after {
    background: #05316d;
    width: 20px;
    height: 20px;
    border-radius: 0;
    box-shadow: none;
    top: auto;
    bottom: -30px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.serviceBox .title {
    color: #05316d;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.serviceBox .description {
    color: #555;
    font-size: 15px;
    line-height: 22px;
    margin: 0;
}

@media only screen and (max-width: 990px) {
    .serviceBox {
        margin: 0 0 30px;
    }
}
.testimonial_block_row .serviceBox{
    margin-bottom: 40px;
}
.testimonial_block_row .col-md-4 {
    border-right: 1px dashed #828282;
}
.testimonial_block_row .col-md-4:nth-child(3),
.testimonial_block_row .col-md-4:nth-child(6),
.testimonial_block_row .col-md-4:last-child {
    border-right: 0px;
}

.main-timeline {
    position: relative;
    max-width: 997px;
    margin: auto;
    padding-bottom: 35px;
}

.main-timeline::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    border-right: 2px dashed;
}

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

.main-timeline .timeline {
    width: 50%;
    padding: 35px 0 0 90px;
    margin: 0 0 4px 20px;
    float: right;
}

.main-timeline .timeline-content {
    color: #555;
    display: block;
    position: relative;
}

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

.main-timeline .timeline-icon {
    color: #FF4BA6;
    background-color: #c31c58;
    font-size: 50px;
    text-align: center;
    line-height: 74px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 2px solid #e7e7e7;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%) inset, 0 0 10px rgb(0 0 0 / 50%), 0 0 0 10px #e4e4e4;
    position: absolute;
    left: -105px;
    top: 8px;
    z-index: 2;
}

.main-timeline .timeline-icon img {
    width: 43px;
}

.main-timeline .title {
    color: #fff;
    background-color: #c31c58;
    font-size: 20px;
    text-transform: uppercase;
    padding: 10px 25px;
    margin: 0 0 5px;
    border-radius: 10px;
    position: relative;
}

.main-timeline .timeline:nth-child(even) .title {
    background-color: #143852;
}

.main-timeline .title:before,
.main-timeline .title:after {
    content: '';
    background-color: #e6c6d2;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    position: absolute;
    left: -9px;
    top: 50%;
}

.main-timeline .timeline:nth-child(even) .title:before,
.main-timeline .timeline:nth-child(even) .title:after {
    background-color: #9dcaea;
}

.main-timeline .title:after {
    background-color: transparent;
    height: 3px;
    width: 55px;
    border-top: 9px dotted #c31c58;
    box-shadow: none;
    border-radius: 0;
    left: -68px;
}

.main-timeline .timeline:nth-child(even) .title:after {
    background-color: transparent;
    height: 3px;
    width: 55px;
    border-top: 9px dotted #143852;
    box-shadow: none;
    border-radius: 0;
    left: -68px;
}

.main-timeline .description {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 0 10px;
}

.main-timeline .timeline:nth-child(even) {
    float: left;
    padding: 35px 90px 0 0;
    margin: 0 20px 5px 0;
    text-align: right;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: -105px;
    background: #143852;
}

.main-timeline .timeline:nth-child(even) .title:before {
    left: auto;
    right: -9px;
}

.main-timeline .timeline:nth-child(even) .title:after {
    left: auto;
    right: -68px;
}

@media screen and (max-width:767px) {
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 15px 0 0 10px;
        margin: 0 0 20px;
    }
    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(even) .timeline-icon {
        font-size: 30px;
        line-height: 48px;
        height: 50px;
        width: 50px;
        left: 0;
        top: -6px;
    }
    .main-timeline .title {
        padding-left: 70px;
    }
    .main-timeline .description {
        margin-left: 70px;
    }
    .main-timeline .title:before,
    .main-timeline .title:after {
        display: none;
    }
}

@media screen and (max-width:576px) {
    .main-timeline .title {
        font-size: 18px;
    }
}

.team_blocks {
    box-shadow: 0px 0px 10px #ccc;
    margin-bottom: 30px;
    padding: 10px 10px;
    background-color: #fff;
    position: relative;
}

.team_info {
    display: table-cell;
    width: 600px;
    height: 160px;
    vertical-align: middle;
}

.team_info h3 {
    text-transform: uppercase;
    font-size: 23px;
    color: #ec1662;
    font-weight: 600;
    margin-bottom: 4px;
}

.team_info h4 {
    font-size: 18px;
    color: #082c46;
    margin-bottom: 7px;
    font-weight: 500;
}

.team_info h5 {
    font-size: 16px;
}

.team_info p {
    margin: 10px 0px 0px;
}

.inner_about_text p {
    font-size: 15px;
    margin-bottom: 10px;
}

.inner_abt_img {
    padding: 10px;
    border: 2px dashed #ccc;
}

.inner_abt_img img {
    box-shadow: 0px 0px 10px #333;
}

.app_doalouge.modal-dialog {
    max-width: 402px;
    margin-top: 9%;
}

.app_headre {
    display: block;
    text-align: center;
    padding: 0px;
    border: 0px;
}

.app_headre .close {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 9;
    background: #EC1662;
    opacity: 1;
    color: #ffff;
    padding: 11px 10px;
}

.ap_m_body.modal-body {
    padding: 30px 29px;
    text-align: center;
}

.ap_m_body .form-control {
    background-color: #f5f5f5;
    height: 50px;
    color: #333;
}

.ap_m_body textarea.form-control {
    height: 80px;
}

.ap_m_body .form-control::placeholder {
    color: #333;
}