@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,800;1,900&display=swap');
@import url('fontawesome-all.css');
@import url('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: #1e1e1e;
    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: #0098e0;
}

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: 15px;
    line-height: 28px;
    font-weight: 500;
    margin: 0;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    z-index: 9;
    overflow: hidden;
}

.page-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/bg.jpg);
}

.auto-container {
    position: relative;
    max-width: 1155px;
    padding: 0px 15px;
    margin: 0 auto;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

figure {
    margin-bottom: 0;
}

.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

.centered {
    text-align: center !important;
}


/*Btn Style One*/

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 21px;
    color: #1b95d0;
    padding: 5px 12px;
    border: 2px solid #004f77;
    font-weight: 600;
    overflow: hidden;
    border-radius: 30px;
    background-color: #fff;
}

.btn-style-one:hover {
    color: #ffffff;
    background: linear-gradient(to left, #004f77, #1d9ad6);
    border: 2px solid;
}

@keyframes rainbow {
    0% {
        background-color: #25bdd8;
    }

    25% {
        background-color: #5798fe;
    }

    50% {
        background-color: #7cbe47;
    }

    75% {
        background-color: #9c49fa;
    }

    100% {
        background-color: #ff4880;
    }
}

@-webkit-keyframes rainbow {
    0% {
        background-color: #25bdd8;
    }

    25% {
        background-color: #5798fe;
    }

    50% {
        background-color: #7cbe47;
    }

    75% {
        background-color: #9c49fa;
    }

    100% {
        background-color: #ff4880;
    }
}


/*Btn Style Two*/

.btn-style-two {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    padding: 25px 50px;
    font-weight: 700;
    overflow: hidden;
    border-radius: 5px;
    background-color: #1e2c67;
}

.btn-style-two .btn-title {
    position: relative;
}

.btn-style-two:hover {
    color: #1e2c67;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.btn-style-two:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}


/*Btn Style Three*/

.btn-style-three {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #f1ecff;
    font-weight: 500;
    padding: 10px 32px;
    background-color: #1a2940;
    overflow: hidden;
    border-radius: 5px;
    transition: all 300ms linear;
}

.btn-style-three .btn-title {
    position: relative;
}

.btn-style-three:hover {
    color: #1a2940;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-three:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.btn-style-three:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}


/*Btn Style Four */

.btn-style-four {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 500;
    overflow: hidden;
    border: 1px solid #333333;
    background-color: #333333;
}

.btn-style-four:hover {
    color: #333333;
    border: 1px solid #ffffff;
    -webkit-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    -moz-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    -ms-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    -o-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
    box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
}


/*=== Social Icon One ===*/

.social-icon-one {
    position: absolute;
    right: 13px;
    bottom: 46px;
    z-index: 99;
    width: 50px;
    text-align: center;
}

.social-icon-one li {
    position: relative;
    display: inline-block;
}

.social-icon-one li a {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 42px;
    width: 44px;
    height: 44px;
    background: rgb(255 255 255);
    color: #2095d1;
    text-align: center;
    font-weight: 400;
    border-radius: 50%;
    transition: all 300ms ease;
    margin: 3px 0;
    box-shadow: 0px 0px 10px #a6a6a6;
}

.social-icon-one li:nth-child(2) a {
    color: #f11c92;
}

.social-icon-one li:nth-child(3) a {
    color: #1db65d;
}

.social-icon-one li:nth-child(4) a {
    color: red;
}

.social-icon-one li a:hover {
    color: #fff;
    background: #c22f95;
}

.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;
    border-top: 2px dotted;
    border-bottom: 2px dotted;
    padding: 7px 0;
}

.social-icon-two li {
    position: relative;
    display: inline-block;
}

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 18px;
    width: 37px;
    height: 37px;
    line-height: 35px;
    color: #007bff;
    /* border: 1px solid; */
    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;
    background: #fff;
}

.social-icon-two li:nth-child(2) a {
    color: red;
}

.social-icon-two li:nth-child(3) a {
    color: #e014d0;
}

.social-icon-two li:nth-child(4) a {
    color: #ed1b24;
}

.social-icon-two li a:hover {
    color: #ffffff;
    background: #008acb;
}

.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%;
}

.f_map_widjet span {
    width: 117px;
    position: absolute;
    right: -50px;
    bottom: -37px;
    border: 7px solid #fff;
}


/*=== List Style One ===*/

.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #222222;
    font-weight: 500;
    padding-left: 25px;
    margin-bottom: 13px;
}

.list-style-one li:before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 14px;
    line-height: 26px;
    padding: 0px;
    color: #ff4788;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
    color: #44bce2;
}


/*=== List Style Two ===*/

.list-style-two {
    position: relative;
}

.list-style-two li {
    position: relative;
    font-size: 15px;
    line-height: 25px;
    color: #666666;
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 15px;
}

.list-style-two li:before {
    content: "\f182";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 15px;
    line-height: 25px;
    padding: 0px;
    color: #666666;
    font-family: "LineAwesome";
}

.list-style-two li a:hover {
    color: #44bce2;
}

.theme_color {
    color: #fa7720;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.tabs-box {
    position: relative;
}

.tabs-box .tab {
    display: none;
}

.tabs-box .active-tab {
    display: block;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.svg);
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.dropdown-toggle::after {
    display: none;
}

.fa {
    line-height: inherit;
}


/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #036496;
    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: #0699d9;
}


/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header {
    position: absolute;
    z-index: 999;
    width: 100%;
    background: #fff;
}

.main-header.fixed-header {}

.vija_ {
    position: absolute;
    left: 350px;
    font-size: 15px;
    font-weight: 600;
    top: 17px;
    background: #333;
    color: #fff;
    line-height: 29px;
    padding: 0 7px;
    border-radius: 4px;
}

.main-header .header-top {
    position: absolute;
    text-align: right;
    right: 170px;
    z-index: 99;
    top: 10px;
}

.main-header .auto-container {
    max-width: 1155px;
}


/* Top Left*/

.main-header .header-top .top-left {
    position: relative;
    background: transparent;
    padding: 0;
    display: inline-block;
}

.main-header .header-top .top-left::before {
    content: "";
    position: absolute;
}

.main-header .header-top .info-list {
    position: relative;
    display: inline-block;
}

.main-header .header-top .info-list li {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 12px;
    color: #1c1c1c;
    font-weight: 500;
    padding: 0px 6px;
    border-right: 1px dashed;
}

.main-header .header-top .info-list li a {
    display: inline-block;
    color: #333;
    -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: #0080be;
}

.main-header .header-top .info-list li span {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    color: #ffffff;
    font-size: 15px;
    line-height: 31px;
    width: 32px;
    height: 32px;
    background: linear-gradient(to left, #035d8b, #15b8ff);
    font-weight: 500;
    text-align: center;
    border-radius: 50%;
}

.main-header .header-top .top-right {
    position: relative;
    float: right;
}

.main-header .header-top .login-info {
    position: relative;
}

.social-links {
    position: absolute;
    z-index: 9;
    width: 40px;
    left: 12px;
    top: 20rem;
}

.main-header .header-top .login-info li {
    position: relative;
    float: left;
    font-size: 14px;
    line-height: 30px;
    color: #c8bee3;
    font-weight: 700;
    padding: 10px 0;
    margin-left: 13px;
}

.main-header .header-top .login-info li a {
    display: inline-block;
    color: #c8bee3;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-top .login-info li a:hover {
    color: #25bdd8;
}


/*=== Header Upper ===*/

.main-header .header-upper {
    position: relative;
    text-align: right;
}

.main-header .header-upper .logo-outer {
    position: absolute;
    text-align: center;
    z-index: 999;
    width: 345px;
    top: 3px;
    left: 0;
}

.main-header .header-upper .logo-outer:before {
    position: absolute;
    right: 100%;
    top: 0;
    background-color: #ffffff;
    content: "";
}

.main-header .header-upper .logo {
    margin: auto;
}

.main-header .header-upper .logo:before {
    position: absolute;
    margin: auto;
    content: "";
}

.main-header .header-upper .logo img {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.main-header .header-upper .social-links {
    position: absolute;
    padding: 0;
    margin-left: 0;
    right: 5%;
    top: 14px;
}

.main-header .nav-outer {
    position: relative;
    display: inline-block;
    margin: auto;
    top: 0;
    padding: 40px 0px 0 0px;
    border-radius: 0px 30px 30px 0px;
}

.appointment {
    top: 12px;
    position: absolute;
    right: 24px;
    background: #bd1e8d;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    padding: 5px 17px;
    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 8px;
    margin-left: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    opacity: 1;
    padding: 0 0;
    color: #000000;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:hover>a {
    color: #1d9ad6;
}

.main-menu .navigation>li.current>a {}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 228px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 0px 0px;
    background-color: #ffffff;
    border-top: 3px solid #1d9ad6;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.main-menu .navigation>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    display: block;
    background: #1d9ad6;
}

.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: 2px 14px;
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #181818;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.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: #036597;
    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;
    background-image: url(../images/icons/curve.png);
    content: "";
}

.page-banner.curve-offwhite:after {
    background-image: url(../images/icons/curve-offwhite.png);
}

.page-banner h1 {
    position: relative;
    font-size: 80px;
    color: #ffffff;
    line-height: 1.2em;
    font-weight: 700;
}

.page-banner .home-btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -43px;
    margin-bottom: -43px;
    height: 86px;
    width: 86px;
    line-height: 86px;
    z-index: 9;
    background-color: #ffffff;
    color: #1e2c67;
    font-size: 30px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease;
}

.page-banner .home-btn:hover {
    color: #ffffff;
    background-color: #1e2c67;
}

.parallax-scene {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.anim-icons .icon {
    position: absolute !important;
    background-repeat: no-repeat;
    background-position: center;
}


/*** 

====================================================================
		Section Title
====================================================================

***/

.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 33px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: normal;
    color: #999999;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.2em;
    color: #004467;
    font-weight: 600;
    padding-top: 20px;
    text-transform: uppercase;
}

.sec-title h2:before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 90px;
    height: 4px;
    content: "";
    border-radius: 2px;
    border-bottom: 2px solid #0099e1;
    right: 0;
    margin: auto;
}

.sec-title h3 {
    color: #008acb;
    font-size: 22px;
}

.sec-title.light h3 {
    color: #fff;
}

.sec-title .text {
    position: relative;
    font-size: 15px;
    line-height: 28px;
    color: #555555;
    font-weight: 300;
    margin-top: 20px;
}

.sec-title.text-center h2:before {
    right: 0;
    margin: 0 auto;
}

.sec-title.light h2 {
    color: #ffffff;
}


/*** 

====================================================================
		Banner Section
====================================================================

***/

.banner-section {
    position: relative;
}

.banner-section:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 23px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    z-index: 9;
}

.banner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.banner {
    background-image: url(../images/main-slider/1.jpg);
}

.banner-carousel {
    position: relative;
}

.banner-carousel .slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 220px 0;
}

.banner-carousel .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-carousel .slide-item .image-layer:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #09031c;
    opacity: .50;
    content: "";
}

.banner-carousel .content-box {
    position: relative;
    max-width: 810px;
    margin: 0 auto;
    text-align: center;
    padding: 0 70px;
}

.banner-carousel .content-box .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.banner-carousel .content-box .icon-box .icon-star-1,
.banner-carousel .content-box .icon-box .icon-star-2 {
    position: absolute;
    left: 0;
    top: 20px;
}

.banner-carousel .content-box .icon-box .icon-star-2 {
    right: 0;
    left: auto;
}

.banner-carousel .active .content-box .icon-box {
    opacity: 1;
}

.icon-star-1 {
    height: 95px;
    width: 57px;
    background-image: url(../images/icons/icon-star.png);
}

.icon-star-2 {
    height: 95px;
    width: 57px;
    background-image: url(../images/icons/icon-star-2.png);
}

.banner-carousel .content-box .title {
    display: block;
    font-size: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .active .content-box .title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-carousel .content-box h2 {
    display: block;
    font-size: 100px;
    line-height: .9em;
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    margin-bottom: 40px;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .active .content-box h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.banner-carousel .content-box .btn-box {
    position: relative;
    opacity: 0;
    z-index: 9;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .active .content-box .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.banner-carousel .active .content-box .btn-box a {
    font-size: 22px;
}

.banner-section.style-two .banner-carousel .slide-item {
    padding: 190px 0;
}

.banner-section.style-two .content-box {
    text-align: left;
    max-width: 100%;
    padding: 0;
}

.banner-section.style-two .content-box .icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.banner-section .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -28px;
    width: 100%;
    height: 0;
}

.slides {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.slide1 {
    background-image: url(../images/main-slider/1.jpg);
}

.slide2 {
    background-image: url(../images/main-slider/2.jpg);
}

.slide3 {
    background-image: url(../images/main-slider/3.jpg);
}

.slide4 {
    background-image: url(../images/main-slider/4.jpg);
}

.slide5 {
    background-image: url(../images/main-slider/5.jpg);
}

.banner-section .owl-nav .owl-prev,
.banner-section .owl-nav .owl-next {
    position: absolute;
    left: 30px;
    top: 0;
    background: none;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    text-align: center;
    line-height: 52px;
    color: #ffffff;
    font-size: 20px;
    opacity: 0.30;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-section .owl-nav .owl-next {
    left: auto;
    right: 30px;
}

.banner-section .owl-nav .owl-prev:hover,
.banner-section .owl-nav .owl-next:hover {
    opacity: 1;
}

.banner-section .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
}

.banner-section .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 8px solid #ffffff;
    margin: 0px 2px;
    opacity: 0.20;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-section .owl-dot:last-child {
    margin-bottom: 0;
}

.banner-section .owl-dot.active,
.banner-section .owl-dot:hover {
    opacity: 1;
}

.banner_carousel {
    position: relative;
}

.banner_carousel::before {
    content: "";
    position: absolute;
    right: 0;
    z-index: 1;
}

.banner_carousel .owl-dots {
    position: absolute;
    right: 0;
    z-index: 2;
    padding-top: 0;
    bottom: 35px;
    text-align: center;
    width: auto;
    left: 0;
}

.banner_carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 27px;
    height: 6px;
    background: #054076;
    margin: 0px 3px;
    transition: all cubic-bezier(0.8, -0.11, 0.32, 1.18) .9s;
}

.banner_carousel .owl-dots .owl-dot.active {
    background: #008acb;
    width: 41px;
}


/*** 

====================================================================
		about Section
====================================================================

***/

.top_abt_section {
    position: relative;
    padding: 44px 0 48px;
}

.top_abt_section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 171px;
    top: 0;
}

.tp_abt_row .col-md-3 {
    /* flex: 0 0 20%; */
    /* max-width: 20%; */
    padding: 0px 8px;
}

.tp_abt_row .col-md-3::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 67px;
    top: 0;
    right: 0;
    z-index: -1;
}

.tp_abt_row {
    position: relative;
    margin-top: 0;
    z-index: 2;
}

.tp_list {
    position: relative;
    text-align: center;
    padding: 17px 10px;
    margin-top: 0;
    display: block;
    margin-bottom: 16px;
}

.tp_list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top, #f1f1f1, #e4e4e4);
    left: 0;
    top: 0;
}

.tp_list h3 {
    text-transform: capitalize;
    font-size: 19px;
    text-align: center;
    font-weight: 500;
    margin: 0px 0 18px;
    color: #181818;
    min-height: 48px;
}

.tp_icon {
    position: relative;
    display: inline-block;
    width: 139px;
    height: 139px;
    background: #fff;
    border: 5px solid #d5d5d5;
    border-radius: 50%;
    line-height: 122px;
    box-shadow: 0px 10px 5px #838383;
}

.tp_icon img {
    transition: all cubic-bezier(0.99, 0.17, 0.46, 0.91) .8s;
}

.tp_list:hover .tp_icon img {
    transform: rotate(360deg);
}

.offers-section {
    position: relative;
    padding: 0px 0 98px;
}

.offers-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    width: 41px;
    height: 100px;
    background: #005586;
}

.offers-section::after {
    content: "";
    position: absolute;
    left: initial;
    right: 0px;
    transform: skew(0deg, 10deg);
}

.about-content {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    z-index: 1;
}

.about-content span {
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
    color: #0793d6;
    border-radius: 28px;
    border: 2px dotted;
    padding: 4px 12px;
    background: #fff;
}

.about-content h2 {
    text-transform: uppercase;
    color: #004f77;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 64px;
}

.hm_content {
    padding-left: 0;
}

.hm_content p {
    text-align: justify;
}

.hm_content a {
    color: #0098e0;
}

.about-content h3 {
    text-transform: uppercase;
    color: #bd1c8c;
    margin-bottom: 25px;
    font-size: 22px;
}

.about-content h3::before,
.about-content h3::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    background-color: #bd1c8c;
    left: 44px;
    top: 16px;
}

.about-content h3::after {
    left: initial;
    right: 44px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 36px;
}

.abtn_btmrow {
    align-items: center;
    margin: 51px 0 0;
    position: relative;
}

.abt_b_list {
    text-align: center;
    background: linear-gradient(to left, #ebebeb, transparent);
    padding: 27px 17px;
}

.abtn_btmrow .col-md-4:nth-child(2) .abt_b_list {
    background: #fff;
    padding: 64px 12px;
    border: 12px solid #ececec;
}

.abtn_btmrow .col-md-4:nth-child(3) .abt_b_list {
    background: linear-gradient(to right, #ebebeb, transparent);
}

.abt_b_pic {
    position: relative;
}

.abt_b_list h3 {
    font-size: 25px;
    margin: 5px 0 6px;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 2px dotted;
    color: #008acb;
    font-weight: 600;
}

.abt_b_list p {
    margin: 0px;
}

.abtn_btmrow .col-md-4 {
    padding: 0px;
}

.about_pic {
    border: 11px solid #e9edf5;
}

.abtbg {
    position: absolute;
    left: -87px;
    top: -73px;
    width: 36%;
    opacity: .6;
}

.abtbg img {
    width: 100%;
}

.why_pic_ {
    position: relative;
    border: 10px solid #f7f7f7;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: 0;
}

.why_info_dsec {
    display: block;
}

.why_info_dsec h2 {
    text-transform: uppercase;
    font-weight: 600;
}

.why_info_dsec h3 {
    color: #bf1c8c;
    margin: 4px 0 3px;
}

.why_info_dsec p {
    margin-top: 10px;
}

.arc_quote {
    position: relative;
    text-align: center;
    font-size: 36px;
    padding: 25px 44px;
    line-height: 46px;
    border: 2px solid #005586;
    border-radius: 43px;
    background: #f5f5f5;
    margin: 55px 0 0;
    font-weight: 300;
}

.arc_quote span {
    color: #005c8b;
    text-transform: uppercase;
    font-weight: 600;
}


/* services */


/*** 

====================================================================
		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;
}


/*** 

====================================================================
		Welcome Section Two
====================================================================

***/

.welcome-section-two {
    position: relative;
    padding: 120px 0;
}

.welcome-section-two .image-column {
    position: relative;
    margin-bottom: 50px;
}

.welcome-section-two .image-column .inner-box {
    position: relative;
    display: block;
}

.welcome-section-two .image-column .image {
    position: relative;
    display: block;
    border-radius: 7px;
    margin-bottom: 0;
    overflow: hidden;
}

.welcome-section-two .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 7px;
}

.welcome-section-two .image-column .image:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    opacity: 0.70;
    background: -webkit-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    background: -ms-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.welcome-section-two .image-column .image:hover:after {
    height: 100%;
    opacity: 1;
}

.welcome-section-two .image-column .icon-box {
    position: absolute;
    left: 50%;
    bottom: 50%;
    margin-left: -43px;
    margin-bottom: -43px;
    width: 84px;
    height: 84px;
    line-height: 84px;
    text-align: center;
    font-size: 36px;
    background: #ff4789;
    color: #ffffff;
    border-radius: 50%;
    -webkit-transition: transform 600ms ease;
    -moz-transition: transform 600ms ease;
    -ms-transition: transform 600ms ease;
    -o-transition: transform 600ms ease;
    transition: transform 600ms ease;
    z-index: 1;
}

.welcome-section-two .image-column:hover .icon-box {
    background-color: #25bdd8;
    -webkit-transform: scale(-1.3) rotate(-180deg);
    -moz-transform: scale(-1.3) rotate(-180deg);
    -ms-transform: scale(-1.3) rotate(-180deg);
    -o-transform: scale(-1.3) rotate(-180deg);
    transform: scale(-1.3) rotate(-180deg);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.welcome-section-two .image-column:nth-child(1) .icon-box {
    background: #ff4789;
}

.welcome-section-two .image-column:nth-child(2) .icon-box {
    background: #25bdd8;
}

.welcome-section-two .image-column:nth-child(3) .icon-box {
    background: #f9b001;
}

.welcome-section-two .image-column:nth-child(1) .image:after {
    background: -webkit-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    background: -ms-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(bottom, #ff4789, rgba(0, 0, 0, 0));
}

.welcome-section-two .image-column:nth-child(2) .image:after {
    background: -webkit-linear-gradient(bottom, #25bdd8, rgba(0, 0, 0, 0));
    background: -ms-linear-gradient(bottom, #25bdd8, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(bottom, #25bdd8, rgba(0, 0, 0, 0));
}

.welcome-section-two .image-column:nth-child(3) .image:after {
    background: -webkit-linear-gradient(bottom, #f9b001, rgba(0, 0, 0, 0));
    background: -ms-linear-gradient(bottom, #f9b001, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(bottom, #f9b001, rgba(0, 0, 0, 0));
}

.welcome-section-two .text {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 40px;
    color: #696478;
    font-weight: 400;
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 50px;
    text-align: center;
}

.welcome-section-two .btn-box {
    position: relative;
    text-align: center;
}


/*** 

====================================================================
		About Section
====================================================================

***/

.about-section {
    position: relative;
    padding: 120px 0 90px;
    background-color: #f2f5f6;
}

.about-section .icon-star-3 {
    right: -60px !important;
    top: 140px !important;
    left: auto !important;
}

.about-section .icon-star-4 {
    left: -160px !important;
    bottom: 260px !important;
    top: auto !important;
}

.about-section .icon-sun {
    right: -215px !important;
    bottom: 220px !important;
    top: auto !important;
    left: auto !important;
}

.about-section .sec-title .text {
    font-size: 22px;
    line-height: 40px;
    color: #696478;
    margin-top: 40px;
}

.about-section .text-block {
    position: relative;
    margin-bottom: 30px;
}

.about-section .text-block .inner-box {
    position: relative;
    background-color: #25bdd8;
    padding: 60px 55px 60px;
    border-radius: 10px;
}

.about-section .text-block .icon {
    position: relative;
    display: block;
    font-size: 64px;
    line-height: 1em;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-section .text-block h4 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
}

.about-section .image-block {
    position: relative;
    margin-bottom: 30px;
}

.about-section .image-block .image {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px;
}

.about-section .image-block .image img {
    display: block;
    width: 100%;
    height: auto;
}


/***

====================================================================
			Fun Fact Section
====================================================================

***/

.fun-fact-section {
    position: relative;
    padding: 110px 0 70px;
    border-top: 1px solid #e8e6ec;
}

.fun-fact-section .fact-counter {
    position: relative;
}

.fun-fact-section .counter-column {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.fun-fact-section .count-box {
    position: relative;
    font-size: 60px;
    line-height: 1em;
    color: #1e2c67;
    font-weight: 400;
}

.fun-fact-section .count-box .count-text {
    position: relative;
    display: inline-block;
    font-size: 60px;
    line-height: 1em;
    color: #1e2c67;
    font-weight: 400;
}

.fun-fact-section .counter-title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #696478;
    padding-bottom: 30px;
    margin-top: 12px;
    font-family: 'Exo', sans-serif;
}

.fun-fact-section .counter-title:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    width: 30px;
    background-color: #25bdd8;
    content: "";
    border-radius: 2px;
}

.fun-fact-section .counter-column:nth-child(2) .counter-title:before {
    background-color: #ff4788;
}

.fun-fact-section .counter-column:nth-child(3) .counter-title:before {
    background-color: #5fc24b;
}

.fun-fact-section .counter-column:nth-child(4) .counter-title:before {
    background-color: #f9b001;
}


/*** 

====================================================================
		Program Section
====================================================================

***/

.program-section {
    position: relative;
    padding: 0px 0 64px;
}

.program-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 600px;
    right: 0;
    left: 0;
    top: 87px;
    background-image: url(../images/serbg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(50% 0%, 100% 30%, 100% 70%, 50% 100%, 50% 100%, 0 70%, 0 30%);
}

.program-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 600px;
    left: 0;
    top: 87px;
    clip-path: polygon(50% 0%, 100% 30%, 100% 70%, 50% 100%, 50% 100%, 0 70%, 0 30%);
    background: rgb(0 69 105 / 77%);
}

.whatwedo {
    position: relative;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    color: #e01a23;
    text-align: center;
}

.ser_head p {
    color: #202020;
    font-size: 18px;
}

.ser_head.sec-title {
    position: relative;
    left: 0;
    top: 0;
    width: 330px;
    height: 330px;
    background: #009bdf;
    color: #fff;
    margin: auto;
    z-index: 99;
    text-align: center;
    border-radius: 50%;
    padding: 51px 31px 0;
    border: 10px solid #fff;
    box-shadow: 0px 0px 10px #333;
}

.ser_head.sec-title h3,
.ser_head.sec-title h2,
.ser_head.sec-title p {
    color: #fff;
}

.services_slider_section {
    position: relative;
    margin-top: 64px;
}

.ser_list_slides {
    position: relative;
    text-align: center;
}

.services_list_slider .owl-item .ser_img_ img {
    width: auto;
    display: inline-block;
    filter: grayscale(1);
    transition: all ease-in-out .8s;
    transform: sc;
}

.services_list_slider .owl-item.center.active .ser_img_ img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.ser_img_ {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 31px;
    transition: all ease-in-out .8s;
    transform: scale(0.7);
}

.services_list_slider .owl-item.center.active .ser_img_ {
    transform: scale(1);
}

.ser_img_::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0px;
    bottom: 0px;
    margin: auto;
    background: rgb(32 32 32 / 17%);
    z-index: 1;
    transition: all cubic-bezier(0.81, -0.09, 0.23, 1.1) .8s;
    border-radius: 31px;
}

.services_list_slider .owl-item.center.active .ser_img_::before {
    width: 0%;
    height: 0%;
}

.services_list_slider .owl-item .ser_icon_ {
    position: absolute;
    bottom: 0px;
    width: 81px;
    height: 95px;
    opacity: 0;
    padding: 12px;
    visibility: hidden;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    background: linear-gradient(to top, #009bdf, #005586);
    border-radius: 39px 39px 0px 0px;
    transition: all cubic-bezier(0.81, -0.09, 0.23, 1.1) .9s;
}

.services_list_slider .owl-item .ser_icon_ img {
    width: auto;
    display: inline-block;
}

.services_list_slider .owl-item.center.active .ser_icon_ {
    opacity: 1;
    visibility: visible;
    bottom: 211px;
}

.services_list_slider .owl-dots {
    text-align: center;
    margin-top: 23px;
}

.services_list_slider .owl-dots .owl-dot {
    display: inline-block;
    width: 23px;
    height: 6px;
    margin: 0 4px;
    background: #005586;
}

.services_list_slider .owl-dots .owl-dot.active {
    background-color: #008acb;
}

.ser_info_desc {
    position: relative;
    background: linear-gradient(to top, #e9e9e9, white);
    width: 86%;
    margin: -71px auto 14px;
    padding: 22px 7px;
    box-shadow: 0px 4px 5px #858585;
    border-radius: 27px;
    z-index: 1;
}

.ser_info_desc h3 {
    text-transform: capitalize;
    font-size: 21px;
    margin: 0 0 3px;
    font-weight: 600;
    color: #0079b4;
    min-height: 50px;
}

.ser_info_desc p {
    line-height: 24px;
}

.ser_info_desc a {
    display: inline-block;
    background: #005586;
    color: #fff;
    padding: 3px 13px;
    border-radius: 30px;
    margin: 11px 0 0;
}

.ser_info_desc a:hover {
    background: #009BDF;
    color: #fff;
}

.ser_btm {
    text-transform: uppercase;
    font-size: 44px;
    text-align: center;
    margin-top: 49px;
    border-top: 2px dotted;
    padding-top: 20px;
}

.werare_specialised {
    text-align: center;
    margin-top: 37px;
}

.werare_specialised h3 {
    text-transform: capitalize;
    font-size: 30px;
    color: #000;
    margin: 0 0 15px;
}

.werare_specialised ul {
    display: inline-block
}

.werare_specialised ul li {
    display: inline-block;
}

.werare_specialised ul li a {
    display: block;
    padding: 10px 21px;
    font-size: 19px;
    border-radius: 30px;
    background: #e9d6e3;
    color: #000;
    margin: 0 0 5px;
}

.werare_specialised ul li a:hover {
    background: #BD1C8C;
    color: #fff;
}

/* team */

.team_section {
    padding: 0px 0px 81px;
    position: relative;
}

.team_head {
    text-align: center;
}

.team_head h2 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 42px;
    margin: 0 0 35px;
    display: inline-block;
    border-bottom: 2px solid;
}

.team_head h2 span {
    color: #e01a23;
}

.teamrow_ .col-md-6 {
    padding: 0px 3px;
}

.teamrow_ .col-md-6:nth-child(1),
.teamrow_ .col-md-6:nth-child(4) {
    /* background-color: #ffeeee; */
}

.teamrow_ .col-md-6:hover {
    /* background: #e01a23; */
    /* color: #fff; */
}

.team_list {
    position: relative;
    text-align: center;
    padding: 20px;
    box-shadow: inset 0px 0px 6px #bdbaba;
    margin-bottom: 6px;
    cursor: pointer;
}

.team_pic {
    display: inline-block;
    width: 282px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px dotted;
    padding: 11px;
    background: #fff;
    margin: 0 0 13px;
}

.team_pic img {
    border-radius: 50%;
    box-shadow: 0px 0px 7px #a0a0a0;
}

.team_info_ {
    display: block;
}

.team_info_ h3 {
    text-transform: uppercase;
    font-weight: 600;
}

.team_info_ h4 {
    font-size: 17px;
    margin: 3px 0 5px;
    /* color: #e01a23; */
}

.teamrow_ .col-md-6:hover h4 {
    /* color: #fff; */
}

.team_info_ h5 {
    font-size: 18px;
}

.asahcmaab {
    text-align: center;
    padding: 25px 0;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #7e7e7e;
}

.asahcmaab h2 {
    font-size: 27px;
    font-weight: 300;
    margin-top: 0;
    display: inline-block;
    color: #fff;
}

.asahcmaab h2:before {
    content: '';
    display: inline-block;
    position: relative;
    top: 6px;
    left: 234px
}

.asahcmaab p {
    color: #fff;
    font-size: 28px;
    margin: 0 0 12px;
    text-transform: uppercase
}

.asahcmaab h2 a {
    text-decoration: none;
    outline: 0;
    color: #fff;
    margin-left: 8px;
    background: #009bdf;
    padding: 4px 14px;
    border-radius: 10px;
    display: inline-block;
    font-size: 20px;
}

.f_g_row .col-md-6 {
    padding: 0 7px;
}

.fg_list {
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
}


/*** 

====================================================================
		Newsletter Section
====================================================================

***/

.newsletter-section {
    position: relative;
    padding: 0px 0 74px;
    color: #fff;
    text-align: center;
    margin: 0px 0 0;
}

.newsletter-section .auto-container::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 10px;
    background: linear-gradient(to left, #008acb, transparent, #008acb);
    bottom: -47px;
    left: 0;
    right: 0;
    margin: auto;
}

.about-widget p {
    color: #fff;
    line-height: 25px;
}

.add_bar_row .col-md-4 {
    border-right: 1px solid #7e7e7e;
    padding: 17px 9px;
}

.add_bar_row .col-md-4:nth-child(3) {
    border-right: 0px;
}

._addre_bar i {
    width: 36px;
    height: 36px;
    background: #009bdf;
    color: #ffffff;
    border-radius: 4px;
    font-size: 15px;
    line-height: 36px;
    margin-bottom: 15px;
}

._addre_bar h5 {
    font-weight: 400;
    font-size: 15px;
}

.newsletter-section::before,
.newsletter-section::after {
    content: "";
    left: 0px;
    top: 0;
    position: absolute;
}

.newsletter-section::after {
    transform: skew(0deg, 9deg);
    left: initial;
    right: 0px;
    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 {
    max-width: 1245px;
    margin: auto;
}


/*Subscribe Form*/

.subscribe-form {
    position: relative;
}

.subscribe-form .form-group {
    position: relative;
    display: block;
    margin: 0px;
    width: 100%;
    padding-right: 200px;
}

.newsletter-section .form-control {
    height: 45px;
    background: transparent;
    color: #fff;
}

.newsletter-section .form-control::placeholder {
    color: #eee;
}

.subscribe-form .form-group .icon {
    position: absolute;
    left: 24px;
    top: 20px;
    z-index: 1;
    color: #888888;
    font-size: 16px;
    line-height: 1em;
}

.subscribe-form .form-group input[type="text"],
.subscribe-form .form-group input[type="tel"],
.subscribe-form .form-group input[type="email"],
.subscribe-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    line-height: 30px;
    font-size: 16px;
    color: #858687;
    font-weight: 500;
    background: #ffffff;
    padding: 25px 40px;
    border-radius: 0px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.subscribe-form .form-group input[type="submit"],
.subscribe-form .form-group button {
    position: absolute;
    right: 15px;
    top: 0px;
    min-width: 185px;
    height: 100%;
    border-radius: 0px;
    background: #5dc575;
}

section.tips-secrtion {
    padding: 62px 0 0;
    position: relative;
}

.tips-row-section {
    position: relative;
}

.tips-row-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #e81f31;
    left: -17px;
    top: -17px;
}

.tips-row-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #e81f31;
    right: -17px;
    top: -17px;
    z-index: -1;
}

.tips-desc {
    position: relative;
    background: #fefefe;
    padding: 0;
    left: 0;
    margin-top: 0;
    width: 100%;
    bottom: 0;
}

.tips-desc h5 {
    position: relative;
    font-size: 26px;
    color: #333;
}

.tips-desc h3 {
    text-transform: uppercase;
    margin-bottom: 13px;
    color: #e81f31;
    font-weight: 600;
    font-size: 39px;
}

.tips-list p {
    position: relative;
    padding-left: 24px;
    color: #151515;
    font-weight: 500;
    line-height: 31px;
}

.tips-list p:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    border-bottom: 2px solid #333;
    left: 0;
    top: 13px;
}


/*** 

====================================================================
		Team Section
====================================================================

***/

.team-section {
    position: relative;
    padding: 67px 0;
    background: #1a144c;
    background-image: url(../images/facilities.jpg);
    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: 0px 0px 80px;
}

.why_section {
    position: relative;
    padding: 0px 0px 51px;
}

.whylist {
    position: relative;
    text-align: center;
    padding: 0 34px 19px;
    margin-bottom: 20px;
}

.whylist::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 70%;
    border: 1px dashed #333;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.why_pic {
    position: relative;
    display: inline-block;
    background: #ffcb71;
    padding: 36px 15px;
    box-shadow: 0px 0px 10px #7e7e7e;
    border-radius: 58px;
    margin: 0 0 14px;
    border: 4px solid #ffffff;
}

.why_info {
    position: relative;
}

.why_info h3 {
    font-size: 20px;
}


/*** 

====================================================================
	 	Testimonial Section
====================================================================

***/

.testimonial-section {
    position: relative;
    padding: 52px 0 69px;
}

.testimonial-head {
    margin-bottom: 31px;
}

.testimonial-section:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}

.testimonial-section::after {
    position: absolute;
    content: "";
}

.testimonial-carousel {
    position: relative;
    margin: 0 auto;
}

.testimonial-block {
    position: relative;
    padding-bottom: 31px;
}

.testimonial-block .inner-box {
    position: relative;
    background-color: #afffc2;
    padding: 77px 27px 20px;
    text-align: center;
    z-index: 9;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0%);
}

.testimonial-block .inner-box:before,
.testimonial-block .inner-box:after {
    position: absolute;
    left: 30px;
    top: 30px;
    height: 36px;
    width: 42px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-block .inner-box:after {
    left: auto;
    top: auto;
    right: 30px;
    bottom: 30px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.active .testimonial-block .inner-box:before,
.active .testimonial-block .inner-box:after {
    opacity: 1;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.testimonial-block .text {
    position: relative;
    display: block;
    font-size: 21px;
    line-height: 32px;
    color: #000000;
    font-weight: 300;
    margin-bottom: 25px;
}

.testimonial-block .info-box {
    position: relative;
}

.testimonial-block .name {
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #000000;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.testimonial-block .designation {
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #696478;
    margin-bottom: 5px;
}

.testimonial-block .thumb {
    position: relative;
    display: inline-block;
    height: 58px;
    width: 58px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 18px;
}

.testimonial-block:after,
.testimonial-block:before {
    position: absolute;
    left: 30px;
    right: 30px;
    height: 100%;
    bottom: 30px;
    margin: 0 auto;
    /* background-color: #e8e8e8; */
    content: "";
    z-index: 1;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
}

.testimonial-block:before {
    left: 60px;
    right: 60px;
    bottom: 0px;
    z-index: -1;
}

.testimonial-carousel .active .testimonial-block:before,
.testimonial-carousel .active .testimonial-block:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.testimonial-carousel .active .testimonial-block:before {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.testimonial-carousel .owl-nav {
    display: none;
}

.testimonial-carousel .owl-dots {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin: 5px 0 0;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 21px;
    width: 21px;
    border: 3px solid #035681;
    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 #e81aa9;
}

.testimnila_box.serviceBox {
    text-align: center;
    padding: 56px 22px;
    position: relative;
    margin: 0 0 27px;
    background: #bd1c8c;
    border-radius: 16px;
}

.testimnila_box.serviceBox:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: auto;
    width: 75%;
    height: 70px;
    box-shadow: 0px 9px 17px #6a6a6a;
}

.testimnila_box.serviceBox .service-icon {
    font-size: 26px;
    position: absolute;
    left: 10px;
    top: 10px;
    color: #fff;
}

.service_icon_btm {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 26px;
    color: #fff;
}

.testimnila_box.serviceBox .title {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #fff;
}

.testimnila_box.serviceBox .description {
    font-size: 18px;
    line-height: 25px;
    margin: 0;
    color: #ebebeb;
}

@media only screen and (max-width: 1199px) {
    .testimnila_box.serviceBox {
        margin: 0 0 40px;
    }
}

.testimoanial_read {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.testimoanial_read::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    border-bottom: 1px solid #ccc;
    left: 0;
    top: 16px;
    z-index: -1;
}

.testimoanial_read a {
    display: inline-block;
    color: #f08533;
    font-weight: 600;
    font-size: 20px;
    border: 2px solid;
    padding: 7px 19px;
    border-radius: 30px;
    background: #fff;
}

.gg_review {
    position: relative;
    width: 222px;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto 16px;
    background: #fff;
    text-align: center;
    padding: 11px 9px;
    border-radius: 5px;
    box-shadow: 0px 4px 3px #ccc;
}

.gg_review i {
    display: inline-block;
    border-radius: 50%;
    font-size: 43px;
    line-height: 48px;
    margin: 0 0 7px;
}

.ratings {
    position: relative;
    margin: 0;
}

.facility_section {
    position: relative;
    padding: 0px 0 44px;
}

.facility_section::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
}

.emergency_bg {
    position: absolute;
    right: 0px;
    bottom: 41px;
    width: 43%;
}

.emergency_bg img {
    width: 100%;
    filter: grayscale(1);
}

.facility_list_block {
    position: relative;
}

.facilites_title_head {
    position: absolute;
    left: 105px;
    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;
    text-align: center;
}

.fac_row::before {
    content: "";
    position: absolute;
}

.fac_row .col-md-3 {
    padding: 0 10px;
}

.fac_block {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
    border: 8px solid #ffffff;
    box-shadow: 0px 0px 10px #929292;
}

.fac_block::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(32 32 32 / 39%);
    bottom: 0;
    left: 0;
    z-index: 1;
    right: 0;
    top: 0;
    margin: auto;
    border-radius: 50%;
}

.fac_block img {
    transition: all ease-in-out .7s;
}

.fac_block:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.fac_block h3 {
    position: absolute;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 18px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 1;
    padding: 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fac_desc {
    position: absolute;
    left: 12px;
    bottom: 30px;
    z-index: 2;
    width: 48%;
    text-align: center;
    background: #eb131d;
    color: #ffffff;
    font-size: 16px;
    padding: 12px 11px;
    border-radius: 13px;
}

.appointment_section {
    position: relative;
    padding: 159px 0px;
}

.appointment_section::before {
    content: "";
    position: absolute;
    clip-path: polygon(0% 18%, 100% 0%, 100% 29%, 100% 100%, 100% 100%, 0 82%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/appointmentbg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.appointment_section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to left, #0093d3, rgb(0 65 94 / 54%));
    clip-path: polygon(0% 18%, 100% 0%, 100% 29%, 100% 100%, 100% 100%, 0 82%);
}

.video_section {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 380px;
    height: 380px;
    background: #f0f0f0;
    border-radius: 50%;
    padding: 75px 14px 0;
    border: 4px solid #309ece;
    display: inline-block;
    color: #000;
}

.video_section:hover {
    color: #fff;
    background: #0077b4;
}

.video_section h2 {
    font-size: 28px;
    text-transform: uppercase;
    line-height: 51px;
    padding: 0 19px;
    font-weight: 300;
}

.video_section span {
    display: inline-block;
    background: #036496;
    font-size: 20px;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: 300;
}

.appointment_form {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 0 92px;
}

.appointment_form h2 {
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 29px;
}

.appointment_form .form-control {
    background: transparent;
    border: none;
    border-radius: 0px;
    border-bottom: 2px dotted;
    color: #fff;
    height: 50px;
}

.appointment_form textarea.form-control {
    height: 122px;
}

.appointment_form .form-control::placeholder {
    color: #fff;
}

.appointment_form .btn {
    background-color: #00436a;
    border: none;
    color: #fff;
    margin-top: 20px;
}

.emgecy_block {
    position: relative;
    left: 0px;
    right: 0px;
    margin: auto;
    top: 0;
    border-radius: 22px;
}

.emgecy_block::before {
    content: "";
    position: absolute;
    bottom: 115px;
    width: 20%;
    height: 169px;
    left: 61px;
}

.eme_pic {
    position: relative;
    display: inline-block;
    width: 163px;
    margin: 32px 0 0;
}

.eme_pic::before {
    content: "";
    position: absolute;
    width: 217%;
    height: 100%;
    background: #303030;
    left: 50%;
    z-index: -1;
}

.eme_pic img {
    border-radius: 50%;
    border: 9px solid #303030;
}

.emrg_block {
    position: relative;
}

.emrg_block h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 49px;
    margin-bottom: 6px;
    color: #ffb129;
}

.emrg_block p {
    font-size: 26px;
    margin-bottom: 16px;
}

.emrg_block span {
    display: inline-block;
    border: 2px dashed #73a135;
    font-size: 21px;
    padding: 10px 14px;
}

.emrg_block span a {
    display: inline-block;
    color: inherit;
}

.faq_section {
    position: relative;
    padding: 0 0 81px;
}

.faq_timeline.main-timeline {
    position: relative;
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.faq_timeline.main-timeline .timeline {
    width: 46%;
    padding: 0 0 0 30px;
    margin: 0 5px 15px 0;
    float: left;
    position: relative;
    z-index: 1;
}

.faq_timeline.main-timeline .timeline-content {
    background-color: #fff;
    padding: 35px 75px 35px 40px;
    box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.3);
    display: block;
    position: relative;
    min-height: 190px;
}

.faq_timeline.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.faq_timeline.main-timeline .timeline-content:before {
    content: '';
    height: 50%;
    width: 50px;
    background: #035c8a;
    transform: translateY(-50%);
    position: absolute;
    left: -30px;
    top: 50%;
    bottom: 15px;
    right: 15px;
    z-index: -1;
    clip-path: polygon(0 0, 30% 50%, 0 100%, 100% 100%, 100% 0);
}

.faq_timeline.main-timeline .timeline-icon {
    color: #fff;
    background: #009bdf;
    font-size: 35px;
    text-align: center;
    line-height: 67px;
    width: 69px;
    height: 66px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -30px;
    z-index: 1;
    border-radius: 9px;
}

.faq_timeline.main-timeline .title {
    color: #333;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.faq_timeline.main-timeline .description {
    font-size: 15px;
    line-height: 23px;
    margin: 0;
}

.faq_timeline.main-timeline .timeline:nth-child(even) {
    padding: 0 30px 0 0;
    margin: 0 0 15px 5px;
    float: right;
}

.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 35px 40px 35px 75px;
}

.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
    transform: translateY(-50%) rotateY(180deg);
    left: auto;
    right: -30px;
}

.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: -30px;
    right: auto;
}

@media screen and (max-width:767px) {

    .faq_timeline.main-timeline .timeline,
    .faq_timeline.main-timeline .timeline:nth-child(even) {
        width: calc(100%);
        padding: 0 40px 0 30px;
    }

    .faq_timeline.main-timeline .timeline:nth-child(even) {
        padding: 0 30px 0 40px;
    }
}

@media screen and (max-width:479px) {

    .faq_timeline.main-timeline .timeline,
    .faq_timeline.main-timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 40px 0 30px;
        margin: 0 0 30px;
    }

    .faq_timeline.main-timeline .timeline-content,
    .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
        text-align: center;
        padding: 70px 25px 35px;
    }

    .faq_timeline.main-timeline .timeline-content:before,
    .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
        transform: translateY(0) translateX(-50%) rotate(-90deg);
        left: 50%;
        right: auto;
        top: auto;
        bottom: -65px;
    }

    .faq_timeline.main-timeline .timeline-icon,
    .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateY(0) translateX(50%);
        top: -40PX;
        right: 50%;
        left: auto;
    }
}

.blog_section {
    position: relative;
    padding: 0 0 130px;
}

.bl_slides {
    position: relative;
    margin: 0 14px;
}

.bl_slides::before {
    content: "";
    position: absolute;
    right: 0;
    width: 87%;
    height: 100%;
    background: #fff1d5;
}

.blog_img_ {
    border: 8px solid #fff;
    box-shadow: 0px 0px 10px #707070;
}

.blog_desc_ {
    position: relative;
    padding: 63px 14px;
}

.blog_desc_ h3 {
    font-size: 22px;
    margin: 0 0 5px;
}

.blog_desc_ p {
    line-height: 25px;
    margin: 0 0 8px;
}

.blog_desc_ a {
    display: inline-block;
    background: linear-gradient(to left, #709938, #eba836);
    color: #fff;
    font-size: 17px;
    padding: 5px 13px;
}


/*** 

====================================================================
	Contact Section
====================================================================

***/

.contact-section {
    position: relative;
    padding: 120px 0 100px;
}

.contact-section .sec-title {
    margin-bottom: 35px;
}

.contact-section .sec-title .text {
    font-size: 22px;
    line-height: 36px;
    color: #696478;
    font-weight: 400;
    margin-top: 40px;
}

.contact-section .contact-form {
    position: relative;
}

.contact-section .row {
    margin: 0 -10px;
}

.contact-form .form-group {
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group input[type="url"],
.contact-form .form-group textarea,
.contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    color: #858687;
    line-height: 28px;
    padding: 25px 30px;
    border: 1px solid transparent;
    background-color: #f2f5f6;
    font-weight: 500;
    border-radius: 15px;
    height: 80px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #ff4880;
}

.contact-form .form-group textarea {
    height: 250px;
    resize: none;
}

.contact-form label.error {
    color: #ff4880;
    padding-top: 10px;
    text-transform: capitalize;
    display: block;
}

.contact-section .contact-info {
    position: relative;
}

.contact-section .contact-info li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #696478;
    font-weight: 500;
    padding-left: 40px;
    margin-bottom: 30px;
}

.contact-section .contact-info li a {
    color: #696478;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-section .contact-info li a:hover {
    color: #ff4986;
}

.contact-section .contact-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #ff4986;
    font-weight: 400;
}

.contact-map-section {
    position: relative;
}

.contact-map-section .map-canvas {
    position: relative;
    min-height: 560px;
    width: 100%;
}


/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer {
    position: relative;
    padding: 109px 0 0;
}

.main-footer:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background-image: url(../images/footer_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0 100%, 0 20%);
}

.main-footer::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 1px;
    left: 0;
    background: rgb(0 58 89 / 88%);
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0 100%, 0 20%);
}

.main-footer .footer-upper {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px 0px 14px;
    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: 600;
    color: #ffffff;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.main-footer .footer-widget .widget-title::before {
    content: "";
    position: absolute;
    width: 62px;
    height: 2px;
    border-bottom: 2px solid #009ae3;
    left: 0;
    top: 32px;
}

a:hover {
    color: #ed1b24;
    text-decoration: none;
}


/*Logo Widget*/

.logo-widget {
    position: relative;
    text-align: center;
}

.logo-widget .logo img {
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: 0;
    width: 266px;
}

.ftlogo img {
    width: 367px;
}

.logo-widget .logo img:hover {
    opacity: 1;
}

.logo-widget .text {
    position: relative;
    color: #000000;
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 7px;
}


/*Links Widget*/

.main-footer .links-widget {
    position: relative;
}

.main-footer .activity-list {
    position: relative;
    padding-top: 10px;
}

.main-footer .activity-list li {
    position: relative;
    margin-bottom: 10px;
}

.main-footer .activity-list li:last-child {
    margin-bottom: 0;
}

.main-footer .activity-list li a {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #c8bfe3;
    padding: 10px 15px;
    padding-left: 30px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .activity-list li a:hover {
    border: 1px solid #ff4788;
}

.main-footer .list {
    position: relative;
}

.main-footer .list li {
    position: relative;
    display: block;
    margin-bottom: 3px;
    padding-left: 15px;
}

.main-footer .list li:before {
    position: absolute;
    left: 0;
    top: 9px;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    border: 2px solid #00a0eb;
    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: #fff;
    text-transform: capitalize;
}

.main-footer .list li a:hover {
    color: #009de6;
}


/*COntact Widget*/

.main-footer .contact-widget {
    position: relative;
}

.main-footer .contact-info {
    position: relative;
}

.main-footer .contact-info li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
    padding-left: 44px;
    margin-bottom: 20px;
}

.main-footer .contact-info li:last-child {
    margin-bottom: 0;
}

.main-footer .contact-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    background: #e81f31;
    text-align: center;
    color: #ffffff;
}

.main-footer .contact-info li a {
    color: #000000;
    display: inline-block;
    transition: all 300ms ease;
}

.main-footer .contact-info li a:hover {
    color: #f72f67;
}

.main-footer .footer-bottom {
    position: relative;
    text-align: center;
}

.main-footer .footer-bottom:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .03;
    content: "";
}

.main-footer .footer-bottom .social-icon-two {
    position: relative;
    float: right;
}

.main-footer .footer-bottom .copyright {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    padding: 12px 0px;
    border-top: 1px solid #7e7e7e;
    color: #e1e1e1;
}

.main-footer .footer-bottom .copyright a {
    color: #07b4ff;
}

.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: 600;
}

.app_content .modal-header .close {
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(to left, #709938, #eba836);
    opacity: 1;
    color: #fff;
    font-size: 37px;
    padding: 1px 6px;
    line-height: 39px;
}

.modal-dialog .btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 6px 30px;
    font-weight: 600;
    background: linear-gradient(to left, #709938, #eba836);
    overflow: hidden;
    min-width: 123px;
    border-radius: 30px;
    border: 0px;
}

.breadcrumb {
    text-align: center;
    position: relative;
    padding: 209px 0 179px;
    margin: 0;
    background: transparent;
    display: block;
}

.breadcrumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/breadcumb.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 50% 100%, 0 70%);
    left: 0;
    top: 0;
}

.breadcrumb::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #034668e6, rgb(185 29 138 / 63%));
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 50% 100%, 0 70%);
    top: 0;
    left: 0;
}

.breadcrumb h1 {
    font-size: 31px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.breadcrumb ul {
    display: inline-block;
    margin: auto;
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb ul li {
    display: inline-block;
    position: relative;
    color: #fff;
    padding: 0 9px;
    font-size: 15px;
    text-transform: capitalize;
    margin: 0
}

.breadcrumb ul li:before {
    content: "|";
    position: absolute;
    right: -7px;
    top: 0;
    color: #ffd400;
    font-weight: 500;
    font-size: 14px
}

.breadcrumb ul li a {
    color: #fff
}

.breadcrumb ul li:last-child:before {
    content: none
}

.content_section_ {
    position: relative;
    padding: 78px 0px 90px;
    min-height: 50vh;
}

.top_in_wraapper .social-icon-one {
    bottom: initial;
    top: 100px;
}

.services_text h2 {
    font-size: 22px;
    color: #055d8a;
    margin: 19px 0 13px;
    font-weight: 600
}

.services_text h3 {
    font-size: 20px;
    color: #bd1e8d;
    margin: 14px 0 9px;
    font-weight: 600;
}

.services_text p {
    text-align: justify;
    line-height: 26px;
    margin-bottom: 10px;
    font-size: 15px
}

.services_text a {
    color: red
}

.ser_inner_nav {
    position: relative;
    margin-bottom: 33px;
}

.services_text .ser_inner_nav h3 {
    text-transform: uppercase;
    color: #009bdf;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0
}

.ser_inner_nav ul {
    position: relative
}

.ser_inner_nav ul li {
    display: block
}

.services_text .ser_inner_nav ul li a {
    display: block;
    color: #fff;
    padding: 3px 15px;
    font-size: 14px;
    background: #055d8a;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.services_text .ser_inner_nav ul li a.active {
    color: #ed1b24
}

.ol_styles {
    position: relative;
    padding-left: 26px
}

.ol_styles li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 4px
}

.ol_styles li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    position: absolute;
    left: 0;
    top: 0;
    color: #bd1e8d;
    font-weight: 600;
    font-size: 13px
}

.inner_ser_pic img {
    border: 7px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
}


.feedbackstimeline.main-timeline {
    position: relative
}

.feedbackstimeline.main-timeline:after {
    content: '';
    display: block;
    clear: both
}

.feedbackstimeline.main-timeline .timeline {
    width: calc(50% + 2.5px);
    float: right;
    position: relative
}

.feedbackstimeline.main-timeline .timeline-content {
    min-height: 130px;
    padding: 20px 0 20px 170px;
    border-bottom: 5px solid #e7e7e7;
    border-left: 5px solid #e7e7e7;
    display: block;
    position: relative
}

.feedbackstimeline.main-timeline .timeline:last-child .timeline-content {
    border-bottom: 0
}

.feedbackstimeline.main-timeline .timeline-content:hover {
    text-decoration: none
}

.feedbackstimeline.main-timeline .timeline-content:before {
    content: '';
    height: 45px;
    width: 45px;
    border-top: 12px solid #009bdf;
    border-left: 12px solid #1074a7;
    transform: translateY(-50%);
    position: absolute;
    left: -9px;
    top: 50%
}

.feedbackstimeline.main-timeline .timeline-icon {
    font-size: 25px
}

.feedbackstimeline.main-timeline .timeline-year {
    color: #bd1e8d;
    background: #f3f3f3;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    line-height: 67px;
    height: 88px;
    width: 88px;
    margin: 0 0 5px;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 55px;
    top: 50%;
    border: 8px solid #ccc
}

.feedbackstimeline.main-timeline .title {
    color: #bd1e8d;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px
}

.feedbackstimeline.main-timeline .description {
    font-size: 15px;
    margin: 0;
    line-height: 26px
}

.feedbackstimeline.main-timeline .timeline:nth-child(even) {
    float: left
}

.feedbackstimeline.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 20px 170px 20px 0;
    border-left: none;
    border-right: 5px solid #e7e7e7;
    text-align: right
}

.feedbackstimeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
    transform: translateY(-50%) rotateY(180deg);
    left: auto;
    right: -8px
}

.feedbackstimeline.main-timeline .timeline:nth-child(even) .timeline-year {
    transform: translateY(-50%);
    left: auto;
    right: 55px
}

@media screen and (max-width: 767px) {
    .feedbackstimeline.main-timeline {
        padding: 0 20px
    }

    .feedbackstimeline.main-timeline .timeline,
    .feedbackstimeline.main-timeline .timeline:nth-child(even) {
        width: 100%
    }
}

@media screen and (max-width: 576px) {
    .feedbackstimeline.main-timeline {
        padding: 0
    }

    .feedbackstimeline.main-timeline .timeline {
        margin: 0 0 23px
    }

    .feedbackstimeline.main-timeline .timeline-content,
    .feedbackstimeline.main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 100px 20px 20px;
        border-left: none;
        border-right: none
    }

    .feedbackstimeline.main-timeline .timeline-content:before,
    .feedbackstimeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
        transform: translateY(0);
        left: 0;
        right: auto;
        top: 0
    }

    .feedbackstimeline.main-timeline .timeline-year,
    .feedbackstimeline.main-timeline .timeline:nth-child(even) .timeline-year {
        transform: translateY(0);
        left: auto;
        right: 0;
        top: 0
    }
}

.contact-form-section {
    text-align: center;
    padding: 40px 35px;
    border: 16px solid #e8e6e6;
}

.contact-form-section h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-form-section .form-control {
    background-color: #f5f5f5;
}

.contact-form-section .form-group {
    margin-bottom: 25px;
}

.contact-form-section textarea {
    height: 120px;
}

.contact-info-block {
    position: relative;
    background: #b31c86;
    padding: 20px 19px;
}

.contact-info-block h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 27px;
    margin-bottom: 17px;
    color: #fff;
}

.c_infoblocks {
    position: relative;
    color: #fff;
    padding-left: 45px;
    border-bottom: 1px dashed;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.c_infoblocks:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.c_infoblocks i {
    position: absolute;
    left: 0px;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #b31c86;
    text-align: center;
    border-radius: 50%;
    line-height: 29px;
}

._cmap iframe {
    width: 100%;
    height: 222px;
    margin-top: 28px;
    box-shadow: 0px 0px 10px #ccc;
    padding: 11px;
}

.abt_content p {
    font-size: 17px;
    line-height: 33px;
    text-align: justify;
}

.abrserbox.serviceBox {
    background: linear-gradient(to bottom, #035580 36%, #fff 36%);
    text-align: right;
    padding: 15px 20px 25px;
    border-radius: 15px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    margin-top: 39px;
}

.abrserbox.serviceBox:after {
    content: "";
    background: linear-gradient(to left, #035d8b, #15b8ff);
    width: calc(100% - 100px);
    height: 8px;
    transform: translateX(-50%);
    position: absolute;
    bottom: -8px;
    left: 50%;
}

.abrserbox.serviceBox .service-icon {
    color: #333;
    background: #fff;
    font-size: 40px;
    text-align: center;
    line-height: 82px;
    width: 85px;
    height: 85px;
    margin: 0 auto 40px;
    border-radius: 50% 50% 0 50%;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.abrserbox.serviceBox .service-icon span {
    display: block;
    transform: rotate(-45deg);
}

.abrserbox.serviceBox .title {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 5px;
}

.abrserbox.serviceBox .description {
    line-height: 24px;
    text-align: center;
    margin: 0;
}

.abrserbox.serviceBox.blue {
    background: linear-gradient(to bottom, #009bdf 36%, #fff 36%);
}

@media only screen and (max-width: 1199px) {
    .abrserbox.serviceBox {
        margin: 0 0 40px;
    }
}

.team_title_head {
    position: relative;
    text-align: center
}

.team_title_head h2 {
    display: inline-block;
    text-transform: uppercase;
    color: #b71d84;
    font-weight: 600;
    font-size: 37px;
    padding: 4px 0 0;
    border-bottom: 2px solid;
    margin: 41px 0 39px;
}


._inner_team_list {
    text-align: center;
    position: relative;
    height: 100%;
    padding: 32px 5px 30px;
    background: linear-gradient(to top, #caebff, transparent);
}

._inner_team_list:hover {
    background: linear-gradient(to bottom, #e1f1fb, #b5d6e4);
}

._inner_team_list::after,
._inner_team_list::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 34px;
    background: linear-gradient(to top, #00abd5, #00293d);
    left: 0;
    opacity: .4;
    transition: all ease-in-out .8s;
    top: 0
}

._inner_team_list::after {
    top: initial;
    left: initial;
    right: 0;
    bottom: 0
}

._inner_team_list:hover:after,
._inner_team_list:hover:before {
    height: 100px;
    opacity: 1
}

.inner_doc_img {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 216px;
    border: 1px dashed;
    border-radius: 50%;
    padding: 10px;
    background: #fff;
}

.inner_doc_img img {
    border-radius: 50%;
    box-shadow: 0 0 11px #adadad
}

.inner_doc_info {
    position: relative
}

.inner_doc_info h2 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    color: #004e73;
    margin: 15px 0 6px
}

.inner_doc_info h2 span {
    font-size: 15px;
    /* display: block; */
}

.inner_doc_info h3 {
    font-size: 16px;
    margin: 0 0 9px;
    font-weight: 600;
    color: #b50f7e;
}

.inner_doc_info h4 {
    font-size: 17px;
    color: #f54048
}

.inner_blogs {
    text-align: center;
    box-shadow: 0px 0px 10px #ccc;
    margin-bottom: 30px;
    background: #fff;
}

.box {
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 230px;
    margin-bottom: 30px;
}

.box:before {
    content: '';
    background: linear-gradient(to top, #034668e6, rgb(255 0 178 / 63%));
    opacity: 0;
    transform: scale(0.5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.4s ease-in-out;
}

.box:hover:before {
    opacity: 0.9;
    transform: scale(1);
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
}

.box img {
    width: 100%;
    height: auto;
}

.box .box-content {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    position: absolute;
    top: 35px;
    left: 0;
    transition: all 0.5s ease 0s;
}

.box:hover .box-content {
    opacity: 1;
    transform: translateY(0);
}

.box .title {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

.box .post {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.box .icon {
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-50px);
    position: absolute;
    left: 50%;
    top: 41%;
    transition: all 0.5s ease 0s;
}

.box:hover .icon {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.box .icon li {
    margin: 0 4px;
    display: inline-block;
}

.box .icon li a {
    color: #fff;
    font-size: 16px;
    line-height: 34px;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease 0s;
}

.box .icon li a:hover {
    color: #f92f2f;
    background: #fff;
    transform: rotate(360deg);
}

@media only screen and (max-width:990px) {
    .box {
        margin: 0 0 30px;
    }
}