@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: #191919;
    line-height: 1.6em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
}

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

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

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

textarea {
    overflow: hidden;
}

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

p,
.text {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
}

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

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

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

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

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

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

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

figure {
    margin-bottom: 0;
}

.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

.centered {
    text-align: center !important;
}


/*Btn Style One*/

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #23bfcb;
    padding: 4px 14px;
    font-weight: 500;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    border: 2px dotted #120c5c;
}

.btn-style-one:hover {
    color: #ffffff;
    background: linear-gradient(to left, #07042c, #23bfcb);
}

@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;
    width: auto;
    z-index: 8;
    top: 13px;
    right: 26px;
}

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

.social-icon-one li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    background: rgb(255 255 255);
    color: #2e84d7;
    text-align: center;
    font-weight: 400;
    line-height: 35px;
    width: 37px;
    height: 37px;
    box-shadow: inset 0px 0px 10px #b2b2b2;
    -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: 4px 0;
    border-radius: 4px;
}

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

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

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

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

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


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

.social-icon-two {
    position: relative;
    text-align: center;
    margin-top: 32px;
    display: inline-block;
    z-index: 1;
}

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

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 15px;
    width: 33px;
    height: 33px;
    line-height: 31px;
    color: #ffffff;
    /* border: 1px solid; */
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    margin: 0 1px;
    -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: #40629b;
}

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

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

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

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

.social-icon-two li a:first-child {}

.f_map_widjet a {
    display: inline-block;
    position: relative;
    margin-top: 4px;
    border: 9px solid #fff;
    border-radius: 22px;
    overflow: hidden;
}

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

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


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

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

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

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

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


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

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

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

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

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

.theme_color {
    color: #fa7720;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.tabs-box {
    position: relative;
}

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

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

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

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

.fa {
    line-height: inherit;
}


/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: linear-gradient(to top, #d6ae35, #e7c14f);
    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: #022645;
}


/*** 

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

***/

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

.main-header.fixed-header {
    /* position: fixed; */
}

.main-header .header-top {
    position: absolute;
    right: 196px;
    top: 17px;
    z-index: 9;
}

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


/* Top Left*/

.main-header .header-top .top-left {
    position: relative;
    background: transparent;
    padding: 0;
}

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

.main-header .header-top .info-list {
    display: flex;
    justify-content: right;
}

.main-header .header-top .info-list li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    padding: 3px 11px;
    background: rgb(2 198 246);
    border-radius: 30px;
}

.main-header .header-top .info-list li:nth-child(2) {
    /* border-right: 0px; */
}

.main-header .header-top .info-list li a {
    display: inline-block;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-top .info-list li a label {
    margin: 0px;
    cursor: pointer;
}

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

.main-header .header-top .info-list li span {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    color: #ffffff;
    font-size: 15px;
    line-height: 29px;
    width: 29px;
    height: 29px;
    background: #003080;
    text-align: center;
    border-radius: 50%;
}

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

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

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

.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: 213px;
    left: 0;
    top: 0;
    border-radius: 0px 0px 34px 34px;
}

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


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

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

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

.main-header .nav-outer {
    position: relative;
    display: inline-block;
    margin: auto;
    border-radius: 0px 30px 30px 0px;
}

.appointment {
    top: 58px;
    position: absolute;
    right: 0;
    color: #ffffff;
    background: rgb(214 174 53);
    font-size: 21px;
    text-transform: capitalize;
    padding: 6px 13px;
    cursor: pointer;
    border-radius: 5px;
    -webkit-animation: NAME-YOUR-ANIMATION 3s infinite;
    /* Safari 4+ */
    -moz-animation: NAME-YOUR-ANIMATION 3s infinite;
    /* Fx 5+ */
    -o-animation: NAME-YOUR-ANIMATION 3s infinite;
    /* Opera 12+ */
    animation: NAME-YOUR-ANIMATION 3s infinite;
    /* IE 10+, Fx 29+ */
    z-index: 9;
}

@-webkit-keyframes NAME-YOUR-ANIMATION {

    0%,
    39% {
        background-color: #3D9A72;
    }

    40%,
    69% {
        background-color: #FF721F;
    }

    70%,
    100% {
        background-color: #1387ae;
    }

}

.appointment:hover {
    background: #0d0e33;
    color: #fff;
}

a.wahtsapp {
    position: absolute;
    bottom: 66px;
    z-index: 99;
    right: 0;
    background: #2abf30;
    color: #fff;
    border-radius: 36px 0px 0px 36px;
    text-align: left;
    padding: 18px;
    width: 71px;
    font-size: 41px;
    display: inline-block;
    -webkit-animation: Whatsapp 3s infinite;
    /* Safari 4+ */
    -moz-animation: Whatsapp 3s infinite;
    /* Fx 5+ */
    -o-animation: Whatsapp 3s infinite;
    /* Opera 12+ */
    animation: Whatsapp 3s infinite;
}

@-webkit-keyframes Whatsapp {

    0%,
    39% {
        background-color: #2abf30;
    }

    40%,
    69% {
        background-color: #ffbc1f;
    }

    70%,
    100% {
        background-color: #10967e;
    }
}

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

.inner_top_wraapper a.wahtsapp {
    bottom: initial;
    top: 164px;
}

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

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

.main-menu {
    position: relative;
    margin: 67px 0 0px 0;
    background: #003080;
    padding: 0 15px;
    border-radius: 30px;
}

.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: 6px 10px;
    margin-left: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 14px;
    right: -2px;
    top: 14px;
    background: #ffffff;
}

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

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    opacity: 1;
    padding: 0 0;
    color: #ffffff;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

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

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

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

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

.main-menu .navigation>li>ul>li:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    display: block;
    background: #f08534;
}

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

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

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

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

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

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

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 8px;
    top: 4px;
    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: 215px;
    z-index: 100;
    display: none;
    padding: 0px 0px;
    background-color: #f23436;
    border-top: 3px solid #1c4256;
    -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: #143e57;
}

.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: 4px 16px;
    line-height: 24px;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    color: #f5f5f5;
    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: #143e57;
}

.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: #202020;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    background: #ff4788;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 5px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 28px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {
    color: #ff4788;
}


/*** 

====================================================================
		Page Banner
====================================================================

***/

.page-banner {
    position: relative;
    padding: 120px 0 120px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.page-banner:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-color: #09031c;
    opacity: .50;
    z-index: 0;
}

.page-banner:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 23px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/icons/curve.png);
    content: "";
}

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

.page-banner h1 {
    position: relative;
    font-size: 80px;
    color: #ffffff;
    line-height: 1.2em;
    font-weight: 700;
}

.page-banner .home-btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -43px;
    margin-bottom: -43px;
    height: 86px;
    width: 86px;
    line-height: 86px;
    z-index: 9;
    background-color: #ffffff;
    color: #1e2c67;
    font-size: 30px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease;
}

.page-banner .home-btn:hover {
    color: #ffffff;
    background-color: #1e2c67;
}

.parallax-scene {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.anim-icons .icon {
    position: absolute !important;
    background-repeat: no-repeat;
    background-position: center;
}


/*** 

====================================================================
		Section Title
====================================================================

***/

.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

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

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 44px;
    line-height: 1.2em;
    color: #002b72;
    text-transform: capitalize;
}

.sec-title h2:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 8px;
    width: 15%;
    height: 0px;
    content: "";
}

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

.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;
    height: 100%;
}


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

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

.slides {
    position: relative;
    height: 100vh;
}

.slides .container {
    position: relative;
    height: 100%;
    overflow: hidden;
    max-width: 76%;
}

.slides .row {
    align-items: center;
    position: relative;
    height: 100vh;
}

.bannerpic {
    transition: all ease-in-out .8s;
    transform: scale(0);
    opacity: 0;
    border: 10px solid #d4b034;
    position: relative;
    display: inline-block;
    width: 425px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
}

.banners {
    position: absolute;
    bottom: 0px;
    width: 63%;
    left: 0;
    right: 0;
    margin: auto;
}

.banner_carousel {
    text-align: center;
}

.banner_carousel .owl-item.active .bannerpic {
    transform: scale(1);
    opacity: 1;
}

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

.banner_text {
    position: relative;
    color: #fff;
    text-align: center;
    margin: 0 0 20px;
}

.banner_text h2 {
    transition: all ease-in-out .6s;
    right: 200px;
    opacity: 0;
    font-size: 23px;
}

.banner_carousel .owl-item.active .banner_text h2 {
    right: 0px;
    opacity: 1;
}

.banner_text h3 {
    transition: all ease-in-out .7s;
    display: inline-block;
    background: #5ba783;
    padding: 4px 14px;
    border-radius: 30px;
    margin: 9px 0;
    transform: scale(0);
    opacity: 0;
    font-size: 20px;
}

.banner_carousel .owl-item.active .banner_text h3 {
    transform: scale(1);
    opacity: 1;
}

.banner_text h4 {
    transition: all ease-in-out .8s;
    font-weight: 600;
    font-size: 25px;
    left: 100px;
    opacity: 0;
}

.banner_carousel .owl-item.active .banner_text h4 {
    left: 0px;
    opacity: 1;
}

.banner_text h5 {
    transition: all ease-in-out .8s;
    display: inline-block;
    border: 2px dotted;
    padding: 5px 12px;
    border-radius: 30px;
    margin: 10px 0 0;
    font-size: 15px;
}

.banner_carousel .owl-dots {
    position: absolute;
    top: inherit;
    width: 20px;
    left: 9px;
    margin: auto;
    z-index: 2;
    padding-top: 0;
    bottom: 31px;
    text-align: center;
}

.banner_carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: rgb(0 37 99);
    margin: 0 4px;
    border-radius: 3px;
}


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

.banner_carousel .owl-dots .owl-dot::after {
    content: "";
    position: absolute;
}


.arrow-down {
    position: absolute;
    cursor: pointer;
    bottom: 39px;
    z-index: 99;
    left: 0;
    right: 0;
    margin: auto;
    color: #131111;
    width: 78px;
    height: 78px;
    text-align: center;
    border-radius: 50%;
    line-height: 88px;
    border: 2px solid #ccc;
}

.arrow-down i {
    width: 60px;
    height: 60px;
    font-size: 29px;
    background: rgb(255 125 53);
    border-radius: 50%;
    line-height: 60px;
    color: #fff;
}

/*** 

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

***/

.offers-section {
    position: relative;
    padding: 94px 0 90px;
}

.offers-section::before {
    content: "";
    position: absolute;
    width: 50%;
    bottom: 0;
    height: 10px;
    left: 0;
    right: 0;
    margin: auto;
}

.top_sec {
    position: relative;
    text-align: center;
    border-top: 7px solid #0da6c0;
}

.top_sec::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 42px;
}

.top_sec span {
    display: block;
    font-size: 35px;
    line-height: 49px;
    color: #ffffff;
    text-transform: capitalize;
    background: #0da6c0;
    padding: 15px 9px;
    border-radius: 0px 0px 50px 50px;
    font-weight: 200;
}

.about-pic {
    position: relative;
}

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

.about-content {
    position: relative;
    margin-bottom: 37px;
    text-align: center;
}

.welcome span {
    font-size: 32px;
    margin-bottom: 0px;
    display: inline-block;
    color: #dab032;
}

.welcome h2 {
    text-transform: uppercase;
    color: #002b72;
    margin-bottom: 0px;
    font-size: 92px;
}

.welcome h3 {
    text-transform: capitalize;
    background: #e2ba40;
    color: #000000;
    margin-bottom: 29px;
    font-weight: 500;
    font-size: 29px;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 8px;
}

.about-content p {
    margin-bottom: 13px;
    line-height: 33px;
}

.exp_row {
    position: relative;
    margin: 0;
    z-index: 1;
}

.exp_row .col-md-6 {
    border-right: 2px dotted #464646;
    border-bottom: 2px dotted #464646;
    padding: 21px 5px;
}

.exp_row .col-md-6:nth-child(2),
.exp_row .col-md-6:nth-child(4) {
    border-right: 0px;
}

.exp_row .col-md-6:nth-child(3),
.exp_row .col-md-6:nth-child(4) {
    border-bottom: 0px;
    border-bottom: 0px;
}

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

.founder_ {
    text-align: center;
    background: #edc855;
    padding: 18px;
    border-radius: 28px;
    border: 10px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
}

.founder_ p {}

._exp_blocks {
    text-align: center
}

._exp_blocks h3 {
    position: relative;
    font-size: 55px;
    color: #00bbe9;
    font-weight: 600;
    line-height: 63px;
}

._exp_blocks p {
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
}

.mvv_list_blocks {
    position: relative;
}

.mvv_list_blocks::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 80%;
}

.mvv_blocks {
    position: relative;
    z-index: 1;
    padding: 0px 38px 24px;
    text-align: center;
    min-height: 292px;
    margin: 40px 0 0;
}

.mvv_blocks::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 83%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    z-index: -1;
    border: 2px dotted #5a5a5a;
    border-radius: 30px;
}

.mvv_blocks .row {
    align-items: center;
}

.mvv_icon {
    position: relative;
    width: 90px;
    height: 90px;
    display: inline-block;
    background: #f9f9f9;
    border: 4px solid #ffffff;
    border-radius: 8px;
    line-height: 79px;
    box-shadow: 0px 0px 10px #ccc;
}

.mvv_blocks h3 {
    text-transform: uppercase;
    margin: 8px 0 5px;
    color: #000000;
    font-size: 24px;
}

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

.abt_btm_row {
    align-items: center;
    padding-bottom: 20px;
}

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

.splt {
    position: relative;
    text-align: center;
    border: 10px solid #f1f1f1;
    padding: 11px;
    font-size: 20px;
    line-height: 33px;
    border-radius: 16px;
    background: #fff;
    margin: 43px 0 0;
}


.what_we {
    text-align: center;
    display: inline-block;
}

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

.abroad_education {
    position: relative;
    padding: 0px 0px 90px;
}

.abrdrow {
    margin: 0px;
}

.abrdrow .col-md-3 {
    padding: 15px;
    border-right: 2px dotted;
    border-bottom: 2px dotted;
}

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

.abrdrow .col-md-3:nth-child(9),
.abrdrow .col-md-3:nth-child(10),
.abrdrow .col-md-3:nth-child(11),
.abrdrow .col-md-3:nth-child(12) {
    border-bottom: 0px;
}

.abrdedu_list {
    display: block;
    text-align: center;
    color: #333;
}

.abrdedu_list h3 {
    font-size: 20px;
    margin: 9px 0 0;
}


/* services */
.servics_row {
    justify-content: center;
    margin-bottom: 57px;
}

.coursesblock {
    position: relative;
    background: #002b72;
    padding: 45px 43px;
    border-radius: 0px 100px 100px 0px;
}

.coursesblock::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #002b72;
}

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


.services_list {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 8px;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    filter: grayscale(1);
    transition: all ease-in-out .7s;
}

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

.services_img {
    display: block;
}

.services_list .services_img img {
    transition: all ease-in-out .9s;
}


.services_info {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: #02c6f6;
    padding: 11px 21px;
}

.services_info h3 {
    text-transform: capitalize;
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.services_list:hover {
    background: linear-gradient(to top, #435a70, #6fbd98);
}

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

.services_an_list {
    text-align: center;
}

.services_an_list li {
    display: inline-block;
    margin-bottom: 5px;
    width: 20%;
}

.services_an_list li a {
    display: block;
    color: #000000;
    font-size: 28px;
    padding: 11px 48px;
    background: #9dcab4;
    border-radius: 30px;
    font-weight: 600;
}


.services_an_list li a:hover {
    background: #4d9774;
    color: #fff;
}

.services_list span {
    position: absolute;
    right: 9px;
    top: 9px;
    width: 36px;
    transition: all cubic-bezier(0.62, -0.12, 0, 1.15) .8s;
}

.services_list:hover span {
    width: 40px;
    transform: rotate(360deg);
}

.coursesslider .owl-item.active.center .services_list {
    filter: grayscale(0);
}


.coursesslider .owl-dots {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-top: 12px;
}

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

.coursesslider .owl-dot.active {
    opacity: 1;
    background: #02c6f6;
}


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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


/***

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

***/

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

.program-section {
    position: relative;
    padding: 0 0 51px;
}

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

.program-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 53%;
    top: 0px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

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

.services-row {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ser_btm {
    text-align: center;
}

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


/* services 2 */

.services_section2 {
    position: relative;
}

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

.services_section2 .auto-container::before,
.services_section2 .auto-container::after {
    content: "";
    position: absolute;
}

.services_section2 .auto-container::before {}

.services_section2 .auto-container::after {
    right: 149px;
    border-right: 10px solid #d2dfe7;
}

.ser_tp_pic {
    position: absolute;
    left: -113px;
    width: 37%;
    top: 0;
    opacity: .5;
}

.ser_tp_pic img {
    width: 100%;
}

.serbg_ {
    position: absolute;
    right: 0px;
    top: -83px;
    width: 24%;
    opacity: .5;
    z-index: -1;
}

.serbg_ img {
    width: 100%;
}

.spl_row {
    position: relative;
    justify-content: center;
}

.spl_row .col-md-3 {
    padding: 0 7px;
}

.spl_row .col-md-3:nth-child(1)::before,
.spl_row .col-md-3:nth-child(5)::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 33%;
    left: 0;
    top: 0;
}

.spl_row .col-md-3:nth-child(5)::before {
    left: initial;
    right: 0px;
}

.spl_row .col-md-3:nth-child(2),
.spl_row .col-md-3:nth-child(4) {}

.spl_row .col-md-3:nth-child(3),
.spl_row .col-md-3:nth-child(5) {
    border-bottom: 0px;
}

.spl_row .col-md-3:nth-child(1) {}

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

.spl_row .col-md-3:nth-child(1),
.spl_row .col-md-3:nth-child(5) {}

.spl_row .col-md-3:nth-child(2),
.spl_row .col-md-3:nth-child(4) {}

.spl_row .col-md-3:nth-child(7) {
    bottom: 16px;
}

.spl_row .col-md-3:nth-child(6),
.spl_row .col-md-3:nth-child(8) {
    top: 36px;
}

.splion_list {
    position: relative;
    text-align: center;
    border-radius: 18px;
    z-index: 1;
    overflow: hidden;
}

.spl_row .col-md-3:nth-child(6) .splion_list,
.spl_row .col-md-3:nth-child(7) .splion_list,
.spl_row .col-md-3:nth-child(8) .splion_list {
    background: linear-gradient(to top, #ffd9d9, #ffffff);
}

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

.splz_img {
    transition: all ease-in-out .7s;
}

.splz_img img {
    transition: all ease-in-out .7s;
}

.splion_list:hover .splz_img img {
    transform: scale(1.2);
}

.splz_info {
    display: block;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 1;
    transition: all ease-in-out .8s;
}

.splion_list:hover .splz_info {
    bottom: 19px;
}

.splz_info h2 {
    text-transform: capitalize;
    font-size: 19px;
    color: #FFF;
}

.splz_info p {
    font-size: 23px;
}

.splz_info a {
    display: inline-block;
    background: #079db8;
    color: #ffffff;
    padding: 3px 10px;
    margin-top: 10px;
    border-radius: 30PX;
}

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

.serbtm {
    position: relative;
    text-align: center;
    color: #fff;
}

.serbtm h3 {
    font-size: 16px;
    font-weight: 400;
    padding: 0 60px;
    line-height: 24px;
}

.serbtm span {
    display: block;
    font-size: 28px;
}

.reachus_section {
    position: relative;
    padding: 76px 0;
}

.reachus_section::before,
.reachus_section::after {
    content: "";
    position: absolute;
}

.reachus_section::before {}

.reachus_section::after {}

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

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

.reachus_title_head {
    position: relative;
    text-align: center;
    margin-bottom: 26px;
}

.reachus_title_head h2 {
    text-transform: capitalize;
    font-size: 49px;
    font-weight: 600;
    color: #00bbe9;
}

.why_list_text h3 {
    font-size: 20px;
    background: #e0b73d;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 0 6px;
}

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

.why_list_text {
    padding: 8px 0;
}

.sft_awre_sec ol li {
    display: inline-block;
    border: 2px dotted #ccc;
    font-size: 19px;
    padding: 9px 13px;
    border-radius: 9px;
    margin-top: 5px;
}

.why_ch_pic {
    position: relative;
    border: 10px solid #ffffff;
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 22px;
    overflow: hidden;
}

.reachus_list {
    position: relative;
    border-bottom: 2px dotted #6f8390;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.reachus_list h2 {
    font-size: 24px;
    margin: 7px 0 13px;
}

.reachus_list p {
    line-height: 23px;
    font-weight: 300;
}

.rsh_timings {
    position: relative;
}

.timigs_list {
    position: relative;
    border-bottom: 2px dotted #6f8390;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.timigs_list h3 {
    font-size: 20px;
    color: #ff8789;
}

.timigs_list span {
    display: inline-block;
}

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

.locations_link {
    text-align: center;
}

.locations_link a {
    display: inline-block;
    color: #fff;
    border: 2px dotted #6f8390;
    padding: 2px 9px;
    border-radius: 30px;
    margin: 15px 0 0;
}

.locations_link a i {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    color: #ffffff;
    font-size: 15px;
    line-height: 29px;
    width: 29px;
    height: 29px;
    background: #ff0003;
    text-align: center;
    border-radius: 50%;
}

.acl_injury_section {
    position: relative;
    padding: 0 0 81px;
}

.tt_knee_rpl_list {
    position: relative;
    z-index: 1;
    margin: -219px 0 0;
}

.tt_knee_rpl_list_block {
    text-align: center;
    border: 11px solid #e9e9e9;
    border-radius: 50%;
    width: 376px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 5px #a1a1a1;
    background: #e92c33;
    margin: auto;
}

.tt_knee_rpl_list_block::after {
    content: "";
    position: absolute;
}

.tt_knee_rpl_list_block h2 {
    text-transform: uppercase;
    font-size: 35px;
    margin: 0px 0 7px;
    z-index: 1;
}

.tt_knee_rpl_list_block p {
    font-size: 20px;
    position: relative;
    z-index: 1;
    border-bottom: 2px dotted #ccc;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.tt_knee_rpl_list_block p:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}


.reachus {
    display: block;
    overflow: hidden;
    border-radius: 13px;
}

/*** 

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

***/

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

.add_bar_row .col-md-4 {
    border-right: 1px dotted #a0a0a0;
    padding: 25px 11px;
}

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

._addre_bar {
    position: relative;
    text-align: left;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

._addre_bar i {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    background: #e5c563;
    color: #000000;
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    line-height: 34px;
}

._addre_bar h5 {
    font-size: 15px;
    color: #d3d3d3;
    font-weight: 400;
    padding: 0px 22px 0 11px;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    width: 4px;
    left: 0px;
    height: 79%;
    background: #e5c563;
    top: 20px;
}

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

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

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

.newsletter-section h2 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 27px;
}

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

.newsletter-section .inner-container {
    position: relative;
}


/*Subscribe Form*/

.subscribe-form {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

.fac_img {
    margin-bottom: 0;
}

.doc_info {
    position: relative;
    padding: 13px 0;
    background: linear-gradient(to bottom, #f1eef4, #e9bc9f);
}

.doc_info h3 {
    text-transform: uppercase;
    font-size: 17px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.appointmeent-section {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq_row .col-md-3,
.faq_row .col-md-4,
.faq_row .col-md-6 {
    padding: 0 7px;
}

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

.counter:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
    height: 84%;
    box-shadow: 0px 0px 10px #7b7b7b;
    background: #f4dc84;
    border-radius: 26px;
    border: 9px solid #f4f4f4;
}

.faq_row .col-md-3:nth-child(1) .counter:before,
.faq_row .col-md-3:nth-child(3) .counter:before,
.faq_row .col-md-4:nth-child(5) .counter:before {
    background: #00314e;
}

.faq_row .col-md-3:nth-child(1) .counter,
.faq_row .col-md-3:nth-child(3) .counter,
.faq_row .col-md-4:nth-child(5) .counter {
    color: #fff;
}

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

.counter h3 {
    font-size: 27px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    padding: 0 2px;
    margin: 8px 0 6px;
}

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

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

.blog_section {
    position: relative;
    padding: 90px 0 60px;
}

.services_provides {
    padding: 60px 0 0;
    position: relative;
    transition: all ease-in-out .8s;
    filter: grayscale(1);
    pointer-events: none;
}

.services_slider .owl-item.active.center .services_provides {
    padding: 0px 0 0;
    filter: grayscale(0);
    pointer-events: all;
}

.blog_list {
    position: relative;
    text-align: center;
    margin: 10px;
}

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

.blog_img {
    position: relative;
}

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

.blog_info {
    padding: 23px 10px;
    background: linear-gradient(to top, #bad7e0, #ffffff);
    box-shadow: 0px 5px 5px #bdbdbd;
    min-height: 131px;
}

.blog_info h3 {
    font-size: 19px;
    margin: 0 0 6px;
}

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

.blog_info a {
    color: #ffffff;
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    background: #119cc8;
    padding: 3px 9px;
    border-radius: 30px;
}

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

.blog_slider .owl-nav {
    position: absolute;
    right: 117%;
    display: flex;
    bottom: 54px;
}

.blog_slider .owl-nav .owl-prev,
.blog_slider .owl-nav .owl-next {
    margin: 0 5px;
    background: linear-gradient(to left, #171348, #23bfcb);
    color: #fff;
    padding: 9px 10px;
    font-size: 21px;
    text-transform: uppercase;
    border-radius: 4px;
}


/*** 

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

***/

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

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

.testimonial-section:before {
    position: absolute;
    content: "";
}

.testimonial-head p {
    font-size: 18px;
}

.testimonial-carousel {
    position: relative;
}

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

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

.testimonial-carousel .owl-dot:hover,
.testimonial-carousel .owl-dot.active {
    opacity: 1;
    border: 3px solid #00bbe9;
}

.sec-title span {
    color: #00bbe9;
    font-size: 23px;
}

.testimnila_pic {
    /* position: absolute; */
    top: 0;
    left: 0;
}

.testimnila_box {
    position: relative;
    text-align: center;
    padding: 52px 32px;
    background: #f5f5f5;
    border-radius: 20px;
    margin: 10px;
    border: 11px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
    min-height: 290px;
}

.testimnila_box::before,
.testimnila_box::after {
    content: "\f10d";
    position: absolute;
    left: 15px;
    top: 18px;
    font-size: 31px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #c7c7c7;
}

.testimnila_box::after {
    content: "\f10e";
    left: auto;
    top: auto;
    right: 15px;
    bottom: 15px;
}

.testimnila_box h3 {
    text-transform: uppercase;
    margin: 0 0 5px;
    font-size: 23px;
}

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

.ratings {
    color: #d2ab37;
    margin-top: 11px;
    display: inline-block;
}

.facilites_title_head {
    position: absolute;
    left: 105px;
    font-family: 'Saira', sans-serif;
    text-transform: uppercase;
    font-size: 43px;
    top: 16rem;
    color: #f08533;
    right: 0;
    text-align: center;
    line-height: 63px;
}

.testimonial-carousel .owl-item .ggicon {
    position: absolute;
    width: 50px;
    right: 9px;
    top: 8px;
}

.testimonial-carousel .owl-item .ggicon img {
    width: auto;
}




.why_section {
    position: relative;
    padding: 110px 0 75px;
}

.why_section::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    clip-path: polygon(50% 0%, 100% 45%, 100% 100%, 0 100%, 0 45%);
    width: 100%;
    height: 100%;
}

.why_section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 45%, 100% 100%, 0 100%, 0 45%);
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(to left, #0ba3af, rgb(19 15 64 / 78%), #0ba3af);
}

._why_section_block {
    position: relative;
}

.why_choosepic {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 442px;
}

.why_choosepic::before {
    content: "";
    position: absolute;
    width: 163%;
    height: 100%;
    background: #1a1547;
    right: 69%;
    top: 0;
    z-index: -1;
}

.why_choosepic img {
    background: linear-gradient(to right, #171348, #ff8b00);
    border-radius: 129px;
    padding: 11px;
}

._why_section_block .sec-title {
    position: relative;
    margin: 0 0 51px;
}

._why_section_block .sec-title span {
    color: #fff;
}

._why_section_block .sec-title::before {
    position: absolute;
    content: "";
    width: 140%;
    height: 100%;
    left: 100%;
    top: 0;
}

._why_section_block .sec-title p {
    font-size: 15px;
    line-height: 25px;
    margin: 3px 0 0;
    color: #eee;
}


.whyrow {
    align-items: center;
    padding: 10px 0;
}

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

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

.why_icon {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ffffff;
    margin: auto;
    text-align: center;
    padding: 14px;
    border: 5px solid #73ab91;
}

.why_icon img {}

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

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


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

.faq_timeline.main-timeline {
    position: relative;
    display: table;
}

.faq_timeline.main-timeline .timeline {
    width: 49%;
    padding: 0 0 0 80px;
    margin-bottom: 20px;
    border: 10px solid #e4e4e4;
    border-radius: 90px;
    float: right;
    position: relative;
}

.faq_timeline.main-timeline .timeline:before {
    content: "";
    height: 115%;
    width: 10px;
    background-color: #fff;
    transform: translateY(-50%);
    position: absolute;
    left: 70px;
    top: 50%;
}

.faq_timeline.main-timeline .timeline-content {
    background-color: #e4e4e4;
    text-align: left;
    border-radius: 0 90px 90px 0;
    display: block;
    position: relative;
}

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

.faq_timeline.main-timeline .content {
    background-color: #fff;
    padding: 17px 40px 17px 80px;
    border-radius: 90px;
    min-height: 204px;
}

.faq_timeline.main-timeline .timeline-year {
    color: #fff;
    background-color: #e0b73d;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    line-height: 110px;
    height: 130px;
    width: 130px;
    border: 10px solid #D8DCE0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5) inset;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: -70px;
    top: 50%;
}

.faq_timeline.main-timeline .title {
    color: #c49d2c;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0 0 7px 0;
}

.faq_timeline.main-timeline .description {
    color: #000;
    margin: 0 0 5px 0;
    line-height: 22px;
}

.faq_timeline.main-timeline .timeline:nth-child(even) {
    float: left;
    padding: 0 80px 0 0;
}

.faq_timeline.main-timeline .timeline:nth-child(even):before {
    left: auto;
    right: 70px;
}

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

.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
    border-radius: 90px 0 0 90px;
    text-align: right;
}

.faq_timeline.main-timeline .timeline:nth-child(even) .content {
    padding: 17px 80px 17px 40px;
}

@media screen and (max-width:1200px) {
    .faq_timeline.main-timeline .timeline {
        width: 59%;
    }

    .faq_timeline.main-timeline .timeline-content {
        border-radius: 0 92px 92px 0;
    }

    .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
        border-radius: 92px 0 0 92px;
    }

    .faq_timeline.main-timeline .content {
        padding: 25px 40px 25px 80px;
    }

    .faq_timeline.main-timeline .timeline:nth-child(even) .content {
        padding: 25px 80px 25px 40px;
    }
}

@media screen and (max-width:990px) {
    .faq_timeline.main-timeline .timeline {
        width: 61.7%;
    }
}

@media screen and (max-width:767px) {
    .faq_timeline.main-timeline .timeline {
        width: 100%;
    }

    .faq_timeline.main-timeline .timeline:nth-child(even) {
        float: right;
        padding: 0 0 0 80px;
    }

    .faq_timeline.main-timeline .timeline:nth-child(even):before {
        left: 70px;
    }

    .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
        border-radius: 0 92px 92px 0;
        text-align: left;
    }

    .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-year {
        left: -70px;
    }

    .faq_timeline.main-timeline .timeline:nth-child(even) .content {
        padding: 25px 40px 25px 80px;
    }
}

@media screen and (max-width:479px) {
    .faq_timeline.main-timeline {
        padding-top: 30px;
    }

    .faq_timeline.main-timeline .timeline,
    .faq_timeline.main-timeline .timeline:nth-child(even) {
        padding: 0;
        margin-bottom: 60px;
        border-radius: 10px;
    }

    .faq_timeline.main-timeline .timeline:before {
        display: none;
    }

    .faq_timeline.main-timeline .timeline-content,
    .faq_timeline.main-timeline .content {
        border-radius: 0 0 0 0;
    }

    .faq_timeline.main-timeline .timeline-year,
    .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-year {
        top: -70px;
        left: 50%;
        transform: translateY(0) translateX(-50%) scale(0.7);
    }

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

    .faq_timeline.main-timeline .title {
        font-size: 18px;
    }
}


/*** 

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

***/

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

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

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

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

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

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

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

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

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


/*** 

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

***/

.gallery-section {
    position: relative;
}

.gallery-item {
    position: relative;
}

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

.video-box {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

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

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

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

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

.news-block .post-info li a {
    color: #25bdd8;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

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

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

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

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

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

.news-block .btn-box a {
    display: inline-block;
    font-size: 32px;
    color: #1e2c67;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

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

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


/*** 

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

***/

.news-detail {
    position: relative;
}

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

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

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

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

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

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

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

.news-detail .lower-content .post-info li a {
    color: #25bdd8;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

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

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

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

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

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

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

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

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

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


/*Author Box*/

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

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

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

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

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

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

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

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

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

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

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

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


/*** 

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

***/

.map-section {
    position: relative;
}

.map-outer {
    position: relative;
}

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

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

.map-data a {
    display: block;
}

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


/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

.query-section::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.query-section::after {
    content: "";
    position: absolute;
}

.query-head {
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    line-height: 50px;
}

.subscribe-block {
    position: relative;
}

.subscribe-block::before {
    content: "";
    position: absolute;
}

.subscribe-section {
    text-align: center;
    position: relative;
    right: 0;
    margin-top: 0;
    background: linear-gradient(to top, #016598, #00aac9);
    padding: 24px 18px;
    border-radius: 11px;
}

.newl-form .form-control {
    background-color: transparent;
    border: 1px solid #011629;
    color: #ffffff;
    height: 70px;
    margin: 0;
}

.newl-form .form-control::placeholder {
    color: #fff;
}

.nesl-head {
    position: relative;
    color: #fff;
}

.nesl-head h2 {
    text-transform: uppercase;
    font-size: 38px;
}

.nesl-head span {
    font-size: 17px;
    display: block;
    line-height: 25px;
}

.newl-form {
    position: relative;
    padding: 0;
    z-index: 1;
}

.newl-form .btn {
    background-color: #011629;
    border-color: transparent;
    width: 134px;
    font-size: 22px;
    color: #fff;
    position: absolute;
    top: 6px;
    right: 7px;
    padding: 12px 0;
}

.query-btn .btn {
    position: relative;
    width: 100%;
    background: #0095b5;
    border-color: transparent;
    padding: 11px 0px 10px 24px;
    margin-top: 26px;
    font-size: 21px;
    color: #ffffff;
}

.query-btn .btn i {
    position: absolute;
    left: 9px;
    width: 34px;
    height: 34px;
    background: #ffffff;
    top: 8px;
    border-radius: 50%;
    font-size: 15px;
    line-height: 33px;
    transition: all ease-in-out .4s;
    color: #0a2850;
}

.query-btn .btn:hover i {
    transform: rotate(360deg);
}

/* news letter */

/*** 

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

***/

.main-footer {
    position: relative;
    padding: 70px 0px 0px;
    background: #002b72;
}

.main-footer::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 89px;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
}

.main-footer::after {
    position: absolute;
    left: 0;
    top: 8px;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

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

.ftr_top_section h2 {
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    font-size: 45px;
    margin: 0 0 12px;
}

.ftr_top_section span {
    display: inline-block;
    color: #d4d4d4;
    border-top: 1px dotted;
    border-bottom: 1px dotted;
    padding: 9px 10px;
    font-size: 20px;
    font-weight: 300;
    line-height: 27px;
}

.frr_tp_link {
    position: relative;
}

.frr_tp_link a {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px dotted;
    padding: 10px 21px;
    font-size: 22px;
    border-radius: 15px;
}

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

.main-footer .footer-upper {
    position: relative;
    margin-top: 0;
}

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

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

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

.main-footer .footer-widget .widget-title {
    position: relative;
    font-size: 23px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 15px;
}

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

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


/*Logo Widget*/

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

.logo-widget .logo img {
    position: relative;
    width: 147px;
    background: #fff;
    border-radius: 12px;
    margin: 0 0 28px;
}

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

.main-footer .list li {
    position: relative;
    display: inline-block;
    margin: 4px 0;
}

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

.main-footer .list li a {
    position: relative;
    font-size: 15px;
    line-height: 23px;
    color: #d3d3d3;
    font-weight: 400;
    padding: 3px 14px;
    background: rgb(29 65 122);
    border-radius: 36px;
    margin: 0 2px;
    display: block;
    text-transform: capitalize;
}

.main-footer .list li a:hover {
    color: #ffffff;
    background: #e6c04e;
}

.main-footer .list li:last-child a {}

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

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

.main-footer .copyright {
    position: relative;
    font-size: 15px;
    line-height: 30px;
    color: #eee;
    text-align: center;
    padding: 19px 0 11px;
    border-top: 1px dotted #a0a0a0;
    margin: -15px 0 0;
}

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

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

.footertimings {
    position: relative;
    background: #f23436;
    text-align: center;
    padding: 12px 11px 28px;
    color: #eee;
    border-radius: 10px;
}

.footertimings h4 {
    text-transform: uppercase;
    color: #fff;
    margin: 21px 0 14px;
}

.footertimings i {
    font-size: 52px;
    display: table;
    margin: -28px auto 34px;
}

.timings_list_blocks {
    position: relative;
}

.timings_list {
    display: block;
    border-bottom: 2px dotted;
    margin-bottom: 13px;
    padding-bottom: 13px;
}

.timings_list h5 {
    font-size: 20px;
}

.timings_list span {
    font-size: 17px;
}

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


/*** 

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

.appointment-form {
    position: relative;
    z-index: 1;
    padding: 17px 17px;
    text-align: center;
    background: #fff;
}

.appointment-form h2 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
}

.appointment-form .btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    padding: 2px 11px;
    font-weight: 500;
    overflow: hidden;
    min-width: 110px;
    border-radius: 30px;
    border: none;
    background: rgb(78 180 112);
    color: #fff;
}

.appointment-form .form-control {
    border: none;
    border-bottom: 1px dotted #a1a1a1;
    background-color: transparent;
    color: #000;
    height: 30px;
    border-radius: 0px;
}

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

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

.appointment_popup_modal .modal-dialog {
    max-width: 793px;
    margin-top: 9%;
}

.appointment_popup_modal .modal-header {
    display: block;
    padding: 0px;
    border: none;
}

.appointment_popup_modal .modal-header .close {
    position: absolute;
    right: 0px;
    top: 0px;
    opacity: 1;
    z-index: 2;
    background: rgb(78 180 112);
    color: #fff;
    padding: 8px 8px;
}

.appointment_popup_modal .modal-body {
    padding: 16px;
    background: #e5e5e5;
}

.bread-cumb-section {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 218px 0 63px;
    text-align: center;
    text-align: center;
    border-bottom: 10px solid #003488;
}

.bread-cumb-section h1 {
    color: #003080;
    text-transform: capitalize;
    font-size: 38px;
    margin-bottom: 8px;
}

.bread-cumb-section ul {
    margin: auto;
    list-style: none;
    background: #c1a643;
    display: inline-block;
    padding: 5px 0;
    border-radius: 30px;
}

.bread-cumb-section ul li {
    display: inline-block;
    position: relative;
    color: #fff;
    padding: 0 14px;
    font-size: 17px;
}

.bread-cumb-section ul li:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffffff;
    right: -5px;
    top: 7px;
}

.bread-cumb-section ul li:last-child:before {
    display: none;
}

.bread-cumb-section ul li a {
    color: #ffffff;
}


.inner-section {
    position: relative;
    padding: 100px 0px;
    min-height: 60vh;
}

article.c-inner-box {
    background-color: #f1f1f1;
    margin-bottom: 30px;
    box-shadow: 0px 3px 3px #a5a5a5;
}

.contact-details {
    background-color: #ff6300;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    font-size: 30px;
    padding: 17px 0
}

.c-inner-box .info-box {
    position: relative;
    padding: 44px 23px
}

.c-inner-box .info-box li {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: #000;
    padding-left: 44px;
    border-bottom: 2px dotted;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.c-inner-box .info-box li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0
}

.c-inner-box .info-box li span {
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    text-align: center;
    background-color: #0698bc;
    color: #fff;
    line-height: 33px
}

.contact-map iframe {
    width: 100%;
    height: 423px;
    position: relative;
}

.services_in_text h2 {
    font-size: 27px;
    color: #003080;
    font-weight: 600;
    margin: 14px 0 9px;
}

.services_in_text h3 {
    font-size: 21px;
    color: #02c6f6;
    font-weight: 500;
    margin: 14px 0 7px;
}

.services_in_text h4 {
    font-size: 18px;
    color: #dda600;
    font-weight: 500;
    margin: 7px 0 2px;
}

.services_in_text p {
    text-align: justify;
    line-height: 30px;
    margin-bottom: 15px;
    font-size: 16px;
}

.sr_pic img {
    border: 5px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
    margin-bottom: 20px;
}

.ol_styles {
    padding-left: 23px
}

.ol_styles li {
    font-size: 16px;
    padding-left: 17px;
    line-height: 27px;
    position: relative;
}

.ol_styles li::before {
    position: absolute;
    left: 0;
    top: 8px;
    height: 10px;
    width: 10px;
    background: #c1a643;
    content: ""
}

.ol_styles li strong {
    /* color: #4D9774; */
}

.about_text h2 {
    display: inline-block;
    background: #4d9774;
    color: #fff;
    padding: 5px 14px;
    border-radius: 4px;
    margin: 3px 0 9px;
}

.team_list {
    text-align: center;
    background: #fff;
    padding: 6px;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 12px;
}

.team_info_ {
    position: relative;
    background: #4d9774;
    color: #fff;
    padding: 14px 0;
    min-height: 80px;
}

.team_info_ h2 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
}

.team_info_ h3 {
    font-size: 20px;
}

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

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

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

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

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

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

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

.feedbacktimeline.main-timeline .title {
    color: #003488;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 7px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.enquery_form {
    text-align: center;
    padding: 15px;
    border: 6px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
    background: #f5f5f5;
    border-radius: 12px;
    margin-top: 23px;
}

.enquery_form span {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 30px;
    margin: 0 0 16px;
}

.enquery_form .form-control {
    height: 45px;
    border: none;
}