@import url('fontawesome-all.css');
@import url('flaticon.css');
@import url('owl.css');
@import url('jquery.fancybox.min.css');

/*** 

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

 ***/

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


/*** 

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

 ***/

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

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

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

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

textarea {
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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


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: 18px;
    line-height: 27px;
    color: #008bd2;
    border: 2px solid #1a2854;
    padding: 3px 15px;
    font-weight: 600;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
}

.btn-style-one:hover {
    color: #ffffff;
    background: linear-gradient(to right, #008bd2, #1a2854);
}

@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-links {
    position: absolute;
    z-index: 9;
    right: 152px;
    top: 10px;
    text-align: center;
    margin: auto;
}

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

.social-icon-one li a {
    position: relative;
    display: inline-block;
    font-size: 19px;
    background: #007bff;
    color: #fff;
    text-align: center;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 0;
    width: 38px;
    height: 38px;
    line-height: 37px;
    border-radius: 50%;
}

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

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

.social-icon-one li:nth-child(4) a {
    background: #208a4c;
}

.social-icon-one li:nth-child(5) a {
    background: #f51818;
}

.social-icon-one li a:hover {
    background: #1aa4c0;
}

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


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

.social-icon-two {
    position: relative;
    text-align: center;
    margin: 8px 0 33px;
    display: inline-block;
    padding: 0px 17px 0;
}

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

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 33px;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    margin: 0 2px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background: rgb(255 255 255 / 32%);
}

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

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

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

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

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

.f_map_widjet a {
    display: inline-block;
    position: relative;
    margin-top: 4px;
}

.f_map_widjet a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(26 39 74 / 62%);
}

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


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

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

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

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

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


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

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

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

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

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

.theme_color {
    color: #fa7720;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.tabs-box {
    position: relative;
}

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

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

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../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;
    right: 20px;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: linear-gradient(to left, #f7941d, #d77500);
    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: linear-gradient(to right, #f7941d, #d77500);
}


/*** 

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

***/

.main-header {
    position: absolute;
    z-index: 99999;
    vertical-align: middle;
    width: 100%;
    /* background: rgb(4 36 85 / 70%); */
    /* height: 92px; */
}

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

.custom_container::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 39px;
    left: 100%;
    top: 0;
}

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

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


/* Top Left*/

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

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

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

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

.main-header .header-top .info-list li a {
    display: inline-block;
    /* background: #0d97af; */
    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;
    font-size: 18px;
    font-weight: 400;
}

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

.main-header .header-top .info-list li a label {
    margin: 0 0 8px;
    display: block;
    font-size: 23px;
    font-weight: 600;
    cursor: pointer;
}

.main-header .header-top .info-list li span {
    position: relative;
    display: inline-block;
    margin-right: 2px;
    text-align: center;
}

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

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

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

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

.main-header .header-upper .logo2 {
    left: initial;
    right: 0px;
    top: 14px;
}

.main-header .header-upper .logo-outer:before {
    position: absolute;
    top: 0;
}

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

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

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

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

.appointment {
    top: 19px;
    position: absolute;
    right: 0;
    background: #f7941d;
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 25px;
}

.appointment:hover {
    color: #fff;
}

.top-wraapper {
    position: relative;
    height: 100vh;
    background: #010E3D;
}

.clinicbg {
    position: fixed;
    width: 290px;
    height: 290px;
    left: 0;
    right: 0px;
    bottom: 0px;
    top: 0px;
    margin: auto;
    opacity: .2;
}

.clinicbg img {
    width: 100%;
}


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

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

.main-menu {
    position: relative;
}

.main-menu .navbar-collapse {
    padding-right: 135px;
    justify-content: right;
}

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

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

.main-menu .navigation>li::before {
    content: "";
    position: absolute;
    right: 0;
    width: 2px;
    height: 18px;
    border-right: 2px dotted #232323;
    top: 11px;
}

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

.main-menu .navigation>li:last-child {
    padding-right: 0px;
}

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

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

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

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

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

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

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

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

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

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

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 6px;
    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: 203px;
    z-index: 100;
    display: none;
    padding: 0px 0px;
    background-color: #f7941d;
    border-top: 3px solid #1a2854;
    -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>li>ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 165px;
    z-index: 100;
    display: none;
    padding: 0px 0px;
    background-color: #021442;
    border-top: 3px solid #f7941d;
    -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,
.main-menu .navigation>li>ul>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.main-menu .navigation>li>ul>li>ul>li:last-child,
.main-menu .navigation>li>ul>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: #021442;
}

.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,
.main-menu .navigation>li>ul>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 5px 19px;
    line-height: 20px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    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;
}

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

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

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 4px;
    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>ul>li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    display: block;
    -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;
}

.plu_ span {
    position: absolute;
    left: 84px;
    top: -3px;
}

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

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

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


/*search box btn*/

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgb(247 148 29);
    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: 33px;
}

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

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

.sec-title h2:before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 90px;
    height: 4px;
    content: "";
    border-radius: 2px;
    right: 0;
    margin: auto;
}

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

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

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


/*** 

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

***/

.banner-section {
    position: relative;
}

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

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

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

.banner-carousel {
    position: relative;
}

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

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

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

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

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

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

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

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

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

.banner_carousel {
    position: relative;
    padding: 76px 60px;
}

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

.slides {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    border-radius: 28px;
}

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

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

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

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

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

.banner_carousel .owl-dots {
    position: absolute;
    top: 48%;
    width: 20px;
    right: 23px;
    margin: auto;
    z-index: 2;
    padding-top: 0;
    text-align: center;
}

.banner_carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 2px;
    display: inline-block;
    background: #485e97;
}

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


/*** 

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

***/

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

.offers-section::before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 78%;
    background: #010E3D;
}

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

.hospital_pic {
    position: relative;
    padding: 20px;
}

.hospital_pic::before,
.hospital_pic::after {
    content: "";
    position: absolute;
    width: 33%;
    height: 26%;
    background: #008bd2;
    z-index: -1;
    left: 0;
    top: 0;
}

.hospital_pic::after {
    top: initial;
    bottom: 0px;
    left: inherit;
    right: 0px;
    background: #273662;
}

.welcmtile {
    position: absolute;
    top: -41px;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    color: rgb(133 133 133 / 22%);
    font-size: 85px;
    z-index: 1;
}

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

.about-content span {
    font-size: 28px;
    margin-bottom: 10px;
    display: inline-block;
    background: #192939;
    color: #ffffff;
    padding: 9px 9px;
    border-radius: 3px;
}

.about-content h2 {
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 88px;
    line-height: 64px;
}

.about-content h3 {
    text-transform: capitalize;
    color: #f79732;
    margin-bottom: 22px;
    font-size: 41px;
    display: inline-block;
}

.about-content h3 span {
    font-size: 22px;
    background: #fff;
    box-shadow: 0px 0px 7px #b1afaf;
    border-radius: 32px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 27px;
    color: #ccc;
}

.about-content p:nth-child(5) {
    border: 2px dotted #a3a3a3;
    color: #ff8c00;
    font-size: 22px;
    padding: 7px 0;
    border-radius: 9px;
}

.about-content p a {
    display: inline-block;
    margin-left: 12px;
}

.ap_first {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    background: #ffb423;
    color: #000000;
    line-height: 56px;
    border-radius: 30px;
}

.abt_cnt_text {
    text-align: center;
}

.abt_cnt_text p {
    margin-top: 15px;
    font-size: 16px;
}

.abt_cnt_text p:nth-child(3) {
    background: #f7941d;
    color: #fff;
    font-size: 25px;
    line-height: 42px;
    padding: 22px 23px;
    border-radius: 13px;
}

.nytechtop {
    text-align: center;
}

.nytechtop h2 {
    background: #f7941d;
    color: #fff;
    display: inline-block;
    padding: 11px 23px;
    border-radius: 13px;
    margin-bottom: 25px;
}

.nyn_tech_img img {
    padding: 10px;
    background: #fff;
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 20px;
}

.abrrow {
    align-items: center;
}

.im_vsn_clrt_section {
    position: relative;
}

.home_pics_slider {
    border: 10px solid #fff;
    box-shadow: 6px 0px 10px #ccc;
}

.home_pics_slider .owl-nav {
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
}

.home_pics_slider .owl-nav i {
    display: inline-block;
    background: #f0901c;
    color: #fff;
    padding: 8px 9px;
    font-size: 24px;
}

.spl_pics_list {
    border: 10px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
}

.im_vsn_clrt_section .row {
    position: relative;
    align-items: center;
    padding-bottom: 18px;
    margin: 0 0 18px;
    border-bottom: 2px dotted #333;
}

.im_vsn_clrt_section:last-child .row {
    border-bottom: 0px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.im_vsn_clrt_section .row .col-md-2 {
    text-align: center;
}

.im_vsn_clrt_section .row .col-md-2 span {
    width: 57px;
    height: 57px;
    background: #f7941d;
    color: #fff;
    display: inline-block;
    font-size: 41px;
    line-height: 57px;
    border-radius: 50%;
}

.imp_vs_clrt_text h2 {
    font-size: 24px;
    text-transform: capitalize;
    margin: 0 0 4px;
}

.imp_vs_clrt_text p {
    font-size: 16px;
    line-height: 24px;
}

.mvvrow {
    position: relative;
}

.mvvrow::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: -1;
    border-radius: 50%;
    left: 143px;
    top: 97px;
}

.mvvrow .col-md-4 {
    position: relative;
}

.mvv_blocks {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 10px;
    color: #ccc;
}

.mvvrow .col-md-4:nth-child(1),
.mvvrow .col-md-4:nth-child(2) {
    border-right: 2px dotted #a3a3a3;
}

.mvv_blocks h3 {
    text-transform: uppercase;
    display: inline-block;
    margin: 0 0 5px;
    font-weight: 600;
    color: #fafafa;
}

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

.hm_fac_section {
    position: relative;
    padding: 40px 0px 68px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.eyeware_fr_mlfml {
    text-align: center;
}

.eyeware_fr_mlfml img {
    width: auto;
    border: 2px solid #fff;
    margin: 54px 0 0;
}

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

.featuresec h2 {
    text-align: center;
    color: #ff8300;
    text-transform: uppercase;
    font-size: 49px;
    margin: 23px 0 13px;
    font-weight: 600;
}

.ftr_pic {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    border: 9px solid #f5f5f5;
    box-shadow: 0px 5px 4px #8f8f8f;
    margin: 0 0 9px;
}

.ftr_pic img {
    /* filter: grayscale(1); */
    transition: all cubic-bezier(0.65, -0.17, 1, 1.2) .7s;
}

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

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

.frt_info {
    position: relative;
    bottom: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.frt_info h3 {
    font-size: 17px;
    padding: 0 10px;
}

.feature_slider .owl-nav {
    position: relative;
    text-align: center;
}

.feature_slider .owl-nav .owl-prev,
.feature_slider .owl-nav .owl-next {
    display: inline-block;
    color: #ff8b00;
    font-size: 29px;
    margin: 0 5px;
}

.tp_abt_row .col-md-3 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0;
    text-align: center;
}

.tp_abt_row .col-md-3::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 50%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    border-radius: 0px 0px 109px 109px;
}

.over_th_yrs {
    position: relative;
}

.over_th_yrs h2 {
    padding: 40px;
    position: relative;
    text-align: center;
    font-size: 27px;
    font-weight: 700;
}

.over_th_yrs h2::before,
.over_th_yrs h2::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-top: 8px solid #f7941d;
    top: 0;
}

.over_th_yrs h2::before {
    left: 0;
    border-left: 8px solid #f7941d;
}

.over_th_yrs h2::after {
    right: 0;
    border-right: 8px solid #f7941d;
}

.ger_tech {
    text-align: center;
}

.ger_tech h3 {
    display: inline-block;
    background: #f7941d;
    color: #fff;
    padding: 7px 28px;
    font-size: 37px;
    border-radius: 7px;
    font-weight: 600;
}

.intovideo {
    text-align: center;
}

.intovideo video {
    width: 50%;
    position: relative;
    top: 24px;
    border: 14px solid #f7941d;
}


/* apponitment */

.appointmentform_section {
    position: relative;
    padding: 59px 0px 94px;
    margin-top: 0;
}

.appointmentform_section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-image: url(../images/appointment.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: skew(0deg, 7deg);
}

.appointmentform_section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(to right, rgb(0 56 82 / 92%), rgb(0 96 153));
    transform: skew(0deg, 7deg);
}

.apptn_bg {
    position: absolute;
    left: 0px;
    width: 80%;
    bottom: 0;
}

.apptn_pic_doc {
    position: absolute;
    right: 1%;
    bottom: 3%;
    z-index: 1;
    opacity: .5;
}

.appointment-form {
    text-align: center;
    position: relative;
    z-index: 1;
}

.appointment-form h2 {
    text-transform: uppercase;
    color: #1aa4c0;
    font-size: 26px;
    margin: 0 0 12px;
}

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

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

.appointment-form .form-control {
    background-color: #ffffff;
    height: 46px;
    border-radius: 14px;
    color: #000;
}

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

.appointment-form textarea.form-control {}

.appointment-form .btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 4px 30px;
    font-weight: 600;
    background: #1aa4c0;
    overflow: hidden;
    min-width: 105px;
    border-radius: 30px;
    border: 0px;
    margin-top: 7px;
}

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

.doc_apmnt_pic {
    text-align: center;
    position: absolute;
    z-index: 1;
    top: -80px;
}

.doc_apmnt_pic img {
    border: 9px solid #eeebff;
    box-shadow: 0px 0px 10px #333;
    border-radius: 23px;
}


/* services */

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

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

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

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

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

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

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

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

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

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

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

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

.services_info span img {
    width: 52px;
}

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

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

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

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

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

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


/*** 

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

.faqrow .col-md-4 {
    padding: 20px;
    background: #ffffff;
    box-shadow: inset 0px 0px 24px #b7d7e7;
}

.faqrow .col-md-4:nth-child(1),
.faqrow .col-md-4:nth-child(3),
.faqrow .col-md-4:nth-child(4),
.faqrow .col-md-4:nth-child(6) {
    top: 50px;
}

.faqrow .col-md-4:nth-child(1)::before,
.faqrow .col-md-4:nth-child(2)::before,
.faqrow .col-md-4:nth-child(3)::before {
    content: "";
    position: absolute;
    width: 59%;
    height: 7px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0px;
    background: linear-gradient(to left, transparent, #39b1f0, transparent);
    border-radius: 10px;
}

.faq_list {
    text-align: center;
}

.faq_icon {
    display: inline-block;
    width: 57px;
    height: 57px;
    background: #d0e5f1;
    color: #1a2854;
    font-size: 32px;
    line-height: 55px;
    border-radius: 50%;
}

.faq_list h3 {
    font-size: 20px;
    margin: 12px 0 5px;
    font-weight: 600;
    color: #132048;
}

.faq_icon p {
    line-height: 24px;
}

.faqrow .col-md-4:nth-child(2),
.faqrow .col-md-4:nth-child(5) {
    background: #1171a9;
    box-shadow: none;
    color: #fff;
}

.faqrow .col-md-4:nth-child(2) .faq_list h3,
.faqrow .col-md-4:nth-child(5) .faq_list h3 {
    color: #fff;
}

.faqrow .col-md-4:hover {
    background: #003852;
    color: #fff;
}

.faqrow .col-md-4:hover .faq_list h3 {
    color: #fff;
}

.faqrow .col-md-4:hover .faq_icon {
    background-color: #008ad1;
    color: #fff;
}


/*** 

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

***/

.service_section {
    position: relative;
    padding: 68px 0 120px;
}

.service_section::before,
.program-section::after {
    content: "";
    position: absolute;
}

.program-section::after {}

.services-row {
    position: relative;
}

.whatwedo {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: #f7941d;
    text-align: center;
}

.ser_head p {
    font-size: 17px;
    margin: 0 0 0px;
    display: inline-block;
}

.ser_head.sec-title {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    z-index: 99;
    text-align: center;
    margin-bottom: 30px;
}

.ser_row {
    justify-content: center;
}

.ser_row .col-md-3 {
    padding: 0 8px;
}

.ser_row .col-md-3:nth-child(1),
.ser_row .col-md-3:nth-child(4) {
    top: 124px;
}

.ser_list_blocks {
    position: relative;
}

.ser_list_blocks::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}


.services_list {
    position: relative;
    margin: 0 0 16px;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
}


.services_list::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0;
    margin: auto;
    width: 100%;
    height: 50%;
    bottom: 0;
    background: linear-gradient(to top, #021442, transparent);
    z-index: 1;
}

.services_list .ser_pic img {
    transition: all cubic-bezier(0.47, -0.45, 0.01, 1.32) .7s;
    /* filter: grayscale(1); */
}

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

.service_section .auto-container {
    position: relative;
}

.ser_info {
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 9px;
}

.services_list h3 {
    text-transform: capitalize;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
}

.services_list p {
    font-size: 15px;
    line-height: 22px;
    position: relative;
}

.services_list a {
    color: #ff9b22;
    display: inline-block;
    transition: all ease-in-out .7s;
}

.services_list:hover a {
    color: #fff;
}

.service_carousel .owl-item img {
    width: auto;
}

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


.ser_btm {
    text-align: center;
}

.ser_btm h3 {
    text-transform: capitalize;
    display: inline-block;
    font-size: 40px;
    padding: 15px 264px;
}


.before_after_section {
    position: relative;
    padding: 111px 0 371px;
}

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

.before_after_section::before {
    background-image: url(../images/happyclients.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.before_after_section::after {
    background: linear-gradient(to top, rgb(255 139 0), rgb(2 20 66 / 66%), #021442);
}

.baftr_text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.baftr_text h3 {}

.baftr_text h2 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 59px;
    color: #ffa333;
}

.baftr_text p {
    font-size: 16px;
    border: 2px dotted #ffaf4e;
    padding: 17px;
    border-radius: 16px;
    margin: 12px 0 0;
}

.bfraftr_sec {
    position: relative;
    padding: 7px 7px 0px;
    max-width: 1000px;
    margin: -264px auto 0;
    box-shadow: 0px 5px 3px #9f9f9f;
    background: #f5f5f5;
}

.bfaftr_slider .owl-nav {
    position: absolute;
    width: 100px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -44px;
}

.bfaftr_slider .owl-nav .owl-prev,
.bfaftr_slider .owl-nav .owl-next {
    display: inline-block;
    color: #ff8b00;
    font-size: 29px;
    margin: 0 5px;
}

/* Images compare main container */
.images-compare-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Images compare front element */
.images-compare-before {
    will-change: clip;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Images compare back element */
.images-compare-after {
    pointer-events: none;
}

/* Responsive image settings */
.images-compare-before img,
.images-compare-after img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Separator (thin vertical blank line) */
.images-compare-separator {
    position: absolute;
    background: white;
    height: 100%;
    width: 1px;
    z-index: 4;
    left: 0;
    top: 0;
}

/* Drag handle (circle) */
.images-compare-handle {
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -19px;
    margin-top: -22px;
    border: 3px solid white;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    z-index: 3;
    background: rgb(255 139 0);
    cursor: pointer;
}

/* Drag handle arrows */
.images-compare-left-arrow,
.images-compare-right-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

.images-compare-left-arrow {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}

.images-compare-right-arrow {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}

/* Label */
.images-compare-label {
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    color: rgb(255 255 255);
    background: rgb(255 139 0);
    padding: 8px 14px;
    border-radius: 5px;
    pointer-events: none;
    display: none;
    font-size: 19px;
}

.images-compare-container .images-compare-label {
    display: inherit;
}

.images-compare-before .images-compare-label {
    left: 10px;
}

.images-compare-after .images-compare-label {
    left: auto;
    right: 10px;
}


.asahcmaab {
    background: #f91721;
    text-align: center;
    padding: 18px 0;
    position: relative;
    z-index: 1;
    border-radius: 107px;
    border: 8px solid #e0e0e0;
}

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

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

.asahcmaab p {
    color: #ffffff;
    font-size: 32px;
    font-weight: 200;
    margin: 0 0 10px;
    text-transform: capitalize;
}

.asahcmaab h2 a {
    text-decoration: none;
    outline: 0;
    color: #fff;
    margin-left: 8px;
    background: #192939;
    padding: 5px 19px;
    border-radius: 31px;
    display: inline-block;
    font-size: 20px;
}

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

.fg_list {
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
}


/*** 

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

***/

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

.foore_add_head {
    text-align: center;
}

.foore_add_head h3 {
    text-transform: uppercase;
    display: inline-block;
    color: #ff9c24;
    padding: 0 0 11px;
    font-size: 26px;
    font-weight: 600;
}

.add_bar_row {
    justify-content: center;
}

.add_bar_row .col-md-4 {
    border-right: 2px dotted #b5b5b5;
    padding: 11px 22px;
}

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

.address_list {
    position: relative;
    text-align: center;
    border: 2px dotted #7b7b7b;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 14px;
}


.address_list h4 {
    color: #fff;
    font-size: 23px;
    margin: 2px 0 4px;
}

._addre_bar {
    text-align: center;
    color: #cfcfcf;
    border-bottom: 2px dotted #7b7b7b;
    padding: 7px 0;
}

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

._addre_bar h4 {
    color: #63c6ff;
    text-transform: uppercase;
    margin: 0 0 10px;
}

._addre_bar i {
    color: #f79732;
    font-size: 20px;
    margin: 0 6px 0;
}

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

._addre_bar a {
    display: inline-block;
    color: #eee;
    border-top: 1px dotted;
    border-bottom: 1px dotted;
    font-size: 19px;
    padding: 6px 0;
    margin: 16px 0 0;
}

.ftrabout p {
    color: #eee;
    line-height: 25px;
}


/*Subscribe Form*/

.subscribe-form {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

.team-section {
    position: relative;
    padding: 67px 0;
    background-image: url(../images/facilities.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.team-section::before {
    content: "";
    position: absolute;
    /* background: linear-gradient(to right, #d1003a, rgb(255 116 23)); */
    width: 60%;
    height: 100%;
    top: 0px;
    left: 0px;
}

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

.facilities-row .col-md-4 {
    padding: 0 5px;
}

.facility-list {
    text-align: center;
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    position: relative;
    /* border: 1px dashed; */
    padding: 23px 0;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ab0231, #ff6f0f);
    border-radius: 16px;
}

.facility-list::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 23px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.facility-list span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.facility-list span::before {
    content: "";
    position: absolute;
    width: 83px;
    height: 2px;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: -2px;
    transition: all ease-in-out .6s;
}

.why_bootm {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 50px;
    padding-top: 22px;
    border-top: 1px dashed;
    margin-top: 10px;
    line-height: 43px;
}

.why_bootm span {
    color: #fd7d99;
    font-weight: 700;
}

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

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

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

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

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

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

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

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

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

.team-block .info-box .name a {
    color: #1e2c67;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

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

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

.team-block .info-box .social-links {
    position: relative;
    display: block;
    text-align: center;
    background-color: #25bdd8;
    padding: 10px 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

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

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

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

.appointmeent-section {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.faq_list h3 {
    font-size: 18px;
}

.faq_list p {
    line-height: 25px;
    font-size: 15px;
}

.faq_row .col-md-4 {
    padding: 25px;
}

.faq_row .col-md-4:nth-child(2),
.faq_row .col-md-4:nth-child(4),
.faq_row .col-md-4:nth-child(6),
.faq_row .col-md-4:nth-child(8) {
    background-color: #ffd4a0;
}

.faq_row .col-md-4:nth-child(1) h3,
.faq_row .col-md-4:nth-child(3) h3,
.faq_row .col-md-4:nth-child(5) h3,
.faq_row .col-md-4:nth-child(7) h3,
.faq_row .col-md-4:nth-child(9) h3 {
    background-color: #051756;
    color: #fff;
    padding: 7px 0;
    border-radius: 4px;
}

.btm_gallery {
    position: relative;
    padding: 0 0 21px;
}

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

.btm_pics {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 18px;
}

.btm_pics img {
    transition: all cubic-bezier(0.58, -0.2, 0.54, 1.21) .8s;
    filter: grayscale(1);
}

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

.feedback_section {
    position: relative;
    padding: 50px 0px;
}

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

.feedback_section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #ff9515;
    z-index: -1;
}


.blogs_section {
    padding: 90px 0px;
}

.blog_list {
    text-align: center;
}

.article_section .sec-title h2 {
    color: #fff;
}

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

.blog_pic img {
    transition: all ease-in-out .7s;
    border-radius: 14px;
}

.blog_list:hover .blog_pic img {
    filter: grayscale(0);
    transform: scale(1.2);
}

.blog_info {
    text-align: center;
    padding: 14px;
    background: #f2f2f2;
    width: 79%;
    margin: -53px auto 0;
    position: relative;
    box-shadow: 0px 4px 3px #b0b0b0;
    border-radius: 14px;
}

.blog_info h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
}

.blog_info p {
    line-height: 25px;
}

.blog_info a {
    display: inline-block;
    margin: 8px 0 0;
    background: #ff8b00;
    padding: 5px 12px;
    font-size: 16px;
    border-radius: 30px;
    color: #ffffff;
}


/* sleeping prblms */

.sleeping_prblms {
    padding: 0 0 0;
}

.slp_pb_img {
    position: relative;
}

.slp_prbml_info {
    position: relative;
}

.slp_prbml_info h2 {
    text-transform: uppercase;
    font-weight: 700;
    color: #1894db;
    font-size: 47px;
    margin: 0 0 7px;
}

.slp_prbml_info h3 {
    font-size: 30px;
    border-left: 5px solid;
    padding-left: 12px;
    margin: 0 0 13px 17px;
    color: #003852;
}

.slp_prbml_info h4 {
    font-size: 22px;
    display: inline-block;
    border: 2px dotted;
    color: #003852;
    text-transform: uppercase;
    padding: 5px 15px;
    font-weight: 600;
    margin: 12px 0 0;
    border-radius: 10px;
}

.slp_prbml_info h5 {
    font-size: 30px;
}


/*** 

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

***/

.testimonial-section {
    position: relative;
    padding: 57px 0;
    background-image: url(../images/happyclients.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.testimonial-head {
    margin-top: 14px;
    margin-bottom: 0;
}

.testimonial-section::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgb(0 113 136 / 0%), #ff8b00);
}

.smily_icon {
    position: absolute;
    top: 0px;
    left: 7%;
    opacity: .8;
}

.smily_icon2 {
    left: initial;
    right: 7%;
    top: initial;
    bottom: 0px;
}

.testimonial-head h3,
.testimonial-head h2 {
    color: #fff !important;
}

.testimonila_img {
    position: absolute;
    width: 45%;
    left: 0;
    top: 80px;
    overflow: hidden;
    border-radius: 0px 197px 197px 0px;
    height: 352px;
}

.testimonila_img img {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.testimnila_box.serviceBox {
    text-align: center;
    padding: 40px 41px;
    position: relative;
    z-index: 1;
}

.testimnila_box.serviceBox:before,
.testimnila_box.serviceBox:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.testimnila_box.serviceBox:after {
    clip-path: polygon(95% 15%, 100% 15%, 100% 100%, 95% 100%);
}

.testimnila_box.serviceBox .service-icon {
    color: #ffff;
    font-size: 30px;
    margin: 0 0 15px;
    position: absolute;
    left: 17px;
    top: 15px;
    border-radius: 11px;
}

.service_icon_btm {
    position: absolute;
    bottom: 12px;
    right: 8px;
    font-size: 30px;
    color: #ffff;
}

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

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

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

.sec-title h3 {
    color: #f7941d;
    font-size: 25px;
}

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

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

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

.gg_review {
    position: relative;
    top: 0;
    text-align: center;
}

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

.ratings {
    position: relative;
    margin: 0;
}

.facility_sec_block .row {
    justify-content: center;
}

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

.fac_block {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 16px;
}

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

.fclty_info {
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0px;
    z-index: 1;
}

.fac_block h3 {
    text-transform: capitalize;
    font-size: 20px;
    position: relative;
    text-align: center;
    color: #fff;
}

.fclty_info p {
    line-height: 26px;
}

.facility_section {
    position: relative;
    padding: 101px 0;
}

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

.whychoosetimeline.main-timeline {
    position: relative;
    padding: 0px 0 20px;
}

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

.whychoosetimeline.main-timeline:before {
    content: '';
    position: absolute;
    top: 0;
}

.whychoosetimeline.main-timeline .timeline {
    width: 49%;
    margin: 0 0 30px;
    float: right;
    position: relative;
}

.whychoosetimeline.main-timeline .timeline-content {
    background: #e5e5e5;
    text-align: center;
    min-height: 155px;
    padding: 20px 30px 20px 167px;
    border-radius: 100px;
    display: block;
    position: relative;
    z-index: 1;
}

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

.whychoosetimeline.main-timeline .timeline-content:before {
    content: '';
    background: #fff;
    border-radius: 100px 0 0 100px;
    position: absolute;
    left: 130px;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    box-shadow: 0px 0px 10px #b4b4b4;
}

.whychoosetimeline.main-timeline .timeline-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%);
    position: absolute;
    left: 13px;
    top: 50%;
    border: 4px solid #fff;
}

.whychoosetimeline.main-timeline .timeline-icon img {
    border-radius: 50%;
}

.whychoosetimeline.main-timeline .timeline-icon:before {
    content: '';
    background-color: #fff;
    border-radius: inherit;
    box-shadow: inherit;
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    z-index: -1;
}

.whychoosetimeline.main-timeline .timeline-icon i {
    line-height: inherit;
}

.whychoosetimeline.main-timeline .title {
    color: #f7941d;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0 0 5px;
    font-weight: 600;
}

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

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

.whychoosetimeline.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 20px 167px 20px 30px;
}

.whychoosetimeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
    border-radius: 0 100px 100px 0;
    left: 0;
    right: 130px;
}

.whychoosetimeline.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: 13px;
}

@media screen and (max-width:767px) {
    .whychoosetimeline.main-timeline:before {
        display: none;
    }

    .whychoosetimeline.main-timeline .timeline {
        width: 100%;
    }
}

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

    .whychoosetimeline.main-timeline .timeline-content,
    .whychoosetimeline.main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 145px 20px 20px;
        border-radius: 50px;
    }

    .whychoosetimeline.main-timeline .timeline-content:before,
    .whychoosetimeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
        top: 125px;
        right: 0;
        left: 0;
        border-radius: inherit;
    }

    .whychoosetimeline.main-timeline .timeline-icon,
    .whychoosetimeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateY(0) translateX(-50%);
        left: 50%;
        top: 10px;
        right: auto;
    }
}

.fac_desc {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 17px;
    border-radius: 13px;
    padding: 0 184px;
    margin: 11px 0 44px;
}

.fac_img {
    overflow: hidden;
}

.fac_img img {
    filter: grayscale(1);
    transition: all ease-in-out .7s;
}

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

/*** 

====================================================================
		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_form p {
    color: #ccc;
    font-size: 19px;
    margin-bottom: 16px;
}

.news_form input {
    background-color: transparent;
    color: #fff;
    border: 1px solid #ccc;
    height: 63px;
}

.news_form .btn {
    border: none;
    background: linear-gradient(to right, #ab0231, #ff6f0f);
}


/*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%;
}


/*** 

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

***/

.main-footer {
    position: relative;
    background-image: url(../images/footer_bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-footer:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(0 19 86 / 88%);
}

.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: 77px 0px 19px;
}

.main-footer .footer-upper .footer-column {
    position: relative;
    margin-bottom: 1px;
    margin-top: 22px;
    text-align: center;
}

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

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

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

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

._ftr_img {
    text-align: center;
}

._ftr_img img {
    width: 400px;
}



/*Logo Widget*/

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

.logo-widget .logo img {
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: 30px;
    width: 347px;
}

.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;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.main-footer .list li {
    position: relative;
    display: block;
}

.main-footer .list li:before {
    position: absolute;
    content: "";
}

.main-footer .list li::after {
    content: "";
    position: absolute;
}

.main-footer .list li a {
    position: relative;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #ffffff;
    display: block;
    background: rgb(255 255 255 / 22%);
    padding: 3px 10px;
    border-radius: 30px;
    margin: 4px 4px;
}

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


/*COntact Widget*/

.main-footer .contact-widget {
    position: relative;
}

.main-footer .contact-info {
    position: relative;
}

.main-footer .contact-info li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
    padding-left: 44px;
    margin-bottom: 20px;
}

.main-footer .contact-info li:last-child {
    margin-bottom: 0;
}

.main-footer .contact-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    background: #e81f31;
    text-align: center;
    color: #ffffff;
}

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

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

.main-footer .footer-bottom {
    position: relative;
    text-align: center;
}

.main-footer .footer-bottom:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .03;
    content: "";
}

.main-footer .footer-bottom .social-icon-two {
    position: relative;
    float: right;
}

.main-footer .footer-bottom .copyright {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    padding: 0px 0px 12px;
    color: #ccc;
}

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

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


/*** 

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container {
    position: relative;
    padding: 120px 0 70px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side {
    margin-bottom: 50px;
}

.sidebar-widget {
    position: relative;
    padding: 45px 50px;
    background-color: #f2f5f6;
    margin-bottom: 30px;
    border-radius: 7px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}


/* Sidebar Title */

.sidebar-title {
    position: relative;
    margin-bottom: 25px;
}

.sidebar-title h5 {
    position: relative;
    font-size: 22px;
    color: #1e2c67;
    font-weight: 700;
    line-height: 30px;
}


/*Search Box Widget*/

.sidebar .search-box {
    position: relative;
    padding: 50px;
    border-radius: 7px;
    background-color: #25bdd8;
}

.sidebar .search-box .form-group {
    position: relative;
    margin: 0px;
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
    position: relative;
    line-height: 30px;
    padding: 25px 30px;
    border: 1px solid transparent;
    background: #ffffff;
    display: block;
    font-size: 16px;
    width: 100%;
    height: 80px;
    color: #696478;
    border-radius: 10px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group input[type="submit"],
.sidebar .search-box .form-group button {
    position: absolute;
    right: 30px;
    top: 25px;
    line-height: 30px;
    display: block;
    font-size: 16px;
    background-color: transparent;
    color: #1e2c67;
    font-weight: normal;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group button:hover {
    color: #ff4880;
}

.sidebar .search-box .form-group input[type="text"]:focus,
.sidebar .search-box .form-group input[type="search"]:focus {
    border-color: #25bdd8;
}

.sidebar .search-box .sidebar-title h5 {
    color: #ffffff;
}


/* Categories */

.categories {
    position: relative;
    padding: 45px 50px 50px;
}

.category-list li {
    position: relative;
    margin-bottom: 20px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li a {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: #696478;
    display: block;
    padding-left: 20px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.category-list li a:before {
    position: absolute;
    left: 0;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 5px;
    background-color: #ff4986;
    content: "";
}

.category-list li.active a,
.category-list li a:hover {
    color: #ff4986;
}


/* Post Widget */

.posts-widget {
    position: relative;
}

.posts-widget .post {
    position: relative;
    margin-bottom: 35px;
}

.posts-widget .post:last-child {
    margin-bottom: 0;
}

.posts-widget .post .post-inner {
    position: relative;
    padding-left: 80px;
}

.posts-widget .post .image {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.posts-widget .post .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.posts-widget .post .post-inner:hover .image img {
    opacity: .70;
}

.posts-widget .post .date {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #25bdd8;
    font-weight: 600;
    margin-bottom: 5px;
}

.posts-widget .post h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.5em;
    color: #393d72;
    font-weight: 700;
}

.posts-widget .post h5 a {
    color: #393d72;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.posts-widget .post h5 a:hover {
    color: #ff4986;
}


/*Popular Tags*/

.sidebar .popular-tags {
    position: relative;
}

.sidebar .tags-list li {
    position: relative;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebar .tags-list a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #25bdd8;
    border-radius: 5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar .tags-list a:hover {
    background-color: #1e2c67;
    color: #ffffff;
}


/*** 

====================================================================
	Comments Area
====================================================================

 ***/

.sidebar-page-container .group-title {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-page-container .group-title h3 {
    position: relative;
    font-size: 40px;
    color: #1e2c67;
    font-weight: 700;
}

.sidebar-page-container .comments-area .comment-box {
    position: relative;
    padding: 0 0 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #e8e6ec;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar-page-container .comments-area .comment {
    position: relative;
    min-height: 70px;
    padding: 0px 0px 0px 150px;
    font-size: 14px;
}

.sidebar-page-container .comments-area .reply-comment {
    margin-left: 120px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb {
    position: absolute;
    left: 0px;
    top: 8px;
    width: 110px;
    height: 115px;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar-page-container .comments-area .comment-box .author-thumb img {
    width: 100%;
    display: block;
}

.sidebar-page-container .comments-area .comment-info {
    margin-bottom: 30px;
}

.sidebar-page-container .comments-area .comment-box strong {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #393d72;
    line-height: 30px;
    text-transform: capitalize;
    margin-right: 10px;
}

.sidebar-page-container .comments-area .comment-info .comment-time {
    display: inline-block;
    font-size: 14px;
    color: #25bdd8;
    font-weight: 400;
    line-height: 30px;
}

.sidebar-page-container .comments-area .comment-box .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #696478;
}

.sidebar-page-container .comments-area .comment-box .reply-outer {
    position: absolute;
    right: 0;
    top: 0;
}

.sidebar-page-container .comments-area .comment-box .theme-btn {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    line-height: 20px;
    font-weight: 700;
    border-radius: 5px;
    background-color: #1e2c67;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar-page-container .comments-area .comment-box .theme-btn:hover {
    background-color: #25bdd8;
}


/*** 

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

.modal-dialog.app_dialouge {
    max-width: 394px;
    margin-top: 7%;
    text-align: center;
}

.app_content .modal-header {
    display: block;
    text-align: center;
    border: none;
    padding-bottom: 0;
}

.app_content .modal-header h4 {
    text-transform: uppercase;
    color: #102e52;
    font-weight: 700;
}

.app_content .modal-header .close {
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(to left, #008bd2, #192347);
    opacity: 1;
    color: #fff;
    font-size: 37px;
    padding: 1px 6px;
    line-height: 39px;
}


.bread_cumb {
    text-align: center;
    position: relative;
    padding: 198px 0px 100px;
    background-image: url(../images/breadcumb.jpg);
}

.bread_cumb::before {
    content: "";
    position: absolute;
    background: rgb(37 38 41 / 87%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


.bread_cumb h1 {
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 600;
    font-size: 41px;
    margin-bottom: 14px
}

.bread_cumb ul {
    display: inline-block;
    list-style: none;
    background: #1aa4c0;
    padding: 4px 0px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.bread_cumb ul li {
    display: inline-block;
    position: relative;
    padding: 0 13px;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
}

.bread_cumb ul li::before {
    content: "\f105";
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    right: -8px;
    top: 0;
    color: #ffffff;
    font-size: 19px;
}

.bread_cumb ul li:last-child:before {
    display: none
}

.bread_cumb ul li a {
    display: block;
    color: inherit;
}


._cnt_section {
    padding: 88px 0px 100px;
    position: relative;
    min-height: 65vh;
}

.services_text h2 {
    font-size: 24px;
    margin: 19px 0 8px;
    font-weight: 600;
    color: #30427e;
}

.services_text h3 {
    font-size: 19px;
    color: #f7941d;
    margin: 11px 0 6px;
    font-weight: 600;
}

.services_text h4 {
    font-size: 17px;
    color: #22bc57;
    margin: 11px 0 3px;
    font-weight: 600;
}

.services_text p {
    text-align: justify;
    line-height: 26px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.ol_styles {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

.ol_styles li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 4px;
    font-weight: 400;
}

.ol_styles li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    position: absolute;
    left: 0;
    top: 0;
    color: #f7941d;
    font-size: 15px;
    font-weight: 600;
}

.ser_inner_image {
    position: relative;
    padding: 20px;
    z-index: 1;
    margin-bottom: 30px;
}

.ser_inner_image img {
    width: 100%;
    box-shadow: 0px 0px 10px #989898;
    border: 8px solid #fff;
}

.ser_inner_image::before,
.ser_inner_image::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 30%;
    background: #1aa4c0;
    z-index: -1;
    left: 0;
    top: 0;
}

.ser_inner_image::after {
    top: initial;
    bottom: 0px;
    left: initial;
    right: 0px;
}


._serviceBox {
    color: var(--main-color);
    background: linear-gradient(to top, #1aa3bf 9%, var(--white) 0%);
    text-align: center;
    padding: 30px 25px;
    border-radius: 30px 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 10px #ccc;
    margin-bottom: 30px;
}

._serviceBox:before {
    content: "";
    background: #FCFCFC;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 25px 25px;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

._serviceBox .service-icon {
    color: #ffffff;
    background: #1aa4c0;
    font-size: 40px;
    line-height: 80px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin: 0 auto 20px;
}

._serviceBox .service-icon i {
    line-height: inherit
}

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

._serviceBox .description {
    color: #444;
    font-size: 15px;
    line-height: 22px;
}

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

.map iframe {
    width: 100%;
    height: 350px;
    border: 10px solid #ccc;
}

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

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

.testimnila_timeline.main-timeline .timeline {
    width: 50%;
    padding: 0 15px 30px 0;
    margin: 0 5px 30px 0;
    float: left;
}

.testimnila_timeline.main-timeline .timeline-content {
    padding: 20px 120px 20px 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: block;
    position: relative;
    background: #fff;
}

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

.testimnila_timeline.main-timeline .timeline-content:before {
    content: '';
    background: linear-gradient(to left, #273841, #364856);
    height: 30px;
    width: 100%;
    position: absolute;
    left: 30px;
    top: 100%;
}

.testimnila_timeline.main-timeline .timeline-icon {
    color: #5ca4c0;
    font-size: 50px;
    text-align: center;
    line-height: 100px;
    width: 100px;
    height: 100px;
    border-left: 1px solid #000;
    transform: translateY(-50%);
    position: absolute;
    right: 0;
    top: 50%;
}

.testimnila_timeline.main-timeline .title {
    color: #5ca4c0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 7px;
}

.testimnila_timeline.main-timeline .description {
    color: #333;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}

.testimnila_timeline.main-timeline .timeline:nth-child(even) {
    padding: 0 0 30px 15px;
    margin: 0 0 30px 5px;
    float: right;
}

.testimnila_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 20px 20px 20px 120px;
}

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

.testimnila_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid #000;
}

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

    .testimnila_timeline.main-timeline .timeline,
    .testimnila_timeline.main-timeline .timeline:nth-child(even) {
        width: 100%;
    }
}

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

    .testimnila_timeline.main-timeline .timeline,
    .testimnila_timeline.main-timeline .timeline:nth-child(even) {
        padding: 0 0 30px;
    }

    .testimnila_timeline.main-timeline .timeline-content,
    .testimnila_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
        text-align: center;
        padding: 120px 20px 20px;
    }

    .testimnila_timeline.main-timeline .timeline-content:before,
    .testimnila_timeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
        left: 0;
        right: auto;
    }

    .testimnila_timeline.main-timeline .timeline-icon,
    .testimnila_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        border: none;
        border-bottom: 1px solid #000;
        transform: translateX(-50%) translateY(0);
        top: 0;
        left: 50%;
        right: auto;
    }
}


.box {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    overflow: hidden;
    perspective: 800px;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
    border-radius: 18px;
}

.box:before {
    content: "";
    background: linear-gradient(180deg, rgb(26 163 190) 7.9%, rgb(47 62 77) 94.1%);
    transform: rotateY(90deg);
    transform-origin: 0 0;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.box:hover:before {
    opacity: 0.9;
    transform: rotateY(0);
}

.box img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease 0s;
}

.box:hover img {
    opacity: 0.3;
}

.box .box-content {
    color: #fff;
    width: 100%;
    padding: 15px 10px;
    opacity: 0;
    transform: translateX(-35%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.box:hover .box-content {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%);
}

.box .title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 0 0 3px;
}

.box .post {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 0 0 10px;
    display: block;
}

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

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

.box .icon li a {
    color: #199eb9;
    background: #fff;
    font-size: 15px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    display: block;
    transition: all .3s ease-in-out;
}

.box .icon li a:hover {
    color: #905b27;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.packages_list {
    position: relative;
    text-align: center;
    padding: 10px 10px 19px;
    background: #fff;
    box-shadow: 0px 0px 10px #ccc;
    margin-bottom: 30px;
}

.package_img {
    display: block;
}

.package_info {
    position: relative;
}

.package_info h2 {
    background: #1aa3bf;
    color: #fff;
    font-size: 28px;
    padding: 3px 0;
    text-transform: uppercase;
}

.package_info h3 {
    font-size: 16px;
    margin: 13px 0 0;
}

.enqury_block {
    background-color: #f5f5f5;
    padding: 20px;
    margin-top: 22px;
}

.breadcrumb {
    text-align: center;
    display: block;
    padding: 210px 0 135px;
    background-image: url(../images/breadcumb.jpg);
    position: relative;
    margin: 0;
}

.breadcrumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(0 19 86 / 84%);
    top: 0px;
    left: 0px;
}

.breadcrumb h1 {
    font-size: 31px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600
}

.breadcrumb ul {
    display: inline-block;
    margin: auto;
    list-style: none;
    border-radius: 31px;
    position: relative;
    background: #f7941d;
    padding: 5px 0;
}

.breadcrumb ul li {
    display: inline-block;
    position: relative;
    color: #fff;
    padding: 0 14px;
    font-size: 15px;
    text-transform: capitalize;
    margin: 0
}

.breadcrumb ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f140";
    position: absolute;
    right: -7px;
    top: 1px;
    color: #fff;
    font-weight: 800;
    font-size: 14px
}

.breadcrumb ul li a {
    color: #fff
}

.breadcrumb ul li:last-child:before {
    content: none
}

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

.breadcrumb::after {
    content: "";
    position: absolute;
    z-index: -1
}

._cnt_section {
    position: relative;
    padding: 100px 0px;
    min-height: 55vh;
}

._inner_ser_pic {
    padding: 10px;
    background: linear-gradient(to top, #ffc57f, #b9c1dd);
    margin-bottom: 15px;
}

.cstmtble thead {
    background-color: #eb922a;
    color: #fff;
    text-align: center;
    font-size: 20px;
}

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

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

.feedbacktimeline.main-timeline .timeline {
    width: 50%;
    padding: 0 0 0 30px;
    margin: 0 5px 15px 0;
    float: left;
    position: relative;
    z-index: 1;
}

.feedbacktimeline.main-timeline .timeline-content {
    background-color: #fff;
    padding: 35px 75px 35px 40px;
    box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.3);
    display: block;
    position: relative;
    border-radius: 12px;
}

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

.feedbacktimeline.main-timeline .timeline-content:before {
    content: '';
    height: 50%;
    width: 50px;
    background-color: var(--main-color);
    transform: translateY(-50%);
    position: absolute;
    left: -30px;
    top: 50%;
    bottom: 15px;
    right: 15px;
    z-index: -1;
    clip-path: polygon(0 0, 30% 50%, 0 100%, 100% 100%, 100% 0);
}

.feedbacktimeline.main-timeline .timeline-icon {
    color: #fff;
    background: #f7941d;
    font-size: 35px;
    text-align: center;
    line-height: 80px;
    width: 80px;
    height: 80px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -40px;
    z-index: 1;
    border-radius: 12px;
}

.feedbacktimeline.main-timeline .timeline-icon i {
    line-height: inherit;
}

.feedbacktimeline.main-timeline .title {
    color: #31417b;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px;
}

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

.feedbacktimeline.main-timeline .timeline:nth-child(even) {
    padding: 0 30px 0 0;
    margin: 0 0 15px 5px;
    float: right;
}

.feedbacktimeline.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 35px 40px 35px 75px;
}

.feedbacktimeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
    transform: translateY(-50%) rotateY(180deg);
    left: auto;
    right: -30px;
}

.feedbacktimeline.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: -40px;
    right: auto;
}

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

    .feedbacktimeline.main-timeline .timeline,
    .feedbacktimeline.main-timeline .timeline:nth-child(even) {
        width: calc(100%);
        padding: 0 40px 0 30px;
    }

    .feedbacktimeline.main-timeline .timeline:nth-child(even) {
        padding: 0 30px 0 40px;
    }
}

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

    .feedbacktimeline.main-timeline .timeline,
    .feedbacktimeline.main-timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 40px 0 30px;
        margin: 0 0 30px;
    }

    .feedbacktimeline.main-timeline .timeline-content,
    .feedbacktimeline.main-timeline .timeline:nth-child(even) .timeline-content {
        text-align: center;
        padding: 70px 25px 35px;
    }

    .feedbacktimeline.main-timeline .timeline-content:before,
    .feedbacktimeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
        transform: translateY(0) translateX(-50%) rotate(-90deg);
        left: 50%;
        right: auto;
        top: auto;
        bottom: -65px;
    }

    .feedbacktimeline.main-timeline .timeline-icon,
    .feedbacktimeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateY(0) translateX(50%);
        top: -40PX;
        right: 50%;
        left: auto;
    }
}

.add_title {
    text-align: center;
}

.add_title h2 {
    text-transform: uppercase;
    color: #4a5487;
    margin: 0 0 15px;
}

.cnt_address_list_ {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 13px 13px;
    border-top: 5px solid #f7941d;
    border-radius: 0px 0px 12px 12px;
    background: linear-gradient(to top, #e7eaf4, #ffffff);
    box-shadow: 0px 4px 3px #ccc;
    min-height: 172px;
}

.cnt_address_list_ h3 {
    text-transform: uppercase;
    display: inline-block;
    background: #f7941d;
    color: #fff;
    padding: 4px 16px;
    margin: 0 0 12px;
    font-size: 19px;
}

.add_info_ls {
    font-size: 15px;
    border-bottom: 2px dotted;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.cnt_address_list_ .add_info_ls:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.ratings_list {
    position: relative;
    background: #0a1c5d;
    color: #fff;
    padding: 12px;
}

.list_ratings {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 17px;
    width: 100%;
    border-bottom: 2px dotted #afafaf;
    padding: 8px 0;
}

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

.lst_tile {
    margin: 0 18px;
    flex: 0 0 50%;
}

.lst_ratings {
    color: orange;
}

.sunprtrow .col-md-3 {
    padding: 20px 10px;
}

.sunprtrow .col-md-3:nth-child(1) {
    border-right: 2px dotted;
}

.sunbl_list {
    text-align: center;
}

.sunbl_list h5 {
    font-size: 18px;
}