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

/* HTML5 display-role reset for older browsers */

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

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1;
    font-family: 'Fira Sans', sans-serif;
    overflow-x: hidden;
}

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

* {
    box-sizing: border-box;
}

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

a {
    cursor: pointer;
}

/*nav menu*/

/* CSS Document */

#container {
    margin: 0 auto;
    max-width: 890px;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */

nav {
    margin: 0;
    padding: 0;
    background-color: transparent;
    margin-top: 11px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */

nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */

nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
    background-color: transparent;
    position: relative;
}

/* Styling the links */

nav a {
    display: block;
    padding: 0 10px;
    color: #000;
    font-size: 15px;
    text-decoration: none;
    position: relative;
}

nav ul li ul li:hover {
    background: #000000;
}

/* Background color change on Hover */

nav a:hover {
    background-color: transparent;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */

nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 66px;
    z-index: 9999;
    left: -28px;
}

/* Display Dropdowns on Hover */

nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */

nav ul ul li {
    width: 245px;
    float: none;
    display: list-item;
    position: relative;
    margin-bottom: 2px;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/

nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */

nav li>a:after {
    content: '';
    width: 0px;
    height: 81px;
    background: #e9e9e9;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 17px;
}

nav li:last-child>a:after {
    width: 0;
}

nav li>a:only-child:after {
    content: '';
}

nav .drpdwn {
    background: #ffffff;
}

nav .drpdwn:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 18px solid #27466f;
    display: inline-block;
    margin-bottom: -2px;
    position: absolute;
    top: -18px;
    left: 81px;
}

nav .drpdwn li a {
    color: #fff;
}

nav .drpdwn li a:hover {
    background: #813169;
}

nav .drpdwn li a:after {
    width: 0;
}

nav #toggle {
    width: 28px;
    height: 30px;
    margin: 10px auto;
}

nav #toggle .one,
nav #toggle .two,
nav #toggle .three {
    width: 100%;
    height: 5px;
    background: white;
    margin: 4px auto;
    transition: all 0.3s;
    backface-visibility: hidden;
}

nav #toggle.on .one {
    transform: rotate(45deg) translate(4px, 2px);
}

nav #toggle.on .two {
    opacity: 0;
}

nav #toggle.on .three {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width: 768px) {
    nav {
        margin: 0;
    }
    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle+a,
    .menu {
        display: none;
    }
    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        background-color: #df1f5a;
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
        text-decoration: none;
        border: none;
    }
    .toggle:hover {
        background-color: #813169;
    }
    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked+ul {
        display: block;
    }
    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }
    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }
    nav ul ul ul a {
        padding: 0 80px;
    }
    nav a:hover,
    nav ul ul ul a {
        background-color: #000000;
    }
    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }
    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #212121;
    }
    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }
    /* Hide menus on hover */
    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }
    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
    }
    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */
    }
}

@media all and (max-width: 330px) {
    nav ul li {
        display: block;
        width: 94%;
    }
}

@font-face {
    font-family: 'a_astro_spaceregular';
    src: url('../fonts/astrospace-ez2bg-webfont.woff2') format('woff2'), url('../fonts/astrospace-ez2bg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*HEADER*/

.header {
    width: 100%;
    z-index: 104;
    background: #f8f8f8;
    padding-top: 0px;
}

.header.active {
    padding: 0px 0 0 0;
    background: #f8f8f8;
	top:0;
    position: fixed;
}
.header_marque{
	background:#e7edf1;
	padding:7px 0;
}
.header_marque marquee{
	font-size:15px;
	color:#282828;
	font-family:'Lato', sans-serif;
}

.header .container {
    position: relative;
}

.header .header_menu ul li a {
    color: #000000;
    font-size: 15px;
    box-shadow: 6px 0px 11px -7px #ddd6d6;
    text-transform: uppercase;
    margin-bottom: -3px;
    text-align: left;
    font-weight: 400;
}

.header .header_menu ul li:nth-child(5) a {
    box-shadow: none;
}

.header .header_menu ul li.active a {
    color: #ed1f24;
}

.header .header_menu ul li a:hover {
    color: #08315f;
}

.header .header_menu ul li .drpdwn a:hover {
    color: #fff;
}

.header .header_menu ul li .drpdwn a:hover:before {
    width: 0;
}

.header .header_menu ul li.active a:before {
    content: "";
    width: 35px;
    height: 7px;
    display: inline-block;
    background: #ed1f24;
    position: absolute;
    top: -20px;
}

.header .header_menu {
    vertical-align: middle;
    margin-top: 0;
}

.header .icon-sec {
    display: inline-block;
    vertical-align: middle;
}

.header .icon-sec a {
    display: inline-block;
    margin: 0 8px;
}

.header .header_menu .drpdwn li a {
    border-bottom: 1px solid #cccccc;
    line-height: 22px;
    box-shadow: none;
    color: #ffffff;
    background: #27466f;
    text-transform: unset;
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    text-transform: uppercase;
}

.header .header_menu .drpdwn li a:hover {
    background: #f37e20;
}

.header .header_menu .drpdwn li a label {
    font-weight: 400;
}

.header .header_menu .drpdwn li a label b {
    font-weight: 700;
}

.header .header_menu .drpdwn li a p {
    font-size: 14px;
    font-weight: 400;
}

.header .header_menu .drpdwn li a p:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #f37e20;
    display: inline-block;
    margin-right: 10px;
}

.header .header_menu .drpdwn li a:hover p:before {
    border-left: 5px solid #27466f;
}

.header .header_menu .drpdwn li:last-child a {
    border-bottom: 0;
}

.header .header_menu ul li a .fa-angle-down {
    margin-left: 5px;
    color: #f37e20;
    font-weight: 900;
}

.header_menu .menu {
    text-align: center;
    margin-top: 40px;
}

.right-header {
    position: static;
}

.right-header .one-po {
    position: static;
}

.header_logo {
    margin-top: 0px;
}

/*common*/

/*banner*/

.home-banner .owl-carousel .owl-item img {
    width: 100%;
}

.home-banner {
    /* margin-top: 105px; */
}

.home-banner .banner-content {
    position: absolute;
    top: 35%;
    left: 7%;
    width: 39%;
}

.home-banner .banner-content h1 {
    color: #f4f4f4;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    font-family: 'Lato', sans-serif;
    line-height: 60px;
}

.home-banner .banner-content label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    display: block;
    line-height: 30px;
}

.home-banner .banner-content a.st_btn {
    text-transform: none;
    border-radius: 4px;
    background: #5f2983;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    padding: 15px 28px;
    font-family: 'Open Sans', sans-serif;
    margin-top: 25px;
    display: inline-block;
}

.home-banner .banner-content a.st_btn.req {
    background: #ff8625;
}

.home-banner .banner-content a.st_btn.req:hover {
    background: #6f2093;
}

.home-banner .banner-content a:hover {
    background: #f37e20;
    color: #fff;
}

.home-banner .banner-content a img {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.home-banner .owl-dots {
    position: absolute;
    bottom: 7%;
    left: 175px;
    text-align: center;
    padding: 2px 18px 8px 23px;
    border-radius: 10px;
}

.home-banner .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: #828f96;
    border-radius: 50%;
    margin-right: 10px;
}

.home-banner .owl-dots .owl-dot.active {
    background: #ffffff;
}

.home-banner .banner-left-aside {
    width: 175px;
    height: 505px;
    background: #0d6bac;
    position: absolute;
    left: 0;
    top: 70px;
    z-index: 2;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.home-banner .banner-right-aside {
    width: 175px;
    height: 505px;
    background: #fc5c5e;
    position: absolute;
    right: 0;
    top: 70px;
    z-index: 2;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.inner-banner {
    /* position: relative; */
    /* margin-top: 150px; */
	background-image: linear-gradient(to right, #151d2a, #2c4154);
	padding:40px 0;
	
}

.inner-banner img {
    width: 100%;
}

.inner-banner form {
    background: #fd8835;
    padding: 60px 0;
    /*width: 43%;*/
    border-radius: 10px;
}

.inner-banner form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 35px;
    color: #ffffff;
    font-weight: 700;
}

.inner-banner form img {
    width: auto;
}

.inner-banner .form-group {
    margin-bottom: 27px;
}

.inner-banner .form-group img {
    position: absolute;
    top: 10px;
    left: 19px;
}

.inner-banner .form-group.msg img {
    top: 3px;
}

.inner-banner .form-group.last img {}

.inner-banner .form-group.time select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.inner-banner input[type="date"]::-webkit-calendar-picker-indicator {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.inner-banner input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.inner-banner .form-group .form-control {
    height: 50px;
    border-radius: 10px;
    padding: 6px 10px 6px 43px;
    font-size: 18px;
    color: #727272;
}

.inner-banner .submit {
    width: 35%;
    margin: 0 auto;
}

.inner-banner .submit button {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    background: #3aa9ce;
    border: 0;
    outline: 0;
    font-family: 'Lato', sans-serif;
    padding: 20px 0;
    line-height: 0;
    border-radius: 5px;
}

.inner-banner h1 {
    color: #f4f4f4;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    /* position: absolute; */
    /* top: 182px; */
    /* left: 200px; */
}

.inner-banner h1.yel {
    color: #f4f4f4;
}

.inner-banner label {
    color: #cbcbcb;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    /* position: absolute; */
    /* top: 239px; */
    /* left: 200px; */
}

.inner-banner.book-appointment {
    margin-bottom: -40px;
}

/*.inner-banner.book-appointment .content{position: absolute;top: 244px;width: 45%;left: 200px;}*/

.inner-banner.book-appointment .content label {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 27px;
    font-family: 'Lato', sans-serif;
    position: absolute;
    top: 15px;
    left: 13px;
}

.inner-banner.book-appointment .content p {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    line-height: 32px;
    position: absolute;
    top: 100px;
}

.inner-banner.book-appointment1 {
    margin-bottom: -40px;
}

/*.inner-banner.book-appointment1 .content{position: absolute;top: 120px;width: 45%;left: 200px;}*/

.inner-banner.book-appointment1 .content label {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 38px;
    line-height: 27px;
    font-family: 'Lato', sans-serif;
    left: 0;
}

.inner-banner.book-appointment1 .content p {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    line-height: 32px;
    margin-top: 85px;
}

.book-appointment1 .time-clock {
    background: #1fa5a6;
    width: 90%;
    padding: 32px 25px;
    border-radius: 100px;
    margin-top: 10px;
}

.book-appointment1 .time-clock .img {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

.book-appointment1 .time-clock .cntn {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.book-appointment1 .time-clock .cntn ul li {
    display: block;
}

.book-appointment1 .time-clock .cntn ul li label {
    color: #fff;
    position: static;
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.book-appointment1 .time-clock .cntn ul li:first-child label {
    margin: 8px 0;
    font-size: 18px;
}

.book-appointment1 .time-clock .cntn ul li span {
    color: #ffeb00;
    display: block;
    font-size: 18px;
    font-weight: 400;
}

.book-appointment1 .offers-suh .time-clock {
    background: #2582a1;
    width: 90%;
    padding: 18px 25px;
    border-radius: 100px;
    margin-top: 30px;
    box-shadow: 1px 11px 6px #1d4557;
}

.book-appointment1 .offers-suh .time-clock .img {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

.book-appointment1 .offers-suh .time-clock .cntn {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.book-appointment1 .offers-suh .time-clock .cntn ul li {
    display: block;
}

.book-appointment1 .offers-suh .time-clock .cntn ul li label {
    color: #fff;
    position: static;
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.book-appointment1 .offers-suh .time-clock .cntn ul li:first-child label {
    margin: 8px 0;
    font-size: 18px;
}

.book-appointment1 .offers-suh .time-clock .cntn ul li span {
    color: #fd8835;
    display: block;
    font-size: 18px;
    font-weight: 400;
}

.book-appointment1 .offers-suh .time-clock .img.first {}

.book-appointment .time-clock {
    background: #1fa5a6;
    top: 210px;
    position: absolute;
    width: 70%;
    padding: 25px;
    border-radius: 68px;
}

.book-appointment .time-clock .img {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

.book-appointment .time-clock .cntn {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.book-appointment .time-clock .cntn ul li {
    display: block;
}

.book-appointment .time-clock .cntn ul li label {
    color: #fff;
    position: static;
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.book-appointment .time-clock .cntn ul li:first-child label {
    margin-bottom: 20px;
}

.book-appointment .time-clock .cntn ul li span {
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 400;
}

/* header right*/

.header_logo1{
	padding:15px 0;
	display:inline-block;
	width:100%;
}
.header .head-right-top {
    float: right;
	padding-top:26px;
}

.header .head-right-top a {
    display: inline-block;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}

.header .head-right-top .sec-1 {
    margin-right: 10px;
}

.header .head-right-top .sec-1 .img-sec {
    background: #f8f8f8;
    display: inline-block;
    vertical-align: middle;
    padding: 13px 12px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: 1px solid #ddd;
}

.header .head-right-top .sec-1 .con-sec {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 14px;
}

.header .head-right-top .sec-1 .con-sec span {
    color: #f3944e;
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.header .head-right-top .sec-1 .con-sec label {
    color: #18202d;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
	padding-top:4px;
}

.header .head-right-top .sec-2 {
    background: #0075bf;
    padding: 7px 10px;
    /*animation: blinker 8s linear infinite;*/
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.header .head-right-top .sec-2 .img-sec {
    display: inline-block;
    vertical-align: middle;
}

.header .head-right-top .sec-2 .con-sec {
    display: inline-block;
    vertical-align: middle;
}

.header .head-right-top .sec-2 span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.header .head-right-top .sec-2 label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

/* header mega menu*/

.header_mega_menu .over-width {
    width: 100%;
}

.header_mega_menu .over-width .spec-img {
    padding: 0;
    text-align: right;
}

.header_mega_menu .over-width .spec-img img {
    display: inline-block;
    width: 100%;
    margin-bottom: -2px;
}

/*.header_mega_menu .over-width .spec-img .about{background: url(../images/gallery-menu-img-1.jpg) no-repeat;width:445px;height:205px;}*/

.header_mega_menu .over-width .treatments {
    padding-right: 0;
}

.header_mega_menu .over-width .treatments label {
    color: #5f2983;
    font-size: 14px;
    padding: 25px 0 18px 0;
}

.header_mega_menu .over-width .treatments label b {
    color: #f76d02;
}

.header_mega_menu .over-width .treatments ul li {
    display: inline-block;
    width: 24.6%;
    border: 1px solid #e6e7e7;
    margin-right: -5px;
}

.header_mega_menu .over-width .treatments.gallery ul li {
    width: 49%;
}

.header_mega_menu .over-width .treatments ul li.initial {
    border-left: 0;
}

.header_mega_menu .over-width .treatments ul li.last {
    border-bottom: 0;
}

.header_mega_menu .over-width .treatments ul li.right {
    border-right: 0;
}

.header_mega_menu .over-width .treatments.about ul li {
    width: 33.3%;
}

.header_mega_menu .over-width .treatments.about ul li .bg a {
    padding: 18px 0;
}

.header_mega_menu .over-width .treatments.gallery ul li .bg a {
    padding: 8px 0;
}

.header_mega_menu .over-width .treatments ul li .bg {
    text-align: center;
}

.header_mega_menu .over-width .treatments ul li:hover .bg {
    background: #329bdd;
}

.header_mega_menu .over-width .treatments ul li a {
    display: inline-block;
    padding: 15px 0;
    width: 100%;
}

.header_mega_menu .over-width .treatments ul li a img {
    display: inline-block;
    margin-bottom: 10px;
}

.header_mega_menu .over-width .treatments ul li a span {
    display: block;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}

.header_mega_menu .over-width .treatments ul li:hover a span {
    color: #fff;
}

.home-sec-1 {
    background: rgb(230 231 231 / 40%);
}

.home-sec-1 .sec-1 {
    background: #fd8835;
    padding: 35px 0;
    text-align: right;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.home-sec-1 .sec-1 label {
    margin-right: 20px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.home-sec-1 ul li {
    display: inline-block;
    text-align: center;
    position: relative;
    padding: 11px 35px;
    vertical-align: top;
}

.home-sec-1 ul li:after {
    content: "";
    background: url(../images/process-after-icon.png) no-repeat;
    width: 78px;
    height: 35px;
    display: inline-block;
    position: absolute;
    top: 22px;
    right: -41px;
}

.home-sec-1 ul li:last-child:after {
    width: 0;
}

.home-sec-1 ul li img {
    display: inline-block;
}

.home-sec-1 ul li:last-child img {
    padding-bottom: 14px;
    padding-top: 8px;
}

.home-sec-1 ul li span {
    display: block;
    color: #5c5b5b;
    font-size: 15px;
    line-height: 20px;
}

.home-sec-2 {
    margin-top: 85px;
}

.home-sec-2 h2 {
    color: #3aa9ce;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

.home-sec-2 label {
    color: #fd8835;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    line-height: 37px;
}

.home-sec-2 p {
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 30px;
    text-align: justify;
}

.home-sec-2 p b {
    color: #fd8835;
}

.home-sec-2 a {
    background: #3aa9ce;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    margin-top: 30px;
    padding: 20px 40px;
    display: inline-block;
    border-radius: 4px;
}

.home-sec-2 a:hover {
    background: #fd8835;
}

.home-sec-2 .sec-2 {
    text-align: right;
}

.home-sec-2 .sec-2 img {
    display: inline-block;
}

.home-sec-3 {
    background: #eaeaea;
    margin-top: 0px;
    position: relative;
}

.home-sec-3 .service-bg {
    position: absolute;
    bottom: 0;
    left: 0;
}

.home-sec-3 .bg {
    padding: 58px 0 65px 250px;
	transform:translateX(80px);
}

.home-sec-3 h3 {
    color: #4a4a4a;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 25px;
	text-align:center;
	text-transform:uppercase;
}

.home-sec-3 ul li {
    display: inline-block;
    width: 24%;
    text-align: center;
}

.home-sec-3 ul li a {
    background: #fdfdfd;
    display: inline-block;
    width: 99%;
    margin-top: 7px;
    border-radius: 10px;
    padding: 12px 0;
}

.home-sec-3 ul li a:hover {
    background: #79b7df;
}

.home-sec-3 ul li a img {
    display: inline-block;
}

.home-sec-3 ul li a label {
    display: block;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    line-height: 29px;
}

.home-sec-3 ul li a:hover label {
    color: #fff;
}

.home-sec-4 {
    margin-top: 60px;
}

.home-sec-4 h4 {
    color: #fd8835;
    font-size: 38px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
}

.home-sec-4 label {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
    line-height: 30px;
}

.home-sec-4 ul li {
    margin-top: 10px;
}

.home-sec-4 ul li:hover a {
    cursor: pointer;
}

.home-sec-4 ul li a img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.home-sec-4 ul li a label {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0;
    cursor: pointer;
}

.home-sec-4 ul li:hover {
    margin-left: 5px;
}

.home-sec-4 ul li:hover a label {
    color: #fd8835;
}

.home-sec-4 a.more {
    background: #3aa9ce;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    margin-top: 30px;
    padding: 20px 40px;
    display: inline-block;
    border-radius: 4px;
}

.home-sec-4 a.more:hover {
    background: #fd8835;
}

.home-sec-4 .sec-2 {
    text-align: right;
}

.home-sec-4 .sec-2 img {
    display: inline-block;
}

.home-sec-5 {
    background: url(../img/home-bg-1.png);
    padding: 60px;
    margin-top: 0px;
}

.home-sec-5 h5 {
    /* color: #fd8835; */
    color: #0075bf;
    font-size: 42px;
    font-weight: 1000;
    font-family: 'Lato', sans-serif;
    margin-bottom: 15px;
	letter-spacing:0.5px;
}

.home-sec-5 h6 {
    color: #4a4a4a;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0px;
	line-height:32px;
	border-bottom:1px dotted #c7c5c5;
	padding-bottom:10px;
}

.home-sec-5 p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 20px;
    text-align: justify;
}

.home-sec-5 .trade {
    margin-top: 15px;
}

.home-sec-5 .trade img {
    display: inline-block;
    width: 49%;
    vertical-align: middle;
}

.home-sec-5 a.more {
    background: #d28f20;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    margin-top: 10px;
    padding: 16px 30px;
    display: inline-block;
    border-radius: 4px;
    float: right;
}
.home-sec-5 a.sec_more {
    background: #0075bf;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    margin-top: 10px;
    padding: 16px 30px;
    display: inline-block;
    border-radius: 4px;
    float: right;
}
.mob-center a{margin:0 10px;}

.home-sec-5 a.more:hover {
    background: #fd8835;
}

.home-sec-6 {
    padding-top: 60px;
    padding-bottom: 80px;
	background:#f1f1f1;
}

.home-sec-6 .sec-1 .bg {
    /* background: url(../img/testimonial-bg-1.png) no-repeat; */
    background: url(../images/testimonial-bg-1.png) no-repeat;
    width: 438px;
    height: 415px;
}

.home-sec-6 h6 {
    color: #4a4a4a;
    margin-left: 100px;
    font-size: 31px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
    text-align: center;
}

.home-sec-6 .sec-1 label {
    color: #3aa9ce;
    font-size: 28px;
    padding: 55px 90px;
    line-height: 36px;
    font-weight: 600;
}

.home-sec-6 .sec-2 .bg {
    background-image: linear-gradient(to right, #151d2a, #2c4154);
    padding: 40px 95px 40px 60px;
    border-radius: 10px;
}

.home-sec-6 .sec-2 .owl-carousel .profile img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: auto;
}

.home-sec-6 .sec-2 .owl-carousel .profile .inline {
    display: inline-block;
    vertical-align: middle;
}

.home-sec-6 .sec-2 .owl-carousel .profile .inline label {
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    display: block;
}

.home-sec-6 .sec-2 .owl-carousel .profile .inline span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    line-height: 25px;
}

.home-sec-6 .sec-2 .owl-carousel p {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    text-align: justify;
    line-height: 30px;
    margin-top: 15px;
}

.home-sec-6 ul {
    float: right;
    margin-top: 31px;
}

.home-sec-6 ul li {
    display: inline-block;
}

.home-sec-6 .owl-dots .owl-dot {
    background: #cccccc !important;
    width: 18px;
    height: 18px;
    margin-right: 11px;
    display: inline-block;
    border-radius: 50%;
}

.home-sec-6 .owl-dots .owl-dot.active {
    background: #0075bf !important;
}

.home-sec-6 .owl-dots {
    position: absolute;
    bottom: -75px;
    left: -64px;
}

.home-sec-7 {
    margin-top: 95px;
    background: #eaeaea;
    padding: 85px 0 75px 0;
}

.home-sec-7 .sec-1 label {
    color: #fd8835;
    font-size: 35px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.home-sec-7 .sec-1 p {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    line-height: 32px;
}

.home-sec-7 .owl-dots {
    position: absolute;
    left: -611px;
    top: 95px;
}

.home-sec-7 .owl-dots .owl-dot {
    width: 90px;
    height: 89px;
    display: inline-block;
}

.home-sec-7 .owl-dots .owl-dot:first-child {
    background: url(../images/before-after-dot-icon-1.png) no-repeat;
}

.home-sec-7 .owl-dots .owl-dot:nth-child(2) {
    background: url(../images/before-after-dot-icon-2.png) no-repeat;
}

.home-sec-7 .owl-dots .owl-dot:nth-child(3) {
    background: url(../images/before-after-dot-icon-3.png) no-repeat;
}

.home-sec-7 .owl-dots .owl-dot:nth-child(4) {
    background: url(../images/before-after-dot-icon-4.png) no-repeat;
}

.home-sec-7 .owl-dots .owl-dot:last-child {
    background: url(../images/before-after-dot-icon-5.png) no-repeat;
}

.home-sec-7 .owl-dots .owl-dot.active {
    opacity: 0.5;
}

.home-sec-8 {
    background: #f7a233;
    padding: 45px 0 35px 0;
}

.home-sec-8 .owl-item .bg {
    margin: 0 10px;
}

.home-sec-8 .owl-dots .owl-dot {
    background: #c87923 !important;
    width: 18px;
    height: 18px;
    margin-right: 11px;
    display: inline-block;
    border-radius: 50%;
}

.home-sec-8 .owl-dots .owl-dot.active {
    background: #ffffff !important;
}

.home-sec-8 .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.home-sec-9 {
    padding-top: 75px;
}

.home-sec-9 h3 {
    color: #fd8835;
    font-size: 38px;
    font-weight: 600;
    margin: 0 0 10px 13px;
    font-family: 'Lato', sans-serif;
}

.home-sec-9 span {
    color: #000000;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    margin-left: 15px;
    font-family: 'Lato', sans-serif;
}

.home-sec-9 form {
    width: 100%;
}

.home-sec-9 form .s1 {
    padding: 0;
}

.home-sec-9 .form-group {
    margin-bottom: 27px;
}

.home-sec-9 .form-group img {
    position: absolute;
    top: 10px;
    left: 20px;
}

.home-sec-9 .form-group.msg img {
    top: 5px;
}

.home-sec-9 .form-group.last img {}

.home-sec-9 .form-group.time select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.home-sec-9 input[type="date"]::-webkit-calendar-picker-indicator {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.home-sec-9 input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
}

/*input[type="time"]::-webkit-calendar-picker-indicator {
   background: none;
}*/

.home-sec-9 .form-group.last .form-control {}

.home-sec-9 .form-group.msg .form-control {
    line-height: 32px;
}

.home-sec-9 .form-group .form-control {
    height: 50px;
    border-radius: 10px;
    padding: 6px 10px 6px 42px;
    font-size: 18px;
    color: #727272;
    min-width: 100%;
}

.home-sec-9 .submit {
    display: inline-block;
    margin-left: 15px;
}

.home-sec-9 .submit button {
    background: #5f2983;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    margin-top: 10px;
    margin-bottom: 50px;
    padding: 25px 50px;
    display: inline-block;
    border-radius: 4px;
    float: right;
    line-height: 0px;
}

.home-sec-9 .submit button:hover,
.home-sec-9 .submit button:focus {
    outline: none;
    background: #fd8835;
    border: 1px solid rgb(253 137 54 / 0%);
}

.home-sec-9 .sec-1 {
    position: relative;
}

.home-sec-9 .sec-1 .base {
    position: absolute;
    top: 13px;
    left: -178px;
    width: 48%;
}

.home-sec-9 .sec-1 .call {
    position: absolute;
    top: 320px;
    right: 814px;
}

.home-sec-9 .sec-1 .emr {
    position: absolute;
    top: 228px;
    left: 162px;
    color: #18202d;
    font-size: 22px;
    font-weight: 500;
    line-height: 25px;
}

.home-sec-9 .sec-1 .call img {
    display: inline-block;
    vertical-align: top;
    width: 11%;
}

.home-sec-9 .sec-1 .call span {
    font-size: 48px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
}

/*Breadcrum*/

.breadcrum {
    padding: 20px 0 0 0px;
}

.breadcrum a {
    color: #b5b5b4;
    font-size: 15px;
    font-weight: 400;
}

.breadcrum a.active {
    color: #fff;
    font-weight: 500;
}

.breadcrum span {
    color: #b5b5b4;
    font-size: 15px;
    font-weight: 400;
    margin: 0 5px;
}

/*Treatment*/

.treatment-sec-1 {
    margin-top: 50px;
}

.treatment-sec-1 h2 {
    color: #0075bf;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Fira Sans', sans-serif;
    margin-bottom: 15px;
}

.treatment-sec-1 h2 span {
    color: #fd8835;
    font-size: 23px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

.treatment-sec-1 h3 {
    color: #0075bf;
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 15px;
}

.treatment-sec-1 .left p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    line-height: 30px;
    margin-bottom: 10px;
}
.treatment-sec-1 .serv_img{
	padding-bottom:25px;
}
.treatment-sec-1 .serv_img img{
	width:100%;
	border:5px solid #ddd;
}

.treatment-sec-1 .left b {
    color: #000000;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 26px;
    display: block;
}

.treatment-sec-1 .left p b {
    color: #fd8835;
    font-size: 17px;
    display: inline-block;
    margin-bottom: 0;
}
.treatment-sec-1 .left ul{padding-bottom:10px;}
.treatment-sec-1 .left ul li{
	color: #282828;
    font-size: 16px;
    /* font-weight: 400; */
    font-family: 'Roboto', sans-serif;
	position:relative;
	padding-left:24px;
	line-height:28px;
	margin:8px 0;
}
.treatment-sec-1 .left ul li b{
	color: #282828;
    font-size: 16px;
    /* font-weight: 400; */
    font-family: 'Roboto', sans-serif;
	margin:0px;
	display:inline-block;
}
.treatment-sec-1 .left ul li i{
	color:#fd8835;
	position:absolute;
	left:0px;
	top:6px;
}

.treatment-sec-1 .left p.call {
    color: #000000;
    font-size: 17px;
    font-weight: 700;
}

.treatment-sec-1 .left p.call b {
    color: #fd8835;
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
}

/* .treatment-sec-1 .left ul li { */
    /* color: #000000; */
    /* font-size: 17px; */
    /* font-weight: 400; */
    /* text-align: justify; */
    /* line-height: 30px; */
    /* margin-bottom: 30px; */
/* } */

.treatment-sec-1 ul.dot li {
    margin-bottom: 15px;
    margin-left: 20px;
    position: relative;
}

.treatment-sec-1 ul.dot li:last-child {
    margin-bottom: 30px;
}

.treatment-sec-1 ul.dot li:before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background: #fd8835;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: -20px;
}

.treatment-sec-1 .left .mid-ul .left {
    padding-left: 0;
}

.treatment-sec-1 .left .mid-ul .left ul li {
    padding-left: 25px;
    position: relative;
}

.treatment-sec-1 .left .mid-ul .left ul li:before {
    content: "";
    display: inline-block;
    width: 45px;
    height: 45px;
    position: absolute;
    left: 0;
    background: url(../images/oral-hygeine-icon-2.png);
}

.treatment-sec-1 .left .mid-ul .left ul li:first-child:before {
    background: url(../images/oral-hygeine-icon-1.png);
}

.treatment-sec-1 .left .mid-ul .left ul li:nth-child(2):before {
    background: url(../images/oral-hygeine-icon-2.png);
}

.treatment-sec-1 .left .mid-ul .left ul li:last-child:before {
    background: url(../images/oral-hygeine-icon-3.png);
}

.treatment-sec-1 .left .mid-ul .right {
    text-align: right;
}

.treatment-sec-1 .left .mid-ul.doc-img .right {
    text-align: left;
}

.treatment-sec-1 .left .mid-ul .right img {
    display: inline-block;
}

.treatment-sec-1 .left .mid-ul .right img.second {
    margin-top: 45px;
}

.treatment-sec-1 .left .common_injuries {
    margin-bottom: 40px;
    display: inline-block;
}

.treatment-sec-1 .left .common_injuries.title {
    margin-bottom: 0px;
}

.treatment-sec-1 .left .common_injuries label {
    color: #fd8835;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    display: block;
    margin-bottom: 30px;
    line-height: 32px;
}

.treatment-sec-1 .left .common_injuries ul li {
    padding-left: 68px;
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    position: relative;
}

.treatment-sec-1 .left .common_injuries .one {
    padding-left: 0;
}

.treatment-sec-1 .left .common_injuries ul li:before {
    content: "";
    display: inline-block;
    width: 45px;
    height: 45px;
    position: absolute;
    left: 0;
    top: -5px;
    background: url(../images/oral-hygeine-icon-2.png);
}

.treatment-sec-1 .left .common_injuries .one ul li:first-child:before {
    background: url(../images/common_injuries_icon_1.png);
}

.treatment-sec-1 .left .common_injuries .one ul li:nth-child(2):before {
    background: url(../images/common_injuries_icon_2.png);
}

.treatment-sec-1 .left .common_injuries .one ul li:nth-child(3):before {
    background: url(../images/common_injuries_icon_3.png);
}

.treatment-sec-1 .left .common_injuries .one ul li:nth-child(4):before {
    background: url(../images/common_injuries_icon_4.png);
}

.treatment-sec-1 .left .common_injuries .two ul li:first-child:before {
    background: url(../images/common_injuries_icon_5.png);
}

.treatment-sec-1 .left .common_injuries .two ul li:nth-child(2):before {
    background: url(../images/common_injuries_icon_6.png);
}

.treatment-sec-1 .left .common_injuries .two ul li:nth-child(3):before {
    background: url(../images/common_injuries_icon_7.png);
}

.treatment-sec-1 .left .common_injuries .two ul li:nth-child(4):before {
    background: url(../images/common_injuries_icon_8.png);
}

.treatment-sec-1 .left .common_injuries .two img {
    margin-top: 95px;
}

.treatment-sec-1 .right .sec-1 {
    border: 1px solid #eeeeee;
    border-radius: 5px;
}

.treatment-sec-1 .right .sec-1 label {
    background: #0075bf;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    padding: 20px 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-family: 'Lato', sans-serif;
}

.treatment-sec-1 .right .sec-1 ul li a {
    color: #414141;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 15px 0 15px 32px;
    font-family: 'Lato', sans-serif;
    border-bottom: 1px solid #eeeeee;
}

.treatment-sec-1 .right .sec-1 ul li a.active {
    color: #d28f20;
}

.treatment-sec-1 .right .sec-1 ul li a:hover {
    color: #d28f20;
}

.treatment-sec-1 .right .sec-1 ul li a:before {
    content: "";
    background: #0075bf;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: 18px;
}

.treatment-sec-1 .right .sec-1 ul li a:hover:before {
    background: #d28f20;
}

.treatment-sec-1 .right .sec-1 ul li a.active:before {
    background: #d28f20;
}

.treatment-sec-1 .right .sec-3 {
    position: relative;
    margin-top: 30px;
}

.treatment-sec-1 .right .sec-4 {
    position: relative;
    margin-top: 70px;
}

.treatment-sec-1 .right .sec-3 label {
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    background: #253648;
    padding: 25px 0;
    text-align: center;
    width: 98.4%;
    position: absolute;
    bottom: -46px;
    left: 2px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.treatment-sec-1 .right .ex-pic {
    margin-top: 78px;
}

.home-sec-6.treatment .sec-2 {
    width: 263px;
}

.home-sec-6.treatment .sec-2 .bg {
    padding: 28px 15px 40px 20px;
}

.home-sec-6.treatment .sec-2 .owl-carousel .profile img {
    width: 33%;
}

.home-sec-6.treatment .sec-2 .owl-carousel .profile .inline label {
    font-size: 13px;
}

.home-sec-6.treatment .sec-2 .owl-carousel .profile .inline span {
    font-size: 13px;
}

.home-sec-6.treatment ul {
    float: none;
    text-align: center;
}

.home-sec-6.treatment .owl-dots {
    bottom: -85px;
    left: 75px;
}

.home-sec-6.treatment .owl-dots .owl-dot {
    width: 18px;
    height: 18px;
}

.treatment-footer {
    position: relative;
    margin-top: 0px;
}

.treatment-footer.offer {
    margin-top: 0;
}

.treatment-footer .sec-1 {
    background: url(../images/treatment-footer-bg.png) no-repeat;
    height: 285px;
    width: 100%;
    background-size: cover;
    margin-bottom: -1px;
}

.treatment-footer .sec-1.offers {
    margin-top: -97px;
}

.inner-banner.book-appointment1 h2.offers {
    margin-bottom: -30px;
    z-index: 1;
    position: relative;
    margin-top: 14px;
    color: #ffffff;
    font-size: 23px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 30px;
}

.treatment-footer .sec-1 .dial {
    position: absolute;
    top: 150px;
    left: 35%;
}

.treatment-footer .sec-1 span {
    color: #18202d;
    font-size: 29px;
    font-weight: 400;
    display: block;
}

.treatment-footer .sec-1 a img {
    display: inline-block;
    margin-right: 5px;
    vertical-align: text-bottom;
}

.treatment-footer .sec-1 a label {
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 2px;
	padding-top:15px;
}

.treatment-footer .sec-2 {
    padding: 45px 0;
}

.treatment-footer .sec-2 h3 {
    font-size: 38px;
    color: #fd8835;
    font-weight: 600;
    text-align: center;
}

.treatment-footer .sec-2 label {
    color: #000000;
    font-size: 19px;
    font-weight: 400;
    text-align: center;
    margin: 10px 0 20px 0;
    width: 100%;
}

.treatment-footer .form-group {
    margin-bottom: 27px;
}

.treatment-footer .form-group img {
    position: absolute;
    top: 10px;
    left: 19px;
}
.treatment-footer .form-group .captc{
	left:unset!important;
	right:30px;
}

.treatment-footer .form-group.msg img {
    top: 3px;
}

.treatment-footer .form-group.last img {}

.treatment-footer .form-group.time select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.treatment-footer input[type="date"]::-webkit-calendar-picker-indicator {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.treatment-footer input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.treatment-footer .form-group .form-control {
    height: 50px;
    border-radius: 10px;
    padding: 6px 15px 6px 42px;
    font-size: 18px;
    color: #727272;
    font-size: 16px;
}

.treatment-footer .submit {
    width: 16%;
    margin: 0 auto;
}

.treatment-footer .submit button {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    background: #3aa9ce;
    font-family: 'Lato', sans-serif;
    padding: 20px 0;
    line-height: 0;
    border-radius: 5px;
    outline: none;
    border: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: none;
    width: 30%;
}

.treatment-footer .form-group.msg img {
    top: 5px;
}

.treatment-footer .form-group.msg .form-control {
    line-height: 32px;
}

.treatment-footer .form-group.last .form-control {}

/*about Us*/


ul.about-star li {
    color: #000000 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    padding-left: 40px;
    font-family: 'Lato', sans-serif;
    position: relative;
}

ul.about-star li:before {
    content: "";
    background: url(../images/about-star-icon.png) no-repeat;
    width: 25px;
    height: 25px;
    display: inline-block;
    position: absolute;
    top: 2px;
    left: 0px;
}

ul.about-star li:first-child {
    margin-bottom: 15px;
}

.about-label {
    color: #fd8835 !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.treatment-sec-1 h3 span {
    color: #5f747b;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

.about-clinic-scroll .bg {
    margin-top: 15px;
}

.about-clinic-scroll .owl-dots {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 35px;
}

.about-clinic-scroll .owl-dots .owl-dot {
    background: #cccccc !important;
    width: 18px;
    height: 18px;
    margin-right: 11px;
    display: inline-block;
    border-radius: 50%;
}

.about-clinic-scroll .owl-dots .owl-dot.active {
    background: #fd8835 !important;
}

.about-office {
    margin-top: 30px;
}

.panel-group .panel {
    margin-bottom: 15px !important;
    border: 1px solid #eaeaea;
}

.about-office .panel-title {
    color: #2b2b2b;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    line-height: 28px;
}

.about-office .panel-default>.panel-heading+.panel-collapse.in>.panel-body {
    background: #fff8e1;
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    text-align: justify;
}

.about-office .panel-default>.panel-heading {
    background-color: #ffffff;
}

.about-acc-tit label {
    color: #fd8835;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 10px;
}

/*Contact us*/

.contact-sec-1 {
    margin-top: 60px;
}

.contact-sec-1 h3 {
    color: #3aa9ce;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
}

.contact-sec-1 p {
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 27px;
}

.contact-sec-2 {
    margin-top: 30px;
}

.contact-sec-2 h2 {
    color: #3a3a3a;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-align: center;
    margin-bottom: 45px;
}

.contact-sec-2 .bg {
    border: 2px solid #c4d2db;
    height: 240px;
    position: relative;
    padding: 50px 30px 0px 30px;
}

.contact-sec-2 .bg.one:before {
    content: "";
    background: url(../images/contact-us-bg-1.png);
    width: 66px;
    height: 66px;
    display: inline-block;
    position: absolute;
    top: -35px;
    left: 20px;
}

.contact-sec-2 .bg.two:before {
    content: "";
    background: url(../images/contact-us-bg-2.png);
    width: 66px;
    height: 66px;
    display: inline-block;
    position: absolute;
    top: -35px;
    left: 20px;
}

.contact-sec-2 .bg.three:before {
    content: "";
    background: url(../images/contact-us-bg-3.png);
    width: 66px;
    height: 66px;
    display: inline-block;
    position: absolute;
    top: -35px;
    left: 20px;
}

.contact-sec-2 .bg:after {
    content: "";
    height: 8px;
    width: 101%;
    background: #0075bf;
    display: inline-block;
    position: absolute;
    bottom: -3px;
    left: -1px;
}

.contact-sec-2 .bg label {
    color: #2d2d2d;
    font-size: 18px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    display: block;
    margin-bottom: 10px;
}

.contact-sec-2 .bg address {
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.contact-sec-2 .bg a {
    color: #2d2d2d;
    font-size: 23px;
    font-weight: 400;
    line-height: 29px;
}

.contact-sec-2 .bg a.email {
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 400;
}

.contact-sec-3 {
    background: url(../images/attach_bg.png) no-repeat;
    background-size: cover;
    height: 450px;
    margin-top: 60px;
}

.contact-sec-3 .treatment-footer h3 {
    color: #ffffff;
}

.contact-sec-3 .treatment-footer label {
    color: #ffffff;
}

.contact-sec-3 .treatment-footer .submit button {
    background: #fd8835;
    border: 0;
    outline: 0;
}

.contact-sec-3 .treatment-footer .sec-2 {
    padding: 83px 0 45px 0
}

.contact-sec-4 {
    margin-top: 60px;
}

.contact-sec-4 h2 {
    color: #5f2983;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-align: center;
    margin-bottom: 45px;
}

.contact-sec-4 p {
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    margin-top: -15px;
}

.contact-sec-4 b {
    color: #fd8835;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: inline-block;
    line-height: 42px;
    margin-bottom: 40px;
}

.contact-sec-4 span {
    color: #fd8835;
}

.contact-sec-5 {
    margin-top: 60px;
}

.contact-sec-5 label {
    color: #3aa9ce;
    font-size: 30px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    line-height: 32px;
}

.contact-sec-5 p {
    color: #272626;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin-top: 20px;
}

.contact-sec-5 label b {
    font-size: 37px;
    font-weight: 500;
}

.contact-sec-5 form {
    margin-left: -32px;
    margin-top: 40px;
}

.contact-sec-5 .form-group .form-control {
    height: 50px;
    border-radius: 10px;
    padding: 6px 40px;
    font-size: 18px;
    color: #727272;
}

.contact-sec-5 .form-group img {
    position: absolute;
    top: 10px;
    left: 19px;
}

.contact-sec-5 .submit {
    width: 20%;
    margin-left: 33px;
}

.contact-sec-5 .submit button {
    background: #fd8835;
    border: 0;
    outline: 0;
}

.contact-sec-6 {
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
}

.contact-sec-6 h2 {
    color: #3aa9ce;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-align: center;
    margin-bottom: 45px;
}

.contact-sec-6 p {
    color: #262727;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    width: 101%;
    padding: 40px 380px 40px 40px;
    background: url(../images/contact-bg-1.png) no-repeat;
}

/*Success Stories*/

.breadcrum.success {
    background: #f9f9f9;
}

.success-sec-1 {
    padding-top: 60px;
    background: #f9f9f9;
}

.success-sec-1 h2 {
    color: #414242;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-align: center;
    margin-bottom: 10px;
}

.success-sec-1 label {
    color: #fd8835;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
}

.success-sec-1 h2 span {
    color: #3aa9ce;
}

.success-sec-1 {
    padding-bottom: 60px;
}

.success-sec-1 .bg {
    background-image: linear-gradient(to right, #151d2a, #2c4154);
    border: 1px solid rgb(222 219 219 / 50%);
    margin-top: 20px;
    border-radius: 10px;
    position: relative;
}

.success-sec-1 .bg.one {
    height: 492px;
}

.success-sec-1 .bg.two {
    height: 605px;
}

.success-sec-1 .bg.three {
    height: 858px;
}

.success-sec-1 .bg img.main {
    position: absolute;
    top: 20px;
}

.success-sec-1 .owl-carousel .owl-item img {
    width: auto;
}

.success-sec-1 .bg .content {
    padding: 45px 50px 30px 220px;
}

.success-sec-1 .bg .content h1 {
    color: #fd8835;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    border-bottom: 1px solid #fd8835;
    padding-bottom: 4px;
}

.success-sec-1 .bg .content span {
    color: #48b0d5;
    font-size: 18px;
    font-weight: 400;
    padding-top: 5px;
    display: inline-block;
}

.success-sec-1 .bg .content p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding-top: 30px;
    line-height: 27px;
}

.success-sec-1 .bg .content img {
    margin-left: 70px;
}

.success-sec-1 .owl-nav .fa-angle-left:before {
    color: #fd8835;
    font-size: 45px;
    position: absolute;
    left: -40px;
    top: 30%;
}

.success-sec-1 .owl-nav .fa-angle-right:before {
    color: #fd8835;
    font-size: 45px;
    position: absolute;
    right: -40px;
    top: 30%;
}

.success-sec-1 .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.success-sec-1 .owl-dots .owl-dot {
    background: #cccccc !important;
    width: 18px;
    height: 18px;
    margin-right: 11px;
    display: inline-block;
    border-radius: 50%;
}

.success-sec-1 .owl-dots .owl-dot.active {
    background: #f76d02 !important;
}

/*gallery*/

.gallery-sec-1.before-after ul li span.gal-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    background: #ff9b1e;
    padding: 10px 0;
    text-align: center;
    display: inline-block;
    width: 85%;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    line-height: 14px;
}

.footer {
    background-image: linear-gradient(to right, #151d2a, #2c4154);
    padding-top: 50px;
}

.footer h1 {
    color: #d2d2d2;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
	padding-bottom:10px;
}

.footer ul li a {
    color: #d2d2d2;
    margin-top: 15px;
    font-size: 16px;
    display: inline-block;
}

.footer ul li:hover a {
    color: #fd8835;
}

.footer .bg {
    border-right: 1px solid #454d58;
    padding-left: 0px;
}

.footer .first .bg {
    padding-left: 0px;
}

.footer .last h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer .mid {
    padding-top: 25px;
}

.footer .last .bg {
    padding-top: 35px;
    border-right: 0;
    padding-left: 10px;
}

.footer .last a {
    color: #d2d2d2;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.footer .last a span {
    color: #fff;
}

.footer .sec-2 {
    border-top: 1px solid #454d58;
    display: inline-block;
    width: 100%;
    padding-top: 45px;
    padding-bottom: 35px;
    margin-top: 40px;
}

.footer .sec-2 address {
    color: #d2d2d2;
    font-size: 18px;
    line-height: 27px;
    margin-top: 5px;
}

.footer .sec-2 a {
    color: #d2d2d2;
    font-size: 18px;
    line-height: 27px;
    margin-top: 10px;
    display: block;
}

.footer .sec-2 a img {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.footer .sec-2 .address {
    padding: 15px 40px;
    border: 1px solid #444a55;
    border-radius: 10px;
    margin-right: 15px;
    background: rgb(39 57 71 / 20%);
}

.footer .sec-2 .address:before {
    content: "";
    width: 16px;
    height: 146px;
    background: #f3f3f3;
    display: inline-block;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: 16px;
    top: 40px;
}

.footer .sec-2 .address:after {
    content: "";
    width: 16px;
    height: 146px;
    background: #f3f3f3;
    display: inline-block;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    right: 31px;
    top: 40px;
}

.sms_logo{padding-left:10px;}
.sms_logo img{width:20px;}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: pink;
}


::-moz-placeholder {
    /* Firefox 19+ */
    color: pink;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: pink;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: pink;
}

ul {
    list-style-type: none;
}

.social_media ul li {
    display: inline-block;
}

.social_media ul {
    margin-top: 13px;
}

.social_media ul li a i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #fff;
    font-size: 19px;
}

.social_media ul li a .fa-facebook {
    background: #4b69b0;
}

.social_media ul li a .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social_media ul li a .fa-twitter {
    background: #1da1f2;
}

.social_media ul li a .fa-whatsapp {
    background: #0072bc;
}

.social_media ul li a .fa-youtube-play {
    background: #d1313e;
}

.social_media ul li a .fa-linkedin {
    background: #1378b6;
}

.cpy-rght {
    background: #0075bf;
    padding: 10px 0;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.cpy-rght p,
.cpy-rght p a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
}

.cpy-rght p.left {
    float: left;
}

/*.cpy-rght p.right{float:right;}*/

.fixed-scroll {
    position: fixed;
    bottom: 0;
    right: 5px;
    z-index: 2;
    text-align: center;
}

.fixed-scroll ul li {
    text-align: center;
    margin-top: 6px;
}

.fixed-scroll ul li a {
    display: inline-block;
    width: 100%;
}

.fixed-scroll ul li a img {
    display: inline-block;
    width: 78%;
}

.fixed-scroll .social_media li {
    display: block;
    margin-top: 7px;
}

.fixed-scroll .social_media li a {
    background: transparent;
    display: block;
}

.fixed-scroll .scroll-top {
    cursor: pointer;
}

.fixed-scroll .sec-2 {
    background: #fd8936;
    padding: 7px 10px;
}

.fixed-scroll .sec-2 .img-sec {
    display: inline-block;
    vertical-align: middle;
}

.fixed-scroll .sec-2 .con-sec {
    display: inline-block;
    vertical-align: middle;
}

.fixed-scroll .sec-2 span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.fixed-scroll .sec-2 label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/*lightgallery*/

.small {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: -10px
}

.cont {
    text-align: center;
}

.page-head {
    padding: 60px 0;
    text-align: center;
}

.page-head .lead {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 50px;
    margin-top: 0;
}

.btn {
    -moz-user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857;
    margin-bottom: 0;
    padding: 6px 12px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    text-decoration: none;
}

.btn-lg {
    border-radius: 2px;
    font-size: 18px;
    line-height: 1.33333;
    padding: 10px 16px;
}

.btn-primary:hover {
    background-color: #fff;
    color: #152836;
}

.btn-primary {
    background-color: #152836;
    border-color: #0e1a24;
    color: #ffffff;
}

.btn-primary {
    border-color: #eeeeee;
    color: #eeeeee;
    transition: color 0.1s ease 0s, background-color 0.15s ease 0s;
}

.page-head h1 {
    font-size: 42px;
    margin: 0 0 20px;
    color: #FFF;
    position: relative;
    display: inline-block;
}

.page-head h1 .version {
    bottom: 0;
    color: #ddd;
    font-size: 11px;
    font-style: italic;
    position: absolute;
    width: 58px;
    right: -58px;
}

.demo-gallery>ul {
    margin-bottom: 0;
    padding-left: 15px;
}

.demo-gallery>ul>li {
    margin-bottom: 15px;
    width: 180px;
    display: inline-block;
    margin-right: 15px;
    list-style: outside none none;
    width: 23%;
    padding: 0px;
}

.demo-gallery>ul>li a {
    border: 0;
    border-radius: 3px;
    display: block;
    overflow: hidden;
    position: relative;
    float: left;
}

.demo-gallery>ul>li a>img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}

.demo-gallery>ul>li a:hover>img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery>ul>li a:hover .demo-gallery-poster>img {
    opacity: 1;
}

.demo-gallery>ul>li a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.demo-gallery>ul>li a .demo-gallery-poster>img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.demo-gallery>ul>li a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery>a>img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}

.demo-gallery .justified-gallery>a:hover>img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster>img {
    opacity: 1;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster>img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster img {
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    opacity: 0.8;
    width: 48px;
}

.demo-gallery.dark>ul>li a {
    border: 3px solid #04070a;
}

/***button wave***/

.sonar-wrapper {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

/* The circle */

.sonar-emitter {
    position: fixed;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 9999px;
    background-color: #424765;
    bottom: 70px;
    left: 100px;
}

/* the 'wave', same shape and size as its parent */

.sonar-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background-color: transparent;
    border: 1px double #ccc;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.sonar-emitter img {
    padding: 10px;
    position: absolute;
    top: -18px;
    left: -16px;
}

/*
  Animate!
  NOTE: add browser prefixes where needed.
*/

.sonar-wave {
    animation: sonarWave 2s linear infinite;
}

@keyframes sonarWave {
    from {
        opacity: 0.4;
    }
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/*Slide Up Slide Down*/

.about-sec-3 .one {
    position: relative;
    top: 0;
    background-color: #43abf3;
    text-align: center;
    padding: 20px 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    z-index: 1;
    cursor: pointer;
}

.about-sec-3 .one span {
    width: 0;
    height: 0;
    border-top: 15px solid #ffffff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    display: inline-block;
    margin-left: 15px;
}

.about-sec-3 .two {
    position: relative;
    top: -40px;
    background-color: #fc5c5e;
    z-index: -1;
    -webkit-transition: top 1s;
    -moz-transition: top 1s;
    -o-transition: top 1s;
    transition: top 1s;
}

/*.one:hover + .two {
    top: 0px;
}*/

.home-sec-5 ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #555;
}

.home-sec-5 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #555;
}

.home-sec-5 ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #555;
}

/*Register and Login modal*/

.modal {
    top: 118px;
}

.modal-dialog {
    width: 60%;
}

.modal-header {
    border-bottom: 0;
}

.modal-header .close {
    background: #0d6bac;
    /* z-index: 9999; */
    opacity: 1;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    font-size: 35px;
}

.modal-header h4 {
    color: #ed1f24;
    font-size: 25px;
    text-transform: uppercase;
    padding: 20px 0 0 65px;
    font-weight: 600;
}

.modal-header h4:before {
    content: "";
    width: 242px;
    height: 13px;
    background: #ed1f24;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 57px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.modal form .form-control {
    border: 0;
    border-bottom: 1px solid #e3e3e3;
    box-shadow: none !important;
}

.modal form ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #063556;
}

.modalform :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #063556;
}

.modal form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #063556;
}

.modal form .submit button {
    background: #ffd202;
    color: #505050;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 20px;
}

.modal form .submit button img {
    margin-left: 30px;
}

.modal form .submit button:hover {
    border: 0;
}

#loginModal.modal form {
    padding-top: 36px;
    padding-left: 20px;
}

.modal-body {
    display: inline-block;
}

.modal-footer {
    display: inline-block;
}

#loginModal .log-img-sec {
    text-align: center;
}

#loginModal .log-img-sec img {
    width: 65%;
    display: inline-block;
}

.modal-open {
    z-index: 9999;
}

.modal .otp-sec {
    padding-left: 38px;
}

.modal .otp-sec input {
    border: 0;
    border-bottom: 1px solid grey;
    width: 50px;
    margin-right: 30px;
}

.modal .otp-sec input:focus {
    outline: 0;
}

.modal .otp-sec .submit button {
    margin-top: 40px;
    margin-left: 10px;
    color: #505050;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

/***************** Scroll anouncement ******************/

.scroll-left {
    height: 50px;
    overflow: hidden;
    position: relative;
}

.scroll-left p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    /* Starting position */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    -moz-animation: scroll-left 20s linear infinite;
    -webkit-animation: scroll-left 20s linear infinite;
    animation: scroll-left 20s linear infinite;
}

/* Move it (define the animation) */

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        /* Browser bug fix */
        -webkit-transform: translateX(100%);
        /* Browser bug fix */
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        /* Browser bug fix */
        -webkit-transform: translateX(-100%);
        /* Browser bug fix */
        transform: translateX(-100%);
    }
}

/***********************************chandrakanth******************************/

span.lnethr {
    text-decoration: line-through;
}

ul.paddingleft {
    padding-left: 20px;
}

.left h6 {
    color: #08315f;
    font-size: 20px;
    letter-spacing: 1px;
}

/*Accordion*/

.panel-title {
    font-size: 22px;
}

.about-office .panel-title>a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    color: #cccccc !important;
}

.about-office .panel-title>a.collapsed:before {
    content: "\e080";
    color: #000000 !important;
}

.panel-title>a:before {
    float: right !important;
    font-family: FontAwesome;
    content: "\f068";
    padding-right: 5px;
    color: #ff6700 !important;
    font-size: 13px;
}

.panel-title>a.collapsed:before {
    float: right !important;
    content: "\f067";
    color: #ff6700 !important;
    font-size: 13px;
}

.panel-title>a:hover,
.panel-title>a:active,
.panel-title>a:focus {
    text-decoration: none;
}

.mob-footer {
    background-image: linear-gradient(to right, #151d2a, #2c4053);
    padding: 30px 0;
    margin-top: 60px;
}

.mob-footer .panel {
    background: transparent;
    border: 0;
}

.mob-footer .panel .panel-body {
    color: #fff;
    padding: 15px 0;
}

.mob-footer .panel .panel-body ul li {
    border-bottom: 1px solid #454d57;
}

.mob-footer .panel-default>.panel-heading {
    color: #ffffff;
    background: transparent;
    border-bottom: 1px solid #6b839f;
}

.mob-footer .panel-default.last>.panel-heading {
    border-bottom: 0;
}

.mob-footer .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: 0;
}

.mob-footer .panel-body a,
.mob-footer .panel-body address {
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 18px;
    display: inline-block;
    padding: 8px 0 0px 15px;
}

.mob-footer .panel-body address {
    line-height: 30px;
}

*,
:after,
:before {
    box-sizing: border-box
}

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

.clearfix:after {
    clear: both;
    display: block
}

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

.exo-menu1{background: #0075bf;}
.exo-menu {
    width: 100%;
    float: left;
    list-style: none;
    position: static;
    background: #0075bf;
    border-top-left-radius: 100px;
    margin-left: 0px;
    margin-top: 0px;
}


.exo-menu>li {
    display: inline-block;
    float: left;
}

.exo-menu>li:nth-child(2) a {
    /* border-top-left-radius: 100px; */
    padding: 15px 22px 16px 22px;
}

.exo-menu>li:last-child a {
    box-shadow: none;
    border: 0;
}

.exo-menu>li>a {
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
    border-right: 0;
    box-shadow: 6px 3px 11px -5px #414a509e;
    -webkit-transition: color 0.2s linear, background 0.2s linear;
    -moz-transition: color 0.2s linear, background 0.2s linear;
    -o-transition: color 0.2s linear, background 0.2s linear;
    transition: color 0.2s linear, background 0.2s linear;
}

.exo-menu li.last a {
    box-shadow: none;
}

.exo-menu>li>a.active,
.exo-menu>li>a:hover,
li.drop-down ul>li>a:hover {
    background: #d28f20;
    color: #fff;
}

.exo-menu i {
    margin-left: 8px;
    color: #fff;
    font-weight: 900;
}

li.drop-down,
.flyout-right,
.flyout-left {
    position: relative;
}

li.drop-down:before {
    content: "\f103";
    color: #fff;
    font-family: FontAwesome;
    font-style: normal;
    display: inline;
    position: absolute;
    right: 6px;
    top: 20px;
    font-size: 14px;
}

li.drop-down>ul {
    left: 0px;
    min-width: 230px;
}

.drop-down-ul {
    display: none;
}

.flyout-right>ul,
.flyout-left>ul {
    top: 0;
    min-width: 230px;
    display: none;
    border-left: 1px solid #365670;
}

li.drop-down>ul>li>a,
.flyout-right ul>li>a,
.flyout-left ul>li>a {
    color: #fff;
    display: block;
    padding: 20px 22px;
    text-decoration: none;
    background-color: #365670;
    border-bottom: 1px dotted #547787;
    -webkit-transition: color 0.2s linear, background 0.2s linear;
    -moz-transition: color 0.2s linear, background 0.2s linear;
    -o-transition: color 0.2s linear, background 0.2s linear;
    transition: color 0.2s linear, background 0.2s linear;
}

.flyout-right ul>li>a,
.flyout-left ul>li>a {
    border-bottom: 1px dotted #B8C7BC;
}

/*Flyout Mega*/

.flyout-mega-wrap {
    top: 0;
    right: 0;
    left: 100%;
    width: 100%;
    display: none;
    height: 100%;
    padding: 15px;
    min-width: 742px;
}

h4.row.mega-title {
    color: #eee;
    margin-top: 0px;
    font-size: 14px;
    padding-left: 15px;
    padding-bottom: 13px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
}

.flyout-mega ul>li>a {
    font-size: 90%;
    line-height: 25px;
    color: #fff;
    font-family: inherit;
}

.flyout-mega ul>li>a:hover,
.flyout-mega ul>li>a:active,
.flyout-mega ul>li>a:focus {
    text-decoration: none;
    background-color: transparent !important;
    color: #ccc !important
}

/*mega menu*/

.mega-menu {
    left: 0;
    right: 0;
    padding: 15px;
    display: none;
    padding-top: 0;
    min-height: 100%;
}

h4.row.mega-title {
    color: #eee;
    margin-top: 0px;
    font-size: 14px;
    padding-left: 15px;
    padding-bottom: 13px;
    text-transform: uppercase;
    border-bottom: 1px solid #547787;
    padding-top: 15px;
    background-color: #365670
}

.mega-menu ul li a {
    line-height: 25px;
    font-size: 90%;
    display: block;
}

ul.stander li a {
    padding: 3px 0px;
}

ul.description li {
    padding-bottom: 12px;
    line-height: 8px;
}

ul.description li span {
    color: #ccc;
    font-size: 85%;
}

a.view-more {
    border-radius: 1px;
    margin-top: 15px;
    background-color: #009FE1;
    padding: 2px 10px !important;
    line-height: 21px !important;
    display: inline-block !important;
}

a.view-more:hover {
    color: #fff;
    background: #0DADEF;
}

ul.icon-des li a i {
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    background-color: #009FE1;
    line-height: 35px !important;
}

ul.icon-des li {
    width: 100%;
    display: table;
    margin-bottom: 11px;
}

/*Blog DropDown*/

.Blog {
    left: 0;
    display: none;
    padding-top: 0;
    background: #f3f3f3;
    padding-bottom: 0;
}

.Blog .blog-title {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
}

.Blog .blog-des {
    color: #ccc;
    font-size: 90%;
    margin-top: 15px;
}

.Blog a.view-more {
    margin-top: 0px;
}

/*Images*/

.Images {
    left: 0;
    width: 100%;
    display: none;
    color: #fefefe;
    padding-top: 15px;
    background: #547787;
    padding-bottom: 15px;
}

.Images h4 {
    font-size: 15px;
    margin-top: 0px;
    text-transform: uppercase;
}

/*common*/

.flyout-right ul>li>a,
.flyout-left ul>li>a,
.flyout-mega-wrap,
.mega-menu {
    background-color: #547787;
}

/*hover*/

.Blog:hover,
.Images:hover,
.mega-menu:hover,
.drop-down-ul:hover,
li.flyout-left>ul:hover,
li.flyout-right>ul:hover,
.flyout-mega-wrap:hover,
li.flyout-left a:hover+ul,
li.flyout-right a:hover+ul,
.blog-drop-down>a:hover+.Blog,
li.drop-down>a:hover+.drop-down-ul,
.images-drop-down>a:hover+.Images,
.mega-drop-down a:hover+.mega-menu,
li.flyout-mega>a:hover+.flyout-mega-wrap {
    display: block;
}

/*responsive*/

@media (min-width:767px) {
    .exo-menu>li>a {
        display: block;
        padding: 15px 26px;
    }
    .mega-menu,
    .flyout-mega-wrap,
    .Images,
    .Blog,
    .flyout-right>ul,
    .flyout-left>ul,
    li.drop-down>ul {
        position: absolute;
    }
    .flyout-right>ul {
        left: 100%;
    }
    .flyout-left>ul {
        right: 100%;
    }
}

@media (max-width:767px) {
    .exo-menu {
        min-height: 58px;
        background-color: #23364B;
        width: 100%;
    }
    .exo-menu>li>a {
        width: 100%;
        display: none;
    }
    .exo-menu>li {
        width: 100%;
    }
    .display.exo-menu>li>a {
        display: block;
        padding: 20px 22px;
    }
    .mega-menu,
    .Images,
    .Blog,
    .flyout-right>ul,
    .flyout-left>ul,
    li.drop-down>ul {
        position: relative;
    }
}

a.toggle-menu {
    position: absolute;
    right: 0px;
    padding: 20px;
    font-size: 27px;
    background-color: #ccc;
    color: #23364B;
    top: 0px;
}

/********Photorestoration********/

/*Portion 1*/

#comparison {
    width: 100%;
    padding-bottom: 50%;
    overflow: hidden;
    position: relative;
}

figure {
    position: absolute;
    background-image: url(../images/img-modified1.jpg);
    background-size: cover;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

#divisor {
    background-image: url(../images/img-original1.jpg);
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    bottom: 0;
    height: 100%;
}

#divisor::before,
#divisor::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}

#divisor::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}

#divisor::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

#handle {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}

#handle::before,
#handle::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

#handle::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}

#handle::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}

/*Portion 2*/

#comparison1 {
    width: 100%;
    padding-bottom: 50%;
    overflow: hidden;
    position: relative;
}

figure1 {
    position: absolute;
    background-image: url(../images/img-modified1.jpg);
    background-size: cover;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

#divisor1 {
    background-image: url(../images/img-original1.jpg);
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    bottom: 0;
    height: 100%;
}

#divisor1::before,
#divisor1::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}

#divisor1::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}

#divisor1::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

#handle1 {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}

#handle1::before,
#handle1::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

#handle1::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}

#handle1::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}

/*Portion 3*/

#comparisontwo {
    width: 100%;
    padding-bottom: 50%;
    overflow: hidden;
    position: relative;
}

figuretwo {
    position: absolute;
    background-image: url(../images/img-modified1.jpg);
    background-size: cover;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

#divisortwo {
    background-image: url(../images/img-original1.jpg);
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    bottom: 0;
    height: 100%;
}

#divisortwo::before,
#divisortwo::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}

#divisortwo::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}

#divisortwo::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

#handletwo {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}

#handletwo::before,
#handletwo::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

#handletwo::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}

#handletwo::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}

input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    background-color: transparent;
    width: calc(100% + 50px);
    z-index: 2;
}

input[type=range]:focus,
input[type=range]:active {
    border: none;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid white;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}

input[type=range]::-moz-range-track {
    -moz-appearance: none;
    height: 15px;
    width: 100%;
    background-color: transparent;
    position: relative;
    outline: none;
}

/*Lightgallery icon changes*/

.lg-outer #lg-share {
    display: none;
}

#lg-actual-size {
    display: none;
}

.lg-fullscreen {
    display: none;
}

.lg-autoplay-button {
    display: none;
}

#lg-download {
    display: none;
}

.appointment-banner {
    background: url(../images/book-an-appointment.jpg) no-repeat center;
    padding: 60px 0;
    background-size: cover;
}

.no-pad {
    padding: 0;
}

input[type='time']::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 35%;
}

.book-appointment1 .offers-suh .time-clock .cntn ul li {}

.pos_abs {
    position: absolute;
    top: 43px;
    width: 100%;
}

.book-appointment1 .offers-suh .time-clock .cntn ul li:first-child label {
    font-size: 20px;
}

.popup {
    width: 724px;
}

.modal-content {
    padding: 0;
    background: none;
}

.modal-header {
    padding: 0;
}

.modal-header .close.popup {
    position: absolute;
    right: -2px;
    top: -35px;
    background: #fd8835;
    border-radius: 0;
    z-index: 2;
}

.modal-body.popup {
    padding: 0;
}

/******************************************************
Socail Fixed Icon
******************************************************/

.social_stickt {
    position: fixed;
    right: 10px;
    top: 1.3%;
    z-index: 9999;
}
.scl_discript li {
    list-style: none;
    width: 30px;
    height: 30px;
    text-align: center;
}
.scl_discript li a {
    background: #4382fa;
    padding: 5px;
    width: 30px;
    height: 30px;
    line-height: 21px;
    margin: 1px 0;
    display: block;
}
.scl_discript a i {
    color: #fff;
}



/******************************************************
Hospital Attachments
******************************************************/

.hospital_main{
	padding:50px 0;
	background:url(../images/attach_bg.png) no-repeat;
	background-size:100% 100%;
	width:100%;
	background-attachment:fixed;
}
.hospital_main1{
	padding:50px 0;
	/* background:url(../images/attach_bg.png) no-repeat; */
	/* background-size:100% 100%; */
	width:100%;
	/* background-attachment:fixed; */
}
.hosp_header_title h3{
	color: #f1f1f1;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 25px;
    text-align: center;
    /* text-transform: uppercase; */
}
.mb-4{margin-bottom:40px;}
.hosp_header_title1 h3{
	color: #4a4a4a;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin-bottom: 25px;
    text-align: center;
    /* text-transform: uppercase; */
}
.attach_det {
    background: #e9e9e9;
    padding: 35px 15px;
    border: 5px solid#d7d7d7;
    /* box-shadow: 1px 1px 10px 3px #d7d7d7; */
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* height: 330px; */
	border-radius:5px;
	margin:0 5px;
}
.attach_det h1 {
    font-size: 22px;
    font-family: 'Lato', sans-serif;
    color: #233344;
    font-weight: 600;
    margin: 0px;
    padding-bottom: 15px;
}
.attach_det ul {
    height: 100px;
    margin: 0px;
}
.attach_det ul li {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #4a4a4a;
	line-height:26px;
    padding: 0px 0 0 22px;
    margin: 7px 0;
    position: relative;
}
.attach_det ul li i {
    position: absolute;
    left: 0px;
    top: 5px;
    color: #f7a233;
}
.attach_det .hosp_btn {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background: #0075bf;
    padding: 7px 18px;
    font-weight: 400;
}

/********************************************************
Testimonials Section
********************************************************/

.testimonial_inner{
	padding:50px 0;
}
.testimonial_description{
	background:#f1f1f1;
	border:1px solid #ddd;
	padding:30px 30px 20px;
	box-shadow:0 0 9px 0px #ddd;
	margin:25px 0;
	border-radius:20px;
	position:relative;
}
.testimonial_description .google_img{
	position:absolute;
	right:30px;
	bottom:20px;
}
.testimonial_description .google_img img{
	width:150px;
}
.testimonial_description h1{
	color: #0075bf;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Fira Sans', sans-serif;
	padding-top:20px;
	padding-bottom:7px;
	/* text-align:right */
}
.testimonial_description ul{
	/* text-align:right; */
}
.testimonial_description ul li{
	padding:0 0px;
	display:inline-block;
	font-size:14px;
	color:yellow;
}
.testimonial_description ul li i{
	color:#fbbc04;
	font-size:14px;
}
.testimonial_description p{
	font-size:16px;
	color:#282828;
	line-height:30px;
	position:relative;
	padding-left:32px;
}
.testimonial_description p i{
	font-size:34px;
	color:#b7b6b6;
	position:absolute;
	left:-5px;
	top:-8px;
}
.review_btn{
	padding-top:40px;
}
.review_btn ul{
	margin:0px;
	padding:0px;
	text-align:center;
}
.review_btn ul li{
	
}
.review_btn ul li a{
	font-size:19px;
	color:#fff;
	background:#0075bf;
	font-family: 'Fira Sans', sans-serif;
	padding:9px 65px 9px 25px;
	position:relative;
	border-radius:25px;
}
.review_btn ul li a:hover{
	background:#e59d26;
	transition:0.5s;
}
.review_btn ul li a img{
	width:30px;
	position:absolute;
	right:20px;
	/* top:0px; */
	/* bottom:0px; */
}


/****************************************************************************
Blogs Section
****************************************************************************/

.press_home{
	padding:50px 0 90px;
}
.press_discription{
	border:1px solid #ddd;
	padding:30px 20px;
	margin:20px 0;
	background:#eef8ff;
}
.press_discription1{
	border:1px solid #ddd;
	padding:5px;
	margin:5px 0;
}
.press_discription h1{
	font-size:14px;
	color:#4a4a4a;
	font-family: 'Roboto', sans-serif;
	text-align:left;
	font-weight:600;
}
.press_discription .press_logo{
	text-align:left;
	padding:20px 00px;
}
.press_discription .press_logo img{
	width:100%;
}
.press_discription h2{
	font-size:22px;
	color:#000;
	font-family: 'Roboto', sans-serif;
	/* text-align:left; */
	font-weight:600;
	line-height:30px;
}
.press_discription1 h2 a{color:#282828;}
.press_discription1 h2{
	font-size:17px;
	text-align:center;
	padding-top:10px;
	color:#000;
	font-family: 'Roboto', sans-serif;
	/* text-align:left; */
	font-weight:600;
	line-height:25px;
}
.press_discription h2 a{
	color:#000;
}
.press_discription h2 a:hover{
	color:#386fa3;
}
.press_discription1 h2 a:hover{
	color:#386fa3;
}
.press_discription p{
	color:#4a4a4a;
	font-family: 'Roboto', sans-serif;
	line-height:25px;
	font-size:15px;
	/* text-align:justify; */
}
.press_discription .press_btn{
	padding-top:10px;
}
.press_discription .press_btn a{
	font-size:15px;
	font-family: 'Roboto', sans-serif;
	font-weight:600;
	color:#024e8c;
}


.bg1{background:#f1f1f1;}