@charset "utf-8";
/* CSS Document */

/*------------------------------------------------------------------
[Master Stylesheet]

Project:    IMeddoc
Version:    1.0
Last change:    Initial RELEASED
Primary use:    Multiple Use
-------------------------------------------------------------------*/

/*------------------------------------------------------------------

[Table of contents]

    1- CSS RESET
    2- BASIC STYLES
    3- Button
    4- Headings
    5- Top Bar
    6- Header
    7- Slider
    8- Info
    9- Features
    10- Departmen
    t11- Services
    12- Statics
    13- About
    14- Teams
    15- Promotion
    16- Blog
    17- single
    18- Services Detail
    19- Sidebar
    20- Page Title
    21- Testimonials
    22- Awards
    23- News
    24- Contact
    25- Gallery
    26- Error
    27- Footer
    28- Shop
    29- Shop Single
    30- Dental Home
    31- Isotops ON Portfolio Section
    32- Paper Work
    33- Hover Effects

NOTE: Every section is commented before starting.




/*------------------------------------------------------------------
    1- CSS RESET
-------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    overflow-x: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*------------------------------------------------------------------
    2- BASIC STYLES
-------------------------------------------------------------------*/

body {
    background: #fff;
    color: #666;
    font: 14px 'Poppins', Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: #666666;
    text-decoration: none;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

a:hover {
    color: #2fc0df;
}

a:hover, a:active {
    outline: 0;
}

hr {
    margin: 30px auto;
}

::-moz-selection {
    background: #fe57a1;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #fe57a1;
    color: #fff;
    text-shadow: none;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/*-- Heading --*/

h1, h2, h3, h4, h5, h6 {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    font-family: 'Poppins', sans-serif;
    color: #444444;
}

.social_links ul li a i {
    font-family: 'FontAwesome';
}

h1 {
    font-size: 30px;
}

h1 a {
    color: #222222;
}

h2 {
    font-size: 58.33px;
    color: #333333;
}

h2 a {
    color: #222222;
}

h3 {
    font-size: 20.83px;
}

h3 a {
    color: #222222;
}

h4 {
    font-size: 14px;
}

h4 a {
    color: #222222;
}

h5 {
    font-size: 12px;
}

h5 a {
    color: #222222;
}

h6 {
    font-size: 10px;
}

h6 a {
    color: #222222;
}

/*-- Lists --*/

ul {}

ul li {
    font: 400 14px 'Poppins', arial, sans-serif;
}

ul li {
    font: 400 14px 'Poppins', arial, sans-serif;
}

ol {}

ol li {
    font: 400 14px 'Poppins', arial, sans-serif;
}

ol li a {
    font: 400 14px 'Poppins', arial, sans-serif;
}

/*-- Paragraph --*/

strong {
    font-weight: bold;
}

p strong {
    font-weight: bold;
}

p em {
    font-style: italic;
}

p {
    font: 400 14px 'Poppins', arial, sans-serif;
    line-height: 26px;
    color: #666;
}

blockquote {
    font: 400 14px 'Poppins', arial, sans-serif;
    margin-bottom: 45px;
    line-height: 26px;
    color: #666666;
    background: url("../images/quotes.png") no-repeat 10px 6px;
    padding: 0px 55px;
    min-height: 35px;
}

blockquote p {
    font: 400 14px 'Poppins', arial, sans-serif;
    line-height: 26px;
    color: #666666;
    margin: 0px;
}

label {
    font: 400 14px 'Poppins', arial, sans-serif;
    margin-bottom: 12px;
    color: #222222;
}

.cd-top {
    background: #e16297;
    display: inline-block;
    height: 44px;
    width: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 10px;
    position: fixed;
    bottom: 20px;
    right: 16px;
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    z-index: 10000;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 0.5;
}

.cd-top i {
    color: #fff;
    font-size: 30px;
    vertical-align: -4px;
}

.cd-top.cd-is-visible:hover {
    opacity: 1;
}

.section_margin {
    margin-bottom: 98px;
}

.no-padding {
    padding: 0;
}

.layer {
    background: rgba(0, 0, 0, 0.80);
}

/*------------------------------------------------------------------
    3- Button
-------------------------------------------------------------------*/

.button, .shop_btn {
    font: 600 14px 'Poppins', arial, sans-serif;
    background: #e16297;
    color: #fff;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    transition: .5s;
}

.button.pink, .shop_btn.pink {
    padding: 16px 24px !important;
    border: none !important;
    border-radius: 0 !important;
}

.button.blue, .shop_btn.blue {
    background: #2fc0df;
}

.button img, .shop_btn img {
    vertical-align: middle;
    margin-right: 8px;
}

.button.borderd, .shop_btn.borderd {
    background: none;
    border: 1px solid #fff;
    padding: 12px 24px;
}

.button.borderd i {
    margin-left: 8px;
}

.button:hover, .shop_btn:hover {
    background: #2fc0df;
    color: #fff;
    border-color: #2fc0df;
}

.button.blue:hover, .shop_btn.blue:hover {
    background: #e16297;
}

.department.section_margin.style1 .heading {
    text-align: left;
    margin: 0 auto 45px;
}

.department.section_margin.style2 .heading {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 45px;
}

.department.section_margin.style1 .heading:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #2fc0df;
    display: block;
    margin-top: 15px !important;
    margin: 0 auto 0 0;
}

.department.section_margin.style2 .heading:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #2fc0df;
    display: block;
    margin-top: 15px !important;
    margin: 0 auto;
}

/*------------------------------------------------------------------
    4- Headings
-------------------------------------------------------------------*/

.heading {
    margin-bottom: 45px;
}

.heading h3 {
    font-size: 36px;
    color: #444444;
    font-weight: 600;
}

.heading h3 span {
    color: #2fc0df;
}

.heading:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #2fc0df;
    display: block;
    margin-top: 15px !important;
}

.heading p {
    color: #444444;
    padding-top: 10px;
}

.heading.style_two:after {
    background: #6da04e !important;
    margin: 0 auto;
}

.heading.style_two h3 {
    font-size: 48px !important;
}

/*------------------------------------------------------------------
    5- Top Bar
-------------------------------------------------------------------*/

.top_bar .bar_inner {
    border-bottom: 1px solid #eeeeee;
    height: 55px;
    line-height: 55px;
}

.top_bar ul li {
    display: inline-block;
    margin-right: 25px;
    color: #444444;
}

.top_bar ul li i {
    display: inline-block;
    margin-right: 8px;
    color: #2fc0df;
}

.top_bar .bar_inner {
    border-bottom: 1px solid #eeeeee;
    height: 55px;
    line-height: 55px;
}

.top_bar .bar_inner {
    border: none;
    height: 50px;
    line-height: 50px;
}

.spa-top-bar {
    background-color: #f2f7fb;
}

.spa-top-bar .shop_btn.pink {
    padding: 13px 24px !important;
}

.top_bar ul li {
    display: inline-block;
    margin-right: 25px;
    color: #444444;
}

.top_bar ul li i {
    display: inline-block;
    margin-right: 8px;
    color: #2fc0df;
}

.bar_inner span {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}

.top_bar.color-chang {
    background-color: #5787f2;
}

.top_bar.color-chang .bar_inner {
    border-bottom: 0;
}

.bar_inner span strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 5px;
}

.rqst-text span {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    border-right: 1px solid #799ff5;
    border-left: 1px solid #799ff5;
    padding: 0 20px;
}

.rqst-text span strong {
    font-weight: 500;
}

.rqst-text span i {
    color: #fff;
    padding-right: 10px;
}

nav.st5>ul {
    /*float: left;*/
    text-align: right;
    padding-right: 70px;
}

nav.st5 form {
    float: right;
    padding-left: 25px;
}

nav.st5 form a i {
    color: #5787f2;
}

.st5 form {
    position: absolute;
    top: 40px;
    padding: 0;
}

/*------------------------------------------------------------------
    6- Header
-------------------------------------------------------------------*/

header .logo a img {
    vertical-align: middle;
    width: 100%;
}

header.header7 .logo a img {
    width: unset;
}

header nav>ul>li {
    display: inline-block;
    margin-left: 18px;
    position: relative;
    padding: 40px 0px;
    cursor: pointer;
}

header nav.st5>ul>li {
    margin-right: 18px;
}

header nav ul li a {
    color: #222222;
    font-weight: 600;
    text-transform: uppercase;
}

.hp6_mbl {
    position: absolute;
    right: 0;
    bottom: 15px;
}

header nav ul li.active a {
    color: #2fc0df;
}

header form {
    position: relative;
    display: inline-block;
}

header form input[type="text"] {
    outline: none !important;
    visibility: hidden;
    position: absolute;
    left: -210px;
    top: 29px;
    border: 2px solid #ec008c;
    height: 38px;
    border-radius: 6px;
    width: 200px;
    padding: 10px;
    font: 400 13px 'Montserrat', arial, sans-serif;
    text-transform: uppercase;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

header form button i, header .btn-search-style {
    color: #ec008c;
}

header form .btn-search-style, header .btn-search-style {
    background-color: transparent;
    border: none;
}

header form:hover input[type="text"] {
    visibility: visible;
}

header .logo {
    padding: 26px 0px;
}

header.header5 nav.nav-right ul li {
    margin-left: 10px;
    margin-right: 0px;
}

header.header5 nav.nav-left ul li {
    margin-right: 10px;
    margin-left: 0px;
}

header.header5 nav ul li ul.dropdown-menu li {
    margin: 0;
}

header nav.nav-right form {
    margin-left: 20px;
}

header form {
    position: relative;
    display: inline-block;
    margin-top: 0;
    padding: 34px 0 36px 0;
    float: right;
}

header.header5 form {
    float: none;
}

header form input[type="search"] {
    outline: none !important;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 99;
    border: 2px solid #ec008c;
    height: 38px;
    border-radius: 6px;
    width: 200px;
    padding: 10px;
    font: 400 13px 'Montserrat', arial, sans-serif;
    text-transform: uppercase;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

header form a i {
    color: #ec008c;
}

header form:hover input[type="search"] {
    visibility: visible;
}

/*Header*/

header.header5 nav>ul>li {
    display: inline-block;
    position: relative;
    padding: 35px 15px;
    margin: 0;
}

header.header5 nav>ul>li:first-child {
    padding-left: 0;
}

header.header5 nav>ul>li:first-last {
    padding-right: 0;
}

.logo5 {
    padding: 20px 0 !important;
}

.header5 nav ul {
    border: none;
}

.header {
    height: 101px;
}

.header .logo {
    line-height: 101px;
}

.header .logo img {
    vertical-align: middle;
}

.header .text-right {
    margin-top: 22px;
}

.header ul {
    display: inline-block;
    margin-right: 48px;
    text-align: left;
    vertical-align: middle;
}

.header ul li {
    display: inline-block;
    color: #444444;
    font-size: 14px;
    margin-right: 20px
}

.header ul li span {
    display: inline-block;
}

.header ul li strong {
    display: block;
    margin-bottom: 5px;
}

.header ul li i {
    vertical-align: 8px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    margin-right: 12px;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #dddddd;
    border-radius: 50%;
    color: #444444;
    display: inline-block;
}

.header_bottom {
    background: #2fc0df;
    position: relative;
    z-index: 9999;
}

.header_bottom nav {
    line-height: 65px;
}

.header_bottom nav ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
    /*padding: 20px 15px 50px 15px;*/
}

.header_bottom nav ul li a {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.header_bottom nav ul li.active a {
    color: #ec008c;
}

.header_bottom form {
    position: relative;
    display: inline-block;
    width: 100%;
}

.header_style_ten .header_bottom form {
    width: unset;
}

.header_bottom form input[type="text"] {
    background: #20b0cf;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    outline: none !important;
    border: 0px;
    height: 65px;
    border-radius: 0px;
    width: 188px !important;
    margin-right: -3px;
    padding: 10px;
    font: 400 13px 'Montserrat', arial, sans-serif;
    text-transform: uppercase;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    border: none !important;
}

.header_bottom form a {
    background: #108199;
    width: 65px;
    display: inline-block;
    text-align: center;
    height: 65px;
    line-height: 65px;
    position: absolute;
    top: 0;
    right: 0
}

.header_bottom form a i {
    color: #fff !important;
    font-size: 17px;
}

nav ul li ul:before {
    content: '';
    position: absolute;
    top: -9px;
    left: 13px;
    border-bottom: 10px solid #000;
    border-left: 10px solid rgba(255, 255, 255, 0);
    border-right: 10px solid rgba(255, 0, 0, 0.01);
}

nav ul li ul.dropdown-menu {
    z-index: 9999;
    position: absolute;
    width: 200px;
    text-align: left;
    background: #000;
    display: none;
    padding: 0px;
    top: 75px;
    left: 0px;
}

#menu_11 nav ul li ul.dropdown-menu {
    width: 250px;
}

header.header_style_ten nav ul li ul.dropdown-menu {
    top: 60px;
}

header.headerv7 nav ul li ul.dropdown-menu {
    top: 73px;
}

nav .navbar-nav .menu-item:hover .dropdown-menu {
    display: block;
}

nav ul li.dropdown:after {
    content: '';
    left: 0;
    bottom: -20px;
    width: 100%;
    display: block;
}

nav ul li ul.dropdown-menu li:last-child a {
    border: 0px;
}

nav ul li ul.dropdown-menu li {
    margin: 0px;
    display: block;
    padding: 0;
}

nav ul li ul.dropdown-menu li a {
    color: #fff !important;
    font-size: 13px;
    text-transform: none;
    padding: 10px 10px;
    text-align: left;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.37);
}

.headerv7 nav ul li ul.dropdown-menu li a {
    margin-right: 0;
}

nav ul li ul.dropdown-menu li a:hover {
    background: #e16297;
}

.recent_post ul li a {
    font-size: 12px;
}

nav>ul>li:hover>ul.dropdown-menu {
    display: block;
}

.responsive_button {
    display: none;
    background: rgb(225, 98, 151);
    border-radius: 31px;
    padding: 12px 20px 12px 20px !important;
    width: 98%;
    overflow: hidden;
    margin: 0 auto 10px;
}

.responsive_button p {
    color: #fff;
    font: 500 18px 'Montserrat', sans-serif;
    display: inline-block;
    float: left;
    line-height: 28px;
}

.responsive_button button.navbar-toggle {
    margin: 0px;
    padding: 0px;
}

.responsive_button .icon-bar {
    background: #fff;
}

.responsive_nav {
    width: 100%;
    visibility: hidden;
    position: absolute;
    z-index: 999;
    margin-top: -10px;
}

.responsive_nav.navbar-collapse.collapse.in {
    visibility: visible;
    display: block !important;
}

.responsive_nav ul {
    text-align: left;
    margin: 0 auto;
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 21px;
    z-index: 9999999;
    width: 98%;
    float: none;
    overflow: hidden;
    background: rgb(0, 0, 0);
}

.responsive_nav ul li {
    float: none;
}

.responsive_nav ul li a {
    color: #fff;
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.247059);
    font: 600 12px Montserrat, sans-serif;
}

.responsive_nav ul li a:hover {
    background: #e16297;
}

.cart {
    position: relative;
    text-align: right;
    padding: 40px 0px;
}

.cart a {
    margin-right: 16px;
    display: inline-block;
    color: #e16297;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
}

.cart img {
    vertical-align: -3px;
}

.cart a span {
    font-size: 11px;
    position: absolute;
    margin-left: 5px;
}

.fet_img {
    padding-top: 100px;
}

nav.hp6-nav ul li {
    margin-left: 0;
}

nav.hp6-nav ul li ul:before {
    display: none;
    content: '';
    position: absolute;
    top: -9px;
    left: 13px;
    border-bottom: 10px solid #000;
    border-left: 10px solid rgba(255, 255, 255, 0);
    border-right: 10px solid rgba(255, 0, 0, 0.01);
}

nav.hp6-nav ul ul ul {
    top: 0;
    left: 100%;
}

nav.hp6-nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

nav.hp6-nav ul li:hover>ul li {
    margin: 0;
}

nav.hp6-nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    text-align: left;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

nav.hp6-nav ul ul ul {
    top: 0;
    left: 100%;
}

nav.hp6-nav ul ul li {
    padding: 10px 10px;
    margin: 0;
    float: left;
    width: 100%;
    /*background-color: #484141; border-bottom: 1px solid #666666;*/
    margin-top: -20px;
    transition: all 0.4s ease-in-out;
}

nav.hp6-nav ul ul li:first-child {
    margin-top: 0;
}

nav.hp6-nav ul ul li:last-child {
    border-bottom: 0;
}

nav.hp6-nav ul ul li a {
    color: #fff;
}

/*------------------------------------------------------------------
    7- Slider
-------------------------------------------------------------------*/

.main_slider {
    width: 100% !important;
}

.slide_content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    /*background: rgba(0, 0, 0, 0.85);*/
    display: block;
}

.slideb1 {
    height: 100%;
}

.slide_content>.container>.row>.col-sm-12 {
    position: absolute;
    top: 50%;
    margin-top: -150px;
}

.main_slider .slide_content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(left, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 192, 223, 0.81) 59%, rgba(47, 192, 223, 0.77) 71%, rgba(47, 192, 223, 0.68) 100%) !important;
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(225, 98, 151, 1)), color-stop(44%, rgba(225, 98, 151, 0.86)), color-stop(59%, rgba(47, 192, 223, 0.81)), color-stop(71%, rgba(47, 192, 223, 0.77)), color-stop(100%, rgba(47, 192, 223, 0.68))) !important;
    background: -webkit-linear-gradient(left, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 192, 223, 0.81) 59%, rgba(47, 192, 223, 0.77) 71%, rgba(47, 192, 223, 0.68) 100%);
    background: -o-linear-gradient(left, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 192, 223, 0.81) 59%, rgba(47, 192, 223, 0.77) 71%, rgba(47, 192, 223, 0.68) 100%) !important;
    background: -ms-linear-gradient(left, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 192, 223, 0.81) 59%, rgba(47, 192, 223, 0.77) 71%, rgba(47, 192, 223, 0.68) 100%) !important;
    background: linear-gradient(to right, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 192, 223, 0.81) 59%, rgba(47, 192, 223, 0.77) 75%, rgba(47, 192, 223, 0.68) 100%) !important;
}

.slide_content h3 {
    display: inline-block;
    font: 600 18px 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 10px;
}

.slide_content a.button {
    margin-right: 10px;
    display: inline-block;
    border: 1px solid #fff !important;
}

.slide_content h1 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    line-height: 52px;
}

.slide_content p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    line-height: 26px;
}

.main_slider .owl-prev, .main_slider .owl-next {
    display: none;
}

.owl-nav button i {
    display: none;
}

.client-review-carousel .owl-nav {
    position: initial !important;
}

.client-review-carousel .owl-nav button i {
    display: block;
}

.client-review-carousel .owl-nav .owl-prev:before, .client-review-carousel .owl-nav .owl-next:before {
    display: none;
}

.client-review-carousel .owl-nav button.owl-prev, .client-review-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 0;
    color: #fff;
}

.main_slider .owl-dots {
    width: 10px;
    height: 100px;
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 99999;
    margin-top: -50px;
}

.main_slider .owl-dots .owl-dot {
    background: #fff;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    margin-top: 5px;
}

.main_slider .owl-dots .owl-dot.active {
    box-shadow: 0px 0px 8px 3px #fff;
}

.slide_content .iner_content {
    background: url(../images/shadow.png) no-repeat center 100%;
    padding-bottom: 13px;
    margin-top: -83px;
    background-size: 100%;
}

.slide_content .iner_content .inners {
    background: #f8f8f8;
    padding: 30px;
}

.slide_content .iner_content h4 {
    color: #2fc0df;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: bold;
}

.slide_content .iner_content .button {
    border: 0px;
}

.slide_content .iner_content form input[type="date"] {
    background: none;
    width: 90%;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
}

.slide_content .iner_content form i {
    vertical-align: 4px;
}

.slide_content .iner_content p cite {
    display: inline-block;
    color: #2fc0df;
    font-size: 12px;
    vertical-align: top;
    margin-right: 15px;
}

.slide_content .iner_content p span {
    display: inline-block;
    color: #444444;
    font-size: 12px;
}

.slide_content .iner_content p small {
    display: block;
}

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

.home_twos .slide_content {
    background: rgba(0, 0, 0, .3) !important;
}

.home_twos {
    height: 700px;
    position: relative;
}

.home_twos img {
    height: 100% !important;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.home_twos .slide_content {
    padding: 175px 0;
}

/*------------------------------------------------------------------
    8- Info
-------------------------------------------------------------------*/

.main_info {
    background: url("../images/shadow.png") no-repeat center 100%;
    padding-bottom: 23px;
    position: relative;
    z-index: 99;
    margin-top: -10px;
}

.main_info .info_inner {
    background: #f8f8f8;
    padding: 55px 0px;
}

.main_info .info_inner h4 {
    color: #2fc0df;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: bold;
}

.main_info .info_inner span {
    font-size: 14px;
    color: #444444;
    display: inline;
}

.main_info .info_inner strong {
    margin-top: 45px;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #444444;
}

.main_info .info_inner form strong {
    margin: 0;
}

.main_info .info_inner h5 {
    font-size: 30px;
    color: #e16297;
    font-weight: bold;
}

.main_info .info_inner h5 i {
    color: #444;
}

.form-control {
    width: 100%;
    height: 42px;
    border: 0px;
    border-radius: 0px;
    background: #fff;
    margin-bottom: 10px;
}

textarea.form-control {
    height: 95px;
    padding: 10px;
    resize: none;
    margin-bottom: 20px;
}

.main_info .info_inner .button {
    border: 0px;
}

.main_info .info_inner form input[type="date"] {
    background: none;
    width: 90%;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
}

.main_info .info_inner form i {
    vertical-align: 4px;
}

.wpcf7-form strong {
    margin: 0 !important;
}

/*------------------------------------------------------------------
    9- Features
-------------------------------------------------------------------*/

.feature {
    margin-bottom: 60px;
}

.feature h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #444444;
}

.feature i {
    background: url(../images/icons.png) no-repeat;
    width: 44px;
    height: 55px;
    float: left;
    margin-right: 16px;
    margin-top: 20px;
}

.features_wrap .feature img {
    float: left;
    margin-top: 15px;
    margin-right: 15px;
}

.features_wrap.features6 .feature img {
    float: none;
    margin: 0;
}

.features_wrap .feature .detail {
    padding-left: 60px;
}

.features_wrap.feature_two .feature img {
    float: none;
    margin: 0;
}

.features_wrap.feature_two .feature .detail {
    padding: 0;
}

#gtransport i {
    background-image: none !important;
    width: unset;
    height: unset;
}

.features_7 {
    position: relative;
    z-index: 999;
}

/* .feature i.icon_user {
    background-position: -45px 0px;
} */

.feature i.icon_camara {
    /*     background-position: -102px 0px; */
    width: 53px;
}

.feature i.icon_phone {
    /*     background-position: -164px 0px; */
    width: 57px;
}

.features_wrap .feature_img img {
    margin-bottom: -7px;
    height: 100%;
    width: 163%;
}

.feature_two {
    text-align: center;
}

.feature_two .heading:after {
    margin: unset;
}

.feature_two .heading-2:after {
    margin: 10px auto;
}

.feature_two .feature figure {
    padding: 5px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px !important;
    text-align: center;
    background: rgba(0, 0, 0, 1);
}

.feature_two .feature figure div {
    background: #fff;
    border-radius: 50%;
    width: 135px;
    height: 135px;
    line-height: 135px;
    margin: 0;
}

.feature figure div {
    float: left;
    margin: 20px 16px 0 0;
}

.feature_two .feature figure img {
    vertical-align: middle;
}

.feature_two .feature .detail>a {
    margin-top: 30px;
    text-decoration: underline;
    color: #e16297;
    display: inline-block
}

/*.features_three {
    background: url("../http://via.placeholder.com/891x660") no-repeat left bottom #f2f7fb;
    background-size: 700px;
}*/

.features_three .detld {
    padding: 90px 0px
}

.features_three ul {
    margin-top: 40px;
    margin-bottom: 40px;
}

.features_three ul li {
    color: #888888;
    line-height: 24px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.features_three ul li i {
    color: #e16297;
    margin-right: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.features_three .button {
    border-color: #d2d2d2;
    display: inline-block;
}

/*------------------------------------------------------------------
    10- Department
-------------------------------------------------------------------*/

a, li:focus {
    outline: none;
}

.department {
    background: url("../images/custom/department_bg.png") no-repeat;
    background-size: cover;
}

.department .inner_dep {
    background: rgba(0, 0, 0, 0.80);
    padding: 95px 0px;
}

.department .heading h3 {
    color: #fff !important;
    font-size: 30px !important;
}

.department .heading p {
    color: #fff;
}

.department.style1 ul {
    text-align: left;
    margin-bottom: 0;
}

.department.style2 ul {
    text-align: center;
    margin-bottom: 60px;
}

.department.style1 ul li {
    margin-bottom: 10px;
    position: relative;
    display: block;
    text-align: left;
}

.department.style2 ul li {
    margin-right: 30px;
    display: inline-block;
    position: relative;
    text-align: center;
}

.department.style1 ul li.ui-state-active:after {
    content: '';
    background: rgb(255 255 255 / 50%);
    display: block;
    width: 35px;
    height: 1px;
    position: absolute;
    top: 50%;
    right: -27px;
}

/*.department.style2 ul li.ui-state-active:after {
    width:1px;
    height: 35px;
    position: absolute;
    bottom: -40px;
    left: 51%;
}*/

.department.style1 ul li.ui-state-active:before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.72);
    display: block;
    border-radius: 50%;
    margin-top: -3.5px;
    position: absolute;
    top: 50%;
    right: -32px;
}

/*.department.style2 ul li.ui-state-active:before {
    position: absolute;
    bottom:-42px;
    left: 50%;
}
*/

.department ul li a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.department ul li a i {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    text-align: center;
    height: 68px;
    width: 68px;
    border: 1px solid #fff;
    border-radius: 50%;
    line-height: 68px;
    display: inline-block;
}

.department.style1 ul li a i {
    margin-right: 15px;
    margin-bottom: 0;
}

.department.style2 ul li a i {
    margin: 0 auto;
    margin-bottom: 15px;
    position: relative;
    display: block;
}

.department ul li a i span, .department ul li a i span.icon {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    margin-top: -8px;
    display: inline-block;
    font-size: 30px;
    vertical-align: middle;
}

.department ul li.ui-state-active a i {
    background: #fff;
}

.department ul li.ui-state-active a i span.icon {
    color: #2fc0df;
}

.department ul li:hover a i {
    background: #fff;
}

.department ul li:hover a i span.icon {
    color: #2fc0df;
}

.department ul li a i.icon_two span {
    background-position: 0px -38px;
}

.department ul li a i.icon_three span {
    background-position: -1px -77px;
}

.department ul li a i.icon_four span {
    background-position: -1px -115px;
}

.department .tabss p {
    color: #fff;
    margin-top: 20px;
    padding: 0px 20px;
}

.department .tabss img {
    width: 100%;
}

/*------------------------------------------------------------------
    11- Services
-------------------------------------------------------------------*/

.services_wrap .heading {
    text-align: center;
}

.services_wrap .heading:after {
    margin: 0 auto;
}

.ser_inner figure img {
    width: 100%;
}

.ser_inner .detail {
    background: #f8f8f8;
    padding: 23px 25px;
    position: relative;
}

.ser_inner .detail h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.ser_inner .detail p {
    font-size: 13px;
}

.ser_inner .detail:after {
    content: '';
    border-right: 10px solid rgba(255, 0, 0, 0);
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid #f8f8f8;
    border-bottom: 10px solid rgba(156, 113, 113, 0);
    position: absolute;
    bottom: -20px;
    right: 35px;
}

.ser_inner .detail:before {
    content: '';
    border-right: 10px solid rgba(255, 0, 0, 0);
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(156, 113, 113, 0);
    border-bottom: 10px solid #f8f8f8;
    position: absolute;
    top: -20px;
    right: 35px;
}

.top .ser_inner .detail:after {
    display: none;
}

.ser_inner .detail i {
    width: 50px;
    height: 50px;
    vertical-align: top;
    display: inline-block;
    margin-right: 26px;
    background-size: cover;
}

.ser_inner .detail .sicon_two {
    background-position: -51px 0px;
}

.ser_inner .detail .sicon_three {
    background-position: -102px 0px;
    width: 54px;
}

.ser_inner .detail .sicon_four {
    background-position: -157px 0px;
}

.ser_inner .detail .con {
    width: 70%;
    display: inline-block;
}

.ser_inner .owl-nav div {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    opacity: .7;
    position: absolute;
    top: 50%;
    width: 100%;
    width: 84px;
    height: 84px;
    font-size: 0px;
    margin-top: -42px;
}

.ser_inner .owl-nav div:hover {
    opacity: 1;
}

.ser_inner .owl-prev {
    left: 20px;
    background: url("../images/left_arrow.png") no-repeat;
}

.ser_inner .owl-next {
    right: 20px;
    background: url("../images/rightt_arrow.png") no-repeat;
}

.services_two .service i, .services_two .service i span {
    display: inline-block;
    font-size: 65px;
    line-height: 65px;
}

.services_two .service {
    background: #f8f8f8;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
}

.services_home3 .services_two .service {
    background-color: #fff;
}

.services_two .service [class^="flat-icon-"]:before, .services_two .service [class*=" flat-icon-"]:before, .services_two .service [class^="flat-icon-"]:after, .services_two .service [class*=" flat-icon-"]:after {
    font-family: Flat-icon;
    font-size: 100px !important;
    font-style: normal;
    color: #6da04e;
}

.services_two .service:hover i {
    color: #6da04e;
}

/*.services_two .service i,
.services_two .service i span {
    display: inline-block;
    font-size: 65px !important;
    line-height: 65px;
}*/

.services_two .service h5 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.services_two .service hr {
    margin: 25px auto;
    width: 60px;
}

.services_two .service .sicon_two {
    background-position: -49px 0px;
    width: 37px;
}

.services_two .service .sicon_three {
    background-position: -85px 0px;
    width: 64px;
}

.services_two .service .sicon_four {
    background-position: -149px 0px;
    width: 52px;
}

.services_two .service .sicon_five {
    background-position: -198px 0px;
    width: 63px;
}

.services_two .service .sicon_six {
    background-position: -267px 0px;
    width: 63px;
}

.services_two .service:hover .sicon_two {
    background-position: -49px 0px;
    width: 37px;
}

.services_two .service:hover .sicon_three {
    background-position: -85px 0px;
    width: 64px;
}

.services_two .service:hover .sicon_four {
    background-position: -149px 0px;
    width: 52px;
}

.services_two .service:hover .sicon_five {
    background-position: -198px 0px;
    width: 63px;
}

.services_two .service:hover .sicon_six {
    background-position: -267px 0px;
    width: 63px;
}

.services_two .service:hover i {
    /*   background: url("../images/ser_icon2_hover.png") no-repeat;*/
}

.services_two .service:hover {
    background: rgba(225, 98, 151, 1);
}

.services_two .service:hover h5 {
    color: #fff;
}

.services_two .service:hover p {
    color: #fff;
}

/*------------------------------------------------------------------
    12- Statics
-------------------------------------------------------------------*/

.stat {
    border: 1px solid #cccccc;
    padding: 18px;
    text-align: left;
    position: relative;
}

.stat img {
    display: block;
    margin-right: 20px;
}

.stat i {
    position: absolute;
    top: 10px;
    left: 0px;
}

.stat_wrap .stat i {
    left: 25px;
}

.stat .flaticon_icon_size_blue .icon {
    color: #2fc0df;
}

.stat h3 {
    display: block;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 70px;
}

.stat h3 span {
    display: block;
    font-size: 18px;
    font-weight: 300;
    text-transform: none;
    margin: 0px 0px 0px;
}

/*------------------------------------------------------------------
    13- About
-------------------------------------------------------------------*/

.about_imod {
    padding: 95px 0;
    background: #f8f8f8;
}

.about_imod .stat {
    border: 0px;
    padding: 0px;
    margin-top: 50px;
}

.about_imod .stat img {
    vertical-align: -9px;
}

.about_imod .stat.one img {
    width: 44px;
    vertical-align: 3px;
}

.about_imod .heading {
    margin-bottom: 20px;
}

.about_imod .about_img figure img {
    margin: -10px 0px 4px -10px;
    width: 100%;
}

.about_imod .about_img figure {
    width: 380px;
    background: rgba(225, 98, 151, 1);
    background: -moz-linear-gradient(left, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 191, 223, 0.81) 59%, rgba(47, 191, 223, 0.77) 71%, rgba(47, 191, 223, 0.68) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(225, 98, 151, 1)), color-stop(44%, rgba(225, 98, 151, 0.86)), color-stop(59%, rgba(47, 191, 223, 0.81)), color-stop(71%, rgba(47, 191, 223, 0.77)), color-stop(100%, rgba(47, 191, 223, 0.68)));
    background: -webkit-linear-gradient(left, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 191, 223, 0.81) 59%, rgba(47, 191, 223, 0.77) 71%, rgba(47, 191, 223, 0.68) 100%);
    background: -o-linear-gradient(left, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 191, 223, 0.81) 59%, rgba(47, 191, 223, 0.77) 71%, rgba(47, 191, 223, 0.68) 100%);
    background: -ms-linear-gradient(left, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 191, 223, 0.81) 59%, rgba(47, 191, 223, 0.77) 71%, rgba(47, 191, 223, 0.68) 100%);
    background: linear-gradient(to right, rgba(225, 98, 151, 1) 0%, rgba(225, 98, 151, 0.86) 44%, rgba(47, 191, 223, 0.81) 59%, rgba(47, 191, 223, 0.77) 71%, rgba(47, 191, 223, 0.68) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e16297', endColorstr='#2fbfdf', GradientType=1);
}

/*------------------------------------------------------------------
    14- Teams
-------------------------------------------------------------------*/

.team_wrap {
    text-align: center;
    margin-bottom: 160px;
}

.team_wrap.style1 {
    background: #f8f8f8;
    padding: 98px 0 0;
}

.team_wrap .heading:after {
    margin: 0 auto;
}

.team figure {
    position: relative;
    height: 242px;
}

.team figure img {
    width: 100%;
}

.team figure .innner_lay {
    opacity: 0;
    line-height: 257px;
    position: absolute;
    top: 0px;
    left: 0px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.76);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.team figure .innner_lay a {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}

.team figure .innner_lay a:hover {
    background: #fff;
    color: #888888;
}

.team figure .innner_lay a i {
    color: #fff;
}

.team figure .innner_lay a:hover i {
    color: #888888;
}

.team .details {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    padding: 18px;
    border-bottom: 1px solid #f8f8f8;
}

.team:hover figure .innner_lay {
    opacity: 1;
}

.team:hover .details {
    background: #f8f8f8;
}

.team .details h6 {
    font-size: 16px;
    font-weight: bold;
}

.team .details span {
    color: #e16297;
}

.team_wrap .team, .team_wrap.style1 .team {
    margin-bottom: -85px;
}

.team_two {
    background: none;
    margin-bottom: 0px;
}

.team_wrap.team_two .team {
    margin-bottom: 30px;
}

.t_social_links li {
    display: inline-block;
}

/*.team_wrap.team_three {
    padding: 0px;
}*/

/*.team_wrap.team_three .team {
    margin-bottom: 30px;
}*/

.specialized_wrap .team {
    margin-bottom: 85px;
}

.btn_lines {
    height: 2px;
    background-color: #2fc0df;
    margin-top: 12px;
}

.surgery-team .team_wrap.team_three {
    margin-bottom: 0;
    padding-bottom: 90px;
}

.surgery-team .team:hover .details {
    background: #fff;
}

/*------------------------------------------------------------------
    15- Promotion
-------------------------------------------------------------------*/

.promotion {
    background: url("../images/custom/promotion.png") no-repeat;
    background-size: cover;
    text-align: center;
}

.promotion .inner_promotion {
    background: rgba(0, 0, 0, 0.80);
    padding: 60px 0;
}

.surgery-promotion .promotion {
    margin-bottom: 0;
}

.promotion .inner_promotion h5 {
    font-size: 30px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 20px !important;
}

.surgery-promotion .promotion .inner_promotion {
    background: rgba(255, 82, 68, 0.90);
}

.surgery-promotion .promotion .inner_promotion .button {
    background: #fff !important;
    color: #000;
}

.promotion .inner_promotion p {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
}

.promotion .inner_promotion span {
    font-size: 18px;
    color: #fff;
    margin-right: 30px;
    display: inline-block;
}

.promotion .inner_promotion span i {
    width: 45px;
    height: 45px;
    font-size: 18px;
    line-height: 45px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 15px
}

.promotion .inner_promotion strong {
    font-weight: bold;
}

.promotion .inner_promotion .button {
    display: inline-block;
}

/*------------------------------------------------------------------
    16- Blog
-------------------------------------------------------------------*/

article.news {
    margin-bottom: 40px;
}

article.news .content {
    border: 1px solid #f1f1f1;
    border-top: 0px;
    padding: 50px;
}

article.news figure {
    width: 100%;
    /*height: 294px;*/
    margin-bottom: 30px;
}

article.news figure img {
    /*width: 100%;
    height: 100%;*/
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

article.news h5 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 10px;
}

article.news .button {
    display: inline-block;
    margin-top: 20px;
}

article.news h5:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #000;
    display: block;
    margin-top: 12px;
}

/*------------------------------------------------------------------
    17- single
-------------------------------------------------------------------*/

.single .news {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.single .news p {
    margin-bottom: 20px;
}

.single .news>img {
    margin-right: 20px;
    margin-bottom: 20px;
    float: left;
}

.single .social_icon {
    text-align: center;
}

.single .social_icon span {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 600;
}

.single .social_icon a {
    color: #444;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    margin-left: 5px;
}

.single .social_icon a:hover {
    color: #000;
}

.comment_form .form-control {
    background: #f8f8f8;
    box-shadow: none;
}

.comment_form {
    width: 100%;
}

.comment_form .button {
    border: 0px;
}

.comment_form h5, .default-form h5 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}

.comment_form h5:after, .default-form h5:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #e16297;
    display: block;
    margin-top: 5px;
}

/*------------------------------------------------------------------
    18- Services Detail
-------------------------------------------------------------------*/

.single .heading p {
    margin: 0px;
}

.single .news>img.service_small {
    float: right;
    margin: 0px 0px 20px 20px
}

.downloads {
    text-align: center;
    margin-bottom: 60px;
}

.downloads ul li {
    background: #f8f8f8;
    padding: 20px;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    margin-right: -5px;
    border: 1px solid #ccc;
}

.downloads ul li strong {
    font-size: 18px;
    font-weight: 600;
}

.downloads ul li i {
    font-size: 18px;
    font-weight: 600;
    color: #2fc0df;
}

.single_serv {
    text-align: center;
}

.single_serv img {
    margin-bottom: 20px;
}

.single_serv h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #444444;
    font-weight: 600;
}

/*------------------------------------------------------------------
    19- Sidebar
-------------------------------------------------------------------*/

.side_widget {
    margin-bottom: 55px;
}

.side_widget .heading_c {
    text-transform: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.side_widget .heading_c:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #e16297;
    display: block;
    margin-top: 5px;
}

.side_widget .widget_title {
    margin-bottom: 30px;
    font-size: 18px;
}

.side_widget>form,
.wp-block-search.wp-block-search__button-inside,
.wp-block-search__button-outside.wp-block-search {
    position: relative;
    border: none;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    position: relative;
    border: 1px solid #ddd;
}

.wp-block-search__button-outside.wp-block-search  .wp-block-search__inside-wrapper {
    display: flex;
    flex: auto;
    flex-wrap: nowrap;
    max-width: 100%;
    flex-direction: row;
    align-content: center;
    align-items: center;
    padding: 0;
}

.wp-block-search__button-outside.wp-block-search  .wp-block-search__inside-wrapper input[type='search'] {
    padding: 0 20px;
    height: 50px;
    border: 1px solid #ddd;
}

.side_widget form input[type='search'],
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    color: #999999;
    text-transform: uppercase;
    width: 100%;
    height: 44px;
    padding: 0px 20px 0px 20px;
    border: 0px;
    font: 400 12px 'Montserrat', arial, sans-serif;
}

.side_widget form button,
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
    background: #e16297;
    width: 50px;
    border: 0px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    margin: 0px;
    line-height: 0px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: 0;
    transform:  translateY(-50%);
}

.wp-block-search__text-button.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper button,
.wp-block-search__text-button.wp-block-search.wp-block-search__button-outside  .wp-block-search__inside-wrapper button{
    width: auto;
    font-size: 14px;
    padding: 0 20px;
}

.wp-block-search__button-outside.wp-block-search  .wp-block-search__inside-wrapper button {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: auto;
    color: #fff;
    cursor: pointer;
    /*font-size: 14px;*/
}

.wp-block-search .wp-block-search__button svg path {
    fill: #fff !important;
}

.side_widget .wp-block-group .wp-block-group__inner-container h2,
.side_widget label.wp-block-search__label {
    text-transform: none;
    font-size: 18px;
    font-weight: 600 !important;
    margin-bottom: 20px;
    font-family: 'Poppins';
}

.side_widget .wp-block-group .wp-block-group__inner-container h2:after,
.side_widget label.wp-block-search__label:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #e16297;
    display: block;
    margin-top: 5px;
}

.side_widget ul li,
.side_widget ol.wp-block-latest-comments li {
    margin-bottom: 3px;
    border: 1px solid #eeeeee;
    padding: 10px;
    position: relative;
}

.side_widget ul li a,
.side_widget ol.wp-block-latest-comments li a {
    font-weight: 600;
    color: #444444;
    display: inline-block;
    position: relative;
}

.side_widget ol.wp-block-latest-comments li a.wp-block-latest-comments__comment-author {
    font-weight: normal;
}

.side_widget ul li a:hover,
.side_widget ul li a.active,
.side_widget ol.wp-block-latest-comments li a:hover,
.side_widget ol.wp-block-latest-comments li a:active {
    color: #2fc0df;
}

.side_widget .wp-block-latest-comments footer.wp-block-latest-comments__comment-meta {
    background: none;
}

.cnt-mgg>img {
    width: 100%;
}

.recent_post ul li img {
    width: 100%;
    height: 80px;
}

.recent_post ul li p {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 20px;
    color: #222
}

.recent_post ul li span {
    font: 700 12px 'Open Sans', arial, sans-serif;
    color: #e16297;
    text-transform: uppercase;
}

.recent_post ul li span i {
    color: #7da500;
    margin-right: 5px;
}

.insta img {
    width: 100%;
    height: 116px;
    margin-bottom: 30px;
}

/*Sidebar Widget*/

.sidebar_widget {
    margin-bottom: 60px;
}

.sidebar_widget h4 {
    font-size: 20px;
    font-weight: bold;
    background: url("../images/line.png") no-repeat left bottom;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.side_widget .inner_widgets {
    text-align: center;
    border: 1px solid #cccccc;
    padding: 20px 10px;
}

.side_widget .inner_widgets blockquote {
    background: none;
    padding: 0px;
    color: #666666;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.side_widget .inner_widgets span {
    font-size: 16px;
    font-weight: 600;
    display: block;
    color: #222222;
    background: url("../images/quotes.png") no-repeat right center;
    background-size: 20px;
}

.side_widget .inner_widgets span cite {
    font-size: 12px;
    display: block;
    color: #666666;
    text-transform: uppercase;
    font-weight: normal;
    padding-left: 30px;
}

.addres_wrap {
    background: url("../images/custom/side_img.png") no-repeat;
}

.side_widget address {
    background: rgba(0, 0, 0, .7);
    padding: 30px 20px;
    text-align: center;
}

.side_widget address span {
    font-size: 18px;
    font-weight: 300;
    color: #cccccc;
    display: block;
}

.side_widget address strong i {
    color: #2fc0df;
    margin-right: 10px;
}

.side_widget address strong {
    font-size: 22px;
    font-weight: 600;
    display: block;
    color: #fff;
    margin-bottom: 10px;
}

.side_widget address .button, .side_widget address .shop_btn {
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.tags a {
    display: inline-block;
    margin: 0px 8px 8px 0px;
    padding: 8px 9px;
    border: 1px solid #ccc;
    color: #888888;
    font-size: 14px;
}

/*------------------------------------------------------------------
    20- Page Title
-------------------------------------------------------------------*/

.page_title {
    background: url("../images/custom/title_img.png") no-repeat;
    position: relative;
    background-size: cover;
    text-align: center;
}

.page_title .layer {
    position: static;
    padding: 90px 0px;
}

.page_title h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    line-height: normal;
}

.beadcrumb {
    font: 14px 'Open Sans', sans-serif;
    color: #fff;
}

.beadcrumb a {
    font-size: 14px;
    color: #fff;
}

/*------------------------------------------------------------------
    21- Testimonials
-------------------------------------------------------------------*/

.container.test_slider>div {
    padding-top: 45px;
}

.testi {
    background: #f8f8f8;
    padding: 40px 36px;
    position: relative;
    margin-bottom: 40px;
}

.testimonial3 .testi cite img {
    display: inline-block;
    width: 30px;
}

.testi h4 {
    color: #444444;
    margin-bottom: 20px;
}

.testi h4 span {
    color: #444444;
    font-weight: 400;
    font-size: 12px;
    margin-left: 10px;
}

.testi cite {
    text-align: right;
    display: block;
}

.testi p {
    margin-bottom: 15px;
}

.testi>a {
    position: absolute;
    bottom: -43px;
    left: 50%;
    margin-left: -43px;
    height: 86px;
    width: 86px;
    overflow: hidden;
    display: block;
    border-radius: 50%;
}

.testi>a img {
    width: 100%;
    height: 100%;
}

.testi_two {
    background: url("../images/custom/testimonial.png") no-repeat;
    /*min-height: 737px;*/
    background-size: cover;
}

.testi_inner {
    padding: 95px 0;
    background: rgba(0, 0, 0, 0.80);
}

.testi_inner .heading {
    text-align: center;
    margin-bottom: 100px;
}

.testi_inner .heading:after {
    margin: 10px auto 0;
}

.testi_inner .heading h3 {
    font-size: 36px;
    color: #fff;
}

.testi_inner .heading p {
    color: #fff;
}

.testi_inner .testi_d p {
    color: #fff;
    margin-bottom: 15px;
}

.testi_inner .heading:after {
    color: #fff;
}

/*.testi_two .item {
    margin-right: 30px;
}*/

.testi_d {
    border: 1px solid #fff;
    padding: 60px 30px 80px;
    position: relative;
    margin-top: 40px;
}

.testi_d>a {
    position: absolute;
    top: -40px;
    left: 50%;
    margin-left: -45px;
    height: auto;
    width: 86px;
    overflow: hidden;
    display: block;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-bottom: 15px;
}

.testi_d cite {
    text-align: right;
    display: block;
}

.testi_d h4 {
    color: #fff;
    margin-bottom: 20px;
    float: left;
    text-align: left;
    font-weight: bold;
}

.testi_d h4 span {
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    margin-left: 0px;
    display: block;
}

.home_testi .testi_d {
    background: #ffffff;
}

.home_testi .testi_d p {
    color: #444444;
}

.home_testi .testi_d h4 {
    color: #444444;
    text-align: left;
}

.home_testi .testi_d h4 span {
    color: #444444;
    margin: 0px
}

/*------------------------------------------------------------------
    22- Awards
-------------------------------------------------------------------*/

.award {
    text-align: center;
}

.award figure {
    border: 1px solid #eeeeee;
    padding: 20px 0px;
    margin-bottom: 36px !important;
}

.award figure img {
    vertical-align: middle;
    width: unset !important;
    height: 100% !important;
    margin: 0 auto;
}

.award h5 {
    font-weight: 600;
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.award p {
    margin-bottom: 20px;
}

.award>a {
    color: #e16297;
    text-decoration: underline;
}

/*------------------------------------------------------------------
    23- News
-------------------------------------------------------------------*/

.news {
    margin-bottom: 40px;
}

.news figure {
    /*width: 100%;
    height: auto;*/
}

.news figure img {
    /*width: 100%;
    height: 100%;*/
}

.blog-7 .news figure img {
    width:100%;
}

.news h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.meta ul {
    margin-bottom: 0px;
}

.meta ul li {
    display: inline-block;
    margin-right: 15px;
    font-size: 13px;
    color: #222;
}

.meta ul li a {
    color: #e16297;
}

.meta ul li span {
    color: #e16297;
}

.news_wrap {
    padding: 90px 0px;
    background: #f8f8f8;
    text-align: center;
}

.news_wrap .news {
    text-align: left;
}

.news_wrap .heading:after {
    margin: 0 auto;
}

.news_wrap .news .heading:after {
    margin: 10px auto 0;
}

.news_wrap .news figure {
    height: auto;
    margin-bottom: -6px;
}

.news_wrap .news .detail {
    background: #fff;
    padding: 40px 20px;
    margin-top: -5px;
}

.news_wrap .button {
    color: #fff;
    border-color: #ccc;
    margin-top: 10px;
    display: inline-block;
}

.maps iframe {
    height: 400px;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    margin-bottom: 50px;
    height: 390px;
}

/*------------------------------------------------------------------
    24- Contact
-------------------------------------------------------------------*/

.contact_map {
    margin-bottom: 70px;
}

.contact_map iframe {
    width: 100%;
    height: 360px !important;
    border: 0px;
}

.contact_detail img {
    width: 100%;
}

.surgery-contact-detail {
    margin-top: 90px;
}

.contact_detail .address {
    padding: 40px;
    background: #2fc0df;
    width: 75%;
    margin: -20px auto 40px;
    position: relative;
}

.contact_detail .address span {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
    line-height: 26px;
}

.contact_detail ul li {
    display: inline-block;
    margin-right: 25px;
    color: #fff;
    margin-bottom: 10px;
}

.contact_detail ul li i {
    display: inline-block;
    margin-right: 8px;
    color: #fff;
}

.contact_detail .button {
    display: inline-block;
    margin-top: 30px;
}

.contact_detail .button img {
    margin-bottom: 0px;
    width: auto;
    display: inline-block;
}

.maped_detail p i {
    vertical-align: 12px;
    text-align: center;
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.maped_detail.contact_detail .address span {
    display: inline-block;
}

.maped_detail span cite {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.maped_detail span strong {
    font-weight: 300;
    font-size: 29px;
}

.maped_detail.contact_detail .address {
    padding: 21px 35px;
}

.maped_detail.contact_detail .address.pink {
    background: #e16297;
    padding: 21px 22px;
}

.contact_wrap {
    /*margin: 0 0 80px;*/
}

.contact_wrap ul {
    list-style-type: none;
    list-style-position: outside;
    margin: 0px;
}

.contact_wrap ul li {
    color: #888;
    clear: both;
    display: block;
    position: relative;
    padding: 11px 0px 11px 23px;
    border-bottom: 1px solid #e5e5e5;
}

.contact_wrap ul li:first-child {
    padding-top: 0;
}

.contact_wrap ul li:last-child {
    border-bottom: none;
}

.contact_wrap ul li ul {
    padding-left: 0px;
}

.contact_wrap ul li a {
    color: #4d4d4d;
}

.contact_wrap ul li:before {
    content: "\f178";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 14px;
    margin-right: 10px;
}

.contact_wrap ul li p {
    display: inline-block;
}

.contact_wrap form input[type="text"], .contact_wrap form input[type="email"] {
    border: 0px;
    border-bottom: 1px solid #d6d6d6;
    padding: 10px 0 15px;
    display: block;
    margin-bottom: 40px;
    width: 100%;
    -webkit-appearance: none;
}

.contact_wrap form .wpcf7-select {
    border-bottom: 1px solid #d6d6d6;
    padding: 10px 0;
}

.contact_wrap form textarea {
    resize: none;
    border: 0px;
    border-bottom: 1px solid #d6d6d6;
    padding: 10px 0 15px;
    display: block;
    margin-bottom: 40px;
    width: 100%;
    -webkit-appearance: none;
    max-height: 70px;
}

.contact_wrap form input[type="submit"] {
    margin-left: 15px;
    font: 600 14px 'Poppins', arial, sans-serif;
    background: #e16297;
    color: #fff;
    text-transform: uppercase;
    padding: 12px 24px;
}

.contact_wrap form input[type="submit"]:hover {
    background: #2fc0df;
    color: #fff;
    border-color: #2fc0df;
}

/*------------------------------------------------------------------
    25- Gallery
-------------------------------------------------------------------*/

.my-selector {
    text-align: center;
    margin-bottom: 60px;
}

.my-selector a {
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    border: 1px solid rgba(0, 0, 0, 0);
    display: inline-block;
    padding: 8px 14px;
    margin: 0px 15px;
}

.my-selector a:hover, .my-selector a.selected {
    color: #2fc0df;
    border: 1px solid #eeeeee;
}

.my-selector button {
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    border: 1px solid rgba(0, 0, 0, 0);
    display: inline-block;
    padding: 8px 14px;
    margin: 0px 15px;
    background: transparent;
    cursor: pointer;
}

.my-selector button:hover, .my-selector button.mixitup-control-active, .my-selector button.is-checked {
    color: #2fc0df;
    border: 1px solid #eeeeee;
}

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

.item_inner img {
    float: left;
    width: 100%;
    height: auto;
}

.item_inner .overlay {
    visibility: hidden;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: rgba(51, 185, 215, .7);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*.project_two .item_inner .overlay {*/
/*    line-height: 300px;*/
/*}*/

.item_inner .overlay>a {
    /*position: absolute;*/
    /*top: -30px;*/
    /*left: 50%;*/
    /*margin-left: -10px;*/
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.item_inner .overlay>a i {
    color: #fff;
    font-size: 21px;
}

.item_inner .overlay h5 a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.item_inner:hover .overlay {
    visibility: visible;
}

.item_inner:hover .overlay>a {
    top: 40%;
}

.project_two div.mix {
    width: 20%;
    float: left;
}

.project_two ul li.item .item_inner {
    margin-bottom: -4px;
}

/*------------------------------------------------------------------
    26- Error
-------------------------------------------------------------------*/

.error_page {
    text-align: center;
    margin-bottom: 100px;
}

.error_page img {
    margin-bottom: 50px;
    max-width: 100%;
}

/*------------------------------------------------------------------
    27- Footer
-------------------------------------------------------------------*/

footer {
    background: #001a20;
    position: relative;
    z-index: 1;
}

.footer_detail {
    background: #00232b;
    padding: 70px;
    text-align: center;
}

.footer_detail>a>img {
    margin-bottom: 25px;
}

.footer_detail p {
    color: #fff;
    line-height: 26px;
}

.footer-hp6 .footer_detail p {
    color: #fff;
}

.footer_detail p i {
    vertical-align: 20px;
}

.footer_detail span {
    font-size: 16px;
    color: #fff;
    margin-bottom: 50px;
    display: block;
    line-height: 26px;
}

.footer_detail hr {
    border: 1px dotted rgba(255, 255, 255, 0.45);
}

.footer_detail ul li {
    display: inline-block;
    margin-right: 25px;
    color: #fff;
    margin-bottom: 50px;
    word-break: break-all;
}

.footer_detail ul li i {
    display: inline-block;
    margin-right: 8px;
    color: #2fc0df;
}

.footer_detail .button img {
    margin-bottom: 0px;
}

.footer_widget {
    margin-top: 65px;
}

.footer_widget h4 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.footer_widget h4:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #e16297;
    display: block;
    margin-top: 12px;
}

.footer_widget ul li {
    margin-bottom: 10px;
}

.footer_widget ul li a {
    color: #cccccc;
}

.footer_widget p {
    color: #cccccc;
}

.footer_widget .social a {
    width: 36px;
    height: 36px;
    color: #ffffff !important;
    line-height: 35px;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
}

.footer_widget .social a:hover {
    border: 0px;
    background: #e16297;
}

.footer_bottom p {
    color: #cccccc;
    line-height: 90px;
}

footer.hp5 {
    background-color: #001a20;
}

/*footer.hp5 .footer_detail {
    background-color: #121d35 !important;
}*/

footer.hp5 .button {
    background-color: #5787f2;
}

footer.hp5 .footer_widget h3:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #e16297;
    display: block;
    margin-top: 5px;
}

footer.hp5 .footer_widget .social a:hover {
    background-color: #5787f2
}

footer.hp5 .footer_bottom p {
    text-align: right;
    padding-right: 65px;
}

footer.hp5 .footer_detail ul li i {
    color: #fff;
}

footer.hp5 .footer_widget h3.widget-title {
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 25px;
    font-size: 16px;
}

footer.hp5 .footer_widget h3:after {
    background-color: #cccccc;
}

/****************************************************************************
    28- Shop
****************************************************************************/

 .shop_wrap.section_margin {
    margin-top: 98px;
}

.shop img {
    min-height: 150px;
    width: 100%;
}

.shop_wrap .heading:after {
    display: none;
}

.shop_wrap .heading {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.shop_wrap .heading form {
    float: right;
}

.shop_wrap .heading select {
    color: #888888;
    font-size: 13px;
    background: #f7f7f7;
    border: 0px;
    padding: 10px 20px;
    width: 240px;
}

.shop {
    border: 1px solid #eeeeee;
    text-align: center;
    margin-bottom: 20px;
}

.shop figure {
    margin-bottom: 25px;
}

.shop figure a {
    display: inline-block;
}

.shop h5 {
    margin-bottom: 20px;
    padding: 0 20px;
}

.shop h5 a {
    font-size: 14px;
    color: #444444;
    font-weight: 600;
}

.shop span {
    margin-bottom: 6px;
    color: #2fc0df;
    font-size: 14px;
    display: inline-block;
    font-weight: bold;
}

.shop .shop_btn {
    border-color: #cccccc;
    color: #444444;
    display: block;
    font-size: 12px;
}

.shop .shop_btn:hover, .shop:hover .button {
    background: #e16297;
    color: #fff;
    border-color: #e16297;
}

.shop:hover {
    box-shadow: 0px 0px 19px -2px #ccc;
}

div#slider-range {
    margin-bottom: 30px;
}

div#slider-range span {
    border: 0px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    top: -8px;
    background: #2fc0df;
    box-shadow: 0px 0px 14px 4px #dadada;
}

div#slider-range span:after {
    content: '';
    background: #fff;
    width: 17px;
    height: 17px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
}

.range p {
    float: right;
    margin-top: 6px;
    color: #444444;
}

.range p input {
    width: 96px;
    padding: 0px;
    border: 0px;
}

.range .button {
    padding: 9px 13px;
    border-color: #cccccc;
    color: #444444;
    display: inline-block;
    font-size: 12px;
}

.range .button:hover {
    background: #e16297;
    color: #fff;
    border-color: #e16297;
}

.recent_post.best_seller ul li img {
    border: 1px solid #d4d4d4;
    padding: 13px;
    width: 88px;
    height: 80px;
}

.recent_post.best_seller ul li p {
    font-size: 14px;
}

.recent_post.best_seller ul li span {
    font-size: 14px;
}

.recent_post.best_seller ul li {
    margin-bottom: 15px;
}

.shop_cates li a {
    background: none !important;
    color: #444444 !important;
}

.shop_cates li div {
    background: #f7f7f7;
    padding: 30px;
    margin: 5px 0;
}

.shop_cates li div a {
    border: 0px;
    padding: 0px;
    font-size: 14px;
    color: #444444;
    font-weight: 300;
    display: block;
    margin-bottom: 8px;
}

.shop_cates li div a i {
    color: #e16297;
    margin-right: 10px;
}

.shop_cates li div h3 {
    color: #2fc0df;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.shop_wrap .heading a {
    border-radius: 4px;
    background: #2fc0df;
    height: 38px;
    display: inline-block;
    vertical-align: middle;
    width: 38px;
    text-align: center;
    line-height: 38px;
    color: #fff;
}

.shop_wrap .heading a i {
    font-size: 21px;
    vertical-align: middle;
}

/****************************************************************************
    29- Shop Single
****************************************************************************/

.shop_wrap .star i {
    color: #2fc0df;
}

.shop_wrap .star {
    margin-top: 10px;
}

.shop_wrap .price p {
    font-size: 18px;
    color: #cccccc;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0px;
}

.shop_wrap .price {
    margin-bottom: 30px;
}

.shop_wrap .price p strong {
    color: #e16297;
    font-size: 24px;
    font-weight: 600;
}

.shop_detail p {
    color: #888888;
    margin-bottom: 15px;
}

.shop_detail .qnt p input {
    margin-left: 15px;
    width: 74px;
    background: #f7f7f7;
    border: 0px;
    height: 35px;
}

.shop_detail .qnt p a {
    float: right;
    display: inline-block;
    margin-top: -10px;
}

.shop_tabs {
    border: 0px !important;
    margin-bottom: 30px;
}

.shop_tabs ul {
    background: none;
    border: 0px;
}

.shop_tabs ul li a {
    background: none !important;
    color: #888888 !important;
    font-weight: 600;
    border: 0px !important;
    font-size: 18px;
}

.shop_tabs ul li {
    background: none !important;
    border: 0px !important;
}

.shop_tabs ul li.ui-state-active a:after {
    content: '';
    background: #e16297;
    width: 28px;
    height: 3px;
    display: block;
    margin-top: 4px;
}

.shop_tabs ul li.ui-state-active a {
    color: #000 !important;
}

.shop_tabs ul li a:focus {
    outline: 0px !important;
}

.heading_wrap {
    padding: 35px 0px;
    text-align: center;
    background: #f8f8f8;
    margin-bottom: 20px;
}

.heading_wrap .heading:after {
    margin: 0 auto;
    display: block;
}

.heading_wrap .heading {
    border: 0px;
    padding: 0px;
    margin: 0px;
}

/****************************************************************************
    30- Dental Home
****************************************************************************/

.about_imod_two {
    background: none;
    padding: 0px;
}

.about_imod_two ul {
    margin-top: 15px;
    margin-bottom: 15px;
}

.about_imod_two ul li {
    color: #444444;
    line-height: 36px;
    list-style: none;
}

.about_imod_two ul li i {
    margin-right: 10px;
    color: #000;
}

.services_three {
    background: #f8f8f8;
    padding: 80px 0;
}

.services_three .service {
    background: #fff;
}

.cases_wrap {
    background: #f8f8f8;
    padding: 80px 0;
}

.cases_wrap .heading {
    text-align: center;
    margin-bottom: 30px;
}

.cases_wrap .heading:after {
    margin: 3px auto;
}

.cases_wrap h4 {
    margin-bottom: 30px;
    color: #444444;
    font-size: 18px;
    font-weight: 600;
}

.cases_wrap .owl-nav {
    display: none;
}

.cases_wrap .owl-dots {
    margin: 20px 0px 0px;
    text-align: center;
    display: none;
}

.cases_wrap .owl-dots .active {
    background: #e16297;
}

.cases_wrap .owl-dots div {
    background: #a0a0a0;
    width: 6px;
    height: 6px;
    display: inline-block;
    margin: 0px 2px;
    border-radius: 50%;
}

.cases_wrap .button {
    display: inline-block;
}

.cases_wrap ul {
    margin-top: 30px;
    margin-bottom: 30px;
}

.cases_wrap ul li {
    color: #444444;
    line-height: 36px;
    list-style: none;
}

.cases_wrap ul li i {
    margin-right: 10px;
    color: #000;
}

input.button {
    border: 0px;
}

.appointment_wrap {
    /*background: url("http://via.placeholder.com/1900x608") no-repeat;*/
    background-size: 100% 100%;
}

.appointment_wrap .inner_appointments {
    background: rgba(47, 192, 223, 0.88);
}

.inner_appointments .heading {
    padding: 80px 0px 0;
}

.inner_appointments .heading h3, .inner_appointments .heading p, .appointment_wrap p {
    color: #fff;
}

.doctor_img img {
    margin-top: -17px;
    margin-bottom: -6px;
}

.testi_three h4 {
    margin-top: 30px;
}

.testi_three h4 span {
    display: block;
    font-size: 12px;
    color: #888888;
}

.testi_three .heading {
    text-align: center;
    margin-bottom: 60px;
}

/*.testi_three .item {
    margin-right: 30px;
}*/

.testi_three p {
    font-style: italic;
    /*padding-right: 30px;*/
}

.testi_three .heading:after {
    margin: 3px auto;
}

.why_us #accordion h3 {
    color: #444444;
    font-size: 18px;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 0;
}

.why_us #accordion h3 a {
    color: #444444;
}

.why_us #accordion h3 a:focus {
    outline: none;
}

.why_us #accordion h3:focus {
    outline: none;
}

.why_us #accordion p {
    margin-bottom: 30px;
}

.why_us #accordion div {
    height: auto !important;
}

.why_us img {
    width: 100%;
    margin-bottom: 20px;
}

/****************************************************************************
    31- Isotops ON Portfolio Section
****************************************************************************/

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope, .isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -ms-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

/*------------------------------------------------------------------
    32- Paper Work
-------------------------------------------------------------------*/

.paper p {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 30px;
}

.paper ol li {
    font: 400 14px 'Poppins', arial, sans-serif;
    line-height: 26px;
    color: #888888;
    margin-bottom: 11px;
    list-style-type: disc;
}

.paper ol {
    margin-left: 14px;
    margin-bottom: 30px;
}

.paper a {
    display: block;
    margin-bottom: 20px;
}

/*------------------------------------------------------------------
    33- Hover Effects
-------------------------------------------------------------------*/

.tool figure, .ser_inner figure {
    overflow: hidden;
}

.tool figure img, .ser_inner figure img {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    height: auto;
}

.tool:hover img, .service:hover figure img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.1);
    transform: scale(1.3);
    height: auto;
}

.news figure, .team figure {
    overflow: hidden;
}

.team figure img {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    /*height: 100%;*/
}

.news_two figure {
    overflow: hidden;
}

.news_two figure img {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.news_two:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.1);
    transform: scale(1.3);
}

.projects figure {
    overflow: hidden;
}

.projects figure img {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.projects:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.1);
    transform: scale(1.3);
}

.award_wrap.section_margin {
    margin-bottom: 58px;
}

.intro_box figure, .award figure {
    overflow: hidden;
}

.intro_box figure img, .award figure img {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.intro_box .animated:hover img, .award:hover figure img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.1);
    transform: scale(1.3);
}

.testi_d>a {
    overflow: hidden;
}

.stat img, .testi_d>a img {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.stat:hover img, .testi_d:hover>a img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.department .inner_dep .feature i, .department ul li a i, .service .detail i, .single_serv img {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

/*.feature:hover i,*/

.department ul li:hover a i, .service:hover .detail i, .single_serv .ser:hover img {
    color: #fff;
}

.feature_two .feature figure img, .services_two .service i {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.feature_two .feature:hover figure img, .services_two .service:hover i {
    color: #fff;
}

.department #tabs a {
    font-family: arial;
}

.footer-gallery-style {
    display: inline-block;
    margin-right: 2px;
}

/*** 

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

***/

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

.gallery-section .filters {
    margin-bottom: 60px;
    text-align: center;
}

.gallery-section .filters .filter-tabs {
    position: relative;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 27px 0px rgba(204, 204, 204, 1);
    -moz-box-shadow: 0px 0px 27px 0px rgba(204, 204, 204, 1);
    box-shadow: 0px 0px 27px 0px rgba(204, 204, 204, 1);
}

.gallery-section .filters li {
    position: relative;
    display: inline-block;
    color: #242424;
    padding: 22px 0px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    margin-right: 40px;
    text-transform: capitalize;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    font-family: 'Poppins', sans-serif;
}

.gallery-section .filters .filter.mixitup-control-active, .gallery-section .filters .filter:hover {
    color: #2fc0df;
    text-decoration: underline;
}

.gallery-section .gallery-item-two {
    margin-bottom: 30px;
}

/*.gallery-item-two.mix {
    display: none;
}


Gallery Item*/

.gallery-item-two {
    position: relative;
}

.gallery-item-two .inner-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.gallery-item-two .image-box img {
    position: relative;
    display: block;
    width: 100%;
}

.gallery-item-two .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    color: #ffffff;
    text-align: center;
    background: rgba(0, 0, 0, 0.78);
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translate(-100%, 0%);
    -ms-transform: translate(-100%, 0%);
    -o-transform: translate(-100%, 0%);
    -moz-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
}

.gallery-item-two .inner-box:hover .overlay-box {
    opacity: 1;
    -webkit-transform: translate(0%);
    -ms-transform: translate(0%);
    -o-transform: translate(0%);
    -moz-transform: translate(0%);
    transform: translate(0%);
}

.gallery-item-two .overlay-inner {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
    padding: 10px 10px;
}

.gallery-item-two .overlay-inner .content {
    position: absolute;
    top: 0;
    left: 1%;
    display: table-cell;
    vertical-align: middle;
    line-height: 140px;
}

.gallery-item-two .overlay-inner .link {
    position: relative;
    font-size: 18px;
    color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0px 5px;
    display: inline-block;
    border: 1px solid #ffffff;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.gallery-item-two .overlay-inner .link {
    position: relative;
}

.gallery-item-two .overlay-inner .link .icon {
    position: relative;
}

.gallery-item-two .overlay-inner .link:hover {
    color: #666666;
    background-color: rgba(255, 255, 255, 1);
}

.gallery-item-two .overlay-inner h3 {
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    padding: 12px 0px;
    background-color: #282828;
}

.gallery-item-two .inner-box h3 a {
    position: relative;
    color: #ffffff;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.gallery-item-two .inner-box h3 a:hover {
    color: #c08c4d;
}

.auto-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* =============== HOMEPAGE 5 ================= */

.clinic-info {
    padding: 90px 0;
}

.cl-info {
    float: left;
    width: 100%;
}

.cl-info h2 {
    color: #444444;
    font-size: 36px;
    font-weight: 600;
}

.cl-info h2 span {
    color: #5787f2;
}

.cl-info h4 {
    color: #444444;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.cl-info h4:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #dddddd;
}

.cl-info p {
    line-height: 26px;
    margin-bottom: 25px;
}

.cl-info p:last-of-type {
    margin-bottom: 0;
}

.clinic-img {
    float: left;
    width: 100%;
    padding-left: 20px;
}

.clinic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================ practice-section ============== */

.practice-section {
    background-color: #f7f7f7;
    padding: 90px 0;
}

.title {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 30px;
}

.title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 2px;
    background-color: #dddddd;
    transform: translateX(-50%);
}

.title h2 {
    color: #444444;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
}

.title h2 span {
    color: #5787f2;
}

/* ============ practice-details ============ */

.practice-details {
    float: left;
    width: 100%;
}

.practice-bar {
    float: left;
    width: 100%;
    background-color: #fff;
    padding: 50px 20px;
}

.practice-bar figure {
    height: 81px;
    margin-bottom: 15px;
    float: left;
    width: 100%;
}

.practice-bar figure .icon_img {
    width: 70px;
    height: 81px;
    float: left;
    background-repeat: no-repeat;
}

.icon1 {
    background-image: url(../images/icon1.png);
}

.icon2 {
    background-image: url(../images/icon2.png);
}

.icon3 {
    background-image: url(../images/icon3.png);
    margin-top: 10px;
}

.icon4 {
    background-image: url(../images/icon4.png);
}

.practice-bar figure i {
    color: #5787f2;
    font-size: 70px;
}

.practice-bar img {}

.practice-bar h3 {
    color: #444444;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.practice-bar ul {
    float: left;
    width: 100%;
}

.practice-bar ul li {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.practice-bar ul li a:before {
    content: '\f061';
    font-family: fontawesome;
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 12px;
    color: #5787f2;
    transform: translateY(-50%);
}

.practice-bar ul li a {
    color: #888888;
    font-size: 14px;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}

/* ============== Doctors Sec ================ */

.doctors-sec {
    background-color: #15213d;
    padding: 100px 0;
}

.title.white h2 {
    color: #fff !important;
    line-height: 42px;
}

.title.white p {
    color: #ccc;
}

.doctors-sec .title {
    float: none;
}

.docy-sec {
    float: left;
    width: 100%;
    padding: 0 195px;
}

.doc-sec {
    float: left;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.10);
    margin-bottom: 0px;
    z-index: 99;
}

.doc-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.20);
}

.doc-sec>img {
    width: 100%;
    float: left;
}

.doc-sec>a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#html5-watermark {
    display: none !important
}

#html5lightbox-web-iframe img {
    float: none
}

/* =============== features-sec ===============  */

.features-sec {
    padding: 90px 0 0 0;
    background-color: #fff;
}

.features-list {
    float: left;
    width: 100%;
    padding-top: 100px;
}

.features-list.right {
    text-align: right;
}

.features-list.left {
    text-align: left;
}

.features-list.right .featur {
    padding-right: 35px;
}

.features-list.left .featur {
    padding-left: 35px;
}

.featur {
    float: left;
    width: 100%;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.featur:last-child {
    margin-bottom: 0;
}

.features-list.right .featur:before {
    right: 35px;
}

.features-list.right .featur:after {
    right: 0;
}

.features-list.left .featur:before {
    left: 35px;
}

.features-list.left .featur:after {
    left: 0;
}

.featur:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 2px;
    background-color: #dddddd;
}

.featur:after {
    content: '\f00c';
    font-family: fontawesome;
    position: absolute;
    top: 0;
    color: #5787f2;
    font-size: 24px;
}

.featur h3 {
    color: #444444;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.nurse-img {
    float: left;
    width: 100%;
}

.nurse-img img {
    width: 100%;
    float: left;
}

/* ================ surgeons-sec =============== */

.team_wrap.st2 .team figure .innner_lay {
    background-color: rgba(87, 135, 242, 0.80);
}

.team_wrap.st2 .team:hover .details {
    background: #fff;
}

.team_wrap.st2 .team {
    margin-bottom: 0;
}

.team_wrap.st2 {
    padding-bottom: 100px;
    margin-bottom: 0;
}

.team_wrap.st2 .team .details span {
    color: #888888;
}

.promotion.st2 .inner_promotion {
    background: rgba(255, 82, 68, 0.90);
}

.promotion.st2 .button {
    background-color: #fff;
    color: #333333
}

.promotion.st2.section_margin {
    margin-bottom: 0;
}

.testi_three.st2.section_margin {
    margin-bottom: 0;
}

.testi_three.st2 {
    background-color: #15213d;
    padding: 100px 0;
}

.testi_three.st2 .heading h3 {
    color: #fff !important;
}

.testi_three.st2 .heading p {
    color: #fff;
    padding-bottom: 20px;
}

.testi_three.st2 .heading:after {
    background: #5787f2;
    width: 50px;
}

.testi_three.st2 p {
    color: #cccccc;
    font-style: italic;
    position: relative;
    padding-bottom: 30px
}

.testi_three.st2 p:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #5787f2;
}

.heading p:before {
    display: none;
}

.testi_three.st2 h4 {
    /*color: #676e81 ;*/
    color: #fff !important;
}

.news_wrap.st2 h3 {
    color: #444444;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
}

.news_wrap.st2 {
    background: #fff;
}

.news_wrap.st2 .news .detail {
    padding: 40px 0 0 0;
}

.news_wrap.st2 .meta ul li a, .news_wrap.st2 .meta ul li span {
    text-transform: uppercase;
    font-size: 12px;
    color: #5787f2;
    font-weight: 500;
}

.news_wrap.st2 .meta ul {
    margin-bottom: 15px;
}

.news_wrap.st2 .news {
    margin-bottom: 0;
}

/* =============== form-sec ================= */

.form-sec {
    background-color: #f8f8f8;
}

.title.ta-left {
    float: left;
    text-align: left;
}

.title.ta-left:before {
    left: 0;
    transform: translateX(0);
}

.forms-fiedls {
    float: left;
    width: 100%;
}

.forms-fiedls form {
    float: left;
    width: 100%;
}

.forms-fiedls form input {
    height: 45px;
    padding: 0 20px;
}

.forms-fiedls form textarea {
    height: 105px;
    padding: 20px;
}

.forms-fiedls form select {
    height: 45px;
}

.forms-fiedls form select {
    padding: 0 15px;
}

.forms-fiedls form input, .forms-fiedls form select, .forms-fiedls form textarea {
    width: 100%;
    float: left;
    background-color: #fff;
    color: #595454;
    font-size: 13px;
    text-transform: capitalize;
    margin-bottom: 20px;
    border: 0;
    border-radius: 3px;
}

.cntct-form input.button {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    background-color: #5787f2;
    padding: 17px 20px 15px 20px;
    border: 0;
    line-height: 14px;
    margin-top: 5px;
    border-radius: 0;
    width: auto;
}

.forms-fiedls form button {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    background-color: #5787f2;
    padding: 17px 20px 15px 20px;
    border: 0;
    line-height: 14px;
    margin-top: 5px;
}

.forms-fiedls form span {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    padding-top: 10px;
    float: left;
    margin-top: 5px;
    width: 100%;
}

.forms-fiedls form span strong {
    font-weight: 600;
}

.cntct-form {
    float: left;
    width: 100%;
    padding-top: 100px;
}

/* ============ filter-section ============= */

.filter-section {
    background-color: #fff;
    padding: 100px 0;
}

.filter-gallery {
    float: left;
    width: 100%;
}

.options {
    float: left;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.options ul li {
    display: inline-block;
    padding: 0 17px;
}

.options ul li a {
    color: #888888;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.options ul li.active a {
    color: #5787f2;
}

.masonary2 {
    float: left;
    width: 100%;
}

.masonary2 img {
    width: 100%;
}

/* ===============================================================
    Twenty Twenty
================================================================*/

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
    content: " ";
    display: block;
    background: white;
    position: absolute;
    z-index: 30;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5)
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
    width: 3px;
    height: 9999px;
    left: 50%;
    margin-left: -1.5px
}

.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
    width: 9999px;
    height: 3px;
    top: 50%;
    margin-top: -1.5px
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s
}

.twentytwenty-before-label, .twentytwenty-after-label {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
    color: white;
    font-size: 13px;
    letter-spacing: 0.1em
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    line-height: 38px;
    padding: 0 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
    top: 50%;
    margin-top: -19px
}

.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
    left: 50%;
    margin-left: -45px;
    text-align: center;
    width: 90px
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
    top: 50%;
    margin-top: -6px
}

.twentytwenty-up-arrow, .twentytwenty-down-arrow {
    left: 50%;
    margin-left: -6px
}

.twentytwenty-container {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    z-index: 0;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none
}

.twentytwenty-container img {
    max-width: 100%;
    position: absolute;
    top: 0;
    display: block
}

.twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
    background: rgba(0, 0, 0, 0)
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label, .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
    opacity: 0
}

.twentytwenty-container * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.twentytwenty-before-label {
    opacity: 0
}

.twentytwenty-before-label:before {
    content: "Before"
}

.twentytwenty-after-label {
    opacity: 0
}

.twentytwenty-after-label:before {
    content: "After"
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
    left: 10px
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
    right: 10px
}

.twentytwenty-vertical .twentytwenty-before-label:before {
    top: 10px
}

.twentytwenty-vertical .twentytwenty-after-label:before {
    bottom: 10px
}

.twentytwenty-overlay {
    -webkit-transition-property: background;
    -moz-transition-property: background;
    transition-property: background;
    background: rgba(0, 0, 0, 0);
    z-index: 25
}

.twentytwenty-overlay:hover {
    background: rgba(0, 0, 0, 0.5)
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
    opacity: 1
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
    opacity: 1
}

.twentytwenty-before {
    z-index: 20
}

.twentytwenty-after {
    z-index: 10
}

.twentytwenty-handle {
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -22px;
    margin-top: -22px;
    border: 3px solid white;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    z-index: 40;
    cursor: pointer
}

.twentytwenty-horizontal .twentytwenty-handle:before {
    bottom: 50%;
    margin-bottom: 22px;
    -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5)
}

.twentytwenty-horizontal .twentytwenty-handle:after {
    top: 50%;
    margin-top: 22px;
    -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5)
}

.twentytwenty-vertical .twentytwenty-handle:before {
    left: 50%;
    margin-left: 22px;
    -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5)
}

.twentytwenty-vertical .twentytwenty-handle:after {
    right: 50%;
    margin-right: 22px;
    -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5)
}

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

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

.twentytwenty-up-arrow {
    border-bottom: 6px solid white;
    top: 50%;
    margin-top: -17px
}

.twentytwenty-down-arrow {
    border-top: 6px solid white;
    bottom: 50%;
    margin-bottom: -17px
}

.testimonial-img {
    float: left;
    width: 100%;
}

.twentytwenty-container {
    float: left;
    width: 100%;
}

.bfr-slider {
    float: left;
    width: 100%;
    padding: 0 115px;
}

.bfr-slider #container1 {
    float: left;
    width: 100%;
}

.bfr-text {
    float: left;
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

.bfr-text h3 {
    color: #444444;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
}

.bfr-text p {
    color: #444444;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}

.before-carousel {
    float: left;
    width: 100%;
}

.alert {
    padding: 20px;
    margin-bottom: 10px;
}

.alert-danger {
    background: #f2dede none repeat scroll 0 0;
    color: #C04442;
}

.alert-success {
    background: #DFF0D8 none repeat scroll 0 0;
    color: #5B763D;
}

/*.row {
    margin: 0;
}
*/

/* ============== HOEMPAGE 6 ============== */

header.hp6 {
    float: left;
    width: 100%;
}

.top-bar {
    float: left;
    width: 100%;
    background-color: #fff;
    padding: 15px 0;
}

.social_links {
    float: left;
    widows: 250px;
    margin-top: 5px;
}

.social_links ul li {
    display: inline-block;
    padding: 0 13px;
}

.social_links ul li a {
    display: inline-block;
}

/* ============= address-info ============= */

.address-info {
    float: left;
    padding-left: 100px;
    margin-top: 5px;
}

.address-info ul li {
    display: inline-block;
    color: #606060;
    font-size: 15px;
    font-weight: 400;
    margin-right: 50px;
}

.address-info ul li strong {
    font-weight: 500;
}

/* ============== appointment-lnk ============= */

.appointment-lnk {
    float: right;
}

.appointment-lnk a {
    display: inline-block;
    color: #fffefe;
    font-size: 15px;
    font-weight: 400;
    background-color: #1f1f1f;
    height: 35px;
    padding: 0 27px;
    line-height: 35px;
}

/* ============== Bottom header ============== */

.botom-bar {
    float: left;
    width: 100%;
    background-color: #8f66f0;
}

.bottom-header {
    float: left;
    width: 100%;
    position: relative;
}

.bottom-header:before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 60%;
    height: 100%;
    background-color: #fff;
}

.bt_logo {
    float: left;
    background-color: #fff;
    width: 235px;
    padding-top: 9px;
    position: relative;
    padding-bottom: 9px;
}

.bt_logo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 87%;
    width: 65px;
    height: 100%;
    background-color: #fff;
    -webkit-transform: skewX(-37deg);
    -moz-transform: skewX(-37deg);
    -ms-transform: skewX(-37deg);
    -o-transform: skewX(-37deg);
    transform: skewX(-37deg);
}

.hp6-nav {
    float: left;
    padding-left: 80px;
}

.hp6-nav ul li {
    display: inline-block;
    padding: 0;
}

.hp6-nav>ul>li>a {
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    padding: 20px 15px;
    position: relative;
}

.hp6-nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #8f66f0;
    z-index: 99;
}

.hp6-nav ul ul li {
    background-color: #8f66f0;
    padding: 10px;
}

.hp6-nav ul ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.hp6 .search-btn {
    margin-top: 18px;
}

.hp6 .mobile-menu-btn>a {
    margin-top: 15px;
}

.search-btn {
    float: right;
    margin-top: 14px;
}

.search-btn a {
    display: inline-block;
    color: #fff;
    font-size: 20px;
}

/* ============== mobile-menu-btn ============== */

.mobile-menu-btn {
    float: right;
    padding-left: 25px;
}

.mobile-menu-btn>a {
    display: inline-block;
    color: #fff;
    font-size: 24px;
    margin-top: 10px;
}

/* =============== responsive-mobile-menuu ================ */

.responsive-mobile-menuu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #8f66f0;
    padding: 50px 30px;
    z-index: 0;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.responsive-mobile-menuu.active {
    opacity: 1;
    visibility: visible;
    z-index: 999999;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.responsive-mobile-menuu ul ul {
    display: none;
    float: left;
    width: 100%;
    padding: 20px 15px 0 15px;
}

.responsive-mobile-menuu ul ul li {
    margin-bottom: 15px;
    padding: 0;
}

.responsive-mobile-menuu ul ul li:last-child {
    padding-bottom: 0;
}

.responsive-mobile-menuu ul ul li a {
    font-size: 14px;
}

.responsive-mobile-menuu ul li {
    float: left;
    width: 100%;
    padding: 15px 0;
    position: relative;
}

.responsive-mobile-menuu ul li a {
    float: left;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.responsive-mobile-menuu ul li a:before {
    content: '\f107';
    position: absolute;
    top: 50%;
    right: 0;
    font-family: fontawesome;
    color: #fff;
    font-size: 18px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}

.responsive-mobile-menuu ul li.menu-item-has-children>a:before {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    float: right;
    color: #fff;
    font-size: 40px;
}

.close-menu:hover {
    color: #fff;
}

/* ================ pt-services =============== */

.pt-services {
    float: left;
    width: 100%;
    padding: 80px 0;
}

.pt-services-details {
    float: left;
    width: 100%;
}

.pt-service {
    float: left;
    width: 100%;
    text-align: center;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    padding: 30px 0;
}

.pt-service:hover {
    background-color: #8f66f0;
}

.pt-service:hover .ico-hid {
    display: none;
}

.pt-service:hover .icon-vis {
    display: inline-block !important;
}

.icon-vis {
    display: none !important;
}

.pt-service:hover h3 {
    color: #fff;
}

.pt-service:hover p {
    color: #fff;
}

.pt-service img {
    margin-bottom: 40px;
    display: inline-block;
    text-align: center;
}

.pt-service h3 {
    color: #121212;
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.pt-service p {
    color: #121212;
    font-size: 16px;
    font-weight: 400;
}

/* ============== about-st6 ============== */

.about-st6 {
    float: left;
    width: 100%;
    background-image: url(../images/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding: 75px 0;
}

.about-us-prop {
    float: left;
    width: 100%;
}

.title2 {
    float: left;
    width: 100%;
    margin-bottom: 50px;
}

.title2 h2 {
    color: #000000;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title2 h2 span {
    color: #5215e3;
}

.title2 p {
    color: #000000;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
}

.props-links {
    float: left;
    width: 100%;
    margin-bottom: -50px;
}

.props-links li {
    float: left;
    width: 50%;
    display: table;
    margin-bottom: 50px;
}

.props-links li img {
    display: table-cell;
}

.props-links li span {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    padding-left: 20px;
}

/* =============== our-services-hp6 =============== */

.our-services-hp6 {
    float: left;
    width: 100%;
    padding: 80px 0;
}

.heading2 {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.heading2 h3 {
    color: #010101;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.heading2 p {
    color: #606060;
    font-size: 14px;
}

.divider {
    width: 330px;
    margin: 0 auto;
    position: relative;
    margin-top: 10px;
}

.divider:before {
    left: 0;
}

.divider:after {
    right: 0;
}

.divider:before, .divider:after {
    content: '';
    position: absolute;
    top: 12px;
    width: 140px;
    height: 1px;
    background-color: #cccccc;
}

.divider img {
    float: none;
}

/* ============== our-services-details ============= */

.our-services-details {
    float: left;
    width: 100%;
}

.our-service-list {
    float: left;
    width: 100%;
}

.service-info {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}

.service-info i {
    color: #606060;
    font-size: 32px;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    border: 1px solid #9771f1;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 18px;
}

.service-info h3 {
    color: #505050;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 13px;
}

.service-info p {
    color: #606060;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    padding: 0 30px;
}

.service-img {
    float: left;
    width: 100%;
    text-align: center;
}

.service-img img {
    float: none;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

/* =============== counter-section ============== */

.counter-section {
    float: left;
    width: 100%;
    background-image: url(../images/counter-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0;
    position: relative;
    background-attachment: fixed;
}

.counter-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #9873f0;
    opacity: 0.9;
}

.counter-item {
    float: left;
    width: 100%;
    float: left;
}

.counter-icon {
    float: left;
    width: 70px;
    height: 70px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100px;
    line-height: 70px;
    color: #ffffff;
    font-size: 30px;
    margin-top: 8px;
}

.counter-info {
    float: left;
    padding-left: 30px;
}

.counter-info h3 {
    color: #fff;
    font-weight: 600;
    font-size: 40px;
}

.counter-info h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

/* ================= why-choose-us ================ */

.why-choose-us {
    float: left;
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
}

.choose-img {
    float: left;
    width: 100%;
}

.choose-img img {
    width: 100%;
}

.choose-us {
    float: left;
    width: 100%;
}

.ch-title {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.ch-title h3 {
    color: #121212;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ch-title p {
    color: #737373;
    font-size: 14px;
}

/* ================ Toggle Choose Us =============== */

.toggle {
    float: left;
    width: 100%;
}

.toggle-item {
    float: left;
    width: 100%;
    /*margin-bottom: 20px;*/
}

.toggle-item.activate {
    margin-bottom: 0;
}

.toggle-item h2 {
    color: #121212;
    font-size: 14px;
    font-weight: 500;
    height: 55px;
    line-height: 55px;
    padding: 0 30px;
    border: 1px solid #c1c1c1;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
}

.toggle-item h2.active {
    margin-bottom: 0;
}

.toggle-item h2:before {
    content: '\f0a5';
    position: absolute;
    top: 6px;
    right: 18px;
    font-family: 'icofont';
    color: #f75252;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100px;
    background-color: #e2e1e1;
    text-align: center;
    cursor: pointer;
    font-weight: 400;
}

.toggle-item h2.active:before {
    content: '\f074';
}

.content {
    float: left;
    width: 100%;
    padding: 15px 10px;
}

/* =============== latest-news-section ============== */

.latest-news-section {
    float: left;
    width: 100%;
    background-color: #f7f7f7;
    padding: 80px 0;
}

.heading3 {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.heading3 h3 {
    color: #222222;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.heading3 h3:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 10px;
    height: 2px;
    background-color: #222222;
}

.heading3 p {
    color: #626262;
    font-size: 14px;
    line-height: 22px;
}

/* ================ blog-posts-sec =============== */

.blog-posts-sec {
    float: left;
    width: 100%;
}

.blog_post {
    float: left;
    width: 100%;
}

.blog-8 .blog_post {
    margin-bottom: 20px;
}

.blog_img {
    float: left;
    width: 100%;
    position: relative;
}

.blog_img img {
    width: 100%;
    float: left;
    height: auto;
}

.post-date {
    width: 58px;
    padding: 10px 0;
    background-color: #8f66f0;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    position: absolute;
    bottom: 20px;
    right: 1px;
}

.blog-info {
    float: left;
    width: 100%;
    padding-top: 20px;
}

.blog-info h3 {
    color: #141414;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-info>span {
    float: left;
    color: #2d2d2d;
    font-size: 12px;
    margin-bottom: 10px;
}

.blog-info>p {
    float: left;
    width: 100%;
    color: #535353;
    font-size: 14px;
    padding-bottom: 25px;
}

.blog-8 .blog-info>div>p {
    float: left;
    width: 100%;
    color: #535353;
    font-size: 14px;
    padding-bottom: 25px;
}

.post-links {
    float: left;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.post-links>ul {
    float: left;
}

.post-links ul li {
    display: inline-block;
    margin-right: 15px;
}

.post-links ul li:last-child {
    margin-right: 0;
}

.post-links ul li i {
    color: #8f66f0;
    font-size: 14px;
}

.post-links ul li span, .post-links ul li a {
    display: inline-block;
    color: #6f6f6f;
    font-size: 14px;
    padding-left: 10px;
}

.post-links>a {
    float: right;
    color: #8f66f0;
    font-size: 14px;
    font-weight: 400;
}

.post-links>a i {
    padding-left: 10px;
    font-size: 16px;
}

/* ================ client-reviews-sec ============== */

.client-reviews-sec {
    float: left;
    width: 100%;
    background-image: url(../images/client-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.client-review-carousel {
    float: left;
    width: 100%;
    text-align: center;
}

.review-slide {
    float: left;
    width: 100%;
    padding: 0 150px;
}

.review-slide p {
    color: #000000;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

.reviewer-info {
    width: 300px;
    margin: 0 auto;
    display: table;
    padding: 0 50px;
}

.reviewer-nm {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
}

.reviewer-nm h3 {
    color: #262626;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.reviewer-nm h4 {
    color: #262626;
    font-size: 12px;
    text-transform: uppercase;
}

.client-review-carousel .reviewer-info img {
    display: inline-block !important;
    width: 63px;
    height: 63px;
    object-fit: cover;
    border-radius: 100px;
}

.client-review-carousel .owl-prev {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.client-review-carousel .owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.client-review-carousel .owl-dots {
    float: left;
    width: 100%;
    padding-top: 60px;
}

.client-review-carousel .owl-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 100px;
    border: 1px solid #797674;
    margin-right: 6px;
}

.client-review-carousel .owl-dot.active {
    background-color: #8f66f0;
    border-color: transparent;
}

/* ================= insta-imgs =================  */

.insta-imgs {
    float: left;
    width: 100%;
}

.insta-img {
    float: left;
    width: 20%;
}

.insta-img img {
    width: 100%;
    float: left;
    height: auto;
}

/* =============== Footer Homepage 6 ============== */

.slider-6 {
    position: relative;
}

.slider-6:before {
    content: '';
    position: absolute;
    background-color: #33A9C6;
    width: 50%;
    height: 52%;
    top: 0;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
}

.slider-6:after {
    content: '';
    position: absolute;
    background-image: url(../images/slider/slider_right.png);
    width: 500px;
    height: 500px;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-repeat: no-repeat;
}

.footer-hp6 {
    float: left;
    width: 100%;
    background-color: #fff;
}

.footer-hp6 .footer_widget {
    margin-top: 0;
}

.widget {
    float: left;
    width: 100%;
}

.widget-about {
    padding-right: 60px;
    padding-bottom: 144px;
}

.widget-about img {
    float: left;
    margin-bottom: 50px;
}

.widget-about p {
    float: left;
    width: 100%;
    margin-bottom: 50px;
}

.widget-about>h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    float: left;
    width: 100%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.widget-about form {
    float: left;
    width: 100%;
    position: relative;
}

.widget-about form .mc4wp-form-fields {
    position: relative;
}

.widget-about form input {
    width: 100%;
    height: 40px;
    color: #696969;
    font-size: 14px;
    padding: 0 20px;
    border: 1px solid #000;
}

.widget-about form input[type=submit] {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    background-color: #8f66f0;
    height: 100%;
    width: auto;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 20px;
    border: 0;
    text-transform: uppercase;
    line-height: 40px;
}

.widget-title {
    float: left;
    width: 100%;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.widget-tweets {
    padding-right: 45px;
    padding-left: 15px;
}

.widget-tweets ul {
    float: left;
    width: 100%;
}

.widget-tweets ul li {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.widget-tweets ul li:last-child {
    margin-bottom: 0;
}

.widget-tweets ul li span {
    color: #444444;
    font-size: 14px;
    line-height: 24px;
}

.widget-tweets ul li a {
    display: inline-block;
    color: #8f66f0;
}

.widget-tweets ul li>b {
    float: right;
    width: 100%;
    text-align: right;
    color: #757575;
    font-size: 14px;
    margin-top: 10px;
}

.widget-guide {
    text-align: right;
}

.widget-guide ul {
    float: left;
    width: 100%;
}

.mg-btm-50 {
    margin-bottom: 50px;
}

.widget-guide ul li {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.widget-guide ul li a, .widget-guide ul li span {
    float: left;
    width: 100%;
    color: #444444;
    font-size: 14px;
}

.bd-none {
    border-right: none;
}

/* ============= MAIN SLIDER BANNER HOMEPAGE 6 =============== */

.main-slider.hp6 {
    float: left;
    width: 100%;
}

.main-slider.hp6 .tp-bgimg.defaultimg:before {
    display: none;
}

.hp1 {
    color: #ffffff;
    font-size: 80px;
    font-family: 'Pacifico';
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.20);
}

.hpa {
    color: #606060;
    font-size: 15px;
    font-weight: 500;
    background-color: #ffffff;
    padding: 0 25px;
    line-height: 45px;
    text-transform: capitalize;
    border-radius: 5px;
}

.hpa:hover {
    background-color: #8f66f0;
    color: #fff;
}

/*Imeddoc 4*/

.client-review-carousel .owl-nav {
    display: block;
    width: 100%;
}

.client-review-carousel .owl-prev i:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    font-size: 50px;
    font-weight: 900;
    color: #000;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.client-review-carousel .owl-next i:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    font-size: 50px;
    font-weight: 900;
    color: #000;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.client-review-carousel .owl-dots {
    float: left;
    width: 100%;
    padding: 60px 0 0;
}

.client-review-carousel .owl-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 100px;
    border: 1px solid #797674 !important;
    margin-right: 6px;
    visibility: visible !important;
}

.client-review-carousel .owl-dot.active {
    background-color: #8f66f0;
    border-color: transparent;
    visibility: visible !important;
}

/* ============= bottom-strip ============= */

.bottom-strip {
    float: left;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: #f7f7f7;
}

.bottom-strip p {
    color: #000000;
    font-size: 14px;
}

.fet_img {
    padding-top: 70px;
    padding-right: 30px;
}

.fet_img img {
    width: 100%;
}

/* ================ search-formm ================== */

.search-formm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8f66f0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.search-formm.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999999;
}

.search-formm form {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search-formm form input {
    width: 100%;
    height: 50px;
    background: inherit;
    padding: 0 20px;
    font-size: 18px;
    border: 0;
    border-bottom: 1px solid #fff;
    outline: none;
}

.search-formm form button {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    color: #fff;
    background-color: inherit;
    border: 0;
    cursor: pointer;
}

.form-groupp {
    float: left;
    width: 100%;
    position: relative;
}

.close-search {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 70px;
    right: 50px;
}

.search-formm a:hover, header.hp6 .search-btn a:hover {
    color: #fff;
}

.search-formm form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.search-formm form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.search-formm form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.search-formm form input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

.responsive_nav ul li {
    position: relative;
    float: left;
    width: 100%;
}

.responsive_nav ul li:before {
    content: '\f107';
    font-family: fontawesome;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 15px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
}

.responsive_nav ul li.has-items:before {
    opacity: 1;
    visibility: hidden;
}

.responsive_nav ul ul {
    display: none;
    float: left;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.responsive_nav ul ul li a {
    padding-left: 40px;
}

.ser_inner-2 cite img {
    width: 20px;
    position: absolute;
    right: 20px;
    z-index: 9;
}

.ser_inner-2 .item {
    overflow: visible;
}

.ser_inner-2 .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.ser_inner-2 .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    display: none;
}

/* ================ medical spa ================== */

@font-face {
    font-family: Britany;
    src: url("../fonts/Britany.otf") format("opentype");
}

.about_section {
    margin-bottom: 118px;
}

.about_inner {
    background-color: #f2f7fb;
    padding: 100px 0;
}

.img_border {
    border: 5px solid #e16297;
    width: 400px;
    height: 350px;
    position: absolute;
    border-radius: 5px;
}

.about_inner .about_details {
    padding: 0 30px;
}

.about_inner .inner_wrapper img {
    padding-left: 35px;
    padding-top: 35px;
    z-index: 99;
    position: relative;
    border-radius: 5px;
    width: 100%;
}

.about_inner p.light {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

.about_inner p.dark {
    color: #222;
    font-size: 14px;
    margin-bottom: 25px;
}
.about_inner div.dark {
    color: #222;
    font-size: 14px;
    margin-bottom: 25px;
}

.about_inner a {
    border-radius: 5px;
}

.treatment_wrap {
    background-color: #ffffff;
    position: relative;
    margin-bottom: 118px;
}

.treatment_wrap .img_wrap {
    margin-bottom: 60px;
}

.treatment_wrap .img_wrap img {
    border-radius: 100%;
    border: 10px solid #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.61);
    transition: .5s;
    width: auto;
}

.treatment_wrap .img_wrap:hover img {
    box-shadow: 0px 0px 25px 0px rgba(166, 166, 166, 0.11);
}

.treatment_wrap .img_wrap:hover .button.pink {
    background: #2fc0df;
}

.natural_product {
    background-color: transparent;
    background-image: url(../images/product-bg.jpg);
    height: 600px;
    padding-top: 120px;
    position: relative;
    margin-bottom: 0;
}

.product-heading h1, .product-heading p {
    color: #ffffff
}

.product-heading p.light {
    margin-top: 25px;
}

.before-after-gallery {
    text-align: center;
    background-color: #ffffff;
    background: #ffffff;
}

.treatment_wrap .img_wrap {
    margin-top: 20px;
}

.treatment_wrap .img_wrap .button.pink {
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
}

.flex-caption {
    width: 96%;
    padding: 2%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
    font-size: 14px;
    line-height: 18px;
}

li.css a {
    border-radius: 0;
}

.flexslider ul li {
    display: inline-block;
}

.spa_options ul li {
    padding: 0;
    margin-top: 30px;
}

.spa_filter {
    padding: 0;
    text-align: center;
    margin: 98px 0;
    position: relative;
}

.spa_filter .heading_spa span.cursive {
    font-family: 'Britany';
    font-size: 72px;
    color: #2fc0df;
    font-size: 42px;
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
    opacity: .4;
}

.heading_spa.heading:after {
    margin: 0 auto;
}

.spa_testi {
    background: transparent;
    position: relative;
}

.spa_testi .testi_inner {
    background: transparent !important;
}

.spa_testi .testi_inner .testi_d p {
    color: #444;
    font-size: 14px;
}

.spa_testi .testi_d h4 {
    color: #444;
}

.spa_testi .testi_d h4 span {
    color: #444;
}

.spa_testi .testi_d>a.spa_client {
    position: absolute;
    bottom: -55px;
    top: auto;
    left: 50%;
    margin-left: -43px;
    height: 86px;
    width: 86px;
    overflow: hidden;
    display: block;
    border-radius: 50%;
    border: 2px solid #fff;
}

.spa_testi .testi_d {
    border: 1px solid #000;
    padding: 60px 30px;
    margin-bottom: 60px;
    margin-top: 0;
    position: relative;
}

.spa_testi .testi_d h5 {
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
}

.spa_testi .testi_d h5 span {
    font-family: "Poppins";
    font-size: 12px;
    color: #444;
    margin-left: 10px;
}

.spa_testi .ser_inner-2 cite img {
    width: 30px;
    right: 30px;
    bottom: 40px;
}

.consult_wrap {
    width: 100%;
    height: auto;
    padding: 50px;
    background-color: #f2f7fb;
    border: 1px solid #ddeaf5;
    border-radius: 5px;
}

.consult_wrap h1, .consult_wrap h4 {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
}

.consult_wrap h1 {
    text-transform: uppercase;
}

.consult_wrap .table-cell {
    display: table-cell;
    vertical-align: middle;
}

.consult_wrap a {
    border-radius: 5px;
    margin-top: 8px;
    float: right;
}

.consult_wrap i {
    font-size: 60px;
    color: #e16297;
}

.partners-logos {
    margin-bottom: 118px;
}

.partner_inner {
    background-color: #f2f7fb;
    padding: 85px 0;
}

/* ================ heading spa ================== */

.heading_spa span.cursive {
    font-family: 'Britany';
    font-size: 72px;
    color: #2fc0df;
    position: absolute;
    left: 0;
    right: 0;
    /*top: 30px;*/
    opacity: .4;
}

/*
.heading_spa span.cursive.specialized {
    top: 0px;
}

.heading_spa span.cursive.treatments {
    top: 0px;
}*/

.heading_spa span.cursive.gallery {
    top: -30px;
    font-size: 72px;
}

.heading_spa span.cursive.patient {
    top: 50px;
}

.heading_spa h1 {
    font-weight: 600;
    color: #222;
    z-index: 99999;
    position: relative;
    font-size: 36px;
}

.heading.heading_spa p {
    color: #222;
}

.heading_spa.white p {
    color: #ffffff;
}

.heading_spa.white h1 {
    font-weight: 600;
    color: #ffffff;
    z-index: 99;
    position: relative;
}

.heading_spa.white span.cursive {
    color: #ffffff;
    top: 70px;
}

.product_slider .owl-prev {
    position: absolute;
    left: 0;
    font-size: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product_slider .owl-next {
    position: absolute;
    left: 30px;
    font-size: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product_slider .owl-dots {
    float: left;
    width: 100%;
    padding-top: 60px;
}

.product_slider .owl-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 100px;
    border: 1px solid #797674;
    margin-right: 6px;
}

.product_slider .owl-dot.active {
    background-color: #e16297;
    border-color: transparent;
}

.spa_map {
    margin-bottom: 100px;
}

.testi_d cite img {
    width: 30px !important;
    margin-right: 0;
    margin-left: auto;
}

.ser_inner-2 .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    display: block;
    margin-top: 50px;
}

.ser_inner-2 .owl-dot, .owl-carousel .owl-nav .owl-next:before {
    content: "\f061";
    font-family: 'FontAwesome';
    color: #ffffff;
    font-size: 18px;
    margin-top: 40px;
}

.ser_inner-2 .owl-dot, .owl-carousel .owl-nav .owl-prev:before {
    content: "\f060";
    font-family: 'FontAwesome';
    color: #ffffff;
    font-size: 18px;
    margin-top: 40px;
}

/* ==================================== Homepage 8 ======================= */

.zero_padding {
    padding: 0;
}

.header_8 {
    height: 114px;
    padding: 10px;
    position: relative;
}

.header_8 nav>ul>li {
    margin: 0;
    padding: 35px 15px;
}

.header_8:before {
    content: '';
    position: absolute;
    background: #33a9c6;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
}

.slider_8 {
    position: relative;
}

.slider_8:before {
    content: '';
    position: absolute;
    background-image: url(../images/slider/slider_left.png);
    width: 500px;
    height: 520px;
    top: 0;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
}

.slider_8:after {
    content: '';
    position: absolute;
    background-image: url(../images/slider/slider_right.png);
    width: 500px;
    height: 500px;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-repeat: no-repeat;
}

.header_8 .logo img {
    max-width: 100%;
    width: auto;
}

.header_8 nav {
    float: none;
    padding-right: 10px;
}

.indxeight {
    margin: 0 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(84, 84, 84, 0.81);
}

.indxeight .tp-bgimg.defaultimg:before {
    content: none;
}

.indxeight .lyr2, .indxeight .lyr3 {
    color: #060202;
    font-family: "Poppins", sans-serif;
}

.indxeight .lyr4 {
    color: #14677b;
    border-color: #14677b;
}

.indxeight .lyr4:hover {
    background: #14677b;
    color: #ffffff;
}

.technologist .heading {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 60px;
}

.technologist .heading:after {
    margin: 0 auto;
}

.services_box img {
    margin-bottom: 20px;
}

.services_box h6 {
    font: 600 18px 'Poppins', sans-serif;
    color: #444;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.services_box p {
    font: 500 14px 'Poppins', sans-serif;
    color: #888;
}

.laborities_section {
    margin-bottom: 100px;
    position: relative;
}

.laborities_section:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-bottom: 100px solid #e16297;
    right: 0;
    bottom: -20px;
}

.laboratory_left {
    background: url(../images/laboratory.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.laboratory_services {
    background: #14677b;
    position: relative;
    padding: 90px 100px;
    height: 100%;
}

.laboratory_services:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 150px solid #1b6c7f;
    border-bottom: 150px solid transparent;
    left: 0;
    top: 0;
}

.lab_heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 999;
}

.laboratory_services:after {
    /*     position: absolute;
    content: 'Services'; */
    position: absolute;
    /*     right: 0; */
    top: 30px;
    margin: 0 auto;
    font: 900 100px 'Poppins', sans-serif;
    color: #1b6c7f;
}

.laboratory_services .lab_heading h1 {
    font: 600 36px "Poppins", sans-serif;
    color: #ffffff;
    z-index: 999;
    position: relative;
}

.laboratory_services .lab_heading p {
    font: 400 14px "Poppins", sans-serif;
    color: #ffffff;
    z-index: 99;
}

.lab_service {
    margin-bottom: 30px;
    position: relative;
    z-index: 999;
}

.lab_service .lab_icon img {
    max-width: 100%;
}

.lab_service .lab_icon {
    display: inline-block;
    /*vertical-align: top;*/
    /*max-width:37px;*/
    position: absolute;
    top: 10px;
}

.lab_service .service_details {
    display: inline-block;
    vertical-align: top;
    padding-left: 70px;
    text-align: left;
}

.lab_service .service_details h5 {
    font: 500 20px 'Poppins', sans-serif;
    color: #ffffff;
}

.lab_service .service_details p {
    font: 400 14px 'Poppins', sans-serif;
    color: #ffffff;
    opacity: .3;
}

.stats_sec .heading {
    text-align: center;
    margin-bottom: 90px;
}

.stats_sec .heading:after {
    margin: 0 auto;
}

.stats_sec .heading h3 {
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 0;
}

.stats_sec .heading p {
    font: 600 36px 'Poppins', sans-serif;
}

.stats {
    text-align: center;
}

.stats h5 {
    font: 600 18px 'Poppins', sans-serif;
    color: #444;
}

.stats p {
    font: 300 30px 'Poppins', sans-serif;
    color: #444;
}

.facility_sec {
    position: relative;
    padding-bottom: 100px;
}

.facility_sec p.details {
    font: 400 14px 'Poppins', sans-serif;
    color: #888;
    margin-bottom: 30px;
}

.facility_sec ul {
    margin-bottom: 60px;
}

.facility_sec ul li {
    font: 400 14px 'Poppins', sans-serif;
    color: #222;
    margin-bottom: 15px;
    list-style: none;
}

.facility_sec ul li i {
    margin-right: 10px;
    color: #e16297;
}

.facility_left {
    padding-left: 50px;
    position: relative;
    margin-bottom: 150px;
}

.facility_left img {
    max-width: 100%;
}

.lab_number {
    background: #e16297;
    padding: 30px 60px;
    position: absolute;
    left: 0;
    bottom: 50px;
}

.facility_left:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 50px solid #2fc0df;
    border-bottom: 50px solid transparent;
    left: 0;
    bottom: 22.5%;
    z-index: 99;
}

.facility_left:after {
    position: absolute;
    content: '\f095';
    font-family: 'FontAwesome';
    left: 10px;
    bottom: 140px;
    z-index: 99;
    color: #ffffff;
}

.facility_sec .lab_number p {
    font: 400 24px 'Poppins', sans-serif;
    color: #ffffff;
}

.facility_sec .lab_number p span {
    vertical-align: middle;
}

.facility_sec .lab_number p span a {
    font: 700 36px "Poppins", sans-serif;
    color: #ffffff;
    margin-left: 30px;
}

.facility_sec h6 {
    font: 600 24px 'Poppins', sans-serif;
    color: #444;
    margin-bottom: 30px;
}

.facility_sec p {
    font: 500 14px 'Poppins', sans-serif;
    color: #888;
}

.facility_sec:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/telescope.png);
    left: -155px;
    bottom: -20%;
    background-position: left;
    background-repeat: no-repeat;
    z-index: -1;
}

.progress_bar_wrap label {
    font: 600 14px "Poppins", sans-serif;
    color: #444;
}

.progress {
    height: 5px;
    background: #eeeeee;
    overflow: visible
}

.progress .bar {
    background: #14677b;
    position: relative;
    height: 5px;
    transition-duration: 5s;
}

.facilty_right {
    position: absolute;
    right: 0;
    top: 10%;
}

.facilty_right img {
    width: 110px;
    display: block;
    margin-bottom: 20px;
}

.test_booking {
    padding: 80px 40px;
    background-color: #2fc0df;
    text-align: center;
    margin-top: 50px;
}

.lab_test {
    padding: 30px 0;
}

.test_bg {
    background: url('../images/lab-test.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 500px;
    padding: 50px 0;
}

.lab_test .button.pink {
    display: inline-block;
}

.test_booking h2 {
    font: 500 36px 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 20px;
}

.test_booking p {
    font: 500 18px 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 40px;
}

.articles.news_wrap {
    background-color: #ffffff;
    padding: 90px 0 50px 0;
}

.articles.news_wrap .detail {
    background-color: #fcfcfc;
}

.articles.news_wrap .news figure {
    height: 300px;
}
.blog-7.articles.news_wrap .news figure {
    height: auto;
}

.articles.news_wrap .detail .meta ul li, .articles.news_wrap .detail .meta ul li a, .articles.news_wrap .detail .meta ul li span {
    color: #14677b;
    font: 600 12px 'Poppins', sans-serif;
}

.articles.news_wrap .detail .meta ul li {
    margin-bottom: 20px;
}

.articles.news_wrap .detail h5 {
    font: 600 18px 'Poppins', sans-serif;
    color: #444;
}

.blog-7.articles.news_wrap .detail h5 a {
    font: 600 18px 'Poppins', sans-serif;
    text-decoration:none;
    color: #444;
}

.articles.news_wrap .detail p {
    font: 500 14px 'Poppins', sans-serif;
    color: #888;
    margin-bottom: 30px;
}

/*.articles.news_wrap .detail {*/
/*    padding: 50px 40px;*/
/*}*/

.articles.news_wrap .detail a {
    color: #2fc0df;
    font: 400 14px 'Poppins', sans-serif;
    text-decoration: underline;
    text-transform: capitalize;
    transition: .4s;
}

.articles.news_wrap .detail a:hover {
    color: #e16297;
}

.articles.news_wrap .news:hover .detail {
    background-color: #f6fbff;
}

.lab_testimonials {
    padding: 0 0 98px;
    position: relative;
}

.lab_testimonials:after {
    content: '';
    position: absolute;
    background-image: url(../images/slider/slider_right.png);
    /**/
    width: 500px;
    height: 500px;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-repeat: no-repeat;
}

.labority_carousel.owl-carousel .owl-stage-outer {
    padding: 20px 0;
}

.labority_carousel .owl-nav {
    display: none;
}

.lab_testi {
    text-align: center;
    padding: 60px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.61);
}

.lab_testi cite img {
    width: 30px !important;
    margin: 0 auto;
    margin-bottom: 20px;
}

.lab_testi p {
    font: 500 16px 'Poppins', sans-serif;
    color: #444;
    margin-bottom: 30px;
}

.lab_testi h6 {
    font: 600 16px 'Poppins', sans-serif;
    color: #444;
}

/*//////// Header Start //////////*/

.myheader {
    padding: 30px 0;
}

#header .location i {
    border: 1px solid #e5e5e5;
    padding: 10px 15px;
    font-size: 20px;
    color: #222222;
}

#header .location .col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    margin-left: -15px;
}

#header .location h6 {
    color: #444444;
    font-weight: 600;
    font-size: 14px;
}

#header .location p {
    color: #666666;
    font-size: 14px;
    font-weight: 500;
}

#header .email i {
    border: 1px solid #e5e5e5;
    padding: 10px 15px;
    font-size: 20px;
    color: #222222;
}

#header .email h6 {
    color: #444444;
    font-size: 14px;
    font-weight: 600;
}

#header .email p {
    color: #444444;
    font-size: 14px;
    font-weight: 500;
}

#header .email .col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    margin-left: -10px;
}

#header .hbutn i {
    font-size: 16px;
    color: #ffffff;
}

#header .hbutn {
    background-color: #0a3d85;
    color: #ffff;
    border-radius: 0;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 14px;
}

#header .hbutn:hover {
    background-color: #d52924;
}

/*//////// Header End //////////*/

/*////////////// Navigation Start ///////////////*/

.slider-area {
    position: relative;
}

.navigation-bar {
    position: absolute;
    z-index: 90;
    left: 0;
    right: 0;
    margin-left: 65px;
}

.navbar-nav .nav-link {
    padding-right: 25px !important;
}

.navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar [class^="flaticon-"]:before, .navbar [class*=" flaticon-"]:before, .navbar [class^="flaticon-"]:after, .navbar [class*=" flaticon-"]:after {
    font-family: Flaticons;
    font-size: 34px;
    font-style: normal;
    margin-left: 0;
    color: #d52924;
}

.heartbeat a.nav-link:before {
    position: absolute;
    top: 31px;
    bottom: 0;
    right: 0;
    left: 25px;
    opacity: 0;
    font-family: Flaticons;
    font-size: 28px;
    font-style: normal;
    margin-left: 0;
    color: #d52924;
    content: "\f100";
    transition-duration: .5s;
}

.headerv7 nav ul li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.headerv7 nav ul li a.hvr-underline-from-left1:before {
    position: absolute;
    top: 29px;
    bottom: 0;
    right: 0;
    left: 25px;
    opacity: 0;
    font-family: Flaticons;
    font-size: 28px;
    font-style: normal;
    margin-left: 0;
    color: #d52924;
    content: "\f100";
    transition-duration: .5s;
}

a.nav-link:hover:before, .headerv7 nav ul li:hover a.hvr-underline-from-left1:before {
    opacity: 1;
}

li.current-menu-item a:before {
    opacity: 1;
}

a.active:before {
    opacity: 1;
}

a.nav-link:hover:before {
    opacity: 1;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: .25rem;
}

.appt-btn a {
    display: inline-block;
}

.award_news_button {
    display: inline-block;
}

.h6_logo a {
    display: inline-block;
    position: absolute;
    top: 14px;
}

.headerv7 nav {
    /*width: 90%;*/
    /*margin-right: auto;*/
    padding-right:50px;
    float:right;
}

.headerv7 nav ul {
    border-bottom: 2px solid #d52924;
    padding-top: 5px;
    padding-left: 30px;
    width: 100%;
}

header.headerv7 nav>ul>li {
    padding: 20px 0;
}

.headerv7 nav ul li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.headerv7 nav ul li a:hover {
    color: #d52924;
}

.headerv7 .navhead {
    margin-right: -14px;
    color: white;
    padding: 20px;
    background-color: #d52924;
    position: relative;
}

.navhead .call-support {
    font-size: 18px;
    font-weight: 400;
}

.navhead .cont-nmbr {
    font-size: 22px;
    font-weight: 600;
}

.navhead:before {
    content: "";
    border-top: 73px solid transparent;
    border-right: 35px solid #d52924;
    position: absolute;
    left: -35px;
    bottom: 0px;
}

.navbar .fa {
    color: white;
    font-size: 20px;
}

.dropdown .btn {
    background-color: #1b2534;
    color: white;
}

/*//////// Features Start //////////*/

#features {
    padding: 0 0 100px 0;
    margin: -30px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

#features [class^="flat-icon-"]:before, #features [class*=" flat-icon-"]:before, #features [class^="flat-icon-"]:after, #features [class*=" flat-icon-"]:after {
    font-family: Flat-icon;
    font-size: 50px;
    font-style: normal;
    padding-bottom: 50px 0;
    margin-left: 0;
}

#features i {
    padding-bottom: 30px;
    font-size: 50px;
}

#features .line {
    width: 60px;
    height: 2px;
    background: #c3d5ef;
    margin: 20px 0 0 0;
}

#features h6 {
    font-weight: 600;
    font-size: 18px;
    color: #222222;
    padding-top: 25px;
}

#features p {
    color: #444444;
    font-size: 14px;
    font-weight: 400;
}

#features .feat1 {
    padding: 60px 20px 10px 20px;
    background-color: #f1f4f8;
    position: relative;
}

.feat1 h5 {
    font-size: 26px;
    position: absolute;
    bottom: 0;
    right: 10px;
    color: #cccccc;
}

.feat1:hover {
    background-color: #ffffff;
    box-shadow: 0 82px 150px 24px #f2f2f2;
}

.feat1:hover i {
    color: #d52924;
}

.feat1:hover h6 {
    color: #0a3d85;
}

.feat1:hover h5 {
    color: #0a3d85;
}

.feat1:hover:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #d52924;
    position: absolute;
    bottom: 0;
    right: 0;
}

.feat2 {
    padding: 10%;
    background-color: #f1f4f8;
    position: relative;
}

.feat2 h5 {
    font-size: 26px;
    position: absolute;
    bottom: 0;
    right: 10px;
    color: #cccccc;
}

.feat2:hover {
    background-color: #ffffff;
    box-shadow: 0 82px 150px 24px #f2f2f2;
}

.feat2:hover i {
    color: #d52924;
}

.feat2:hover h6 {
    color: #0a3d85;
}

.feat2:hover h5 {
    color: #0a3d85;
}

.feat2:hover:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #d52924;
    position: absolute;
    bottom: 0;
    right: 0;
}

.feat3 {
    padding: 10%;
    background-color: #f1f4f8;
    position: relative;
}

.feat3 h5 {
    font-size: 26px;
    position: absolute;
    bottom: 0;
    right: 10px;
    color: #cccccc;
}

.feat3:hover {
    background-color: #ffffff;
    box-shadow: 0 82px 150px 24px #f2f2f2;
}

.feat3:hover i {
    color: #d52924;
}

.feat3:hover h6 {
    color: #0a3d85;
}

.feat3:hover h5 {
    color: #0a3d85;
}

.feat3:hover:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #d52924;
    position: absolute;
    bottom: 0;
    right: 0;
}

.feat4 {
    padding: 10%;
    background-color: #f1f4f8;
    position: relative;
}

.feat4 h5 {
    font-size: 26px;
    position: absolute;
    bottom: 0;
    right: 10px;
    color: #cccccc;
}

.feat4:hover {
    background-color: #ffffff;
    box-shadow: 0 82px 150px 24px #f2f2f2;
}

.feat4:hover i {
    color: #d52924;
}

.feat4:hover h6 {
    color: #0a3d85;
}

.feat4:hover h5 {
    color: #0a3d85;
}

.feat4:hover:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #d52924;
    position: absolute;
    bottom: 0;
    right: 0;
}

/*//////// Features End //////////*/

/*//////// About section start //////////*/

#about {
    background-image: url('../images/about-bg-icon.png');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
}

#about h3 {
    font-size: 36px;
    font-weight: 600;
    font-style: normal;
}

#about span {
    color: #0a3d85;
}

#about hr {
    width: 50px;
    background-color: #d52924;
}

#about .apara {
    padding-top: 15px;
}

#about .apara h6 {
    font-size: 16px;
    color: #444444;
    font-weight: 600;
}

.about-para {
    padding-top: 30px;
}

#about .apara p {
    font-size: 14px;
    color: #444444;
    font-weight: 400;
}

#about .apara ul {
    font-size: 14px;
    color: #444444;
    font-weight: 400;
    padding-top: 30px;
}

#about .apara ul li {
    padding-bottom: 15px;
}

#about .apara ul li i {
    color: #d52924;
    font-size: 11px;
    margin-right: 10px;
}

#about .aboutimg:after {
    content: "";
    border-bottom: 80px solid white;
    border-right: 80px solid transparent;
    position: absolute;
    bottom: 0;
}

/*//////// About section End //////////*/

/*////////////// Stats section start///////////////*/

#stats {
    /*    padding: 140px 0;*/
    text-align: center;
}

#stats h2 {
    color: #0a3d85;
    font-weight: 600;
    font-size: 44px;
}

#stats h6 {
    color: #222222;
    font-size: 18px;
    font-weight: 300;
}

#stats p {
    color: #565656;
    font-size: 14px;
    font-weight: 400;
}

/*////////////// Stats section End///////////////*/

/*///////////// Services section Start///////////////*/

#services {
    color: #ffffff;
}

.sdata .headingicon [class^="flat-icon-"]:before, [class*=" flat-icon-"]:before, [class^="flat-icon-"]:after, [class*=" flat-icon-"]:after {
    color: #fff;
}

.sdata .service-head h4 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.sdata .service-head p {
    color: #f4f5f8;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}

#services hr {
    width: 50px;
    background-color: #d52924;
    margin: 0;
}

.serimg {
    position: relative;
    height: 100% !important;
    width: auto !important;
}

.service-sub-head .ambulance {
    margin-bottom: 30px;
}

.service-sub-head h6 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.service-sub-head p {
    font-size: 14px;
    font-weight: 400;
    color: #a5b0c8;
}

#services [class^="flat-icon-"]:before, #services [class*=" flat-icon-"]:before, #services [class^="flat-icon-"]:after, #services [class*=" flat-icon-"]:after, #services [class^="fa-"], #services [class*=" fa-"], #services [class^="fa-"]:before, #services [class*=" fa-"]:before, #services [class^="fab-"], #services [class*=" fab-"], #services [class^="fab-"]:before, #services [class*=" fab-"]:before, #services [class^="flaticon-"]:before, #services [class*=" flaticon-"]:before, #services [class^="flaticon-"]:after, #services [class*=" flaticon-"]:after {
    font-size: 50px;
    font-style: normal;
    margin-left: 0;
}

#services [class^="flat-icon-"]:before, #services [class*=" flat-icon-"]:before, #services [class^="flat-icon-"]:after, #services [class*=" flat-icon-"]:after {
    font-family: Flat-icon;
}

.simg:after {
    content: "";
    border-left: 64px solid transparent;
    border-bottom: 87px solid white;
    position: absolute;
    bottom: 0;
    right: 1px;
}

.svpara {
    position: relative;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    visibility: hidden;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    bottom: -5px;
    right: -5px;
}

.product_slider.owl-theme .owl-nav{
    right: 20px
}

.owl-carousel .owl-item img {
    display: block;
    width: auto;
    max-width: 100%;
}

.testi_two .owl-carousel .owl-item img {
    height: auto;
    width: 100%;
}

/*///////////// Services section End///////////////*/

/*///////////// Ground Transport section Start///////////////*/

#gtransport {
    padding: 60px 0 40px 0;
}

.ground-head {
    text-align: center;
}

#gtransport h3 {
    color: #222222;
    font-size: 36px;
    font-weight: 600;
}

.ground-head h4 {
    color: #555555;
    font-size: 30px;
    font-weight: 400;
}

.ground-head p {
    color: #565656;
    font-size: 16px;
    font-weight: 400;
}

#gtransport hr {
    width: 50px;
    background-color: #d52924;
}

.gimg {
    position: relative;
}

.gihead h4 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    position: absolute;
    bottom: 120px;
    left: 40px;
    right: 200px;
}

.g4parts {
    padding-top: 10px;
}

.gimgpara i {
    padding: 15px;
    border: 1px solid #e5e5e5;
    color: #0a3d85;
    font-size: 24px;
}

.gimgpara i:hover {
    background-color: #d52924;
    color: #ffffff;
}

.technology, .realtime, .multimode, .smartersol {
    padding-bottom: 50px;
}

.technology h6 {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}

.technology p {
    font-size: 14px;
    font-weight: 400;
    color: #747474;
}

.realtime h6 {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}

.realtime p {
    font-size: 14px;
    font-weight: 400;
    color: #747474;
}

.multimode h6 {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}

.multimode p {
    font-size: 14px;
    font-weight: 400;
    color: #747474;
}

.smartersol h6 {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}

.smartersol p {
    font-size: 14px;
    font-weight: 400;
    color: #747474;
}

.grimg:after {
    content: "";
    border-left: 60px solid transparent;
    border-bottom: 60px solid white;
    position: absolute;
    bottom: 0;
    right: 20px;
}

/*///////////// Ground Transport section End///////////////*/

/*////////////// Why Chosoe Us section Start///////////////*/

#whycs {
    background-color: #f1f4f8;
    padding: 90px 0;
}

#whycs h3 {
    color: #222222;
    font-size: 36px;
    font-weight: 600;
}

#whycs p {
    color: #444444;
    font-size: 14px;
    font-weight: 400;
}

#whycs hr {
    width: 50px;
    background-color: #d52924;
    margin: 30px auto;
}

.whycu6 {
    padding-top: 60px;
}

.whycu6 h5 {
    font-size: 20px;
    font-weight: 600;
}

.wcu1 {
    background-color: #ffffff;
    padding: 37px 50px;
    vertical-align: middle;
    position: relative;
    margin-bottom: 20px;
}

.wcu1:hover {
    background-image: url('../images/wcubg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.wcu1:hover h5 {
    color: #fff;
}

.wcu1:before {
    content: "";
    border-right: 70px solid #f1f4f8;
    border-bottom: 170px solid transparent;
    position: absolute;
    bottom: 0;
    top: 0px;
    right: 0;
}

.wcu1 h6 {
    font-size: 26px;
    font-weight: 300;
    position: absolute;
    right: 35px;
    bottom: -7px;
    color: #cccccc;
}

.wcu1:hover h6 {
    color: #ffffff;
}

.wcu2 {
    background-color: #ffffff;
    padding: 39px 50px;
    vertical-align: middle;
    position: relative;
}

.wcu2:hover {
    background-image: url('../images/wcubg.jpg');
    color: #fff;
}

.wcu2:before {
    content: "";
    border-right: 70px solid #f1f4f8;
    border-bottom: 170px solid transparent;
    position: absolute;
    bottom: 0;
    top: 0px;
    right: 0;
}

.wcu2 h6 {
    font-size: 26px;
    font-weight: 300;
    position: absolute;
    right: 35px;
    bottom: -7px;
    color: #cccccc;
}

.wcu2:hover h6 {
    color: #ffffff;
}

.wcu3 {
    background-color: #ffffff;
    padding: 39px 50px;
    vertical-align: middle;
    position: relative;
}

.wcu3:hover {
    background-image: url('../images/wcubg.jpg');
    color: #fff;
}

.wcu3:before {
    content: "";
    border-right: 70px solid #f1f4f8;
    border-bottom: 170px solid transparent;
    position: absolute;
    bottom: 0;
    top: 0px;
    right: 0;
}

.wcu3 h6 {
    font-size: 26px;
    font-weight: 300;
    position: absolute;
    right: 35px;
    bottom: -7px;
    color: #cccccc;
}

.wcu3:hover h6 {
    color: #ffffff;
}

.wcu4 {
    background-color: #ffffff;
    padding: 10%;
    vertical-align: middle;
}

.wcu4 {
    background-color: #ffffff;
    padding: 39px 50px;
    vertical-align: middle;
    position: relative;
}

.wcu4:hover {
    background-image: url('../images/wcubg.jpg');
    color: #fff;
}

.wcu4:before {
    content: "";
    border-right: 70px solid #f1f4f8;
    border-bottom: 170px solid transparent;
    position: absolute;
    bottom: 0;
    top: 0px;
    right: 0;
}

.wcu4 h6 {
    font-size: 26px;
    font-weight: 300;
    position: absolute;
    right: 35px;
    bottom: -7px;
    color: #cccccc;
}

.wcu4:hover h6 {
    color: #ffffff;
}

.wcu5 {
    background-color: #ffffff;
    padding: 39px 50px;
    vertical-align: middle;
    position: relative;
}

.wcu5:hover {
    background-image: url('../images/wcubg.jpg');
    color: #fff;
}

.wcu5:before {
    content: "";
    border-right: 70px solid #f1f4f8;
    border-bottom: 170px solid transparent;
    position: absolute;
    bottom: 0;
    top: 0px;
    right: 0;
}

.wcu5 h6 {
    font-size: 26px;
    font-weight: 300;
    position: absolute;
    right: 35px;
    bottom: -7px;
    color: #cccccc;
}

.wcu5:hover h6 {
    color: #ffffff;
}

.wcu5 {
    background-color: #ffffff;
    padding: 10%;
    vertical-align: middle;
}

.wcu6 {
    background-color: #ffffff;
    padding: 39px 50px;
    vertical-align: middle;
    position: relative;
}

.wcu6:hover {
    background-image: url('../images/wcubg.jpg');
    color: #fff;
}

.wcu6:before {
    content: "";
    border-right: 70px solid #f1f4f8;
    border-bottom: 170px solid transparent;
    position: absolute;
    bottom: 0;
    top: 0px;
    right: 0;
}

.wcu6 h6 {
    font-size: 26px;
    font-weight: 300;
    position: absolute;
    right: 35px;
    bottom: -7px;
    color: #cccccc;
}

.wcu6:hover h6 {
    color: #ffffff;
}

/*////////////// Why Chosoe Us section Start///////////////*/

/*////////////// Call to action section Start///////////////*/

#calltoaction {
    background-image: url('../images/ctabg.jpg');
    background-size: cover;
    padding: 90px 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #cccccc;
    position: relative;
}

#calltoaction:before {
    content: "";
    border-right: 50px solid transparent;
    border-bottom: 50px solid #ffffff;
    position: absolute;
    bottom: -1px;
    left: 0;
}

#calltoaction:after {
    content: "";
    border-left: 50px solid transparent;
    border-bottom: 50px solid #ffffff;
    position: absolute;
    bottom: -1px;
    right: 0;
}

#calltoaction h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
}

#calltoaction h6 {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
}

.ctathead {
    padding: 0 150px;
}

.ctat i {
    font-size: 20px;
}

.ctat .call-to-action {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.ctat .my-bold-font {
    font-size: 22px;
    font-weight: 600;
}

.ctaschedule i {
    font-size: 16px;
}

.ctaschedule a {
    background-color: #d52924;
    color: #ffffff;
    border-radius: 0;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
}

.ctaschedule a:hover {
    background-color: transparent;
    color: #fff;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

/*////////////// Call to action section End///////////////*/

/*////////////// Testimonial section Start///////////////*/

#testimonial {
    padding: 100px 0;
}

#testimonial h4 {
    font-size: 36px;
    font-weight: 600;
    color: #222222;
}

#testimonial p {
    font-size: 14px;
    font-weight: 400;
    color: #5b5b5b;
}

#testimonial hr {
    width: 50px;
    background-color: #d52924;
    margin: 30px auto;
}

.tsstilist h6 {
    font-size: 14px;
    color: #444444;
    font-weight: 600;
}

.tsstilist span {
    font-size: 12px;
    color: #444444;
    font-weight: 400;
}

.tsstilist {
    padding-top: 60px;
}

.testi1 {
    background-color: #f1f4f8;
    padding: 40px 40px 40px 30px;
    position: relative;
    margin-bottom: 40px;
}

.testi1 cite {
    text-align: right;
    display: block;
}

.testi1 cite img {
    width: 30px !important;
    text-align: right;
    margin: 0 30px 0 auto;
}

.testi1>a {
    position: absolute;
    bottom: -43px;
    left: 50%;
    margin-left: -43px;
    height: 86px;
    width: 86px;
    overflow: hidden;
    display: block;
    border-radius: 50%;
    border: 10px solid #fff;
}

/*.tesimg1{
    position: absolute;
    right: 0;
    left: 36%;
}*/

.testi2 {
    background-color: #f1f4f8;
    padding: 40px 40px 40px 30px;
    position: relative;
}

.tesimg2 {
    position: absolute;
    right: 0;
    left: 36%;
}

.testi3 {
    background-color: #f1f4f8;
    padding: 40px 40px 40px 30px;
    position: relative;
}

.tesimg3 {
    position: absolute;
    right: 0;
    left: 36%;
}

/*////////////// Testimonial section End///////////////*/

/*////////////// Message Form section Start///////////////*/

#msgform {
    text-align: left;
}

#msgform.form-7 img {
    height: 100%;
    width: 100%;
}

.myform h4 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
}

.myform p {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

#msgform hr {
    width: 50px;
    background-color: #d52924;
    margin: 0;
}

.msg_form img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.myform {
    /*background-color: #020e1f;*/
    /*padding: 90px 70px 90px 30px;*/
    /*margin-left: -30px;*/
}

.myform .fhead {
    padding-left: 10px;
}

.form-control {
    border-radius: 0;
}

.myform ::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #444444;
}

.mar5 {
    margin-bottom: 0;
}

.btn5 {
    padding: 15px 24px 10px !important;
}

#msgform .btn {
    display: inline-block;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #d52924;
    border: 1px solid transparent;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0;
}

/*////////////// Message Form section End///////////////*/

/*////////////// Award section Start///////////////*/

#award {
    padding: 90px 0;
}

.awards h4 {
    font-size: 36px;
    font-weight: 600;
    color: #222222;
}

.awards hr {
    width: 50px;
    background-color: #d52924;
    margin-left: 0;
}

.myaward-logo-1, .myaward-logo-2 {
    text-align: center;
}

.awards img {
    padding: 40px;
    border: 1px solid #d9d9d9;
}

.awhead1, .awhead2 {
    padding-top: 20px;
}

.awards h6 {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.awards p {
    font-size: 14px;
    font-weight: 400;
    color: #828282;
}

/*////////////// Award section End///////////////*/

/*////////////// News section Start///////////////*/

.news h4 {
    color: #222222;
    font-size: 36px;
    font-weight: 600;
    color: #222222;
}

.news hr {
    width: 50px;
    background-color: #d52924;
    margin-left: 0;
}

.news h6 {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.news p {
    font-size: 14px;
    font-weight: 400;
    color: #828282;
}

/*////////////// News section End///////////////*/

/*////////////// Footer section Start///////////////*/

#footer {
    background-color: #020e1f;
    padding: 0 0 40px 0;
}

#footer .fcol1 {
    background-color: #073577;
    text-align: center;
    padding: 80px 38px;
    justify-content: center;
}

.fcol1 p {
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
}

.fcol1 hr {
    background-color: #395d92;
    width: 80%;
}

.fcol1 h6 {
    font-size: 18px;
    font-weight: 500;
    color: #cccccc;
}

.phone i {
    font-size: 16px;
    color: #ffffff;
}

.phone .phone-text {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
}

.envelop i {
    font-size: 16px;
    color: #ffffff;
}

.envelop .envelop-text {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
}

.fcol1 .btn i {
    font-size: 16px;
}

.fcol1 .btn {
    background-color: #d52924;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
}

.fcol1 .btn:hover {
    background-color: #020e1f;
    color: #073577;
}

.fcol2 {
    padding: 100px 0 0 20px;
}

.fcol2 h6 {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
}

.fcol2 hr {
    background-color: #d52924;
    width: 30px;
    margin-left: 0;
}

.fcol2 ul li {
    list-style: none;
    color: #cccccc;
    font-size: 14px;
    margin: 0 -30px;
    display: block;
    padding-bottom: 5px;
}

.fcol2 ul li a {
    text-decoration: none;
    color: #cccccc;
    font-size: 14px;
    font-weight: 400;
    margin: 0 -5px;
    display: block;
    padding-bottom: 5px;
}

.fcol3 {
    padding: 100px 0 0 20px;
}

.fcol3 h6 {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.fcol3 hr {
    background-color: #d52924;
    width: 10%;
    margin-left: 0;
}

.fcol3 .col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    margin-right: -15px;
}

.fcol3 a {
    display: inline-block;
    font-size: 14px;
    color: #b8babc;
    padding: 13px 15px;
    border: 2px solid #505964;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.fcol3 a:hover {
    background-color: #073577;
    border: solid #073577;
}

.myfsec .fpara {
    font-size: 12px;
    font-weight: 400;
    color: #a9aaac;
    padding: 30px 0 0 70px;
}

.to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #d52924;
    font-size: 22px;
    background: #0a3d85;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    padding: 8px 18px;
}

.to-top:hover {
    background: #0a3d85e6;
    color: #ffffff;
    cursor: pointer;
}

/*////////////// Footer section End///////////////*/

/*////////////// Slider Start///////////////*/

#breadcrumbs {
    background-image: url('../img/Sslider.jpg');
    background-size: cover;
    /*margin-bottom: 98px;*/
}

#breadcrumbs .layer {
    padding: 90px 0 90px 0;
}

.shead {
    color: #ffffff;
    padding-left: 70px;
}

.shead h2 {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}

.shead .slider-home {
    font-size: 16px;
    font-weight: 400;
}

.shead .medical-transport {
    font-size: 16px;
    font-weight: 400;
}

.shead i {
    font-size: 14px;
    color: #d52924;
}

/*////////////// Slider End///////////////*/

/*////////////// Navigation Start ///////////////*/

.nav-cut .navigation-bar {
    background-color: #222222;
    margin-left: 90px;
    position: relative;
}

.headerv7 .nav-cut .navigation-bar {
    position: absolute;
    z-index: 90;
    left: 0;
    right: 0;
    margin-left: 65px;
    background: none;
}

.navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    padding-left: 30px;
    padding-top: 7px;
}

.navbar-toggler {
    padding: 0.25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    border: 1px solid #ffffff;
    border-radius: .25rem;
    vertical-align: middle;
    margin: 25px;
}

.nav-cut nav ul li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-right: 25px;
    color: #ffffff;
}

.nav-cut nav ul li a:hover {
    color: #d52924;
}

.navhead {
    color: #ffffff;
    padding: 20px;
    background-color: #d52924;
    margin-right: -15px;
    position: relative;
}

.nav-cut .navhead::before {
    content: "";
    border-top: 73px solid transparent;
    border-right: 40px solid #d52924;
    position: absolute;
    bottom: 0;
    left: -35px;
}

.navhead .navhead-text {
    margin-left: 40px;
}

.nav-cut .navigation-bar:before {
    content: '';
    position: absolute;
    border-left: 32px solid white;
    border-bottom: 73px solid transparent;
}

.headerv7 .nav-cut .navigation-bar:before {
    display: none;
}

.navbar i {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.call-support {
    font-size: 18px;
    font-weight: 400;
}

.call-support-nmbr {
    font-size: 22px;
    font-weight: 600;
}

.headerv7 .logo {
    padding: 0;
}

.headerv7 .location, .headerv7 .email {
    display: inline-block;
}

.headerv7 .location .icon, .headerv7 .email .icon {
    float: left;
}

.headerv7 .location .detail, .headerv7 .email .detail {
    padding-left: 55px;
    text-align: left;
}

.headerv7 .nav-cut .navbar {
    padding: 0;
}

/* ////////////// Service section Start///////////////*/

#service {
    padding: 100px 0;
}

#service .srvchead h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #222222;
}

#service .srvchead span {
    color: #0a3d85;
}

.srvchead hr {
    width: 50px;
    background-color: #d52924;
    text-align: center;
}

#service .card-header {
    margin-bottom: 0;
    padding: 0;
    border-bottom: none;
    background: transparent;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #f5f5f5;
    border-radius: 0;
    margin: 0;
    margin-bottom: 20px;
}

.card:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #0a3d85;
    position: absolute;
    bottom: 0;
    right: 0;
}

.card:hover .card-btn .btn {
    background-color: #d52924;
    color: #ffffff;
}

.card:hover:after {
    border-bottom-color: #d52924;
}

.card-header {
    padding: 0;
    margin-bottom: 20px;
    color: inherit;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.card-head h4 {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
}

.card-head p {
    font-size: 14px;
    font-weight: 400;
    color: #676767;
}

.card-btn .btn {
    display: inline-block;
    font-weight: 500;
    color: #222222;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #f1f4f8;
    border: 1px solid transparent;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.paper_work li {
    display: inline-block;
}

/* ////////////// Service section End///////////////*/

.headingicon [class^="flat-icon-"]:before, [class*=" flat-icon-"]:before, [class^="flat-icon-"]:after, [class*=" flat-icon-"]:after {
    font-family: Flat-icon;
    font-size: 80px;
    font-style: normal;
    color: red;
    margin-left: 0;
}

/*////////////// Service 2 section Start///////////////*/

#service2 {
    padding: 100px 0;
    background-image: url(../images/service2-bg.jpg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
}

.srvc2-head {
    text-align: center;
}

.srvc2-head h3 {
    font-weight: 600;
    font-size: 36px;
    color: #222222;
}

.srvc2-head p {
    color: #444444;
    font-size: 14px;
    font-weight: 400;
}

.srvc2-head hr {
    width: 50px;
    background-color: #d52924;
    text-align: center;
}

#service2 [class^="flat-icon-"]:before, [class*=" flat-icon-"]:before, [class^="flat-icon-"]:after, [class*=" flat-icon-"]:after {
    font-family: Flat-icon;
    font-size: 60px;
    font-style: normal;
    color: #222222;
    margin-left: 0;
}

.Private {
    padding: 60px 30px;
    text-align: center;
    border: 1px solid #eeeeee;
    position: relative;
    margin-bottom: 20px
}

.Private:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #eeeeee;
    position: absolute;
    bottom: 0;
    right: 0;
}

.Private:hover {
    background-color: #f1f4f8;
}

.Private:hover:after {
    border-bottom-color: #d52924;
}

.Private hr {
    width: 60px;
    background-color: #c3d5ef;
}

.Private h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0a3d85;
}

.Private p {
    font-size: 14px;
    color: #444444;
    font-weight: 400;
}

.Medical {
    padding: 60px 30px;
    text-align: center;
    border: 1px solid #eeeeee;
    position: relative;
}

.Medical:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #eeeeee;
    position: absolute;
    bottom: 0;
    right: 0;
}

.Medical:hover {
    background-color: #f1f4f8;
}

.Medical:hover:after {
    border-bottom-color: #d52924;
}

.Medical hr {
    width: 60px;
    background-color: #c3d5ef;
}

.Medical h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0a3d85;
}

.Medical p {
    font-size: 14px;
    color: #444444;
    font-weight: 400;
}

.Commercial {
    padding: 60px 30px;
    text-align: center;
    border: 1px solid #eeeeee;
    position: relative;
}

.Commercial:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #eeeeee;
    position: absolute;
    bottom: 0;
    right: 0;
}

.Commercial:hover {
    background-color: #f1f4f8;
}

.Commercial:hover:after {
    border-bottom-color: #d52924;
}

.Commercial hr {
    width: 60px;
    background-color: #c3d5ef;
}

.Commercial h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0a3d85;
}

.Commercial p {
    font-size: 14px;
    color: #444444;
    font-weight: 400;
}

.Dialysis {
    padding: 60px 30px;
    text-align: center;
    border: 1px solid #eeeeee;
    position: relative;
}

.Dialysis:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #eeeeee;
    position: absolute;
    bottom: 0;
    right: 0;
}

.Dialysis:hover {
    background-color: #f1f4f8;
}

.Dialysis:hover:after {
    border-bottom-color: #d52924;
}

.Dialysis hr {
    width: 60px;
    background-color: #c3d5ef;
}

.Dialysis h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0a3d85;
}

.Dialysis p {
    font-size: 14px;
    color: #444444;
    font-weight: 400;
}

.Support {
    padding: 60px 30px;
    text-align: center;
    border: 1px solid #eeeeee;
    position: relative;
}

.Support:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #eeeeee;
    position: absolute;
    bottom: 0;
    right: 0;
}

.Support:hover {
    background-color: #f1f4f8;
}

.Support:hover:after {
    border-bottom-color: #d52924;
}

.Support hr {
    width: 60px;
    background-color: #c3d5ef;
}

.Support h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0a3d85;
}

.Support p {
    font-size: 14px;
    color: #444444;
    font-weight: 400;
}

.Ground {
    padding: 60px 30px;
    text-align: center;
    border: 1px solid #eeeeee;
    position: relative;
}

.Ground:after {
    content: "";
    border-left: 10px solid transparent;
    border-bottom: 10px solid #eeeeee;
    position: absolute;
    bottom: 0;
    right: 0;
}

.Ground:hover {
    background-color: #f1f4f8;
}

.Ground:hover:after {
    border-bottom-color: #d52924;
}

.Ground hr {
    width: 60px;
    background-color: #c3d5ef;
}

.Ground h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0a3d85;
}

.Ground p {
    font-size: 14px;
    color: #444444;
    font-weight: 400;
}

/*////////////// Service 2 section End///////////////*/

/*////////////// Stats section Start///////////////*/

#stats {
    padding: 140px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

/*#stats:before {
    content: "";
    border-bottom: 251px solid #f1f4f8;
    border-right: 107px solid transparent;
    position: absolute;
    bottom: 18px;
    left: 183px;
    z-index: 99;
}

#stats:after {
    content: "";
    border-bottom: 252px solid #f1f4f8;
    border-left: 112px solid transparent;
    position: absolute;
    bottom: 20px;
    right: 195px;
    z-index: 99;
}
*/

#stats .mystatistic {
    background-color: #f1f4f8;
    position: relative;
    color: #fff;
}

/*.my-stats:before{
    content: "";
    position: absolute;
    bottom: -28px;
    left: 235px;
    width: 17px;
    height: 305px;
    background: #fff;
    transform: rotate(-23deg);
}

.my-stats:after{
    content: "";
    position: absolute;
    bottom: -28px;
    right: 235px;
    width: 17px;
    height: 365px;
    background: #fff;
    transform: rotate(23deg);
}*/

#stats .mystatistic .my-stats {
    background-color: #d52924;
    padding: 85px 140px;
}

#stats .mystatistic .stats-head {
    text-align: center;
    color: #ffffff;
}

#stats .mystatistic .stats-head h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

#stats .mystatistic .stats-head h6 {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
}

/*////////////// Stats section End///////////////*/

.transport_services .service-section {
    margin-top: 40px;
    margin-right: -70px;
}

.leftsectionsupport {
    /*width: 110%;*/
    z-index: 1;
    padding: 78px 60px 78px 60px;
    margin-top: 40px;
    background-color: #0a3d85;
}

.transport_services .ambulance {
    position: relative;
}

.transport_services .ambulance .icon {
    position: absolute;
    top: 10px;
}

.transport_services .ambulance .detail {
    padding-left: 70px;
}

.transport_services .sdata .service-head h4, .transport_services .service-sub-head h6  {
    color: #fff !important;

}

.myform form input[type="submit"] {
    display: inline-block;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #d52924;
    border: 1px solid transparent;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0;
    cursor: pointer;
}

.header_style2 nav ul li a.active {
    color: #fff !important;
}

/* ==================================== Homepage 10 ======================= */

header.header_style_ten .logo {
    padding: 0;
}

header.header_style_ten .logo a img {
    width: auto;
}

header.header_style_ten ul li i {
    color: #6da04e;
}

header.header_style_ten .button {
    background: #2f333c !important;
}

header.header_style_ten .button:hover {
    background: #6da04e !important;
    border-color: #6da04e !important;
}

header.header_style_ten .header_bottom {
    background: #6da04e !important;
}

header.header_style_ten .header_bottom nav>ul>li {
    margin-right: 0px;
    margin-left: 0;
    padding: 22px 15px;
}

header.header_style_ten .header_bottom nav ul>li>a.active {
    color: #2f333c;
}

.headerv7 nav ul li ul li a:hover {
    color: #fff !important;
}

header.header_style_ten .header_bottom nav ul>li>a:hover {
    color: #2f333c;
}

header.header_style_ten .header_bottom form a {
    background: #7fac64;
    width: 45px;
    display: inline-block;
    text-align: center;
    height: 45px;
    line-height: 48px;
    position: absolute;
    top: 12px;
    right: 0;
}

header.header_style_ten .header_bottom form a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .3;
}

header.header_style_ten nav ul li ul.dropdown-menu li a:hover {
    color: #fff !important;
    background-color: #6da04e !important;
}

header.header_style_ten .header_bottom nav ul li.active a {
    color: #2f333c !important;
    background-color: #6da04e !important;
}

header.header_style_ten .header_bottom form input[type="text"] {
    background-color: #fff !important;
    color: #7fac64;
    right: 0;
    top: 100%;
    left: auto;
    width: 100%;
}

header.header_style_ten .cart {
    text-align: inherit;
    padding: 0px;
}

header.header_style_ten .cart a {
    position: relative;
    font-size: 30px;
    color: #fff;
    line-height: 2.1;
}

header.header_style_ten .cart a b {
    font-size: 11px;
    font-weight: 500;
    color: #444444;
    background: #fff;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 1.8;
    position: absolute;
    top: 10px;
    right: 0px;
    font-family: 'Poppins', Helvetica, sans-serif;
}

header.header_style_ten .cart a:hover b {
    background: #444444;
    color: #fff;
}

.responsive_button.b_2.mg-top {
    background: #6da04e !important;
}

.responsive_nav.rn_2 ul li a:hover {
    background: rgb(109, 160, 78);
}

/* ================ Main Slider Style 02  ================== */

.main-slider.style_two .tp-bgimg.defaultimg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 6, 6, 0.7);
}

.main-slider.style_two .lyr4:hover {
    background-color: #6da04e;
}

/* ================ Three COlumn Section  ================== */

.three_column_sec {
    position: relative;
    margin-top: -50px;
    z-index: 1;
}

.three_column_sec .sec_inner:before {
    content: url(../images/index10/three_column_bg.png);
    position: absolute;
    right: 0;
    left: auto;
    top: 50px;
    z-index: -1;
}

.three_column_sec .news_column {
    margin-bottom: 20px;
}

.three_column_sec .news_column h5 a {
    font-size: 20px;
    font-weight: 600;
    color: #444444;
}

.three_column_sec .news_column:hover .inner_column h5 a {
    color: #fff;
}

.three_column_sec .news_column h5 {
    margin-bottom: 15px;
}

.three_column_sec .news_column p {
    margin-bottom: 20px;
}

.three_column_sec .news_column:hover .inner_column p {
    color: #fff;
}

.three_column_sec .news_column a.read_more {
    font-size: 14px;
    font-weight: 500;
    color: #6da04e;
    border-bottom: 1px solid #6da04e;
}

.three_column_sec .news_column:hover .inner_column a.read_more {
    color: #fff !important;
    border-bottom: 1px solid #fff;
}

.three_column_sec .news_column .inner_column {
    padding: 35px 45px 45px 45px;
    background: #f8f8f8;
    -webkit-box-shadow: 1px 2px 10px rgba(252, 252, 252, .5);
    -moz-box-shadow: 1px 2px 10px rgba(252, 252, 252, .5);
    -ms-box-shadow: 1px 2px 10px rgba(252, 252, 252, .5);
    -o-box-shadow: 1px 2px 10px rgba(252, 252, 252, .5);
    box-shadow: 1px 2px 10px rgba(252, 252, 252, .5);
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.three_column_sec .news_column:hover .inner_column {
    background: #6da04e;
}

/* ================ About Section  ================== */

.about_sectwo .about_content {
    padding-left: 35px;
}

.about_sectwo .about_content .heading {
    margin-bottom: 30px;
}

.about_sectwo .about_content .heading h5 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #6da04e !important;
    margin-bottom: 10px !important;
}

.about_sectwo .about_content .heading h3 {
    font-size: 32px;
    font-weight: 800;
}

.about_sectwo .about_content .heading p {
    font-weight: 600;
}

.about_sectwo .about_content .heading:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #6da04e !important;
    display: block;
    margin-top: 5px;
}

.about_sectwo .about_content .content {
    padding: 0;
}

.about_sectwo {
    position: relative;
    /*z-index: 999;*/
}

.about_sectwo .about_content .content p {
    margin-bottom: 30px;
}

.about_sectwo .about_content .content h6 {
    font-size: 20px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 20px;
}

.about_sectwo .about_content .bottom_box .alogo {
    margin-right: 10px;
    display: inline-block;
}

.about_sectwo .about_content .bottom_box .text {
    display: inline-block;
}

.about_sectwo .about_content .bottom_box .text h6 {
    font-size: 18px;
    font-weight: 300;
    color: #444444;
    display: block;
}

.about_sectwo .about_content .bottom_box .text h4 {
    font-size: 24px;
    font-weight: 500;
    color: #444444;
    display: block;
}

/* ================ Promotion Style two Section  ================== */

.promotion.style_two {
    background: url(../images/index10/promotion_bg.png) no-repeat;
    background-size: cover;
}

.promotion.style_two .inner_promotion {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0;
}

.promotion.style_two .inner_promotion .button {
    display: inline-block;
    color: #fff;
    background: transparent !important;
    border: 1px solid #fff;
    text-transform: uppercase;
    line-height: 20px;
}

#9 .promotion.style_two .inner_promotion .button:hover {
    background: #6da04e !important;
    border: 1px solid #6da04e;
}

/* ================ Services Three Section  ================== */

.service_three {
    background: url(../image/index10/services_bg.png) no-repeat;
    background-position-y: bottom;
    width: 100%;
    padding-bottom: 98px;
}

.services_two.service_three .service {
    background: #fff;
    border: 1px solid #eeeeee;
}

.services_two.service_three .service:hover {
    background: #f4fbf0;
    border: 1px solid #f4fbf0;
}

.services_two.service_three .service i {
    color: #6da04e;
    background: none;
    font-size: 100px;
}

.services_two.service_three .service:hover i {
    color: #6da04e;
}

.services_two.service_three .service h5 {
    margin-top: 20px;
}

.services_two.service_three .service:hover h5 {
    color: #444444;
}

.services_two.service_three .service:hover p {
    color: #444444;
}

/* ================ Counter Section  ================== */

.counter_sec {
    background: url(../images/index10/counter_bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.counter_sec .inner_sec {
    padding: 90px 0;
}

.counter_sec .inner_sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(109, 160, 78, 0.8);
    opacity: 0.80;
}

/*Counter Detail*/

.counter_sec .counter_detail {
    padding-left: 30px;
}

.counter_sec .cannabis_counter {
    padding-right: 30px;
}

.counter_sec .counter_detail h2 {
    font-size: 44px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.counter_sec .counter_detail p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.counter_sec .counter_detail .btn_box {
    margin-top: 40px;
}

.counter_sec .counter_detail .button {
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    background: transparent !important;
}

.counter_sec .counter_detail .button:hover {
    background: #444444 !important;
    border: 1px solid #444444;
}

/*Counter*/

.cannabis_counter .P_circle {
    position: relative;
}

.cannabis_counter .P_circle img {
    position: absolute;
    top: 18%;
    left: 26%;
}

/*.cannabis_counter .P_circle .circlechart {
    position: absolute;
    top: -45px;
    left: 20px;
}*/

.cannabis_counter .success-stroke {
    stroke: #fff;
}

.cannabis_counter .P_circle i {
    position: absolute;
    top: 18%;
    right: 26%;
    font-size: 110px;
    color: #fff;
}

.cannabis_counter .circle-chart__background {
    stroke: #9fce82;
    stroke-width: 2;
    fill: none;
}

.cannabis_counter .detail h2 {
    font-size: 44px;
    font-weight: 600;
    color: #fff;
}

.cannabis_counter .detail p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.cannabis_counter .detail {
    padding-top: 45px;
}

/* ================ Shop Section  ================== */

.shop_section {
    /*margin-top: 98px;*/
}

/*Product item*/

.shop_section .item {
    margin-bottom: 40px;
}

.shop_section .product_detail {
    padding-top: 40px;
}

.shop_section .product_detail .category a {
    font-size: 14px;
    font-weight: 400;
    color: #777777;
    border-bottom: 1px solid #c2c2c2;
}

.shop_section .product_detail .category:hover a {
    color: #6da04e;
    border-bottom: 1px solid #6da04e;
}

.shop_section .product_detail .name {
    line-height: 1;
}

.shop_section .product_detail .name a {
    font-size: 22px;
    font-weight: 600;
    color: #444444;
}

.shop_section .product_detail .name:hover a {
    color: #6da04e;
}

.shop_section .product_detail cite {
    font-size: 12px;
    font-weight: 400;
    color: #777777;
}

.shop_section .product_detail .price {
    font-size: 18px;
    font-weight: 600;
    color: #6da04e;
    margin-top: 20px;
}

/*Owl Dots*/

.shop_slider .owl-dots {
    text-align: center;
}

.shop_slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #dddddd;
    color: #dddddd;
    border-radius: 50%;
    visibility: visible;
    display: inline-block;
    margin-right: 10px;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.shop_slider .owl-dots .owl-dot.active {
    background: #6da04e;
}

.shop_slider .owl-dots .owl-dot:focus {
    outline: none;
}

/* ================ Photo Gallery Section  ================== */

.photo_gallery .heading {
    background: #f4fbf0;
    padding: 55px 0;
    margin-bottom: 20px;
}

.photo_gallery .full_width_gallery .cstm_pd {
    padding-right: 10px;
    padding-left: 10px;
}

.photo_gallery .full_width_gallery .cstm_pd:first-child {
    padding-left: 0;
}

.photo_gallery .full_width_gallery .cstm_pd:last-child {
    padding-right: 0;
}

.gallery_item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.gallery_item img {
    float: left;
    width: 100%;
}

.gallery_item .overlay {
    visibility: hidden;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    background: rgba(49, 52, 56, .8);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.gallery_item .overlay>a {
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -10px;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.gallery_item .overlay>a i {
    color: #fff;
    font-size: 21px;
}

.gallery_item:hover .overlay {
    visibility: visible;
}

.gallery_item:hover .overlay>a {
    top: 45%;
}

/* ================ News and Article Section  ================== */

.news_section {
    background: url(../images/index10/news_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 90px 0 90px 0;
}

/*News Block*/

.news_section .news_block {
    padding: 0;
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.news_section .news_block:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.91);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.91);
    -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.91);
    -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.91);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.91);
}

.news_section .news_block figure {
    vertical-align: baseline;
}

.news_section .news_block .news_detail {
    padding: 40px 40px;
    background: #fff;
}

.news_section .news_block .news_detail h5 {
    margin-bottom: 20px;
}

.news_section .news_block .news_detail h5 a {
    font-size: 20px;
    font-weight: 700;
    color: #444444;
}

.news_section .news_block .news_detail h5:hover a {
    color: #6da04e;
}

.news_section .news_block .info li {
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    list-style: none;
}

.news_section .news_block .info li a {
    font-weight: 500;
    color: #6da04e
}

.news_section .news_block .info .admin {
    float: left;
}

.news_section .news_block .info .date {
    float: right;
}

.news_section .news_block hr {
    margin: 30px 0;
}

/* ================ Lab Testimonial Section  ================== */

.lab_testimonials.style_two {
    padding: 0 0 98px 0;
}

.lab_testimonials.style_two .lab_testi {
    background: url(../images/index10/testimonial_bg.png) no-repeat;
    background-position-y: bottom;
}

.lab_testimonials.style_two h5 {
    font-size: 20px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 30px;
}

.lab_testimonials.style_two h5:before {
    content: "\f10d";
    font-family: 'FontAwesome';
    font-weight: 900;
    margin-right: 30px;
    color: #6da04e;
    font-size: 30px;
}

.lab_testimonials.style_two h5:after {
    content: "\f10e";
    font-family: 'FontAwesome';
    font-weight: 900;
    margin-left: 30px;
    color: #6da04e;
    font-size: 30px;
}

.lab_testimonials .lab_testi p {
    font-weight: 400;
}

.lab_testi h6 {
    font-weight: 400;
    text-transform: uppercase;
}

.lab_testimonials.style_two .owl-nav {
    display: none;
}

/* ================ Footer Style Two Section  ================== */

footer.style_two {
    background: #2f333c;
}

footer.style_two .footer_detail {
    background: #6da04e;
}

footer.style_two .footer_detail ul li i {
    color: #fff;
}

footer.style_two .button {
    background: #222222 !important;
    color: #ffffff !important;
}

/*footer.style_two .button:hover {
    background: #222222;
    color: #fff;
}*/

footer.style_two .footer_widget h4:after {
    content: '';
    width: 30px;
    height: 2px;
    background: #6da04e !important;
    display: block;
    margin-top: 5px;
}

footer.style_two .footer_widget .social a:hover {
    background: #6da04e;
}

.social ul li {
    display: inline-block;
}

/* ==================================== Services 03 Page ======================= */

.page_title.bg4 {
    background: url(../image/index10/header_bg.jpg) no-repeat;
    position: relative;
    background-size: 100% 100%;
    text-align: center;
}

.page_title.bg4 .layer {
    background: rgba(0, 0, 0, 0.6);
}

.page_title.bg4 p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.page_title.bg4 h1 {
    font-size: 72px;
}

/* ================ Services Style Four Section  ================== */

.services_wrap.ss_four {
    background: #f4fbf0 url(../images/index10/ss_four.png) no-repeat;
    background-position-x: right;
    background-position-y: 50px;
    padding-top: 98px;
    position: relative;
}

.services_wrap.ss_four .service {
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.services_wrap.ss_four .service:hover {
    background: #fff !important;
    border: 1px solid #84b040;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* ================ Pricing Table Style Two Section  ================== */

section.price_wrap.pricing_table.section_padding {
    padding-top: 98px;
}

.column-outer.cos_two {
    background: transparent;
    border: 1px solid #eeeeee;
    border-radius: 0px;
    padding: 40px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.column-outer.cos_two:hover {
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.31);
    background: #f4fbf0 !important;
}

.cos_two .head_area {
    text-align: center;
    background: transparent !important;
    transition: .3s;
}

.cos_two .head_area img {
    display: inline-block;
}

.cos_two .head_area h1 {
    color: #444444;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

.cos_two .price_area {
    background: transparent !important;
    text-align: center;
    padding: 25px 0px 50px 0px;
    transition: .3s;
}

.cos_two .price_area h1 {
    font-size: 60px;
    font-weight: 700;
    color: #6da04e !important;
}

.column-outer.cos_two:hover .head_area h1 {
    color: #6da04e !important;
}

.cos_two .price_area h1 span {
    font-size: 60px;
    font-weight: 700;
    color: #6da04e !important;
}

.cos_two .price_area h3 {
    font-weight: 400;
    font-size: 14px !important;
    color: #444444 !important;
}

.column-outer.cos_two:hover .price_area h1 span {
    color: #6da04e !important;
}

.column-outer.cos_two:hover .price_area h1 {
    color: #6da04e;
}

.cos_two ul {
    padding-left: 0 !important;
}

.cos_two ul li {
    font: 400 16px 'Poppins', arial, sans-serif;
    padding-bottom: 10px;
    line-height: 2 !important;
    color: #444444;
}

.cos_two .foot_area {
    padding-top: 50px;
}

.cos_two .foot_area .button {
    background: transparent !important;
    border: 2px solid #2f333c;
    font-size: 16px;
    font-weight: 600;
    color: #444444;
}

.cos_two:hover .foot_area .button {
    background: #6da04e !important;
    border: 2px solid #6da04e;
    color: #fff;
}

.cos_two .foot_area p {
    font-size: 12px;
    color: #666666;
    margin-top: 30px;
}

.btstwo {
    background: #6da04e;
}

/* ==================================== Contact 03 Page ======================= */

.page_title.c_two {
    margin-bottom: 0;
}

.cd_two .heading h3 span {
    color: #6da04e;
}

.cd_two .heading:after {
    background: #6da04e !important;
}

.contact_detail.cd_two .address {
    background: #6da04e !important;
}

.contact_detail.cd_two .button img {
    display: inline-block;
}

.contact_detail.cd_two .button {
    background: #2f333c !important;
    color: #fff;
}

.accordion_1 {
    margin-top: 80px;
}

.contact_detail.cd_two .button:hover {
    background: #6eb643 !important;
    border-color: #6eb643 !important;
}

.head_style_8 {
    display: inline-block;
}

.kc_column>.kc-col-container, .kc_column_inner>.kc-col-inner-container {
    height: auto !important;
}

.element-item {
    width: 20%;
}

/* ==================================== Header 11 ======================= */

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 90px;
    background-image: url(../images/covid/preloader.gif);
}

#head_11 {
    background-color: #316bf0;
    padding: 15px 0;
}

/*#head_11 .topbar{
    position: relative;
}*/

#head_11 .topbar:before {
    content: '';
    background-image: url(../images/covid/topbar_icon.png);
    position: absolute;
    top: 0;
    left: -100px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.topbar .btn_11 {
    display: inline-block;
}

.btn_11 a {
    background-color: #e94d31;
    color: #fff !important;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 3px;
}
.btn_11 a:hover {
    color: #fff !important;
}

.topbar .t_text {
    color: #fff;
    font-size: 16px;
    display: inline-block;
    padding-left: 30px;
}

.topbar .social_icon {
    text-align: right;
}

.topbar .social_icon ul li {
    padding-left: 5px;
    display: inline-block;
}

.topbar .social_icon ul li:first-child {
    padding-left: 0;
}

.topbar .social_icon ul li a i {
    color: #fff;
    background-color: #5a89f3;
    padding: 14px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    transition: .5s;
    position: relative;
}

.topbar .social_icon ul li a i:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: .2;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}

.topbar .social_icon ul li a i:hover {
    background-color: #e94d31;
}

#menu_11 {
    margin-top: 45px;
    margin-bottom: 45px;
}

#menu_11 .mainmenu nav ul li a {
    font-weight: 500;
    font-size: 16px;
    color: #222222;
}

#menu_11 .mainmenu nav ul li a:hover {
    color: #e94d31;
}

#menu_11 .mainmenu nav ul li ul li a {
    color: #fff;
}

#menu_11 .mainmenu nav ul li ul li a:hover {
    color: #fff;
}

#menu_11 .mainmenu nav ul li ul li:hover {
    background-color: #e94d31;
    color: #fff;
}

#menu_11 .search-box-outer {
    top: 0;
    margin-top: 0;
}

#menu_11 .search-box-btn {
    font-size: 14px;
    margin-top: 18px;
    top: 0px;
}

#menu_11 .cart {
    padding: 0;
    line-height: 55px;
    text-align: center;
}

#menu_11 .search-box-outer .search-panel .search-btn {
    margin-top: 0px;
}

#menu_11 .cart a {
    color: #000000;
}

#menu_11_inner {
    margin: 0 !important;
}

#menu_innerpages {
    padding: 30px 0;
}

#menu_11 .responsive_nav.navbar-collapse.show {
    visibility: visible;
}

#menu_11 .responsive_nav.rn_2 ul  {
    padding: 0;
}

.menu_11 .responsive_nav.rn_2 li.dropdown a:after {
    top: 15px;
}

.logo_11 a {
    display: block;
}

.logo_11 img {
    padding-right: 5px;
}

.logo_text {
    display: inline-block;
    position: absolute;
}

.logo_text h3 {
    font-size: 30px;
    font-weight: 600;
    font-family: Poppins;
    color: #000;
    margin-bottom: -13px;
}

.logo_text span {
    font-size: 16px;
    color: #e94d31;
    font-family: Poppins;
    font-weight: 500;
    display: inline-block;
}

.mainmenu {
    text-align: right;
    line-height: 67px;
}

.mainmenu nav {
    float: none;
    padding: 0;
}

.mainmenu nav ul li {
    display: inline-block;
}

.mainmenu nav ul ul {
    left: unset;
}

.mainmenu nav ul li:last-child {
    padding-right: 0;
}

.mainmenu nav>ul>li {
    padding-right: 24px;
}

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

.serach form {
    display: none;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 30px;
}

.serach:hover form {
    display: inline-block;
    opacity: 1;
}

.cart_11 {
    display: inline-block;
    padding-left: 7px;
}

.cart_11 a:hover {
    color: #e94d31;
}

.main-slider.style_11:before {
    background-color: unset;
}

.main-slider.style_11 .tp-bgimg.defaultimg:before {
    background: unset;
}

.lyr11 {
    color: #222222;
    font-size: 60px;
    line-height: 1 !important;
    font-weight: 600 !important;
    font-family: Poppins;
}

.lyr12 {
    color: #222222;
    font-size: 20px;
    line-height: 25px !important;
    font-family: Poppins;
    font-weight: 400 !important;
}

.lyr13 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: poppins;
    background-color: #316bf0;
    transition: .5s !important;
}

.lyr13:hover {
    color: #fff !important;
    background-color: #e94d31;
}

.lyr14 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: poppins;
    background-color: #e94d31;
    transition: .5s !important;
}

.lyr14:hover {
    color: #fff;
    background-color: #316bf0;
}

/*about_style11*/

.about_style11 {
    margin-top: 118px;
}

.about_style11 .about_text span {
    font-size: 14px;
    color: #e94d31;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 20px;
}

.about_style11 .about_text h2 {
    color: #222222;
    font-size: 48px;
    font-weight: 600;
    line-height: 48px;
    font-family: poppins;
    position: relative;
}

.about_style11 .about_text h2:after {
    content: '';
    background-color: #eb5034;
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.about_style11 .about_text p {
    color: #222222;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding-top: 35px;
    padding-bottom: 50px;
}

.features_list ul li {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.features_list ul li:last-child {
    padding-bottom: 0;
}

.features_list ul li:before {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    color: #e94d31;
    font-size: 12px;
    left: 0;
    top: 7px;
}

.about_imgr {
    padding-top: 20px;
}

.about_imgr img {
    height: 100% !important;
}

/*Quick Tips*/

.quick_tips {
    background-color: #e2efff;
    padding-top: 100px;
    margin-top: 110px;
}

.quick_tips .heding {
    text-align: center;
}

.quick_tips .heding h2 {
    color: #222222;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 48px;
}

.quick_tips .heding p {
    font-size: 20px;
    font-weight: 400;
    color: #222222;
    position: relative;
    display: inline-block;
}

.quick_tips .heding p:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #e94d31;
    bottom: -25px;
    left: 44%;
}

.q_tip {
    padding: 45px 40px;
    background-color: #fff;
    margin-top: 85px;
    text-align: center;
    position: relative;
    z-index: 9;
}

.q_tip h2 {
    font-size: 18px;
    color: #222222;
    font-weight: 600;
    margin: 40px 0 20px;
}

.q_tip p {
    font-size: 16px;
    font-weight: 400;
    color: #222222;
}

/*call_toaction*/

.call_toaction {
    padding: 95px 0 95px;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}

.call_toaction:before {
    content: '';
    background-color: #3379f3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .7;
}

.call_toaction p {
    font-weight: 400;
    font-size: 36px;
    color: #ffffff;
    position: relative;
    z-index: 999;
    display: inline-block;
}

.call_toaction span {
    color: #ffffff;
    font-size: 36px;
    position: relative;
    display: inline-block;
    position: relative;
    padding-left: 105px;
}

.call_toaction span img {
    position: absolute;
    left: 20px;
    top: -10px;
}

/*.call_toaction span:before{
    content: '';
    background-image: url('../image/covid/vr_phone.png');
    position: absolute;
    left: 10px;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left;
}*/

/*symptoms*/

.symptoms {
    margin-top: 115px;
}

.symp_img .heding span {
    color: #e94d31;
    font-size: 14px;
    font-weight: 600;
}

.symp_img .heding h2 {
    font-size: 48px;
    font-weight: 600;
    color: #222222;
    position: relative;
}

.symp_img .heding h2:after {
    content: '';
    position: absolute;
    background-color: #e94d31;
    width: 50px;
    height: 2px;
    left: 0;
    bottom: -7px;
}

.symp_img .heding p {
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    padding-top: 35px;
    padding-bottom: 60px;
}

.symp_img img {
    padding-top: 50px;
    height: 100% !important;
}

.symp_lists ul li {
    display: block;
    position: relative;
    padding-left: 100px;
    padding-bottom: 60px;
}

.symp_lists ul li:last-child {
    padding-bottom: 0;
}

.symp_lists ul li .sym_icon {
    position: absolute;
    left: -25px;
    border: 1px solid #e94d31;
    padding: 10px;
    border-radius: 50%;
    width: 107px;
    height: 107px;
    text-align: center;
}

.symp_lists .symp {
    display: block;
    position: relative;
    padding-left: 100px;
}

.symp_lists .symp:last-child {
    padding-bottom: 0;
}

.symp_lists .symp .sym_icon {
    position: absolute;
    left: -25px;
    border: 1px solid #e94d31;
    padding: 10px;
    border-radius: 50%;
    width: 107px;
    height: 107px;
    text-align: center;
}

.symp_text h2 {
    color: #222222;
    font-size: 20px;
    font-weight: 600;
}

.symp_text p {
    font-weight: 400;
    font-size: 16px;
    color: #222222;
}

/*counter_11*/

.counter_11 {
    margin-top: 110px;
    padding: 75px 0;
}

.covide_text span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.covide_text h2 {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 48px;
    padding-top: 20px;
    padding-bottom: 25px;
}

.covide_text p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.covide_text p:after {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 50px;
    height: 2px;
    left: 0;
    bottom: -25px;
}

.counter_count .c_icon {
    height: 95px;
}

.c_text h2 {
    font-size: 44px;
    font-weight: 500;
    color: #fff;
}

.c_text span {
    color: #fff;
}

/*prevent_slider*/

.prevent_slider {
    margin-top: 115px;
    text-align: center;
}

.prevent_slider .heding span {
    font-size: 14px;
    font-weight: 600;
    color: #e94d31;
}

.prevent_slider .heding h2 {
    font-size: 48px;
    font-weight: 600;
    color: #222;
}

.prevent_slider .heding p {
    font-size: 20px;
    font-weight: 400;
    color: #222;
    position: relative;
}

.prevent_slider .heding p:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    bottom: -25px;
    left: 46%;
    background-color: #da533c;
}

.tre_block {
    background-color: #ddecff;
    padding: 45px 0;
}

.tre_block img {
    width: auto !important;
    display: inline-block !important;
}

.pre_text {
    border-bottom: 1px solid #fff;
    padding: 45px 0;
}

.owl_prevent_slider {
    margin-top: 90px;
}

.pre_text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
}

.outer_block:hover .pre_text h4 {
    color: #fff;
}

.outer_block .resdmore {
    visibility: hidden;
    padding: 20px 0;
}

.outer_block:hover .h_color {
    background-color: #316bf0;
    color: #fff;
}

.outer_block:hover .pre_text {
    border-bottom: 1px solid;
}

.outer_block .resdmore a {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
}

.outer_block:hover .resdmore {
    visibility: visible;
}

.owl_prevent_slider .owl-dots .owl-dot {
    display: inline-block;
    padding: 6px;
}

.owl_prevent_slider .owl-dots .owl-dot.active span {
    background-color: #e94d31;
    transform: scale(1.5);
}

.owl_prevent_slider .owl-dots .owl-dot span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #cccccc;
}

/*our_mission*/

.our_mission {
    padding: 120px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    text-align: center;
    margin-top: 115px;
    background-attachment: fixed;
}

.our_mission .heding h2 {
    font-weight: 600;
    font-size: 48px;
    color: #fff;
}

.our_mission .heding p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.m_button {
    margin-top: 50px;
}

.m_button .btn_blue {
    background-color: #316bf0;
    color: #fff;
    text-transform: uppercase;
    padding: 20px 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-right: 15px;
    border-radius: 2px;
}

.m_button .btn_red {
    background-color: #e94d31;
    color: #fff;
    text-transform: uppercase;
    padding: 20px 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    border-radius: 2px;
}

/*contact_info*/

.contact_info {
    margin-top: 115px;
}

.contact_info .heding span {
    font-weight: 600;
    font-size: 14px;
    color: #e94d31;
    margin-bottom: 25px;
    display: block;
}

.contact_info .heding h2 {
    font-weight: 600;
    font-size: 48px;
    color: #222222;
    position: relative;
    line-height: 48px;
}

.contact_info .heding h2:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #e94d31;
    bottom: -25px;
    left: 0;
}

.contact_info .heding p {
    font-size: 16px;
    margin-top: 65px;
    font-weight: 400;
    color: #222222;
}

.contact_img img {
    height: 100% !important;
}

.contact_details form {
    margin-top: 35px;
}

.contact_details form input, select {
    width: 100%;
    padding: 20px 20px;
    margin-bottom: 20px;
    outline: none;
    border: 1px solid #000;
}

.contact_details form input[type="submit"] {
    border: none;
}

.contact_details textarea {
    width: 100%;
    padding: 20px;
}

.contact_details form input[type='button'] {
    width: unset;
    background-color: #e94d31;
    color: #fff;
    text-transform: uppercase;
    border: none;
    padding: 20px 40px;
    margin-top: 30px;
    border-radius: 2px;
}

.phon_info {
    text-align: center;
    border: 2px dashed #ddecff;
    padding: 40px 0;
    margin-top: 50px;
    border-radius: 40px;
}

.phon_info p {
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    margin-bottom: 25px;
}

.phon_info .c_phone {
    font-weight: 600;
    font-size: 24px;
    color: #222222;
    position: relative;
    display: inline-block;
}

.phon_info .c_email {
    font-weight: 500;
    font-size: 20px;
    color: #222222;
    display: inline-block;
    margin-left: 30px;
}

.phon_info img {
    vertical-align: middle;
}

/*product_style11*/

.product_style11 {
    margin-top: 0;
    padding: 110px 0;
}

.product_style11 .heding {
    text-align: center;
    margin-bottom: 85px;
}

.product_block .p_img {
    height: 170px;
    overflow: hidden;
}

.product_block .p_img img {
    transition: 1.5s;
    position: relative;
    height: 100%;
}

.product_style11 .heding span {
    font-weight: 600;
    font-size: 14px;
    color: #e94d31;
    margin-bottom: 25px;
    display: inline-block;
}

.product_style11 .heding h2 {
    font-weight: 600;
    font-size: 48px;
    color: #222222;
    line-height: 48px;
    margin-bottom: 25px;
}

.product_style11 .heding p {
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 25px;
    color: #222222;
    position: relative;
    display: inline-block;
    display: flex;
    justify-content: center;
}

.product_style11 .heding p:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: auto;
    width: 50px;
    height: 2px;
    background-color: #e94d31;
}

.product_style11 .product_block:hover {
    box-shadow: 0px 4px 4px;
}

.product_style11 .product_block:hover .p_img img {
    transform: scale(1.1);
}

.product_style11 .product_block {
    padding: 20px;
    text-align: center;
    border: 1px solid #ebebeb;
}

.product_block .p_details h2 {
    font-weight: 500;
    font-size: 18px;
    color: #444444;
    margin-top: 30px;
}

.product_block .p_details span {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: #316bf0;
    margin-top: 30px;
}

.product_block .p_details a {
    font-weight: 600;
    font-size: 12px;
    color: #444444;
    border: 2px solid #e94d31;
    text-transform: uppercase;
    padding: 12px 18px;
    display: inline-block;
    transition: .5s;
    margin-top: 20px;
}

.product_block .p_details a:hover {
    background-color: #e94d31;
    color: #ffffff !important;
}

/*news_style11*/

.news_style11 {
    padding: 100px 0 0;
    background-repeat: no-repeat;
    background-size: unset;
    background-attachment: fixed;
    background-position: top;
}

.news_style11 .news_block {
    background-color: #fff;
    height: 100%;
}

.news_style11 .heding {
    text-align: center;
    margin-bottom: 85px;
}

.news_style11 .no_padd {
    padding: 0;
}

.news_style11 .heding h2 {
    font-weight: 600;
    font-size: 48px;
    color: #fff;
    line-height: 48px;
    margin-bottom: 30px;
}

.news_style11 .heding p {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    position: relative;
}

.news_style11 .heding p:after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 46%;
    width: 50px;
    height: 2px;
    background-color: #e94d31;
}

.news_details {
    padding: 40px;
    box-shadow: 0px 6px 10px 0px #eee;
}

.news_details h2 {
    font-weight: 600;
    font-size: 20px;
    color: #444444;
    line-height: 20px;
    margin-bottom: 30px;
}

.news_details p {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
}

.news_details p span {
    font-weight: 600;
}

.news_details div.content {
    float: none;
    padding: 0;
}

.news_details div.content p, .news_details p {
    padding: 0;
    font-size: 16px;
    color: #222222;
    margin-top: 35px;
}

.blog-11 .news_details .meta p {
    padding: 0;
    font-size: 16px;
    color: #222222;
    margin-top: 0;
}

.n_date {
    margin-left: 10px;
}

.news_details .n_readmore {
    margin-top: 30px;
    font-weight: 600;
    font-size: 14px;
    color: #222222;
    display: inline-block;
    text-decoration: underline;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
}

.news_details .n_readmore:before {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #e94d31;
    left: 0;
    position: absolute;
    font-size: 12px;
    top: 3px;
}

.news_block .news_details .meta {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20px;
}

.news_block .news_details .meta_content {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20px;
}

.news_block .news_details .meta_content .meta, .news_block .news_details .meta_content .n_date {
    padding: 0;
    font-size: 16px;
    color: #888;
    display: inline-block;
    font-weight: 500;
}

.news_block .news_details .meta_content .meta span, .news_block .news_details .meta_content .n_date span {
    font-weight: 600;
}

/*imed_detail*/

.d_imeddoc {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.imed_detail {
    padding-top: 50px;
}

.imed_img {
    line-height: 0;
    margin-bottom: -190px;
}

.imed_img img {
    height: 100%;
}

.imed_detail span {
    font-weight: 600;
    font-size: 14px;
    color: #e94d31;
    display: inline-block;
}

.imed_detail h2 {
    font-weight: 600;
    font-size: 48px;
    color: #222222;
    line-height: 48px;
    position: relative;
    margin-top: 20px;
    display: block;
    margin-bottom: 65px;
}

.imed_detail h2:after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e94d31;
}

.imed_detail p {
    font-weight: 400;
    font-size: 16px;
    color: #222222;
}

.imed_detail .imed_btn {
    margin-top: 40px;
}

.imed_detail .imed_btn a {
    margin-right: 15px;
    display: inline-block;
}

/*Footer*/

.footer11 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.footer11 .footer_detail {
    background-color: #316bf0 !important;
}

.footer11 .footer_detail p {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

.footer11 .button {
    background-color: #e94d31 !important;
    color: #fff !important;
}

.f_widget11 h4:after {
    background-color: #e94d31 !important;
}

.f_widget11 .social a:hover {
    background-color: #e94d31 !important;
    color: #fff !important;
}

.b_top11 {
    background-color: #316bf0;
}

/*breadcrumb11*/

.breadcrumb11 {
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*margin-bottom: 60px;*/
}

.breadcrumb11 h2 {
    color: #fff;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 25px;
}

.breadcrumb11 a {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

.breadcrumb11 span {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

/*prevention_info*/

.prevention_info {
    margin-top: 70px;
    margin-bottom: 20px;
}

.prevention_info .p_sidebar .s_title {
    font-weight: 600;
    font-size: 24px;
    color: #222222;
    position: relative;
    line-height: 24px;
    margin-bottom: 50px !important;
}

.prevention_info .p_sidebar .s_title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e94d31;
}

.prevent_list ul li {
    font-weight: 500;
    font-size: 16px;
    color: #444444;
    position: relative;
    padding: 20px 45px;
    border: 1px solid #eeeeee;
    transition: .5s;
    margin-bottom: 2px;
    list-style: none;
}

.prevent_list ul li:last-child {
    margin-bottom: 0;
}

.prevent_list ul li:before {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    color: #e94d31;
    font-size: 12px;
    top: 25px;
    left: 20px;
}

.prevent_list ul li:hover:before {
    color: #fff;
}

.prevent_list ul li:hover {
    background-color: #316bf0;
    color: #fff;
}

.prevent_openingtime {
    margin-top: 60px;
    background-color: #e94d31;
    padding: 40px;
}

.prevent_openingtime h4 {
    font-weight: 600;
    font-size: 24px;
    color: #ffffff !important;
}

.prevent_openingtime span {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 35px;
    display: inline-block;
}

.prevent_openingtime h2 {
    font-weight: 500;
    font-size: 36px !important;
    color: #ffffff !important;
    line-height: 36px;
    margin-bottom: 15px;
}

.prevent_openingtime p {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    border-bottom: 1px solid #ef7a65;
    padding-bottom: 25px;
    margin-bottom: 35px;
}

.con_emerg {
    margin-top: 15px;
    padding: 45px 40px;
    background-color: #316bf0;
}

.con_emerg h3 {
    color: #fff !important;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 30px;
}

.con_emerg h2 {
    color: #fff !important;
    font-weight: 700;
    font-size: 18px;
    border-bottom: 1px solid #6590f4;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.con_emerg h4 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    border-bottom: 1px solid #6590f4;
    padding-bottom: 20px;
}

.con_emerg img {
    vertical-align: middle;
    margin-right: 10px;
}

.met_doctors {
    margin-top: 60px;
}

.met_doctors .headnig {
    font-weight: 600;
    font-size: 24px;
    color: #222222;
    position: relative;
}

.met_doctors .headnig:after {
    position: absolute;
    content: '';
    bottom: -15px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #e94d31;
}

.doctors-list {
    margin-top: 50px;
}

.doctors-list ul li {
    display: inline-block;
    margin-bottom: 20px;
}

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

.doctors-list ul li h2 {
    font-weight: 600;
    font-size: 20px;
    color: #444444;
    line-height: 20px;
    margin-bottom: 5px;
}

.doctors-list ul li img {
    vertical-align: middle;
    max-width: 100px;
}

.doctors-list ul li span {
    font-weight: 400;
    font-size: 14px;
    color: #e94d31;
}

.doc-details {
    display: inline-block;
    padding-left: 15px;
}

.symptom_block .heding span {
    font-weight: 600;
    font-size: 14px;
    color: #e94d31;
    margin-bottom: 18px;
    display: inline-block;
}

.symptom_block .heding h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    color: #222222;
    position: relative;
}

.symptom_block .heding h2:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e94d31;
}

.symptom_block .details {
    margin-top: 70px;
}

.symp_inner li:hover .symp_d {
    background-color: #e94d31;
}

.symp_inner li:hover .symp_d h2 {
    color: #fff;
}

.symp_inner li:hover .symp_d p {
    color: #fff;
}

.symp_inner ul li {
    display: flex;
    margin-bottom: 40px;
}

.symp_inner ul li:last-child {
    margin-bottom: 0;
}

.symp_inner ul li .img {
    padding: 60px 30px;
    background-color: #f0f7ff;
    width: 50%;
}

.symp_inner ul li .symp_d {
    display: inline-block;
    padding: 30px;
    border: 1px solid #eeeeee;
    transition: .5s;
}

.symp_inner ul li .symp_d h2 {
    font-weight: 600;
    font-size: 20px;
    color: #222222;
}

button {
    outline: none;
}

.symp_inner .img_box {
    background-color: #f0f7ff;
    text-align: center;
    padding: 20px 0;
}

.symp_inner h5 {
    font-weight: 600;
    font-size: 18px;
    color: #222222;
    text-align: center;
    padding: 25px 0;
    border: 1px solid #eeeeee;
    margin-bottom: 30px;
}

.symp_inner:hover h5 {
    background-color: #316bf0;
    color: #fff;
}

.serach form {
    display: none;
    opacity: 0;
    position: absolute;
    right: 30px;
    top: 55px;
    z-index: 999;
    padding: 0 10px;
    border: 2px solid #e94d31;
    border-bottom: 4px solid #e94d31;
}

.serach {
    padding-right: 30px;
}

.serach form input[type="search"] {
    width: 220px;
    height: 45px;
    outline: none;
    border: 1px solid #316bf0;
}

#menu_11 nav ul li ul.dropdown-menu {
    top: 30px;
}

.stat-2 {
    padding: 140px 0;
}

.services_two .service i {
    width: 49px;
    height: 61px;
    background: url("../images/ser_icon2.png") no-repeat;
    display: inline-block;
}

.services_two .service:hover .sicon_two {
    background-position: -49px 0px;
    width: 37px;
}

.services_two .service:hover .sicon_three {
    background-position: -85px 0px;
    width: 64px;
}

.services_two .service:hover .sicon_four {
    background-position: -149px 0px;
    width: 52px;
}

.services_two .service:hover .sicon_five {
    background-position: -198px 0px;
    width: 63px;
}

.services_two .service:hover .sicon_six {
    background-position: -267px 0px;
    width: 63px;
}

.services_two .service:hover i {
    background: url("../images/ser_icon2_hover.png") no-repeat;
}