@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
@import url("fontawesome-all.css");
@import url("flaticon.css");
@import url("owl.css");
@import url("jquery.fancybox.min.css");
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}

body {
    font-size: 14px;
    color: rgb(24 24 24);
    line-height: 1.6em;
    font-weight: 500;
    background: rgb(255, 255, 255);
    -webkit-font-smoothing: antialiased;
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: rgb(225 21 90);
}

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

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

textarea {
    overflow: hidden;
}

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

p,
.text {
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    color: rgb(26 26 26);
    margin: 0px;
}

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

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

.page-wrapper::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../images/pagebg.jpg);
    opacity: .3;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

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

figure {
    margin-bottom: 0px;
}

.theme-btn {
    display: inline-block;
    transition: all 0.3s ease 0s;
}

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

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

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    box-shadow: 0px 0px 10px #ccc;
    color: rgb(50 49 51);
    padding: 4px 19px;
    font-weight: 500;
    overflow: hidden;
    border-radius: 30px;
    background-color: rgb(255 255 255);
}

.btn-style-one:hover {
    color: rgb(255, 255, 255);
    background: rgb(33, 33, 33);
}

@keyframes rainbow {
    0% {
        background-color: rgb(37, 189, 216);
    }
    25% {
        background-color: rgb(87, 152, 254);
    }
    50% {
        background-color: rgb(124, 190, 71);
    }
    75% {
        background-color: rgb(156, 73, 250);
    }
    100% {
        background-color: rgb(255, 72, 128);
    }
}

@-webkit-keyframes rainbow {
    0% {
        background-color: rgb(37, 189, 216);
    }
    25% {
        background-color: rgb(87, 152, 254);
    }
    50% {
        background-color: rgb(124, 190, 71);
    }
    75% {
        background-color: rgb(156, 73, 250);
    }
    100% {
        background-color: rgb(255, 72, 128);
    }
}

.btn-style-two {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: rgb(255, 255, 255);
    padding: 25px 50px;
    font-weight: 700;
    overflow: hidden;
    border-radius: 5px;
    background-color: rgb(30, 44, 103);
}

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

.btn-style-two:hover {
    color: rgb(30, 44, 103);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
}

.btn-style-two::before {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgb(255, 255, 255);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1) 0s;
}

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

.btn-style-three {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: rgb(241, 236, 255);
    font-weight: 500;
    padding: 10px 32px;
    background-color: rgb(26, 41, 64);
    overflow: hidden;
    border-radius: 5px;
    transition: all 300ms linear 0s;
}

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

.btn-style-three:hover {
    color: rgb(26, 41, 64);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
}

.btn-style-three::before {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgb(255, 255, 255);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1) 0s;
}

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

.btn-style-four {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: rgb(255, 255, 255);
    padding: 10px 30px;
    font-weight: 500;
    overflow: hidden;
    border: 1px solid rgb(51, 51, 51);
    background-color: rgb(51, 51, 51);
}

.btn-style-four:hover {
    color: rgb(51, 51, 51);
    border: 1px solid rgb(255, 255, 255);
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 40px inset;
}

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

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

.social-icon-one li a {
    position: relative;
    display: inline-block;
    font-size: 23px;
    line-height: 43px;
    width: 45px;
    height: 45px;
    background: #fff;
    color: rgb(0, 123, 255);
    text-align: center;
    font-weight: 400;
    margin: 5px 0px;
    border-radius: 5px;
    transition: all 300ms ease 0s;
    box-shadow: inset 0 0 10px #141414;
}

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

.social-icon-one li:nth-child(3) a {
    color: rgb(37, 216, 216);
}

.social-icon-one li:nth-child(4) a {
    color: rgb(245, 24, 218);
}

.social-icon-one li a:hover {
    color: rgb(239 196 88);
    background: #333;
}

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

.social-icon-two {
    position: relative;
    text-align: center;
    margin-top: 9px;
    display: inline-block;
    border-top: 1px solid #ccc;
    padding-top: 13px;
}

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

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 20px;
    width: 44px;
    height: 44px;
    line-height: 40px;
    color: #d3b75f;
    border: 1px solid #fff;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    margin: 0px 5px;
    transition: all 300ms ease 0s;
    background: transparent;
}

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

.social-icon-two li:nth-child(3) a {
    /* color: rgb(37, 189, 216); */
}

.social-icon-two li:nth-child(4) a {
    color: rgb(224, 20, 208);
}

.social-icon-two li a:hover {
    color: rgb(0 0 0);
    background: #d3b75f;
}

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

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

.f_map_widjet a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(240 133 51 / 0%);
}

.f_map_widjet span {
    width: 117px;
    position: absolute;
    right: -50px;
    bottom: -37px;
    border: 7px solid rgb(255, 255, 255);
}

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

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

.list-style-one li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    font-size: 14px;
    line-height: 26px;
    padding: 0px;
    color: rgb(255, 71, 136);
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
    color: rgb(68, 188, 226);
}

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

.list-style-two li {
    position: relative;
    font-size: 15px;
    line-height: 25px;
    color: rgb(102, 102, 102);
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 15px;
}

.list-style-two li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    font-size: 15px;
    line-height: 25px;
    padding: 0px;
    color: rgb(102, 102, 102);
    font-family: LineAwesome;
}

.list-style-two li a:hover {
    color: rgb(68, 188, 226);
}

.theme_color {
    color: rgb(250, 119, 32);
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.tabs-box {
    position: relative;
}

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

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

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgb(255, 255, 255);
    background-position: center center;
    background-repeat: no-repeat;
}

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

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

.fa {
    line-height: inherit;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    color: rgb(40 40 40);
    font-size: 35px;
    line-height: 48px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: rgb(219 193 109);
    display: none;
    border-radius: 5px;
    transition: all 300ms ease 0s;
}

.scroll-to-top:hover {
    background: rgb(33, 33, 33);
    color: #fff;
}

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

.main-header.fixed-header {}

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

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

.main-header .header-top .top-left {
    position: relative;
    background: transparent;
    padding: 0px;
    margin-top: 11px;
    border-radius: 30px 0px 0px 30px;
    display: inline-block;
}

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

.top-left {
    position: absolute;
    right: 0px;
    z-index: 99;
    top: 19rem;
}

.top-left .info-list {
    position: relative;
    display: inline-block;
    right: 0px;
}

.top-left .info-list li {
    position: absolute;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: rgb(245, 245, 245);
    font-weight: 500;
    padding: 4px 10px;
    margin: 7px 0px 0px;
    background: rgb(35 31 32);
    border-radius: 30px 0px 0px 30px;
    width: 265px;
    right: -207px;
    transition: all 0.9s ease-in-out 0s;
}

.top-left .info-list li:nth-child(1) {
    width: 200px;
    right: -140px;
}

.top-left .info-list li:nth-child(2) {
    top: 55px;
}

.top-left .info-list li:nth-child(3) {
    top: 110px;
    width: 200px;
    right: -140px;
}

.top-left .info-list li:hover {
    right: 0px;
}

.top-left .info-list li a {
    display: inline-block;
    color: rgb(243, 243, 243);
    transition: all 300ms ease 0s;
}

.top-left .info-list li a:hover {
    color: rgb(221 197 113);
}

.top-left .info-list li span {
    position: relative;
    display: inline-block;
    margin-right: 6px;
    color: rgb(35 31 32);
    font-size: 22px;
    line-height: 41px;
    width: 43px;
    height: 43px;
    background: #dbc16d;
    font-weight: 500;
    text-align: center;
    border-radius: 50%;
    transition: all 0.9s ease-in-out 0s;
}

.top-left .info-list li:hover span {
    transform: rotate(-360deg);
}

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

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

.social-links {
    position: absolute;
    left: 18px;
    top: 18rem;
    width: 61px;
    text-align: center;
    z-index: 9;
}

.chatwithus {
    position: absolute;
    z-index: 99;
    text-align: center;
    width: 76px;
    right: 9px;
    bottom: 85px;
    background: #27853f;
    color: #fff;
    font-size: 17px;
    padding: 16px 14px;
    border-radius: 48px;
}

.chtext {
    position: relative;
}

.chatwithus i {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #27853f;
    font-size: 27px;
    border-radius: 50%;
    line-height: 43px;
    margin: 6px 0 0;
    transition: all ease-in-out .7s;
}

.chatwithus:hover {
    color: #fff;
    background: #186e2e;
}

.chatwithus:hover i {
    transform: rotate(360deg);
}

.main-header .header-top .login-info li {
    position: relative;
    float: left;
    font-size: 14px;
    line-height: 30px;
    color: rgb(200, 190, 227);
    font-weight: 700;
    padding: 10px 0px;
    margin-left: 13px;
}

.main-header .header-top .login-info li a {
    display: inline-block;
    color: rgb(200, 190, 227);
    transition: all 300ms ease 0s;
}

.main-header .header-top .login-info li a:hover {
    color: rgb(37, 189, 216);
}

.main-header .header-upper {
    position: relative;
    text-align: right;
}

.main-header .header-upper .logo-outer {
    position: absolute;
    text-align: center;
    z-index: 999;
    width: 260px;
    top: 25px;
}

.main-header .header-upper .logo-outer::before {
    position: absolute;
    right: 100%;
    top: 0px;
    background-color: rgb(255, 255, 255);
    content: "";
}

.main-header .header-upper .logo::before {
    position: absolute;
    right: -37px;
    top: 15px;
    margin: auto;
    content: "";
    width: 100%;
    height: 60%;
    border-right: 1px solid rgb(114 114 114);
}

.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: 0px;
    margin-left: 0px;
    right: 5%;
    top: 14px;
}

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

.appointment {
    top: 49px;
    position: absolute;
    right: 0px;
    background: linear-gradient(to top, #231f20, #727272, #231f20);
    color: rgb(227 202 114);
    font-size: 18px;
    text-transform: uppercase;
    padding: 13px 27px;
    cursor: pointer;
    border-radius: 9px;
}

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

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

.main-menu {
    position: relative;
}

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

.main-menu .navigation {
    position: relative;
    margin: 0px;
    left: 0px;
    border-top: 1px solid rgb(114 114 114);
    border-bottom: 1px solid rgb(114 114 114);
}

.main-menu .navigation>li {
    position: relative;
    display: inline-block;
    padding: 9px 8px;
    margin-left: 0px;
    transition: all 300ms ease 0s;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    opacity: 1;
    padding: 0px;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    transition: all 300ms ease 0s;
}

.main-menu .navigation>li:hover>a {
    color: rgb(211 166 42);
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 402px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 0px;
    background-color: rgb(35 31 32);
    border-top: 3px solid rgb(237 186 19);
    transform: translateY(30px);
    box-shadow: rgba(0, 0, 0, 0.05) 2px 2px 5px 1px, rgba(0, 0, 0, 0.05) -2px 0px 5px 1px;
}

.main-menu .navigation>li>ul.ctmwidth {
    width: 121px;
}

.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 rgb(224, 224, 224);
}

.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: rgb(227 192 80);
}

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

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 2px 20px;
    line-height: 24px;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    text-align: left;
    transition: all 500ms ease 0s;
}

.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: rgb(227 192 80);
    color: #000;
}

.main-menu .navigation>li>ul>li.dropdown>a::after {
    font-family: "Font Awesome 5 Free";
    content: "";
    position: absolute;
    right: 20px;
    top: 13px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 240px;
    z-index: 100;
    display: none;
    padding: 0px;
    background-color: rgb(255, 255, 255);
    border-top: 3px solid rgb(255, 71, 136);
    transform: translateY(30px);
    box-shadow: rgba(0, 0, 0, 0.05) 2px 2px 5px 1px, rgba(0, 0, 0, 0.05) -2px 0px 5px 1px;
}

.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 rgb(224, 224, 224);
}

.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: rgb(255, 71, 136);
}

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

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

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 13px 20px;
    line-height: 24px;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    color: rgb(105, 100, 120);
    text-align: left;
    transition: all 500ms ease 0s;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
    color: rgb(255, 255, 255);
    background: rgb(255, 71, 136);
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a::after {
    font-family: "Font Awesome 5 Free";
    content: "";
    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;
    transform: translateY(0px);
    transition: all 500ms ease 0s;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: all 500ms ease 0s;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid rgb(255, 255, 255);
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 5;
    display: none;
}

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

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

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

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

.main-header .search-box-outer::before {
    position: absolute;
    left: 0px;
    top: 13px;
    height: 24px;
    width: 1px;
    background-color: rgb(232, 232, 232);
    content: "";
}

.main-header .search-box-btn {
    position: relative;
    float: left;
    font-size: 16px;
    line-height: 30px;
    background: none;
    color: rgb(34, 34, 34);
    cursor: pointer;
    transition: all 300ms ease 0s;
}

.main-header .search-box-btn:hover {
    color: rgb(52, 52, 52);
}

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

.main-header .search-box-outer .dropdown-menu {
    right: 0px;
    padding: 0px;
    width: 280px;
    border-radius: 0px;
    border-top: 3px solid rgb(255, 71, 136);
    top: 70px !important;
    left: auto !important;
    transform: none !important;
}

.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 rgb(224, 224, 224);
    background: rgb(255, 255, 255);
}

.main-header .search-panel input:focus,
.main-header .search-panel select:focus {
    border-color: rgb(37, 38, 44);
}

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

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

.main-header .outer-box .social-links::before {
    position: absolute;
    left: -3px;
    top: 15px;
    height: 35px;
    border-left: 1px solid rgb(229, 229, 229);
    content: "";
}

.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: 0px;
    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: rgb(255, 255, 255);
}

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

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

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

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

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

.header-style-two .social-icon-two li a {
    font-size: 15px;
    color: rgb(200, 191, 227);
}

.header-style-two .social-icon-two li a:hover {
    color: rgb(255, 71, 136);
}

.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px;
    z-index: -1;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px;
    transition: top 300ms ease 0s;
}

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

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

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

.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 {
    line-height: 30px;
    font-size: 17px;
    font-weight: 600;
    color: rgb(105, 100, 120);
    text-transform: capitalize;
    transition: all 300ms ease 0s;
    padding: 20px 0px !important;
}

.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: rgb(30, 44, 103);
}

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: rgb(255, 71, 136);
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0px;
    top: 0px;
    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: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(37, 189, 216, 0.8);
    transform: translateX(101%);
    transition: all 900ms ease 0s;
}

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

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

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    transition: all 0.7s ease 0s;
    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: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 10;
    transition: all 0.9s ease 0s;
}

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

.mobile-menu .close-btn:hover {
    color: rgb(255, 71, 136);
    transform: rotate(45deg);
}

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

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

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

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    transition: all 500ms ease 0s;
}

.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: 0px;
    top: 0px;
    height: 0px;
    border-left: 5px solid rgb(255, 71, 136);
    transition: all 500ms ease 0s;
}

.mobile-menu .navigation li.current>a,
.mobile-menu .navigation li>a:hover {
    color: rgb(255, 71, 136);
}

.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: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 2px;
    transition: all 500ms ease 0s;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    background: rgb(255, 71, 136);
    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: rgb(255, 255, 255);
    transition: all 500ms ease 0s;
}

.mobile-menu .social-links li a:hover {
    color: rgb(255, 71, 136);
}

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

.page-banner::before {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgb(9, 3, 28);
    opacity: 0.5;
    z-index: 0;
}

.page-banner::after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 23px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: "";
}

.page-banner h1 {
    position: relative;
    font-size: 80px;
    color: rgb(255, 255, 255);
    line-height: 1.2em;
    font-weight: 700;
}

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

.page-banner .home-btn:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(30, 44, 103);
}

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

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

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

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

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

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 1.2em;
    color: rgb(34 39 43);
    font-weight: 600;
    padding-top: 20px;
    text-transform: uppercase;
}

.sec-title h2::before {
    position: absolute;
    left: 0px;
    top: 13px;
    width: 24%;
    height: 4px;
    content: "";
    border-radius: 2px;
    background: #dbc16d;
    right: 0;
    margin: auto;
}

.sec-title .text {
    position: relative;
    font-size: 15px;
    line-height: 28px;
    color: rgb(85, 85, 85);
    font-weight: 300;
    margin-top: 20px;
}

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

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

.banner-section {
    position: relative;
}

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

.banner {
    background-repeat: no-repeat;
    background-position: center 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 center;
    background-size: cover;
    padding: 220px 0px;
}

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

.banner-carousel .slide-item .image-layer::before {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background-color: rgb(9, 3, 28);
    opacity: 0.5;
    content: "";
}

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

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

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

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

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

.icon-star-1 {
    height: 95px;
    width: 57px;
}

.icon-star-2 {
    height: 95px;
    width: 57px;
}

.banner-carousel .content-box .title {
    display: block;
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(150px);
    transition: all 400ms ease 0s;
}

.banner-carousel .active .content-box .title {
    opacity: 1;
    transform: translateY(0px);
}

.banner-carousel .content-box h2 {
    display: block;
    font-size: 100px;
    line-height: 0.9em;
    color: rgb(255, 255, 255);
    font-weight: 700;
    opacity: 0;
    margin-bottom: 40px;
    transform: translateY(150px);
    transition: all 400ms ease 0s;
}

.banner-carousel .active .content-box h2 {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 300ms;
}

.banner-carousel .content-box .btn-box {
    position: relative;
    opacity: 0;
    z-index: 9;
    transform: translateY(150px);
    transition: all 400ms ease 0s;
}

.banner-carousel .active .content-box .btn-box {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 600ms;
}

.banner-carousel .active .content-box .btn-box a {
    font-size: 22px;
}

.banner-section.style-two .banner-carousel .slide-item {
    padding: 190px 0px;
}

.banner-section.style-two .content-box {
    text-align: left;
    max-width: 100%;
    padding: 0px;
}

.banner-section.style-two .content-box .icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.icon-star-8 {
    height: 26px;
    width: 22px;
}

.banner-section .owl-nav {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -28px;
    width: 100%;
    height: 0px;
}

.banner-section .owl-nav .owl-prev,
.banner-section .owl-nav .owl-next {
    position: absolute;
    left: 30px;
    top: 0px;
    background: none;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    text-align: center;
    line-height: 52px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    opacity: 0.3;
    margin: 0px;
    padding: 0px;
    transition: all 300ms ease 0s;
}

.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: 0px;
    width: 100%;
    text-align: center;
}

.banner-section .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 8px solid rgb(255, 255, 255);
    margin: 0px 2px;
    opacity: 0.2;
    border-radius: 50%;
    transition: all 300ms ease 0s;
}

.banner-section .owl-dot:last-child {
    margin-bottom: 0px;
}

.banner-section .owl-dot.active,
.banner-section .owl-dot:hover {
    opacity: 1;
}

.banner_carousel {
    position: relative;
}

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

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

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

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


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

.slide4 {
    background-image: url("../images/main-slider/4.jpg");
}

.slide5 {
    background-image: url("../images/main-slider/5.jpg");
} */

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

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

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

.banner_carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: rgb(249, 249, 251);
    border: 2px solid rgb(51, 51, 51);
    position: relative;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    margin: 0px 3px;
    z-index: 1;
    border-radius: 50%;
}

.banner_carousel .owl-dot.active {
    background: rgb(233 182 58);
}

.banner_carousel .owl-dots .owl-dot::before {
    content: "";
    position: absolute;
    padding: 0px;
    background: rgb(255, 255, 255);
    z-index: -1;
    border-radius: 50%;
    top: 10px;
}

.banner_carousel .owl-dots .owl-dot.active::before {
    background: rgb(240, 133, 52);
}

.banner_carousel .owl-dots .owl-dot::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 21px;
    padding: 0px;
    z-index: -1;
    left: 0px;
    bottom: -19px;
    right: 0px;
    margin: auto;
}

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

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

.home_about_section::before {
    width: 500px;
    height: 500px;
    left: 0px;
    right: 0px;
    margin: auto;
    top: 510px;
    border: 30px solid rgb(204 204 204 / 30%);
    border-radius: 50%;
}

.specilatytitle {
    position: absolute;
    left: -200px;
    transform: rotate(-90deg);
    z-index: 1;
    text-transform: uppercase;
    font-size: 33px;
    bottom: 257px;
}

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

.offer-block {
    position: relative;
    margin-bottom: 13px;
    padding: 0px 5px;
}

.speciality-row .offer-block:nth-child(1) {
    margin-top: -151px;
}

.speciality-row .offer-block:nth-child(2) {
    margin-top: -115px;
}

.speciality-row .offer-block:nth-child(3) {
    margin-top: -38px;
}

.offer-block .inner-box {
    position: relative;
    text-align: center;
    padding: 44px 19px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(228, 228, 228) 0px 0px 10px;
    transition: all 300ms ease 0s;
}

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

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

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

.offer-block h5 {
    position: relative;
    display: block;
    font-size: 19px;
    line-height: 1.2em;
    color: rgb(51, 51, 51);
    font-weight: 500;
}

.offer-block h5 a {
    color: rgb(30, 44, 103);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.offer-block h5 a:hover {
    color: rgb(37, 189, 216);
}

.home_abt_img {
    position: relative;
    margin-top: -297px;
    z-index: 1;
    text-align: center;
    padding: 30px;
}

.shape {
    position: absolute;
}

.sahpe1 {
    width: 40px;
    height: 100%;
    background: #252525;
    top: 22px;
    right: 159px;
    z-index: -1;
    transform: rotate(25deg);
}

.sahpe2 {
    width: 50px;
    height: 50px;
    /* background: #f9dbbc; */
    bottom: 0;
    left: 71px;
    border-radius: 50%;
    z-index: -1;
}

.home_abt_img img {
    padding: 6px;
    background: linear-gradient(to top, #ffad6f, #dab797);
}

.home_abt_img::before {
    position: absolute;
    content: "";
    width: 32%;
    height: 30%;
    top: 0;
    left: 0px;
    z-index: -1;
    background: #f8d1af;
}

.home_abt_img::after {
    position: absolute;
    content: "";
    width: 32%;
    height: 30%;
    right: 0px;
    z-index: -1;
    background: #f8d1af;
    top: 0;
}

.about-content {
    position: relative;
    text-align: center;
    margin-bottom: 31px;
    padding-left: 0;
}

.about-content::before {
    content: "";
    position: absolute;
    width: 63px;
    height: 64px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50px;
    left: 110px;
    top: -21px;
    border-radius: 50%;
}

.about-content span {
    font-size: 25px;
    margin-bottom: 10px;
    display: inline-block;
    color: rgb(185 152 45);
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 500;
}

.about-content h2 {
    text-transform: uppercase;
    color: rgb(50 49 51);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 50px;
}

.about-content h3 {
    margin-bottom: 10px;
}

.about-content h2::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 79px;
    left: 140px;
    top: -124px;
}

.about-content h4 {
    text-transform: uppercase;
    color: rgb(247, 86, 123);
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 10px;
    text-align: justify;
    position: relative;
    line-height: 26px;
}

.about-content p::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 70%;
    /* background: #333; */
    left: 18%;
    top: 36px;
}

.about-content p::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    left: 31px;
    bottom: 49px;
    border-radius: 50%;
}

.abt_img {
    position: absolute;
    left: 0px;
    top: 52px;
    width: 309px;
}

.abt_img::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 11px;
    right: 84%;
    top: 122px;
}

.dental_slider {
    position: relative;
    z-index: 3;
    margin-top: -359px;
    border: 6px solid #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #ccc;
}

.abtbtm_img {
    overflow: hidden;
}

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

.abtbtm_img:hover img {
    transform: scale(1.3);
}

.team_title {
    position: absolute;
    text-align: center;
    width: 362px;
    left: 0;
    right: 0;
    margin: 83px auto 0;
    z-index: 1;
    border-bottom: 3px solid;
    padding: 0 0 9px;
}

.team_title h2 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 45px;
}

.doc_sec_sec_ {
    position: relative;
}

.drrows .col-md-6:nth-child(2) .doc_sec_sec_ {
    text-align: right;
}

.docotor_image {
    margin-top: 31px;
    position: relative;
}

.docotor_image img {
    width: 300px;
    border: 6px solid #ffffff;
    border-radius: 17px;
    display: inline-block;
    box-shadow: 0px 0px 10px #ccc;
}

.docot_info {
    position: absolute;
    right: 0px;
    bottom: 65px;
    background: #dbc16d;
    padding: 14px 21px;
    border-radius: 12px;
    width: 337px;
    text-align: right;
}

.drrows .col-md-6:nth-child(2) .docot_info {
    right: initial;
    left: 0px;
}

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

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

.docot_info h3 {
    text-transform: uppercase;
    font-size: 27px;
    color: rgb(0 0 0);
    margin-bottom: 1px;
    font-weight: 600;
}

.docot_info h4 {
    font-size: 17px;
    color: rgb(0 0 0);
    margin: 0 0 5px;
    text-align: right;
}

.docot_info h5 {
    font-size: 16px;
    color: rgb(0 0 0);
    text-align: right;
}

.doc_desc_text {
    position: relative;
    margin-top: 63px;
}

.doc_desc_text p {
    color: rgb(0, 0, 0);
    margin-bottom: 25px;
    font-size: 18px;
}

.doc_desc_text a {
    display: inline-block;
    background: #252525;
    color: rgb(255, 255, 255);
    padding: 7px 15px;
    border-radius: 30px;
    margin: 0 5px;
}

.doc_desc_text a:nth-child(2) {
    background: rgb(240, 133, 52);
}

.doc_desc_text a:hover:nth-child(2) {
    background-color: rgb(51, 51, 51);
}

.what_we {
    text-align: center;
}

.what_we h3 {
    display: inline-block;
    color: rgb(51, 51, 51);
    font-weight: 600;
    border-bottom: 1px solid rgb(255 209 168);
    padding-bottom: 12px;
    font-size: 48px;
    font-family: "Dancing Script", cursive;
}

.abt_btm_row .col-md-6,
.abt_btm_row .col-md-12 {
    padding: 21px 0px;
}

.abt_btm_row .col-md-6:nth-child(1) {
    border-right: 1px solid rgb(255 209 168);
}

.abt_btm_row .col-md-12:nth-child(3) {}

.abt_bottom {
    position: relative;
    text-align: center;
    padding: 0px 10px;
}

._abt_info_btm {
    position: relative;
    bottom: 0px;
    width: 100%;
    z-index: 2;
    color: rgb(51, 51, 51);
}

._abt_info_btm h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: rgb(249 137 51);
    text-transform: uppercase;
}

._abt_info_btm p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 15px;
    color: rgb(99 99 99);
    display: inline-block;
    max-width: 475px;
    padding: 0px 34px;
}

._abt_info_btm ul {
    padding: 0px;
}

._abt_info_btm ul li {
    padding: 4px 0px;
    margin-bottom: 4px;
    color: rgb(43 43 43);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    width: 68%;
    display: inline-block;
    border-bottom: 1px dashed;
}

._abt_info_btm ul li:last-child {
    border-bottom: 0px;
}

.offer_row .col-md-12,
.offer_row .col-md-6 {
    padding: 0px 5px;
}

.offersec {
    margin-bottom: 10px;
    position: relative;
}

.offer_left {
    text-align: left;
}

.offer_text {
    max-width: 381px;
    background: #252525;
    color: rgb(255, 255, 255);
    padding: 83px 24px 26px;
    font-size: 20px;
    line-height: 32px;
    font-weight: 300;
    border-radius: 8px;
    margin: -90px auto 0;
    text-align: center;
}

.offer_text::before,
.offer_text::after {
    content: "";
    display: block;
    width: 53%;
    position: absolute;
    bottom: 11px;
    height: 10px;
    border-radius: 30px;
}

.offer_text::before {}

.offer_text::after {
    right: 0;
    left: 0;
    background: #ff9b4f;
    margin: auto;
}

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

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

.serevices_list {
    position: relative;
    text-align: center;
    height: 40vh;
    background: center center / cover no-repeat rgb(53, 70, 104);
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
    transition: all 0.5s ease-in-out 0s;
}

.ser_list_row .col-md-4:nth-child(2) .serevices_list:nth-child(1) {
    height: 81.5vh;
}

.serevices_list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(21, 43, 90, 0.85);
    left: 0px;
}

.ser_list_row .col-md-4:nth-child(2) .serevices_list:nth-child(1)::before {
    background: rgba(239, 119, 30, 0.72);
}

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

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

.services_info span img {
    width: 52px;
}

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

.serevices_list p {
    font-size: 14px;
    color: rgb(238, 238, 238);
    line-height: 24px;
}

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

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

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

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

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

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

.welcome-section .icon-rocket {
    inset: auto -220px 170px auto !important;
}

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

.icon-balloon {
    height: 310px;
    width: 218px;
}

.icon-rocket {
    height: 144px;
    width: 116px;
}

.icon-star-4 {
    height: 51px;
    width: 43px;
}

.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: 0px;
    top: 0px;
    height: 280px;
    width: 270px;
    background-color: rgb(255, 73, 134);
    content: "";
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 30px;
    border-radius: 5px;
}

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

.welcome-section .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
    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: rgb(105, 100, 120);
    font-weight: 400;
    margin-bottom: 36px;
}

.welcome-section .content-column .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: rgb(105, 100, 120);
    font-weight: 400;
    margin-bottom: 55px;
}

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

.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 {
    inset: auto -260px 0px 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: 0px;
    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: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    opacity: 0.7;
    background: -webkit-linear-gradient(bottom, rgb(255, 71, 137), rgba(0, 0, 0, 0));
    transition: all 500ms ease 0s;
}

.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: rgb(255, 71, 137);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    transition: transform 600ms ease 0s;
    z-index: 1;
}

.welcome-section-two .image-column:hover .icon-box {
    background-color: rgb(37, 189, 216);
    transform: scale(-1.3) rotate(-180deg);
    transition: all 600ms ease 0s;
}

.welcome-section-two .image-column:nth-child(1) .icon-box {
    background: rgb(255, 71, 137);
}

.welcome-section-two .image-column:nth-child(2) .icon-box {
    background: rgb(37, 189, 216);
}

.welcome-section-two .image-column:nth-child(3) .icon-box {
    background: rgb(249, 176, 1);
}

.welcome-section-two .image-column:nth-child(1) .image::after {
    background: -webkit-linear-gradient(bottom, rgb(255, 71, 137), rgba(0, 0, 0, 0));
}

.welcome-section-two .image-column:nth-child(2) .image::after {
    background: -webkit-linear-gradient(bottom, rgb(37, 189, 216), rgba(0, 0, 0, 0));
}

.welcome-section-two .image-column:nth-child(3) .image::after {
    background: -webkit-linear-gradient(bottom, rgb(249, 176, 1), rgba(0, 0, 0, 0));
}

.welcome-section-two .text {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 40px;
    color: rgb(105, 100, 120);
    font-weight: 400;
    max-width: 850px;
    margin: 0px auto 50px;
    text-align: center;
}

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

.about-section {
    position: relative;
    padding: 120px 0px 90px;
    background-color: rgb(242, 245, 246);
}

.about-section .sec-title .text {
    font-size: 22px;
    line-height: 40px;
    color: rgb(105, 100, 120);
    margin-top: 40px;
}

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

.about-section .text-block .inner-box {
    position: relative;
    background-color: rgb(37, 189, 216);
    padding: 60px 55px;
    border-radius: 10px;
}

.about-section .text-block .icon {
    position: relative;
    display: block;
    font-size: 64px;
    line-height: 1em;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.about-section .text-block h4 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

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

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

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

.leftdentalicon {
    position: absolute;
    left: -6%;
    top: 38px;
    opacity: .3;
    width: auto;
}

.rightdentalicon {
    position: absolute;
    right: -97px;
    top: 0;
    opacity: .5;
    width: 29%;
    text-align: right;
}

.leftdentalicon img,
.rightdentalicon img {
    width: 100%;
}

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

.program-section::before {
    content: "";
    position: absolute;
    width: 18%;
    height: 326px;
    bottom: 30px;
    right: 0px;
}

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

.serfamilyion {
    position: absolute;
    bottom: -31px;
    width: 211px;
    left: 0;
}

.serfamilyion img {
    width: auto;
}

.service_section .auto-container {
    padding: 60px 0px 0px;
}

.service_section .auto-container::before,
.service_section .auto-container::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 110px;
    top: 0;
}

.service_section .auto-container::before {
    left: 211px;
    border-left: 3px solid #333;
    border-bottom: 3px solid #333;
}

.service_section .auto-container::after {
    right: 211px;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
}

.whatwedo {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    color: rgb(185 152 45);
}

.sec-title h3 {
    color: rgb(201 166 55);
    font-size: 28px;
    text-transform: capitalize;
}

.ser_head {
    position: relative;
}

.serdsc p {
    font-size: 17px;
    line-height: 22px;
    text-align: center;
    margin-top: 16px;
}

.ser_head.sec-title {
    z-index: 99;
    text-align: center;
    max-width: 428px;
    margin: 0px auto 0;
    padding: 0px 18px;
    border-left: 3px solid;
    border-right: 3px solid;
}

.slides_list {
    padding: 7px 10px 35px;
}

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

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

.ser_image {
    position: relative;
}

.ser_image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    bottom: 0px;
    transition: all 0.7s ease-in-out 0s;
    z-index: 1;
    left: 0px;
}

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

.ser_image {
    width: auto;
    height: auto;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

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

.ser_info {
    display: inline-block;
    margin-top: 180px;
    position: relative;
    padding: 58px 41px;
    text-align: left;
    background: rgb(51, 51, 51);
    border-radius: 160px 0px 0px 160px;
}

.ser_info::before,
.ser_info::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 7%;
    background: rgb(51, 51, 51);
    z-index: -1;
    top: 0px;
    border-radius: 160px 0px 0px 160px;
}

.ser_info::after {
    top: initial;
    bottom: 0px;
    transform: inherit;
}

.services-blocks h3 {
    text-transform: uppercase;
    color: rgb(255, 164, 93);
    font-size: 34px;
    margin-bottom: 9px;
    font-weight: 400;
    display: inline-block;
}

.services-blocks h3::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 2px;
    border-bottom: 1px solid;
    left: 106%;
    top: 20px;
}

.services-blocks p {
    color: rgb(191, 191, 191);
    font-size: 15px;
    line-height: 26px;
}

.services-blocks a {
    color: rgb(255, 255, 255);
    display: inline-block;
    background: transparent;
    border: 2px solid;
    padding: 5px 17px;
    margin-top: 21px;
    position: relative;
    border-radius: 20px;
}

.services-blocks:hover a {
    background-color: rgb(240, 133, 51);
    color: rgb(255, 255, 255);
}

.services_list {
    position: relative;
    display: block;
    color: #181818;
    text-align: center;
    height: 324px;
    box-shadow: 0px 0px 10px #ebebeb;
    border-radius: 108px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 5px solid #fff;
}

.services_list::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background: linear-gradient(to bottom, #ffffff, rgb(211 211 211));
    border-radius: 108px;
}

.services_list::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 50px;
    left: 0;
    right: 0px;
    margin: auto;
    border-right: 1px solid;
    bottom: -55px;
}

.services_row_list .col-md-2 {
    flex: 0 0 20%;
    max-width: 16.66666666%;
    padding: 0 10px;
}


/* 
.services_row_list .col-md-2:nth-child(1) .services_list {
    background-image: url(../images/services/cardiology.jpg);
}

.services_row_list .col-md-2:nth-child(2) .services_list {
    background-image: url(../images/services/nephrology.jpg);
}

.services_row_list .col-md-2:nth-child(3) .services_list {
    background-image: url(../images/services/pulmonology.jpg);
}

.services_row_list .col-md-2:nth-child(4) .services_list {
    background-image: url(../images/services/cardiothoracic.jpg);
}

.services_row_list .col-md-2:nth-child(5) .services_list {
    background-image: url(../images/services/criticalcare.jpg);
} */

.services_info_b {
    position: absolute;
    bottom: 18px;
    width: 100%;
    padding: 0 3px;
}

.services_info_b h3 {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
}

.services_info_b p {
    font-size: 14px;
    color: #333;
    line-height: 20px;
    margin-top: 6px;
}

.services_b_sectin_list {
    max-width: 1045px;
    margin: 28px auto 0;
    padding: 0 0px;
    border-bottom: 1px solid;
    padding-bottom: 0;
}

.service_carousel .owl-dots {
    position: absolute;
    width: 30px;
    right: -41px;
    text-align: center;
    top: 133px;
}

.service_carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #333;
    margin: 2px 0px;
    border-radius: 50%;
}

.service_carousel .owl-dots .owl-dot.active {
    background-color: #dbc16d;
}

.services_icon {
    display: inline-block;
    width: 87px;
    height: 87px;
    background: linear-gradient(to top, #000000, #5c5c5c);
    border-radius: 50%;
    line-height: 81px;
    margin-top: 13px;
    transition: all ease-in-out .6s;
}

.services_list:hover .services_icon {
    background: linear-gradient(to top, #cba207, #606060);
}

.services_icon img {
    display: inline-block;
    width: 50px;
}

.ha_icon {
    position: absolute;
    width: 44px;
    height: 44px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    color: #1c1c1c;
    font-size: 24px;
    background: #dbc16d;
    border-radius: 50%;
    line-height: 41px;
    box-shadow: 0px 0px 10px #ccc;
    top: 9px;
    opacity: .4;
    transition: all ease-in-out .8s;
}

.services_list:hover .ha_icon {
    opacity: 1;
    transform: rotate(360deg);
}

.ser_bottm_txt {
    text-align: center;
}

.ser_bottm_txt span {
    color: #F08434;
}

.ser_bottm_txt h3 {
    display: inline-block;
    text-transform: uppercase;
    font-size: 32px;
    margin-top: 13px;
}

.icon-star-5 {
    height: 92px;
    width: 54px;
}

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

.program-block .inner-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 300ms ease 0s;
}

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

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

.program-block .image {
    position: relative;
    margin-bottom: 0px;
    background-color: rgb(255, 72, 128);
}

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

.program-block .inner-box:hover .image img {
    opacity: 0.8;
    transform: scale(1.1);
}

.program-block .lower-content {
    position: relative;
    padding: 55px 60px 0px;
    background-color: rgb(255, 255, 255);
}

.program-block h4 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: rgb(30, 44, 103);
    font-weight: 700;
    margin-bottom: 18px;
}

.program-block h4 a {
    color: rgb(30, 44, 103);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.program-block .inner-box:hover h4 a {
    color: rgb(37, 189, 216);
}

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

.program-block .program-info {
    position: relative;
    border-top: 1px solid rgb(232, 230, 236);
    padding: 25px 0px 45px;
}

.program-block .program-info li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: rgb(30, 44, 103);
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 40px;
}

.program-block .program-info li span {
    color: rgb(105, 100, 120);
    font-weight: 500;
    margin-right: 5px;
}

.program-block .program-info li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 22px;
    color: rgb(255, 73, 134);
    font-weight: 400;
}

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

.program-block .btn-box a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    padding: 10px 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(37, 189, 216);
    transition: all 300ms ease 0s;
}

.program-block .inner-box:hover .btn-box a {
    background-color: rgb(30, 44, 103);
}

.program-section.style-two {
    background-color: rgb(255, 255, 255);
    padding: 120px 0px 115px;
}

.program-section.style-two .program-block .lower-content {
    border-width: 0px 1px 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: rgb(236, 230, 221);
    border-bottom-color: rgb(236, 230, 221);
    border-left-color: rgb(236, 230, 221);
    border-image: initial;
    border-top-style: initial;
    border-top-color: initial;
}

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

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

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

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

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

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

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

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

.program-single .program-info .inner {
    position: relative;
    padding: 55px 50px 30px;
    border-width: 1px 1px 0px;
    border-top-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-color: rgb(232, 230, 236);
    border-right-color: rgb(232, 230, 236);
    border-left-color: rgb(232, 230, 236);
    border-image: initial;
    border-bottom-style: initial;
    border-bottom-color: initial;
}

.program-single .program-info h4 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: rgb(37, 189, 216);
    font-weight: 400;
    margin-bottom: 30px;
}

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

.program-single .program-info .info-list li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: rgb(30, 44, 103);
    font-weight: 500;
    margin-bottom: 15px;
    padding-left: 45px;
}

.program-single .program-info .info-list li span {
    display: block;
    color: rgb(105, 100, 120);
    font-weight: 500;
    margin-bottom: 8px;
}

.program-single .program-info .info-list li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 26px;
    color: rgb(255, 71, 136);
    font-weight: 400;
}

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

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

.program-single .content-box h2 {
    position: relative;
    font-size: 60px;
    line-height: 1em;
    color: rgb(30, 44, 103);
    font-weight: 700;
    margin-bottom: 30px;
}

.program-single .content-box p {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: rgb(105, 100, 120);
    font-weight: 400;
}

.faq-section {
    position: relative;
    background-color: rgb(242, 245, 246);
    padding: 120px 0px 70px;
}

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

.faq-section .icon-sun {
    inset: auto -265px 90px auto !important;
}

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

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

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

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

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

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

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

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

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

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    color: rgb(30, 44, 103);
    font-weight: 400;
    cursor: pointer;
    padding: 25px 100px 25px 30px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(236, 230, 221);
    border-radius: 8px;
    transition: all 500ms ease 0s;
}

.accordion-box .block .acc-btn::before {
    position: absolute;
    right: 22px;
    top: 22px;
    height: 35px;
    width: 35px;
    font-size: 14px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    line-height: 35px;
    text-align: center;
    background: rgb(30, 44, 103);
    content: "";
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    transition: all 500ms ease 0s;
}

.accordion-box .block .acc-btn.active {
    position: relative;
    background-color: rgb(30, 44, 103);
    color: rgb(255, 255, 255);
}

.accordion-box .block .acc-btn.active::before {
    background-color: rgb(37, 189, 216);
    content: "";
}

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

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

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

.accordion-box .block .content .text {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: rgb(105, 100, 120);
    font-weight: 400;
}

.activities-section {
    position: relative;
    padding: 120px 0px;
    background-color: rgb(30, 44, 103);
}

.activities-section::before {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: "";
    opacity: 0.1;
}

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

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

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

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

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

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

.activity-block {
    position: relative;
}

.activity-block .inner-box {
    position: relative;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    border-bottom: 4px solid rgb(37, 189, 216);
    transition: all 300ms ease 0s;
    overflow: hidden;
}

.activity-block.pink .inner-box {
    border-bottom-color: rgb(255, 71, 136);
}

.activity-block.green .inner-box {
    border-bottom-color: rgb(95, 194, 75);
}

.activity-block.yellow .inner-box {
    border-bottom-color: rgb(249, 176, 1);
}

.activity-block.orange .inner-box {
    border-bottom-color: rgb(255, 78, 49);
}

.activity-block .inner-box:hover {
    background-color: rgb(37, 189, 216);
}

.activity-block.pink .inner-box:hover {
    background-color: rgb(255, 71, 136);
}

.activity-block.green .inner-box:hover {
    background-color: rgb(95, 194, 75);
}

.activity-block.yellow .inner-box:hover {
    background-color: rgb(249, 176, 1);
}

.activity-block.orange .inner-box:hover {
    background-color: rgb(255, 78, 49);
}

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

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

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

.activity-block .inner-box:hover .image img {
    opacity: 0.8;
    transform: scale(1.05);
}

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

.activity-block .caption-box h4 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 25px;
    color: rgb(30, 44, 103);
    font-weight: 700;
}

.activity-block .caption-box h4 a {
    color: rgb(30, 44, 103);
    transition: all 300ms ease 0s;
}

.activity-block .caption-box h4 a:hover,
.activity-block .inner-box:hover .caption-box h4 a {
    color: rgb(255, 255, 255);
}

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

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

.activities-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 21px;
    width: 21px;
    border: 8px solid rgb(255, 255, 255);
    opacity: 0.1;
    margin: 0px 2px;
    border-radius: 50%;
    transition: all 300ms ease 0s;
}

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

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

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

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

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

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

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

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

.events-section .icon-balloon-2 {
    inset: auto -360px 40px auto !important;
}

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

.event-block .inner-box {
    position: relative;
    padding-left: 210px;
    border: 1px solid rgb(232, 230, 236);
    min-height: 210px;
    border-radius: 10px;
    padding-top: 50px;
    transition: all 300ms ease 0s;
}

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

.event-block .date {
    position: absolute;
    left: 40px;
    top: 40px;
    height: 130px;
    width: 130px;
    background-color: rgb(37, 189, 216);
    text-align: center;
    font-size: 24px;
    line-height: 26px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    border-radius: 50%;
    overflow: hidden;
}

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

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

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

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

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

.event-block h5 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: rgb(30, 44, 103);
    font-weight: 700;
    margin-bottom: 15px;
}

.event-block h5 a {
    color: rgb(30, 44, 103);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.event-block h5 a:hover {
    color: rgb(37, 189, 216);
}

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

.event-block .event-info li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: rgb(30, 44, 103);
    font-weight: 500;
    padding-left: 40px;
    margin-bottom: 8px;
}

.event-block .event-info li span {
    color: rgb(105, 100, 120);
    font-weight: 500;
    margin-right: 5px;
}

.event-block .event-info li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 22px;
    color: rgb(255, 71, 136);
    font-weight: 400;
}

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

.events-container {
    position: relative;
}

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

.events-container .month-carousel li {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    background-color: rgb(30, 44, 103);
    padding: 15px 10px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 300ms ease 0s;
}

.events-container .month-carousel li:hover,
.events-container .month-carousel .active.center li {
    background-color: rgb(37, 189, 216);
}

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

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

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

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

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

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

.event-calendar .title-box h2 {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 1.2em;
    color: rgb(30, 44, 103);
    font-weight: 700;
}

.event-calendar .week-days {
    position: relative;
    background-color: rgb(37, 189, 216);
    border-radius: 5px 5px 0px 0px;
}

.event-calendar .week-days li {
    position: relative;
    float: left;
    width: 14.285%;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    line-height: 30px;
    border-right: 1px solid rgb(254, 130, 48);
}

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

.event-calendar .month-days {
    position: relative;
    border-left: 1px solid rgb(233, 231, 237);
    z-index: 99;
}

.event-day {
    position: relative;
    float: left;
    width: 14.285%;
    text-align: center;
    background-color: rgb(255, 255, 255);
    padding: 40px 25px 35px;
    border-right: 1px solid rgb(233, 231, 237);
    border-bottom: 1px solid rgb(233, 231, 237);
}

.event-day .count {
    position: relative;
    display: inline-block;
    height: 38px;
    width: 38px;
    font-size: 18px;
    color: rgb(255, 255, 255);
    line-height: 38px;
    font-weight: 700;
    text-align: center;
    background-color: rgb(30, 44, 103);
    border-radius: 50%;
    margin-bottom: 10px;
}

.event-day .title {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: rgb(105, 100, 120);
    font-weight: 700;
}

.event-day.active {
    background-color: rgb(242, 245, 246);
}

.event-day.active .count {
    background-color: rgb(37, 189, 216);
}

.event-day.active .title {
    color: rgb(30, 44, 103);
}

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

.event-day .event-popup {
    position: absolute;
    left: -10px;
    bottom: 85%;
    margin-top: 10px;
    width: 570px;
    background-color: rgb(37, 189, 216);
    padding: 40px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
    transition: all 300ms ease 0s;
}

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

.event-day .event-popup::before {
    position: absolute;
    left: 75px;
    bottom: -10px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid rgb(37, 189, 216);
    content: "";
}

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

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

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

.event-day .event-popup h5 a {
    color: rgb(255, 255, 255);
}

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

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

.event-day .event-popup .event-info li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 22px;
    color: rgb(255, 255, 255);
    font-weight: 300;
}

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

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

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

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

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

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

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

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

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

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

.event-single .content-column h2 {
    top: -8px;
    font-size: 40px;
    line-height: 1.2em;
    color: rgb(30, 44, 103);
    font-weight: 700;
    margin-bottom: 25px;
}

.event-single .content-column p {
    font-size: 16px;
    line-height: 30px;
    color: rgb(105, 100, 120);
    margin-bottom: 30px;
}

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

.event-single .venue-block .inner-box {
    position: relative;
    padding: 55px 60px 52px;
    background-color: rgb(30, 44, 103);
    border-radius: 5px;
}

.event-single .venue-block h4 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: rgb(255, 255, 255);
    font-weight: 400;
    margin-bottom: 35px;
}

.event-single .venue-block .text {
    font-size: 16px;
    line-height: 30px;
    color: rgb(200, 191, 227);
    font-weight: 400;
    margin-bottom: 38px;
}

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

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

.event-single .venue-block .venue-info li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    color: rgb(37, 189, 216);
    font-size: 22px;
}

.event-single .venue-block .venue-info li a {
    color: rgb(255, 255, 255);
    transition: all 300ms ease 0s;
}

.event-single .venue-block .venue-info li a:hover {
    color: rgb(255, 255, 255);
}

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

.event-single .organize-block .inner-box {
    position: relative;
    padding: 55px 60px 50px;
    background-color: rgb(37, 189, 216);
    border-radius: 5px;
}

.event-single .organize-block h4 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: rgb(255, 255, 255);
    font-weight: 400;
    margin-bottom: 35px;
}

.event-single .organize-block .text {
    font-size: 16px;
    line-height: 30px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    margin-bottom: 36px;
}

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

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

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

.event-single .organize-block .organize-info li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.event-single .organize-block .organize-info li a {
    color: rgb(255, 255, 255);
    transition: all 300ms ease 0s;
}

.event-single .organize-block .organize-info li a:hover {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

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

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

.newsletter-section {
    position: relative;
    padding: 71px 0px 0;
    color: rgb(255, 255, 255);
    text-align: center;
    /* z-index: 1; */
}

.add_bar_row .col-md-4 {
    border-right: 1px dashed rgb(191 191 191);
    padding: 27px 8px;
    border-bottom: 1px dashed rgb(191 191 191);
}

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

._addre_bar i {
    width: 45px;
    height: 45px;
    background: rgb(37 37 37);
    color: #d3b75f;
    border-radius: 4px;
    border: 3px solid rgb(179 179 179);
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 15px;
}

._addre_bar h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #c9c9c9;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 28px;
    right: 0px;
    background: #dfc673;
    top: -28px;
    border-radius: 31px 0px 0px 0px;
}

.newsletter-section::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: -1;
    width: 20px;
    height: 20px;
    border: 4px solid #a7a7a7;
    border-radius: 50%;
    bottom: -14px;
    background: #e5ba14;
}

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

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

.newsletter-section h2 {
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 27px;
}

.newsletter-section h4 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: inherit;
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.newsletter-section .inner-container {
    max-width: 1245px;
    margin: auto;
}

.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: rgb(255, 255, 255);
}

.newsletter-section .form-control::placeholder {
    color: rgb(238, 238, 238);
}

.subscribe-form .form-group .icon {
    position: absolute;
    left: 24px;
    top: 20px;
    z-index: 1;
    color: rgb(136, 136, 136);
    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: rgb(133, 134, 135);
    font-weight: 500;
    background: rgb(255, 255, 255);
    padding: 25px 40px;
    border-radius: 0px;
    transition: all 300ms ease 0s;
}

.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: rgb(93, 197, 117);
}

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

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

.tips-row-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgb(232, 31, 49);
    left: -17px;
    top: -17px;
}

.tips-row-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgb(232, 31, 49);
    right: -17px;
    top: -17px;
    z-index: -1;
}

.tips-desc {
    position: relative;
    background: rgb(254, 254, 254);
    padding: 0px;
    left: 0px;
    margin-top: 0px;
    width: 100%;
    bottom: 0px;
}

.tips-desc h5 {
    position: relative;
    font-size: 26px;
    color: rgb(51, 51, 51);
}

.tips-desc h3 {
    text-transform: uppercase;
    margin-bottom: 13px;
    color: rgb(232, 31, 49);
    font-weight: 600;
    font-size: 39px;
}

.tips-list p {
    position: relative;
    padding-left: 24px;
    color: rgb(21, 21, 21);
    font-weight: 500;
    line-height: 31px;
}

.tips-list p::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    border-bottom: 2px solid rgb(51, 51, 51);
    left: 0px;
    top: 13px;
}

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

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

.team_bg {
    position: absolute;
    left: 0px;
    top: 20%;
    z-index: -1;
    opacity: .2;
}

.team_bg2 {
    left: initial;
    right: 0px;
}

.facilities-row .col-md-2 {
    flex: 0 0 40%;
    max-width: 33.33333333%;
    padding: 18px 10px;
    border-right: 1px dashed;
    border-bottom: 1px dashed;
}

.facilities-row .col-md-2:nth-child(3),
.facilities-row .col-md-2:nth-child(6),
.facilities-row .col-md-2:nth-child(9) {
    border-right: 0px;
}

.facilities-row .col-md-2:nth-child(7),
.facilities-row .col-md-2:nth-child(8),
.facilities-row .col-md-2:nth-child(9) {
    border-bottom: 0px;
}

.facilities-row .col-md-2:nth-child(1)::before,
.facilities-row .col-md-2:nth-child(2)::before,
.facilities-row .col-md-2:nth-child(4)::before,
.facilities-row .col-md-2:nth-child(5)::before {
    content: "";
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 30px;
    height: 30px;
    background: #737373;
    z-index: 1;
    transform: rotate(45deg);
}

.fac-title {
    margin-bottom: 0;
    background: #252525;
    padding: 17px 11px;
    border-radius: 13px;
}

.fac-title.sec-title h2 {
    padding-top: 0px;
}

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

.fac-title h2::before {}

.facility-list {
    text-align: center;
    color: rgb(53, 53, 53);
    line-height: 30px;
    position: relative;
    z-index: 1;
    padding: 12px 0 0;
}

.facility-list::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 100%;
    background-color: rgb(25 25 25 / 90%);
    top: 0px;
    left: 0px;
    right: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out 0s;
}

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

.facility-list::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 3px;
    background: rgb(34 39 43);
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: 0px;
}

.facility-list a {
    position: absolute;
    left: 42%;
    bottom: 11%;
    width: 50px;
    height: 50px;
    background: rgb(247, 140, 57);
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 46px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.9s ease-in-out 0s;
}

.facility-list:hover a {
    opacity: 1;
    visibility: visible;
    bottom: 23%;
}

.facility-list a:hover {
    background-color: rgb(245, 245, 245);
}

.fac_img {
    margin-bottom: 0px;
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #f6f6f6;
    box-shadow: 0px 8px 17px #353535;
}

.doc_info {
    position: relative;
    padding: 13px 0px 0;
    color: #efaa7a;
}

.doc_info h3 {
    text-transform: uppercase;
    font-size: 25px;
    color: #292929;
    font-weight: 600;
    transition: all 0.8s ease-in-out 0s;
}

.facility-list:hover .doc_info h3 {
    color: #fff;
}

.doc_info span {
    font-size: 16px;
    color: #e4721c;
    font-weight: 600;
}

.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 {
    inset: auto -360px -140px auto !important;
}

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

.icon-balloon-2 {
    height: 310px;
    width: 218px;
}

.icon-star-6 {
    height: 92px;
    width: 54px;
}

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

.team-block .inner-box {
    position: relative;
    border: 1px solid rgb(232, 230, 236);
    border-radius: 10px;
    overflow: hidden;
    transition: all 300ms ease 0s;
}

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

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

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

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

.team-block .info-box .name {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: rgb(30, 44, 103);
    font-weight: 600;
    margin-bottom: 5px;
}

.team-block .info-box .name a {
    color: rgb(30, 44, 103);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.team-block .info-box .name a:hover {
    color: rgb(37, 189, 216);
}

.team-block .info-box .designation {
    display: block;
    font-size: 16px;
    color: rgb(105, 100, 120);
    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: rgb(37, 189, 216);
    padding: 10px 0px;
    transition: all 300ms ease 0s;
}

.team-block .inner-box:hover .info-box .social-links {
    background-color: rgb(30, 44, 103);
}

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

.team-block .social-links li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: rgb(255, 255, 255);
    transition: all 300ms ease 0s;
}

.team-block .social-links li a:hover {
    color: rgb(255, 73, 134);
}

.appointmeent-section {
    position: relative;
}

.appointment-block {
    max-width: 603px;
    text-align: center;
    padding: 27px 45px;
    box-shadow: rgb(208, 208, 208) 0px 0px 14px;
    background: rgb(255, 255, 255);
    position: relative;
}

.appointment-block::before,
.appointment-block::after {
    content: "";
    position: absolute;
    width: 163px;
    height: 163px;
    background: rgb(255, 202, 217);
    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: rgb(0, 0, 0);
    font-weight: 600;
    margin-bottom: 30px;
}

.appointment-block .form-control {
    background-color: rgb(245, 245, 245);
    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: 0px;
}

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

.why_section::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
}

._why_section_block {
    position: relative;
    background: rgb(37 37 37);
    color: rgb(251, 160, 90);
    padding: 71px 26px;
    z-index: 2;
}

._why_section_block .sec-title h2 {
    color: rgb(255, 255, 255);
    font-size: 36px;
    padding-top: 7px;
}

._why_section_block .sec-title p {
    color: #bdbdbd;
    font-size: 16px;
    line-height: 25px;
    margin-top: 9px;
    border-bottom: 1px dashed;
    padding-bottom: 28px;
    margin-bottom: 34px;
}

._why_section_block::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 100%;
    top: 0px;
    background: rgb(37 37 37);
}

._why_row .col-md-6:nth-child(1) {
    border-right: 1px dashed rgb(204, 204, 204);
}

.sec-title span {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    font-family: "Dancing Script", cursive;
    color: #fb9242;
}

.why_blocks {
    text-align: center;
}

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

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

.video_section {
    position: absolute;
    text-align: center;
    right: 0;
    top: 0;
    width: 46%;
    height: 467px;
}

.vide_title {
    text-transform: uppercase;
    font-size: 30px;
    padding: 0px;
    font-weight: 700;
    font-family: Saira, sans-serif;
    color: #ffffff;
    margin: 25px 0 15px;
    position: absolute;
    bottom: 8px;
    z-index: 2;
    left: 0;
}

.video_section::before,
.video_section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 70px;
    left: 0;
    bottom: 0;
    background: #f08533;
    z-index: 1;
}

.video_section::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 396px;
    background: rgb(0 0 0 / 28%);
    transition: all ease-in-out .7s;
}

.video_section:hover:after {
    background: transparent;
}

.video_section img {
    width: 100%;
    position: relative;
    display: none;
}

.video_section a {
    display: inline-block;
    width: 87px;
    height: 87px;
    background: rgb(37 37 37);
    color: rgb(255 255 255);
    font-size: 39px;
    border-radius: 50%;
    line-height: 70px;
    position: absolute;
    bottom: 12px;
    right: 52px;
    margin: auto;
    transition: all 0.9s ease-in-out 0s;
    border: 5px solid #f08533;
    z-index: 2;
}

.video_section:hover a {
    color: rgb(249 141 59);
    transform: rotate(360deg);
}

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

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

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

.main-timeline.faq_timeline .timeline {
    width: 42%;
    padding: 0 0 0 30px;
    margin: 0 30px 20px 0;
    float: left;
    position: relative;
    z-index: 1;
}

.main-timeline.faq_timeline .timeline-content {
    color: #333;
    background: linear-gradient(to left, rgb(255 255 255), #f7f7f7);
    height: 151px;
    padding: 0px 45px 0 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: table-cell;
    width: 600px;
    vertical-align: middle;
    text-align: right;
}

.main-timeline.faq_timeline .timeline-content:before,
.main-timeline.faq_timeline .timeline-content:after {
    content: '';
    background: linear-gradient(to bottom, #efdb9e 49%, #efdb9e 50%);
    height: 65%;
    width: 14px;
    position: absolute;
    left: 15px;
    top: 36px;
    z-index: -1;
}

.main-timeline.faq_timeline .timeline-content:after {
    height: 127px;
    width: 127px;
    border-radius: 50%;
    transform: translateY(-50%);
    top: 50%;
    left: auto;
    right: -75px;
}

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

.main-timeline.faq_timeline .timeline-year {
    color: #fff;
    background: linear-gradient(to bottom, #252525, #6b6a6a);
    font-size: 42px;
    text-align: center;
    line-height: 81px;
    height: 81px;
    width: 81px;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #fff;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -52px;
}

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

.main-timeline.faq_timeline .title {
    color: #1d1d1d;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 7px 0;
}

.main-timeline.faq_timeline .description {
    font-size: 14px;
    margin: 0;
    line-height: 23px;
}

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

.main-timeline.faq_timeline .timeline:nth-child(even) .timeline-content {
    padding: 0px 20px 0px 45px;
    text-align: left;
    background: linear-gradient(to right, rgb(255 255 255), #f7f7f7);
}

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

.main-timeline.faq_timeline .timeline:nth-child(even) .timeline-content:after {
    right: auto;
    left: -75px;
}

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

.main-timeline.faq_timeline .timeline:nth-child(4n+4) .title {}

@media screen and (max-width:767px) {
    .main-timeline.faq_timeline .timeline,
    .main-timeline.faq_timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 0 75px 0 30px;
        margin: 0 0 20px;
    }
    .main-timeline.faq_timeline .timeline:nth-child(even) {
        padding: 0 30px 0 75px;
    }
    .main-timeline.faq_timeline .timeline .timeline-content:after {
        right: 0;
    }
    .main-timeline.faq_timeline .timeline:nth-child(even) .timeline-content:after {
        left: 0;
    }
    .main-timeline.faq_timeline .timeline .timeline-icon {
        right: 20px;
    }
    .main-timeline.faq_timeline .timeline:nth-child(even) .timeline-icon {
        left: 20px;
    }
}

@media screen and (max-width:567px) {
    .main-timeline.faq_timeline .timeline {
        padding: 0 35px 0 10px;
    }
    .main-timeline.faq_timeline .timeline:nth-child(even) {
        padding: 0 10px 0 30px;
    }
    .main-timeline.faq_timeline .timeline .timeline-content {
        padding: 30px 50px 30px 20px;
    }
    .main-timeline.faq_timeline .timeline:nth-child(even) .timeline-content {
        padding: 30px 20px 30px 50px;
    }
    .main-timeline.faq_timeline .timeline .timeline-content:after {
        height: 80px;
        width: 80px;
        right: 0;
    }
    .main-timeline.faq_timeline .timeline:nth-child(even) .timeline-content:after {
        left: 0;
    }
    .main-timeline.faq_timeline .timeline .timeline-icon {
        font-size: 30px;
        line-height: 50px;
        height: 50px;
        width: 50px;
        box-shadow: 0 0 0 5px #fff;
        right: 20px;
        right: 15px;
    }
    .main-timeline.faq_timeline .timeline:nth-child(even) .timeline-icon {
        left: 15px;
    }
    .main-timeline.faq_timeline .title {
        font-size: 18px;
    }
}

.testimonial-section {
    position: relative;
    padding: 75px 0px 0px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 350px;
    right: 0;
    background: rgb(28 28 28 / 75%);
    top: 0;
}

.testimonial-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 350px;
    background-image: url(../images/happy-family.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0px;
    z-index: -1;
}

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

.testimonial-head h2 {
    color: #fff;
}

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

.testimonila_pic {
    position: absolute;
    left: 0px;
    top: 0;
    width: 45%;
    z-index: -1;
    height: 527px;
}

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

.testimonial-block .inner-box {
    position: relative;
    background-color: rgb(175, 255, 194);
    padding: 77px 27px 20px;
    text-align: center;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0) 0px 10px 30px;
}

.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 center;
    content: "";
    opacity: 0;
    transition: all 300ms ease 0s;
}

.testimonial-block .inner-box::after {
    inset: auto 30px 30px auto;
    transform: rotate(180deg);
}

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

.testimonial-block .text {
    position: relative;
    display: block;
    font-size: 21px;
    line-height: 32px;
    color: rgb(0, 0, 0);
    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: rgb(0, 0, 0);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.testimonial-block .designation {
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: rgb(105, 100, 120);
    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: 0px auto;
    content: "";
    z-index: 1;
    border-radius: 10px;
    transition: all 1000ms ease 0s;
    transform: scale(0.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 {
    transform: scale(1);
}

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

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

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

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    height: 21px;
    width: 21px;
    border: 3px solid rgb(35 31 32);
    opacity: 1;
    margin: 0px 2px;
    border-radius: 50%;
    transition: all 300ms ease 0s;
}

.testimonial-carousel .owl-dot:hover,
.testimonial-carousel .owl-dot.active {
    opacity: 1;
    border: 3px solid rgb(241 186 13);
}

.testi_row .col-md-4 {
    padding: 0px 10px 12px;
}

.serviceBox.testimnila_box {
    text-align: center;
    padding: 31px 67px;
    background: #dbc16d;
    position: relative;
    margin: 12px 5px;
    box-shadow: 0px 6px 4px #9b9b9b;
}

.serviceBox.testimnila_box::before,
.serviceBox.testimnila_box::after {
    content: "";
    position: absolute;
    color: #333;
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    font-size: 28px;
}

.serviceBox.testimnila_box::before {
    content: "\f10d";
    left: 17px;
    top: 17px;
}

.serviceBox.testimnila_box::after {
    content: "\f10e";
    right: 17px;
    bottom: 17px;
}

.serviceBox.testimnila_box .service-icon {
    color: rgb(51, 51, 51);
    background: rgb(255, 255, 255);
    font-size: 50px;
    line-height: 61px;
    width: 85px;
    height: 85px;
    margin: 0px auto 50px;
    border-radius: 50%;
    border: 6px solid rgb(255 255 255);
    box-shadow: rgb(245 184 81) 0px 0px 5px inset, rgb(0 0 0) 0px 15px 0px;
    position: relative;
}

.serviceBox.testimnila_box .service-icon::before,
.serviceBox.testimnila_box .service-icon::after {
    content: "";
    background-color: rgb(255 184 81);
    height: 17px;
    width: 17px;
    border-radius: 50%;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: -33px;
}

.serviceBox.testimnila_box .service-icon::after {
    height: 12px;
    width: 12px;
    bottom: -50px;
}

.serviceBox.testimnila_box .title {
    color: rgb(36 36 36);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0px 0px 7px;
}

.serviceBox.testimnila_box .description {
    font-size: 15px;
    line-height: 25px;
}

.serviceBox.testimnila_box.red .service-icon {
    color: rgb(240, 133, 51);
    border-color: rgb(255 255 255);
}

.serviceBox.testimnila_box.red .service-icon::before,
.serviceBox.testimnila_box.red .service-icon::after {
    background-color: rgb(240, 133, 51);
}

.testimonial-head p {
    color: #eee;
}

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

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

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

.testimoanial_read a {
    display: inline-block;
    color: rgb(240, 133, 51);
    font-weight: 600;
    font-size: 20px;
    border: 2px solid;
    padding: 7px 19px;
    border-radius: 30px;
    background: rgb(255, 255, 255);
}

.facilitysection {
    position: relative;
    padding: 39px 0px 58px;
}

.facilitysection .auto-container::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 14px;
    background: #d3d3d3;
    left: 0;
    right: 0;
    margin: auto;
    top: 60%;
}

.lasericon {
    position: absolute;
    left: 0px;
    top: 22px;
    width: 359px;
    opacity: .6;
}

.lasr_img {
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0px 0px 10px #3e3e3e;
}

.lsttrtblock_flex {
    position: relative;
}

.lsttrtblock {
    position: relative;
    text-align: center;
    width: 451px;
    height: 451px;
    border: 14px solid #d3d3d3;
    border-radius: 50%;
    background: #262626;
    padding: 62px 59px 0;
}

.lsr_treat_list {
    position: relative;
    font-size: 21px;
    color: #e1c466;
    border-bottom: 1px dashed;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

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

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

.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: rgb(117, 113, 123);
    font-weight: 500;
    margin-bottom: 50px;
}

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

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

.clients-section .image-box img {
    display: inline-block;
    max-width: 100%;
    width: auto;
    height: auto;
    opacity: 0.7;
    transition: all 300ms ease 0s;
}

.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: rgb(255, 71, 137);
    padding: 80px 0px;
    border: 0px;
}

.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: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    text-align: center;
    background-color: rgba(52, 28, 119, 0.9);
    content: "";
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
    transform: scale(0, 1);
    transform-origin: right center;
}

.gallery-item .image-box:hover .overlay-box {
    transform: scale(1, 1);
    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: rgb(37, 189, 216);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    font-weight: 400;
    line-height: 58px;
}

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

.video-section {
    position: relative;
    padding: 120px 0px 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 {
    inset: auto -220px 90px auto !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: 0px;
}

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

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

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

.video-box .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100px;
    width: 100px;
    background-color: rgb(37, 189, 216);
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 18px;
    padding-left: 5px;
    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: rgb(105, 100, 120);
    font-weight: 400;
    margin-bottom: 36px;
}

.video-section .content-column .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: rgb(105, 100, 120);
    font-weight: 400;
}

.call-to-action {
    position: relative;
    padding: 110px 0px;
    background-color: rgb(255, 71, 136);
}

.call-to-action h2 {
    position: relative;
    float: left;
    display: block;
    font-size: 50px;
    line-height: 1.2em;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

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

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

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

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

.news-section-two .icon-star-4 {
    inset: auto -140px 240px 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: 0px;
    overflow: hidden;
    border: 10px;
    background-color: rgb(57, 61, 114);
}

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

.news-block .inner-box:hover .image-box .image img {
    opacity: 0.7;
    transform: scale(1.1);
}

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

.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: rgb(37, 189, 216);
    font-weight: 400;
}

.news-block .post-info li a {
    color: rgb(37, 189, 216);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.news-block .post-info li a:hover {
    color: rgb(37, 189, 216);
}

.news-block h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.25em;
    color: rgb(30, 44, 103);
    font-weight: 700;
    margin-bottom: 25px;
}

.news-block h3 a {
    color: rgb(30, 44, 103);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.news-block h3 a:hover {
    color: rgb(255, 71, 136);
}

.news-block .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: rgb(105, 100, 120);
    font-weight: 400;
    margin-bottom: 32px;
}

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

.news-block .btn-box a {
    display: inline-block;
    font-size: 32px;
    color: rgb(30, 44, 103);
    transition: all 300ms ease 0s;
}

.news-block .btn-box a:hover {
    color: rgb(255, 71, 136);
}

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

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

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

.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: rgb(37, 189, 216);
    font-weight: 400;
}

.news-detail .lower-content .post-info li a {
    color: rgb(37, 189, 216);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.news-detail .lower-content .post-info li a:hover {
    color: rgb(37, 189, 216);
}

.news-detail .lower-content h3 {
    position: relative;
    font-size: 40px;
    line-height: 1.2em;
    color: rgb(30, 44, 103);
    font-weight: 700;
    margin-bottom: 30px;
}

.news-detail .lower-content p {
    position: relative;
    font-size: 15px;
    line-height: 30px;
    color: rgb(105, 100, 120);
    font-weight: 400;
    margin-bottom: 30px;
}

.news-detail .post-share-options {
    position: relative;
    padding: 30px 0px;
    margin-bottom: 10px;
    border-top: 1px solid rgb(232, 230, 236);
}

.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: rgb(30, 44, 103);
    padding: 10px 0px;
    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: rgb(255, 255, 255);
    background-color: rgb(37, 189, 216);
    border-radius: 5px;
    transition: all 300ms ease 0s;
}

.news-detail .post-share-options .tags li a:hover {
    background-color: rgb(30, 44, 103);
    color: rgb(255, 255, 255);
}

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

.author-box {
    position: relative;
    padding: 60px;
    background-color: rgb(30, 44, 103);
    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: rgb(255, 255, 255);
    font-weight: 400;
    margin-bottom: 35px;
}

.author-box .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: rgb(200, 191, 227);
    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: rgb(57, 61, 114);
    font-weight: 500;
    margin-right: 40px;
}

.author-box .contact-info li span {
    color: rgb(255, 72, 128);
    margin-right: 15px;
}

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

.author-box .contact-info li a {
    color: rgb(57, 61, 114);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.author-box .contact-info li a:hover {
    color: rgb(255, 72, 128);
}

.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: rgb(18, 18, 18);
}

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

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

.contact-section .sec-title .text {
    font-size: 22px;
    line-height: 36px;
    color: rgb(105, 100, 120);
    font-weight: 400;
    margin-top: 40px;
}

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

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

.contact-form .form-group {
    position: relative;
    padding: 0px 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: rgb(133, 134, 135);
    line-height: 28px;
    padding: 25px 30px;
    border: 1px solid transparent;
    background-color: rgb(242, 245, 246);
    font-weight: 500;
    border-radius: 15px;
    height: 80px;
    transition: all 300ms ease 0s;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: rgb(255, 72, 128);
}

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

.contact-form label.error {
    color: rgb(255, 72, 128);
    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: rgb(105, 100, 120);
    font-weight: 500;
    padding-left: 40px;
    margin-bottom: 30px;
}

.contact-section .contact-info li a {
    color: rgb(105, 100, 120);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.contact-section .contact-info li a:hover {
    color: rgb(255, 73, 134);
}

.contact-section .contact-info li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 20px;
    color: rgb(255, 73, 134);
    font-weight: 400;
}

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

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

.main-footer {
    position: relative;
    background: #202020;
}

.main-footer::before {
    content: "";
    right: 0;
}

.footericon {
    position: absolute;
    top: -173px;
    left: 0;
    right: 0;
    width: 206px;
    opacity: .1;
}

.footershae {
    position: absolute;
    width: 319px;
    height: 317px;
    clip-path: polygon(53% 0, 100% 38%, 88% 99%, 18% 100%, 0% 38%);
    background-color: rgb(233 212 151 / 23%);
    right: -53px;
    transform: rotate(49deg);
    bottom: 72px;
}

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

.main-footer::before {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgb(8 8 8 / 79%), rgb(0 0 0 / 83%));
}

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

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

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

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

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

.main-footer .footer-widget .widget-title {
    position: relative;
    font-size: 23px;
    font-weight: 600;
    color: rgb(255 255 255);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.main-footer .footer-widget .widget-title::before {
    content: "";
    position: absolute;
    width: 62px;
    height: 2px;
    border-bottom: 2px solid rgb(229 186 20);
    left: 0px;
    top: 32px;
}

a:hover {
    color: rgb(189 149 0);
    text-decoration: none;
}

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

.logo-widget .logo img {
    position: relative;
    transition: all 300ms ease 0s;
    margin-top: 24px;
    width: auto;
}

.logo-widget .logo img:hover {
    opacity: 1;
}

.logo-widget .text {
    position: relative;
    color: rgb(0, 0, 0);
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 7px;
}

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

.main-footer .activity-list li a {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: rgb(200, 191, 227);
    padding: 10px 15px 10px 30px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 300ms ease 0s;
}

.main-footer .activity-list li a:hover {
    border: 1px solid rgb(255, 71, 136);
}

.main-footer .list {
    position: relative;
}

.main-footer .list li {
    position: relative;
    display: block;
    margin-bottom: 2px;
    padding-left: 22px;
}

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

.main-footer .list li a {
    position: relative;
    font-size: 15px;
    line-height: 26px;
    color: #c9c9c9;
    font-weight: 500;
    transition: all 0.3s ease 0s;
}

.main-footer .list li a:hover {
    color: rgb(229 186 20);
}

.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: rgb(0, 0, 0);
    font-weight: 500;
    padding-left: 44px;
    margin-bottom: 20px;
}

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

.main-footer .contact-info li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 17px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    background: rgb(232, 31, 49);
    text-align: center;
    color: rgb(255, 255, 255);
}

.main-footer .contact-info li a {
    color: rgb(0, 0, 0);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.main-footer .contact-info li a:hover {
    color: rgb(247, 47, 103);
}

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

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

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

.main-footer .footer-bottom .copyright {
    position: relative;
    color: rgb(252 252 252);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    padding: 12px 0px;
    border-top: 1px dashed rgb(191 191 191);
}

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

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

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

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

.sidebar-widget {
    position: relative;
    padding: 45px 50px;
    background-color: rgb(242, 245, 246);
    margin-bottom: 30px;
    border-radius: 7px;
}

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

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

.sidebar-title h5 {
    position: relative;
    font-size: 22px;
    color: rgb(30, 44, 103);
    font-weight: 700;
    line-height: 30px;
}

.sidebar .search-box {
    position: relative;
    padding: 50px;
    border-radius: 7px;
    background-color: rgb(37, 189, 216);
}

.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: rgb(255, 255, 255);
    display: block;
    font-size: 16px;
    width: 100%;
    height: 80px;
    color: rgb(105, 100, 120);
    border-radius: 10px;
    transition: all 500ms ease 0s;
}

.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: rgb(30, 44, 103);
    font-weight: normal;
    transition: all 500ms ease 0s;
}

.sidebar .search-box .form-group button:hover {
    color: rgb(255, 72, 128);
}

.sidebar .search-box .form-group input[type="text"]:focus,
.sidebar .search-box .form-group input[type="search"]:focus {
    border-color: rgb(37, 189, 216);
}

.sidebar .search-box .sidebar-title h5 {
    color: rgb(255, 255, 255);
}

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

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

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

.category-list li a {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: rgb(105, 100, 120);
    display: block;
    padding-left: 20px;
    transition: all 500ms ease 0s;
}

.category-list li a::before {
    position: absolute;
    left: 0px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 5px;
    background-color: rgb(255, 73, 134);
    content: "";
}

.category-list li.active a,
.category-list li a:hover {
    color: rgb(255, 73, 134);
}

.posts-widget {
    position: relative;
}

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

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

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

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

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

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

.posts-widget .post .date {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: rgb(37, 189, 216);
    font-weight: 600;
    margin-bottom: 5px;
}

.posts-widget .post h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.5em;
    color: rgb(57, 61, 114);
    font-weight: 700;
}

.posts-widget .post h5 a {
    color: rgb(57, 61, 114);
    display: inline-block;
    transition: all 300ms ease 0s;
}

.posts-widget .post h5 a:hover {
    color: rgb(255, 73, 134);
}

.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: rgb(255, 255, 255);
    background-color: rgb(37, 189, 216);
    border-radius: 5px;
    transition: all 300ms ease 0s;
}

.sidebar .tags-list a:hover {
    background-color: rgb(30, 44, 103);
    color: rgb(255, 255, 255);
}

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

.sidebar-page-container .group-title h3 {
    position: relative;
    font-size: 40px;
    color: rgb(30, 44, 103);
    font-weight: 700;
}

.sidebar-page-container .comments-area .comment-box {
    position: relative;
    padding: 0px 0px 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgb(232, 230, 236);
    transition: all 300ms ease 0s;
}

.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: rgb(57, 61, 114);
    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: rgb(37, 189, 216);
    font-weight: 400;
    line-height: 30px;
}

.sidebar-page-container .comments-area .comment-box .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: rgb(105, 100, 120);
}

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

.sidebar-page-container .comments-area .comment-box .theme-btn {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 20px;
    font-weight: 700;
    border-radius: 5px;
    background-color: rgb(30, 44, 103);
    transition: all 300ms ease 0s;
}

.sidebar-page-container .comments-area .comment-box .theme-btn:hover {
    background-color: rgb(37, 189, 216);
}

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

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

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="password"],
.comment-form .form-group input[type="tel"],
.comment-form .form-group input[type="email"],
.comment-form .form-group textarea,
.comment-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    color: rgb(105, 100, 120);
    line-height: 28px;
    padding: 25px 40px;
    height: 80px;
    background: rgb(242, 245, 246);
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 300ms ease 0s;
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus {
    border-color: rgb(37, 189, 216);
}

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

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

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

.app_content .modal-header h4 {
    text-transform: uppercase;
    color: rgb(51, 51, 51);
}

.app_content .modal-header .close {
    position: absolute;
    right: 0px;
    top: 0px;
    background: #dbc068;
    opacity: 1;
    color: rgb(0 0 0);
    font-size: 37px;
    padding: 1px 6px;
    line-height: 39px;
}

.app_content .form-control {
    background-color: #e9e9e9;
    border: none;
}

.modal-dialog .btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    padding: 5px 30px;
    font-weight: 600;
    background: linear-gradient(to left, #dbc068, rgb(19, 19, 19));
    overflow: hidden;
    min-width: 150px;
    border-radius: 30px;
    border: none;
}

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

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

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

.breadcrumb ul {
    display: inline-block;
    margin: auto;
    list-style: none;
    border-radius: 31px;
}

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

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

.breadcrumb ul li a {
    color: #fff
}

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

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

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

.innercontent_section {
    position: relative;
    padding: 79px 0px 90px;
    min-height: 70vh;
}

.serviceBox.cnt_box {
    text-align: center;
    padding: 35px 28px 25px;
    position: relative;
    z-index: 1;
}

.serviceBox.cnt_box:before,
.serviceBox.cnt_box:after {
    content: "";
    border-radius: 25px;
    border: 10px solid #e1c25d;
    clip-path: polygon(65% 0, 100% 0, 100% 35%, 35% 100%, 0 100%, 0 65%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.serviceBox.cnt_box:after {
    border-width: 3px;
    clip-path: polygon(0 0, 60% 0, 55% 5%, 96% 44%, 100% 40%, 100% 100%, 40% 100%, 43% 95%, 5% 55%, 0 60%);
    top: 3px;
    bottom: 3px;
    right: 3px;
    left: 3px;
    border: 3px solid #333;
}

.serviceBox.cnt_box .service-icon {
    font-size: 40px;
    margin: 0 0 19px;
}

.serviceBox.cnt_box .title {
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.serviceBox.cnt_box .description {
    font-size: 15px;
    line-height: 22px;
}

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

._c_form_sub {
    position: relative;
    padding: 30px 10px;
    margin-top: 30px;
    text-align: center;
}

._c_form_sub h3 {
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #181818;
    font-weight: 700;
    font-size: 45px;
}

._c_form_sub .form-control {
    background-color: #fff;
    height: 50px;
    box-shadow: 0px 0px 10px #ccc;
    border: 0px;
    border-radius: 13px;
}

._c_form_sub textarea.form-control {
    height: 120px;
}

._c_form_sub .btn {
    margin-top: 40px;
    background: #bd9534;
    border: transparent;
}

._c_map iframe {
    margin-top: 47px;
    box-shadow: 0px 0px 10px #cbcbcb;
    width: 100%;
    height: 293px;
    border: 10px solid #ffffff;
}

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

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

.main-timeline.testimonial_timeline .timeline {
    width: 50%;
    padding: 0 40px 0 0;
    margin: 0 2px 0 0;
    float: left;
}

.main-timeline.testimonial_timeline .timeline-content {
    background-color: #fff;
    padding: 20px 90px 20px 20px;
    box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.15);
    display: block;
    position: relative;
}

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

.main-timeline.testimonial_timeline .timeline-content:before {
    content: '';
    background: #080808;
    width: 12px;
    height: 120px;
    border-radius: 0 8px 8px 0;
    transform: translateY(-50%);
    position: absolute;
    right: -12px;
    top: 50%;
}

.main-timeline.testimonial_timeline .timeline-icon {
    color: #080808;
    background-color: #d8bd68;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    line-height: 100px;
    height: 100px;
    width: 110px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -39px;
    z-index: 1;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.main-timeline.testimonial_timeline .title {
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 8px;
}

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

.main-timeline.testimonial_timeline .timeline:nth-child(even) {
    padding: 0 0 0 40px;
    margin: 0 0 0 2px;
    float: right;
}

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

.main-timeline.testimonial_timeline .timeline:nth-child(even) .timeline-content:before {
    border-radius: 8px 0 0 8px;
    right: auto;
    left: -12px;
}

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

@media screen and (max-width:767px) {
    .main-timeline.testimonial_timeline .timeline,
    .main-timeline.testimonial_timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 0 0 0 40px;
        margin: 0 0 30px;
    }
    .main-timeline.testimonial_timeline .timeline-content,
    .main-timeline.testimonial_timeline .timeline:nth-child(even) .timeline-content {
        padding: 20px 20px 20px 90px;
    }
    .main-timeline.testimonial_timeline .timeline-content:before,
    .main-timeline.testimonial_timeline .timeline:nth-child(even) .timeline-content:before {
        border-radius: 8px 0 0 8px;
        left: -12px;
    }
    .main-timeline.testimonial_timeline .timeline-icon,
    .main-timeline.testimonial_timeline .timeline:nth-child(even) .timeline-icon {
        left: -39px;
        right: auto;
    }
}

@media screen and (max-width:479px) {
    .main-timeline.testimonial_timeline .timeline,
    .main-timeline.testimonial_timeline .timeline:nth-child(even) {
        padding: 40px 0 0 0;
    }
    .main-timeline.testimonial_timeline .timeline-content,
    .main-timeline.testimonial_timeline .timeline:nth-child(even) .timeline-content {
        text-align: center;
        padding: 90px 20px 20px;
    }
    .main-timeline.testimonial_timeline .timeline-content:before,
    .main-timeline.testimonial_timeline .timeline:nth-child(even) .timeline-content:before {
        width: 120px;
        height: 12px;
        border-radius: 8px 8px 0 0;
        transform: translateY(0) translateX(-50%);
        top: -12px;
        left: 50%;
    }
    .main-timeline.testimonial_timeline .timeline-icon,
    .main-timeline.testimonial_timeline .timeline:nth-child(even) .timeline-icon {
        line-height: 110px;
        width: 100px;
        height: 110px;
        transform: translateY(0) translateX(-50%);
        top: -39px;
        left: 50%;
        clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    }
}

.box {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.box:before {
    content: "";
    background: linear-gradient(#101010, #ffba12);
    opacity: 0.5;
    transform: scale(0);
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.box:hover:before {
    transform: scale(1);
}

.box img {
    width: 100%;
    height: auto;
    transition: all .4s ease-in;
}

.box:hover img {
    opacity: 0.7;
    filter: grayscale(50%);
}

.box .box-content {
    color: #fff;
    background: linear-gradient(#f953c6, #b91d73);
    width: 85%;
    padding: 15px 20px 12px;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transition: all .4s ease-in-out;
}

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

.box .title {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .6);
    margin: 0 0 2px;
}

.box .post {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .6);
}

.box .icon {
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 33px;
    left: 50%;
    z-index: 1;
    transition: all 0.4s ease-out;
}

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

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

.box .icon li a {
    color: #fff;
    background: #333;
    font-size: 16px;
    line-height: 38px;
    height: 35px;
    width: 35px;
    display: block;
    transition: all .5s ease-in-out;
}

.box .icon li a:hover {
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.services_in_text {
    position: relative;
}

.services_in_text h2 {
    color: #000;
    font-weight: 600;
    font-size: 21px;
    margin: 17px 0 7px;
}

.services_in_text h3 {
    color: #b58201;
    font-size: 18px;
    margin: 15px 0 9px;
}

.services_in_text p {
    margin-bottom: 10px;
    line-height: 28px;
}

.list_ {
    position: relative;
    padding-left: 25px;
}

.list_ li {
    position: relative;
    padding-left: 20px;
    line-height: 28px;
}

.list_ li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f140";
    position: absolute;
    left: 0px;
    top: 1px;
    color: #be9536;
    font-weight: 800;
    font-size: 14px;
}

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

.about_inner_content {
    text-align: center;
}

.about_inner_content h3 {
    font-size: 30px;
    color: #bb9231;
}

.about_inner_content h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 49px;
    margin: 0 0 22px;
}

.about_inner_content p {
    text-align: justify;
    line-height: 25px;
    margin-bottom: 11px;
}

.mvv_list_blocks {
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding: 0 24px 20px;
    min-height: 209px;
}

.mvv_list_blocks::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 90%;
    border: 4px solid #edd892;
    left: 0;
    bottom: 0;
    border-radius: 14px;
    z-index: -1;
}

.mvvrows .col-md-6:nth-child(3) .mvv_list_blocks {
    min-height: auto;
}

.mvv_list_blocks h3 {
    display: inline-block;
    text-transform: uppercase;
    background: #333;
    color: #dfc673;
    font-size: 22px;
    padding: 6px 19px;
    border-radius: 30px;
    margin: 0 0 10px;
}

.mvv_list_blocks p {
    font-size: 16px;
    line-height: 28px;
}

.mvv_list_blocks p span {
    display: inline-block;
    width: 32%;
    background: #ddd;
    margin: 3px 3px;
}

.inner_abt_pic img {
    border: 8px solid #fff;
    box-shadow: 0px 0px 10px #9f9f9f;
}

.td_sec_sec_ {
    text-align: center;
    margin-bottom: 30px;
}

.team_row {
    margin-top: 50px;
}

.td_image {
    display: inline-block;
    width: 250px;
    border: 4px solid #dbc16d;
    border-bottom: 0px;
}

.td_info {
    background: #dbc16d;
    padding: 14px 21px;
    border-radius: 12px;
}

.td_info h3 {
    text-transform: uppercase;
    font-size: 27px;
    color: rgb(0 0 0);
    margin-bottom: 1px;
    font-weight: 600;
}

.td_info h4 {
    font-size: 17px;
    color: rgb(0 0 0);
    margin: 0 0 5px;
}

.td_info h5 {
    font-size: 16px;
    color: rgb(0 0 0);
}

.td_sec_sec_ span {
    display: inline-block;
    background: #333;
    color: #dbc16d;
    padding: 3px 10px;
    margin-top: 9px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.team_conslt_head {
    text-align: center;
}

.team_conslt_head h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 45px;
    margin: 12px 0 16px;
}

.team_content .modal-header {
    display: block;
    border-bottom: 1px solid #ccc;
}

.team_content .modal-header h4 {
    text-transform: uppercase;
    color: rgb(227 186 56);
    font-weight: 600;
    text-align: center;
}

.team_content .modal-header .close {
    position: absolute;
    right: 0px;
    top: 0px;
    background: #e3ba38;
    opacity: 1;
    color: rgb(0 0 0);
    font-size: 37px;
    padding: 1px 6px;
    line-height: 39px;
}

.modal-dialog.team_dialouge {
    max-width: 831px;
}

.teambodycontent {
    height: 507px;
    overflow-y: auto;
}


/* width */

.teambodycontent::-webkit-scrollbar {
    width: 7px;
}


/* Track */

.teambodycontent::-webkit-scrollbar-track {
    background: #e1e1e1;
}


/* Handle */

.teambodycontent::-webkit-scrollbar-thumb {
    background: #e3ba38;
    border-radius: 15px;
}


/* Handle on hover */

.teambodycontent::-webkit-scrollbar-thumb:hover {
    background: #333;
}

.modal-content.team_content {
    background: #000000;
}

.modal_team_contnet p,
.modal_team_contnet ol li,
.modal_team_contnet ol li::before {
    color: #ffffff;
}

.modal_team_contnet.services_in_text h3 {
    color: #f3ca48;
}

.homehead {
    margin-bottom: 15px;
}

.homehead h1 {
    text-transform: uppercase;
    color: rgb(50 49 51);
    font-size: 45px;
}

.inner_blogs {
    text-align: center;
    box-shadow: 0px 0px 10px #ccc;
    margin-bottom: 30px;
    background: #fff;
}

.blog_info {
    position: relative;
    margin: 7px 0 0;
    padding: 6px 16px 0;
}

.blog_info h2 {
    font-size: 20px;
}

.blog_info p {
    line-height: 22px;
    margin: 8px 0 1px;
}

.blog_info a._b_link {
    display: inline-block;
    background: #dfc673;
    color: #000;
    padding: 3px 10px;
    border-radius: 7px;
    margin-top: 11px;
}

._blog_nav {
    position: relative;
    padding: 17px 18px;
    margin: 0 0 26px;
    border-top: 4px solid #182d60;
    background: #dfc673;
}

._blog_nav h4 {
    text-transform: uppercase;
    font-size: 46px;
    margin-bottom: 10px;
    display: inline-block;
    color: #000000;
    font-weight: 600;
}

._blog_nav ul {
    padding: 0;
    list-style: none;
}

._blog_nav ul li a {
    display: block;
    position: relative;
    border-bottom: 1px dashed #000000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    padding-left: 17px;
    color: #000000;
    font-size: 16px;
}

._blog_nav ul li a::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #000000;
    left: 0;
    border-radius: 50%;
    top: 8px;
}

._blog_nav ul li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.inner_blog_img img {
    box-shadow: 0px 0px 10px #ccc;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 20px;
}