@import url('fontawesome-all.css');
@import url('animate.css');
@import url('flaticon.css');
@import url('owl.css');
@import url('jquery.fancybox.min.css');

/*** 

====================================================================
	Reset
====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}


/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
    font-size: 14px;
    color: #161616;
    line-height: 1.6em;
    font-weight: 500;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #f74141;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: 500;
    margin: 0px;
    background: none;
    line-height: 1.2em;
}

textarea {
    overflow: hidden;
}

button {
    outline: none !important;
    cursor: pointer;
}

p,
.text {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    margin: 0;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    z-index: 9;
    overflow: hidden;
}

.page-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/bg.jpg);
    opacity: .3;
}

.auto-container {
    position: relative;
    max-width: 1155px;
    padding: 0px 15px;
    margin: 0 auto;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

figure {
    margin-bottom: 0;
}

.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

.centered {
    text-align: center !important;
}


/*Btn Style One*/

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 27px;
    color: #00686f;
    padding: 6px 16px;
    border: 2px solid #202020;
    font-weight: 600;
    overflow: hidden;
    border-radius: 30px;
    background-color: #fff;
}

.btn-style-one:hover {
    color: #ffffff;
    background: #00686f;
    border: 2px solid;
}

@keyframes rainbow {
    0% {
        background-color: #25bdd8;
    }

    25% {
        background-color: #5798fe;
    }

    50% {
        background-color: #7cbe47;
    }

    75% {
        background-color: #9c49fa;
    }

    100% {
        background-color: #ff4880;
    }
}

@-webkit-keyframes rainbow {
    0% {
        background-color: #25bdd8;
    }

    25% {
        background-color: #5798fe;
    }

    50% {
        background-color: #7cbe47;
    }

    75% {
        background-color: #9c49fa;
    }

    100% {
        background-color: #ff4880;
    }
}


/*Btn Style Two*/

.btn-style-two {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    padding: 25px 50px;
    font-weight: 700;
    overflow: hidden;
    border-radius: 5px;
    background-color: #1e2c67;
}

.btn-style-two .btn-title {
    position: relative;
}

.btn-style-two:hover {
    color: #1e2c67;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.btn-style-two:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}


/*Btn Style Three*/

.btn-style-three {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #f1ecff;
    font-weight: 500;
    padding: 10px 32px;
    background-color: #1a2940;
    overflow: hidden;
    border-radius: 5px;
    transition: all 300ms linear;
}

.btn-style-three .btn-title {
    position: relative;
}

.btn-style-three:hover {
    color: #1a2940;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-three:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.btn-style-three:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}


/*Btn Style Four */

.btn-style-four {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 500;
    overflow: hidden;
    border: 1px solid #333333;
    background-color: #333333;
}

.btn-style-four:hover {
    color: #333333;
    border: 1px solid #ffffff;
    -webkit-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    -moz-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    -ms-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    -o-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
}


/*=== Social Icon One ===*/

.social-icon-one {
    position: relative;
}

.social-icon-one li {
    position: relative;
    display: inline-block;
}

.social-icon-one li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 36px;
    width: 38px;
    height: 38px;
    background: #fff;
    color: #007bff;
    text-align: center;
    font-weight: 400;
    border-radius: 3px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 3px;
    box-shadow: 0px 0px 10px #484848;
}

.social-icon-one li:nth-child(2) a {
    color: red;
}

.social-icon-one li:nth-child(3) a {
    color: #d82591;
}

.social-icon-one li:nth-child(4) a {
    color: #3f903a;
}

.social-icon-one li:nth-child(5) a {
    color: #f14141;
}

.social-icon-one li a:hover {
    color: #fff;
    background: linear-gradient(to left, #ff0502, #fb4547);
}

.social-icon-one li:first-child {
    margin-left: 0;
}


/*=== Social Icon Two ===*/

.social-icon-two {
    position: relative;
    text-align: center;
    margin-top: 15px;
    display: inline-block;
    box-shadow: 0px 0px 10px #ccc;
    padding: 6px 9px;
    border-radius: 32px;
    background: #fff;
}

.social-icon-two li {
    position: relative;
    display: inline-block;
}

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 39px;
    color: #00686f;
    background: #dfdfdf;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    margin: 0 5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-two li a:hover {
    color: #ffffff;
    background: #00686f;
}

.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;
}

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: #00686f;
    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: #f54141;
}


/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header {
    position: absolute;
    z-index: 99999;
    vertical-align: middle;
    width: 100%;
}

.main-header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    /* background: #f94040; */
}

.main-header .header-top {
    position: absolute;
    text-align: right;
    right: 242px;
    z-index: 99;
    top: 28px;
}

.main-header .inner-container .auto-container {
    max-width: 1118px;
    /* border-top: 5px solid #00686f; */
}


/* Top Left*/

.main-header .header-top .top-left {
    position: relative;
    background: transparent;
    padding: 0;
    display: inline-block;
}

.main-header .header-top .top-left::before {
    content: "";
    position: absolute;
}

.main-header .header-top .info-list {
    position: relative;
    display: inline-block;
}

.main-header .header-top .info-list li {
    position: relative;
    display: inline-block;
    line-height: 12px;
    font-weight: 500;
    background: #ffffff38;
    padding: 5px 11px;
    border-radius: 30px;
}

.main-header .header-top .info-list li a {
    display: inline-block;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-top .info-list li a:hover {
    color: #ffffff;
}

.main-header .header-top .info-list li span {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    color: #ffffff;
    font-size: 15px;
    line-height: 31px;
    width: 32px;
    height: 32px;
    background: #a3cd4e;
    text-align: center;
    border-radius: 50%;
}

.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: right;
}

.main-header .header-upper .logo-outer {
    position: absolute;
    text-align: center;
    z-index: 999;
    width: 259px;
    top: 0px;
    left: 0;
    background: #fff;
    padding: 7px;
    border-radius: 0px 0px 32px 32px;
}

.main-header .header-upper .logo-outer:before {
    position: absolute;
    right: 100%;
    top: 0;
    background-color: #ffffff;
    content: "";
}

.main-header .header-upper .logo {
    left: 0;
    right: 0;
    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: 27px;
    top: 31px;
}

.main-header .nav-outer {
    position: relative;
    display: inline-block;
    margin: auto;
    top: 0;
    padding: 74px 0px 0 0px;
    border-radius: 0px 30px 30px 0px;
}

.appointment {
    top: 18px;
    position: absolute;
    right: 0;
    background: linear-gradient(to top, #010101, #6a6a6a);
    color: #ffffff;
    font-size: 17px;
    text-transform: uppercase;
    padding: 9px 22px;
    cursor: pointer;
    border-radius: 30px;
}

.top-wraapper {
    position: relative;
    height: 100vh;
}


/*===  Header Lower ===*/

.main-header .header-lower {
    position: relative;
    width: 100%;
}

.main-menu {
    position: relative;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    left: 0;
}

.main-menu .navigation>li {
    position: relative;
    display: inline-block;
    padding: 9px 11px;
    margin-left: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 17px;
    line-height: 30px;
    font-weight: 500;
    opacity: 1;
    padding: 0 0;
    color: #f4f4f4;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:hover>a {
    color: #afda5b;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 275px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 0px 0px;
    background-color: #c6dfe0;
    border-top: 3px solid #ed6a43;
    -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 #959595;
}

.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: #ed2525;
}

.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: 15px;
    text-transform: capitalize;
    color: #181818;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sticky-header .main-menu .navigation>li>a {
    padding: 19px 0px;
}

.sticky-header .main-menu .navigation>li>a:before {
    display: none;
}

.main-menu .navigation>li>ul>li:hover>a {
    background: #ed2525;
    color: #fff;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 13px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 240px;
    z-index: 100;
    display: none;
    padding: 0px 0px;
    background-color: #ffffff;
    border-top: 3px solid #ff4788;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    display: block;
    background: #ff4788;
}

.main-menu .navigation>li>ul>li>ul>li:hover:before {
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 13px 20px;
    line-height: 24px;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    color: #696478;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
    color: #ffffff;
    background: #ff4788;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 13px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    float: right;
    padding: 30px 0;
}

.main-header .outer-box .btn-box {
    position: relative;
    float: right;
}

.main-header .outer-box .btn-box .theme-btn {
    text-transform: uppercase;
    display: block;
}


/*search box btn*/

.main-header .search-box-outer {
    position: relative;
    float: left;
    padding: 10px 30px;
    margin-left: 30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .search-box-outer:before {
    position: absolute;
    left: 0;
    top: 13px;
    height: 24px;
    width: 1px;
    background-color: #e8e8e8;
    content: "";
}

.main-header .search-box-btn {
    position: relative;
    float: left;
    font-size: 16px;
    line-height: 30px;
    background: none;
    color: #222222;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .search-box-btn:hover {
    color: #343434;
}

.dropdown-toggle::after {
    display: none;
}

.main-header .search-box-outer .dropdown-menu {
    top: 70px !important;
    left: auto !important;
    right: 0;
    padding: 0px;
    width: 280px;
    border-radius: 0px;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    border-top: 3px solid #ff4788;
}

.main-header .search-panel .form-container {
    padding: 25px 20px;
}

.main-header .search-panel .form-group {
    position: relative;
    margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 7px 40px 7px 15px;
    height: 40px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
}

.main-header .search-panel input:focus,
.main-header .search-panel select:focus {
    border-color: #25262c;
}

.main-header .search-panel .search-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #555555;
    font-size: 12px;
    background: none;
    cursor: pointer;
}

.main-header .outer-box .social-links {
    position: relative;
    float: left;
    margin-left: 20px;
    padding: 20px 0;
    padding-left: 20px;
}

.main-header .outer-box .social-links:before {
    position: absolute;
    left: -3px;
    top: 15px;
    height: 35px;
    border-left: 1px solid #e5e5e5;
    content: "";
}


/*** 

====================================================================
			Header Style Two
====================================================================

***/

.header-style-two {
    position: relative;
}

.header-style-two .main-menu,
.header-style-two .nav-outer {
    width: 100%;
}

.header-style-two .main-menu .navbar-collapse {
    display: block !important;
}

.header-style-two .header-upper .logo-outer {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 12;
}

.header-style-two .header-upper .logo-outer:before {
    display: none;
}

.header-style-two .header-upper .logo:before {
    background-color: #ffffff;
}

.header-style-two .header-top .top-left {
    padding-left: 0;
}

.header-style-two .main-menu .navigation>li {
    margin-left: 0;
    margin-right: 90px;
}

.header-style-two .main-menu .navigation>li:last-child {
    margin-right: 0;
}

.header-style-two .header-top .top-right {
    padding: 10px 0;
}

.header-style-two .social-icon-two li {
    margin-left: 35px;
}

.header-style-two .social-icon-two li a {
    font-size: 15px;
    color: #c8bfe3;
}

.header-style-two .social-icon-two li a:hover {
    color: #ff4788;
}


/*** 

====================================================================
				Sticky Header
====================================================================

***/

.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: -1;
    background: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    -webkit-transition: top 300ms ease;
    -moz-transition: top 300ms ease;
    -ms-transition: top 300ms ease;
    -o-transition: top 300ms ease;
    transition: top 300ms ease;
}

.fixed-header .sticky-header {
    opacity: 1;
    z-index: 99999;
    visibility: visible;
}

.fixed-header .sticky-header .logo {
    padding: 10px 0;
    width: 201px;
}

.sticky-header .main-menu .navigation>li {
    margin-left: 32px !important;
    padding: 0;
    margin-right: 0;
    background-color: transparent;
}

.sticky-header .main-menu .navigation>li.dropdown>a:after,
.sticky-header .main-menu .navigation>li:before {
    display: none;
}

.sticky-header .main-menu .navigation>li>a {
    padding: 20px 0px !important;
    line-height: 30px;
    font-size: 17px;
    font-weight: 600;
    color: #696478;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a,
.sticky-header .main-menu .navigation>li.current-menu-item>a {
    opacity: 1;
    font-weight: 700;
    color: #1e2c67;
}


/*** 

====================================================================
			Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 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: #333;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    color: #ff4788;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a,
.mobile-menu .navigation li>a:hover {
    color: #ff4788;
}

.mobile-menu .navigation li.current>a:before {
    height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    background: #ff4788;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 5px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 28px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {
    color: #ff4788;
}


/*** 

====================================================================
		Page Banner
====================================================================

***/

.page-banner {
    position: relative;
    padding: 120px 0 120px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.page-banner:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-color: #09031c;
    opacity: .50;
    z-index: 0;
}

.page-banner:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 23px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
}

.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;
    font-size: 42px;
    line-height: 1.2em;
    color: #04393c;
    font-weight: 700;
    padding-bottom: 9px;
    text-transform: uppercase;
    display: inline-block;
}

.sec-title h2:before {
    position: absolute;
    left: 0;
    top: 50px;
    width: 65%;
    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-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;
}

.banner-carousel .content-box .title {
    display: block;
    font-size: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .active .content-box .title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-carousel .content-box h2 {
    display: block;
    font-size: 100px;
    line-height: .9em;
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    margin-bottom: 40px;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .active .content-box h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.banner-carousel .content-box .btn-box {
    position: relative;
    opacity: 0;
    z-index: 9;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .active .content-box .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.banner-carousel .active .content-box .btn-box a {
    font-size: 22px;
}

.banner-section.style-two .banner-carousel .slide-item {
    padding: 190px 0;
}

.banner-section.style-two .content-box {
    text-align: left;
    max-width: 100%;
    padding: 0;
}

.banner-section.style-two .content-box .icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.banner-section .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -28px;
    width: 100%;
    height: 0;
}

.banner-section .owl-nav .owl-prev,
.banner-section .owl-nav .owl-next {
    position: absolute;
    left: 30px;
    top: 0;
    background: none;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    text-align: center;
    line-height: 52px;
    color: #ffffff;
    font-size: 20px;
    opacity: 0.30;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-section .owl-nav .owl-next {
    left: auto;
    right: 30px;
}

.banner-section .owl-nav .owl-prev:hover,
.banner-section .owl-nav .owl-next:hover {
    opacity: 1;
}

.banner-section .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
}

.banner-section .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 8px solid #ffffff;
    margin: 0px 2px;
    opacity: 0.20;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-section .owl-dot:last-child {
    margin-bottom: 0;
}

.banner-section .owl-dot.active,
.banner-section .owl-dot:hover {
    opacity: 1;
}

.banner_carousel {
    position: relative;
}

.banner_carousel::before {
    content: "";
    position: absolute;
    right: 0;
    z-index: 1;
}

.slide1 .container {
    position: relative;
    height: 100%;
}

.banner_carousel .owl-dots {
    position: absolute;
    top: inherit;
    width: 200px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 2;
    padding-top: 0;
    bottom: 99px;
    text-align: center;
}

.banner_carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #f14242;
    color: #FFF;
    margin: 0 4px;
    border-radius: 50%;
}

.slides {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.slide1 {
    background-image: url(../images/main-slider/1.jpg);
}


/*** 

====================================================================
		about Section
====================================================================

***/

.top_abt_section {
    position: relative;
    padding: 9px 0 0;
    margin-top: -100px;
}

.top_abt_section::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 1251px;
    height: 9px;
    background: #bcdfe1;
    left: 0;
    right: 0;
    margin: auto;
    top: 98px;
    border-radius: 30px;
    z-index: 1;
}

.tp_abt_row .col-md-3 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 0px 12px;
}

.tp_abt_row .col-md-3::before {
    content: "";
    position: absolute;
    width: 23%;
    height: 9px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all ease-in-out .7s;
    z-index: -1;
    border-radius: 0px 0px 109px 109px;
}

.tp_abt_row .col-md-3:nth-child(2),
.tp_abt_row .col-md-3:nth-child(4) {
    margin-top: -32px;
}

.tp_abt_row .col-md-3:nth-child(3) {
    margin-top: -63px;
}

.tp_abt_row {
    position: relative;
    margin-top: 0;
    z-index: 2;
}

.tp_abt_row .col-md-3:hover:before {
    width: 100%;
    height: 100%;
}

.tp_list {
    position: relative;
    text-align: center;
    padding: 45px 17px 0;
    background: #0a565b;
    border-radius: 50%;
    width: 205px;
    height: 205px;
    color: #fff;
    display: inline-block;
}

.tp_list h3 {
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    margin: 6px 0 9px;
}

.tp_icon img {
    filter: invert(1);
}

.offers-section {
    position: relative;
    padding: 0px 0 86px;
    margin-top: -39px;
}

.offers-section::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 112px;
    height: 10px;
    max-width: 890px;
    left: 0;
    right: 0;
    margin: auto;
    border-bottom: 0;
}

.offers-section::after {
    content: "";
    position: absolute;
    left: initial;
    right: 0px;
    transform: skew(0deg, 10deg);
}

.bgs {
    position: absolute;
}

.bgs img {
    width: 100%;
}

.abtleftbg {
    left: 0px;
    width: 35%;
    top: -33%;
    opacity: .5;
    z-index: 1;
}

.docbg {
    right: 0px;
    width: 37%;
    top: 293px;
    opacity: .5;
}

.kidnybg {
    left: 0px;
    width: 44%;
    top: 113px;
    opacity: .6;
}

.abtbg {
    position: absolute;
}

.about-content {
    position: relative;
    text-align: center;
    margin-bottom: 13px;
    z-index: 1;
}

.about-content span {
    font-size: 27px;
    background: #f3282e;
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 30px;
}

.about-content h2 {
    text-transform: uppercase;
    color: #00686f;
    font-weight: 800;
    margin-top: 19px;
    font-size: 108px;
    line-height: 88px;
}

.about-content h2::before,
.about-content h2::after {
    content: "";
    position: absolute;
    width: 16%;
    height: 70%;
    /* border-top: 1px dashed #00686f; */
    top: 71px;
}

.about-content h2::before {
    /* border-left: 1px dashed #00686f; */
    left: 16%;
}

.about-content h2::after {
    /* border-right: 1px dashed #00686f; */
    right: 16%;
}

.about-content h3 {
    text-transform: uppercase;
    color: #f74141;
    margin: 15px 0 14px;
    font-size: 44px;
    display: inline-block;
    border-top: 2px dotted;
}

.about-content p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 34px;
    font-size: 18px;
}

.about_pic {
    position: relative;
    border: 14px solid #e0e0e0;
}

.about_pic::before {
    content: "";
    position: absolute;
}

.about_pic img {
    display: block;
    box-shadow: 0px 0px 10px #858585;
}

.mvvrow {
    align-items: center;
}

.mvvrow .col-md-4 {
    position: relative;
    margin-top: 18px;
    padding: 0 0px;
    background: #ececec;
}

.mvvrow .col-md-4:nth-child(2) {
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 18px;
}

.mvv_blocks {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 22px 23px;
    border-radius: 13px;
}

.mvvrow .col-md-4:nth-child(2) .mvv_blocks {
    padding: 53px 23px;
}

.mvv_blocks h3 {
    text-transform: uppercase;
    display: inline-block;
    margin: 0 0 12px;
    border-bottom: 2px dashed;
}

.mvvrow .col-md-4:nth-child(2) .mvv_blocks h3 {
    color: #fff
}

.mvvrow.innermvrow .col-md-4:nth-child(2) .mvv_blocks h3 {
    color: #000
}

.mvvrow.innermvrow .col-md-4:nth-child(2) {
    background: transparent;
}

.mvv_blocks.inner_mv_blocks {
    color: #000;
}

.mvv_blocks p {
    margin: 0px;
    line-height: 25px;
}

.doc_section {
    position: relative;
    padding: 0 0 10px;
}

.doc_info {
    position: relative;
}

.doc_info::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    right: 50%;
    top: 0;
    background: #00686f;
}

.doc_pic {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 12px solid #f8f8f8;
    box-shadow: 0px 0px 10px;
}

.doc_pic img {
    display: block;
}

.doc_desc h2 {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 4px;
    font-size: 49px;
    color: #00686f;
}

.doc_desc h3 {
    font-size: 23px;
    margin-bottom: 9px;
}

.doc_desc h4 {
    font-size: 20px;
    color: #f42e2f;
}

.doc_decs {
    position: relative;
    margin-top: 12px;
}

.doc_decs::before {
    content: "";
    position: absolute;
    width: 40%;
    height: 67%;
    right: 0;
    top: 0;
}

.doc_decs p {
    text-align: justify;
    margin-bottom: 18px;
    line-height: 27px;
}

.innerbaatrow .doc_info::before {
    display: none;
}

.innerbaatrow .doc_pic {
    border-radius: 0px;
}


/* 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;
}

.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 .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;
}


/*** 

====================================================================
		About Section
====================================================================

***/

.about-section {
    position: relative;
    padding: 120px 0 90px;
    background-color: #f2f5f6;
}

.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;
}


/*** 

====================================================================
		Program Section
====================================================================

***/

.program-section {
    position: relative;
    padding: 62px 0 102px;
}

.program-section::before {
    content: "";
    position: absolute;
    width: 26%;
    height: 70px;
    bottom: 330px;
    left: 0;
}

.program-section::after {
    content: "";
    position: absolute;
    width: 26%;
    height: 70px;
    right: 0;
    z-index: -1;
    bottom: 330px;
}

.sec-title.light h3 {
    color: #eee;
}

.services-row {
    position: relative;
}

.services_slider .owl-dots {
    text-align: center;
    position: relative;
    height: auto;
    left: 0;
    margin: 11px 0 0;
    z-index: 99;
    bottom: 0;
}

.services_slider .owl-dot {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 3px 3px;
    background: #02555a;
}

.services_slider .owl-dot.active {
    background: #f74141;
}

.services-row::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    top: 228px;
    left: 0;
}

.right_bg {
    position: absolute;
    right: 0px;
    width: 417px;
}

.left_bg {
    position: absolute;
    left: 0px;
    width: 417px;
}

.whatwedo {
    position: relative;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    color: #ff9f00;
    text-align: center;
}

.ser_head p {
    color: #202020;
    font-size: 18px;
    margin: 0 0 0px;
}

.ser_head.sec-title {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    z-index: 99;
    text-align: center;
}

.services-blocks {
    text-align: center;
    position: relative;
}

.ser_list_items {
    margin: 74px 0;
}

.services_list {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 23px;
    height: 400px;
    overflow: hidden;
    border-radius: 19px;
    transition: all ease-in-out .8s;
    transform: scale(.7);
}

.services_slider .owl-item.center .services_list {
    transform: scale(1.3);
}

.services_list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 58%;
    left: 0px;
    bottom: 0;
    transition: all ease-in-out .7s;
}

.services_slider .owl-item.center .services_list::before {
    background: linear-gradient(to top, #064b50, rgb(52 52 52 / 0%));
}

.services_list::after {
    content: "";
    position: absolute;
    width: 69px;
    height: 69px;
    left: 11px;
    top: 11px;
}

.bg1 {
    background-image: url(../images/services/diabetes.jpg);
}

.bg2 {
    background-image: url(../images/services/Hypertension.jpg);
}

.bg3 {
    background-image: url(../images/services/Hemodialysis-Plasmapheresis.jpg);
}

.bg4 {
    background-image: url(../images/services/Acute-Kidney-Injury.jpg);
}

.bg5 {
    background-image: url(../images/services/Chronic-Kidney-Disease.jpg);
}

.bg6 {
    background-image: url(../images/services/Nephrotic-Syndrome.jpg);
}

.bg7 {
    background-image: url(../images/services/Glomerulonephritis.jpg);
}

.bg8 {
    background-image: url(../images/services/Rapidly-progressive-renal-failure.jpg);
}

.bg9 {
    background-image: url(../images/services/Pregnancy-kidney-disease.jpg);
}

.bg10 {
    background-image: url(../images/services/Renal-Biopsy.jpg);
}

.bg11 {
    background-image: url(../images/services/Peritoneal-dialysis.jpg);
}

.bg12 {
    background-image: url(../images/services/Tunneled-catheter-insertion.jpg);
}

.ser_image {
    position: absolute;
    display: inline-block;
    bottom: 86px;
    left: 0;
    right: 0;
    width: 44px;
    margin: auto;
    opacity: 0;
    transition: all ease-in-out .8s;
}

.services_slider .owl-item.center .ser_image {
    opacity: 1;
    width: 55px;
}

.service_section .auto-container {
    position: relative;
}

.ser_info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    padding: 0 12px;
    text-align: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .7s;
}

.services_slider .owl-item.center .ser_info {
    opacity: 1;
    visibility: visible;
}

.ser_info::before {
    content: "";
    position: absolute;
    z-index: -1;
}

.ser_info::after {
    top: initial;
    bottom: 0px;
    transform: inherit;
}

.services_list h3 {
    text-transform: capitalize;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 8px;
}

.services_list h3::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 2px;
    left: 106%;
    top: 20px;
}

.services_list p {
    color: #bfbfbf;
    font-size: 15px;
    line-height: 26px;
}

.services_list a {
    color: #ffffff;
    display: inline-block;
    border: 2px solid;
    background: red;
    position: relative;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 26px;
    line-height: 36px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all ease-in-out .7s;
    box-shadow: 0px 4px 3px #626262;
}

.services_list:hover a {
    color: #fff;
}

.program-block {
    position: relative;
    margin-bottom: 30px;
}

.program-block .inner-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.program-block .inner-box:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}

.program-block .image-box {
    position: relative;
}

.program-block .image {
    position: relative;
    margin-bottom: 0;
    background-color: #ff4880;
}

.program-block .image img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.program-block .inner-box:hover .image img {
    opacity: .80;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.program-block .lower-content {
    position: relative;
    padding: 55px 60px 0;
    background-color: #ffffff;
}

.program-block h4 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #1e2c67;
    font-weight: 700;
    margin-bottom: 18px;
}

.program-block h4 a {
    color: #1e2c67;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.program-block .inner-box:hover h4 a {
    color: #25bdd8;
}

.program-block .text {
    position: relative;
    margin-bottom: 20px;
}

.program-block .program-info {
    position: relative;
    border-top: 1px solid #e8e6ec;
    padding: 25px 0 45px;
}

.program-block .program-info li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #1e2c67;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 40px;
}

.program-block .program-info li span {
    color: #696478;
    font-weight: 500;
    margin-right: 5px;
}

.program-block .program-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    color: #ff4986;
    font-weight: 400;
}

.program-block .btn-box {
    position: relative;
    text-align: center;
}

.program-block .btn-box a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    padding: 10px 30px;
    color: #ffffff;
    background-color: #25bdd8;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.program-block .inner-box:hover .btn-box a {
    background-color: #1e2c67;
}

.program-section.style-two {
    background-color: #ffffff;
    padding: 120px 0 115px;
}

.program-section.style-two .program-block .lower-content {
    border: 1px solid #ece6dd;
    border-top: 0;
}


/*** 

====================================================================
		Program Single
====================================================================

***/

.program-single {
    position: relative;
    padding: 120px 0 100px;
}

.program-single .icon-star-3 {
    left: auto !important;
    right: -80px !important;
    top: 310px !important;
}

.program-single .icon-balloon {
    top: auto !important;
    left: -360px !important;
    bottom: 40px !important;
}

.program-single .image-column {
    position: relative;
}

.program-single .image-column .image {
    position: relative;
    margin-bottom: 30px;
}

.program-single .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
}

.program-single .info-column {
    position: relative;
    margin-bottom: 30px;
}

.program-single .program-info {
    position: relative;
}

.program-single .program-info .inner {
    position: relative;
    padding: 55px 50px 30px;
    border: 1px solid #e8e6ec;
    border-bottom: 0;
}

.program-single .program-info h4 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: #25bdd8;
    font-weight: 400;
    margin-bottom: 30px;
}

.program-single .program-info .info-list {
    position: relative;
}

.program-single .program-info .info-list li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #1e2c67;
    font-weight: 500;
    margin-bottom: 15px;
    padding-left: 45px;
}

.program-single .program-info .info-list li span {
    display: block;
    color: #696478;
    font-weight: 500;
    margin-bottom: 8px;
}

.program-single .program-info .info-list li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 26px;
    color: #ff4788;
    font-weight: 400;
}

.program-single .program-info .theme-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.program-single .content-box {
    position: relative;
}

.program-single .content-box h2 {
    position: relative;
    font-size: 60px;
    line-height: 1em;
    color: #1e2c67;
    font-weight: 700;
    margin-bottom: 30px;
}

.program-single .content-box p {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #696478;
    font-weight: 400;
}

.asahcmaab {
    background: #00686f;
    text-align: center;
    padding: 135px 0 102px;
    position: relative;
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0 100%, 0 30%);
}

.asahcmaab h2 {
    font-size: 27px;
    font-weight: 300;
    margin-top: 0;
    display: inline-block;
    color: #fff;
}

.asahcmaab h2:before {
    content: '';
    display: inline-block;
    position: relative;
    top: 6px;
    left: 234px
}

.asahcmaab p {
    color: #fff;
    font-size: 30px;
    font-weight: 200;
    margin: 0 0 27px;
    text-transform: uppercase
}

.asahcmaab h2 a {
    text-decoration: none;
    outline: 0;
    color: #fff;
    margin-left: 8px;
    background: #0f838b;
    padding: 7px 14px;
    border-radius: 10px;
    display: inline-block;
}

.form_section .form-control {
    display: block;
    height: 52px;
    background: #075358;
    border: none;
    border-radius: 0px;
    color: #fff;
}

.form_section .form-control::placeholder {
    color: #b3d8db;
}

.form_section .btn {
    background-color: transparent;
    width: 100%;
    position: relative;
    height: 100%;
    color: #b3d8db;
    border: 1px solid #b3d8db;
    font-size: 25px;
    border-radius: 0px;
}

.form_section .col-md-6,
.form_section .col-md-2 {
    padding: 0px;
}

.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;
    text-align: center;
    margin: 0;
}

.add_bar_row {
    margin: 0px;
    color: #fff;
}

.add_bar_row .col-md-4 {
    border-right: 2px dotted #fff;
}

.add_bar_row .col-md-4:nth-child(3) {
    border-right: 0px;
}

._addre_bar i {
    width: 45px;
    height: 45px;
    background: rgb(255 255 255 / 31%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    line-height: 45px;
    margin-bottom: 8px;
}

._addre_bar h5 {
    font-weight: 400;
    font-size: 16px;
}

.newsletter-section::before {
    content: "";
    position: absolute;
}

.newsletter-section::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: -1;
}

.newsletter-section .title-column {
    position: relative;
}

.newsletter-section .title-column .inner-column {
    position: relative;
    padding-top: 0;
}

.newsletter-section h2 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 27px;
}

.newsletter-section h4 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: inherit;
    color: #ffffff;
    font-weight: 500;
}

.newsletter-section .inner-container {
    background: linear-gradient(to top, #fd0202, #ff6464);
    padding: 20px 0;
    position: relative;
    z-index: 1;
    margin-top: -65px;
    border-radius: 19px;
}


/*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: #1a144c;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-section::before {
    content: "";
    position: absolute;
    background: rgb(0 44 98 / 92%);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.facilities-row .col-md-2 {
    /* border-right: 2px dashed #e4e4e4; */
    flex: 0 0 20.666667%;
    max-width: 20%;
    padding: 0 6px;
}

.facilities-row .col-md-2:last-child {
    border-right: 0px;
}

.fac-title {
    margin-bottom: 40px;
}

.fac-title h2:before {
    background-color: #eee;
}

.facility-list {
    text-align: center;
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    position: relative;
}

.facility-list::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 23px;
    left: 0;
    right: 0;
    margin: auto;
    border-right: 1px dashed;
    bottom: -11px;
}

.fac_img {
    margin-bottom: 16px;
    display: inline-block;
    width: 122px;
    height: 122px;
    background: linear-gradient(to bottom, #ff5960, #e5000a);
    border-radius: 50%;
    border: 5px solid #eee;
    line-height: 105px;
}

.fac_img img {
    width: auto;
}

.facility-list span {
    display: block;
    padding-bottom: 18px;
    font-size: 17px;
    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;
}

.blogs_section {
    position: relative;
    padding: 80px 0px 0;
}

.blog_pic {
    position: absolute;
    right: 9px;
    width: 178px;
    top: 9px;
    border-radius: 50%;
    overflow: hidden;
}

.blogs_row .col-md-6:nth-child(2) .blog_pic {
    left: 9px;
    right: initial;
}

.bloglist {
    position: relative;
    padding: 20px 205px 20px 20px;
    background: #ededed;
    border-radius: 0px 100px 100px 0px;
    box-shadow: 0px 0px 10px #9f9f9f;
    margin-bottom: 30px;
}

.blogs_row .col-md-6:nth-child(2) .bloglist {
    padding: 20px 20px 20px 205px;
    border-radius: 100px 0px 0px 100px;
}

.blog_info h3 {
    font-size: 20px;
    color: #002c62;
}

.blog_info p {
    line-height: 23px;
    font-size: 15px;
    margin: 0 0 6px;
}

.blog_info a {
    display: inline-block;
    background: #e70711;
    color: #fff;
    padding: 5px 13px;
    border-radius: 21px;
}

.blog_info a:hover {
    background: #002c62;
    color: #fff;
}

.faq_section {
    position: relative;
    padding: 0px 0px 85px;
}

.faq_timeline.main-timeline {
    position: relative;
}

.faq_timeline.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.faq_timeline.main-timeline .timeline {
    width: 45%;
    padding: 0 40px 0 0;
    margin: 0 5px 15px 0;
    float: left;
    background: linear-gradient(to right, #ffe6e6, transparent);
    text-align: right;
    border-radius: 106px;
}

.faq_timeline.main-timeline .timeline-content {
    min-height: 120px;
    padding: 10px 20px;
    display: block;
    position: relative;
}

.faq_timeline.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.faq_timeline.main-timeline .timeline-icon {
    color: #ffffff;
    background: linear-gradient(to left, #f12424, #00686f);
    font-size: 40px;
    text-align: center;
    line-height: 86px;
    width: 90px;
    height: 90px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    position: absolute;
    right: -85px;
    top: 50%;
    border-radius: 50%;
}

.faq_timeline.main-timeline .title {
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 7px;
}

.faq_timeline.main-timeline .description {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    padding: 0 6px;
}

.faq_timeline.main-timeline .timeline:nth-child(even) {
    padding: 0 0 0 40px;
    margin: 0 0 15px 5px;
    float: right;
    background: linear-gradient(to left, #ffe6e6, transparent);
    text-align: left;
}

.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
    right: auto;
    left: -85px;
}

@media screen and (max-width:767px) {

    .faq_timeline.main-timeline .timeline,
    .faq_timeline.main-timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 0 0 0 110px;
        margin: 0 0 30px;
    }

    .faq_timeline.main-timeline .timeline-icon,
    .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        left: -110px;
        right: auto;
    }
}

@media screen and (max-width:479px) {

    .faq_timeline.main-timeline .timeline,
    .faq_timeline.main-timeline .timeline:nth-child(even) {
        padding: 130px 0 0;
    }

    .faq_timeline.main-timeline .timeline-content {
        text-align: center;
    }

    .faq_timeline.main-timeline .timeline-icon,
    .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateY(0) translateX(-50%);
        top: -130px;
        left: 50%;
    }
}

.kidneycare_section {
    position: relative;
    padding: 96px 0;
}

.kidneycare_section::before {
    content: "";
    position: absolute;
    background-image: url(../images/kidneyfilters.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: skew(0deg, 5deg);
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.kidneycare_section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgb(255 0 0 / 49%), #ff0000);
    top: 0;
    left: 0;
    transform: skew(0deg, 5deg);
}

.kid_info_des {
    position: relative;
    text-align: center;
    z-index: 1;
    color: #fff;
    margin-bottom: 22px;
}

.kid_info_des::before {
    content: "";
    position: absolute;
}

.kid_info_des h2 {
    font-size: 53px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.kid_info_des h3 {
    font-size: 28px;
    text-transform: capitalize;
    margin: 0 0 5px;
}

.kidnyc_sec {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 0 50px;
}

.kidnyc_sec::before {
    content: "";
    position: absolute;
    top: 0;
}

.kd_fil_img {
    position: relative;
    overflow: hidden;
    border: 9px solid #f5c3c3;
    border-radius: 50%;
}

.kdnrow {
    position: relative;
    text-align: center;
    margin: 0px;
    z-index: 1;
}

.kd_list {
    position: relative;
    border-bottom: 2px dotted;
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 16px;
}

.kd_list:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

/*** 

====================================================================
	 	Testimonial Section
====================================================================

***/

.testimonial-section {
    position: relative;
    padding: 81px 0 52px;
}

.testimonial-head {
    margin-bottom: 31px;
}

.testimonial-section .auto-container:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 121px;
    top: 84px;
    left: 65px;
}

.testimonial-section .auto-container::after {
    position: absolute;
    content: "";
    left: 55px;
    width: 20px;
    height: 20px;
    top: 189px;
    background: #fff;
    border-radius: 50%;
}

.testimonial-carousel {
    position: relative;
    margin: 0 auto;
}

.testimonial-block {
    position: relative;
    padding-bottom: 31px;
}

.testimonial-block .inner-box {
    position: relative;
    background-color: #afffc2;
    padding: 77px 27px 20px;
    text-align: center;
    z-index: 9;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0%);
}

.testimonial-block .inner-box:before,
.testimonial-block .inner-box:after {
    position: absolute;
    left: 30px;
    top: 30px;
    height: 36px;
    width: 42px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-block .inner-box:after {
    left: auto;
    top: auto;
    right: 30px;
    bottom: 30px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.active .testimonial-block .inner-box:before,
.active .testimonial-block .inner-box:after {
    opacity: 1;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.testimonial-block .text {
    position: relative;
    display: block;
    font-size: 21px;
    line-height: 32px;
    color: #000000;
    font-weight: 300;
    margin-bottom: 25px;
}

.testimonial-block .info-box {
    position: relative;
}

.testimonial-block .name {
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #000000;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.testimonial-block .designation {
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #696478;
    margin-bottom: 5px;
}

.testimonial-block .thumb {
    position: relative;
    display: inline-block;
    height: 58px;
    width: 58px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 18px;
}

.testimonial-block:after,
.testimonial-block:before {
    position: absolute;
    left: 30px;
    right: 30px;
    height: 100%;
    bottom: 30px;
    margin: 0 auto;
    /* background-color: #e8e8e8; */
    content: "";
    z-index: 1;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
}

.testimonial-block:before {
    left: 60px;
    right: 60px;
    bottom: 0px;
    z-index: -1;
}

.testimonial-carousel .active .testimonial-block:before,
.testimonial-carousel .active .testimonial-block:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.testimonial-carousel .active .testimonial-block:before {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.testimonial-carousel .owl-nav {
    display: none;
}

.testimonial-carousel .owl-dots {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin: 7px 0 0;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 21px;
    width: 21px;
    border: 3px solid #00676e;
    opacity: 1;
    margin: 0 2px;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-carousel .owl-dot:hover,
.testimonial-carousel .owl-dot.active {
    opacity: 1;
    border: 3px solid #fa0605;
}

.testimnila_box.serviceBox {
    text-align: center;
    padding: 30px;
    position: relative;
    margin: 8px 8px 24px;
    background: #fff;
    border-radius: 16px;
    border: 9px solid #ececec;
    min-height: 219px;
    box-shadow: 0px 0px 10px #8b8b8b;
}

.testimnila_box.serviceBox:before {
    content: '';
    position: absolute;
}

.testimnila_box.serviceBox .service-icon {
    color: #00676e;
    font-size: 26px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.service_icon_btm {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 26px;
    color: #00676e;
}

.testimnila_box.serviceBox .title {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #00676e;
}

.testimnila_box.serviceBox .description {
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}

@media only screen and (max-width: 1199px) {
    .testimnila_box.serviceBox {
        margin: 0 0 40px;
    }
}

.sec-title h3 {
    color: #ff9f00;
}

.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;
    text-align: center;
}

.gg_review img {
    width: 250px;
}

.gg_review i {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #709938;
    border-radius: 50%;
    font-size: 28px;
    line-height: 48px;
    margin: 0 0 7px;
}

.ratings {
    position: relative;
    margin: 0 0 12px;
}

.facilites_title_head {
    position: absolute;
    left: 105px;
    font-family: 'Saira', sans-serif;
    text-transform: uppercase;
    font-size: 43px;
    top: 16rem;
    color: #f08533;
    right: 0;
    text-align: center;
    line-height: 63px;
}

.fac_row {
    position: relative;
    justify-content: center;
}

.fac_row::before {
    content: "";
    position: absolute;
}

.fac_row .col-md-3 {
    flex: 0 0 50%;
    max-width: 25%;
    padding: 0 10px;
}

.fac_row .col-md-3:nth-child(1),
.fac_row .col-md-3:nth-child(4) {
    margin-top: 60px;
}

.fac_block {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 12px;
    border: 7px solid #efefef;
    box-shadow: 0px 5px 5px #919191;
}

.fac_block::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 64%;
    background: linear-gradient(to top, #000000, transparent);
    bottom: 0;
    left: 0;
    z-index: 1;
}

.fac_block h3 {
    position: absolute;
    text-transform: capitalize;
    color: #fff;
    font-size: 18px;
    bottom: 13px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    padding: 0 51px;
    transition: all ease-in-out .9s;
}

.fac_block:hover h3 {
    font-size: 18px;
}

.facility_section {
    position: relative;
    padding: 0px 0 60px;
}

.fac_desc {
    position: absolute;
    left: 12px;
    bottom: 30px;
    z-index: 2;
    width: 48%;
    text-align: center;
    background: #eb131d;
    color: #ffffff;
    font-size: 16px;
    padding: 12px 11px;
    border-radius: 13px;
}

.emergency_section {
    position: relative;
    padding: 50px 0px 138px;
}

.emgecy_block {
    position: relative;
}

.emgr_img {
    position: relative;
    overflow: hidden;
    border-radius: 189px;
}

.emgr_img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #1e1e1e, transparent, #1e1e1e);
}

.emrg_block {
    position: absolute;
    width: 382px;
    left: 0px;
    right: 0px;
    margin: auto;
    top: -67px;
    text-align: center;
    padding: 90px 13px 0;
    height: 139%;
    background: #ffc667;
    border: 8px solid #1e1e1e;
    border-radius: 22px;
}

.emrg_block h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 41px;
    margin-bottom: 14px;
}

.emrg_block p {
    font-size: 26px;
    margin-bottom: 16px;
}

.emrg_block span {
    display: inline-block;
    background: #1e1e1e;
    color: #ffff;
    font-size: 22px;
    padding: 10px 14px;
    border-radius: 8px;
}

.emrg_block span a {
    display: inline-block;
    color: inherit;
}


/*** 

====================================================================
	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%;
    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: #148c95;
    box-shadow: none;
}

.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-color: rgb(241 241 241 / 51%); */
}

.main-footer:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.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;
}

.icon-star-gray {
    height: 51px;
    width: 43px;
}

.icon-star-gray-2 {
    height: 19px;
    width: 15px;
}

.icon-star-gray-3 {
    height: 27px;
    width: 31px;
}

.icon-balloon-gray {
    height: 277px;
    width: 217px;
}

.main-footer .footer-upper {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0px 17px;
    margin-top: 0;
}

.main-footer .footer-upper .footer-column {
    position: relative;
    margin-bottom: 16px;
}

.main-footer .footer-upper .footer-column:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 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: 700;
    color: #033638;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.main-footer .footer-widget .widget-title::before {
    content: "";
    position: absolute;
    width: 62px;
    height: 2px;
    left: 0;
    top: 32px;
}

.main-footer .footer-widget .serwidjet_title::before {
    width: 57%;
    height: 2px;
    left: initial;
    right: 103px;
    background: #00686f;
    top: 11px;
}

a:hover {
    color: #ed1b24;
    text-decoration: none;
}


/*Logo Widget*/

.logo-widget {
    position: relative;
    text-align: center;
}

.logo-widget .logo img {
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: 0;
    width: 331px;
}

.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;
    border-left: 2px solid red;
}

.main-footer .list li {
    position: relative;
    display: block;
    margin-bottom: 4px;
    padding-left: 14px;
}

.main-footer .list li:before {
    position: absolute;
    left: 0;
    top: 11px;
    height: 2px;
    width: 9px;
    border-radius: 5px;
    border-bottom: 2px solid red;
    content: "";
}

.main-footer .list li a {
    position: relative;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: inherit;
}

.main-footer .list li a:hover {
    color: #ed1b24;
}


/*COntact Widget*/

.main-footer .contact-widget {
    position: relative;
}

.main-footer .contact-info {
    position: relative;
}

.main-footer .contact-info li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
    padding-left: 44px;
    margin-bottom: 20px;
}

.main-footer .contact-info li:last-child {
    margin-bottom: 0;
}

.main-footer .contact-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    background: #e81f31;
    text-align: center;
    color: #ffffff;
}

.main-footer .contact-info li a {
    color: #000000;
    display: inline-block;
    transition: all 300ms ease;
}

.main-footer .contact-info li a:hover {
    color: #f72f67;
}

.main-footer .footer-bottom {
    position: relative;
    text-align: center;
}

.main-footer .footer-bottom:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .03;
    content: "";
}

.main-footer .footer-bottom .social-icon-two {
    position: relative;
    float: right;
}

.main-footer .footer-bottom .copyright {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    padding: 12px 0px;
    border-top: 1px solid #002c62;
}

.main-footer .footer-bottom .copyright a {
    color: #f74141;
}

.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: #1c1c1c;
    font-weight: 700;
}

.app_content .modal-header .close {
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(to left, #00686f, #f94040);
    opacity: 1;
    color: #fff;
    font-size: 31px;
    padding: 2px 10px;
    line-height: 39px;
}

.modal-dialog .btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 6px 30px;
    font-weight: 600;
    background: linear-gradient(to left, #00686f, #f94040);
    overflow: hidden;
    min-width: 123px;
    border-radius: 30px;
    border: 0px;
}

.bread_cumb {
    text-align: center;
    position: relative;
    padding: 176px 0 75px;
    background: #00686f;
    clip-path: polygon(0 1%, 100% 0, 100% 70%, 50% 100%, 50% 100%, 0 70%);
}

.bread_cumb::before {
    content: "";
    position: absolute;
}

.bread_cumb::after {
    content: "";
}

.bread_cumb h1 {
    text-transform: capitalize;
    color: #9ef8ff;
    font-weight: 600;
    font-size: 41px;
    margin-bottom: 14px
}

.bread_cumb ul {
    display: inline-block;
    list-style: none;
    background: #fc0000;
    padding: 4px 0px;
    border: 3px solid #e4e4e4;
    border-radius: 30px;
}

.bread_cumb ul li {
    display: inline-block;
    position: relative;
    padding: 0 16px;
    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: -9px;
    top: 0;
    color: #ffffff;
    font-size: 21px;
}

.bread_cumb ul li:last-child:before {
    display: none
}

.bread_cumb ul li a {
    display: block;
    color: inherit;
}

.cnt_in_section {
    position: relative;
    padding: 90px 0px 100px;
    min-height: 60vh;
}

.services_content_ h2 {
    font-size: 25px;
    font-weight: 600;
    margin: 15px 0 8px;
    color: #025156;
}

.services_content_ h3 {
    font-size: 21px;
    font-weight: 600;
    color: #f74141;
    margin: 22px 0 10px;
}

.services_content_ p {
    text-align: justify;
    margin-bottom: 11px;
    line-height: 26px;
}

.lisstyles {
    position: relative;
    padding-left: 27px;
}

.lisstyles li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    line-height: 27px;
}

.lisstyles li::before {
    position: absolute;
    left: 0;
    top: 8px;
    height: 10px;
    width: 10px;
    border-radius: 2px;
    background: red;
    content: "";
}

.inner_ser_pic img {
    padding: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px #afafaf;
    margin: 0px 0 20px;
}

.testimonial_timeline.main-timeline {
    position: relative;
    padding: 25px 0;
}

.testimonial_timeline.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.testimonial_timeline.main-timeline:before {
    content: '';
    background: #ccc;
    height: 100%;
    width: 25px;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 0;
}

.testimonial_timeline.main-timeline .timeline {
    width: calc(50% + 63px);
    margin: 0 0 30px;
    float: right;
    position: relative;
}

.testimonial_timeline.main-timeline .timeline-content {
    background: #ff3c3c;
    text-align: center;
    min-height: 120px;
    padding: 20px 30px 20px 160px;
    border-radius: 100px;
    display: block;
    position: relative;
    z-index: 1;
}

.testimonial_timeline.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.testimonial_timeline.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 #a5a5a5;
}

.testimonial_timeline.main-timeline .timeline-icon {
    color: #00686f;
    font-size: 45px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%);
    position: absolute;
    left: 15px;
    top: 50%;
}

.testimonial_timeline.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;
}

.testimonial_timeline.main-timeline .title {
    color: #f44141;
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.testimonial_timeline.main-timeline .description {
    font-size: 15px;
    line-height: 20px;
    margin: 0;
}

.testimonial_timeline.main-timeline .timeline:nth-child(even) {
    float: left;
}

.testimonial_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 20px 160px 20px 30px;
}

.testimonial_timeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
    border-radius: 0 100px 100px 0;
    left: 0;
    right: 130px;
}

.testimonial_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: 15px;
}

@media screen and (max-width:767px) {
    .testimonial_timeline.main-timeline:before {
        display: none;
    }

    .testimonial_timeline.main-timeline .timeline {
        width: 100%;
    }
}

@media screen and (max-width:576px) {

    .testimonial_timeline.main-timeline .timeline-content,
    .testimonial_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 145px 20px 20px;
        border-radius: 50px;
    }

    .testimonial_timeline.main-timeline .timeline-content:before,
    .testimonial_timeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
        top: 125px;
        right: 0;
        left: 0;
        border-radius: inherit;
    }

    .testimonial_timeline.main-timeline .timeline-icon,
    .testimonial_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateY(0) translateX(-50%);
        left: 50%;
        top: 10px;
        right: auto;
    }
}

.cnt_c_box.serviceBox {
    color: #333;
    background: #fc0000;
    text-align: right;
    padding: 0 20px 20px;
    overflow: hidden;
    position: relative;
    margin: 0 0 30px;
    z-index: 1;
    border-radius: 17px;
}

.cnt_c_box.serviceBox:before,
.cnt_c_box.serviceBox .service-icon:before,
.cnt_c_box.serviceBox .service-icon:after {
    content: "";
    position: absolute;
    top: 50%;
}

.cnt_c_box.serviceBox:before {
    background: #fff;
    width: calc(100% - 13px);
    height: calc(100% - 13px);
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    z-index: -1;
    border-radius: 15px;
}

.cnt_c_box.serviceBox .service-icon {
    color: #fff;
    background: red;
    font-size: 30px;
    text-align: center;
    line-height: 136px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin: -40px auto 20px;
}

.cnt_c_box.serviceBox .service-icon:before,
.cnt_c_box.serviceBox .service-icon:after {
    width: 10px;
    height: 100px;
    border-radius: 0 3px 3px 0;
    transform: translateY(-50%);
    left: 7px;
}

.cnt_c_box.serviceBox .service-icon:after {
    border-radius: 3px 0 0 3px;
    left: auto;
    right: 7px;
}

.cnt_c_box.serviceBox .title {
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 5px;
}

.cnt_c_box.serviceBox .description {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin: 0;
}

.contact-form {
    background: #eaeaea;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form .app_form h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-form .app_form .form-control {
    background-color: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 2px dotted #333;
    height: 44px;
    color: #000;
    border-color: #000;
}

.app_form .btn {
    background-color: #f14141;
    color: #fff;
    border: none;
}

.contact-form .app_form textarea.form-control {
    height: 70px;
    resize: none;
}


.map iframe {
    width: 100%;
    height: 364px;
}

.box {
    background: #014b50;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease 0s;
    margin-bottom: 30px;
}

.box:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.box img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease-out;
}

.box:hover img {
    opacity: 0.3;
    transform: scale(1.15);
}

.box .box-content {
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-50%) rotate(-360deg);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    transition: all 0.5s ease-out;
}

.box:hover .box-content {
    opacity: 1;
    transform: translateY(-50%) rotate(0);
}

.box .title {
    color: #ff761b;
    font-size: 25px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 3px;
}

.box .post {
    color: #fff;
    font-size: 16px;
    margin: 0 0 10px;
    display: block;
}

.box .icon {
    padding: 0;
    margin: 0;
    list-style: none;
}

.box .icon li {
    margin: 0 5px 0 0;
    display: inline-block;
}

.box .icon li a {
    color: #ffffff;
    background: #f24141;
    font-size: 20px;
    line-height: 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease 0s;
}

.box .icon li a:hover {
    color: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width:990px) {
    .box {
        margin: 0 0 30px;
    }
}

.fancybox-button--share {
    display: none;
}

.inner_abt_text p {
    text-align: center;
    line-height: 30px;
}

.inner_mv_blocks {
    position: relative;
    border: 8px solid #ccc;
    padding: 29px 8px;
    border-radius: 21px;
    background: linear-gradient(45deg, #effafb, white);
}

.innermvrow .col-md-4 {
    padding: 0 10px;
    background: transparent;
}

.innermvrow .col-md-4::before {
    content: none;
}

.innerbaatrow {
    margin-top: 40px;
}

.homehead {
    text-align: center;
    text-transform: uppercase;
    color: #00686f;
}

.homehead h1 {
    font-size: 40px;
}