/*@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');*/
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,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
 font-family: 'Montserrat', sans-serif;
  /* font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-family: 'ArialMTBlack';
  font-family: 'Source Sans Pro', sans-serif;*/
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  /* chrome */
  -moz-osx-font-smoothing: grayscale;
  /* moz */
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}
html {
  -webkit-text-size-adjust: none;
}
a,
a:hover {
  text-decoration: none;
  color: #000;
  outline: none;
}
a:focus {
  text-decoration: none;
}
:active,
:focus {
  outline: none !important;
}
p:empty {
  margin: 0 !important;
  padding: 0 !important;
}
/*br{display: none;}*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
::selection {
  background: #72d0ea;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #72d0ea;
  color: #fff;
  text-shadow: none;
}
::-webkit-selection {
  background: #72d0ea;
  color: #fff;
  text-shadow: none;
}
.clearfix:before,
.clearfix:after,
.row:after,
.row:before {
  content: '';
  display: table;
  clear: both;
}
/* MATERIAL DESIGN RIPPLE */
.ripple-wrapper {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.ripple-wrapper.animated {
  animation: ripple 0.65s linear;
  -webkit-animation: ripple 0.65s linear;
  -moz-animation: ripple 0.65s linear;
  -o-animation: ripple 0.65s linear;
}
.has-ripple {
  overflow: hidden;
  position: relative;
  user-select: none;
  outline: none;
}
@keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
@-webkit-keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
@-o-keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
@-moz-keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
/*************** common styles ***************/
p {
  font-size: 18px; 
  line-height:25px;
  letter-spacing: 0;
  margin: 10px 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight:400;
}
/******** variables ********/
/****** mixins *******/
/***** font case & alignment ******/
/*------------------------------------*\
    $MAIN
\*------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  margin: 0 auto;
  width: 100%;
  line-height:25px;
  background-color: #fff;
  letter-spacing: 0.05em;
  color: #000000;
  position: relative;
}
.black-cover {
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 2;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
#loader {
  height: 100%;
  background: #000;
  background: -moz-linear-gradient(-45deg, #000 0%, #000 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #000), color-stop(100%, #000));
  background: -webkit-linear-gradient(-45deg, #000 0%, #000 100%);
  background: -o-linear-gradient(-45deg, #000 0%, #000 100%);
  background: -ms-linear-gradient(-45deg, #000 0%, #000 100%);
  background: linear-gradient(135deg, #000 0%, #000 100%);
  background-attachment: fixed;
}
@-webkit-keyframes pulsate {
  0% {
    background-color: #f44336;
  }
  25% {
    background-color: #E91E63;
  }
  50% {
    background-color: #2196F3;
  }
  75% {
    background-color: #FFC107;
  }
  100% {
    background-color: #FF5722;
  }
}
@-moz-keyframes pulsate {
  0% {
    background-color: #f44336;
  }
  25% {
    background-color: #E91E63;
  }
  50% {
    background-color: #2196F3;
  }
  75% {
    background-color: #FFC107;
  }
  100% {
    background-color: #FF5722;
  }
}
@-o-keyframes pulsate {
  0% {
    background-color: #f44336;
  }
  25% {
    background-color: #E91E63;
  }
  50% {
    background-color: #2196F3;
  }
  75% {
    background-color: #FFC107;
  }
  100% {
    background-color: #FF5722;
  }
}
@keyframes pulsate {
  0% {
    background-color: #f44336;
  }
  25% {
    background-color: #E91E63;
  }
  50% {
    background-color: #2196F3;
  }
  75% {
    background-color: #FFC107;
  }
  100% {
    background-color: #FF5722;
  }
}
.loader {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
  -webkit-animation-duration: 80s;
  -moz-animation-duration: 80s;
  -o-animation-duration: 80s;
  animation-duration: 80s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: pulsate;
  -moz-animation-name: pulsate;
  -o-animation-name: pulsate;
  animation-name: pulsate;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
  -o-animation-direction: normal;
  animation-direction: normal;
}
.loader svg {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.container {
  margin: 0 auto;
}
.header {
  position: relative;
  z-index: 2;
  padding: 9px 0;
  -webkit-overflow-scrolling: touch;
}
.header .logo {
  float: left;
  padding-top: 3px;
 /* height: 77px;*/
}
.header .main-menu {
  float: right;
  margin-top:0;
  position:relative;
  text-align: right;
}
.header .main-menu ul {
  display: inline-block;
}
.header .main-menu ul li {
  display: inline-block;
  margin: 0 23px;
}
.header .main-menu ul li a {
  font-size: 14px;
  color: #474747;
  letter-spacing: 0.05em;
  line-height: 45px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}
.header .main-menu ul li a:after {
  visibility: hidden;
  position: absolute;
  content: "";
  width: 0%;
  height: 4px;
  border-radius: 5px;
  background: #e7201d !important;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 7px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.header .main-menu ul li.active a:after {
  /*display: block;*/
  width: 35px;
  visibility: visible;
}
.header .main-menu ul li:hover a:after {
  width: 35px;
  /* display: block;*/
  visibility: visible;
}
.header .main-menu ul li:last-child {
  margin-right: 0;
}
.header .main-menu ul li.dropdown .drop-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  min-width: 455px;
  padding-top: 10px;
}
.header .main-menu ul li.dropdown .drop-menu.add-animate {
  transform: translate(0, -7px);
  -webkit-transform: translate(0, -7px);
  -ms-transform: translate(0, -7px);
  -moz-transform: translate(0, -7px);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.header .main-menu ul li.dropdown .drop-menu ul {
  background: rgba(38, 38, 38, 0.9);
  padding: 25px 8px 25px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.header .main-menu ul li.dropdown .drop-menu ul:after {
  display: table;
  content: "";
  clear: both;
}
.header .main-menu ul li.dropdown .drop-menu li {
  margin: 0;
  padding: 0 15px 0 11px;
  width: 50%;
  float: left;
}
.header .main-menu ul li.dropdown .drop-menu li:first-child {
  display: block;
}
.header .main-menu ul li.dropdown .drop-menu li a {
  padding: 8px 0;
  color: #878787;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.header .main-menu ul li.dropdown .drop-menu li a:after {
  display: none;
}
.header .main-menu ul li.dropdown .drop-menu li a:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background: #939393;
  border-radius: 50%;
  left: 0;
  top: 13px;
}
.header .main-menu ul li.dropdown .drop-menu li a:hover {
  color: #fff;
}
.header .main-menu ul li.dropdown:hover .drop-menu {
  visibility: visible;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  opacity: 1;
}
.header .main-menu .site-login {
  /*display: inline-block;*/
  margin-left: 26px;
  width: 120px;
  display: none !important;
}
.header .main-menu .site-login a {
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 2.4;
  font-weight: 500;
  display: inline-block;
  position: relative;
  text-align: center;
  background-color: #ed0d16;
  border-radius: 3px;
  padding: 0px 17px 0 17px;
  width: 100%;
  /*i{position:absolute; top:6px; left:20px; width:20px; height:20px;  background: url('../img/sprite.png'); display: block; background-position: -202px -43px;}*/
}
.top_linkssec {
    padding-top:32px; 
}
.site-login a:before,
.site-login a:after {
  content: '';
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0px;
  background: #fff;
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.site-login a:before {
  left: 0px;
}
.site-login a:after {
  right: 0px;
}
.site-login a:hover:before,
.site-login a:hover:after {
  width: 100%;
}
.site-profile {
  position: relative;
  width: 120px;
  display: inline-block;
  margin-left: 26px;
}
.site-profile a.bnt-profile {
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 2.4;
  font-weight: 500;
  display: inline-block;
  position: relative;
  background-color: #575757;
  border-radius: 3px;
  text-align: center;
  width: 100%;
}
.site-profile ul.prof-down {
  position: absolute;
  top: 38px;
  left: 0px;
  background-color: #ffffff;
  border: 1px solid #d8d0d0;
  border-radius: 3px;
  box-shadow: -2px 4px 5px -1px #2f2a2a;
  opacity: 0;
  padding: 2px 5px;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transform: translate(0, -7px);
  -ms-transform: translate(0, -7px);
  -moz-transform: translate(0, -7px);
}
.site-profile ul.prof-down li {
  border-bottom: 1px solid #d8d0d0;
  margin: 0px 0px;
  width: 100%;
  padding-left: 32px !important;
  position: relative;
}
.site-profile ul.prof-down li:last-child {
  border-bottom: 0px;
}
.site-profile ul.prof-down li a {
  font-size: 13.5px;
  color: #464646;
  letter-spacing: 0.01em;
  line-height: 2.6;
  display: block;
}
.site-profile ul.prof-down li a:after {
  display: none;
}
.site-profile ul.prof-down li i {
  position: absolute;
  top: 4px;
  left: -28px;
  width: 25px;
  height: 25px;
  background: url('../img/sprite.png');
  display: block;
}
.site-profile ul.prof-down li:nth-of-type(1) i {
  background-position: -5px -236px;
}
.site-profile ul.prof-down li:nth-of-type(2) i {
  background-position: -29px -235px;
}
.site-profile:hover ul.prof-down {
  opacity: 1 !important;
  visibility: visible;
  -webkit-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
  -moz-transform: translate(0, 0px);
}
.banner .custom1 .tw-ban .btn_fill {
  background: #ff662f;
  border: 2px solid #ff662f;
}
.banner .custom1 .tw-ban .btn_fill:hover {
  background: #ffffff;
  border: 2px solid #ffffff;
}
.coverlink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
/*.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #FFFFFF;
  padding-bottom: 885px;
}*/
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #FFFFFF;
    height: 580px;
}
.custom1 {
  position: absolute;
}
.custom1,
.custom1 .owl-stage-outer,
.custom1 .owl-stage,
.custom1 .owl-item,
.custom1 .owl-item .item {
  height: 100%;
}
.custom1 .item {
  background-size: cover;
  background-position: center;
  padding-bottom: 265px;
  display: table;
  width: 100%;
}
/*.custom1 .item > div {
  display: table-cell;
  vertical-align: bottom;
}*/
.custom1 .item > div {
    padding: 200px 0;
    overflow: hidden;
}
.custom1 .item .image-contain {
  width: 175px;
}
.custom1 .item .banner-content {
  width: 475px;
  margin-bottom: 49px;
  margin-left: 5px;
}
.custom1 .item .banner-content h2 {
  font-size: 65px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 0.98;
  font-weight: 600;
  margin: 0;
  margin-top: -38px;
}
.custom1 .item .banner-content h2 span {
  color: #c7c0c4;
}
.custom1 .item .banner-content h2 br {
  display: block;
}
.custom1 .item .banner-content p {
  font-size: 26px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 25px;
  width: 100%;
}
.custom1 .item a {
  padding: 15px 30px;
  border-radius: 45px;
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1;
  letter-spacing: 0.06em;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.custom1 .item a:first-of-type {
  border: 2px solid #ffffff;
}
.custom1 .item a:last-of-type {
  background: #ff662f;
  border: 2px solid #ff662f;
}
.custom1 .item a:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.popup_crt img{
	width:100%;
}
.social a {
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    margin: 0 5px;
	display: inline-block;
	vertical-align: top;
}
.banner-links {
    background: rgba(0,0,0 ,0.7);
	/*padding-top: 17px;*/
}
/*-------------------------------------*/
figure img {
    border: 1px solid #eee;
}
@-webkit-keyframes faded {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes faded {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.banner-bottom {
  position: absolute;
  z-index: 1;
  /*bottom: 0;*/
  bottom: 110px;
  left: 10px;
  right: 0;
}
.banner-bottom #customDots {
  display: inline-block;
  margin-bottom: 80px;
}
.banner-bottom #customDots .owl-dot {
  display: inline-block;
  padding-right: 13px;
  margin-right: 20px;
  cursor: pointer;
}
.banner-bottom #customDots .owl-dot span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-block;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.banner-bottom #customDots .owl-dot.active span {
  opacity: 1;
}
.banner-bottom #customDots .owl-dot:last-of-type {
  margin-right: 0;
}
.banner-links {
  text-align: center;
 /* margin-bottom: 57px;*/
  padding: 8px 0;
}
.banner-links:after {
  content: "";
  display: inline-block;
  width: 100%;
}
/*.banner-links .item-link {
  display: inline-block;
  text-align: left;
  min-width: 250px;
  pointer-events: none;
}*/
.item-link span {
    display: inline-block;
}
.banner-links .item-link {
    display: inline-block;
    text-align: center;
    width: 290px;
    pointer-events: none;
    vertical-align: top;
}
.banner-links .item-link i {
  width: 48px;
  height: 48px;
  display: inline-block;
  background: url('../img/sprite.png');
  float: left;
  margin-right: 30px;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.banner-links .item-link:nth-of-type(1) i {
  width: 38px;
}
.banner-links .item-link:nth-of-type(2) i {
  background-position: -50px 2px;
}
.banner-links .item-link:nth-of-type(3) i {
  background-position: -100px 5px;
}
.banner-links .item-link:nth-of-type(4) i {
  background-position: -150px 0px;
}
.banner-links .item-link p {
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  padding-top: 2px;
}
.banner-links .item-link:hover i {
  opacity: 1;
}
section {
  padding:65px 0;
  text-align: center;
}
h2 {
  font-size: 30px;
  color: #0555b4;
  letter-spacing: 0.02em;
  line-height: 48px;
  margin: 10px 0;
  font-weight:700;
  text-transform:uppercase;
  /*font-family:'Arial';*/
  font-style:italic;
}
h2 span.move {
    font-family: 'Barbatrick-Regular';
    font-weight:400;
}
#about h2{
    font-style:italic;
}
.intro p {
  padding: 0px 8%;
}
/*h2+p{
  width: 85%;
  display: table;
  margin: 0 auto;
  margin-top: 35px;
  font-weight: 500;
  letter-spacing: 0.04em;
}*/
.our-services {
  background: #eee;
}
.our-services .container {
  padding: 0px 60px;
}
.our-services .row {
  margin: 0;
}
.our-services .row > div {
  padding: 0 30px;
}
.services-box {
  margin-bottom: 20px;
/*  cursor: pointer;*/
}
.services-box figure {
  overflow: hidden;
  position: relative;
}
.services-box figure img {
  vertical-align: bottom;
  width: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.services-box figure .ser-cv {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #ff662f;
  border-color: #ff662f;
  background: -webkit-linear-gradient(to bottom, #ec532f, #ff662f);
  background: linear-gradient(to bottom, #ec532f, #ff662f);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.services-box .service-cont {
  position: relative;
  padding: 30px 0;
}
.services-box .service-cont .service-inner {
  text-align: left;
  position: relative;
}
.services-box .service-cont .service-inner h3 {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 5px;
  font-size: 20px;
  color: #232323;
  letter-spacing: 0;
  line-height: 1.3;
}
.services-box .service-cont .service-inner span {
  font-weight: 500;
  font-size: 14px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.services-box .service-cont .service-inner > div {
  width: calc(100% - 100px);
}
.services-box .more {
  position: absolute;
  right: 0;
  bottom: 0;
}
.services-box:hover .more {
  background: #ff662f;
  color: #fff;
  border-color: #ff662f;
}
.services-box:hover figure .ser-cv {
  opacity: 0.2;
}
.more {
  width: 78px;
  height:32px;
  text-align: center;
  border-radius: 12px;
  text-transform: capitalize;
  font-size: 12px;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1.8;
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  display: inline-block;
  padding:3px;
  color:#e7201d;
}
.more_bt {
    display: inline-block;
    vertical-align: top;
}
.mr {
	display: inline-block;
    border: 1px solid #bbb;
    width: 70px;
    height: 24px;
    position: absolute;
    z-index: 999;
    bottom: 0;
    border-radius: 3px;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    right: 80px;
    margin-left: 10px;
}
.mr:hover{
	background: #e7201d;
	color:#fff;
	border-color:#e7201d;
}
.more:hover {
  background: #e7201d;
  color: #fff;
  border-color: #e7201d;
}
.service-title {
  margin-top: 30px;
  font-size: 60px;
  color: #232323;
  letter-spacing: 0em;
  line-height: 1.2;
  font-weight: 600;
  position: relative;
  text-align: left;
}
.service-title:after {
  position: absolute;
  content: '';
  width: 125px;
  height: 50px;
  background: url('../img/head-meter.png');
  background-size: cover;
  background-position: center;
  top: 0;
  right: 20%;
}
.service-title:before {
  position: absolute;
  content: '';
  top: -15px;
  left: 2px;
  width: 30px;
  height: 7px;
  border-radius: 8px;
  background-color: #ff662f;
}
/*
@keyframes progress {
animation-name: progress;
    animation-duration: 2.5s;
    animation-delay: 0.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transition:all 0.2s linear;
  from {
    width: 0px;
  }
  to {
    width: 125px;
  }
}*/
.hospitality {
  height: 706px;
  position: relative;
  padding: 48px 0;
}
.hospitality .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hospitality .background > div {
  height: 100%;
}
.hospitality .background > div:nth-of-type(1) {
  background: url('../img/hospitality.jpg') left center no-repeat, linear-gradient(to right, #333333 0%, #333333 50%, #ff662f 50%, #ff662f 100%);
  background-size: cover;
}
.hospitality .background > div:nth-of-type(2) {
  background: #ff662f;
}
.hospitality .content {
  pointer-events: none;
  z-index: 2;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 100%;
  display: table;
}
.hospitality .content > div {
  display: table-cell;
  vertical-align: bottom;
  padding-bottom: 62px;
}
.hospitality .content > div > div {
  width: 465px;
  padding-left: 70px;
  text-align: left;
}
.hospitality .content > div > div h2 {
  font-size: 60px;
  color: #ffffff;
  letter-spacing: 0em;
  line-height: 1.2;
  font-weight: 600;
  margin-left: -2px;
  position: relative;
}
.hospitality .content > div > div h2:before {
  position: absolute;
  content: '';
  top: -15px;
  left: 2px;
  width: 30px;
  height: 7px;
  border-radius: 8px;
  background-color: #ff662f;
}
.hospitality .content > div > div p {
  width: 100%;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 50px;
  margin-top: 23px;
}
.hospitality .content > div > div a {
  display: inline-block;
  width: 130px;
  height: 50px;
  border: 3px solid #ff662f;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  pointer-events: all;
}
.hospitality .content > div > div a i {
  width: 15px;
  height: 21px;
  display: inline-block;
  background: url('../img/sprite.png');
  background-position: -202px 0px;
  margin-top: 10px;
}
.hospitality .content > div > div a:hover {
  background: #ff662f;
}
.hospitality .content > div > div label {
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.9;
  display: block;
  font-weight: 400;
  margin-top: 22px;
}
.hospitality .circle {
  position: absolute;
  z-index: 1;
  width: 600px;
  height: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
}
.hospitality .circle .banner-links {
  right: 0;
  z-index: 1;
}
.hospitality .circle .item-link {
  position: absolute;
  z-index: 1;
  text-align: left;
  min-width: 300px;
  display: inline-block;
  background: #ff662f;
  opacity: 0;
}
.hospitality .circle .item-link i {
  width: 48px;
  height: 48px;
  display: inline-block;
  background: url('../img/sprite.png');
  float: left;
  margin-right: 15px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.hospitality .circle .item-link:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
}
.hospitality .circle .item-link:nth-of-type(1) {
  left: 90px;
  bottom: 70px;
}
.hospitality .circle .item-link:nth-of-type(1) i {
  width: 38px;
  background-position: -457px -174px;
}
.hospitality .circle .item-link:nth-of-type(1):before {
  left: -36px;
  top: -20px;
}
.hospitality .circle .item-link:nth-of-type(2) {
  left: 136px;
  top: 115px;
}
.hospitality .circle .item-link:nth-of-type(2) i {
  background-position: -406px -122px;
}
.hospitality .circle .item-link:nth-of-type(2):before {
  left: -47px;
  top: 21px;
}
.hospitality .circle .item-link:nth-of-type(3) {
  left: 251px;
  top: 280px;
}
.hospitality .circle .item-link:nth-of-type(3) i {
  background-position: -451px -123px;
}
.hospitality .circle .item-link:nth-of-type(3):before {
  left: -32px;
  top: 13px;
}
.hospitality .circle .item-link:nth-of-type(4) {
  left: 245px;
  bottom: 210px;
}
.hospitality .circle .item-link:nth-of-type(4) i {
  background-position: -402px -175px;
}
.hospitality .circle .item-link:nth-of-type(4):before {
  left: -48px;
  top: 7px;
}
.hospitality .circle .item-link p {
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  padding: 5px 0;
}
.hospitality .circle .banner-links:not(.animated) .item-link {
  -webkit-animation: 0.5s faded linear forwards !important;
  -moz-animation: 0.5s faded linear forwards !important;
  -ms-animation: 0.5s faded linear forwards !important;
  -o-animation: 0.5s faded linear forwards !important;
  animation: 0.5s faded linear forwards !important;
}
.hospitality .circle .banner-links:not(.animated) .item-link:nth-of-type(2) {
  animation-delay: 0s !important;
  -moz-animationanimation-delay: 0s !important;
  -ms-animationanimation-delay: 0s !important;
  -o-animationanimation-delay: 0s !important;
  -webkit-animation-delay: 0s !important;
}
.hospitality .circle .banner-links:not(.animated) .item-link:nth-of-type(3) {
  animation-delay: 0.2s !important;
  -moz-animationanimation-delay: 0.2s !important;
  -ms-animationanimation-delay: 0.2s !important;
  -o-animationanimation-delay: 0.2s !important;
  -webkit-animation-delay: 0.2s !important;
}
.hospitality .circle .banner-links:not(.animated) .item-link:nth-of-type(4) {
  animation-delay: 0.4s !important;
  -moz-animationanimation-delay: 0.4s !important;
  -ms-animationanimation-delay: 0.4s !important;
  -o-animationanimation-delay: 0.4s !important;
  -webkit-animation-delay: 0.4s !important;
}
.hospitality .circle .banner-links:not(.animated) .item-link:nth-of-type(1) {
  animation-delay: 0.6s !important;
  -moz-animationanimation-delay: 0.6s !important;
  -ms-animationanimation-delay: 0.6s !important;
  -o-animationanimation-delay: 0.6s !important;
  -webkit-animation-delay: 0.6s !important;
}
.hospitality .circle .center-contain {
  width: 100%;
}
.hospitality .circle .center-contain img {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  left: 48%;
  top: 50%;
  position: absolute;
  width: 221px;
}
.hospitality .circle svg {
  width: 100%;
  height: 100%;
}
.hospitality .circle svg circle {
  stroke-width: 1px;
  cx: 50%;
  cy: 50%;
  fill: none;
}
.hospitality .circle .red_circle {
  left: 0;
}
.hospitality .circle .red_circle circle {
  stroke: #ff662f;
}
.hospitality .circle .red_circle circle {
  cx: 100%;
}
.hospitality .circle .white_circle {
  right: 0;
}
.hospitality .circle .white_circle circle {
  stroke: #ffffff;
}
.hospitality .circle .white_circle circle {
  cx: 0%;
}
.hospitality .circle > div {
  position: absolute;
  width: 50%;
  height: 100%;
}
.hospitality .circle > div > div {
  white-space: nowrap;
  width: 100%;
  height: 100%;
}
.testimony {
  padding:40px 0;
  position: relative;
 /* background-image:url(../images/testi-bg.jpg);
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;*/
}
.testimony h2 {
  padding: 12px 0;
  margin: 0;
  margin-bottom: 20px;
  position: relative;
  background: url('../img/quote.png');
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
}
/*.testimony .testimony-slider .owl-carousel {
  padding: 0 70px;
}*/
.testimony .endorsements-scroll {
  padding-bottom: 35px;
}
.testimony .endorsements-scroll:after {
  content: "";
  display: table;
  clear: both;
}
.testimony .endorsements-scroll .post_img {
  width: 483px;
  float: left;
  z-index: 2;
  position: relative;
}
.testimony .endorsements-scroll .post_img img {
  vertical-align: middle;
}
.testimony .endorsements-scroll .post_img .video-contain {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: left;
  color: #ffffff;
  padding: 30px;
}
.testimony .endorsements-scroll .post_img .video-contain p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0;
  margin-top: 5px;
}
.testimony .endorsements-scroll .post_img .video-contain h4 {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0;
  color: #ffffff;
}
.testimony .endorsements-scroll .post_img .video-contain a {
  display: inline-block;
  width: 80px;
  height: 35px;
  border: 3px solid #ff662f;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  bottom: 35px;
  right: 30px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.testimony .endorsements-scroll .post_img .video-contain a i {
  width: 15px;
  height: 21px;
  display: inline-block;
  background: url('../img/sprite.png');
  background-position: -202px 0px;
  margin-top: 3px;
  transform: scale(0.6);
  -moz-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
}
.testimony .endorsements-scroll .post_img .video-contain a:hover {
  background: #ff662f;
}
.testimony .endorsements-scroll .post_img .video-contain .details {
  width: calc(100% - 100px);
}
.testimony .endorsements-scroll .post-cont {
  padding-left: 0px;
  padding: 0px 8%;
  float: left;
  width: 100%;
  position: relative;
  text-align: left;
}
.testimony .endorsements-scroll .post-cont h4 {
  text-align: center;
  color: #ff662f;
  font-weight: 600;
  margin-top: 45px;
}
.testimony .endorsements-scroll .post-cont q {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #000000;
  quotes: "\00201c" "\00201d";
  width: 100%;
  display: inline-block;
  margin: 35px 0 30px;
  text-align: center;
}
.testimony .endorsements-scroll .post-cont q:before {
  content: open-quote;
}
.testimony .endorsements-scroll .post-cont q:after {
  content: close-quote;
}
.testimony .endorsements-scroll .post-cont .content-author2 p {
  font-style: italic;
}
.testimony .endorsements-scroll .post-cont p {
  font-size: 14px;
  color: #000000;
  letter-spacing: 0.050em;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
}
.testimony .endorsements-scroll .post-cont .content-author {
  position: absolute;
  bottom: 0;
  display: block;
  z-index: 2;
  background: #f5f5f5;
  padding-bottom: 5px;
}
.testimony .owl-dots .owl-dot {
  display: inline-block;
  padding: 0 7px;
  margin-right: 20px;
  cursor: pointer;
}
.testimony .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000000;
  display: inline-block;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.testimony .owl-dots .owl-dot.active span {
  opacity: 1;
}
.testimony .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}
.testimony .owl-nav {
  position: absolute;
  top: 50%;
  pointer-events: none;
  width: 85%;
  margin: 0 auto;
  min-width: 1370px;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.testimony .owl-nav .owl-prev,
.testimony .owl-nav .owl-next {
  width: 78px;
  height: 32px;
  border: 2px solid #dfdfdf;
  border-radius: 30px;
  text-align: center;
  pointer-events: all;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.testimony .owl-nav .owl-prev:hover,
.testimony .owl-nav .owl-next:hover {
  box-shadow: 3px 4px 9px 0px rgba(0, 0, 0, 0.2);
  border-color: #ffffff;
}
.testimony .owl-nav .owl-prev span,
.testimony .owl-nav .owl-next span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #b3b3b3;
  border-bottom: 2px solid #b3b3b3;
  margin-top: 8px;
}
.testimony .owl-nav .owl-prev {
  float: left;
}
.testimony .owl-nav .owl-next {
  float: right;
}
.testimony .owl-nav .owl-prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
}
.testimony .owl-nav .owl-next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}
.testimony:hover .owl-nav {
  opacity: 1;
}
.content-author2 h6 {
    color: #0555b4;
}
.content-author2 p {
    margin: 0;
}
.partners {
  padding: 90px 0px;
}
.partners h2 {
  margin-bottom: 15px;
  margin-top: 15px;
  padding-right: 32%;
}
.partners h2:after {
  top: 8px;
  right: 34%;
}
.partners .col-sm-8 {
  padding: 40px 0px;
}
.partners .brand-p {
  float: left;
  margin-right: 28px;
  width: 22%;
}
.partners .brand-p:last-child {
  margin-right: 0px;
}
.partners .brand-p img {
  width: 100%;
}
footer {
  background: #333333;
}
footer .footer-top {
  padding: 55px 0 45px;
}
footer .footer-top ul li {
    list-style:disc;
	color:#bbb;
}
footer .footer-top h3 {
  font-size: 24px;
  color: #989898;
  line-height: 1;
  margin-bottom: 27px;
  letter-spacing: 0;
}
footer .footer-top .col-xs-7 {
  width: 56%;
  border-right: 1px solid #242424;
  padding: 0;
  padding-right: 120px;
  padding-top: 30px;
  padding-bottom: 15px;
}
footer .footer-top .col-xs-7 > ul {
  border-bottom: 1px solid #414141;
  margin-bottom: -3px;
  padding-bottom: 25px;
  display: inline-block;
}
footer .footer-top .col-xs-7 > ul li {
  margin: 0;
  width: 50%;
  float: left;
}
footer .footer-top .col-xs-7 > ul li a {
  padding: 7px 0;
  display: inline-block;
  color: #bbbbbb;
  padding-left: 30px;
  position: relative;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
footer .footer-top .col-xs-7 > ul li a:after {
  display: none;
}
footer .footer-top .col-xs-7 > ul li a:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #939393;
  border-radius: 50%;
  left: 0;
  top: 12px;
}
footer .footer-top .col-xs-7 > ul li a:hover {
  color: #fff;
}
footer .footer-top .col-xs-7 > div {
  clear: both;
  display: block;
}
footer .footer-top .col-xs-7 > div ul {
  border-top: 1px solid #242424;
  padding-top: 30px;
  text-align: justify;
}
footer .footer-top .col-xs-7 > div ul:after {
  content: "";
  display: inline-block;
  width: 100%;
}
footer .footer-top .col-xs-7 > div li {
  display: inline-block;
}
footer .footer-top .col-xs-7 > div a {
  color: #909090;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  text-align: left;
}
footer .footer-top .col-xs-7 > div a:hover {
  color: #ffffff;
}
footer .footer-top .col-xs-5 {
  border-left: 1px solid #414141;
  background: url('../img/footer-logo.png');
  background-position: 60px center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  padding-bottom: 36px;
  width: 44%;
  padding-left: 140px;
  padding-top: 30px;
  padding-right: 75px;
}
footer .footer-top .col-xs-5 .newslt {
  position: relative;
  margin-top: 11px;
}
footer .footer-top .col-xs-5 .newslt .message {
  position: absolute;
  top: 9px;
}
footer .footer-top .col-xs-5 .newslt .message span {
  color: green;
  font-size: 13px;
}
footer .footer-top .col-xs-5 p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1;
}
footer .footer-top .col-xs-5 button[type=submit] {
  width: 125px;
  height: 43px;
  background: #e7201d;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
  border-radius: 25px;
  border: none;
  float: left;
  margin: 35px 0;
  margin-left: -20px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
footer .footer-top .col-xs-5 button[type=submit]:hover {
  background: white;
  color: black;
}
footer .footer-top .col-xs-5 input[type=email] {
  background: transparent;
  width: calc(100% - 105px);
  border: 2px solid #999999;
  height: 43px;
  padding-left: 27px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  float: left;
  padding-right: 30px;
  font-size: 12px;
  margin: 35px 0;
  letter-spacing: 0.025em;
  line-height: normal;
  color: #ffffff;
}
footer .footer-top .col-xs-5 ul {
  margin-top: 10px;
  margin-left: 2px;
  display: inline-block;
}
footer .footer-top .col-xs-5 ul li {
  display: inline-block;
}
footer .footer-top .col-xs-5 ul li a {
  width: 20px;
  display: inline-block;
  margin-right: 35px;
  position: relative;
}
footer .footer-top .col-xs-5 ul li a .blu {
  position: absolute;
  left: 0px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
footer .footer-top .col-xs-5 ul li a:hover .blu {
  opacity: 1;
}
footer .footer-bottom {
  background: #2e2e2e;
  padding: 6px 0 4px;
}
footer .footer-bottom p {
  font-size: 12px;
  line-height: 2;
  font-weight: 100;
  letter-spacing: 0.05em;
  color: #ffffff;
  opacity: 0.3;
}
footer .footer-bottom p:first-of-type {
  float: left;
}
footer .footer-bottom p:last-of-type {
  float: right;
}
footer .footer-bottom a {
  color: #ffffff !important;
  opacity: 1 !important;
}
.former-area {
  position: relative;
}
.news-events {
  background: #fff;
}
/*.news-events .container {
  margin-bottom: 40px;
  padding: 0 165px;
  position: relative;
}*/
.news-events .container > div {
  position: relative;
}
.news-events .container .date-contain {
    width: 180px;
    padding-left: 40px;
    text-align: left;
    position: relative;
    padding-bottom: 60px;
    display: inline-block;
    vertical-align: top;
}
.news-events .container .date-contain label {
  position: absolute;
  font-size: 18px;
  line-height: 1.4;
  color: #757575;
  font-weight: 700;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  top: 22px;
  left: -8px;
}
.news-events .container .date-contain p {
  color: #757575;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  opacity: 0.4;
  text-transform: uppercase;
}
.news-events .container .date-contain span {
  color: #e7201d;
  font-size: 60px;
  line-height: 0.9;
  font-weight: 700;
}
.news-events .container .event-contain {
	border-left: 2px solid #e2e2e2;
	padding-left: 65px;
	width: calc(100% - 190px);
	text-align: left;
	display: inline-block;
	vertical-align: top;
}
.news-events .container .event-contain h4 {
  letter-spacing: 0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 15px;
}
.news-events .container .event-contain p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.news-events .container .event-contain a {
  margin-top: 20px;
  pointer-events: all;
  visibility: hidden;
}
.news-events .container .owl-nav {
  position: absolute;
  left: 0;
  bottom: 7px;
  z-index: 2;
  background: #fff;
}
.newsslider .owl-nav .owl-prev,
.newsslider .owl-nav .owl-next {
  margin: 0 3px;
  cursor: pointer;
  display: inline-block;
  width: 70px;
  height: 32px;
  border: 2px solid #dfdfdf;
  border-radius: 30px;
  text-align: center;
  pointer-events: all;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  z-index: 1;
  position: relative;
  vertical-align:top;
}
.newsslider .owl-nav .owl-prev.disabled,
.newsslider .owl-nav .owl-next.disabled {
  pointer-events: none !important;
  box-shadow: none !important ;
  border-color: #dfdfdf !important;
  background: transparent !important;
  z-index: 1 !important;
}
.newsslider .owl-nav .owl-prev.disabled.active ~ div,
.newsslider .owl-nav .owl-next.disabled.active ~ div {
  box-shadow: 3px 4px 9px 0px rgba(0, 0, 0, 0.2);
  border-color: #ffffff;
  background: #ffffff;
  z-index: 2;
}
.newsslider .owl-nav .owl-prev.active,
.newsslider .owl-nav .owl-next.active {
  box-shadow: 3px 4px 9px 0px rgba(0, 0, 0, 0.2);
  border-color: #ffffff;
  background: #ffffff;
  z-index: 2;
}
.newsslider .owl-next::before {
    content: '>';
    color: #dfdfdf;
    font-weight: 500;
    font-size: 35px;
}
.newsslider .owl-prev::before {
    content: '<';
    color: #dfdfdf;
    font-weight: 500;
    font-size: 35px;
}
.news-events .container .owl-nav .owl-prev span,
.news-events .container .owl-nav .owl-next span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #b3b3b3;
  border-bottom: 2px solid #b3b3b3;
  margin-top: 8px;
}
.news-events .container .owl-nav .owl-prev:nth-of-type(1) span,
.news-events .container .owl-nav .owl-next:nth-of-type(1) span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
}
.news-events .container .owl-nav .owl-prev:nth-of-type(2) span,
.news-events .container .owl-nav .owl-next:nth-of-type(2) span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}
.news-events .container .owl-nav .owl-prev {
  margin-right: -10px;
}
.news-events .container .owl-nav .owl-next {
  margin-left: -10px;
}
.news-events h2 {
  margin-bottom: 65px;
}
.news_box + .news_box{
	padding-top:30px;
}
/**** banner common usage ****/
.classic-banner {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: rgba(245, 244, 244, 0.8);
  position: relative;
}
.classic-banner .container {
  padding: 0px 60px;
  height: 100%;
}
.classic-banner .banner-cap {
  width: 310px;
  position: absolute;
  bottom: 35px;
}
.classic-banner .banner-cap h1,
.classic-banner .banner-cap p {
  text-align: right;
}
.classic-banner .banner-cap h1 {
  font-size: 60px;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 600;
}
.classic-banner .banner-cap p.bread-crumb {
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 6px;
}
.classic-banner .banner-cap p.bread-crumb a {
  color: #ffffff;
}
.classic-banner .banner-cap p.bread-crumb span {
  background-color: #ff662f;
  display: inline-block;
  padding: 0px 4px;
}
.bar-down {
  position: relative;
}
.bar-down:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 30px;
  height: 7px;
  border-radius: 8px;
  background-color: #ff662f;
}
/***** career *****/
.career-banner {
  background-image: url("../img/career-banner.png");
}
.career_section1 {
  padding-bottom: 40px;
}
.career_section1 .abt-company span {
  font-size: 20px;
  font-weight: 600;
  color: #9c9b9b;
  margin-bottom: 15px;
  display: block;
}
.career_section2 {
  padding-top: 60px;
}
.career_section2 .openings-contain .open-block {
  position: relative;
  padding: 24px 0px;
  border-bottom: 1px solid #eff0f3;
}
.career_section2 .openings-contain .open-block:last-child {
  border-bottom: 0px;
}
.career_section2 .openings-contain .open-block > div {
  margin: 10px 0px;
}
.career_section2 .openings-contain .open-block h3 {
  text-align: left;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.career_section2 .openings-contain .open-block span {
  color: #9c9b9b;
  display: block;
  text-align: left;
}
.career_section2 .openings-contain .open-block .accordion-toggle3 p {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 15px;
}
.career_section2 .openings-contain .open-block .read-more {
  text-align: left;
  font-size: 14px;
  color: #ff662f;
  font-weight: 500;
  width: 120px;
  cursor: pointer;
}
.career_section2 .openings-contain .open-block .accordion-content3 p {
  text-align: left;
  padding-bottom: 10px;
}
.career_section2 .openings-contain .open-block .accordion-content3 h4,
.career_section2 .openings-contain .open-block .accordion-content3 h5 {
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 20px;
}
.career_section2 .openings-contain .open-block .accordion-content3 ul {
  padding-left: 38px;
}
.career_section2 .openings-contain .open-block .accordion-content3 ul li p {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0;
  text-align: left;
  position: relative;
  padding-bottom: 0px;
}
.career_section2 .openings-contain .open-block .accordion-content3 ul li p:before {
  content: '';
  position: absolute;
  top: 11px;
  left: -20px;
  width: 6px;
  height: 6px;
  background-color: #ff662f;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.noopen-title {
  height: 320px;
  display: table;
  width: 100%;
}
.noopen-title p {
  vertical-align: middle;
  display: table-cell;
}
.open-career-pop {
  position: absolute;
  right: 0px;
  top: 35px;
  cursor: pointer;
  z-index: 3;
}
.open-career-pop a {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 2.8;
  font-weight: 400;
  background-color: #ff662f;
  border-radius: 30px;
  text-align: center;
  width: 230px;
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.bx-tab .upload-to {
  position: relative;
}
.bx-tab .upload-to i {
  position: absolute;
  top: 12px;
  right: 15px;
  background: url("../img/paper-clip.png") center no-repeat;
  width: 18px;
  height: 18px;
}
.bx-tab .upload-to .resume {
  position: static;
}
.bx-tab .upload-to input[type=file] {
  cursor: pointer;
  position: absolute;
  left: 0px;
  opacity: 0;
  overflow: hidden;
  float: left;
  font-weight: 200;
  color: #444444;
  letter-spacing: normal;
  line-height: 2.3;
  text-align: left;
  border-width: 1px;
  border-style: solid;
  border-color: #d6d6d6;
  border-radius: 2px;
  margin-left: 0px;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
}
.cs-pop .pre-appoint {
  padding: 24px 25px;
}
.cs-pop .modal-dialog {
  width: 520px;
}
.cs-pop .bx-tab {
  width: 100%;
  height: 70px;
}
.cs-pop .bx-tab input[type="text"],
.cs-pop .bx-tab input[type="email"] {
  font-size: 15px;
  color: #010101;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 400;
  border-bottom: 1px solid #b2b2b2!important;
  border: none;
  border-radius: 0px !important;
  height: 40px;
  width: 100%;
}
.cs-pop .bx-tab.care-box {
  height: 95px;
  position: relative;
}
.cs-pop .bx-tab.care-box p {
  position: absolute;
  bottom: 0px;
  font-size: 12px;
}
.cs-pop .bx-tab.care-box p sup {
  color: #ca2d33;
}
.cs-pop .bx-tab2 {
  height: 100px !important;
  width: 100%;
}
.cs-pop .bx-tab2 textarea {
  height: 100px;
  font-size: 15px;
  width: 100%;
  resize: none;
  color: #010101;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 500;
  border-bottom: 1px solid #b2b2b2!important;
  border: none;
  border-radius: 0px !important;
}
.cs-pop input[type="submit"] {
  width: 160px;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 2.8;
  font-weight: 400;
  background-color: #ff662f;
  border-radius: 30px;
  text-align: center;
  margin-top: 22px;
  border: 0px;
  float: right;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.career-portal h2 {
  font-size: 24px;
  margin: 10px 0 30px 0px;
  text-align: center;
  line-height: 28px;
}
.open-career-pop a:before {
  left: 0px;
}
.open-career-pop a:after {
  right: 0px;
}
.open-career-pop a:hover:before,
.open-career-pop a:hover:after {
  width: 100%;
}
.open-career-pop a:before,
.open-career-pop a:after {
  content: '';
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0px;
  background: #fff;
  opacity: 0.1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
/***** About *****/
.aboutPage .container {
  padding: 0px 70px;
}
.aboutPage .sub-cnt {
  font-size: 24px;
  color: #232323;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: 300;
  width: 100%;
}
.about-banner {
  background-image: url("../img/about-banner.jpg");
}
.abt-company h2 {
  color: #000;
  margin-top: 0px;
}
.abt-company h2:after {
  left: 49%;
  bottom: -12px;
}
.abt-company p {
  font-weight: 500;
  letter-spacing: 0.050em;
  padding: 0px 4%;
  margin: 35px 0px;
}
.top {
    padding-top: 12px;
}
.abt-company p.sub-cnt {
  padding: 28px 26.5% 0px;
}
.about__section1 .banner-links {
  padding-top: 25px;
  margin-bottom: 50px;
}
.about__section1 .banner-links a {
  pointer-events: none;
}
.about__section1 .banner-links p {
  color: #000;
}
.about__section1 .banner-links .item-link {
  width: 286px;
  min-width: inherit;
}
.about__section1 .banner-links .item-link i {
  opacity: 1;
}
.about__section1 .banner-links .item-link:nth-of-type(1) i {
  background-position: 0px -60px;
}
.about__section1 .banner-links .item-link:nth-of-type(2) i {
  background-position: -50px -60px;
}
.about__section1 .banner-links .item-link:nth-of-type(3) i {
  background-position: -100px -60px;
}
.about__section1 .banner-links .item-link:nth-of-type(4) i {
  background-position: -150px -62px;
}
.about__section2 {
  background-color: #f7f8f9;
}
.about__section2 .row {
  padding-top: 52px;
  padding-bottom: 15px;
}
.about__section2 .col-xs-4 {
  padding-left: 0px !important;
}
.about__section2 .col-xs-4 h2 {
  padding-right: 30px;
}
.about__section2 .col-xs-4 .core-image {
  width: 356px;
}
.about__section2 .col-xs-4 .core-image img {
  display: inherit;
}
.about__section2 .col-sm-8 {
  padding-left: 0px !important;
}
.about__section2 .abt-services .col-xs-6 {
  padding: 0px 30px;
}
.about__section2 .abt-services .col-xs-6:nth-of-type(1) {
  padding-left: 0px;
}
.about__section2 .abt-services .col-xs-6:nth-of-type(2) {
  padding-right: 0px;
}
.about__section2 .abt-services .col-xs-6 .service-cont h3 {
  margin-top: 13px;
  margin-bottom: 7px;
}
.about__section2 .abt-services .col-xs-6 .service-cont a {
  position: relative;
  margin-top: 30px;
}
.mission-xpand {
  margin-top: 40px;
}
.mission-xpand h6,
.mission-xpand p {
  text-align: left;
}
.mission-xpand h6 {
  font-size: 18px;
  color: #000;
  letter-spacing: normal;
  line-height: 1.7;
  font-weight: 600;
}
.mission-xpand p {
  margin-bottom: 54px;
}
.mission-xpand p.sub-cnt {
  padding-right: 42%;
  margin-bottom: 0px;
}
.mission-xpand p:nth-of-type(2) {
  margin-top: 42px;
  margin-bottom: 20px;
}
.mission-xpand p:nth-of-type(3) {
  margin-bottom: 20px;
}
.about__section3 {
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/steps-banner.jpg");
  height: 100%;
  position: relative;
  padding: 0px 0px;
}
.about__section3 .container {
  padding: 0px 0px;
}
.about__section3 .coverlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: absolute;
}
.about__section3 .step-cover {
  padding: 8.8% 0px;
}
.about__section3 .step-cover h2 {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
}
.about__section3 .step-cover h2:after {
  left: 49%;
  bottom: -30px;
}
.about__section3 .step-cover span,
.about__section3 .step-cover h5,
.about__section3 .step-cover p {
  color: #ffffff;
  text-align: left;
}
.about__section3 .step-cover h5 {
  font-size: 18px;
}
.about__section3 .step-cover span {
  opacity: 0.3;
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 40px;
  color: #ffffff;
  letter-spacing: normal;
  line-height: 0.9;
  font-weight: 300;
}
.about__section3 .step-cover p {
  color: #e6e6e6 ;
  font-weight: 300;
  line-height: 1.7;
}
.about__section3 .step-cover .count-step {
  margin-top: 105px;
}
.about__section3 .step-cover .col-sm-4 {
  padding: 0px 0px;
  width: 28.333333%;
}
.about__section3 .step-cover .col-sm-4:nth-of-type(1) span {
  left: 8px;
}
.about__section3 .step-cover .col-sm-4:nth-of-type(2) {
  margin: 0px 7.1%;
}
.about__section3 .step-cover .col-sm-4 > div {
  padding-left: 70px;
}
.about__section4 {
  padding: 60px 0px 45px;
}
.about__section4 .facilites h2 {
  color: #000000;
}
.about__section4 .facilites h2:after {
  left: 49%;
  bottom: -10px;
}
.about__section4 .facilites .list-facility {
  padding-top: 10px;
}
.about__section4 .facilites .col-sm-4 {
  padding: 0px 0px;
  width: 28.333333%;
  margin-top: 50px;
  margin-bottom: 50px;
  min-height: 118px;
}
.about__section4 .facilites .col-sm-4 i {
  width: 58px;
  height: 58px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('../img/sprite.png');
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.about__section4 .facilites .col-sm-4:nth-of-type(1) i {
  background-position: -223px 2px;
}
.about__section4 .facilites .col-sm-4:nth-of-type(2) {
  margin: 50px 7.5%;
}
.about__section4 .facilites .col-sm-4:nth-of-type(2) i {
  background-position: -275px 2px;
}
.about__section4 .facilites .col-sm-4:nth-of-type(3) i {
  background-position: -330px 2px;
  width: 52px;
}
.about__section4 .facilites .col-sm-4:nth-of-type(4) i {
  background-position: -385px 2px;
}
.about__section4 .facilites .col-sm-4:nth-of-type(5) {
  margin: 50px 7.5%;
}
.about__section4 .facilites .col-sm-4:nth-of-type(5) i {
  background-position: -445px 2px;
}
.about__section4 .facilites .col-sm-4:nth-of-type(6) i {
  background-position: -223px -59px;
}
.about__section4 .facilites .col-sm-4 > div {
  padding-left: 85px;
  text-align: left;
}
.about__section4 .facilites .col-sm-4 h4 {
  font-size: 20px;
  color: #000;
  letter-spacing: normal;
  line-height: 1.5;
  font-weight: 600;
}
.about__section4 .facilites .col-sm-4 p {
  line-height: 1.6;
  padding-right: 55px;
}
/***** service landing ******/
.service-banner {
  background-image: url("../img/service-banner.jpg");
}
.service__section1 {
  padding: 120px 0px 105px;
  margin: 0px 0px;
}
.service__section1 .row {
  padding-bottom: 40px;
}
.service__section1 .rowbytwo {
  padding: 0px 10px;
}
.service__section1 .rowbytwo .col-sm-8 {
  padding-right: 9%;
}
.service__section1 .rowbytwo .col-sm-8 p {
  line-height: 2.7;
  text-align: left;
}
.service__section1 .rowbytwo .col-sm-8 p.main-para {
  font-size: 24px;
  color: #010101;
  letter-spacing: normal;
  line-height: 1.7;
  font-weight: 400;
  padding-bottom: 12px;
}
.service__section1 .rowbytwo .timings {
  padding-left: 40px;
  padding-top: 8px;
}
.service__section1 .rowbytwo .timings > div {
  position: relative;
}
.service__section1 .rowbytwo .timings span.clock {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 2px solid #ff662f;
}
.service__section1 .rowbytwo .timings span.clock:after,
.service__section1 .rowbytwo .timings span.clock:before {
  content: '';
  position: absolute;

  width: 11px;
  height: 1px;
  background-color: #ff662f;
}
.service__section1 .rowbytwo .timings span.clock:after {
  top: 13px;
  left: 11px;
}
.service__section1 .rowbytwo .timings span.clock:before {
  top: 8px;
  left: 6px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.service__section1 .rowbytwo .timings h6 {
  font-size: 19px;
  color: #ff662f;
  letter-spacing: normal;
  line-height: 1.7;
  font-weight: 500;
  padding-left: 45px;
  text-align: left;
  margin-bottom: 8px;
}
.service__section1 .rowbytwo .timings ul li {
  font-size: 14px;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 500;
  border-bottom: 1px solid #bbbaba;
  text-align: left;
  padding: 14px 0px;
}
.service__section1 .rowbytwo .timings ul li span.cls {
  color: #ff662f !important;
  font-weight: 600;
}
.service__section1 .rowbytwo .timings ul li br {
  display: none;
}
.service__section2 {
  background-image: url("../img/schedule-banner.jpg");
  width: 100%;
  height: 525px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}
.service__section2 .cardlay {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}
.service__section2 .container {
  display: table;
  height: 100%;
}
.service__section2 .schedule-date {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
.service__section2 .schedule-date i {
  width: 58px;
  height: 58px;
  background: url('../img/sprite.png');
  background-position: -282px -58px;
  display: block;
  margin: 0 auto;
}
.service__section2 .schedule-date p {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
}
.service__section2 .schedule-date p.sub-txt {
  font-size: 30px;
  color: #ffffff;
  letter-spacing: normal;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: -2px;
}
.service__section2 .schedule-date a {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 2.8;
  font-weight: 400;
  background-color: #ff662f;
  border-radius: 30px;
  text-align: center;
  width: 230px;
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.schedule-date a:before,
.schedule-date a:after {
  content: '';
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0px;
  background: #fff;
  opacity: 0.1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.schedule-date a:before {
  left: 0px;
}
.schedule-date a:after {
  right: 0px;
}
.schedule-date a:hover:before,
.schedule-date a:hover:after {
  width: 100%;
}
/****** service inner pages ******/
.serviceXPage .classic-banner .banner-cap {
  width: 350px;
}
.service-banner2 {
  background-image: url("../img/audiology-banner.jpg");
}
.service-banner3 {
  background-image: url("../img/behavioral-banner.png");
}
.service-banner4 {
  background-image: url("../img/speech-banner.png");
}
.service-banner5 {
  background-image: url("../img/hearing-banner.png");
}
.service-banner6 {
  background-image: url("../img/implant-banner.png");
}
.serviceX__section1 {
  padding-top: 92px;
  padding-bottom: 102px;
}
.serviceX__section1 .xpand-service h2 {
  font-size: 30px;
  width: 390px;
  line-height: 1.5;
}
.serviceX__section1 .xpand-service h2:after {
  right: 10%;
  transform: scale(0.8, 0.8);
}
.serviceX__section1 .xpand-service .col-sm-7 {
  padding-left: 0px;
}
.serviceX__section1 .xpand-service .col-sm-7 > div {
  padding-right: 16%;
}
.serviceX__section1 .xpand-service .col-sm-7 p {
  text-align: left;
  margin: 0px;
}
.serviceX__section1 .xpand-service .col-sm-7 p.sub-txt {
  font-size: 24px;
  color: #010101;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 46px;
}
.serviceX__section1 .col-sm-5 {
  padding: 8px 0px 0px;
}
.serviceX__section1 .col-sm-5 .serv-slide {
  opacity: 1;
}
.serviceX__section1 .col-sm-5 .serv-slide .item-service {
  height: 310px;
  overflow: hidden;
}
.serviceX__section1 .col-sm-5 .serv-slide.owl-carousel .owl-refresh .owl-item {
  display: block;
}
.serviceX__section1 .col-sm-5 .serv-slide .owl-dots {
  position: relative;
  top: 25px;
}
.serviceX__section1 .col-sm-5 .serv-slide .owl-dots .owl-dot {
  display: inline-block;
  padding: 0 3px;
  margin-right: 0px;
  cursor: pointer;
}
.serviceX__section1 .col-sm-5 .serv-slide .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4d4d4;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.serviceX__section1 .col-sm-5 .serv-slide .owl-dots .owl-dot.active span {
  background-color: #ff662f;
}
.serviceX__section1 .col-sm-5 .serv-slide .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}
.serviceX__section2 {
  background-color: #f7f8f9;
  padding-top: 82px;
  padding-bottom: 108px;
}
.serviceX__section2 .container {
  padding: 0px 70px;
}
.serviceX__section2 .our-tests h2 {
  color: #000;
}
.serviceX__section2 .our-tests h2:after {
  left: 49%;
  bottom: -13px;
}
.serviceX__section2 .our-tests p.sub-cnt {
  font-size: 24px;
  color: #010101;
  letter-spacing: normal;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 42px;
  padding: 0px 27%;
}
.serviceX__section2 .our-tests ul.test-listed {
  padding-top: 68px;
}
.serviceX__section2 .our-tests ul.test-listed li {
  width: 42%;
  float: left;
  border-bottom: 1px solid #e3e4e4;
  padding: 30px 0px 18px;
}
.serviceX__section2 .our-tests ul.test-listed li:nth-child(odd) {
  margin-right: 16%;
  margin-left: 4%;
}
.serviceX__section2 .our-tests ul.test-listed li:nth-child(even) {
  width: 38%;
}
.serviceX__section2 .our-tests ul.test-listed li p {
  font-size: 18px;
  color: #010101;
  letter-spacing: normal;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  margin: 0px;
  padding-left: 15px;
  position: relative;
}
.serviceX__section2 .our-tests ul.test-listed li p:before {
  content: '';
  position: absolute;
  top: 10px;
  left: -45px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ff662f;
}
.serviceX__section4 {
  padding-bottom: 118px;
}
.serviceX__section4 h2:after {
  bottom: -15px;
  left: 49%;
}
.serviceX__section4 .other-service {
  margin-top: 55px;
}
.serviceX__section4 .q-service {
  padding: 0px 0px;
  width: 100%;
  overflow: hidden;
}
.serviceX__section4 .q-service h5 {
  font-size: 20px;
  color: #010101;
  letter-spacing: normal;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 32px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.serviceX__section4 .q-service p {
  font-weight: 500;
  line-height: 2.1;
  margin: 0px;
  color: #000;
}
.serviceX__section4 .q-service:hover {
  /*.img_ser{
         &:before{-webkit-animation: circle .75s; animation: circle .75s;}
      }*/
}
.serviceX__section4 .q-service:hover h5 {
  color: #ff662f;
}
.serviceX__section4 .q-service:hover .fade-card {
  opacity: 0.6;
}
.serviceX__section4 .img_ser {
  position: relative;
  overflow: hidden;
  /*&:before{position: absolute; top: 50%; left: 50%; z-index: 2; display: block; content: ''; width: 0; height: 0; background: rgba(0,0,0,.2); border-radius: 100%;
      -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); opacity: 0;}*/
}
.serviceX__section4 .img_ser img {
  vertical-align: bottom;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.serviceX__section4 .img_ser .fade-card {
  opacity: 0.4;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 92px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  background-image: -moz-linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -ms-linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
/****** product ******/
.product-banner {
  background-image: url("../img/product-banner.jpg");
}
.product__section1 {
  position: relative;
  padding-bottom: 150px;
}
.product__section1 h2 {
  color: #010101;
  margin: 0px 0px;
}
.product__section1 p {
  font-size: 18px;
  letter-spacing: normal;
  margin: 0px 0px;
  font-weight: 300;
}
.product__section1 .pdt-slider {
  position: inherit !important;
  margin-top: 84px;
}
.product__section1 .pdt-slider .col-xs-4 {
  width: 100%;
  padding: 0px 0px;
}
.product__section1 .pdt-slider .col-xs-4 > div {
  padding: 0px 30px;
}
.product__section1 .pdt-slider .col-xs-4 figure {
  width: 220px;
  margin: 0 auto;
}
.product__section1 .pdt-slider h4,
.product__section1 .pdt-slider p {
  text-align: left;
}
.product__section1 .pdt-slider h4 {
  font-size: 21px;
  color: #010101;
  letter-spacing: normal;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 12px;
}
.product__section1 .pdt-slider p {
  font-size: 13px;
  color: #878787;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 300;
  padding-right: 0px;
}
.product__section1 .pdt-slider .owl-dots {
  position: relative;
  top: 35px;
}
.product__section1 .pdt-slider .owl-dots .owl-dot {
  display: inline-block;
  padding: 0 6px;
  margin-right: 5px;
  cursor: pointer;
}
.product__section1 .pdt-slider .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4d4d4;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.product__section1 .pdt-slider .owl-dots .owl-dot.active span {
  background-color: #ff662f;
}
.product__section1 .pdt-slider .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}
.product__section1 .pdt-slider .owl-nav {
  position: absolute;
  top: 50%;
  pointer-events: none;
  width: 85%;
  margin: 0 auto;
  min-width: 1370px;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.product__section1 .pdt-slider .owl-nav .owl-prev,
.product__section1 .pdt-slider .owl-nav .owl-next {
  width: 78px;
  height: 32px;
  border: 2px solid #dfdfdf;
  border-radius: 30px;
  text-align: center;
  pointer-events: all;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.product__section1 .pdt-slider .owl-nav .owl-prev:hover,
.product__section1 .pdt-slider .owl-nav .owl-next:hover {
  box-shadow: 3px 4px 9px 0px rgba(0, 0, 0, 0.2);
  border-color: #ffffff;
}
.product__section1 .pdt-slider .owl-nav .owl-prev span,
.product__section1 .pdt-slider .owl-nav .owl-next span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #b3b3b3;
  border-bottom: 2px solid #b3b3b3;
  margin-top: 8px;
}
.product__section1 .pdt-slider .owl-nav .owl-prev {
  float: left;
}
.product__section1 .pdt-slider .owl-nav .owl-next {
  float: right;
}
.product__section1 .pdt-slider .owl-nav .owl-prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);

  -moz-transform: rotate(135deg);
}
.product__section1 .pdt-slider .owl-nav .owl-next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}
.product__section1:hover .owl-nav {
  opacity: 1;
}
.product__section2 {
  background-color: #333333;
  position: relative;
  height: 70vh;
  text-align: inherit;
}
.product__section2 .container {
  display: table;
  height: 100%;
}
.product__section2 .ephp-product {
  display: table-cell;
  vertical-align: middle;
}
.product__section2 .ephp-product .col-xs-6 {
  padding: 0px 0px;
}
.product__section2 .ephp-product h2 {
  font-size: 60px;
  color: #ffffff;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: 600;
  margin-left: -2px;
  position: relative;
}
.product__section2 .ephp-product h2:after {
  position: absolute;
  content: '';
  top: -15px;
  left: 2px;
  width: 30px;
  height: 7px;
  border-radius: 8px;
  background-color: #ff662f;
}
.product__section2 .ephp-product p {
  font-size: 24px;
  color: #ffffff;
  letter-spacing: normal;
  line-height: 1.5;
  font-weight: 300;
  padding-right: 20%;
}
.product__section2 .ephp-product .pdts-shows img {
  width: 100%;
}
.waves-cover {
  width: 100%;
  position: absolute;
  top: 85px;
  height: 500px;
  opacity: 0.3;
  background-image: url('../img/bg-waves.png');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}
.product__section3 {
  background-color: #f6f6f6;
  text-align: inherit;
  padding: 140px 0px 230px;
}
.product__section3 .container {
  padding: 0px 60px;
}
.product__section3 .pdt-quality .col-xs-6:nth-child(1) {
  padding: 0px 0px;
  width: 53%;
}
.product__section3 .pdt-quality .col-xs-6:nth-child(1) > div .xpand-quality {
  padding-right: 11%;
}
.product__section3 .pdt-quality .col-xs-6:nth-of-type(2) {
  width: 47%;
}
.product__section3 .pdt-quality .col-xs-6 span {
  font-size: 60px;
  color: #d5d5d5;
  letter-spacing: normal;
  line-height: 2;
  font-weight: 300;
}
.product__section3 .pdt-quality .col-xs-6 h3 {
  font-size: 40px;
  color: #000000;
  letter-spacing: normal;
  line-height: 0.7;
  font-weight: 400;
  margin-bottom: 45px;
}
.product__section3 .pdt-quality .col-xs-6 p {
  font-size: 16px;
  color: #5d5d5d;
  letter-spacing: 0.04em;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0px;
  margin-top: 0px;
}
.product__section3 .pdt-quality .col-xs-6 .col-xs-4 p {
  font-size: 14px;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  padding: 8px 0px 8px 68px;
}
.product__section3 .pdt-quality .col-xs-6 .col-xs-4 p sup {
  font-size: 6px;
  position: relative;
  top: -7px;
}
.product__section3 .pdt-quality .mid-c {
  width: 80%;
  margin: 0 auto;
}
.product__section3 .pdt-quality .features {
  margin-top: 58px;
}
.product__section3 .pdt-quality .premimum .col-xs-4 {
  position: relative;
}
.product__section3 .pdt-quality .premimum .col-xs-4 i {
  width: 68px;
  height: 58px;
  position: absolute;
  background: url('../img/sprite.png');
}
.product__section3 .pdt-quality .premimum .col-xs-4:nth-of-type(1) {
  padding-left: 0px;
}
.product__section3 .pdt-quality .premimum .col-xs-4:nth-of-type(1) i {
  background-position: -224px -116px;
  left: -9px;
}
.product__section3 .pdt-quality .premimum .col-xs-4:nth-of-type(2) i {
  background-position: -292px -116px;
}
.product__section3 .pdt-quality .premimum .col-xs-4:nth-of-type(2) p {
  padding-left: 85px;
}
.product__section3 .pdt-quality .premimum .col-xs-4:nth-of-type(3) {
  padding-right: 0px;
}
.product__section3 .pdt-quality .premimum .col-xs-4:nth-of-type(3) i {
  background-position: -359px -113px;
}
.product__section3 .pdt-quality .mid-range .col-xs-4 {
  position: relative;
}
.product__section3 .pdt-quality .mid-range .col-xs-4 i {
  width: 68px;
  height: 58px;
  position: absolute;
  background: url('../img/sprite.png');
}
.product__section3 .pdt-quality .mid-range .col-xs-4:nth-of-type(1) {
  padding-left: 0px;
  padding-right: 0px;
}
.product__section3 .pdt-quality .mid-range .col-xs-4:nth-of-type(1) i {
  background-position: 0px -171px;
  left: -6px;
}
.product__section3 .pdt-quality .mid-range .col-xs-4:nth-of-type(2) i {
  background-position: -59px -171px;
}
.product__section3 .pdt-quality .mid-range .col-xs-4:nth-of-type(2) p {
  padding-left: 85px;
}
.product__section3 .pdt-quality .mid-range .col-xs-4:nth-of-type(3) {
  padding-right: 0px;
}
.product__section3 .pdt-quality .mid-range .col-xs-4:nth-of-type(3) p {
  padding-left: 75px;
}
.product__section3 .pdt-quality .mid-range .col-xs-4:nth-of-type(3) i {
  background-position: -130px -171px;
}
.product__section3 .pdt-quality .basic .col-xs-4 {
  position: relative;
}
.product__section3 .pdt-quality .basic .col-xs-4 i {
  width: 68px;
  height: 58px;
  position: absolute;
  background: url('../img/sprite.png');
}
.product__section3 .pdt-quality .basic .col-xs-4:nth-of-type(1) {
  padding-left: 0px;
  padding-right: 0px;
}
.product__section3 .pdt-quality .basic .col-xs-4:nth-of-type(1) i {
  background-position: -200px -171px;
  left: -4px;
  top: -5px;
}
.product__section3 .pdt-quality .basic .col-xs-4:nth-of-type(1) p {
  padding-left: 78px;
}
.product__section3 .pdt-quality .basic .col-xs-4:nth-of-type(2) i {
  background-position: -268px -171px;
  width: 60px;
}
.product__section3 .pdt-quality .basic .col-xs-4:nth-of-type(2) p {
  padding-left: 75px;
}
.product__section3 .pdt-quality .basic .col-xs-4:nth-of-type(3) {
  padding-right: 0px;
}
.product__section3 .pdt-quality .basic .col-xs-4:nth-of-type(3) p {
  padding-left: 75px;
}
.product__section3 .pdt-quality .basic .col-xs-4:nth-of-type(3) i {
  background-position: -331px -171px;
}
.product__section3 .pdt-quality .owl-nav {
  position: absolute;
  bottom: -65px;
  pointer-events: none;
  width: 178px;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.product__section3 .pdt-quality .owl-nav .owl-prev,
.product__section3 .pdt-quality .owl-nav .owl-next {
  width: 78px;
  height: 32px;
  border: 2px solid #ff662f;
  background-color: #ff662f;
  border-radius: 30px;
  text-align: center;
  pointer-events: all;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.product__section3 .pdt-quality .owl-nav .owl-prev:hover,
.product__section3 .pdt-quality .owl-nav .owl-next:hover {
  box-shadow: 3px 4px 9px 0px rgba(0, 0, 0, 0.2);
  border-color: #ff662f;
}
.product__section3 .pdt-quality .owl-nav .owl-prev span,
.product__section3 .pdt-quality .owl-nav .owl-next span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin-top: 8px;
}
.product__section3 .pdt-quality .owl-nav .owl-prev {
  float: left;
}
.product__section3 .pdt-quality .owl-nav .owl-next {
  float: right;
}
.product__section3 .pdt-quality .owl-nav .owl-prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
}
.product__section3 .pdt-quality .owl-nav .owl-next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}
/* privacy*/
.privacy-banner {
  background-image: url("../img/privacy-banner.png");
}
.termc {
  padding-left: 18px;
  position: relative;
}
.termc:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  height: 13px;
  width: 2px;
}
.privacy-content h2 {
  margin-bottom: 25px;
}
.privacy-content h4 {
  font-size: 22px !important;
  margin-bottom: 18px;
}
.privacy-content p {
  padding-bottom: 20px;
  line-height: 1.9;
}
.privacy-content ul {
  padding-left: 40px;
  padding-bottom: 35px;
}
.privacy-content ul li {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0;
  position: relative;
}
.privacy-content ul li:before {
  content: '';
  position: absolute;
  left: -21px;
  top: 12px;
  width: 10px;
  height: 2px;
  background-color: #ff662f;
}
/**** appointment *****/
.appointPage .classic-banner .banner-cap {
  width: 435px;
}
.appoint-banner {
  background-image: url("../img/Appointment-banner.jpg");
}
.app-title {
  width: 50%;
}
.instruction {
  padding-top: 25px;
  position: relative;
  padding-bottom: 38px;
  border-bottom: 1px solid #e8e8e8;
}
.instruction p {
  text-align: left;
}
.instruction ul {
  padding-left: 42px;
}
.instruction ul li p {
  position: relative;
}
.instruction ul li p:before {
  content: '';
  position: absolute;
  top: 11px;
  left: -20px;
  width: 6px;
  height: 6px;
  background-color: #ff662f;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mk-app {
  margin-top: 50px !important;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 2.8;
  font-weight: 400;
  background-color: #ff662f;
  border-radius: 30px;
  text-align: center;
  width: 230px;
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.mk-app:hover {
  color: #ffffff;
}
.appoint__section1 {
  background-color: #f5f4f4;
  padding: 40px 0px;
  text-align: inherit;
}
.appoint__section1 .sch-txt {
  padding-left: 75px;
}
.appoint__section1 .sch-txt span {
  display: block;
  font-size: 18px;
  color: #000;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: 500;
}
.appoint__section1 .sch-txt span a {
  color: #000;
}
.appoint__section1 .sch-txt i {
  width: 58px;
  height: 54px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('../img/sprite.png');
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.appoint__section1 .sch-txt p {
  letter-spacing: 0.090em;
  margin: 0px 0px;
}
.appoint__section1 .sch-txt p a {
  color: #000;
}
.appoint__section1 .sch-txt.col-sm-3 {
  padding-left: 105px;
}
.appoint__section1 .sch-txt.col-sm-3 i {
  background-position: -109px -117px;
  left: 24px;
}
.appoint__section1 .sch-txt:nth-of-type(1) i {
  background-position: 6px -117px;
}
.appoint__section1 .sch-txt:nth-of-type(2) i {
  background-position: -47px -117px;
}
.appoint__section1 .sch-txt:nth-of-type(2) p {
  margin-bottom: 0px;
}
.appoint__section1 .sch-txt:nth-of-type(2) p:nth-of-type(2) {
  margin-top: -2px;
}
.appoint__section2 {
  padding-bottom: 126px;
}
.appoint__section2 h2 {
  font-size: 30px;
  line-height: 1.5;
}
.appoint__section2 h2:after {
  top: -10px;
  right: 58%;
}
.appoint__section2 .app-calender2 {
  margin-top: 125px;
  width: 42.5%;
  float: right;
  min-height: 728px;
}
.appoint__section2 .pre-appoint {
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
.appoint__section2 .pre-appoint .col-sm-6:nth-of-type(1) {
  padding-bottom: 15px;
}
.appoint__section2 .pre-appoint form {
  width: 100% !important;
}
.appoint__section2 .pre-appoint form input[type="submit"] {
  width: 230px !important;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.appoint__section2 .pre-appoint form input[type="submit"]:hover {
  box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.095) !important;
  background-color: #dc4f53;
}
.appoint__section2 .pre-appoint .max-app {
  margin-top: 40px;
}
.appoint__section2.cmn-from form .bx-tab {
  padding: 0px 0px !important;
}
.appoint__section2.cmn-from form .bx-tab2 {
  margin-top: 0px !important;
}
.appoint__section2.cmn-from form select {
  padding-left: 18px !important;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent !important;
}
.appoint__section2.cmn-from form select:invalid {
  color: #7b7b7b;
  font-weight: 300;
}
.appoint__section2.cmn-from form input[type=text],
.appoint__section2.cmn-from form input[type=email] {
  padding: 0px 20px !important;
  border-radius: 0px;
  box-shadow: none;
}
.appoint__section2.cmn-from form textarea {
  border: 0px !important;
  border-bottom: 1px solid #b2b2b2 !important;
  border-radius: 0px !important;
  height: 90px !important;
  padding: 18px 20px !important;
  box-shadow: none;
}
.sel-tab {
  position: relative;
}
.sel-tab:after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-left: 2px solid #ff662f;
  border-top: 2px solid #ff662f;
  top: 35px;
  right: 12px;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
  cursor: pointer;
}
.question-tab {
  padding-top: 86px;
}
.q-tab {
  text-align: left;
  padding-left: 0px;
}
.q-tab h5 {
  font-size: 28px;
  color: #ff662f;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 600;
  padding-left: 18px;
}
.q-tab p.sub-que {
  font-size: 24px;
  color: #010101;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 400;
  margin: 0px 0px 50px;
  padding-left: 18px;
}
.q-tab .qu-box {
  background-color: #fafafa;
  border: 1px solid #f0f0f0;
  margin-bottom: 3px;
  cursor: pointer;
  position: relative;
}
.q-tab .qu-box h6,
.q-tab .qu-box p {
  text-align: left !important;
  font-weight: 300;
}
.q-tab .qu-box h6 {
  font-size: 18px;
  color: #000000;
  letter-spacing: normal;
  line-height: 1.6;
  padding: 16px 20px;
}
.q-tab .qu-box h6.active {
  color: #ff662f;
}
.q-tab .qu-box h6 span.plus {
  width: 30px;
  height: 30px;
  padding: 8px;
  border: 2px solid transparent;
  position: absolute;
  right: 12px;
  top: 15px;
}
.q-tab .qu-box h6 span.plus:before {
  position: absolute;
  content: '';
  right: 13px;
  left: auto;
  height: 10px;
  width: 2px;
  background-color: #413e3e;
  top: 9px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.q-tab .qu-box h6 span.plus:after {
  position: absolute;
  content: '';
  right: 9px;
  height: 2px;
  width: 10px;
  background-color: #413e3e;
  top: 13px;
}
.q-tab .qu-box .accordion-content {
  padding: 0px 20px 10px;
}
.q-tab .qu-box p {
  font-size: 14px;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 2.1;
}
.q-tab .qu-box .accordion-toggle.active .plus:before {
  background-color: #ff662f !important;
  -webkit-transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
  -moz-transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
  -o-transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
  -ms-transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
  transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
}
.q-tab .qu-box .accordion-toggle.active .plus:after {
  background-color: #ff662f !important;
}
.s-tab {
  text-align: left;
  margin: 0px !important;
  width: 39%;
  float: right;
  padding-right: 0px;
}
.s-tab h5 {
  font-size: 28px;
  color: #ff662f;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 600;
  padding-left: 0px;
}
.s-tab p.sub-que2 {
  font-size: 14px;
  color: #010101;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 500;
  margin: 0px 0px 50px;
}
.s-tab .ser-box {
  padding: 10px 0px 14px;
  margin-bottom: 0px;
  cursor: pointer;
  position: relative;
}
.s-tab .ser-box h6,
.s-tab .ser-box p {
  text-align: left !important;
  font-weight: 300;
}
.s-tab .ser-box h6 {
  font-size: 18px;
  color: #000000;
  letter-spacing: normal;
  line-height: 1.6;
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.s-tab .ser-box h6.active {
  color: #ff662f;
  font-weight: 300;
}
.s-tab .ser-box h6 span.plus {
  width: 30px;
  height: 30px;
  padding: 8px;
  border: 2px solid transparent;
  position: absolute;
  right: 0px;
  top: 15px;
}
.s-tab .ser-box h6 span.plus:before {
  position: absolute;
  content: '';
  right: 13px;
  left: auto;
  height: 10px;
  width: 2px;
  background-color: #413e3e;
  top: 9px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.s-tab .ser-box h6 span.plus:after {
  position: absolute;
  content: '';
  right: 9px;
  height: 2px;
  width: 10px;
  background-color: #413e3e;
  top: 13px;
}
.s-tab .ser-box .accordion-content2 {
  padding-top: 10px;
  padding-bottom: 3px;
}
.s-tab .ser-box p {
  font-size: 14px;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 2.1;
  margin: 0px;
}
.s-tab .ser-box a {
  width: 75px;
  border-radius: 20px;
  background-color: #ff662f;
  font-size: 12px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.6;
  display: block;
  text-align: center;
  margin-top: 28px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.s-tab .ser-box a:hover {
  background-color: #ea5256;
}
.s-tab .ser-box .accordion-toggle2.active .plus:before {
  background-color: #ff662f !important;
  -webkit-transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
  -moz-transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
  -o-transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
  -ms-transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
  transform: rotate(90deg) scale(1) skew(0deg) translate(0px);
}
.s-tab .ser-box .accordion-toggle2.active .plus:after {
  background-color: #ff662f !important;
}
.choose-date {
  position: relative;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6d6d6;
  width: 96%;
}
.choose-date i {
  width: 58px;
  height: 54px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('../img/sprite.png');
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  background-position: -169px -117px;
}
.choose-date p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.1;
  padding: 7px 0px 7px 69px;
}
.appoint__section2.cmn-from .app-calender2 .cal-pic input {
  border-bottom: 0px !important;
  width: 185px !important;
  position: absolute;
  top: 0px;
  right: 35px;
  padding: 0px 0px !important;
  color: #1a1a1a;
  font-size: 18px;
  text-align: right;
}
.picker {
  position: initial!important;
  min-height: 545px;
}
.picker__box {
  padding: 0px 0px !important;
}
.picker__holder {
  overflow-y: visible !important;
  min-width: inherit !important;
  max-width: inherit!important;
  position: relative !important;
}
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1 !important;
  border: 0px !important;
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
}
table.picker__table {
  width: 96% !important;
  table-layout: inherit !important;
}
table.picker__table tr {
  margin: 15px 0px !important;
}
table.picker__table tr td:first-child {
  padding-left: 0px !important;
}
table.picker__table tr td:last-child {
  padding-right: 0px !important;
}
table.picker__table td {
  padding: 16px 0px !important;
}
table.picker__table thead tr {
  padding-bottom: 34px;
  height: 34px;
  border-bottom: 1px solid #e0e0e0 !important;
}
.app-calender2 .picker__header select {
  border-bottom: none !important;
}
.picker__select--year {
  display: none !important;
}
.picker__header {
  width: 94% !important;
}
.picker__select--month {
  border: none !important;
  width: auto !important;
  height: auto !important;
  margin: 7px 0px 0px!important;
  padding: 0px 0px !important;
  font-size: 22px !important;
  font-weight: 300;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.picker__weekday {
  width: 16.285714% !important;
  font-size: 18px !important;
  text-transform: uppercase;
  font-weight: 300 !important;
  color: #9b9b9b !important;
  padding: 0px 6px !important;
}
.picker__header {
  padding-bottom: 27px !important;
}
.picker__footer {
  display: none !important;
}
.picker__day {
  padding: 10px 0px !important;
  width: 46px !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  border: 0px !important;
}
.picker--focused .picker__day--selected,
.picker__day--selected,
.picker__day--selected:hover {
  font-weight: 500 !important;
  border: 0px solid #ff662f;
  border-radius: 50%;
  background-color: #ff662f !important;
  color: #fff !important;
}
.app-calender2 .picker__day.picker__day--today.picker__day--highlighted {
  font-weight: 300;
  border: 0px solid #ff662f;
  border-radius: 50%;
  background-color: #ff662f  !important;
  color: #fff !important;
}
.app-calender2 .picker__day.picker__day--today.picker__day--highlighted:before {
  display: none !important;
}
.picker__day.picker__day--today:before {
  display: none !important;
}
.app-calender2 .picker--focused .picker__day--disabled,
.picker__day--disabled,
.picker__day--disabled:hover {
  background-color: transparent !important;
  border: none !important;
  color: #ddd !important;
  font-weight: 300 !important;
}
.picker--focused .picker__day--highlighted,
.picker__day--highlighted:hover,
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  background-color: #ff662f !important;
  border-radius: 50% !important;
  font-weight: 500 !important;
  color: #ffffff !important;
}
.picker__nav--prev {
  top: 4px !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.picker__nav--prev:hover:after {
  border-top: 1px solid #ff662f;
  border-right: 1px solid #ff662f;
}
.picker__nav--next {
  top: 5px !important;
  padding-right: 12px !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.picker__nav--next:hover:after {
  border-top: 1px solid #ff662f;
  border-right: 1px solid #ff662f;
}
.picker__nav--next:before,
.picker__nav--prev:before {
  display: none !important;
}
.picker__nav--prev:after {
  content: " ";
  border-top: 1px solid #b9bcc3;
  border-bottom: 0px;
  border-right: 1px solid #b9bcc3;
  display: block;
  margin: 0 auto;
  height: 14px;
  width: 14px;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
.picker__nav--next:after {
  content: " ";
  border-top: 1px solid #b9bcc3;
  border-bottom: 0px;
  border-right: 1px solid #b9bcc3;
  display: block;
  margin: 0 auto;
  height: 14px;
  width: 14px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.picker__nav--next:hover,
.picker__nav--prev:hover {
  background-color: transparent !important;
}
.picker__header .picker__year {
  font-size: 18px !important;
  font-weight: 400;
  font-style: normal !important;
}
/***** contact ****/
.contactPage .classic-banner .banner-cap {
  width: 370px;
}
.contact-banner {
  background-image: url("../img/contact-banner.jpg");
}
.contact__section1 {
  text-align: inherit;
}
.contact__section1 .col-sm-8 {
  padding-left: 0px;
}
.contact__section1 .cont-cover h2 {
  font-size: 28px;
  color: #010101;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact__section1 .cont-cover p {
  line-height: 1.9;
  letter-spacing: 0.040em;
}
.contact__section1 .cont-cover h6 {
  font-size: 18px;
  color: #010101;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 300;
  margin-top: 45px;
  margin-bottom: 32px;
}
.contact__section1 .cont-cover form .bx-tab i {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 12px;
  left: 18px;
  background: url('../img/sprite.png');
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.contact__section1 .cont-cover form .bx-tab:nth-of-type(1) i {
  background-position: -338px -58px;
}
.contact__section1 .cont-cover form .bx-tab:nth-of-type(2) i {
  background-position: -380px -58px;
}
.contact__section1 .cont-cover form .bx-tab:hover i {
  transform: scale(0.7, 0.7);
}
.contact__section1 .reach-info {
  padding-left: 45px;
}
.contact__section1 .reach-info ul li {
  margin-bottom: 32px;
}
.contact__section1 .reach-info ul li h5 {
  font-size: 18px;
  color: #010101;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  border-bottom: 1px solid #dedede;
  padding: 24px 0px 14px;
}
.contact__section1 .reach-info ul li h5:before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 48px;
  height: 1px;
  background-color: #ff662f;
}
.contact__section1 .reach-info ul li p {
  font-size: 16px;
  color: #010101;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 300;
  padding-left: 32px;
  margin: 2px 0px;
  padding-top: 30px;
  position: relative;
}
.contact__section1 .reach-info ul li p i {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 36px;
  left: 0px;
  background: url('../img/sprite.png');
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.contact__section1 .reach-info ul li p a {
  color: #010101;
}
.contact__section1 .reach-info ul li:nth-of-type(1) p:nth-of-type(2) {
  padding-top: 0px !important;
}
.contact__section1 .reach-info ul li:nth-of-type(1) p:nth-of-type(2) span {
  color: #ff662f;
  font-weight: 400;
}
.contact__section1 .reach-info ul li:nth-of-type(1) p:nth-of-type(3) {
  padding-top: 0px !important;
}
.contact__section1 .reach-info ul li:nth-of-type(1) i {
  background-position: 47px -67px;
}
.contact__section1 .reach-info ul li:nth-of-type(2) i {
  background-position: 20px -68px;
}
.contact__section1 .reach-info ul li:nth-of-type(3) i {
  background-position: 50px -99px;
}
.contact__section1 .reach-info ul li:nth-of-type(4) i {
  background-position: 21px -99px;
}
.cmn-from form {
  width: 620px;
}
.mail_div span a + a {
    margin-left:5px;
}
.mail_div span a:hover {
    color:#e7201d;
}
/*.feature-box .fbox-media, .feature-box .fbox-media a, .feature-box .fbox-media img {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    text-align: center;
    margin: 0 auto;
}*/
.rounded-circle {
    border-radius: 50% !important;
}
.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 2px solid #ff662f;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}
.fbox-desc h3 {
    margin-top: 10px;
}
.cmn-from form .bx-tab {
  height: 100px;
  position: relative;
  padding: 0px 10px;
}
.cmn-from form input[type=text],
.cmn-from form input[type=email],
.cmn-from form select {
  font-size: 18px;
  color: #010101;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 500;
  border-bottom: 1px solid #b2b2b2!important;
  border: none;
  border-radius: 0px !important;
  height: 80px;
  width: 100%;
  padding: 0px 0px 0px 75px;
  outline: none;
}
.cmn-from form input[type=text]:focus i,
.cmn-from form input[type=email]:focus i,
.cmn-from form select:focus i {
  transform: scale(0.7, 0.7);
}
.cmn-from form .bx-tab2 {
  margin-top: 45px;
}
.cmn-from form .bx-tab2 textarea {
  height: 160px;
  font-size: 18px;
  color: #010101;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 500;
  border: 1px solid #b2b2b2;
  border-radius: 10px;
  width: 100%;
  resize: none;
  padding: 22px 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cmn-from form input[type=submit] {
  width: 160px;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 2.8;
  font-weight: 400;
  background-color: #ff662f;
  border-radius: 30px;
  text-align: center;
  margin-top: 22px;
  border: 0px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.cmn-from form input[type=submit]:hover {
  box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.095) !important;
  background-color: #dc4f53;
}
.contact__section2 {
  background-color: #414040;
  text-align: inherit;
  padding-bottom: 22px;
  padding-top: 85px;
}
.contact__section2 .ct-address .col-sm-4 {
  margin-bottom: 70px;
}
.contact__section2 .ct-address .col-sm-4:nth-child(3),
.contact__section2 .ct-address .col-sm-4:nth-child(6) {
  width: 25.333333%;
}
.contact__section2 .ct-address .col-sm-4:nth-child(2),
.contact__section2 .ct-address .col-sm-4:nth-child(5) {
  margin: 0px 60px 75px 40px;
}
.contact__section2 .ct-address h2 {
  line-height: 1.4;
  padding-top: 12px;
  margin-bottom: 0px;
}
.contact__section2 .ct-address h2:after {
  background-image: url("../img/address-meter.png");
  top: 25px;
  right: 30%;
}
.contact__section2 .ct-address h2,
.contact__section2 .ct-address p {
  color: #ffffff;
}
.contact__section2 .ct-address h4 {
  font-size: 24px;
  color: #ffffff;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 26px;
}
.contact__section2 .ct-address address {
  padding-left: 40px;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 2.1;
  font-weight: 300;
}
.contact__section2 .ct-address address span,
.contact__section2 .ct-address address p {
  position: relative;
}
.contact__section2 .ct-address address span i,
.contact__section2 .ct-address address p i {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 5px;
  left: -46px;
  background: url('../img/sprite.png');
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.contact__section2 .ct-address address span i {
  background-position: 76px -69px;
}
.contact__section2 .ct-address address p {
  margin-top: 18px;
}
.contact__section2 .ct-address address p i {
  background-position: 77px -99px;
}
.sel-tab {
  /* select{ color:#cacaca !important; font-weight: 300 !important;
    option:first-child
    {
      color:#000;
    }
  }*/
}
.sel-tab select:invalid {
  color: #7b7b7b;
}
.cf-input:-ms-input-placeholder {
  color: #7b7b7b;
}
.cf-input:-moz-placeholder {
  color: #7b7b7b;
}
.cf-input::-moz-placeholder {
  color: #7b7b7b;
}
.cf-input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 18px;
  color: #7b7b7b;
  letter-spacing: normal;
  line-height: normal;
  text-align: left;
}
.cf-input2:-ms-input-placeholder {
  color: #7b7b7b;
}
.cf-input2:-moz-placeholder {
  color: #7b7b7b;
}
.cf-input2::-moz-placeholder {
  color: #7b7b7b;
}
.cf-input2::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #7b7b7b;
  letter-spacing: normal;
  line-height: normal;
  text-align: left;
}
.datepick:-ms-input-placeholder {
  color: #1a1a1a;
}
.datepick:-moz-placeholder {
  color: #1a1a1a;
}
.datepick::-moz-placeholder {
  color: #1a1a1a;
}
.datepick::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #1a1a1a;
  letter-spacing: normal;
  line-height: normal;
  text-align: right;
}
.error {
  font-size: 12px;
  font-weight: 400;
  color: red;
  text-align: left;
  display: block !important;
  padding-top: 5px;
}
.footer-top ul li {
    color: #909090;
}
/*-------------------------------------------*/
.modal-header .close {
    margin-top: -22px;
    color: red;
}
.view_all a {
    background: #ff662f;
    padding: 12px 60px;
    border-radius: 30px;
    border: 2px solid #fff;
    margin: 5px;
    color: #fff;
    box-shadow: 1px 6px 3px #7F7F7F;
	display: inline-block;
    vertical-align: top;
}
.view_all{
	margin-top:20px;
}
.header.sticky{top:0; position:fixed; width:100%; z-index:999; border-bottom: 1px solid #eee;}
.header {
    background: #fff;
    position: relative;
}
.into_left p {
    margin-bottom: 35px;
}
.overlay_sec{
	background-color:rgba(255,255,255,0.8);
	padding:20px 20px 30px 20px;
}
.banner-bottom.banner-bottom1 {
    bottom: 0;
    left: 0;
}
.b_img img{
	width:100%;
}
.list-features {
	position: relative;
	margin-top: 35px;
	margin-right: 32px;
	padding-bottom: 73px;
/*	text-align: right;*/
	text-align: left;
}
.list-features__item {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}
.list-features__item:after {
	display: block;
	height: 30px;
/*	margin-right: 26px;
	border-right: 1px dotted;*/
	margin-left: 20px;
    border-left: 1px dotted;
	content: '';
}
.list-features__item:last-child:after {
	content: none;
}
.list-features__inner {
	/*margin-right: 97px;*/
	margin-left: 97px;
}
.list-features__title {
	position: relative;
	margin-bottom: 14px;
	/*padding-right: 15px;*/
	padding-left: 15px;
}
.list-features__title:before,
.list-features__title:after {
	position: absolute;
	/*right: 0;*/
	left: 0;
	width: 5px;
	height: 5px;
	content: '';
}
.list-features__title:before {
	bottom: 10px;
	background-color: #333;
}
.list-features__title:after {
	bottom: 0;
}
.list-features__description {
	/*height: 46px;*/
	height:125px
	overflow: hidden;
}
i.list-features__icon {
	/*float: right;*/
	float: left;
    font-size: 54px;
    line-height: 1;
    color: #777;
    margin-right: 5px;
}
.list-features__title-emphasis {
	font-size: 24px;
	font-weight: 400;
}

.list-features_mod-a {
	margin-top: 0;
}
.list-features_mod-a .list-features__item {
	width: 50%;
}
.list-features_mod-a .list-features__item:nth-child(odd) {
	float: left;
	padding-right: 35px;
}
.list-features_mod-a .list-features__item:nth-child(even) {
	float: right;
	padding-left: 77px;
	text-align: left;
}
.list-features_mod-a .list-features__item:after {
	height: 37px;
	margin-top: 9px;
}
.list-features_mod-a .list-features__item:nth-child(3):after {
	border-right: none;
}
.list-features_mod-a .list-features__item:nth-child(even):after {
	margin-right: 0;
	margin-left: 26px;
	border-right: none;
	border-left: 1px dotted;
}
.list-features_mod-a .list-features__item .list-features__icon {
	margin-top: 15px;
}
.list-features_mod-a .list-features__item:nth-child(even) .list-features__icon {
	float: left;
}
.list-features_mod-a .list-features__item:nth-child(even) .list-features__inner {
	margin-right: 0;
	margin-left: 89px;
}
.list-features_mod-a .list-features__item:nth-child(even) .list-features__title:before,
.list-features_mod-a .list-features__item:nth-child(even) .list-features__title:after {
	right: auto;
	left: 0;
}
.list-features_mod-a .list-features__item:nth-child(even) .list-features__title {
	padding-right: 0;
	padding-left: 15px;
}
.list-features_mod-b {
	margin-bottom: 20px;
}
.list-features_mod-b:before {
	position: absolute;
	right: -50px;
	bottom: 0;
	width: 174px;
	height: 25px;
	background: url('../media/decor/arrow-orange_right_top.png') no-repeat;
	content: '';
}

.list-features-2 {
	margin-top: 58px;
	padding-right: 30px;
	vertical-align: top;
}
.list-features-2__icon {
	float: left;
	font-size: 54px;
	line-height: 1;
}
.list-features-2__inner {
	margin-left: 77px;
}
.list-features-2__title {
	position: relative;
	margin-bottom: 10px;
	padding-left: 15px;
	font-size: 18px;
}
.list-features-2__title:before,
.list-features-2__title:after {
	position: absolute;
	right: 0;
	width: 5px;
	height: 5px;
	content: '';
}
.list-features-2__title:before {
	bottom: 10px;
	background-color: #333;
}
.list-features-2__title:after {
	bottom: 0;
}
.list-features-2__description {
	height: 70px;
	margin-bottom: 15px;
}
.list-features-2__title:before,
.list-features-2__title:after {
	left: 0;
}
.flaticon-head39:before {
    content: "\e011";
}
flaticon.css:12
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-style: normal;
}
.list-features__title:after{
    background-color: #e7201d;
}
.list-features__icon.fa.fa-user {
    margin-right: 5px;
}
.list-features__icon.fa.fa-ship {
    font-size: 45px;
	margin-right:0;
}
.ui-title-emphasis {
    color: #e7201d;
}
.post .entry-media {
	position: relative;
}
.post .entry-media img {
	border-top-left-radius: 7px;
	text-align: center;
	margin: 0 auto;
}
.post:hover .entry-media:before {
	opacity: 0.8;
}
.post .entry-main {
	transition: all 0.3s;
}
.post .entry-title,
.post .entry-title a {
	color: #333;
	transition: all 0.3s;
}
.post .entry-meta {
	margin-bottom: 15px;
	font-size: 11px;
	text-transform: uppercase;
}
.post .entry-meta__item {
	padding-right: 10px;
}
.post .entry-meta__item .icon {
	padding-right: 5px;
	font-size: 12px;
}
.post .entry-meta__link {
	font-weight: 700;
	color: #333;
}
.post .entry-date {
	position: absolute;
	right: 20px;
	bottom: 25px;
	padding-right: 17px;
	font-family: 'Titillium Web';
	font-weight: 600;
	color: #fff;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	transition: all 0.3s;
	text-transform: uppercase;
}
.post:hover .entry-date {
	background-color: #333;
}
.post .entry-date a {
	color: #fff;
}
.post .entry-date__inner {
	display: inline-block;
	margin-right: 17px;
	padding: 10px 20px 10px 25px;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.post .btn-link {
	margin-left: 5px;
	padding-bottom: 7px;
}
.post .entry-footer {
	margin-top: 31px;
}
.post .entry-footer .decor-3 {
	margin-bottom: 5px;
	margin-left: 15px;
}
.post p + p {
	margin-top: 20px;
}
.post .post-img {
	margin-top: 40px;
	margin-bottom: 50px;
}

.post_mod-a .entry-media {
	margin-bottom: 50px;
	box-shadow: 0 3px 0 0 #333;
}
.post_mod-a .entry-media:before {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	content: '';
	transition: all 0.3s;
}
.post_mod-a .entry-title {
	margin-bottom: 19px;
}

.post_mod-b {
	text-align: center;
}
.post_mod-b .entry-media {
	padding-right: 20px;
	padding-left: 20px;
}
.post_mod-b .entry-media img {
	border-bottom-right-radius: 7px;
}
.post_mod-b .entry-main {
	margin-top: -80px;
	margin-bottom: 3px;
	padding-top: 123px;
	padding-bottom: 15px;
	background-color: #fff;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1), 0 3px 0 0 #777;
}
.post_mod-b:hover .entry-main {
	color: #fff;
	background-color:rgba(231,32,30,0.7);
}
.post_mod-b .entry-title {
	margin-bottom: 4px;
	padding-right: 10px;
	padding-left: 10px;
	font-weight:700;
}
.post_mod-b .entry-content {
	padding:27px 20px;
}
.post_mod-b:hover .decor-2:after {
	background-color: #fff;
}
.post_mod-b:hover .entry-title{
	color:#fff;
}
.post_mod-b_mg-btn {
	margin-bottom: 70px;
}

.post_mod-c {
	margin-bottom: 70px;
}
.post_mod-c .entry-media {
	margin-bottom: 30px;
}
.post_mod-c .entry-title {
	margin-bottom: 19px;
	font-size: 30px;
	font-weight: 600;
	text-transform: none;
}
.post_mod-c .entry-meta {
	margin-bottom: 40px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
}
.post_mod-c .entry-meta__item {
	display: inline-block;
	margin-bottom: 13px;
	padding: 3px 16px 0 18px;
	border-left: 1px dotted #000;
}
.post_mod-c .entry-meta__item:last-child {
	border-right: 1px dotted #000;
}
.post_mod-c .entry-date {
	top: 30px;
	right: auto;
	bottom: auto;
	left: 30px;
}
.post_mod-c .entry-footer {
	margin-top: 24px;
}
.post_mod-c .entry-media img {
	border-top-left-radius: 0;
	border-bottom-right-radius: 7px;
}

.post_main .entry-date {
	top: auto;
	bottom: 30px;
}
.post_main .entry-footer {
	margin-top: 29px;
}
.post_main .entry-footer__wrap-link {
	display: inline-block;
	margin-right: 34px;
	text-align: center;
}
.post_main .social-links {
	display: inline-block;
}
.section-area {
    background:rgba(183, 212, 240, 0.5);
}
.section-bg_mod-a.section-title-block {
    padding-bottom: 25px;
}
.decor-2:before, .decor-2:after {
    display: inline-block;
    width: 12px;
    height: 2px;
    content: '';
    transition: all 0.3s;
	background-color:#000;
	margin: 1px;
}
.decor-2_mod-b:before, .decor-2_mod-b:after {
    width: 10px;
}
.decor-2:before{
    background-color: #e7201d;
}
.decor-2:after {
    margin-left: 3px;
    background-color: #000;
}
.readmore a{position:relative; vertical-align: middle; z-index:1000; background:#e7201d; color:#fff !important; text-shadow: 0 0 2px rgba(0, 0, 0, 0.36); text-decoration:none; font-size:14px; text-transform:uppercase; font-weight:bold; padding:10px 24px; display:inline-block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0,0,0,0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
	border-radius:3px;
}
.readmore a:hover{color:#fff !important;}
.readmore a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0555b4;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius:3px;
}
.readmore a:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.au_img {
    display: block;
    margin: 0 auto;
    text-align: center;
	margin-top:10px;
	width: 160px;
}
.au_img img{
	border-radius:50%;
}
.brands_sec {
    text-align: center;
    background-color: rgba(183, 212, 240, 0.5);
    padding: 50px 0;
	background-image:url(../images/brand-bg.jpg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}
.brands_sec.inner_banner{
	background-image:none;
}
h5.modal-title{
	color:#e7201d;
}
.content_sec{
	padding:50px 0;
}
.popup_contents ul li {
    list-style: disc;
}
.popup_contents ul {
    margin-left:15px;
}
.brands_sec .readmore {
    padding-top: 15px;
}
.logo_box {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #000;
    border-radius: 17px;
	margin:10px;
}
.brands_head {
    background-color: rgba(255,255,255,0.5);
    margin-top: 12%;
    padding: 8px;
}
.tslider .owl-dots {
    padding-top: 20px;
}
.content-author2 h4 {
    color: #e7201d;
}
#main {
    border-top: 5px solid #777;
}
.head_contact::after {
    left: -3px;
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 40px;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    background: #e7201d;
    top: -15px;
}
.head_contact {
    background: #e7201d;
    text-align: right;
    box-shadow: 1px 2px 2px #626262;
	color:#fff;
	font-weight: 600;
    padding-right: 20px;
}
.head_contact p{
	margin:0;
}
.head_contact p i{
	margin-right:10px;
}
.head_contact span {
    display: inline-block;
    vertical-align: top;
}
.head_contact span + span {
    margin-left: 30px;
}
.banner_sec {
    position: relative;
}
.small_img {
    position: absolute;
    top: calc(50% - 145px);
    z-index: 999;
    right: 56px;
}
.banner_contents {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0,0,0,0.8);
    padding: 22px;
    width: 100%;
	text-align: center;
}
.banner_contents h2,
.banner_contents p {
    color: #fff;
}
.b_slider .owl-prev,
.b_slider .owl-next{
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: url(../images/prevnext.png) no-repeat 0 1px;
    opacity: .4;
    top: calc(50% - 25px);
    margin-top: -25px !important;
    position: absolute;
    background-color:#0555b4;
}
.b_slider .owl-prev:hover,
.b_slider .owl-next:hover{
    opacity:1;
}
.b_slider .owl-next {
    right: 0;
    background: url(../images/prevnext.png) no-repeat 0 -47px;
    background-color: #0555b4;
}
/*.b_slider  .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}
.b_slider  .owl-dot {
    width:30px;
    height:5px;
    background-color: #0555b4;
    display: inline-block;
    vertical-align: top;
    margin: 5px;
    text-align: center;
	opacity: 0.5;
}
.b_slider  .owl-dot.active{
	opacity:1;
}*/
.top span i {
    color: #e7201d;
    padding-right: 10px;
}
.top span + span {
    margin-left: 30px;
}
.service_bottom{
	padding-top:20px;
}
.srv_last {
    background-color: rgba(255,255,255,0.8);
	text-align:left;
	padding:20px;
}
.srv_last ul li {
    list-style: disc;
}
.srv_last ul li + li{
	margin-top:10px;
}
.srv_last h6{
	color:#e7201d;
	margin-bottom:15px;
}
.srv_last ul {
    margin-left:15px;
}
/*-----------------contact--------------*/
.adress_img span {
    border: 2px solid #000;
    padding: 12px;
    border-radius: 10%;
	display:inline-block;
}
.adress_img {
    border-bottom: 1px dashed #bfbfbf;
    padding-bottom: 25px;
}
.contact_sec .bnd_head {
    padding-bottom: 40px;
}
.contact_details {
    padding-bottom: 20px;
}
.contact_details ul li span {
    display: inline-block;
    vertical-align: top;
}
.contact_details ul li span.right_icon{
	width:90%;
	padding-top: 5px; 
	font-size: 15px;
}
.contact_details ul li span.left_icon{
	padding-top:10px;
}
.form_sec .bnd_head.text-center,
.news_inner .bnd_head.text-center {
    background: #eee;
    padding:0px 0;
    margin-bottom: 28px;
}
.bnd_head h2 {
    padding: 10px 0;
}
input[type="text"], input[type="url"], input[type="tel"], input[type="email"], input[type="password"], input[type="number"], select, textarea { background-color:transparent; border: 1px solid #dcdcdc; color: #606060; font-family: 'Open Sans', sans-serif; font-size:16px; padding: 10px 15px; resize: vertical; width:100%;font-weight:500;border-radius: 8px;ba }
select {padding:11px 15px;}
.contact_sec ,
.news_inner {
    border-top: 2px solid #e7201d;
}
.form_sec {
    padding-top: 30px;
}
.input_outer + .input_outer {
    padding-top: 20px;
}
.input_sec label {
    font-weight: 500;
}
.input_sec label {
    margin-bottom: 10px;
}
.input_sec.sub_bt input {
    background: #e7201d;
    color: #fff;
    border: 0;
	text-decoration:none; font-size:14px; text-transform:uppercase; font-weight:bold; padding:10px 24px; display:inline-block;
	border-radius:3px;
}
.input_sec.sub_bt input:hover {
    background: #0555b4;
}
.adress_img span i {
    color: #0555b4;
}
.header1.fixed_nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
	border-color:#0555b4;
}
.header1 {
    z-index: 999;
    top: 0;
    left: 0;
    vertical-align: middle;
    width: 100%;
    /*padding: 0;*/
	padding:5px 0;
    transition: all linear 0.9s;
	border-bottom: 1px solid transparent;
}
.top_contact {
    display: inline-block;
    vertical-align: top;
}
.top_contact + .top_contact  {
	margin-left:20px;
}
/*----------------mobile menu--------------*/
#mob_menu {
    background-color:#0555b4; 
    color: #fff;
    height: 100%;
    left: -280px;
    opacity: 1;
    position: fixed;
    top: 0;
    transition: all 0.3s ease 0s;
    width: 280px;
    z-index: 999999;
}
#mob_menu.show_menu {
    left: 0;
}
#mob_menu.hide_menu {
    left: -100;
}
#mob_menu .close_btn a {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
    margin-top: 5px;
}
#mob_menu ul, #mob_menu ul li {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
#mob_menu ul li {
    display: block;
}
#mob_menu ul li a {
    color:#fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 15px;
    text-decoration: none;
    text-transform: uppercase;
}
#mob_menu ul li a:hover,
#mob_menu ul li a:focus{
	color:#000;
}
#mob_menu ul li  {
    border-bottom: 1px solid #f1f1f1 !important;
}
.a_right {
    text-align: right;
}
.mob_bt{
	display:none;
}
.mob_bt:hover{
	cursor:pointer;
}
/*-------------------------------------------*/
/*@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .appoint__section2 .pre-appoint :nth-of-type(1).col-sm-6 {
    padding-bottom: 32px;
  }
  .appoint__section2 .app-calender2 {
    min-height: 642px;
  }
  html {
    overflow: hidden;
    height: 100%;
  }
  body {
    overflow: auto;
    height: 100%;
  }
  .hospitality .circle .banner-links {
    visibility: visible !important;
  }
  .hospitality .circle .center-contain {
    visibility: visible!important;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 1200px), (-ms-high-contrast: active) and (min-width: 1200px) {
  .banner .banner-bottom .banner-links {
    text-align: inherit;
  }
  .banner .banner-bottom .banner-links .item-link {
    width: 25%;
    float: left;
    min-width: 230px;
    margin-right: 0px !important;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 991px) and (max-width: 1199px), (-ms-high-contrast: active) and (min-width: 991px) and (max-width: 1199px) {
  .banner .banner-bottom .banner-links {
    text-align: inherit;
  }
  .banner .banner-bottom .banner-links .item-link {
    width: 25%;
    float: left;
    min-width: 230px;
    margin-right: 0px !important;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 390px), (-ms-high-contrast: active) and (max-width: 390px) {
  .appoint__section2 .appoint-fm .app-calender2 {
    min-height: 450px !important;
  }
}*/
select::-ms-expand {
  display: none;
}
/*date-picker css style*/
.picker,
.picker__holder {
  width: 100%;
  position: absolute;
}
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.picker__input {
  cursor: default;
}
.picker__input.picker__input--active {
  border-color: #0089ec;
}
.picker__holder {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #aaa;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}
/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
.picker__frame {
  padding: 1px;
}
.picker__wrap {
  margin: -1px;
}
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}
/* classic time css*/
.picker__footer,
.picker__header,
.picker__table {
  text-align: center;
}
.picker__day--highlighted,
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
.picker__box {
  padding: 0 1em;
}
.picker__header {
  position: relative;
  margin-top: 0.75em;
}
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: 0.25em;
}
.picker__year {
  color: #000;
  font-size: .8em;
  font-style: italic;
}
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: 0.25em;
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__nav--next,
.picker__nav--prev {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
/*@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
  .picker__nav--next,
  .picker__nav--prev {
    top: -0.33em;
  }
  .picker__nav--prev {
    padding-right: 1.5em;
  }
  .picker__nav--next {
    padding-left: 1.5em;
  }
}*/
.picker__nav--next:before,
.picker__nav--prev:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: .75em solid #000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000;
}
.picker__nav--next:hover,
.picker__nav--prev:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover,
.picker__nav--disabled:hover {
  cursor: default;
  background: 0 0;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
.picker--focused .picker__day--highlighted,
.picker__day--highlighted:hover,
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  color: #000;
  cursor: pointer;
  background: #b1dcfb;
}
.picker__table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: 0.5em;
}
/*@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: 0.75em;
  }
}*/
.picker__table td {
  margin: 0;
  padding: 0;
}
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #7b7b7b !important;
  font-weight: 500;
}
/*@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: 0.5em;
  }
}*/
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: .5em solid #0059bc;
  border-left: 0.5em solid transparent;
}
.picker__day--disabled:before {
  border-top-color: #aaa;
}
.picker__day--outfocus {
  color: #ddd;
}
.picker--focused .picker__day--selected,
.picker__day--selected,
.picker__day--selected:hover {
  background: #0089ec;
  color: #fff;
}
.picker--focused .picker__day--disabled,
.picker__day--disabled,
.picker__day--disabled:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbb;
}
.picker__button--clear,
.picker__button--close,
.picker__button--today {
  border: 1px solid #fff;
  background: #fff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: 700;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--clear:hover,
.picker__button--close:hover,
.picker__button--today:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--clear:focus,
.picker__button--close:focus,
.picker__button--today:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: 0;
}
.picker__button--clear:before,
.picker__button--close:before,
.picker__button--today:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--clear:before,
.picker__button--today:before {
  content: " ";
  margin-right: 0.45em;
}
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: .66em solid #0059bc;
  border-left: 0.66em solid transparent;
}
.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #e20;
}
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaa;
}
/*-------------------------------------*/
.contact_details ul li i {
    color: #0555b4;
    margin-right: 15px;
}
span.skype_sch {
    margin-left: 15px;
}
.abt_img {
    padding-top: 40px; 
}
.top_data {
    background-color: #1763ae;
    padding: 5px 0;
    color: #fff;
}
.top_data  .social {
    text-align: right;
    padding:5px 0;
}
.top_data p {
    margin: 0;
    padding-top: 5px;
}
.service_boxsec .post_mod-b_mg-btn {
    margin-bottom: 0;
}
.service_boxsec {
    width: 345px;
    display: inline-block;
    vertical-align: top;
    margin: 15px;
}
.service_boxsec  .post_mod-b_mg-btn {
    margin-bottom: 0px;
}
.list-features__description {
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
}
.list-features__description ul li{
    font-family: 'Source Sans Pro', sans-serif;
}
.list-features__inner h3 {
    font-size: 20px;
}
.list-features__description ul li {
    line-height: 30px;
}
.mob_top.mob_logosec a {
    display: block;
}
.contact_details ul li span.skype_sch span.skpe_id {
    vertical-align: baseline;
}
.list-features__inner h3 {
    font-family: 'Source Sans Pro', sans-serif;
}
@font-face {
  font-family: 'ArialMTBlack'; 
  src: url('..fonts/ArialMTBlack.eot') format('embedded-opentype'),  url('..fonts/ArialMTBlack.woff') format('woff'), url('..fonts/ArialMTBlack.ttf')  format('truetype'), url('..fonts/ArialMTBlack.svg#ArialMTBlack') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Barbatrick-Regular';
  src:url('../fonts/Barbatrick-Regular.eot') format('embedded-opentype'),  url('../fonts/Barbatrick-Regular.woff') format('woff'), url('../fonts/Barbatrick-Regular.ttf')  format('truetype'), url('../fonts/Barbatrick-Regular.svg#Barbatrick-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ArialMT';
  src: url('../fonts/ArialMT.eot') format('embedded-opentype'),  url('../fonts/ArialMT.woff') format('woff'), url('../fonts/ArialMT.ttf')  format('truetype'), url('../fonts/ArialMT.svg#ArialMT') format('svg');
  font-weight: normal;
  font-style: normal;
}





