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

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  /*overflow-y: hidden;*/
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* HTML BASE STYLES */
@font-face {
  font-family: "opensansbold";
  src: url("fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "opensansextrabold";
  src: url("fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "opensansregular";
  src: url("fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "opensanssemibold";
  src: url("fonts/OpenSans-Semibold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: none; /* IE 11 */
  scrollbar-width: none; /* Firefox 64 */
}

body {
  font-family: "opensansregular", sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: normal;
  line-height: 1.7;
  position: relative;
  overflow: auto !important;
  overflow-x: hidden !important;
  min-height: 100vh;
  padding: 20px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  body {
    overflow-y: scroll !important;
  }
}
body:before {
  content: "";
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 25;
  border-style: solid;
  border-color: #151515;
  border-width: 20px;
}

a {
  color: #13618c;
  text-decoration: none !important;
  outline: none;
}
a:focus {
  outline: none;
}

.btn-s {
  text-decoration: none !important;
}

b,
strong {
  font-weight: bold;
}

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

h1,
h2 {
  font-family: "opensansregular";
  text-transform: uppercase;
}

h3,
h4,
h5,
h6 {
  font-family: "opensansregular", sans-serif;
}

h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 30px;
}
h1 span {
  display: block;
  font-family: "opensansregular";
  font-size: 26px;
  color: #000;
  font-weight: normal;
  line-height: 2;
}

h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
}

h3 {
  color: #212121;
}

h4 {
  color: #212121;
}

h5 {
  color: #212121;
}

h6 {
  color: #212121;
}

p {
  color: #212121;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-justify {
  text-align: justify;
}

.txt-uppercase {
  text-transform: uppercase;
}

.txt-primary {
  color: #13618c;
}

.txt-primary-dark {
  color: #13618c;
}

.spacer-lg {
  margin-top: 100px;
  margin-bottom: 100px;
}

.spacer-md {
  margin-top: 50px;
  margin-bottom: 50px;
}

.spacer-sm {
  margin-top: 30px;
  margin-bottom: 30px;
}

.spacer-xs {
  margin-top: 15px;
  margin-bottom: 15px;
}

.pt-0 {
  padding-top: 0;
}

.spacer-no-top {
  margin-top: 0px;
}

.m0 {
  margin: 0 !important;
}

input,
textarea,
button,
select {
  outline: none;
}

p {
  padding-bottom: 20px;
}

/* Scroll Bar */
/* width */
::-webkit-scrollbar {
  width: 0px;
}

/* GRID */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Containers */
.page-wrapper {
  display: block;
  zoom: 1;
}
.page-wrapper:before, .page-wrapper:after {
  content: "";
  display: table;
}
.page-wrapper:after {
  clear: both;
}

.container-fluid {
  width: 100vw;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 75px;
  zoom: 1;
}
.container-fluid:before, .container-fluid:after {
  content: "";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin: 0 -15px;
  zoom: 1;
}
.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}
@media (max-width: 768px) {
  .row {
    margin: 0;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  clear: both;
  zoom: 1;
}
.container:before, .container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media only screen and (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* Columns */
[class*=col-] {
  float: left;
  padding: 0 1em;
  width: 100%;
  min-height: 1px;
  position: relative;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}
/* Column Alignments */
.centered {
  margin-left: auto;
  margin-right: auto;
  float: none !important;
  zoom: 1;
}
.centered:before, .centered:after {
  content: "";
  display: table;
}
.centered:after {
  clear: both;
}

@media (max-width: 768px) {
  .centered-sm {
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }
}

@media (max-width: 1024px) {
  .centered-md {
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }
}

.pull-right, #success-stories .vpopup-close-details, #location-popup .close-details, #doctor-profile .close-details {
  float: right;
}

.pull-left {
  float: left;
}

/* Table & Flex Class */
.table {
  display: table;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 576px) {
  .table {
    display: block;
  }
}
.table .cell {
  display: table-cell;
  vertical-align: middle;
}
.table .align-bottom {
  vertical-align: bottom;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  width: 100%;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/* Clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/* Flex Layout */
[layout] {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

[layout*=column], [layout*=row] {
  width: 100%;
  max-width: 100%;
}

[layout^=row] {
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

[layout^=column] {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

[layout*=row][layout*=reverse] {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

[layout*=column][layout*=reverse] {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

[layout*=columns], [layout*=rows] {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

[layout=none] {
  -ms-flex: none;
  -webkit-box-flex: 0;
  flex: none;
}

[layout*=column][layout*=top-], [layout*=row][layout*=-left] {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

[layout*=column][layout*=center-], [layout*=row][layout*=-center], [layout~=centered] {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

[layout*=column][layout*=bottom-], [layout*=row][layout*=-right] {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

[layout*=column][layout*=spread-], [layout*=row][layout*=-spread] {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

[layout*=column][layout*=justify-], [layout*=row][layout*=-justify] {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

[layout*=column][layout*=-left], [layout*=row][layout*=top-] {
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

[layout*=column][layout*=-center], [layout*=row][layout*=center-], [layout~=centered] {
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

[layout*=column][layout*=-right], [layout*=row][layout*=bottom-] {
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

[layout*=column][layout*=-stretch], [layout*=row][layout*=stretch-] {
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

[layout*=columns][layout*=-left], [layout*=rows][layout*=top-] {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

[layout*=columns][layout*=-right], [layout*=rows][layout*=bottom-] {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

[layout*=columns][layout*=-center], [layout*=rows][layout*=center-] {
  -ms-flex-line-pack: center;
  align-content: center;
}

[layout*=columns][layout*=-justify], [layout*=rows][layout*=justify-] {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

[layout*=columns][layout*=-spread], [layout*=rows][layout*=spread-] {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}

[layout*=columns][layout*=-stretch], [layout*=rows][layout*=stretch-] {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  [layout*=column]:not([layout*=row]) > * {
    max-width: auto;
  }
  [layout*=column][self*=top] {
    height: auto !important;
  }
  [self~=size-] > * {
    height: auto;
  }
}
[layout*=column]:not([layout*=row]) [self*=left], [layout*=row]:not([layout*=column]) [self*=top] {
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}

[self~=center] {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}

[layout*=column]:not([layout*=row]) [self*=right], [layout*=row]:not([layout*=column]) [self*=bottom] {
  -ms-flex-item-align: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}

[self*=stretch] {
  -ms-flex-item-align: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}

[layout][self*=center] {
  margin-left: auto;
  margin-right: auto;
}

[layout][self*=right] {
  margin-right: 0;
}

[layout][self*=left] {
  margin-left: 0;
}

[layout*=column] [self*=bottom] {
  margin-top: auto;
}

[layout*=column] [self*=top] {
  margin-bottom: auto;
}

[layout*=row] [self*=left] {
  margin-right: auto;
}

[layout*=row] [self*=right] {
  margin-left: auto;
}

[self~=size-1of5] {
  width: 20%;
}

[self~=size-1of4] {
  width: 25%;
}

[self~=size-1of3] {
  width: 33.33333%;
}

[self~=size-2of5] {
  width: 40%;
}

[self~=size-1of2] {
  width: 50%;
}

[self~=size-3of5] {
  width: 60%;
}

[self~=size-2of3] {
  width: 66.6666%;
}

[self~=size-3of4] {
  width: 75%;
}

[self~=size-4of5] {
  width: 80%;
}

[self~=size-1of1] {
  width: 100%;
}

[layout*=column][layout*=stretch-] > :not([self*=size-]), [layout*=row][layout*=-stretch] > :not([self*=size-]), [self~=size-x1] {
  -ms-flex: 1 0 0% !important;
  -webkit-box-flex: 1 !important;
  flex: 1 0 0% !important;
}

[self~=size-x2] {
  -ms-flex: 2 0 0% !important;
  -webkit-box-flex: 2 !important;
  flex: 2 0 0% !important;
}

[self~=size-x3] {
  -ms-flex: 3 0 0% !important;
  -webkit-box-flex: 3 !important;
  flex: 3 0 0% !important;
}

[self~=size-x4] {
  -ms-flex: 4 0 0% !important;
  -webkit-box-flex: 4 !important;
  flex: 4 0 0% !important;
}

[self~=size-x5] {
  -ms-flex: 5 0 0% !important;
  -webkit-box-flex: 5 !important;
  flex: 5 0 0% !important;
}

[self~=size-x6] {
  -ms-flex: 6 0 0% !important;
  -webkit-box-flex: 6 !important;
  flex: 6 0 0% !important;
}

[self~=size-x7] {
  -ms-flex: 7 0 0% !important;
  -webkit-box-flex: 7 !important;
  flex: 7 0 0% !important;
}

[self~=size-x8] {
  -ms-flex: 8 0 0% !important;
  -webkit-box-flex: 8 !important;
  flex: 8 0 0% !important;
}

[self~=size-x9] {
  -ms-flex: 9 0 0% !important;
  -webkit-box-flex: 9 !important;
  flex: 9 0 0% !important;
}

[self*=size-auto] {
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
}

[self*=size-x0] {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}

[self~=size-xxlarge] {
  max-width: 1440px;
  width: 100%;
}

[self~=size-xlarge] {
  max-width: 1200px;
  width: 100%;
}

[self~=size-large] {
  max-width: 960px;
  width: 100%;
}

[self~=size-larger] {
  max-width: 840px;
  width: 100%;
}

[self~=size-medium] {
  max-width: 720px;
  width: 100%;
}

[self~=size-smaller] {
  max-width: 600px;
  width: 100%;
}

[self~=size-small] {
  max-width: 480px;
  width: 100%;
}

[self~=size-xsmall] {
  max-width: 360px;
  width: 100%;
}

[self~=size-xxsmall] {
  max-width: 240px;
  width: 100%;
}

[self*=size-x]:not([self*=small]):not([self*=large]) {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

[self~=first] {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

[self~=order-1] {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

[self~=order-2] {
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 3;
  order: 2;
}

[self~=order-3] {
  -ms-flex-order: 3;
  -webkit-box-ordinal-group: 4;
  order: 3;
}

[self~=last] {
  -ms-flex-order: 999;
  -webkit-box-ordinal-group: 1000;
  order: 999;
}

[layout*=column]:not([layout*=row]) > * {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

@media screen and (max-width: 64em) {
  [layout*=lg-row] {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  [layout*=lg-column] {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  [layout*=lg-columns], [layout*=lg-rows] {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 52em) {
  [layout*=md-row] {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  [layout*=md-column] {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  [layout*=md-columns], [layout*=md-rows] {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 40em) {
  [layout*=sm-row] {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  [layout*=sm-column] {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  [layout*=sm-columns], [layout*=sm-rows] {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 64em) {
  [self*=lg-full] {
    -ms-flex: 1 1 100% !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 100% !important;
    width: 100%;
    max-width: 100%;
  }
  [self*=lg-half] {
    -ms-flex: 1 1 50% !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 50% !important;
    width: 50%;
    max-width: 50%;
  }
  [self~=lg-first] {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  [self~=lg-last] {
    -ms-flex-order: 999;
    -webkit-box-ordinal-group: 1000;
    order: 999;
  }
  [self~=lg-hide] {
    display: none;
  }
  [self~=lg-show] {
    display: inherit;
  }
}
@media screen and (max-width: 52em) {
  [self*=md-full] {
    -ms-flex: 1 1 100% !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 100% !important;
    width: 100%;
    max-width: 100%;
  }
  [self*=md-half] {
    -ms-flex: 1 1 50% !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 50% !important;
    width: 50%;
    max-width: 50%;
  }
  [self~=md-first] {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  [self~=md-last] {
    -ms-flex-order: 999;
    -webkit-box-ordinal-group: 1000;
    order: 999;
  }
  [self~=md-hide] {
    display: none;
  }
  [self~=md-show] {
    display: inherit;
  }
}
@media screen and (max-width: 40em) {
  [self*=sm-full] {
    -ms-flex: 1 1 100% !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 100% !important;
    width: 100%;
    max-width: 100%;
  }
  [self*=sm-half] {
    -ms-flex: 1 1 50% !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 50% !important;
    width: 50%;
    max-width: 50%;
  }
  [self~=sm-first] {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  [self~=sm-last] {
    -ms-flex-order: 999;
    -webkit-box-ordinal-group: 1000;
    order: 999;
  }
  [self~=sm-hide] {
    display: none;
  }
  [self~=sm-show] {
    display: inherit;
  }
}
/* PLUGINS */
/* Owl Carousel - Core */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*======================================
  Selectric v1.11.1
======================================*/
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border-radius: 0px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 15px;
  line-height: 38px;
  color: #424242;
  height: 38px;
  font-family: "opensanssemibold";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: #fff;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 0;
  left: 0px;
  margin: auto;
  width: 12px;
  height: 7px;
  border-bottom: none;
  background: #fff url("../img/select-bg.jpg") no-repeat scroll center center;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
  color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

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

.selectric-open .selectric {
  border-color: #c4c4c4;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px -6px;
          box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #E0E0E0;
  color: #444;
}

.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444;
}

.selectric-items li:hover {
  background: #D5D5D5;
  color: #444;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  -webkit-transition-duration: 50ms;
          transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  -webkit-transition-duration: 0.45s;
          transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  -webkit-transition-duration: 0.55s;
          transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  -webkit-transition-duration: 0.65s;
          transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  -webkit-transition-duration: 0.85s;
          transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  -webkit-transition-duration: 0.9s;
          transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  -webkit-transition-duration: 0.95s;
          transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  -webkit-transition-delay: 0.95s;
          transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  -webkit-transition-duration: 1.05s;
          transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  -webkit-transition-duration: 1.1s;
          transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  -webkit-transition-duration: 1.15s;
          transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.15s;
          transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  -webkit-transition-duration: 1.2s;
          transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  -webkit-transition-duration: 1.25s;
          transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.25s;
          transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  -webkit-transition-duration: 1.3s;
          transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  -webkit-transition-duration: 1.35s;
          transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  -webkit-transition-duration: 1.4s;
          transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  -webkit-transition-duration: 1.45s;
          transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.45s;
          transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  -webkit-transition-duration: 1.55s;
          transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.55s;
          transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  -webkit-transition-duration: 1.6s;
          transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  -webkit-transition-duration: 1.65s;
          transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.65s;
          transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  -webkit-transition-duration: 1.7s;
          transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  -webkit-transition-duration: 1.75s;
          transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.75s;
          transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  -webkit-transition-duration: 1.8s;
          transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  -webkit-transition-duration: 1.85s;
          transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.85s;
          transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  -webkit-transition-duration: 1.9s;
          transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  -webkit-transition-duration: 1.95s;
          transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.95s;
          transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  -webkit-transition-duration: 2.05s;
          transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.05s;
          transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  -webkit-transition-duration: 2.1s;
          transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  -webkit-transition-duration: 2.15s;
          transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.15s;
          transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  -webkit-transition-duration: 2.2s;
          transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  -webkit-transition-duration: 2.25s;
          transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.25s;
          transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  -webkit-transition-duration: 2.3s;
          transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  -webkit-transition-duration: 2.35s;
          transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.35s;
          transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  -webkit-transition-duration: 2.4s;
          transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  -webkit-transition-duration: 2.45s;
          transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.45s;
          transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  -webkit-transition-duration: 2.5s;
          transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  -webkit-transition-duration: 2.55s;
          transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.55s;
          transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  -webkit-transition-duration: 2.6s;
          transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  -webkit-transition-duration: 2.65s;
          transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.65s;
          transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  -webkit-transition-duration: 2.7s;
          transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  -webkit-transition-duration: 2.75s;
          transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.75s;
          transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  -webkit-transition-duration: 2.8s;
          transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  -webkit-transition-duration: 2.85s;
          transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.85s;
          transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  -webkit-transition-duration: 2.9s;
          transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.9s;
          transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  -webkit-transition-duration: 2.95s;
          transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.95s;
          transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  -webkit-transition-duration: 3s;
          transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
          transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
          transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
          transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
          transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
          transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

[data-aos=fade-up] {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

[data-aos=fade-down] {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

[data-aos=fade-right] {
  -webkit-transform: translate(-100px);
          transform: translate(-100px);
}

[data-aos=fade-left] {
  -webkit-transform: translate(100px);
          transform: translate(100px);
}

[data-aos=fade-up-right] {
  -webkit-transform: translate(-100px, 100px);
          transform: translate(-100px, 100px);
}

[data-aos=fade-up-left] {
  -webkit-transform: translate(100px, 100px);
          transform: translate(100px, 100px);
}

[data-aos=fade-down-right] {
  -webkit-transform: translate(-100px, -100px);
          transform: translate(-100px, -100px);
}

[data-aos=fade-down-left] {
  -webkit-transform: translate(100px, -100px);
          transform: translate(100px, -100px);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  -webkit-transform: translate(0) scale(1);
          transform: translate(0) scale(1);
}

[data-aos=zoom-in] {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  -webkit-transform: translateY(100px) scale(0.6);
          transform: translateY(100px) scale(0.6);
}

[data-aos=zoom-in-down] {
  -webkit-transform: translateY(-100px) scale(0.6);
          transform: translateY(-100px) scale(0.6);
}

[data-aos=zoom-in-right] {
  -webkit-transform: translate(-100px) scale(0.6);
          transform: translate(-100px) scale(0.6);
}

[data-aos=zoom-in-left] {
  -webkit-transform: translate(100px) scale(0.6);
          transform: translate(100px) scale(0.6);
}

[data-aos=zoom-out] {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  -webkit-transform: translateY(100px) scale(1.2);
          transform: translateY(100px) scale(1.2);
}

[data-aos=zoom-out-down] {
  -webkit-transform: translateY(-100px) scale(1.2);
          transform: translateY(-100px) scale(1.2);
}

[data-aos=zoom-out-right] {
  -webkit-transform: translate(-100px) scale(1.2);
          transform: translate(-100px) scale(1.2);
}

[data-aos=zoom-out-left] {
  -webkit-transform: translate(100px) scale(1.2);
          transform: translate(100px) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  -webkit-transform: translate(0);
          transform: translate(0);
}

[data-aos=slide-up] {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

[data-aos=slide-down] {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

[data-aos=slide-right] {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

[data-aos=slide-left] {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-aos=flip-left] {
  -webkit-transform: perspective(2500px) rotateY(-100deg);
          transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
          transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  -webkit-transform: perspective(2500px) rotateY(100deg);
          transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
          transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  -webkit-transform: perspective(2500px) rotateX(-100deg);
          transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
          transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  -webkit-transform: perspective(2500px) rotateX(100deg);
          transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
          transform: perspective(2500px) rotateX(0);
}

/* UI ELEMENTS */
/* Loader */
#loader-wrapper {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 101;
  background: #ddebf9;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
          animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* Search Overlay */
#search-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  background: rgba(255, 255, 255, 0.99);
}
#search-overlay .search-form {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
#search-overlay .search-close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
}
#search-overlay .search-close:before, #search-overlay .search-close:after {
  content: "";
  width: 2px;
  height: 30px;
  display: block;
  position: absolute;
  background: #000;
  right: 20px;
  top: 0;
  border-radius: 5px;
}
#search-overlay .search-close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#search-overlay .search-close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#search-overlay .searchbox {
  position: relative;
}
#search-overlay .searchbox-input {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-bottom: solid 1px #9E9E9E;
  outline: none;
  font-size: 16px;
  line-height: 60px;
  color: #000;
}
#search-overlay .searchbox-input.placeholder {
  color: #9E9E9E;
  font-size: 16px;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
}
#search-overlay .searchbox-input:-moz-placeholder {
  color: #9E9E9E;
  font-size: 16px;
  -moz-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
}
#search-overlay .searchbox-input::-moz-placeholder {
  color: #9E9E9E;
  font-size: 16px;
  -moz-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
}
#search-overlay .searchbox-input:-ms-input-placeholder {
  color: #9E9E9E;
  font-size: 16px;
  -ms-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
}
#search-overlay .searchbox-input::-webkit-input-placeholder {
  color: #9E9E9E;
  font-size: 16px;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
}
#search-overlay .searchbox-input:focus.placeholder {
  color: transparent;
}
#search-overlay .searchbox-input:focus:-moz-placeholder {
  color: transparent;
}
#search-overlay .searchbox-input:focus::-moz-placeholder {
  color: transparent;
}
#search-overlay .searchbox-input:focus:-ms-input-placeholder {
  color: transparent;
}
#search-overlay .searchbox-input:focus::-webkit-input-placeholder {
  color: transparent;
}
#search-overlay .searchbox-submit {
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0;
  top: 0;
}
#search-overlay .searchbox-submit:before {
  color: #2b8ecd;
  content: "\f002";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 60px;
  font-size: 24px;
}

/* SOCIAL LINKS */
.social-links {
  zoom: 1;
}
.social-links:before, .social-links:after {
  content: "";
  display: table;
}
.social-links:after {
  clear: both;
}
.social-links a {
  display: block;
  position: relative;
  float: left;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
}
.social-links a:before {
  content: "";
  display: block;
  position: absolute;
  font-family: "FontAwesome";
  width: 100%;
  height: 100%;
  text-align: center;
}
.social-links .facebook:before {
  content: "\f09a";
}
.social-links .twitter:before {
  content: "\f099";
}
.social-links .linkedin:before {
  content: "\f0e1";
}
.social-links .google-plus:before {
  content: "\f0d5";
}
.social-links .youtube:before {
  content: "\f167";
}
.social-links .instagram:before {
  content: "\f16d";
}
.social-links .behance:before {
  content: "\f1b4";
}
.social-links .dribbble:before {
  content: "\f17d";
}
.social-links .pinterest:before {
  content: "\f17d";
}

/* LAYOUT */
/* HEADER */
#main-header {
  display: block;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  zoom: 1;
  width: calc(100% - 40px);
  margin: auto;
  padding: 0 5vw;
  z-index: 11;
  background-color: transparent;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#main-header:before, #main-header:after {
  content: "";
  display: table;
}
#main-header:after {
  clear: both;
}
#main-header .header-top {
  width: 100%;
  padding: 20px 0;
  zoom: 1;
}
#main-header .header-top:before, #main-header .header-top:after {
  content: "";
  display: table;
}
#main-header .header-top:after {
  clear: both;
}
#main-header .header-top > div {
  display: block;
  float: right;
}
#main-header .header-top .secondary-menu {
  width: 100%;
  max-width: 560px;
}
#main-header .header-top .secondary-menu ul {
  display: block;
  text-align: right;
}
#main-header .header-top .secondary-menu ul li {
  display: inline-block;
  line-height: 30px;
}
#main-header .header-top .secondary-menu ul li.current-menu-item a {
  color: #2b8ecd;
}
#main-header .header-top .secondary-menu a {
  display: block;
  text-align: center;
  padding: 0 15px;
  color: #616161;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
#main-header .header-top .secondary-menu a:hover {
  color: #2b8ecd;
}
#main-header .header-top .social-links {
  margin: 0 25px;
  margin-right: 0;
}
#main-header .header-top .social-links a {
  display: block;
  text-align: center;
  padding: 0 15px;
  color: #616161;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}
#main-header .header-top .social-links a:hover {
  color: #2b8ecd;
}
#main-header .header-top .social-links a:before {
  left: 0;
  top: 0;
}
#main-header .header-top .social-links ul {
  display: block;
  text-align: right;
}
#main-header .header-top .social-links ul li {
  display: inline-block;
}
#main-header .header-top #search-trigger {
  display: block;
  position: relative;
}
#main-header .header-top #search-trigger a {
  display: block;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
#main-header .header-top #search-trigger a:hover {
  color: #2b8ecd;
}
#main-header .header-top #search-trigger .searchbox-icon {
  width: 30px;
  height: 30px;
  display: block;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  color: #616161;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
#main-header .header-top #search-trigger .searchbox-icon:hover {
  color: #2b8ecd;
}
#main-header .header-top #search-trigger .searchbox-icon:before {
  content: "\f002";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 30px;
  top: -1px;
  left: 0;
  text-align: center;
}
#main-header.fixed {
  top: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  background: #fff;
}
#main-header.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#main-header .wrapper {
  display: block;
  position: relative;
  zoom: 1;
}
#main-header .wrapper:before, #main-header .wrapper:after {
  content: "";
  display: table;
}
#main-header .wrapper:after {
  clear: both;
}
#main-header .logo {
  display: block;
  float: left;
  margin-top: -55px;
  max-width: 200px;
}
#main-header .logo a {
  display: block;
}
#main-header .logo img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}
#main-header .menu-wrapper {
  display: block;
  float: right;
  text-align: right;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
#main-header .menu-wrapper #menu-primary {
  display: inline-block;
  zoom: 1;
}
#main-header .menu-wrapper #menu-primary:before, #main-header .menu-wrapper #menu-primary:after {
  content: "";
  display: table;
}
#main-header .menu-wrapper #menu-primary:after {
  clear: both;
}
#main-header .menu-wrapper #menu-primary li {
  display: block;
  float: left;
  margin-right: 5px;
}
#main-header .menu-wrapper #menu-primary li.outlined a {
  border: solid 1px #2b8ecd;
}
#main-header .menu-wrapper #menu-primary li:last-child, #main-header .menu-wrapper #menu-primary li:first-child {
  margin-right: 0;
}
#main-header .menu-wrapper #menu-primary li.home.current-menu-item a {
  color: #2b8ecd;
}
#main-header .menu-wrapper #menu-primary li.home a {
  width: 40px;
  overflow: hidden;
  color: transparent;
  padding-left: 10px;
  position: relative;
  text-indent: -9999px;
  -webkit-transform: scale(1.2) translateY(1px);
          transform: scale(1.2) translateY(1px);
}
#main-header .menu-wrapper #menu-primary li.home a:before {
  content: "\f015";
  font-family: "FontAwesome";
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  color: #212121;
  text-indent: 0;
}
#main-header .menu-wrapper #menu-primary li.home a, #main-header .menu-wrapper #menu-primary li.current_menu a {
  color: #2b8ecd;
  border: none;
}
#main-header .menu-wrapper #menu-primary li.home a:hover, #main-header .menu-wrapper #menu-primary li.current_menu a:hover {
  color: #2b8ecd;
  background: transparent;
  border: none;
}
#main-header .menu-wrapper #menu-primary a {
  display: block;
  text-align: center;
  padding: 6px 15px;
  color: #212121;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.03em;
  border-radius: 20px;
  border: solid 1px transparent;
  -webkit-transition: background 0.4s linear, color 0.2s linear, border 0.2s linear;
  transition: background 0.4s linear, color 0.2s linear, border 0.2s linear;
}
#main-header .menu-wrapper #menu-primary a:hover {
  color: #fff;
  background: #2b8ecd;
  border: solid 1px #2b8ecd;
}

/* Footer */
/* Footer */
body.page:not(.home) #main-footer .ctoa-footer {
  margin-top: 100px;
}
body.page-template-template-doctors #main-footer .ctoa-footer {
  margin-top: 40px !important;
}
body.listing-page-awsm_job_openings #main-footer .ctoa-footer {
  margin-top: 80px !important;
}
body.page-template-template-specialities .ctoa-footer {
  margin-top: 100px;
}
body.page-template-template-withoutbanner .ctoa-footer {
  margin-top: 80px !important;
}

#main-footer {
  display: block;
  zoom: 1;
  padding: 0 100px;
}
#main-footer:before, #main-footer:after {
  content: "";
  display: table;
}
#main-footer:after {
  clear: both;
}
#main-footer .ctoa-footer {
  display: block;
  zoom: 1;
  background: #61baf3 url(../img/footerbg.jpg) no-repeat left top;
  background-size: contain;
  padding: 50px;
  padding-left: 100px;
  margin-top: 40px;
}
#main-footer .ctoa-footer:before, #main-footer .ctoa-footer:after {
  content: "";
  display: table;
}
#main-footer .ctoa-footer:after {
  clear: both;
}
#main-footer .ctoa-footer h2 {
  color: #fff;
  letter-spacing: -0.02em;
  font-size: 36px;
  margin-top: 20px;
  text-align: right;
  font-family: "opensansbold";
}
#main-footer .ctoa-footer h2 span {
  display: block;
  color: #13618c;
  letter-spacing: 0.02em;
  font-size: 20px;
  margin-bottom: 5px;
  font-family: "opensanssemibold";
}
#main-footer .ctoa-footer .btn-cto {
  color: #fff;
  border: 1px solid #fff;
  text-transform: uppercase;
  line-height: 3.5;
  border-radius: 25px;
  min-width: 260px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.2s cubic-bezier(0, 0, 0.39, 1.1);
  float: right;
}
@media only screen and (max-width: 576px) {
  #main-footer .ctoa-footer .btn-cto {
    padding: 12px 18px;
    min-width: 230px;
    float: inherit;
  }
}
#main-footer .ctoa-footer .btn-cto:hover {
  background: #13618c;
  border-color: #13618c;
}
#main-footer .copyright {
  font-size: 12px;
  padding: 30px 0;
  color: #424242;
}
@media only screen and (max-width: 1024px) {
  #main-footer .copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
@media only screen and (max-width: 576px) {
  #main-footer .copyright {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 375px) {
  #main-footer .copyright {
    font-size: 10px;
  }
}
#main-footer .copyright a {
  color: #424242;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
#main-footer .copyright a:hover {
  color: #2b8ecd;
}
#main-footer .copyright .web {
  padding: 0;
  font-size: 10px;
  display: inline-block;
  text-align: right;
  padding-right: 15px;
  color: #9e9e9e;
}
@media only screen and (max-width: 576px) {
  #main-footer .copyright .web {
    font-size: 10px;
  }
}
#main-footer .copyright .web a {
  color: #757575;
}
@media only screen and (max-width: 576px) {
  #main-footer .copyright .web a {
    font-size: 10px;
  }
}
#main-footer .copyright .copyright-text-holder .privacy-policy {
  display: inline-block;
}
#main-footer .copyright .copyright-text-holder .privacy-policy a {
  padding-left: 30px;
}
@media only screen and (max-width: 1024px) {
  #main-footer .copyright .copyright-text-holder .privacy-policy a {
    padding: 0px;
  }
}
#main-footer .copyright .copyright-text-holder .privacy-policy:before {
  content: "";
  border-right: 1px solid #424242;
  padding: 0px 15px;
}
@media only screen and (max-width: 1024px) {
  #main-footer .copyright .copyright-text-holder .privacy-policy:before {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  #main-footer .copyright .copyright-text-holder .privacy-policy {
    display: block;
    padding: 10px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  #main-footer .copyright .copyright-text-holder {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (max-width: 576px) {
  #main-footer .copyright .copyright-text-holder {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  #main-footer .copyright .nav-holder {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 576px) {
  #main-footer .copyright .nav-holder {
    margin-bottom: 5px;
    padding: 10px 0;
  }
}
@media only screen and (max-width: 1024px) {
  #main-footer .copyright .col-md-2 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (max-width: 576px) {
  #main-footer .copyright .col-md-2 {
    margin-bottom: 0px;
  }
}
#main-footer .footer-nav {
  display: block;
  text-align: center;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}
@media only screen and (max-width: 1024px) {
  #main-footer .footer-nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#main-footer .footer-nav ul {
  display: block;
  text-align: center;
  /*margin: 10px 0;*/
  margin: 0;
}
#main-footer .footer-nav ul li {
  display: inline-block;
}
#main-footer .footer-nav ul li.current-menu-item a {
  color: #2b8ecd;
}
@media only screen and (max-width: 576px) {
  #main-footer .footer-nav ul li {
    /*width: 49%;
       text-align: left;
       padding-left: 13%;*/
    padding-bottom: 5px;
  }
}
#main-footer .footer-nav a {
  display: inline-block;
  margin: 0 10px;
  color: #424242;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
@media only screen and (max-width: 576px) {
  #main-footer .footer-nav a {
    margin: 0 4px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 375px) {
  #main-footer .footer-nav a {
    font-size: 12px;
    margin: 0;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 360px) {
  #main-footer .footer-nav a {
    font-size: 11px;
  }
}
@media only screen and (max-width: 320px) {
  #main-footer .footer-nav a {
    font-size: 10px;
    margin: 0;
    margin-right: 5px;
  }
}
#main-footer .footer-nav a:hover {
  color: #2b8ecd;
}

/* Layout Styles */
.page-wrapper {
  padding: 0 100px;
  min-height: calc(100vh - 330px);
  zoom: 1;
}
.page-wrapper:before, .page-wrapper:after {
  content: "";
  display: table;
}
.page-wrapper:after {
  clear: both;
}
@media only screen and (max-width: 576px) {
  .page-wrapper {
    position: relative;
    z-index: 5;
  }
}

.no-min-height {
  min-height: auto;
}

.page-header {
  display: block;
  width: 100%;
  height: 670px;
  background-image: url(../img/banner-default.jpg);
  background-repeat: no-repeat !important;
  background-size: 100% !important;
  background-position: right top !important;
  margin-bottom: 100px;
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  border-bottom: none;
}
@media only screen and (max-width: 1600px) {
  .page-header {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1440px) {
  .page-header {
    margin-bottom: 60px;
  }
}
.page-header .caption {
  display: block;
  position: relative;
  max-width: 720px;
  -webkit-transform: translate(14vw, 2vw);
          transform: translate(14vw, 2vw);
}
@media only screen and (max-width: 768px) {
  .page-header .caption {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    max-width: 576px;
    margin-left: 45px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .page-header .caption {
    margin-top: 100px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .page-header .caption {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 320px) {
  .page-header .caption {
    margin-top: 70px;
  }
}
.page-header .caption h3 {
  font-family: "opensansregular";
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.page-header .caption h2 {
  font-size: 50px;
  color: #2b8ecd;
  margin-bottom: -3px;
  font-family: "opensansextrabold";
}
.page-header .caption p {
  font-size: 17px;
  font-weight: 400;
  color: #212121;
  margin: 25px 0;
  max-width: 500px;
  line-height: 1.8;
}
.page-header .caption a.btn {
  display: block;
  background: #2b8ecd;
  max-width: 200px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 2.8;
  border-radius: 45px;
  border: solid 1px transparent;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.page-header .caption a.btn:hover {
  color: #2b8ecd;
  background: transparent;
  border: solid 1px #2b8ecd;
}
.page-header .caption ul {
  padding-top: 10px;
}
.page-header .caption ul li {
  display: inline-block;
  color: #616161;
  padding-right: 10px;
}
.page-header .caption ul li:last-child {
  padding-right: 0;
}
.page-header .caption ul li a {
  color: #616161;
}

.grid-loop {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.grid-loop li {
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  padding: 0;
  overflow: hidden;
  width: 23%;
  margin-bottom: 60px;
  background: #FFF4FE;
  margin-right: 2.666%;
}
@media only screen and (max-width: 768px) {
  .grid-loop li {
    margin-bottom: 30px;
  }
}
.grid-loop li:nth-child(4n) {
  margin-right: 0;
}
.grid-loop li:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.grid-loop li a.btn-outline {
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.04em;
  border: solid 1px #13618c;
  line-height: 2.5;
  font-size: 13px;
  padding: 0 16px;
  border-radius: 50px;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  margin-bottom: 35px;
  color: #13618c;
  font-family: "opensansbold";
}
@media only screen and (max-width: 1800px) {
  .grid-loop li a.btn-outline {
    padding: 0 9px;
  }
}
@media only screen and (max-width: 375px) {
  .grid-loop li a.btn-outline {
    font-size: 12px;
    padding: 0 6px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 320px) {
  .grid-loop li a.btn-outline {
    font-size: 10px;
  }
}
.grid-loop li a.btn-outline:hover {
  background: #2b8ecd;
  color: #fff;
  border-color: transparent;
}
@media only screen and (max-width: 576px) {
  .grid-loop li:nth-child(19) h2 a {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 1920px) {
  .grid-loop li:nth-child(19) h2 a span:nth-child(1) {
    position: relative;
    top: -25px;
    display: none;
  }
}
@media only screen and (max-width: 1440px) {
  .grid-loop li:nth-child(19) h2 a span:nth-child(1) {
    position: relative;
    top: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-loop li:nth-child(19) h2 a span:nth-child(1) {
    display: inherit;
  }
}
@media only screen and (max-width: 576px) {
  .grid-loop li:nth-child(19) h2 a span:nth-child(1) {
    display: none;
  }
}
@media only screen and (max-width: 1920px) {
  .grid-loop li:nth-child(19) h2 a span:nth-child(2) {
    position: relative;
  }
}
@media only screen and (max-width: 1024px) {
  .grid-loop li:nth-child(19) h2 a span:nth-child(2) {
    display: block;
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .grid-loop li:nth-child(19) h2 a span:nth-child(2) {
    display: inherit;
  }
}
@media only screen and (max-width: 576px) {
  .grid-loop li:nth-child(19) h2 a span:nth-child(2) {
    display: block;
  }
}
@media only screen and (max-width: 1920px) {
  .grid-loop li:nth-child(19) .doc-details {
    position: relative;
  }
}
@media only screen and (max-width: 1024px) {
  .grid-loop li:nth-child(19) .doc-details {
    top: 0;
  }
}
.grid-loop .grid-content {
  width: 100%;
  padding: 20px 25px 0px;
  margin: 0;
  background: #c2e5fc;
  min-height: 200px;
}
@media only screen and (max-width: 1800px) {
  .grid-loop .grid-content {
    padding: 15px 20px 0px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-loop .grid-content {
    min-height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .grid-loop .grid-content {
    min-height: 250px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 360px) {
  .grid-loop .grid-content {
    min-height: 265px;
    padding: 0 0;
  }
}
.grid-loop .grid-content p.doc-degree {
  padding-bottom: 25px;
  color: #757575;
  font-family: "opensansregular", sans-serif;
  letter-spacing: 2px;
  font-size: 12px;
  letter-spacing: 1.5px;
}
.grid-loop .grid-content p.doc-speciality {
  margin-bottom: 35px;
  color: #424242;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  letter-spacing: 0.03em;
  font-size: 13px;
}
@media only screen and (max-width: 1440px) {
  .grid-loop .grid-content p.doc-speciality {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1238px) {
  .grid-loop .grid-content p.doc-speciality {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1080px) {
  .grid-loop .grid-content p.doc-speciality {
    font-size: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .grid-loop .grid-content p.doc-speciality {
    font-size: 14px;
  }
}
.grid-loop h2 {
  margin-bottom: 0;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .grid-loop h2 {
    margin: 15px;
  }
}
@media only screen and (max-width: 390px) {
  .grid-loop h2 {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 320px) {
  .grid-loop h2 {
    line-height: 0.8;
    margin-bottom: 0px;
  }
}
.grid-loop h2 a {
  font-size: 18px;
  color: #13618c !important;
  font-family: "opensansbold";
}
@media only screen and (max-width: 1365px) {
  .grid-loop h2 a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1238px) {
  .grid-loop h2 a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1080px) {
  .grid-loop h2 a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .grid-loop h2 a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 576px) {
  .grid-loop h2 a {
    display: inline-block;
  }
}
@media only screen and (max-width: 420px) {
  .grid-loop h2 a {
    margin: 20px 0px;
    margin-bottom: 5px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 360px) {
  .grid-loop h2 a {
    margin: 10px 0px;
  }
}
@media only screen and (max-width: 320px) {
  .grid-loop h2 a {
    font-size: 16px;
    line-height: 20px;
  }
}
.grid-loop h2 a span {
  font-size: 10px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1440px) {
  .grid-loop h2 a span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 375px) {
  .grid-loop h2 a span {
    display: block;
    margin: 10px 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 375px) {
  .grid-loop h2 a span.dash {
    display: none;
  }
}

.listing-page-awsm_job_openings .page-header .caption {
  max-width: 560px;
}

.specialties span .fa.fa-phone,
.specialties .fa.fa-envelope {
  color: #13618c;
  margin-right: 15px;
}
.specialties .tab-content a {
  color: #212121;
}
.specialties .tab-content a:hover {
  color: #2b8ecd;
}
.specialties .care-left {
  padding-right: 40px;
}
@media (max-width: 1440px) {
  .specialties .care-left {
    /*width: 64.55%;*/
  }
}
@media only screen and (max-width: 768px) {
  .specialties .care-left {
    width: 100%;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .specialties .care-left {
    padding-right: 0;
  }
}
.specialties .care-left .service-group {
  margin-top: 80px;
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left .service-group {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .specialties .care-left .service-group {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .specialties .care-left .service-group {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left .service-group.child-two {
    margin-top: 50px;
  }
}
.specialties .care-left .service-group h1 {
  font-size: 28px;
  color: #2b8ecd;
  margin-bottom: 45px;
}
.specialties .care-left .service-group h1:nth-child(1) {
  margin-top: 0;
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left .service-group h1 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .specialties .care-left .service-group h1 {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
.specialties .care-left .service-group ul.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 25px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 1024px) {
  .specialties .care-left .service-group ul.service-list {
    display: block;
    margin-top: 0;
  }
}
.specialties .care-left .service-group ul.service-list.maternity-care li {
  width: calc(45.87% - 30px);
  line-height: 23px;
}
.specialties .care-left .service-group ul.service-list:nth-child(1) {
  margin-top: 30px;
}
.specialties .care-left .service-group ul.service-list:last-child li {
  border: none;
  padding-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .specialties .care-left .service-group ul.service-list:last-child li {
    border-bottom: 1px solid #e3e2e2;
  }
}
@media only screen and (max-width: 1024px) {
  .specialties .care-left .service-group ul.service-list:last-child li:last-child {
    border: none;
  }
}
.specialties .care-left .service-group ul.service-list li {
  width: calc(32.87% - 30px);
  padding: 0 0 20px 40px;
  line-height: 34px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  margin: 0 20px 0px 20px;
  border-bottom: 1px solid #e3e2e2;
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left .service-group ul.service-list li {
    font-size: 14px;
    line-height: 24px;
    padding-left: 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .specialties .care-left .service-group ul.service-list li {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 20px;
    min-height: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .specialties .care-left .service-group ul.service-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.specialties .care-left .service-group ul.service-list li:nth-child(1) {
  margin-left: 0;
}
.specialties .care-left .service-group ul.service-list li:nth-child(3) {
  margin-right: 0;
}
.specialties .care-left .service-group ul.service-list li:before {
  content: "";
  /*font-family: "FontAwesome";*/
  background-image: url("../images/bullet-icon.png");
  display: block;
  position: absolute;
  left: 0px;
  /*font-size: 21px;
  line-height: 30px;*/
  height: 21px;
  width: 21px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 8px;
  text-align: center;
  color: #2b8ecd;
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left .service-group ul.service-list li:before {
    top: 4px;
    width: 18px;
    height: 18px;
  }
}
.specialties .care-left .service-group ul.service-list.two-column li {
  width: calc(50% - 30px);
}
@media only screen and (max-width: 786px) {
  .specialties .care-left .service-group ul.service-list.two-column li {
    width: calc(100% - 30px);
  }
}
.specialties .care-left .service-group .laparoscopic-benifits {
  padding-bottom: 20px;
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left .service-group .laparoscopic-benifits {
    margin-top: 25px;
    margin-bottom: 40px;
  }
}
.specialties .care-left .service-group .laparoscopic-benifits .benifits-list {
  padding-left: 15px;
}
.specialties .care-left .service-group .laparoscopic-benifits .benifits-list li {
  width: calc(25% - 30px);
}
@media only screen and (max-width: 1024px) {
  .specialties .care-left .service-group .laparoscopic-benifits .benifits-list li {
    width: calc(100% - 30px);
    float: left;
    margin-bottom: 20px;
    padding-bottom: 30px !important;
  }
}
.specialties .care-left .service-group .laparoscopic-benifits .benifits-list li:before {
  z-index: 2;
  color: #FFFFFF;
  content: "\f00c";
  font-size: 16px;
  font-family: fontAwesome;
  position: absolute;
  top: 1px;
  left: -2px;
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left .service-group .laparoscopic-benifits .benifits-list li:before {
    top: 2px;
    left: -1px;
  }
}
@media only screen and (max-width: 576px) {
  .specialties .care-left .service-group .laparoscopic-benifits .benifits-list li:before {
    top: 0;
  }
}
.specialties .care-left .service-group .laparoscopic-benifits .benifits-list li:after {
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #2b8ecd;
  left: -13px;
  top: -2px;
  z-index: 1;
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left .service-group .laparoscopic-benifits .benifits-list li:after {
    top: -6px;
  }
}
@media only screen and (max-width: 576px) {
  .specialties .care-left .service-group .laparoscopic-benifits .benifits-list li:after {
    top: -8px;
  }
}
.specialties .care-left p {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 34px;
  padding-right: 22%;
}
.specialties .care-left p:not(.single-paragraph) {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left p:not(.single-paragraph) {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .specialties .care-left p:not(.single-paragraph) {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 40px;
    padding-right: 15%;
  }
}
@media only screen and (max-width: 1024px) {
  .specialties .care-left p {
    padding-right: 0;
  }
}
.specialties .care-left p.m-0 {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .specialties .care-left p {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .specialties .care-left p {
    margin-bottom: 10px;
    padding-bottom: 0;
    text-align: justify;
  }
}
.specialties .care-left p:last-child:not(:first-child) {
  margin-top: 60px;
}
@media only screen and (max-width: 1440px) {
  .specialties .care-left p.single-paragraph {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.specialties .care-right {
  background: #FCE8F1 url(../img/spc-bg.png) no-repeat center center;
  padding-top: 36px;
  padding-bottom: 36px;
  text-align: center;
}
@media (max-width: 1440px) {
  .specialties .care-right {
    width: 34.55;
    font-size: 13px;
  }
}
.specialties .care-right span {
  font-weight: bold;
  color: #2b8ecd;
}
.specialties .care-right span:before {
  background: url(../img/loc-left.png);
  height: 4px;
  width: 20px;
  position: relative;
  top: 13px;
  left: -27px;
}

ul.tabs {
  margin: auto;
  padding: 0px;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 100px;
  border: 2px solid #2b8ecd;
  width: 267px;
  height: 37px;
}

ul.tabs li {
  display: inline-block;
  padding: 5px 15px;
  cursor: pointer;
  max-width: 396px;
  height: 33px;
  width: 49.55%;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

ul.tabs li.current {
  background: #2b8ecd;
  color: #fff;
}

.tab-content {
  display: none;
  padding: 15px;
  padding-top: 220px;
  text-align: center;
}

.tab-content.current {
  display: inherit;
}

.tab-nav-left {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  margin-left: -13.5px;
}

.tab-nav-right {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  margin-right: -13.5px;
}

.faq {
  text-align: center;
  max-width: 75%;
  margin: 75px auto 0;
}
.faq h2 {
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  color: #2b8ecd;
}
.faq p {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.03em;
}
.faq p.deco-center {
  padding-bottom: 40px;
  margin-bottom: 45px;
}
.faq button.accordion {
  background-color: #ffedff;
  color: #13618c;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  -webkit-transition: all 0.4s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.4s cubic-bezier(0, 0, 0.39, 1.1);
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid #dfdfdf;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.02em;
  position: relative;
}
.faq button.accordion:before {
  content: "\f067";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #424242;
}
.faq button.accordion.active:before {
  content: "\f068";
}
.faq button.accordion.active,
.faq button.accordion:hover {
  background-color: #fcecf1;
}
.faq div.panel {
  padding: 23px 18px;
  background-color: white;
  display: none;
  margin-top: -23px;
  border: 1px solid #dfdfdf;
  margin-bottom: 20px;
}
.faq div.panel p {
  margin-bottom: 30px;
  text-align: left;
}
.faq div.panel p:last-of-type {
  margin-bottom: 0;
}

/* Ubermenu Styles */
body .ubermenu-sub-indicators .ubermenu-has-submenu-drop > .ubermenu-target:after {
  margin-top: -6px;
  font-size: 12px;
}
body .ubermenu-nav .ubermenu-item.home {
  height: 42px;
  overflow: hidden;
  line-height: 8px;
}
body .ubermenu-nav .ubermenu-item a.ubermenu-target {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
body .ubermenu .ubermenu-submenu-type-flyout > .ubermenu-item {
  min-width: 200px;
}
body .ubermenu-responsive-toggle {
  padding: 15px 10px;
}
body .ubermenu .ubermenu-item > .ubermenu-submenu {
  border-radius: 10px;
  overflow: visible !important;
}
body .ubermenu .ubermenu-item > .ubermenu-submenu li.ubermenu-item {
  background: #13618c;
  border-radius: 20px;
  margin: 10px 0;
  margin-right: 60px;
}
body .ubermenu .ubermenu-item > .ubermenu-submenu li.ubermenu-item:nth-child(even) {
  margin-right: 0 !important;
}
body .ubermenu .ubermenu-item > .ubermenu-submenu li.ubermenu-item:hover {
  background: #2b8ecd;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
body .ubermenu .ubermenu-item > .ubermenu-submenu-drop {
  background: #13618c;
  padding: 30px;
  border-radius: 20px;
  left: 20px !important;
  top: 50px !important;
}
body .ubermenu .ubermenu.ubermenu-disable-submenu-scroll .ubermenu-item > .ubermenu-submenu.ubermenu-submenu-type-mega {
  margin-top: 50px !important;
}
body .ubermenu .ubermenu-highlight {
  border: solid 1px #2b8ecd;
  height: 42px;
  line-height: 8px;
}
body .ubermenu .ubermenu-submenu {
  border: none;
}
body .ubermenu .ubermenu-submenu a.ubermenu-target {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  padding: 0 !important;
}
body .ubermenu .ubermenu-target-text {
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 1024px) {
  body .ubermenu .ubermenu-target-text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  body .ubermenu .ubermenu-target-text {
    font-size: 13px;
  }
}
body .ubermenu .ubermenu-target-text:focus {
  outline: none;
}
@media only screen and (max-width: 960px) {
  body .ubermenu-responsive.ubermenu-touch {
    background-color: #bfdcec;
    width: calc(100% + 100px);
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    padding: 20px 50px 120px;
  }
  body .ubermenu-responsive.ubermenu-touch #menu-item-5286, body .ubermenu-responsive.ubermenu-touch #menu-item-5302 {
    position: absolute;
    bottom: 20px;
    width: auto;
    min-width: 15%;
  }
  body .ubermenu-responsive.ubermenu-touch #menu-item-5286 {
    left: 35%;
  }
  body .ubermenu-responsive.ubermenu-touch #menu-item-5302 {
    left: 50%;
  }
  body .ubermenu-responsive ul.ubermenu-nav > li:not(#menu-item-892) {
    padding: 10px 0 !important;
  }
  body .ubermenu-responsive #menu-item-810, body .ubermenu-responsive #menu-item-892 {
    width: auto;
    min-width: 25%;
  }
  body .ubermenu-responsive #menu-item-892 {
    margin: 10px 0px;
  }
}

/* From Custom css*/
@media only screen and (max-width: 1440px) {
  #ubermenu-main-2-primary-menu .ubermenu-item-level-0 {
    margin: 0 16px 0 0;
  }
}
#ubermenu-main-2-primary-menu .ubermenu-item-level-0 > .ubermenu-target {
  padding: 0 20px;
  height: auto;
  line-height: 2.5;
}
@media screen and (max-width: 1440px) {
  #ubermenu-main-2-primary-menu .ubermenu-item-level-0 > .ubermenu-target {
    padding: 0 10px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 1024px) {
  #ubermenu-main-2-primary-menu .ubermenu-item-level-0 > .ubermenu-target {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 960px) {
  #ubermenu-main-2-primary-menu .ubermenu-item-level-0 > .ubermenu-target {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 15px;
  }
}
#ubermenu-main-2-primary-menu .ubermenu-has-submenu-drop > .ubermenu-target {
  padding-right: 30px;
}
#ubermenu-main-2-primary-menu .ubermenu-has-submenu-drop > .ubermenu-target:after {
  right: 12px;
}
@media screen and (max-width: 1440px) {
  #ubermenu-main-2-primary-menu .ubermenu-has-submenu-drop > .ubermenu-target {
    padding-right: 20px;
    letter-spacing: 0;
  }
  #ubermenu-main-2-primary-menu .ubermenu-has-submenu-drop > .ubermenu-target:after {
    right: 8px;
  }
}
@media only screen and (max-width: 960px) {
  #ubermenu-main-2-primary-menu .ubermenu-has-submenu-drop > .ubermenu-target {
    padding-right: 45px;
  }
  #ubermenu-main-2-primary-menu .ubermenu-has-submenu-drop > .ubermenu-target:after {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

a.close-details {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.ubermenu-item.outlined {
  border: solid 1px #2b8ecd !important;
  border-radius: 25px !important;
  margin-top: 4px !important;
}
.ubermenu-item.outlined a {
  color: #016ba2 !important;
}
.ubermenu-item:hover a {
  color: #FFFFFF !important;
}

/*Submenu*/
.ubermenu-active:after {
  -webkit-transition-property: opacity, visibility !important;
  transition-property: opacity, visibility !important;
  content: "" !important;
  display: block !important;
  top: 3px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #13618c;
  z-index: 25;
  position: relative;
  left: 40%;
}
@media only screen and (max-width: 960px) {
  .ubermenu-active:after {
    left: calc(110% + 2px);
    -webkit-transform: rotate(33deg);
            transform: rotate(33deg);
    top: -25px;
  }
}

.ubermenu-main .ubermenu-submenu .ubermenu-column {
  min-width: 250px !important;
}
@media only screen and (max-width: 960px) {
  .ubermenu-main .ubermenu-submenu .ubermenu-column {
    min-width: 216px !important;
  }
}

/* Uber Menu submenus  */
.ubermenu-submenu {
  width: 625px !important;
  min-width: 625px !important;
}
@media only screen and (max-width: 1440px) {
  .ubermenu-submenu {
    width: 590px !important;
    min-width: 590px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .ubermenu-submenu {
    width: 580px !important;
    min-width: 580px !important;
  }
}
@media only screen and (max-width: 960px) {
  .ubermenu-submenu {
    width: 520px !important;
    min-width: 520px !important;
    -webkit-transform: translateX(50%) !important;
            transform: translateX(50%) !important;
    top: 70px !important;
    padding: 20px;
  }
}
.ubermenu-submenu li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ubermenu-submenu li a span {
  padding-left: 45px;
  line-height: 35px;
  padding-top: 0 !important;
}
.ubermenu-submenu li:before {
  content: "";
  position: absolute;
  height: 35px;
  width: 35px;
  background-image: url(../img/maternity-icon.png);
  border-radius: 50%;
}
.ubermenu-submenu li.gynaecology-submenu:before {
  background-image: url(../img/gynaecology-icon.png);
}
.ubermenu-submenu li.surgery-submenu:before {
  background-image: url(../img/general-surgery.png);
}
.ubermenu-submenu li.urology-submenu:before {
  background-image: url(../img/urology-icon.png);
}
.ubermenu-submenu li.ophthalmology-submenu:before {
  background-image: url(../img/ophthalmology-icon.png);
}
.ubermenu-submenu li.laparoscopic-submenu:before {
  background-image: url(../img/laparoscopic-icon.png);
}
.ubermenu-submenu li.pedeotrics-submenu:before {
  background-image: url(../img/pedeotrics-icon.png);
}
.ubermenu-submenu li.medicine-submenu:before {
  background-image: url(../img/medicine-icon.png);
}
.ubermenu-submenu li.orthpedics-submenu:before {
  background-image: url(../img/orthpedics-icon.png);
}

h1.h1-caption {
  margin-bottom: -3px !important;
  font-family: "opensansextrabold" !important;
}
@media (max-width: 1440px) {
  h1.h1-caption {
    font-size: 38px !important;
    left: 50px;
  }
}
@media only screen and (max-width: 768px) {
  h1.h1-caption {
    font-size: 28px !important;
    line-height: 38px !important;
    left: 50px;
  }
}
@media only screen and (max-width: 576px) {
  h1.h1-caption {
    font-size: 16px !important;
    line-height: 16px !important;
    left: 40px;
  }
}

h2#tpcaption,
h2#tpcaption-slider-two,
h2#tpcaption-slider-three {
  color: #2b8ecd !important;
  font-size: 50px !important;
  margin-bottom: -3px !important;
  font-family: "opensansbold" !important;
  text-transform: uppercase !important;
}
@media (max-width: 1440px) {
  h2#tpcaption,
  h2#tpcaption-slider-two,
  h2#tpcaption-slider-three {
    font-size: 30px !important;
    left: 50px;
  }
}
@media only screen and (max-width: 576px) {
  h2#tpcaption,
  h2#tpcaption-slider-two,
  h2#tpcaption-slider-three {
    font-size: 16px !important;
    line-height: 16px !important;
  }
}

h3#tpheading,
h3#tpheading-slider-two,
h3#tpheading-slider-three {
  font-family: "opensansregular" !important;
  font-size: 28px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
@media (max-width: 1440px) {
  h3#tpheading,
  h3#tpheading-slider-two,
  h3#tpheading-slider-three {
    font-size: 20px !important;
    left: 50px;
  }
}
@media only screen and (max-width: 576px) {
  h3#tpheading,
  h3#tpheading-slider-two,
  h3#tpheading-slider-three {
    font-size: 12px !important;
    line-height: 12px !important;
  }
}

p#captionp,
p#captionp-slide-two,
p#captionp-slide-three {
  font-size: 18px !important;
  font-family: "opensansregular" !important;
  font-weight: 400 !important;
  line-height: 1.8 !important;
  margin: 25px 0 !important;
  max-width: 500px !important;
  white-space: normal !important;
  top: -5px;
}
@media (max-width: 1440px) {
  p#captionp,
  p#captionp-slide-two,
  p#captionp-slide-three {
    font-size: 15px !important;
    left: 50px;
    min-width: 460px !important;
  }
}
@media only screen and (max-width: 768px) {
  p#captionp,
  p#captionp-slide-two,
  p#captionp-slide-three {
    min-width: 300px !important;
  }
}
@media only screen and (max-width: 576px) {
  p#captionp,
  p#captionp-slide-two,
  p#captionp-slide-three {
    font-size: 12px !important;
    line-height: 18px !important;
    margin: 15px 0 !important;
    left: 40px;
    min-width: 180px !important;
  }
}
@media only screen and (max-width: 320px) {
  p#captionp,
  p#captionp-slide-two,
  p#captionp-slide-three {
    margin: 15px 0 5px 0 !important;
  }
}

#a-btn,
#a-btn-slide-two,
#a-btn-slide-three {
  background: #13618c none repeat scroll 0 0 !important;
  border: 1px solid transparent !important;
  border-radius: 45px !important;
  color: #fff !important;
  display: block !important;
  font-size: 15px !important;
  font-weight: bold !important;
  letter-spacing: 0.08em !important;
  line-height: 2.8 !important;
  max-width: 200px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  -webkit-transition: all 0.3s linear 0s !important;
  transition: all 0.3s linear 0s !important;
  padding: 2px 35px !important;
  top: 25px !important;
  font-family: "opensansbold" !important;
}
#a-btn:hover,
#a-btn-slide-two:hover,
#a-btn-slide-three:hover {
  background: transparent none repeat scroll 0 0 !important;
  border: 1px solid #2b8ecd !important;
  color: #2b8ecd !important;
}
@media (max-width: 1440px) {
  #a-btn,
  #a-btn-slide-two,
  #a-btn-slide-three {
    font-size: 15px !important;
    left: 50px !important;
    padding: 0px 25px !important;
  }
}
@media only screen and (max-width: 768px) {
  #a-btn,
  #a-btn-slide-two,
  #a-btn-slide-three {
    margin-top: 25px !important;
  }
}
@media only screen and (max-width: 576px) {
  #a-btn,
  #a-btn-slide-two,
  #a-btn-slide-three {
    font-size: 10px !important;
    padding: 0px 10px !important;
    left: 40px !important;
    margin-top: 10px !important;
  }
}
@media only screen and (max-width: 375px) {
  #a-btn,
  #a-btn-slide-two,
  #a-btn-slide-three {
    margin-top: 25px !important;
  }
}
@media only screen and (max-width: 320px) {
  #a-btn,
  #a-btn-slide-two,
  #a-btn-slide-three {
    font-size: 8px !important;
  }
}

.tp-mask-wrap {
  overflow: visible !important;
}
@media only screen and (max-width: 1024px) {
  .tp-mask-wrap {
    margin-left: 150px;
    margin-top: -80px;
  }
}
@media only screen and (max-width: 768px) {
  .tp-mask-wrap {
    margin-left: 70px;
  }
}

/*About*/
.vision-wraper {
  text-align: center;
}
.vision-wraper h2 {
  margin: 0;
  background: url("../img/vision-icn.png") no-repeat;
  background-position: center;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
  color: #13618c;
  width: 100%;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 576px) {
  .vision-wraper h2 {
    font-size: 21px;
  }
}
.vision-wraper .vision > div {
  display: block;
  min-height: 185px;
}
.vision-wraper .icn {
  position: relative;
  min-height: 170px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  background: #e0f0ff;
}
.vision-wraper .icn:before {
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
.vision-wraper .icn img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.vision-wraper .vision:nth-child(even) .icn:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #e0f0ff;
  margin-bottom: -6px;
  top: -7px;
}
.vision-wraper .vision:nth-child(odd) .icn:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #e0f0ff;
  margin-top: -6px;
  bottom: -7px;
}
.vision-wraper h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.vision-wraper p {
  font-size: 16px;
  line-height: 34px;
  color: #212121;
  letter-spacing: 0.02em;
  margin: 10px auto;
}
@media only screen and (max-width: 1440px) {
  .vision-wraper p {
    font-size: 14px;
    line-height: 28px;
  }
}
.vision-wraper .desc {
  padding: 20px 0 0;
  max-width: 71%;
  margin: 0 auto;
}
.vision-wraper .vision {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  background: #fafafa;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0);
  z-index: 1;
}
.vision-wraper .vision:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.vision-wraper .vision:hover .icn:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #EEEEEE;
  margin-top: -6px;
}
.vision-wraper .vision:hover:nth-child(even) .icn:before {
  top: -15px;
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #e0f0ff;
  margin-bottom: -6px;
}
.vision-wraper .vision:hover:nth-child(odd) .icn:before {
  bottom: -15px;
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #e0f0ff;
  margin-top: -6px;
}

.mission-wraper {
  text-align: center;
}
.mission-wraper h2 {
  margin: 0;
  background: url("../img/mission-icn.png") no-repeat;
  background-position: center;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
  color: #13618c;
  width: 100%;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 576px) {
  .mission-wraper h2 {
    font-size: 21px;
  }
}
.mission-wraper .mission > div {
  display: block;
  min-height: 185px;
}
@media only screen and (max-width: 375px) {
  .mission-wraper .mission > div {
    min-height: 200px;
  }
}
@media only screen and (max-width: 320px) {
  .mission-wraper .mission > div {
    min-height: 230px;
  }
}
.mission-wraper .icn {
  position: relative;
  min-height: 170px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  background: #e0f0ff;
}
.mission-wraper .icn:before {
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
.mission-wraper .icn img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.mission-wraper .mission:nth-child(even) .icn:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #e0f0ff;
  margin-bottom: -6px;
  top: -7px;
}
.mission-wraper .mission:nth-child(odd) .icn:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #e0f0ff;
  margin-top: -6px;
  bottom: -7px;
}
.mission-wraper h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.mission-wraper p {
  font-size: 16px;
  line-height: 34px;
  color: #212121;
  letter-spacing: 0.02em;
  margin: 10px auto 0 0;
}
@media only screen and (max-width: 1440px) {
  .mission-wraper p {
    font-size: 14px;
    line-height: 28px;
  }
}
.mission-wraper .desc {
  padding: 20px 0 0;
  max-width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width: 576px) {
  .mission-wraper .desc {
    max-width: 80%;
  }
}
.mission-wraper .mission {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  background: #fafafa;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0);
  z-index: 1;
}
.mission-wraper .mission:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.mission-wraper .mission:hover .icn:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #EEEEEE;
  margin-top: -6px;
}
.mission-wraper .mission:hover:nth-child(even) .icn:before {
  top: -15px;
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #e0f0ff;
  margin-bottom: -6px;
}
.mission-wraper .mission:hover:nth-child(odd) .icn:before {
  bottom: -15px;
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #e0f0ff;
  margin-top: -6px;
}

.values-wraper .values {
  padding-top: 120px;
}
.values-wraper .values h2.deco-center {
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  color: #2b8ecd;
  padding-bottom: 25px;
}
@media only screen and (max-width: 576px) {
  .values-wraper .values h2.deco-center {
    font-size: 21px;
    line-height: 32px;
    padding-bottom: 10px;
  }
}
.values-wraper .values .value-items-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.values-wraper .values .value-items-holder .value-items {
  margin-left: 4%;
}
.values-wraper .values .value-items-holder .value-items:nth-child(2) {
  margin-left: 6%;
}
.values-wraper .values .value-item {
  padding-top: 52px;
}
.values-wraper .values .value-item p {
  font-size: 18px;
  padding-left: 110px;
  padding-top: 12px;
  letter-spacing: 0.02em;
  line-height: 30px;
}
.values-wraper .values .value-item.value-one:before {
  content: " ";
  background: url(../img/value-icon-1.png) no-repeat;
  position: absolute;
  height: 86px;
  width: 86px;
  background-color: #2b8ecd;
  background-position: center;
  border-radius: 100%;
}
.values-wraper .values .value-item.value-two:before {
  content: " ";
  background: url(../img/value-icon-2.png) no-repeat;
  position: absolute;
  height: 86px;
  width: 86px;
  background-color: #2b8ecd;
  background-position: center;
  border-radius: 100%;
}
.values-wraper .values .value-item.value-three:before {
  content: " ";
  background: url(../img/value-icon-3.png) no-repeat;
  position: absolute;
  height: 86px;
  width: 86px;
  background-color: #2b8ecd;
  background-position: center;
  border-radius: 100%;
}

.other-spealities span .fa.fa-phone,
.other-spealities .fa.fa-envelope {
  color: #13618c;
  margin-right: 15px;
}
.other-spealities .tab-content a {
  color: #212121;
}
.other-spealities .tab-content a:hover {
  color: #2b8ecd;
}
.other-spealities .care-left {
  padding-right: 40px;
}
@media (max-width: 1440px) {
  .other-spealities .care-left {
    width: 64.55%;
  }
}
.other-spealities .care-left h1 {
  font-size: 28px;
  color: #2b8ecd;
  margin-bottom: 30px;
}
.other-spealities .care-left h3.care-subtitle {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}
.other-spealities .care-left p {
  margin-bottom: 20px;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 28px;
}
@media (max-width: 1440px) {
  .other-spealities .care-left p {
    font-size: 14px;
    line-height: 24px;
  }
}
.other-spealities .care-right {
  background: #FCE8F1 url(../img/spc-bg.png) no-repeat center center;
  padding-top: 36px;
  padding-bottom: 36px;
  text-align: center;
}
@media (max-width: 1440px) {
  .other-spealities .care-right {
    width: 34.55;
    font-size: 13px;
  }
}
.other-spealities .care-right span {
  font-weight: bold;
  color: #2b8ecd;
}
.other-spealities .care-right span:before {
  background: url(../img/loc-left.png);
  height: 4px;
  width: 20px;
  position: relative;
  top: 13px;
  left: -27px;
}

.spealities-cares {
  margin-top: 100px;
}
.spealities-cares .spealities-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 80px;
}
.spealities-cares .spealities-item .icn {
  border: 1px solid #2b8ecd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  width: 80px;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  margin-top: 8px;
}
.spealities-cares .spealities-item .icn img {
  width: 50px;
  height: 50px;
}
.spealities-cares .spealities-item .desc {
  padding-left: 20px;
}
.spealities-cares .spealities-item .desc h3 {
  font-size: 20px;
  color: #13618c;
  font-weight: 600;
}
.spealities-cares .spealities-item .desc p {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.03em;
}

.success-story-main {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1440px) {
  .success-story-main {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .success-story-main {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .success-story-main {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 320px) {
  .success-story-main {
    margin-bottom: 50px;
    margin-top: 40px !important;
  }
}

.success-story {
  position: relative;
  min-height: calc(100vh - 630px);
}
@media only screen and (max-width: 1024px) {
  .success-story {
    min-height: calc(100vh - 900px);
  }
}
.success-story:before {
  content: " ";
  background: url(../images/quotes.png) no-repeat;
  background-position: top center;
  position: absolute;
  width: 100px;
  height: 100px;
  top: -20px;
  left: 47%;
}
@media only screen and (max-width: 576px) {
  .success-story:before {
    width: 50px;
    height: 50px;
    background-size: contain;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.success-story .success-text {
  margin-bottom: 40px;
}
@media only screen and (max-width: 576px) {
  .success-story .success-text {
    margin-bottom: 0;
  }
}
.success-story .success-text:after {
  content: " ";
  position: absolute;
  height: 1px;
  background-color: #2b8ecd;
  width: 30px;
  top: 107px;
  left: 50%;
}
@media only screen and (max-width: 576px) {
  .success-story .success-text:after {
    display: none;
  }
}
.success-story .owl-item {
  text-align: center;
  padding: 0 320px;
  height: 250px;
  margin-bottom: 40px;
}
.success-story .owl-carousel .owl-nav.disabled,
.success-story .owl-carousel .owl-dots.disabled {
  display: block;
}
.success-story .owl-nav {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .success-story .owl-nav {
    margin-top: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .success-story .owl-nav {
    margin-top: 30%;
  }
}
@media only screen and (max-width: 576px) {
  .success-story .owl-nav {
    margin-top: 40%;
  }
}
@media only screen and (max-width: 320px) {
  .success-story .owl-nav {
    margin-top: 45%;
  }
}
.success-story .owl-prev,
.success-story .owl-next {
  position: absolute;
}
.success-story .owl-prev {
  left: 320px;
  top: -122px;
  height: 16px;
  width: 23px;
  background: transparent !important;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
@media only screen and (max-width: 768px) {
  .success-story .owl-prev {
    left: 0;
  }
}
.success-story .owl-prev.disabled svg path {
  fill: #d0d2d3;
}
.success-story .owl-prev:hover {
  -webkit-transform: translateX(-8%);
          transform: translateX(-8%);
}
.success-story .owl-next {
  right: 320px;
  top: -122px;
  height: 16px;
  width: 23px;
  background: transparent !important;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
@media only screen and (max-width: 768px) {
  .success-story .owl-next {
    right: 0;
  }
}
.success-story .owl-next.disabled svg path {
  fill: #d0d2d3;
}
.success-story .owl-next:hover {
  -webkit-transform: translateX(8%);
          transform: translateX(8%);
}
.success-story .user {
  float: left;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 0 rgba(43, 142, 205, 0.2);
          box-shadow: 0 8px 0 rgba(43, 142, 205, 0.2);
  border: solid 3px #fff;
  margin-top: 10px;
  position: relative;
  left: 30%;
}
@media only screen and (max-width: 1024px) {
  .success-story .user {
    left: 20%;
  }
}
@media only screen and (max-width: 576px) {
  .success-story .user {
    left: 10%;
  }
}
@media only screen and (max-width: 360px) {
  .success-story .user {
    left: 0%;
  }
}
@media only screen and (max-width: 320px) {
  .success-story .user {
    width: 60px;
    height: 60px;
  }
}
.success-story .user-name {
  position: relative;
  padding-left: 25px;
  margin-top: 108px;
  font-size: 17px;
  font-family: "opensansregular";
  text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
  .success-story .user-name {
    padding-left: 40%;
    margin-top: 60px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 320px) {
  .success-story .user-name {
    margin-top: 40px;
  }
}
.success-story .user-name:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 15px 3px 0;
  border-color: transparent #13618c transparent transparent;
  left: 45%;
  /*	@include breakpoint(320){
  		left: 44%;
  	}*/
}
@media only screen and (max-width: 1024px) {
  .success-story .user-name:before {
    left: 42%;
  }
}
@media only screen and (max-width: 576px) {
  .success-story .user-name:before {
    left: 44%;
  }
}
@media only screen and (max-width: 360px) {
  .success-story .user-name:before {
    left: 38%;
  }
}
.success-story .location {
  color: #2b8ecd;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  width: 94%;
}
@media only screen and (max-width: 576px) {
  .success-story .location {
    padding-left: 45%;
  }
}
.success-story .success-story-text {
  margin-bottom: 70px;
}
@media only screen and (max-width: 576px) {
  .success-story .success-story-text {
    margin-bottom: 20px;
  }
}

.success-vid {
  margin-bottom: -20px !important;
}
@media only screen and (max-width: 1440px) {
  .success-vid {
    margin-bottom: -10px !important;
  }
}

.success-story-vid .col-md-4 {
  margin-top: 60px;
}
@media only screen and (max-width: 1440px) {
  .success-story-vid .col-md-4 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .success-story-vid .success-desc {
    padding: 30px;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .success-story-vid .success-desc {
    padding: 0 30px;
  }
}
.success-story-vid .user-name {
  position: relative;
  padding-left: 25px;
  font-size: 17px;
  font-family: "opensansregular";
  text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
  .success-story-vid .user-name {
    padding-bottom: 5px;
    display: inline-block;
  }
}
.success-story-vid .user-name:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 15px 3px 0;
  border-color: transparent #13618c transparent transparent;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .success-story-vid .user-name:before {
    left: 36%;
  }
}
@media only screen and (max-width: 576px) {
  .success-story-vid .user-name:before {
    left: 0%;
  }
}
.success-story-vid .location {
  color: #2b8ecd;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 25px;
}
@media only screen and (max-width: 1440px) {
  .success-story-vid .location {
    padding-bottom: 0;
  }
}
.success-story-vid .success-img {
  margin-bottom: 30px;
}
@media only screen and (max-width: 576px) {
  .success-story-vid .success-img {
    margin-bottom: 10px;
  }
}
.success-story-vid .success-img img {
  width: 100%;
}

.success-vid {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1440px) {
  .success-vid {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .rev_slider > ul {
    min-height: 250px !important;
  }
}

@media only screen and (max-width: 576px) {
  .rev_slider li.tp-revslider-slidesli {
    margin-bottom: 40px !important;
  }
}

@media only screen and (max-width: 576px) {
  .tp-bgimg.defaultimg {
    background-position: 40% !important;
  }
}

/*.rev_slider li.tp-revslider-slidesli{
	&:nth-child(3){
		@include breakpoint(576){

		}
	}
}*/
@media only screen and (max-width: 576px) {
  p#captionp-slide-three {
    min-width: 170px !important;
  }
}

@media only screen and (max-width: 576px) {
  p#captionp-slide-two {
    min-width: 200px !important;
  }
}

.page-id-52 .page-header .caption {
  max-width: 320px;
}
@media only screen and (max-width: 576px) {
  .page-id-52 .page-header .caption {
    max-width: 250px;
  }
}

/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-menu li {
  position: relative;
}

.sf-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.sf-menu > li {
  float: left;
}

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block;
}

.sf-menu a {
  display: block;
  position: relative;
}

.sf-menu ul ul {
  top: 0;
  left: 100%;
}

/*** DEMO SKIN ***/
.sf-menu {
  float: left;
  margin-bottom: 1em;
}

.sf-menu ul {
  min-width: 12em; /* allow long menu items to determine submenu width */
  *width: 12em; /* no auto sub width for IE7, see white-space comment below */
}

.sf-menu a {
  text-decoration: none;
  zoom: 1; /* IE7 */
}

.sf-menu li {
  white-space: nowrap; /* no need for Supersubs plugin */
  *white-space: normal; /* ...unless you support IE7 (let it wrap) */
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.sf-menu li.current-menu-item a {
  color: #2b8ecd !important;
}
.sf-menu li.current-menu-item a:hover {
  color: #fff !important;
}

.sf-menu li:hover,
.sf-menu li.sfHover {
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none;
}

.sf-menu a.sf-with-ul {
  padding-right: 20px;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
  padding-right: 2.5em;
  *padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}

/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -3px;
  height: 0;
  width: 0;
  /* order of following 3 rules important for fallbacks to work */
  border: 5px solid transparent;
  border-top-color: #2b8ecd;
}

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: #2b8ecd; /* IE8 fallback colour */
}

/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #2b8ecd;
}

.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: #2b8ecd;
}

/* Pages */
.home-banner {
  display: block;
  position: relative;
  /*@include breakpoint(360){
    top: 40px !important;
  }
  @include breakpoint(320){
    top: 10px !important;
  }*/
}
@media only screen and (max-width: 1024px) {
  .home-banner {
    max-height: 40vh !important;
    top: 140px;
    margin-bottom: 140px;
  }
}
@media only screen and (max-width: 576px) {
  .home-banner {
    max-height: 210px !important;
    top: 70px !important;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 375px) {
  .home-banner {
    max-height: 120px !important;
    /*top: 50px !important;    */
  }
}
.home-banner .banner-wrapper {
  display: block;
  height: calc(100vh - 20px);
  background: url(../img/main-banner-1.jpg) no-repeat center center;
  background-size: cover;
}
.home-banner .caption {
  display: block;
  position: relative;
  max-width: 700px;
  -webkit-transform: translate(11vw, 2vw);
          transform: translate(11vw, 2vw);
}
.home-banner .caption h2 {
  font-size: 50px;
  color: #2b8ecd;
  margin-bottom: -3px;
}
.home-banner .caption h3 {
  font-family: "opensansregular";
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.home-banner .caption p {
  font-size: 17px;
  font-weight: 400;
  color: #212121;
  margin: 25px 0;
  max-width: 500px;
  line-height: 1.8;
  font-family: "opensansregular", sans-serif;
}
.home-banner .caption a.btn {
  display: block;
  background: #2b8ecd;
  max-width: 200px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 2.8;
  border-radius: 45px;
  border: solid 1px transparent;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.home-banner .caption a.btn:hover {
  color: #2b8ecd;
  background: transparent;
  border: solid 1px #2b8ecd;
}
.home-banner p#captionp {
  font-family: "opensansregular", sans-serif !important;
}
@media only screen and (max-width: 576px) {
  .home-banner p#captionp {
    min-width: 174px;
  }
}
.home-banner #a-btn {
  font-family: "opensansbold" !important;
}
.home-banner .scroll-btn {
  display: block;
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 9;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}
.home-banner .scroll-btn a {
  max-width: 35px;
  margin: 0 auto;
}
.home-banner .scroll-btn p {
  font-family: "opensansregular", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}
.home-banner .scroll-btn > * {
  display: block;
  line-height: 18px;
  font-size: 13px;
  font-weight: normal;
  color: #13618c;
  letter-spacing: 2px;
}
.home-banner .scroll-btn > *:hover,
.home-banner .scroll-btn > *:focus,
.home-banner .scroll-btn > *.active {
  color: #13618c;
}
.home-banner .scroll-btn > *:hover,
.home-banner .scroll-btn > *:focus,
.home-banner .scroll-btn > *:active,
.home-banner .scroll-btn > *.active {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.home-banner .scroll-btn .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto 5px;
  border: 3px solid #13618c;
  border-radius: 23px;
}
.home-banner .scroll-btn .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #13618c;
  border-radius: 50%;
  -webkit-animation: ani-mouse 1.5s linear infinite;
          animation: ani-mouse 1.5s linear infinite;
}
@-webkit-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}

.intro-txt {
  display: block;
  zoom: 1;
}
.intro-txt:before, .intro-txt:after {
  content: "";
  display: table;
}
.intro-txt:after {
  clear: both;
}
@media only screen and (max-width: 375px) {
  .intro-txt {
    /*margin-top: px;*/
  }
}
@media only screen and (max-width: 320px) {
  .intro-txt {
    margin-top: -40px;
  }
}
.intro-txt h1 {
  display: block;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 45px;
  font-size: 50px;
  color: #2b8ecd;
}
@media only screen and (max-width: 1440px) {
  .intro-txt h1 {
    margin-bottom: 40px;
  }
}
.intro-txt h1:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  margin: auto;
  background: url(../img/deco-element-circles.png) no-repeat center center;
  width: 100%;
  height: 17px;
  max-width: 325px;
}
.intro-txt h1 br {
  display: none;
}
.intro-txt h1 span {
  color: #212121;
  font-size: 30px;
}
.intro-txt p {
  font-family: "opensansregular", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 36px;
}
.intro-txt a.btn-outline {
  display: inline-block;
  border-radius: 50px;
  line-height: 2.75;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  border: solid 1px #13618c;
  display: inline-block;
  min-width: 180px;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  color: #13618c;
  font-family: "opensansbold";
}
.intro-txt a.btn-outline:hover {
  color: #fff;
  background: #13618c;
  border: solid 1px #13618c;
}

.home .services-wrapper {
  text-align: center;
  max-width: 90%;
  margin-left: 5%;
}
.home .services-wrapper .service > div {
  display: block;
}
.home .services-wrapper .owl-stage-outer {
  height: 100%;
  margin: -15px;
  padding: 15px;
  width: calc(100% + 30px);
}
.home .services-wrapper .service-wrap {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /*min-height: 400px;*/
  min-height: 360px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
.home .services-wrapper .service-wrap:before {
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
.home .services-wrapper .service-wrap:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.home .services-wrapper .service-wrap .mt20 {
  margin-top: -15px;
}
.home .services-wrapper .service-wrap .simg-blk {
  padding: 65px 0;
  min-height: 207px;
  padding-bottom: 35px;
}
.home .services-wrapper .service-wrap .simg-blk img {
  display: block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: table-cell;
}
.home .services-wrapper .service-wrap .s-btn {
  width: 100%;
  position: absolute;
  margin: auto;
  left: 50%;
  bottom: 45px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
}
.home .services-wrapper h3 {
  font-size: 22px;
  font-family: "opensansbold";
  letter-spacing: 0.02em;
}
.home .services-wrapper p {
  font-size: 14px;
  line-height: 24px;
  color: #212121;
  letter-spacing: 0.04em;
  padding: 10px 20px 30px 20px;
}
.home .services-wrapper .desc {
  padding: 35px 0 0;
  margin: 0 auto;
  max-width: 100%;
}
.home .services-wrapper .service {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  background: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0);
  z-index: 1;
}
.home .services-wrapper .owl-nav .owl-prev {
  position: absolute;
  bottom: calc(50% - 15px);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px 18px;
  background: #fff;
  border-radius: 50%;
  left: -30px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
@media only screen and (max-width: 320px) {
  .home .services-wrapper .owl-nav .owl-prev {
    left: -20px;
    padding: 5px 8px;
  }
}
.home .services-wrapper .owl-nav .owl-prev:hover {
  background: #13618c;
  color: #fff;
}
.home .services-wrapper .owl-nav .owl-prev:hover .cls-2 {
  fill: #fff;
}
.home .services-wrapper .owl-nav .owl-next {
  position: absolute;
  bottom: calc(50% - 15px);
  right: -30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px 18px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
@media only screen and (max-width: 320px) {
  .home .services-wrapper .owl-nav .owl-next {
    right: -20px;
    padding: 5px 8px;
  }
}
.home .services-wrapper .owl-nav .owl-next:hover {
  background: #13618c;
  color: #fff;
}
.home .services-wrapper .owl-nav .owl-next:hover .cls-1 {
  fill: #fff;
}
.home .services-wrapper .owl-nav .fa {
  color: #13618c;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .home .health-check {
    display: grid;
  }
}
.home .health-check img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .home .health-check img {
    position: relative;
  }
}
.home .health-check > div {
  padding: 0;
  background: #ddebf9;
}
@media only screen and (max-width: 576px) {
  .home .health-check > div {
    display: grid;
  }
}
.home .health-check .packages {
  background: #2b8ecd no-repeat center center;
  background-size: cover;
  padding: 50px;
  color: #fff !important;
}
@media only screen and (max-width: 576px) {
  .home .health-check .packages .clearfix {
    display: grid;
  }
}
.home .health-check .packages h2 {
  margin-bottom: 20px;
  color: #fff !important;
}
.home .health-check .packages p {
  font-size: 15px;
  line-height: 28px;
  color: #fff !important;
}
.home .health-check .packages a.btn-outline {
  color: #fff;
  border: solid 1px #fff;
  line-height: 3.2;
  display: inline-block;
  min-width: 250px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: 15px;
  border-radius: 50px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  font-family: "opensansbold";
}
.home .health-check .packages a.btn-outline:hover {
  border-color: #13618c;
  background: #13618c;
}
.home .health-check .package {
  padding: 30px;
  padding-left: 80px;
  position: relative;
}
.home .health-check .package:before {
  content: "\f005";
  font-family: "FontAwesome";
  font-size: 20px;
  display: block;
  position: absolute;
  color: #2b8ecd;
  background: #fff;
  width: 60px;
  height: 60px;
  line-height: 62px;
  text-align: center;
  border-radius: 50%;
  left: 0;
  top: 35px;
}
.home .health-check .package h3 {
  /*font-weight: bold;*/
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #fff !important;
  font-family: "opensansbold";
}
.home .health-check .package p {
  font-size: 14px;
}
.home .life-plants {
  background: #e4f3ff no-repeat center center;
}
.home .life-plants.spacer-lg {
  margin-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .home .life-plants.spacer-lg {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .home .life-plants {
    display: grid;
    text-align: center;
  }
}
.home .life-plants img {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .home .life-plants img {
    position: relative;
  }
}
@media only screen and (max-width: 576px) {
  .home .life-plants .col-lg-5 img {
    height: 200px;
  }
}
.home .life-plants > div {
  padding-bottom: 34px;
  background: #e4f3ff;
}
.home .life-plants .life-plants-content {
  background: #e4f3ff no-repeat center center;
  background-size: cover;
  padding: 50px 0px 50px 0px;
  color: #fff !important;
  margin: auto;
}
@media only screen and (max-width: 576px) {
  .home .life-plants .life-plants-content .clearfix {
    display: grid;
  }
}
.home .life-plants .life-plants-content img {
  margin-bottom: 14px;
}
@media only screen and (max-width: 576px) {
  .home .life-plants .life-plants-content img {
    height: 70px;
  }
}
.home .life-plants .life-plants-content h2 {
  display: inline;
  letter-spacing: 0.04em;
  font-size: 20px;
  line-height: 1.1em;
  font-weight: bold;
  color: #045F07;
}
.home .life-plants .life-plants-content .stats-container {
  display: inline;
}
.home .life-plants .life-plants-content .stats-container .stat {
  display: inline;
}
.home .life-plants .life-plants-content .stats-container .stat .odometer {
  font-size: 20px;
  font-family: inherit !important;
  color: #045F07;
  letter-spacing: 0.04em;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1440px) {
  .home .life-plants .life-plants-content .stats-container .stat .odometer {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
.home .life-plants .life-plants-content p {
  font-family: "opensansregular", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #212121;
  max-width: 75%;
}
@media only screen and (max-width: 768px) {
  .home .life-plants .life-plants-content p {
    max-width: 100% !important;
  }
}
.home .modal-backdrop {
  background-color: #ddebf9;
}
.home .modal-backdrop.in {
  opacity: 0.95;
}

@media only screen and (max-width: 1024px) {
  .home-testimonial-wrapper .title-text {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .home-testimonial-wrapper .title-text {
    text-align: center;
    margin-bottom: 0;
  }
}
.home-testimonial-wrapper .title-text h2 {
  font-size: 65px;
  line-height: 1;
  color: #2b8ecd;
  margin-top: -15px;
  margin-bottom: 20px;
  font-family: "opensanssemibold";
}
.home-testimonial-wrapper .title-text h2 span {
  color: #212121;
  line-height: 1;
  margin-bottom: 0;
  font-size: 24px;
}
.home-testimonial-wrapper .title-text a.btn-outline {
  display: inline-block;
  border-radius: 50px;
  line-height: 2.75;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  border: solid 1px #13618c;
  display: inline-block;
  min-width: 180px;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  color: #13618c;
  font-family: "opensansbold";
}
.home-testimonial-wrapper .title-text a.btn-outline:hover {
  color: #fff;
  background: #13618c;
  border: solid 1px #13618c;
}
.home-testimonial-wrapper #home-testimonial {
  width: 96%;
  position: relative;
}
.home-testimonial-wrapper #home-testimonial .owl-nav {
  position: absolute;
  top: -5px;
  bottom: 0;
  right: -40px;
  margin: auto;
  width: 30px;
  height: 30px;
}
.home-testimonial-wrapper #home-testimonial .owl-nav .owl-prev {
  display: none;
  visibility: hidden;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.home-testimonial-wrapper #home-testimonial .owl-nav .owl-prev:hover {
  -webkit-transform: translateX(-8%);
          transform: translateX(-8%);
}
.home-testimonial-wrapper #home-testimonial .owl-nav .owl-next {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
@media only screen and (max-width: 576px) {
  .home-testimonial-wrapper #home-testimonial .owl-nav .owl-next {
    right: 10px;
    top: -20px;
  }
}
@media only screen and (max-width: 375px) {
  .home-testimonial-wrapper #home-testimonial .owl-nav .owl-next {
    top: -50px;
  }
}
.home-testimonial-wrapper #home-testimonial .owl-nav .owl-next:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/right-arrow.svg) no-repeat center center;
}
.home-testimonial-wrapper #home-testimonial .owl-nav .owl-next.disabled:before {
  background: url(../img/right-arrow-disabled.svg) no-repeat center center;
}
.home-testimonial-wrapper #home-testimonial .owl-nav .owl-next:hover {
  -webkit-transform: translateX(8%);
          transform: translateX(8%);
}
@-webkit-keyframes arrowAnimate {
  to {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
@keyframes arrowAnimate {
  to {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
.home-testimonial-wrapper .testimonial {
  display: block;
  padding: 0 10px;
  zoom: 1;
}
.home-testimonial-wrapper .testimonial:before, .home-testimonial-wrapper .testimonial:after {
  content: "";
  display: table;
}
.home-testimonial-wrapper .testimonial:after {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .home-testimonial-wrapper .testimonial {
    display: inline-grid;
  }
}
.home-testimonial-wrapper .testimonial .user {
  float: left;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 0 rgba(43, 142, 205, 0.2);
          box-shadow: 0 8px 0 rgba(43, 142, 205, 0.2);
  border: solid 3px #fff;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .home-testimonial-wrapper .testimonial .user {
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.home-testimonial-wrapper .testimonial .text {
  width: calc(100% - 140px);
  padding-left: 40px;
  float: left;
}
.home-testimonial-wrapper .testimonial h4 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  padding: 15px 0 0;
  color: #212121;
}
.home-testimonial-wrapper .testimonial h4:before {
  content: "";
  width: 56px;
  height: 46px;
  background: url(../images/quotes.png) no-repeat center center;
  background-size: 95%;
  position: absolute;
  font-size: 64px;
  font-family: Georgia;
  font-weight: bold;
  font-style: italic;
  z-index: -1;
  top: 0;
  left: -30px;
  opacity: 0.6;
}
.home-testimonial-wrapper p.user-name {
  position: relative;
  padding-left: 25px;
  margin-top: 15px;
  font-size: 17px;
  font-family: "opensansregular";
  text-transform: uppercase;
}
.home-testimonial-wrapper p.user-name:before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 15px 3px 0;
  border-color: transparent #13618c transparent transparent;
  left: 0;
}

/*New Home Locations */
.home-location-wrapper {
  /*.owl-carousel.owl-drag .owl-item{
      @include breakpoint(1600){
        margin-right: 10px !important;
        width: 327px !important;
      }
      @include breakpoint(1440){
        margin-right: auto !important;
        width: auto !important;
      }
  }*/
}
.home-location-wrapper.spacer-lg {
  margin-bottom: 10px !important;
}
@media only screen and (max-width: 1024px) {
  .home-location-wrapper .title-text {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .home-location-wrapper .title-text {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .home-location-wrapper .title-text {
    margin-bottom: 50px;
  }
}
.home-location-wrapper .title-text h2 {
  font-size: 65px;
  line-height: 1;
  color: #2b8ecd;
  margin-top: -15px;
  margin-bottom: 20px;
  font-family: "opensanssemibold";
}
@media only screen and (max-width: 1440px) {
  .home-location-wrapper .title-text h2 {
    font-size: 40px;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 576px) {
  .home-location-wrapper .title-text h2 {
    font-size: 21px;
  }
}
.home-location-wrapper .title-text h2 span {
  color: #212121;
  line-height: 1;
  margin-bottom: 0;
  font-size: 24px;
}
@media only screen and (max-width: 576px) {
  .home-location-wrapper .title-text h2 span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 576px) {
  .home-location-wrapper .title-text h2 br {
    display: none;
  }
}
.home-location-wrapper .title-text a.btn-outline {
  display: inline-block;
  border-radius: 50px;
  line-height: 2.75;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  border: solid 1px #13618c;
  display: inline-block;
  min-width: 180px;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  color: #13618c;
  font-family: "opensansbold";
}
.home-location-wrapper .title-text a.btn-outline:hover {
  color: #fff;
  background: #13618c;
  border: solid 1px #13618c;
}
.home-location-wrapper #home-locations {
  width: 98%;
  position: relative;
  margin-left: 40px;
}
@media only screen and (max-width: 1440px) {
  .home-location-wrapper #home-locations {
    margin-left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .home-location-wrapper #home-locations {
    max-height: 690px;
  }
}
@media only screen and (max-width: 768px) {
  .home-location-wrapper #home-locations {
    max-height: 540px;
  }
}
@media only screen and (max-width: 576px) {
  .home-location-wrapper #home-locations {
    max-height: 420px;
  }
}
.home-location-wrapper #home-locations .owl-nav {
  position: absolute;
  top: -5px;
  bottom: calc(-100% + 75px);
  right: -5px;
  margin: auto;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .home-location-wrapper #home-locations .owl-nav {
    bottom: -100%;
  }
}
@media only screen and (max-width: 576px) {
  .home-location-wrapper #home-locations .owl-nav {
    right: -20px;
  }
}
.home-location-wrapper #home-locations .owl-nav .owl-prev {
  margin-right: 80px;
  background: transparent;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
@media only screen and (max-width: 576px) {
  .home-location-wrapper #home-locations .owl-nav .owl-prev {
    top: -14px;
    position: relative;
    margin-right: 0px;
    left: -50px;
  }
}
.home-location-wrapper #home-locations .owl-nav .owl-prev.disabled svg path {
  fill: #d0d2d3;
}
.home-location-wrapper #home-locations .owl-nav .owl-prev.disabled:hover {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.home-location-wrapper #home-locations .owl-nav .owl-prev:hover {
  -webkit-transform: translateX(-8%);
          transform: translateX(-8%);
}
.home-location-wrapper #home-locations .owl-nav .owl-next {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
@media only screen and (max-width: 576px) {
  .home-location-wrapper #home-locations .owl-nav .owl-next {
    right: 10px;
    top: -20px;
  }
}
.home-location-wrapper #home-locations .owl-nav .owl-next.disabled svg path {
  fill: #d0d2d3;
}
.home-location-wrapper #home-locations .owl-nav .owl-next.disabled:hover {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.home-location-wrapper #home-locations .owl-nav .owl-next:hover {
  -webkit-transform: translateX(8%);
          transform: translateX(8%);
}
.home-location-wrapper .locations {
  margin-bottom: 95px;
}
@media only screen and (max-width: 1440px) {
  .home-location-wrapper .locations {
    min-width: calc(100% + 20px);
    margin-bottom: 70px;
  }
}
.home-location-wrapper .locations_img img {
  height: 210px;
}
@media only screen and (max-width: 1024px) {
  .home-location-wrapper .locations_img img {
    height: auto;
  }
}
@media only screen and (max-width: 576px) {
  .home-location-wrapper .locations_img img {
    height: 215px;
  }
}
.home-location-wrapper .locations_cnt {
  background: #c2e5fc;
  padding: 30px 25px;
  height: 160px;
}
@media only screen and (max-width: 1800px) {
  .home-location-wrapper .locations_cnt {
    padding: 25px 20px;
    height: 175px;
  }
}
@media only screen and (max-width: 1600px) {
  .home-location-wrapper .locations_cnt {
    padding: 30px 18px;
    height: 170px;
  }
}
@media only screen and (max-width: 1440px) {
  .home-location-wrapper .locations_cnt {
    padding: 20px 25px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-location-wrapper .locations_cnt {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 320px) {
  .home-location-wrapper .locations_cnt {
    padding-left: 10px;
  }
}
.home-location-wrapper .locations_cnt_details h2 {
  font-size: 16px;
  color: #13618c;
  font-family: "opensansbold";
  margin: 0;
  padding-bottom: 18px;
}
@media only screen and (max-width: 1600px) {
  .home-location-wrapper .locations_cnt_details h2 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1440px) {
  .home-location-wrapper .locations_cnt_details h2 {
    font-size: 16px;
  }
}
.home-location-wrapper .locations_cnt_details p {
  color: #212121;
  font-size: 15px;
  font-family: "opensansregular", sans-serif;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1600px) {
  .home-location-wrapper .locations_cnt_details p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1440px) {
  .home-location-wrapper .locations_cnt_details p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-location-wrapper .locations_cnt_details p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 320px) {
  .home-location-wrapper .locations_cnt_details p {
    font-size: 13px;
  }
}
.home-location-wrapper .locations_cnt_details p .fa {
  color: #13618c;
  padding-right: 20px;
}
@media only screen and (max-width: 1440px) {
  .home-location-wrapper .locations_cnt_details p .fa {
    padding-right: 10px;
  }
}
.home-location-wrapper .locations_cnt_details p .fa.fa-phone {
  padding-right: 23px;
}
@media only screen and (max-width: 1440px) {
  .home-location-wrapper .locations_cnt_details p .fa.fa-phone {
    padding-right: 13px;
  }
}
.home-location-wrapper .locations_cnt_details p.locations_cnt_details_phone {
  padding-bottom: 0;
}
.home-location-wrapper .locations_cnt_details p a {
  color: #212121;
  font-size: 14px;
  font-family: "opensansregular", sans-serif;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
@media only screen and (max-width: 1600px) {
  .home-location-wrapper .locations_cnt_details p a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1440px) {
  .home-location-wrapper .locations_cnt_details p a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1366px) {
  .home-location-wrapper .locations_cnt_details p a {
    font-size: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-location-wrapper .locations_cnt_details p a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 320px) {
  .home-location-wrapper .locations_cnt_details p a {
    font-size: 13px;
  }
}
.home-location-wrapper .locations_cnt_details p a:hover {
  color: #13618c;
}

.events-tour > div {
  padding: 40px;
  /*&:first-child {
    background: #f7f6f4;
  }

  &:last-child {
    background: #f7f6f4;
  }*/
}
.events-tour h2 {
  color: #2b8ecd;
  letter-spacing: 0.03em;
}
.events-tour .latest-events {
  display: block;
}
.events-tour .event {
  display: block;
  zoom: 1;
}
.events-tour .event:before, .events-tour .event:after {
  content: "";
  display: table;
}
.events-tour .event:after {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .events-tour .event {
    display: inline-grid;
  }
}
.events-tour .event .thumb,
.events-tour .event .desc {
  display: block;
  float: left;
}
.events-tour .event .thumb {
  width: 160px;
  -webkit-box-shadow: 5px 5px 0 rgba(43, 142, 205, 0.2);
          box-shadow: 5px 5px 0 rgba(43, 142, 205, 0.2);
  border: solid 3px #fff;
}
@media only screen and (max-width: 768px) {
  .events-tour .event .thumb {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.events-tour .event .thumb img {
  display: block;
}
.events-tour .event .desc {
  width: calc(100% - 160px);
  padding-left: 40px;
}
.events-tour .event h3 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 0.04em;
}
.events-tour .event h3 span {
  display: inline-block;
  font-weight: normal;
  font-style: italic;
}
.events-tour .event h3 span:before {
  content: "-";
  display: inline-block;
  padding: 0 5px;
}
.events-tour .event p {
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
}
.events-tour .virtual-tour .owl-stage-outer {
  padding: 10px;
}
.events-tour .virtual-tour a.btn-alt {
  display: inline-block;
  margin-top: 20px;
}
.events-tour .virtual-tour .thumb {
  display: block;
  -webkit-box-shadow: 5px 5px 0 rgba(19, 97, 140, 0.2);
          box-shadow: 5px 5px 0 rgba(19, 97, 140, 0.2);
  border: solid 3px #fff;
  margin: 0 5px;
}

.btn-alt {
  display: inline-block;
  position: relative;
  padding: 0 23px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  font-family: "opensansbold";
}
.btn-alt:before, .btn-alt:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
.btn-alt:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 15px 3px 0;
  border-color: transparent #13618c transparent transparent;
  left: 0;
}
.btn-alt:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 15px;
  border-color: transparent transparent transparent #13618c;
  right: 0;
}
.btn-alt:hover {
  color: #13618c;
}
.btn-alt:hover:before {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.btn-alt:hover:after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.btn-alt.btn-alt-right {
  padding-left: 0;
}
.btn-alt.btn-alt-right:before {
  display: none;
}
.btn-alt.btn-alt-left {
  padding-right: 0;
}
.btn-alt.btn-alt-left:after {
  display: none;
}

/* Fro custom css*/
.search-doctors {
  background: #eeeeee url("../img/doctors-search.png") no-repeat;
  padding: 20px 10px 20px 10px;
  margin-bottom: 40px;
  color: #757575;
  -webkit-transition: all 1s;
  transition: all 1s;
  zoom: 1;
}
.search-doctors:before, .search-doctors:after {
  content: "";
  display: table;
}
.search-doctors:after {
  clear: both;
}
@media only screen and (max-width: 576px) {
  .search-doctors {
    background-size: 20%;
  }
}
.search-doctors.fixed {
  position: fixed;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100vw - 240px);
  background: #61baf3 url("../img/doctors-search.png") no-repeat;
  max-height: 80px;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 19;
}
.search-doctors.fixed h4 {
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .search-doctors form {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .search-doctors form {
    margin-left: 0px;
  }
}
.search-doctors .col-md-6 {
  position: relative;
}
.search-doctors .col-md-6 i {
  position: absolute;
  height: 40px;
  width: 40px;
  text-align: center;
  left: 12px;
  top: 12px;
  font-size: 15px;
}
.search-doctors h4 {
  font-size: 20px;
  line-height: 40px;
  color: #13618c;
  font-weight: 100;
  letter-spacing: 0.1em;
  padding-left: 85px;
  font-family: "opensansbold";
  text-transform: uppercase;
}
@media only screen and (max-width: 1440px) {
  .search-doctors h4 {
    padding-left: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .search-doctors h4 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .search-doctors h4 {
    line-height: 0;
    font-size: 18px;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 30px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 360px) {
  .search-doctors h4 {
    padding-left: 50px;
  }
}
.search-doctors h4 i {
  color: #13618c;
  display: inline-block;
  padding: 0 10px;
}
@media only screen and (max-width: 768px) {
  .search-doctors .selectric-wrapper {
    margin-bottom: 10px;
  }
}
.search-doctors select,
.search-doctors input {
  display: block;
  width: 100%;
  background: #fff;
  padding: 8px;
  height: 40px;
  line-height: 20px;
  border: none;
  font-size: 15px;
  color: #424242;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 768px) {
  .search-doctors select,
  .search-doctors input {
    text-align: center;
    padding-left: 0px !important;
  }
}
@media only screen and (max-width: 576px) {
  .search-doctors select,
  .search-doctors input {
    text-align: left;
    padding-left: 50px !important;
  }
}
.search-doctors input {
  padding-left: 40px;
}
.search-doctors input.placeholder {
  color: #424242;
  font-size: 15px;
  letter-spacing: 0.03em;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  font-family: "opensanssemibold";
}
.search-doctors input:-moz-placeholder {
  color: #424242;
  font-size: 15px;
  letter-spacing: 0.03em;
  -moz-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  font-family: "opensanssemibold";
}
.search-doctors input::-moz-placeholder {
  color: #424242;
  font-size: 15px;
  letter-spacing: 0.03em;
  -moz-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  font-family: "opensanssemibold";
}
.search-doctors input:-ms-input-placeholder {
  color: #424242;
  font-size: 15px;
  letter-spacing: 0.03em;
  -ms-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  font-family: "opensanssemibold";
}
.search-doctors input::-webkit-input-placeholder {
  color: #424242;
  font-size: 15px;
  letter-spacing: 0.03em;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  font-family: "opensanssemibold";
}
.search-doctors input:focus.placeholder {
  color: transparent;
}
.search-doctors input:focus:-moz-placeholder {
  color: transparent;
}
.search-doctors input:focus::-moz-placeholder {
  color: transparent;
}
.search-doctors input:focus:-ms-input-placeholder {
  color: transparent;
}
.search-doctors input:focus::-webkit-input-placeholder {
  color: transparent;
}
.search-doctors select {
  padding-left: 15px;
  background: #fff url(../img/select-bg.jpg) no-repeat 95% 17px;
}
@media only screen and (max-width: 1440px) {
  .search-doctors .selectric-open .selectric-items {
    width: 250px !important;
  }
}
@media only screen and (max-width: 576px) {
  .search-doctors .selectric .label {
    text-align: left;
    padding-left: 40px;
  }
}

#doctor-profile .doc-details {
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  padding: 35px;
}
@media only screen and (max-width: 576px) {
  #doctor-profile .doc-details {
    padding: 14px;
  }
}
#doctor-profile .doc-details .doc-details-right {
  background: #f5f5f5;
  padding: 0;
  margin: 0;
}
#doctor-profile .doc-details .doc-details-right li {
  padding-left: 30px;
}
#doctor-profile .doc-details h2 {
  color: #212121;
  font-size: 16px;
  font-family: "opensansregular", sans-serif;
  font-weight: bold;
  margin-bottom: 0px;
  text-transform: none;
  padding-top: 15px;
}
#doctor-profile .doc-details p {
  padding-bottom: 25px;
}
#doctor-profile .doc-details .doc-details-left {
  padding-left: 60px;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  #doctor-profile .doc-details .doc-details-left {
    padding-left: 14px;
  }
}
@media only screen and (max-width: 576px) {
  #doctor-profile .doc-details .doc-details-left {
    margin-bottom: 40px;
    padding-left: 0;
    text-align: justify;
  }
}
#doctor-profile .doc-details .doc-details-left .doc-heading span {
  color: #757575;
  text-transform: uppercase;
}
#doctor-profile .doc-details .doc-details-left .doc-heading h1 {
  margin: 0;
  padding: 0;
  color: #2b8ecd;
  margin-top: 10px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
  padding-left: 10px;
  position: relative;
  bottom: -14px;
}
@media only screen and (max-width: 1680px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
    bottom: 0px;
  }
}
@media only screen and (max-width: 1440px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
    bottom: -10px;
  }
}
@media only screen and (max-width: 1024px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
    bottom: -8px;
  }
}
@media only screen and (max-width: 768px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
    bottom: -8px;
  }
}
@media only screen and (max-width: 576px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
    font-size: 10px;
    bottom: 0;
  }
}
@media only screen and (max-width: 320px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
    padding-left: 0;
  }
}
#doctor-profile .doc-details .doc-details-left p {
  letter-spacing: 0.02em;
}

.doc-details-single {
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  padding-top: 55px !important;
  padding: 35px;
  max-width: 85%;
  background: #fff;
  margin-top: -20px;
}
.doc-details-single p {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.02em;
}
.doc-details-single .doc-details-right {
  background: #f5f5f5;
  padding: 0;
  margin: 0;
}
.doc-details-single .doc-details-right li {
  padding-left: 30px;
}
@media only screen and (max-width: 1440px) {
  .doc-details-single .doc-details-right li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.doc-details-single .doc-details-right h2 {
  color: #212121;
  font-size: 16px;
  font-family: "opensansregular", sans-serif;
  font-weight: bold;
  padding-bottom: 10px;
  padding-top: 20px;
  text-transform: none;
  margin: 0;
}
.doc-details-single .doc-details-right p {
  padding-bottom: 15px;
}
.doc-details-single .doc-details-left {
  padding-left: 60px;
}
.doc-details-single .doc-details-left .doc-heading span {
  color: #757575;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 50px;
}
@media only screen and (max-width: 1680px) {
  .doc-details-single .doc-details-left .doc-heading span {
    bottom: 0;
  }
}
@media only screen and (max-width: 1280px) {
  .doc-details-single .doc-details-left .doc-heading span {
    bottom: 0;
  }
}
.doc-details-single .doc-details-left .doc-heading h1 {
  margin: 0;
  padding: 0;
  color: #2b8ecd;
  font-size: 36px;
  padding-top: 5px;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 1680px) {
  .doc-details-single .doc-details-left .doc-heading h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1280px) {
  .doc-details-single .doc-details-left .doc-heading h1 {
    font-size: 24px;
  }
}
.doc-details-single .doc-details-left p {
  padding-bottom: 15px;
}

#doctor-profile .ctoa-footer {
  max-width: none;
  width: 100%;
}
#doctor-profile.loaded a.close-details {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 576px) {
  #doctor-profile.loaded a.close-details {
    z-index: 9;
  }
}
#doctor-profile .wrapper {
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #doctor-profile .wrapper {
    max-width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  #doctor-profile .wrapper {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 576px) {
  #doctor-profile .wrapper {
    max-width: 100%;
  }
}
#doctor-profile a.close-details {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  z-index: 1;
  color: #fff;
  background: #2b8ecd;
  width: 30px;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  visibility: hidden;
  opacity: 0;
  display: block;
}
#doctor-profile a.close-details:hover {
  background: #13618c;
}
#doctor-profile .cell {
  position: relative;
}
@media only screen and (max-width: 576px) {
  #doctor-profile .cell {
    display: block;
  }
}
#doctor-profile .doc-details {
  position: relative;
  width: 100%;
}
#doctor-profile .doc-details .doc-details-left .doc-heading {
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
#doctor-profile .doc-details .doc-details-left .doc-heading h1 {
  margin: 0;
}
#doctor-profile .doc-details .doc-details-left .doc-heading span {
  display: block;
  margin-bottom: 0;
  line-height: 30px;
}
#doctor-profile .doc-details .doc-details-right img {
  display: block;
}
@media only screen and (max-width: 768px) {
  #doctor-profile .doc-details .doc-details-right img {
    width: 100%;
  }
}
#doctor-profile .doc-details .doc-details-right ul {
  padding: 20px;
}
@media only screen and (max-width: 320px) {
  #doctor-profile .doc-details .doc-details-right ul {
    padding: 10px;
  }
}
#doctor-profile .doc-details .doc-details-right li {
  padding: 10px 0;
  letter-spacing: 0.03em;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 0px;
  background: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#doctor-profile .doc-details .doc-details-right li:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#doctor-profile .doc-details .doc-details-right li span {
  font-weight: bold;
  display: inline-block;
  padding: 0 10px;
  color: #13618c;
}
#doctor-profile .doc-details .doc-details-right li span:before {
  font-family: "FontAwesome";
  padding-right: 8px;
  display: inline-block;
  text-align: center;
  width: 30px;
}
#doctor-profile .doc-details .doc-details-right li.speciality span:before {
  content: "\f0f0";
}
#doctor-profile .doc-details .doc-details-right li.location span:before {
  content: "\f041";
}
#doctor-profile .doc-details-single {
  max-width: none;
}

.grid-thumbnail a,
.grid-thumbnail img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .grid-thumbnail a,
  .grid-thumbnail img {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .grid-thumbnail a,
  .grid-thumbnail img {
    width: 100%;
  }
}

.grid-loop li {
  position: relative;
}

.grid-loop .grid-content .doc-details p.doc-speciality {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #212121;
  font-family: "opensanssemibold";
  padding-bottom: 0px;
}

.grid-loop .grid-content .doc-details p.doc-location {
  display: block;
  position: relative;
  letter-spacing: 0.03em;
  margin: 15px 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #212121;
  font-family: "opensansbold";
  padding-bottom: 0px;
}
@media only screen and (max-width: 1440px) {
  .grid-loop .grid-content .doc-details p.doc-location {
    margin: 12px 0;
  }
}
.grid-loop .grid-content .doc-details p.doc-location:before {
  content: "\f041";
  font-family: "FontAwesome";
  padding-right: 5px;
  color: #13618c;
}

.grid-loop li .doc-btns {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 20px;
}
@media only screen and (max-width: 1800px) {
  .grid-loop li .doc-btns {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-loop li .doc-btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 420px) {
  .grid-loop li .doc-btns {
    padding: 0 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 375px) {
  .grid-loop li .doc-btns {
    padding: 0 0px;
  }
}
.grid-loop li .doc-btns a {
  margin-bottom: 20px;
}
.grid-loop li .doc-btns a:first-child {
  margin-right: 15px;
}
@media only screen and (max-width: 1800px) {
  .grid-loop li .doc-btns a:first-child {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 1600px) {
  .grid-loop li .doc-btns a:first-child {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 1440px) {
  .grid-loop li .doc-btns a:first-child {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 1280px) {
  .grid-loop li .doc-btns a:first-child {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-loop li .doc-btns a:first-child {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .grid-loop li .doc-btns a:first-child {
    margin-right: 10px;
  }
}

#doctor-profile {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 20;
  background: #fff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#doctor-profile .loader {
  position: fixed;
  width: 60px;
  height: 60px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
#doctor-profile .loader .double-bounce1,
#doctor-profile .loader .double-bounce2 {
  background: #2b8ecd;
}
#doctor-profile .doctor-profile {
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#doctor-profile.show {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  visibility: visible;
  background: #ddebf9;
}
@media only screen and (max-width: 576px) {
  #doctor-profile.show {
    background-color: #fff;
  }
}
#doctor-profile.loaded .doctor-profile {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  opacity: 1;
}
#doctor-profile.loaded .ctoa-footer {
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  opacity: 1;
}
#doctor-profile.loaded .loader {
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
}
#doctor-profile .close-details {
  position: relative;
  top: 50px;
  left: -75px;
}
#doctor-profile .close-details span {
  font-size: 17px !important;
}
#doctor-profile .ctoa-footer {
  display: block;
  background: #61baf3 url(../img/footerbg.jpg) no-repeat left top;
  background-size: contain;
  padding: 60px;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  margin: 0 auto;
  width: calc(100% + 70px);
  clear: both;
  left: -35px;
  top: 35px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #doctor-profile .ctoa-footer {
    background-size: cover;
    background-position: 30%;
    -webkit-box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
            box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    left: -35px;
  }
}
@media only screen and (max-width: 576px) {
  #doctor-profile .ctoa-footer {
    width: calc(100% + 30px);
    left: -15px;
    padding: 30px 0;
  }
}
@media only screen and (max-width: 360px) {
  #doctor-profile .ctoa-footer {
    padding: 20px 0;
  }
}
#doctor-profile .ctoa-footer h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 0;
  float: left;
  text-align: right;
  text-transform: uppercase;
  font-family: "opensansregular", sans-serif;
  font-weight: 500;
  padding-top: 0;
  font-family: "opensansbold";
}
@media only screen and (max-width: 768px) {
  #doctor-profile .ctoa-footer h2 {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  #doctor-profile .ctoa-footer h2 {
    font-size: 21px;
  }
}
#doctor-profile .ctoa-footer h2 span {
  display: block;
  color: #13618c;
  letter-spacing: 0.02em;
  font-size: 20px;
  margin-bottom: 5px;
  font-family: "opensanssemibold";
}
@media only screen and (max-width: 768px) {
  #doctor-profile .ctoa-footer h2 span {
    color: #fff;
  }
}
@media only screen and (max-width: 576px) {
  #doctor-profile .ctoa-footer h2 span {
    font-size: 16px;
  }
}
#doctor-profile .btn-cto {
  background: transparent;
  color: white;
  text-transform: uppercase;
  line-height: 3.5;
  border-radius: 25px;
  min-width: 260px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.2s cubic-bezier(0, 0, 0.39, 1.1);
  border: 1px solid white;
  float: right;
  margin: 3px 0 10px 50px;
}
@media only screen and (max-width: 768px) {
  #doctor-profile .btn-cto {
    margin-top: 30px;
    position: relative;
    left: -24%;
  }
}
@media only screen and (max-width: 576px) {
  #doctor-profile .btn-cto {
    line-height: 2.5;
    min-width: 230px;
  }
}
@media only screen and (max-width: 375px) {
  #doctor-profile .btn-cto {
    left: -18%;
  }
}
@media only screen and (max-width: 320px) {
  #doctor-profile .btn-cto {
    left: -14%;
  }
}
#doctor-profile .btn-cto:hover {
  background: #2b8ecd;
  border: 1px solid #2b8ecd;
}

#map,
.map-canvas {
  height: 400px;
  width: 100%;
}
@media only screen and (max-width: 576px) {
  #map,
  .map-canvas {
    height: 300px;
  }
}

.map-border {
  border-right: 10px solid #ddebf9;
  border-bottom: 10px solid #ddebf9;
}
@media only screen and (max-width: 576px) {
  .map-border {
    border: 0;
  }
}

ul.location-loop {
  display: block;
  zoom: 1;
  /* New Location */
}
ul.location-loop:before, ul.location-loop:after {
  content: "";
  display: table;
}
ul.location-loop:after {
  clear: both;
}
ul.location-loop li:nth-child(odd) {
  padding-right: 40px;
}
ul.location-loop li:nth-child(even) {
  padding-left: 0px;
}
@media only screen and (max-width: 768px) {
  ul.location-loop li:nth-child(even) {
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  ul.location-loop li:nth-child(4) .location_wrap_cnt {
    min-height: 100px;
  }
}
@media only screen and (max-width: 576px) {
  ul.location-loop li:nth-child(4) .location_wrap_cnt {
    min-height: 60px;
    height: 310px;
  }
}
ul.location-loop .location_wrap {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1440px) {
  ul.location-loop .location_wrap {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  ul.location-loop .location_wrap {
    margin-bottom: 40px;
  }
}
ul.location-loop .location_wrap:nth-child(3) {
  margin-bottom: 0;
}
ul.location-loop .location_wrap_img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 450px;
}
@media only screen and (max-width: 1440px) {
  ul.location-loop .location_wrap_img {
    height: 370px;
  }
}
@media only screen and (max-width: 576px) {
  ul.location-loop .location_wrap_img {
    height: 250px;
  }
}
ul.location-loop .location_wrap_cnt {
  padding: 30px;
  padding-bottom: 0;
  background: #c2e5fc;
  color: #fff;
  min-height: 250px;
  color: #212121;
}
@media only screen and (max-width: 1440px) {
  ul.location-loop .location_wrap_cnt {
    min-height: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  ul.location-loop .location_wrap_cnt {
    min-height: 320px;
  }
}
@media only screen and (max-width: 576px) {
  ul.location-loop .location_wrap_cnt {
    min-height: 300px;
  }
}
@media only screen and (max-width: 576px) {
  ul.location-loop .location_wrap_cnt {
    padding: 25px;
  }
}
@media only screen and (max-width: 360px) {
  ul.location-loop .location_wrap_cnt {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 320px) {
  ul.location-loop .location_wrap_cnt {
    padding: 30px 5px;
  }
}
ul.location-loop .location_wrap_cnt_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1440px) {
  ul.location-loop .location_wrap_cnt_details {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 1024px) {
  ul.location-loop .location_wrap_cnt_details {
    display: block;
  }
}
ul.location-loop .location_wrap_cnt h2 {
  font-size: 20px;
  color: #13618c;
  margin-bottom: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 576px) {
  ul.location-loop .location_wrap_cnt h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  ul.location-loop .location_wrap_cnt h2 span {
    display: block;
    margin-top: 5px;
  }
}
ul.location-loop .location_wrap_cnt p {
  font-size: 15px;
  color: #212121;
  font-weight: bold;
  padding-bottom: 15px;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 1440px) {
  ul.location-loop .location_wrap_cnt p {
    font-size: 14px;
    padding-right: 0%;
  }
}
@media only screen and (max-width: 1024px) {
  ul.location-loop .location_wrap_cnt p {
    padding-right: 0%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media only screen and (max-width: 840px) {
  ul.location-loop .location_wrap_cnt p {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  ul.location-loop .location_wrap_cnt p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
ul.location-loop .location_wrap_cnt p span {
  padding-right: 20px;
  color: #fff;
  font-size: 15px;
  height: 26px;
  float: left;
}
@media only screen and (max-width: 320px) {
  ul.location-loop .location_wrap_cnt p span {
    padding-right: 5px;
  }
}
ul.location-loop .location_wrap_cnt p span .fa {
  color: #13618c;
}
ul.location-loop .location_wrap_cnt p span .fa.fa-mobile {
  font-size: 26px;
}
ul.location-loop .location_wrap_cnt a {
  color: #212121;
}
ul.location-loop .location_wrap_cnt_address {
  font-weight: normal !important;
  letter-spacing: 0.01em;
  font-family: "opensansregular", sans-serif;
  min-height: 74px;
}
@media only screen and (max-width: 1440px) {
  ul.location-loop .location_wrap_cnt_address {
    min-height: 64px;
  }
}
@media only screen and (max-width: 1024px) {
  ul.location-loop .location_wrap_cnt_address {
    padding-right: 12%;
  }
}
@media only screen and (max-width: 1024px) {
  ul.location-loop .location_wrap_cnt_address br {
    display: none;
  }
}
ul.location-loop .location_wrap_cnt_phone span {
  padding-right: 17px !important;
}
ul.location-loop .location_wrap_cnt_email a {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
ul.location-loop .location_wrap_cnt_email a span {
  padding-right: 13px;
}
ul.location-loop .location_wrap_cnt_email a:hover {
  color: #13618c;
}
ul.location-loop .location_wrap_cnt_btns {
  margin-left: auto;
}
@media only screen and (max-width: 1440px) {
  ul.location-loop .location_wrap_cnt_btns {
    margin-top: 10px;
    margin-left: 0;
  }
}
ul.location-loop .location_wrap_cnt_btns a {
  font-size: 14px;
  line-height: 30px;
  min-height: 30px;
  color: #13618c;
  border-radius: 25px;
  border: 1px solid #13618c;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  min-width: 180px;
  height: 30px;
  display: table;
  text-align: center;
  font-weight: bold;
}
ul.location-loop .location_wrap_cnt_btns a:hover {
  background: #2b8ecd;
  color: #fff;
  border-color: transparent;
}

.coming_soon ul.location-loop {
  padding-top: 20px;
}
@media only screen and (max-width: 1440px) {
  .coming_soon ul.location-loop {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .coming_soon ul.location-loop {
    padding-top: 0;
  }
}
.coming_soon ul.location-loop .location_wrap_cnt {
  min-height: 130px;
}

@media (max-width: 1440px) {
  ul.location-loop {
    display: block;
    zoom: 1;
  }
  ul.location-loop:before, ul.location-loop:after {
    content: "";
    display: table;
  }
  ul.location-loop:after {
    clear: both;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 576px) {
  ul.location-loop {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 320px) {
  ul.location-loop {
    margin-top: -40px;
  }
}
@media (max-width: 1440px) {
  ul.location-loop li:nth-child(odd) {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 768px) {
  ul.location-loop li:nth-child(odd) {
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 576px) {
  ul.location-loop li:nth-child(odd) {
    padding-right: 0;
    margin-bottom: 0px;
  }
}
@media (max-width: 1440px) {
  ul.location-loop li:nth-child(even) {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 576px) {
  ul.location-loop li:nth-child(even) {
    /*margin-top: 40px;*/
  }
}
.location-content h2 {
  font-size: 22px;
  margin: 50px 0 25px;
  color: #2b8ecd;
}
@media only screen and (max-width: 576px) {
  .location-content h2 {
    font-size: 18px;
    line-height: 28px;
    margin-top: 25px;
  }
}
.location-content .location-details {
  margin-left: 65px;
}
@media only screen and (max-width: 768px) {
  .location-content .location-details {
    margin-bottom: 40px;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 320px) {
  .location-content .location-details {
    margin-left: 0px;
  }
}
.location-content .location-details p {
  font-size: 15px;
  letter-spacing: 0.5px;
}
@media (max-width: 1440px) {
  .location-content .location-details p {
    font-size: 14px;
    /*display: inline-flex;*/
  }
}
.location-content .location-details p span {
  padding-right: 20px;
  color: #13618c;
  font-size: 15px;
  height: 26px;
  float: left;
}
.location-content .location-details .location-adderss,
.location-content .location-details .location-phone,
.location-content .location-details .location-email {
  padding-bottom: 15px;
}
.location-content .location-details .fa.fa-mobile {
  font-size: 26px;
}
.location-content .location-details .location-phone,
.location-content .location-details .location-email {
  font-weight: 600;
}
.location-content .location-details .location-email a {
  color: #212121;
}
.location-content .location-details .location-email a:hover {
  color: #2b8ecd;
}
.location-content .location-details a.location-tour {
  padding-left: 35px;
  font-weight: bold;
  letter-spacing: 0.03em;
  position: relative;
  margin-top: 30px;
}
@media only screen and (max-width: 576px) {
  .location-content .location-details a.location-tour {
    margin-top: 0;
  }
}
.location-content .location-details .btn-alt.location-tour:before {
  border: none;
}

.facilities {
  background: #f4f4f4;
  background-size: cover;
  padding: 50px;
  margin-top: 100px;
}
.facilities h2 {
  font-family: "opensansregular";
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #2b8ecd;
}
.facilities h3 {
  font-size: 24px;
}
.facilities p {
  font-size: 15px;
  line-height: 24px;
}
.facilities a.btn-outline {
  color: #fff;
  border: solid 1px #fff;
  line-height: 3.2;
  display: inline-block;
  min-width: 250px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: 15px;
  border-radius: 50px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
}
.facilities a.btn-outline:hover {
  border-color: #13618c;
  background: #13618c;
}
.facilities .facility {
  padding: 30px;
  padding-left: 80px;
  position: relative;
}
.facilities .facility:before {
  content: "\f005";
  font-family: "FontAwesome";
  font-size: 20px;
  display: block;
  position: absolute;
  color: #fff;
  background: #ddebf9;
  width: 60px;
  height: 60px;
  line-height: 62px;
  text-align: center;
  border-radius: 50%;
  left: 0;
  top: 35px;
}
.facilities .facility h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.facilities .facility p {
  font-size: 14px;
}

.selectric-items li.highlighted {
  background: #ddebf9;
}

.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 38px;
}

.selectric-items li {
  padding: 0 10px;
}

.selectric-items li:hover {
  background: #61baf3;
}

.toggle-div {
  margin: 20px auto;
  border: solid 1px #ccc;
  background: #fff;
  color: #000;
  text-align: left;
  border-radius: 4px;
  overflow: hidden;
}
.toggle-div h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  padding: 18px;
  font-size: 15px;
  font-weight: bold;
  background-color: #ddebf9;
  color: #13618c;
  position: relative;
  padding-right: 40px;
}
.toggle-div h3:before {
  content: "\f067";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #424242;
}
.toggle-div h3.active:before {
  content: "\f068";
}
.toggle-div p {
  font-size: 15px;
  letter-spacing: 0.03em;
}

.faq div.panel {
  display: none;
  padding: 20px;
  background: #fff;
  border: none;
  margin: 0;
  border-top: solid 1px #ccc;
}

.rev_slider_wrapper {
  max-height: 100vh !important;
}
@media only screen and (max-width: 1024px) {
  .rev_slider_wrapper {
    max-height: 38vh !important;
  }
}
@media only screen and (max-width: 576px) {
  .rev_slider_wrapper {
    max-height: 210px !important;
  }
}

@media only screen and (max-width: 1440px) {
  .rev_slider .tp-caption {
    left: 50px;
    min-width: auto !important;
  }
}
@media only screen and (max-width: 576px) {
  .rev_slider .tp-caption {
    left: 40px;
  }
}
.rev_slider .tp-caption sup {
  vertical-align: super;
  font-size: 50% !important;
  position: absolute;
  top: -40%;
  right: 3%;
}
@media only screen and (max-width: 1440px) {
  .rev_slider .tp-caption sup {
    top: -30%;
    right: -2%;
  }
}
@media only screen and (max-width: 768px) {
  .rev_slider .tp-caption sup {
    /* font-size: 18px !important;
     bottom: 3px;*/
  }
}
@media only screen and (max-width: 576px) {
  .rev_slider .tp-caption sup {
    /*font-size: 14px !important;
    bottom: 5px;*/
  }
}

.deco-center {
  position: relative;
}
.deco-center:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  right: 0;
  left: 0;
  margin: auto;
  background: url(../img/deco-element-circles.png) no-repeat center center;
  width: 100%;
  height: 17px;
  max-width: 325px;
}

.caption {
  display: block;
  position: relative;
  max-width: 760px;
  -webkit-transform: translate(11vw, 2vw);
          transform: translate(11vw, 2vw);
}
.caption h3 {
  font-family: "opensansregular";
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.caption h2 {
  font-size: 50px;
  color: #2b8ecd;
  margin-bottom: -3px;
}
.caption p {
  font-size: 17px;
  font-weight: 400;
  color: #212121;
  margin: 25px 0;
  max-width: 500px;
  line-height: 1.8;
}
.caption a.btn {
  display: block;
  background: #2b8ecd;
  max-width: 200px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 2.8;
  border-radius: 45px;
  border: solid 1px transparent;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.caption a.btn:hover {
  color: #2b8ecd;
  background: transparent;
  border: solid 1px #2b8ecd;
}

.uc-wraper {
  height: calc(100vh - 126px);
}
.uc-wraper .caption p {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 10px 0;
  font-size: 15px;
}

.page-template-comingsoon .caption {
  -webkit-transform: translate(9.7vw, 2vw);
          transform: translate(9.7vw, 2vw);
}

.page-template-comingsoon .page-wrapper {
  padding: 0;
}

.search-results,
.search-no-results.search {
  margin-bottom: 0px;
  background: #fff !important;
}

.search-results margin:auto h1 {
  font-size: 40px;
}
.search-results h3 {
  font-size: 20px;
}
.search-results p {
  margin-bottom: 15px;
  width: 75%;
  padding-left: 15px;
}
.search-results p:last-child {
  margin-bottom: 45px;
}

.git-wrapper {
  background: #ddebf9;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 50px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .git-wrapper {
    height: 660px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .git-wrapper {
    height: 680px;
    padding: 0 20px;
  }
}
.git-wrapper .git input[type=text],
.git-wrapper .git input[type=tel],
.git-wrapper .git input[type=email],
.git-wrapper .git textarea {
  height: 40px;
  width: 100%;
  border: 1px solid transparent;
  margin-bottom: 30px;
  font-family: "opensansregular", sans-serif;
  font-size: 14px;
  color: #757575;
  font-weight: normal;
  line-height: 1.7;
  padding-left: 20px;
}
.git-wrapper .git .git-item {
  padding: 0 55px 0 0;
}
@media only screen and (max-width: 768px) {
  .git-wrapper .git .git-item {
    padding: 0;
  }
}
.git-wrapper .git .git-item:nth-child(4) {
  padding: 0;
}
.git-wrapper .git .git-item-message,
.git-wrapper .git .git-submit {
  padding: 0;
}
.git-wrapper .git .git-item-message .wpcf7-not-valid-tip {
  top: 0;
}
.git-wrapper .git .gnt-place .wpcf7-not-valid-tip {
  top: 40px;
}
.git-wrapper .git textarea {
  max-width: 100%;
  min-width: 100%;
  max-height: 140px;
  min-height: 40px;
  padding-top: 6px;
}
.git-wrapper .git .label {
  padding-left: 10px;
}
.git-wrapper .git .text-right {
  text-align: right;
}
.git-wrapper .git .git-submit {
  padding-bottom: 10px;
}
.git-wrapper .git .git-submit .wpcf7-spinner {
  margin-top: 8px;
}
.git-wrapper .git .gnt-submit {
  height: 40px;
  width: 180px;
  border: 1px solid #2b8ecd;
  background: #ddebf9;
  border-radius: 50px;
  position: absolute;
  right: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2b8ecd;
}
.git-wrapper .git .gnt-submit:hover {
  background-color: #2b8ecd;
  color: #fff6ff;
}
.git-wrapper .git h2 {
  margin: 0;
  padding-bottom: 25px;
  font-size: 24px;
  color: #2b8ecd;
  padding-top: 40px;
}
@media only screen and (max-width: 576px) {
  .git-wrapper .git h2 {
    font-size: 18px;
    line-height: 31px;
    padding-bottom: 10px;
    padding-top: 20px;
  }
}
.git-wrapper .git p {
  padding-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.03em;
}
.git-wrapper .git p.form_title {
  padding-bottom: 50px;
  text-align: center;
}
.git-wrapper .git p:nth-child(3) {
  padding-bottom: 35px;
}
@media only screen and (max-width: 576px) {
  .git-wrapper .git p {
    font-size: 14px;
    line-height: 20px;
  }
}
.git-wrapper span.wpcf7-not-valid-tip {
  position: absolute;
  top: -40px;
  display: none;
}
.git-wrapper div.wpcf7-validation-errors,
.git-wrapper div.wpcf7-acceptance-missing {
  border: none !important;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 50px;
  color: #2b8ecd;
  display: none !important;
}
.git-wrapper .wpcf7-not-valid {
  border: 1px solid #2b8ecd !important;
}
.git-wrapper .wpcf7-not-valid .selectric-wpcf7-validates-as-required {
  border: 1px solid #2b8ecd !important;
}

.upcoming-events-title {
  margin-top: 60px;
}

.upcoming-events {
  margin-bottom: 110px;
}
.upcoming-events .upcoming-event-title {
  font-family: "opensansregular";
  font-size: 22px;
  text-transform: uppercase;
}
.upcoming-events .events-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  padding-bottom: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.upcoming-events .events-list li {
  margin-right: 50px;
  font-style: italic;
  font-size: 16px;
  color: #343434;
}
.upcoming-events .events-list li:first-child {
  font-style: normal;
  font-size: 14px;
  font-weight: Bold;
  letter-spacing: 1px;
}
.upcoming-events .events-desc {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.03em;
  margin-bottom: 50px;
}
.upcoming-events .btn-events {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #2b8ecd;
  padding: 10px 25px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.upcoming-events .btn-events:hover {
  color: #fff;
  background-color: #2b8ecd;
}
.upcoming-events .icon {
  font-size: 21px;
  color: #921d59;
  padding-right: 5px;
}

.filters-button-group {
  margin-bottom: 55px;
}
.filters-button-group button {
  margin: 0 15px;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 0 15px 0;
}
.filters-button-group .is-checked {
  color: #2b8ecd;
  border-bottom: 1px solid #2b8ecd;
}

@media only screen and (max-width: 1440px) {
  .completed-event .col-md-4 {
    width: 33.3333333333% !important;
  }
}
@media only screen and (min-width: 1450px) {
  .completed-event .col-md-4 {
    width: 25% !important;
  }
}
.completed-event .completed-event-item {
  margin-bottom: 80px;
}
.completed-event .completed-event-item figure img {
  width: 100%;
}
.completed-event .completed-event-item .event-desc {
  padding-top: 40px;
}
.completed-event .completed-event-item .event-desc .heading {
  font-family: "opensansregular";
  font-size: 18px;
  text-transform: uppercase;
}
.completed-event .completed-event-item .event-desc .location {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #2b8ecd;
  padding-bottom: 30px;
}
.completed-event .completed-event-item .event-desc .desc {
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 24px;
  height: 120px;
}
.completed-event .completed-event-item .read-more {
  margin-top: 40px;
}
.completed-event .completed-event-item .read-more .event-btn {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #2b8ecd;
  padding: 10px 25px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.completed-event .completed-event-item .read-more .event-btn:hover {
  color: #fff;
  background-color: #2b8ecd;
}

.completed-event-filer .tab-content {
  display: block;
  padding: 0;
  text-align: left;
}
.completed-event-filer .nav-tabs > li.active > a,
.completed-event-filer .nav-tabs > li.active > a:focus,
.completed-event-filer .nav-tabs > li.active > a:hover,
.completed-event-filer .nav-tabs,
.completed-event-filer .nav-tabs > li > a {
  border: none;
}
.completed-event-filer .nav-tabs > li > a:hover {
  background: none;
}
.completed-event-filer .nav-tabs li:first-child {
  position: relative;
  display: block;
  padding: 8px 0;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #424242;
}

.nav > li {
  margin: 0 15px;
  font-weight: 600;
}

.nav > li > a {
  padding: 10px 0;
  color: #424242;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-tabs > li.active {
  color: #2b8ecd;
  border-bottom: 1px solid #2b8ecd;
}

.nav-tabs > li.active > a {
  color: #2b8ecd;
}
.nav-tabs > li.active > a:hover {
  color: #2b8ecd;
}
.nav-tabs > li.active > a:focus {
  color: #2b8ecd;
}

.completed-event-desc {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.03em;
}

.health-centers .health-intro h1 {
  font-size: 24px;
  color: #2b8ecd;
  margin: 0;
}
@media only screen and (max-width: 576px) {
  .health-centers .health-intro h1 {
    font-size: 21px;
  }
}
.health-centers .health-intro p {
  padding: 30px 0 25px 0;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 28px;
}

@media only screen and (max-width: 320px) {
  .health-centers {
    margin-top: -40px;
  }
}
.health-centers .health-packages {
  margin: 0;
  padding: 25px 0;
}
@media only screen and (max-width: 576px) {
  .health-centers .health-packages {
    padding: 15px;
  }
}
.health-centers .health-packages h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  padding-right: 15px;
  color: #212121;
}
@media only screen and (max-width: 576px) {
  .health-centers .health-packages h2 {
    font-size: 18px;
  }
}
.health-centers .health-packages p {
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 26px;
  padding: 15px 30px 30px 0;
}
@media only screen and (max-width: 576px) {
  .health-centers .health-packages p {
    padding-right: 0;
  }
}
.health-centers .health-packages .health-btns a {
  float: left;
  border-radius: 25px;
  min-width: 145px;
  background: #13618c;
  border: 1px solid transparent;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  padding: 10px 30px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  cursor: pointer;
}
@media only screen and (max-width: 360px) {
  .health-centers .health-packages .health-btns a {
    width: 100%;
    margin-bottom: 30px;
  }
}
.health-centers .health-packages .health-btns a:focus {
  outline: none;
}
.health-centers .health-packages .health-btns a:hover {
  color: #13618c;
  background: #fff;
  border: 1px solid #2b8ecd;
}
.health-centers .health-packages .health-btns a:last-child {
  background: #fff;
  color: #2b8ecd;
  border: 1px solid #2b8ecd;
  margin-left: 30px;
}
@media only screen and (max-width: 360px) {
  .health-centers .health-packages .health-btns a:last-child {
    margin-left: 0;
  }
}
.health-centers .health-packages .health-btns a:last-child:hover {
  background: #2b8ecd;
  color: #fff;
}
.health-centers .health-packages button {
  float: left;
  border-radius: 25px;
  min-width: 145px;
  background: #2b8ecd;
  border: 1px solid transparent;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
}
.health-centers .health-packages button:focus {
  outline: none;
}
.health-centers .health-packages button:hover {
  color: #2b8ecd;
  background: #fff;
  border: 1px solid #2b8ecd;
}
.health-centers .health-packages button:last-child {
  background: #fff;
  color: #2b8ecd;
  border: 1px solid #2b8ecd;
  margin-left: 30px;
}
.health-centers .health-packages button:last-child:hover {
  background: #2b8ecd;
  color: #fff;
}

.health-packages:nth-last-child(2):before {
  width: 90%;
  border-top: solid 1px #c4c4c4;
  content: "";
  display: block;
  padding: 25px 0;
}
@media only screen and (max-width: 768px) {
  .health-packages:nth-last-child(2):before {
    display: none;
  }
}

.health-packages:nth-last-child(1):before {
  width: 90%;
  border-top: solid 1px #c4c4c4;
  content: "";
  display: block;
  padding: 25px 0;
}
@media only screen and (max-width: 768px) {
  .health-packages:nth-last-child(1):before {
    display: none;
  }
}

.booking-form {
  padding: 25px;
  background: #ddebf9;
}
@media only screen and (max-width: 1024px) {
  .booking-form {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 567px) {
  .booking-form {
    padding-bottom: 20px !important;
  }
}
@media only screen and (max-width: 567px) {
  .booking-form #bookbtn {
    margin-right: 25px !important;
  }
}
.booking-form .booking-intro {
  text-align: center;
}
@media only screen and (max-width: 567px) {
  .booking-form .booking-intro {
    width: 90%;
    margin: 0 auto;
  }
}
.booking-form .booking-intro h1 {
  font-size: 22px;
  color: #2b8ecd;
  padding: 15px 0;
  margin: 0;
}
@media only screen and (max-width: 567px) {
  .booking-form .booking-intro h1 {
    padding-bottom: 10px;
    font-size: 21px;
  }
}
.booking-form .booking-intro small {
  font-size: 14px;
  line-height: 26px;
  padding: 10px 15px 0 0;
  color: #212121;
}
.booking-form .invalid p {
  padding-bottom: 0;
}
.booking-form .invalid .health-check-form {
  min-height: 75px;
}
.booking-form .invalid .health-check-form:nth-child(2) {
  max-height: 63px;
  min-height: 63px;
}
.booking-form .invalid .health-check-form:nth-child(3) {
  max-height: 63px;
  min-height: 63px;
}
.booking-form .invalid .health-check-form.healthcheckselect {
  margin-bottom: 24px;
}
.booking-form .invalid .health-check-form input {
  margin: 0;
}
.booking-form .invalid .input-group-addon br {
  display: none;
}
.booking-form .wpcf7-not-valid-tip {
  padding-left: 20px;
}

.health-check-form {
  font-weight: 600;
}
@media only screen and (max-width: 567px) {
  .health-check-form {
    width: 90%;
    margin: 0 auto;
  }
}
.health-check-form .selectric {
  margin-top: 25px;
}
.health-check-form .selectric .label {
  text-align: left;
  font-weight: 600;
}
.health-check-form .selectric .button {
  color: #2b8ecd;
}
.health-check-form .selectric .button:after {
  background: #fff url(../img/booking-arrow.png) no-repeat scroll center center;
}
.health-check-form input {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 28px;
  color: #616161;
  height: 38px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  border: none;
  padding: 15px 20px;
  margin: 25px 0;
}
.health-check-form input:placeholder {
  font-weight: 900;
}
.health-check-form .input-group span {
  padding: 0;
}
.health-check-form .input-group .input-group-addon {
  background: transparent;
  border: none;
}
.health-check-form .input-group .input-group-addon br {
  display: none;
}
.health-check-form .input-group .input-group-addon input {
  color: #757575;
  height: 38px;
  width: 100%;
  font-weight: 600;
  padding: 15px 20px;
  margin: 0;
}
.health-check-form .input-group .input-group-addon input:focus {
  min-width: 350px !important;
}

div.wpcf7 .ajax-loader {
  position: relative;
  background-image: url(../images/form-loader.gif) !important;
  width: 74px !important;
  height: 74px !important;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 480px) {
  div.wpcf7 .ajax-loader {
    width: 54px !important;
    height: 54px !important;
  }
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: 1px solid #2b8ecd !important;
  margin: 6px auto;
  border: none !important;
  background: #13618c;
  color: #fff;
  text-align: center;
  position: absolute;
  left: auto;
}
@media only screen and (max-width: 1550px) {
  .wpcf7 form.invalid .wpcf7-response-output {
    margin: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.bootstrap-datetimepicker-widget table td.active {
  background-color: #2b8ecd !important;
  border: none;
}
.bootstrap-datetimepicker-widget button[data-action] {
  background-color: #2b8ecd !important;
  border: none;
}
.bootstrap-datetimepicker-widget table td span:hover {
  color: #2b8ecd !important;
}
.bootstrap-datetimepicker-widget table td.today:before {
  border-bottom-color: #2b8ecd !important;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  color: #2b8ecd !important;
}

#bookbtn {
  color: #2b8ecd;
  background: transparent;
  border: 1px solid #2b8ecd;
  text-transform: uppercase;
  line-height: 34px;
  border-radius: 25px;
  margin: 15px 0;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  float: right;
  padding: 0 40px;
  max-width: 200px;
  margin-bottom: 5px;
}

#bookbtn:hover {
  background: #2b8ecd;
  color: #fff;
}

.instructions-wrapper {
  padding: 45px;
  background: #f7f6f4;
  margin: 50px 0 0 0;
  z-index: -1;
}
@media only screen and (max-width: 576px) {
  .instructions-wrapper {
    padding: 20px 30px !important;
  }
}
.instructions-wrapper .instructions-heading h3 {
  font-size: 16px;
  line-height: 28px;
  color: #212121;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}
.instructions-wrapper .instructions-lists ul {
  list-style-image: url(../images/instruction-list.png);
  padding: 30px 15px 30px 0;
}
@media only screen and (max-width: 768px) {
  .instructions-wrapper .instructions-lists ul {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 576px) {
  .instructions-wrapper .instructions-lists ul {
    padding-right: 0;
  }
}
.instructions-wrapper .instructions-lists ul li {
  font-size: 14px;
  line-height: 25px;
  padding-bottom: 5px;
  color: #212121;
}
.instructions-wrapper #inst-note {
  padding: 20px 0;
  color: #212121;
}
.instructions-wrapper #inst-note p {
  font-size: 14px;
  line-height: 24px;
}
.instructions-wrapper #inst-note b {
  color: #2b8ecd;
}

#knowmore {
  position: relative;
}
#knowmore .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  padding: 60px 45px;
  background: #fff;
  min-width: 786px;
  min-height: 350px;
  border-radius: 0;
  display: table;
  /* This is important */
  overflow-y: auto;
}
#knowmore .modal-content .modal-header {
  border-bottom: none;
  padding: 0;
}
#knowmore .modal-content .modal-header .modal-title {
  font-size: 24px;
  color: #2b8ecd;
  text-transform: uppercase;
  border: none;
  padding-bottom: 5px;
}
@media only screen and (max-width: 576px) {
  #knowmore .modal-content .modal-header .modal-title {
    font-size: 21px;
  }
}
#knowmore .modal-content .modal-header .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 10px;
  background: #2b8ecd;
  opacity: 1;
  margin: -1px -1px 0 0;
  cursor: pointer;
  font-size: 30px;
  color: #fff;
  z-index: 9999999;
}
#knowmore .modal-content .modal-header p {
  font-size: 14px;
  line-height: 26px;
}
#knowmore .kmbtn-body {
  border: none;
  padding: 0;
}
#knowmore .kmbtn-body .package-lists .pac-list-wrapper ul {
  padding-top: 30px;
  list-style-image: url(../images/instruction-list.png);
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media only screen and (max-width: 567px) {
  #knowmore .kmbtn-body .package-lists .pac-list-wrapper ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
#knowmore .kmbtn-body .package-lists .pac-list-wrapper ul li {
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 5px;
}
#knowmore #package-details {
  padding: 0;
}
#knowmore .pac-fees-wrapper {
  margin-top: 10px;
  padding: 0;
}
#knowmore .pac-fees-wrapper .pac-price {
  min-width: 200px;
}
#knowmore .pac-fees-wrapper .pac-price h2 {
  font-size: 32px;
  line-height: 26px;
  color: #2b8ecd;
  padding: 20px;
  font-weight: bold;
  font-family: "opensansregular", sans-serif;
  border: 1px solid #2b8ecd;
  text-align: center;
  max-width: 250px;
  margin: 0 auto;
  margin-top: 30px;
}
@media only screen and (max-width: 576px) {
  #knowmore .pac-fees-wrapper .pac-price h2 {
    font-size: 21px;
    line-height: 6px;
  }
}
#knowmore .pac-fees-wrapper .sel-pac-btn {
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
}
#knowmore .pac-fees-wrapper .sel-pac-btn a {
  background: #2b8ecd;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  line-height: 3.5;
  border-radius: 25px;
  min-width: 200px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  width: 100%;
  max-width: 250px;
  border: 1px solid #2b8ecd;
  cursor: pointer;
}
#knowmore .pac-fees-wrapper .sel-pac-btn a:hover {
  background: #fff;
  color: #2b8ecd;
  border: 1px solid #2b8ecd;
}
#knowmore .modal-title {
  font-size: 24px;
  color: #2b8ecd;
  text-transform: uppercase;
  border: none;
  padding-bottom: 5px;
  padding-left: 0;
}
#knowmore .modal-header {
  padding-left: 0;
  border-bottom: none;
}

.blog-wrapper {
  padding-right: 100px;
  padding-bottom: 50px;
  border-right: 1px solid #ebebeb;
}
@media only screen and (max-width: 1024px) {
  .blog-wrapper {
    padding-right: 0;
  }
}
.blog-wrapper .blog-thumbnail {
  width: 100%;
  height: auto;
  text-align: center;
  padding-bottom: 20px;
}
.blog-wrapper img {
  width: 100%;
  height: auto;
}
.blog-wrapper .blog-title h1 {
  color: #2b8ecd;
  font-size: 24px;
  line-height: 36px;
  padding-bottom: 10px;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
  .blog-wrapper .blog-title h1 {
    font-size: 21px;
  }
}
.blog-wrapper .blog-author {
  display: grid;
  grid-template-columns: auto auto auto;
  font-size: 14px;
  line-height: 34px;
  color: #212121;
}
.blog-wrapper .blog-author a {
  color: #000;
  font-weight: 600;
}
.blog-wrapper .blog-author .fa {
  color: #d7d7d7;
  font-size: 18px;
  padding-right: 3px;
}
.blog-wrapper .blog-excerpt {
  padding: 15px 0;
}
.blog-wrapper .blog-excerpt p {
  font-size: 15px;
  line-height: 28px;
  color: #212121;
}
.blog-wrapper .blog-btns .readmore-btn {
  width: 300px;
  float: left;
}
@media only screen and (max-width: 576px) {
  .blog-wrapper .blog-btns .readmore-btn {
    width: 250px;
  }
}
@media only screen and (max-width: 375px) {
  .blog-wrapper .blog-btns .readmore-btn {
    width: 210px;
  }
}
.blog-wrapper .blog-btns .readmore-btn a {
  background: #2b8ecd;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  line-height: 3.5;
  border-radius: 25px;
  min-width: 260px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  border: 1px solid transparent;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .blog-wrapper .blog-btns .readmore-btn a {
    min-width: 210px;
  }
}
@media only screen and (max-width: 375px) {
  .blog-wrapper .blog-btns .readmore-btn a {
    width: 180px;
  }
}
.blog-wrapper .blog-btns .readmore-btn a:hover {
  background: #fff;
  color: #2b8ecd;
  border: 1px solid #2b8ecd;
}
.blog-wrapper .blog-btns .blog-share-btns {
  margin-top: 10px;
}
@media only screen and (max-width: 576px) {
  .blog-wrapper .blog-btns .blog-share-btns {
    text-align: right;
  }
}
.blog-wrapper .blog-btns .blog-share-btns .fa {
  color: #cacaca;
  font-size: 21px;
  padding: 15px 5px;
}
.blog-wrapper .blog-btns .blog-share-btns a .fa {
  color: #cacaca;
  font-size: 15px;
  padding: 15px 5px;
}

.blog-pagination {
  padding-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .blog-pagination {
    padding-top: 80px;
    /* padding-left: 30px;*/
  }
}
@media only screen and (max-width: 768px) {
  .blog-pagination {
    padding-bottom: 0;
  }
}
.blog-pagination span {
  border: 1px solid #2b8ecd;
  padding: 5px 10px;
  margin: 5px;
  font-weight: bold !important;
}
.blog-pagination a {
  color: #cacaca;
  border: 1px solid #cacaca;
  padding: 5px 10px;
  margin: 5px;
  font-size: 14px;
  line-height: 34px;
}

.blog-sidebar {
  padding-left: 28px;
}
@media only screen and (max-width: 1024px) {
  .blog-sidebar {
    padding-left: 0;
  }
}
.blog-sidebar .sidebarTitle h1 {
  font-size: 24px;
  line-height: 36px;
  color: #2b8ecd;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
  .blog-sidebar .sidebarTitle h1 {
    font-size: 21px;
  }
}
.blog-sidebar .latestPost {
  border-bottom: 1px solid #ebebeb;
}
.blog-sidebar .latestPost a .postThumbnail {
  padding: 25px 0;
}
.blog-sidebar .latestPost a img {
  margin-top: 20px;
}
.blog-sidebar .latestPost .postTitle {
  padding-top: 20px;
}
.blog-sidebar .latestPost .postTitle a h2 {
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0;
}
@media only screen and (max-width: 576px) {
  .blog-sidebar .latestPost .postTitle a h2 {
    font-size: 18px;
  }
}
.blog-sidebar .latestPost .latestPostExcerpt {
  padding: 25px 0;
}
.blog-sidebar .latestPost .latestPostExcerpt a {
  font-size: 15px;
  line-height: 28px;
  padding-bottom: 25px;
  text-align: justify;
  color: #000;
  margin-bottom: 25px;
}
.blog-sidebar .latestPost .postComments {
  padding-bottom: 30px;
}
.blog-sidebar .latestPost .postComments .fa {
  padding-right: 10px;
  color: #d7d7d7;
  font-size: 18px;
}
.blog-sidebar .latestPost .postComments span {
  padding-bottom: 30px;
  color: #000;
  font-weight: 600;
}
.blog-sidebar .recentComments {
  padding-top: 30px;
}
.blog-sidebar .recentComments .commentsWrapper .commentTitle {
  margin-top: 30px;
}
.blog-sidebar .recentComments .commentsWrapper .commentTitle h1 {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 0;
}
@media only screen and (max-width: 576px) {
  .blog-sidebar .recentComments .commentsWrapper .commentTitle h1 {
    font-size: 18px;
  }
}
.blog-sidebar .recentComments .commentsWrapper .commentTitle h1 a {
  color: #000;
}
.blog-sidebar .recentComments .commentsWrapper .commentDetails {
  padding: 15px 0;
  font-size: 15px;
  line-height: 28px;
}
.blog-sidebar .recentComments .commentsWrapper .commentDate {
  padding-bottom: 20px;
  border-bottom: 1px dotted #ebebeb;
  font-size: 14px;
  font-weight: 600;
}
.blog-sidebar .recentComments .commentsWrapper .commentDate:last-child {
  border-bottom: 1px solid #ebebeb;
}
.blog-sidebar .recentComments .commentsWrapper .commentDate .fa {
  color: #d7d7d7;
  padding-right: 10px;
  font-size: 18px;
}
.blog-sidebar .postTags {
  padding: 30px 0;
}
.blog-sidebar .postTags .tagsWrapper {
  padding-top: 25px;
}
.blog-sidebar .postTags .tagsWrapper a {
  color: #000;
  background: #f5f5f5;
  float: left;
  margin: 0 10px 10px 0;
  padding: 3px 20px;
  line-height: 34px;
  text-transform: capitalize;
}

@media only screen and (max-width: 1024px) {
  .healthInfoHeader {
    height: 39vh;
  }
}
@media only screen and (max-width: 576px) {
  .healthInfoHeader {
    height: 30vh;
  }
}
.healthInfoHeader .page-header {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .healthInfoHeader .page-header {
    margin-bottom: 0;
  }
}
.healthInfoHeader .page-header .caption {
  max-width: 500px;
}
@media only screen and (max-width: 576px) {
  .healthInfoHeader .page-header .caption {
    padding-right: 10%;
    min-width: 250px;
  }
}
@media only screen and (max-width: 375px) {
  .healthInfoHeader .page-header .caption {
    padding-right: 20%;
  }
}

.healthInfo {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .healthInfo {
    margin-bottom: 0;
  }
}
.healthInfo .healthInfo-publisher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.healthInfo .healthInfo-publisher div {
  padding: 0 80px 35px 0;
  font-size: 14px;
  font-weight: 600;
}
@media only screen and (max-width: 576px) {
  .healthInfo .healthInfo-publisher div {
    padding: 0 30px 0 0;
  }
}
@media only screen and (max-width: 375px) {
  .healthInfo .healthInfo-publisher div {
    padding: 0 17px 0 0;
    font-size: 12px;
  }
}
.healthInfo .healthInfo-publisher div .fa {
  color: #d7d7d7;
  font-size: 18px;
  padding-right: 3px;
}
@media only screen and (max-width: 576px) {
  .healthInfo .healthInfo-publisher div .fa {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .healthInfo .healthInfo-publisher div .fa {
    font-size: 12px;
  }
}
.healthInfo .healthInfo-content p {
  font-size: 15px;
  line-height: 28px;
  padding: 10px 0;
}
@media only screen and (max-width: 576px) {
  .healthInfo .healthInfo-content p {
    font-size: 14px;
    line-height: 28px;
  }
}
.healthInfo .healthInfo-content b {
  font-size: 15px;
  line-height: 28px;
}
@media only screen and (max-width: 576px) {
  .healthInfo .healthInfo-content b {
    font-size: 14px;
    line-height: 28px;
  }
}
.healthInfo .healthInfo-content ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  padding: 15px 0;
}
@media only screen and (max-width: 576px) {
  .healthInfo .healthInfo-content ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    padding-left: 20px;
  }
}
.healthInfo .healthInfo-content ul li {
  list-style-image: url(../img/instruction-list.png);
  font-size: 14px;
  line-height: 25px;
  padding: 5px 0;
  padding-right: 50px;
}
.healthInfo .healthInfo-share {
  padding: 10px 0;
}
.healthInfo .healthInfo-share .fa {
  color: #cacaca;
  font-size: 21px;
  padding: 15px 5px;
}
.healthInfo .healthInfo-share a .fa {
  font-size: 15px;
}
.healthInfo .healthInfo-authorDetails {
  font-size: 14px;
  line-height: 26px;
}
.healthInfo .healthInfo-authorDetails h1 {
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 0;
}
@media only screen and (max-width: 576px) {
  .healthInfo .healthInfo-authorDetails h1 {
    font-size: 18px;
    line-height: 28px;
  }
}
.healthInfo .healthInfo-authorDetails .authorName {
  text-transform: capitalize;
}
.healthInfo .healthInfo-authorDetails pre {
  background: transparent;
}
.healthInfo .healthInfo-preNext {
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
  padding: 30px 0;
}
.healthInfo .healthInfo-preNext .post-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.healthInfo .healthInfo-preNext .post-block .preNext-img {
  width: 200px;
  padding: 0 15px;
}
.healthInfo .healthInfo-preNext .post-block .preNext-img img {
  width: 100%;
  min-height: 150px;
  min-width: 150px;
}
.healthInfo .healthInfo-preNext .post-block .previous {
  margin-right: 30px;
}
.healthInfo .healthInfo-preNext .post-block .previous img {
  width: 60px;
}
.healthInfo .healthInfo-preNext .post-block .next {
  margin-left: 30px;
}
.healthInfo .healthInfo-preNext .post-block img {
  width: 60px;
}
.healthInfo .healthInfo-preNext .preNext-details {
  padding: 30px 0;
}
.healthInfo .healthInfo-preNext .preNext-details h1 {
  line-height: 0;
  margin-bottom: 0;
}
.healthInfo .healthInfo-preNext .preNext-details h1 a {
  color: #000;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
}
.healthInfo .healthInfo-preNext .next-block {
  text-align: right;
  padding-right: 20px;
}
.healthInfo .healthInfo-comment h2 {
  font-size: 24px;
  line-height: 36px;
  color: #2b8ecd;
  margin-bottom: 0;
}
.healthInfo .comment-form {
  padding: 50px;
  background: #ddebf9;
}
.healthInfo .comment-form h1 {
  font-size: 24px;
  line-height: 36px;
  color: #2b8ecd;
  margin-bottom: 0;
}
.healthInfo .comment-form .comment-before {
  padding: 30px 0;
  font-size: 15px;
  line-height: 28px;
}
.healthInfo .comment-form form {
  padding: 0;
}
@media only screen and (max-width: 576px) {
  .healthInfo .comment-form form {
    /*padding: 50px;*/
  }
}
.healthInfo .comment-form form .comment-notes {
  padding: 30px 0;
  font-size: 15px;
  line-height: 28px;
}
.healthInfo .comment-form form textarea {
  width: 100%;
  border: none;
  background: #fff;
  padding: 8px 16px;
  max-width: 100%;
}
.healthInfo .comment-form form .comments-inputs {
  display: grid;
  grid-template-columns: auto auto auto;
}
@media only screen and (max-width: 576px) {
  .healthInfo .comment-form form .comments-inputs {
    display: inherit;
  }
}
.healthInfo .comment-form form .comments-inputs p {
  margin-right: 30px;
}
@media only screen and (max-width: 576px) {
  .healthInfo .comment-form form .comments-inputs p {
    margin-right: 0;
  }
}
.healthInfo .comment-form form .comments-inputs p:last-child {
  margin-right: 0;
}
.healthInfo .comment-form form .comments-inputs input {
  border: none;
  background: #fff;
  width: 100%;
  padding: 8px 16px;
  margin: 40px 0;
}
@media only screen and (max-width: 576px) {
  .healthInfo .comment-form form .comments-inputs input {
    margin: 20px 0;
  }
}
.healthInfo .comment-form form .form-submit {
  padding-bottom: 60px;
}
@media only screen and (max-width: 576px) {
  .healthInfo .comment-form form .form-submit {
    margin-top: 30px;
  }
}
.healthInfo .comment-form form .form-submit input {
  background: #fff;
  color: #2b8ecd;
  text-transform: uppercase;
  line-height: 3.5;
  border-radius: 25px;
  padding: 0 30px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  float: right;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #2b8ecd;
}
.healthInfo .comment-form form .form-submit input:hover {
  background: #2b8ecd;
  color: #fff;
  border: 1px solid #2b8ecd;
}
.healthInfo .comment-form .notlogged {
  margin: 30px 0;
}
.healthInfo .comment-list {
  padding: 0 50px 20px;
}
.healthInfo .comment-list .comments {
  padding: 0;
}
.healthInfo .comment-list .comments li {
  list-style: none;
}
.healthInfo .comment-list .comments li .children {
  padding-left: 50px;
  margin-left: 50px;
}
.healthInfo .comment-list .comments li .comment-body {
  padding: 30px;
}
.healthInfo .comment-list .comments li .comment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  text-transform: uppercase;
}
.healthInfo .comment-list .comments li .comment-author img {
  border-radius: 50%;
  margin-right: 30px;
  margin-bottom: 20px;
}
.healthInfo .comment-list .comments li .comment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.healthInfo .comment-list .comments li .comment-wrap .avatar {
  margin-right: 20px;
}
.healthInfo .comment-list .comments li .comment-wrap .avatar img {
  border: 5px solid white;
  -webkit-box-shadow: 0px 15px 10px 0px #f4e8ee;
          box-shadow: 0px 15px 10px 0px #f4e8ee;
  border-radius: 50%;
  width: 80px;
}
.healthInfo .comment-list .comments li .comment-wrap .comment-block {
  padding: 30px 0;
  width: 100%;
  position: relative;
}
.healthInfo .comment-list .comments li .comment-wrap .comment-block:after {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  width: 88%;
  background: #c4c4c4;
  bottom: 0;
}
.healthInfo .comment-list .comments li .comment-wrap .comment-block .commenter h1 {
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 0;
}
.healthInfo .comment-list .comments li .comment-wrap .comment-block .text {
  font-size: 15px;
  line-height: 28px;
}
.healthInfo .comment-list .comments li .comment-wrap .comment-block .text p {
  padding: 10px 0;
}
.healthInfo .comment-list .comments li .comment-wrap .comment-block .date {
  font-weight: 600;
  color: #212121;
  font-size: 12px;
  line-height: 34px;
}
.healthInfo .comment-list .comments li .comment-wrap .comment-block .date .fa {
  color: #d7d7d7;
  font-size: 18px;
  padding-right: 5px;
}
.healthInfo .comment-list .comments li .comment-wrap .comment-block .reply {
  text-transform: uppercase;
  font-weight: 600;
}
.healthInfo .comment-list .comments li .comment-wrap .comment-block .reply a {
  color: #212121;
  position: absolute;
  right: 13%;
}

.healthInfo .comment-list .comments li .comment-wrap .comment-block:last-child:after {
  border-bottom: 1px solid transparent;
}

/* carousel */
.health-silde-wrap {
  min-height: 200px;
  padding: 50px 50px 0px 50px;
  margin: 50px 0;
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
}
@media only screen and (max-width: 576px) {
  .health-silde-wrap {
    min-height: 190px;
    padding: 40px 50px 0px 50px !important;
  }
}
.health-silde-wrap .health-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 576px) {
  .health-silde-wrap .health-slide {
    padding: 0;
  }
}
.health-silde-wrap .health-slide .info-thumbanail {
  width: 200px;
  height: 100px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-right: 30px;
}
@media only screen and (max-width: 576px) {
  .health-silde-wrap .health-slide .info-thumbanail {
    display: none;
  }
}
.health-silde-wrap .health-slide .healthinfo-title h1 {
  color: #ec0d80;
  font-size: 18px;
  line-height: 26px;
  padding-bottom: 10px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #212121;
}
@media only screen and (max-width: 576px) {
  .health-silde-wrap .health-slide .healthinfo-title h1 {
    font-size: 16px;
    line-height: 21px;
  }
}
.health-silde-wrap .owl-theme .owl-nav .owl-prev {
  position: absolute;
  left: -5%;
  top: 30%;
  background: transparent;
}
@media only screen and (max-width: 768px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-prev {
    left: -10%;
  }
}
@media only screen and (max-width: 576px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-prev {
    top: 40%;
    left: -15%;
  }
}
@media only screen and (max-width: 375px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-prev {
    top: 30%;
    /*left: -10%;*/
  }
}
@media only screen and (max-width: 320px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-prev {
    left: -30%;
  }
}
@media only screen and (max-width: 576px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-prev img {
    width: 60%;
  }
}
.health-silde-wrap .owl-theme .owl-nav .owl-next {
  position: absolute;
  right: -5%;
  top: 30%;
  background-color: transparent;
}
@media only screen and (max-width: 768px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-next {
    right: -10%;
  }
}
@media only screen and (max-width: 576px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-next {
    top: 40%;
    right: -15%;
  }
}
@media only screen and (max-width: 375px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-next {
    top: 30%;
    /*right: -10%;*/
  }
}
@media only screen and (max-width: 320px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-next {
    right: -30%;
  }
}
@media only screen and (max-width: 576px) {
  .health-silde-wrap .owl-theme .owl-nav .owl-next img {
    width: 60%;
  }
}
.health-silde-wrap a {
  cursor: pointer;
}

.event-wrapper {
  background: #f7f6f4;
  margin-top: 40px;
  padding: 60px 0 20px;
}
.event-wrapper h2 {
  color: #13618c;
}
@media only screen and (max-width: 576px) {
  .event-wrapper h2 {
    font-size: 18px;
  }
}

.sapp-page {
  margin-bottom: -100px;
}
@media only screen and (max-width: 576px) {
  .sapp-page {
    padding: 0 !important;
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .sapp-page .col-md-9 {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .sapp-page .col-md-9 {
    padding-left: 0;
    padding-right: 0;
  }
}

.easy_app {
  font-family: "opensansregular" !important;
  margin-top: 200px;
}
@media only screen and (max-width: 576px) {
  .easy_app {
    margin-top: 40px;
  }
}
.easy_app .sapp-title {
  text-align: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 576px) {
  .easy_app .sapp-title {
    margin-bottom: 0;
  }
}
.easy_app .sapp-title h1 {
  font-size: 40px;
  font-family: "opensansbold";
  color: #2b8ecd;
}
@media only screen and (max-width: 576px) {
  .easy_app .sapp-title h1 {
    font-size: 21px;
  }
}
.easy_app .scalander-title {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  padding-bottom: 10px;
  font-family: "opensansregular", sans-serif;
}
.easy_app .eap30 {
  padding-left: 20px;
  font-size: 28px;
  color: #212121;
  position: relative;
}
@media only screen and (max-width: 576px) {
  .easy_app .eap30 {
    font-size: 18px;
    padding-left: 0;
  }
}
.easy_app .eap30:after {
  content: "";
  border: 1px solid #c2e5fc;
  position: absolute;
  width: 46.5%;
  left: 20px;
  bottom: -4px;
}
@media only screen and (max-width: 576px) {
  .easy_app .eap30:after {
    width: 100% !important;
    left: 0;
  }
}
.easy_app .ea-bootstrap a {
  color: #95bbe0;
}
.easy_app .ea-bootstrap:hover {
  color: #13618c;
}
.easy_app .ea-bootstrap .selected-time {
  background-color: #13618c !important;
  color: #fff;
}
@media only screen and (max-width: 576px) {
  .easy_app .ea-bootstrap .form-horizontal {
    margin-top: 10px;
  }
}
.easy_app .ea-bootstrap .well {
  background: #f9f9f9;
  border-radius: 0;
}
.easy_app .ea-bootstrap .well .time-value {
  border: none;
  outline: none;
  /* Just to fix the corner */
  -webkit-box-shadow: 1px 0 0 0 #d7d7d7, 0 1px 0 0 #d7d7d7, 1px 1px 0 0 #d7d7d7, 1px 0 0 0 #d7d7d7 inset, 0 1px 0 0 #d7d7d7 inset;
          box-shadow: 1px 0 0 0 #d7d7d7, 0 1px 0 0 #d7d7d7, 1px 1px 0 0 #d7d7d7, 1px 0 0 0 #d7d7d7 inset, 0 1px 0 0 #d7d7d7 inset;
}
.easy_app .ea-bootstrap .well .time-value:hover {
  background: #ddebf9;
}
.easy_app .ea-bootstrap .disabled .block {
  z-index: 5;
}
@media only screen and (max-width: 320px) {
  .easy_app .ea-bootstrap .disabled .block {
    width: 320px;
    left: -25px;
  }
}
.easy_app .ea-bootstrap small {
  display: none;
}
.easy_app .ea-bootstrap .control-label {
  display: none !important;
}
.easy_app .ea-bootstrap .col-sm-8 {
  width: 100%;
  padding: 5px;
}
@media only screen and (max-width: 576px) {
  .easy_app .ea-bootstrap label.error {
    position: absolute;
    top: -30px;
  }
}
.easy_app .ui-state-active {
  /*background: $pri-col-dark;*/
  color: #fff;
}
.easy_app .col-md-6 {
  padding: 20px;
}
@media only screen and (max-width: 576px) {
  .easy_app .col-md-6 {
    padding: 0;
  }
}
.easy_app .form-group {
  /*background: #f9f9f9;*/
  padding: 5px;
  color: #212121;
  width: 100%;
  margin-left: 0px !important;
  border: 1px solid #d7d7d7;
  background: #f9f9f9;
  padding: 0;
}
.easy_app .form-group:not(:last-child) {
  margin-bottom: 35px !important;
}
@media only screen and (max-width: 576px) {
  .easy_app .form-group:not(:last-child) {
    margin-bottom: 0 !important;
  }
}
.easy_app .form-group .control-label {
  text-align: left !important;
  font-family: "opensansregular";
  color: #616161;
}
.easy_app .form-group .selectric {
  padding: 8px;
  background: #f9f9f9;
}
.easy_app .form-group .selectric .button {
  background: #f9f9f9;
}
.easy_app .form-group .selectric .button:after {
  background: #f9f9f9 url(../img/ep-select.png) no-repeat scroll center center;
}
.easy_app .form-group .selectric .label {
  color: #212121;
  font-family: "opensansregular";
  font-size: 100%;
  padding: 0;
  font-size: 14px;
}
.easy_app .form-group li {
  background: #ddebf9;
}
.easy_app .form-group li:hover {
  background-color: #13618c;
  color: #fff;
}
.easy_app .ui-datepicker {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #d7d7d7;
}
.easy_app .ui-datepicker-calendar {
  font-family: "opensansregular" !important;
}
.easy_app .ui-datepicker-calendar td {
  border-radius: 0;
}
.easy_app .ui-datepicker-calendar td:hover {
  background: #ddebf9 !important;
}
.easy_app .ui-datepicker-calendar a {
  color: #2b8ecd;
}
.easy_app .ui-datepicker-calendar .ui-datepicker-current-day {
  background: #13618c;
  border-radius: 0;
}
.easy_app .ea-bootstrap .ui-datepicker .no-slots {
  background: #ddebf9;
}
.easy_app .ea-bootstrap .ui-datepicker .no-slots:hover {
  background: #2b8ecd;
}
.easy_app .final {
  top: -95px;
  padding: 0;
  font-family: "opensansregular" !important;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .easy_app .final {
    top: 0;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 567px) {
  .easy_app .final {
    padding: 0;
  }
}
.easy_app .final .col-sm-8 {
  width: 100%;
  padding: 0;
}
.easy_app .final h3 {
  position: relative;
  font-size: 28px;
  color: #212121;
  margin-bottom: 35px;
}
@media only screen and (max-width: 567px) {
  .easy_app .final h3 {
    font-size: 18px;
    margin-top: 40px;
  }
}
.easy_app .final h3:before {
  content: "";
  border: 1px solid #c2e5fc;
  position: absolute;
  bottom: -15px;
  width: 100%;
}
.easy_app .final .form-group {
  border: none;
  background: white;
}
.easy_app .final .form-group #eayn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-top: 10px;
  background: white;
  /* hide input */
}
@media only screen and (max-width: 620px) {
  .easy_app .final .form-group #eayn p {
    font-size: 12px;
  }
}
.easy_app .final .form-group #eayn input[type=radio] {
  margin: 0;
  margin-left: 133px;
  position: relative;
  outline: none;
}
@media only screen and (max-width: 1440px) {
  .easy_app .final .form-group #eayn input[type=radio] {
    margin-left: 63px;
  }
}
@media only screen and (max-width: 360px) {
  .easy_app .final .form-group #eayn input[type=radio] {
    margin-left: 30px !important;
  }
}
@media only screen and (max-width: 320px) {
  .easy_app .final .form-group #eayn input[type=radio] {
    margin-left: 10px !important;
  }
}
.easy_app .final .form-group #eayn input[type=radio]:checked {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: transparent;
  outline: none;
}
.easy_app .final .form-group #eayn input[type=radio]:checked:focus {
  outline: none;
}
.easy_app .final .form-group #eayn input[type=radio]:checked:before {
  content: "";
  display: block;
  position: relative;
  padding: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2b8ecd;
  top: 4px;
  left: 4px;
}
.easy_app .final .form-group #eayn input[type=radio]:checked:after {
  content: "";
  background: white;
}
.easy_app .final .form-group #eayn input[type=radio]:not(:checked) {
  position: relative;
  top: 0px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d7d7d7;
}
.easy_app .final .form-group #eayn label {
  padding-left: 15px;
}
@media only screen and (max-width: 576px) {
  .easy_app .final .form-group #eayn label {
    padding-left: 5px;
  }
}
.easy_app .final .control-label {
  display: none;
}
.easy_app .final input {
  border: 1px solid #d7d7d7;
  padding: 20px 22px;
  border-radius: 0;
}
.easy_app .final input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.easy_app .final input .custom-field {
  border: 1px solid #d7d7d7;
}
.easy_app .final .selectric-custom-field {
  border: 1px solid #d7d7d7;
  background: #f9f9f9;
  border-radius: 0;
  display: none;
}
.easy_app .final #booking-overview-header {
  margin-bottom: 20px;
  font-family: "opensansregular" !important;
}
@media only screen and (max-width: 576px) {
  .easy_app .final #booking-overview-header {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 320px) {
  .easy_app .final #booking-overview-header {
    margin-bottom: 10px;
  }
}
.easy_app .final #booking-overview-header:after {
  display: block;
  white-space: pre;
  content: "Please check your appointment details below and confirm:";
  font-size: 12px;
  line-height: 28px;
  font-family: "opensansregular";
  color: #212121;
  font-weight: 600;
}
@media only screen and (max-width: 576px) {
  .easy_app .final #booking-overview-header:after {
    padding-top: 20px;
    white-space: pre-wrap;
  }
}
.easy_app .final #booking-overview-header:before {
  content: "";
  border: 1px solid #c2e5fc;
  position: absolute;
  bottom: -10px;
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .easy_app .final #booking-overview-header:before {
    width: 325px !important;
  }
}
@media only screen and (max-width: 360px) {
  .easy_app .final #booking-overview-header:before {
    width: auto !important;
  }
}
.easy_app .final #booking-overview {
  min-height: 90px;
  margin-top: -30px;
}
.easy_app .final #booking-overview .ea-label {
  color: #616161;
}
@media only screen and (max-width: 576px) {
  .easy_app .final #booking-overview small {
    margin: 20px 0;
  }
}
@media only screen and (max-width: 576px) {
  .easy_app .final #booking-overview small h3 {
    margin-top: 0;
  }
}
.easy_app .final #booking-overview table {
  border: 1px solid #d7d7d7;
  color: #212121;
  border-collapse: separate;
  padding: 30px;
  margin-bottom: 20px;
  font-family: "opensansregular" !important;
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .easy_app .final #booking-overview table {
    position: relative;
    left: -2px;
    padding: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .easy_app .final #booking-overview table {
    left: -17px;
  }
}
@media only screen and (max-width: 360px) {
  .easy_app .final #booking-overview table {
    left: -20px;
    padding: 5px;
  }
}
@media only screen and (max-width: 320px) {
  .easy_app .final #booking-overview table {
    left: -10px;
  }
}
@media only screen and (max-width: 576px) {
  .easy_app .final #booking-overview table tbody tr {
    display: block;
  }
}
@media only screen and (max-width: 320px) {
  .easy_app .final #booking-overview table tbody tr td {
    display: block;
  }
}
.easy_app .final #booking-overview table .value {
  font-weight: 500;
  font-family: "opensanssemibold";
}
.easy_app .final #booking-overview table .ea-label::first-word {
  color: red;
}
.easy_app .final .ea-actions-group {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
  border: none;
  position: relative;
  bottom: 0;
  background: white;
  left: -26px;
}
@media only screen and (max-width: 375px) {
  .easy_app .final .ea-actions-group {
    left: -35px;
  }
}
@media only screen and (max-width: 360px) {
  .easy_app .final .ea-actions-group {
    left: -40px;
  }
}
.easy_app .final .ea-actions-group .ea-submit {
  float: left;
  border-radius: 25px;
  min-width: 180px;
  background: #13618c;
  border: 1px solid transparent;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  padding: 10px 30px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  cursor: pointer;
  position: absolute;
  left: 230px;
}
@media only screen and (max-width: 576px) {
  .easy_app .final .ea-actions-group .ea-submit {
    /* left: 200px;*/
    min-width: 160px;
  }
}
@media only screen and (max-width: 375px) {
  .easy_app .final .ea-actions-group .ea-submit {
    left: 220px;
    min-width: 130px;
  }
}
@media only screen and (max-width: 320px) {
  .easy_app .final .ea-actions-group .ea-submit {
    left: 180px;
    min-width: 130px;
  }
}
.easy_app .final .ea-actions-group .ea-submit:hover {
  color: #13618c;
  background: #fff;
  border: 1px solid #2b8ecd;
}
.easy_app .final .ea-actions-group .ea-cancel {
  float: left;
  border-radius: 25px;
  min-width: 180px;
  background: #fff;
  border: 1px solid #13618c;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  padding: 10px 30px;
  text-align: center;
  color: #13618c;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .easy_app .final .ea-actions-group .ea-cancel {
    min-width: 160px;
    margin-left: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .easy_app .final .ea-actions-group .ea-cancel {
    min-width: 130px;
  }
}
.easy_app .final .ea-actions-group .ea-cancel:hover {
  color: #fff;
  background: #13618c;
  border: 1px solid #fff;
}
.easy_app .gdpr {
  position: relative;
  left: 17px;
}
@media only screen and (max-width: 576px) {
  .easy_app .gdpr {
    padding-left: 10px !important;
  }
}
.easy_app .gdpr input[type=checkbox] {
  position: absolute !important;
  top: -2px;
  left: 0;
  border: 1px solid transparent;
  outline: none;
}
.easy_app .gdpr input[type=checkbox]:focus {
  outline: none;
}
.easy_app .gdpr input[type=checkbox]:before {
  border: 2px solid #d7d7d7;
  content: "";
  background: #FFF;
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}
.easy_app .gdpr input[type=checkbox]:checked:before {
  background-image: url("../img/icon-tick1.png");
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  border: 0px solid transparent;
}
.easy_app .g-recaptcha {
  padding: 0 0 40px 0 !important;
  margin-top: -20px;
}
@media only screen and (max-width: 576px) {
  .easy_app .g-recaptcha {
    padding-left: 40px !important;
    margin-top: 0;
  }
}
@media only screen and (max-width: 375px) {
  .easy_app .g-recaptcha {
    padding-left: 15px !important;
  }
}
@media only screen and (max-width: 360px) {
  .easy_app .g-recaptcha {
    padding-left: 10px !important;
  }
}
@media only screen and (max-width: 320px) {
  .easy_app .g-recaptcha {
    padding-left: 0px !important;
    position: relative;
    left: -10px;
  }
}
@media only screen and (max-width: 576px) {
  .easy_app .step.form-group {
    margin-bottom: 35px !important;
  }
}
@media only screen and (max-width: 576px) {
  .easy_app .step.final input {
    margin-bottom: 35px !important;
  }
}
@media only screen and (max-width: 576px) {
  .easy_app .step .checkbox {
    margin-bottom: 35px !important;
  }
}
@media only screen and (max-width: 576px) {
  .easy_app .step .ea-phone-field-group input {
    margin-bottom: 0px !important;
  }
}

/*Modeal Popup Css*/
.ea-modal .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}
@media only screen and (max-width: 576px) {
  .ea-modal .modal-dialog {
    width: 100%;
    margin: 0;
  }
}
.ea-modal .modal-dialog .modal-content {
  padding: 20px;
}
.ea-modal .modal-dialog .modal-content .modal-header {
  border-bottom: 1px solid transparent;
}
.ea-modal .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 10px;
  background: #2b8ecd;
  opacity: 1;
  margin: -1px -1px 0 0;
  cursor: pointer;
  font-size: 30px;
  color: #fff;
  z-index: 9999999;
}
.ea-modal .modal-dialog .modal-content .modal-body h1 {
  font-size: 46px;
  line-height: 32px;
  text-transform: capitalize;
  text-align: center;
}
.ea-modal .modal-dialog .modal-content .modal-body h1 span {
  font-size: 21px;
  line-height: 32px;
  text-align: center;
  margin-top: 40px;
  text-transform: none;
}
.ea-modal .modal-dialog .modal-content .modal-footer {
  border-top: 1px solid transparent;
}
.ea-modal .modal-dialog .modal-content .modal-footer button {
  background: #2b8ecd;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  line-height: 2;
  border-radius: 25px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  width: 100%;
  max-width: 140px;
  border: 1px solid #2b8ecd;
  cursor: pointer;
}
.ea-modal .modal-dialog .modal-content .modal-footer button:hover {
  background: #fff;
  color: #2b8ecd;
  border: 1px solid #2b8ecd;
}

/*Job Openings*/
@media only screen and (max-width: 320px) {
  .s-job {
    margin-top: -40px;
  }
}
.s-job .s-job-explore h1 {
  display: block;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
  font-size: 48px;
  color: #2b8ecd;
  text-align: center;
}
.s-job .s-job-explore p {
  font-size: 16px;
  line-height: 34px;
  text-align: center;
}
.s-job .s-job-explore p:last-child {
  margin-top: 40px;
}
@media only screen and (max-width: 1440px) {
  .s-job .s-job-explore p:last-child {
    margin-top: 10px;
  }
}
.s-job .s-job-explore a:hover {
  color: #2b8ecd;
  text-decoration: underline !important;
}
.s-job .awsm-job-archive-content {
  margin-top: 80px;
}
@media only screen and (max-width: 1440px) {
  .s-job .awsm-job-archive-content {
    margin-top: 20px;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container {
  padding: 0;
  padding-bottom: 0px;
  max-width: 1360px;
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container {
    padding-bottom: 0 !important;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-row {
  margin: 0px;
}
@media only screen and (max-width: 1024px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-row {
    margin: 0 !important;
    padding: 0;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap {
  width: 100%;
  text-align: center;
  margin-top: 55px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1440px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap {
    margin-bottom: 45px;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 567px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap {
    margin: 20px 0;
    margin-bottom: 30px;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item {
  min-width: 300px;
  margin-right: 10px;
  padding-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item {
    min-width: 230px;
  }
}
@media only screen and (max-width: 768px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item {
    min-width: 180px;
  }
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item {
    min-width: auto;
    width: 100%;
    margin: 5px 0;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item:nth-child(3) {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item:nth-child(3) {
    margin-top: 5px;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-filter-item-search {
  min-width: 450px !important;
  padding-left: 0;
}
@media only screen and (max-width: 1024px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-filter-item-search {
    min-width: 290px !important;
  }
}
@media only screen and (max-width: 768px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-filter-item-search {
    min-width: 180px !important;
  }
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-filter-item-search {
    min-width: auto !important;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-filter-item-search input {
  padding: 0 25px;
  border: 1px solid #d7d7d7;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-selectric {
  border: 1px solid #d7d7d7;
  padding: 0 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-selectric .awsm-selectric-arrow-drop {
  display: none;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-selectric .label {
  font-size: 14px;
  font-family: "opensanssemibold";
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-selectric .label:after {
  content: "";
  position: absolute;
  top: 3px;
  right: -80%;
  bottom: 0;
  left: 0px;
  margin: auto;
  width: 12px;
  height: 7px;
  border-bottom: none;
  background: #fff url(../img/select-bg.jpg) no-repeat scroll center center;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-selectric-items {
  text-align: left;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-selectric-items li.highlighted {
  background: #ddebf9;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-selectric-items li {
  font-size: 14px;
  font-family: "opensanssemibold";
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-filter-wrap .awsm-filter-item .awsm-selectric-items li:hover {
  background: #61baf3;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-jobs-archive-title {
  display: none;
}
@media only screen and (max-width: 768px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-grid-item {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-grid-item {
    padding: 0 !important;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item {
  min-height: 300px;
  margin-bottom: 40px;
  padding: 40px;
  border: none;
  -webkit-box-shadow: 1px 1px 16px 0px rgba(193, 193, 193, 0.5);
          box-shadow: 1px 1px 16px 0px rgba(193, 193, 193, 0.5);
}
@media only screen and (max-width: 1440px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item {
    padding: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item {
    padding: 20px;
    min-height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item p {
  font-size: 14px;
  line-height: 24px;
  font-family: "opensansregular";
  margin: 45px 0 30px 0;
}
@media only screen and (max-width: 1440px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item p {
    margin: 35px 0 10px 0;
  }
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item p {
    margin: 20px 0;
    line-height: 21px;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-post-title {
  font-size: 22px;
  line-height: 32px;
  color: #2b8ecd;
  font-family: "opensansbold";
  margin: 0;
  text-transform: unset;
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-post-title {
    font-size: 18px;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item i {
  color: #13618c;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-specification-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-specification-wrapper {
    display: block;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-specification-wrapper .awsm-job-specification-item {
  color: #212121;
  font-family: "opensansbold";
  margin-top: 25px;
}
@media only screen and (max-width: 1440px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-specification-wrapper .awsm-job-specification-item {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-specification-wrapper .awsm-job-specification-item {
    margin-top: 15px;
  }
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-specification-wrapper .awsm-job-specification-item:first-child {
  margin-right: 16%;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-more {
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.04em;
  border: solid 1px #13618c;
  line-height: 2.5;
  font-size: 14px;
  padding: 0 45px;
  border-radius: 50px;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  color: #13618c;
  font-family: "opensansbold";
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-more span:before {
  display: none !important;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-job-item .awsm-job-more:hover {
  color: #fff;
  background-color: #13618c;
}
.s-job .awsm-job-archive-content .awsm-job-container .awsm-load-more-main a {
  text-transform: uppercase;
  font-family: "opensansbold";
  -webkit-box-shadow: 1px 1px 16px 0px rgba(193, 193, 193, 0.5);
          box-shadow: 1px 1px 16px 0px rgba(193, 193, 193, 0.5);
}
@media only screen and (max-width: 576px) {
  .s-job .awsm-job-archive-content .awsm-job-container .awsm-load-more-main a {
    padding: 10px;
  }
}

/*Job Detailed*/
.sjob-detailed {
  padding-top: 200px;
}
@media only screen and (max-width: 576px) {
  .sjob-detailed {
    padding-top: 150px;
  }
}
.sjob-detailed .awsm-jobs-single-title {
  font-size: 40px;
  color: #2b8ecd;
  text-transform: none;
}
.sjob-detailed .awsm-job-container {
  max-width: 100% !important;
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-container {
    padding: 10px 0;
  }
}
.sjob-detailed .awsm_job_spec_above_content {
  margin-bottom: 0;
}
.sjob-detailed .awsm-job-single-wrap {
  padding: 0;
  margin-bottom: 100px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .sjob-detailed .awsm-job-single-wrap {
    margin-bottom: 0;
  }
}
.sjob-detailed .awsm-job-single-wrap h1 {
  font-size: 36px;
  line-height: 46px;
  color: #2b8ecd;
  margin-bottom: 20px;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper {
    margin-bottom: 20px;
    display: block;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  font-size: 16px;
  font-family: "opensansbold";
  padding-bottom: 20px;
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item {
    padding-bottom: 10px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item i {
  color: #13618c;
  font-size: 14px;
  margin-right: 10px;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item i.awsm-job-icon-map-marker {
  font-size: 20px;
  margin-right: 16px;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item .awsm-job-specification-label {
  display: none;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item:first-child {
  display: none;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-top: 20px;
  font-family: "opensansregular" !important;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item:last-child i {
  display: none;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item:last-child .awsm-job-specification-label {
  display: block;
  font-size: 28px;
  color: #13618c;
  margin-bottom: 10px;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item:last-child .awsm-job-specification-label strong {
  font-weight: normal !important;
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item:last-child .awsm-job-specification-label {
    font-size: 21px;
    line-height: 26px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item:last-child .awsm-job-specification-term {
  color: #212121;
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-specification-wrapper .awsm-job-specification-item:last-child .awsm-job-specification-term {
    font-size: 14px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content h1 {
  text-transform: none;
  color: #13618c;
  font-size: 28px;
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content h1 {
    font-size: 21px;
    line-height: 26px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content p {
  font-size: 16px;
  color: #212121;
  line-height: 34px;
  margin-bottom: 40px;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content p:nth-child(2) {
  margin-bottom: 60px;
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content p:nth-child(2) {
    margin-bottom: 25px;
    padding-bottom: 0;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content ul {
  list-style-image: url(../img/circle.png);
  margin: 0px 0 70px;
  padding-left: 15px;
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content ul {
    margin-bottom: 30px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content ul li {
  font-size: 16px;
  line-height: 34px;
  color: #212121;
  padding-left: 10px;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-content {
  width: 60% !important;
  padding-right: 80px !important;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form {
  width: 40% !important;
  padding-left: 30px !important;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner {
  position: relative;
  padding: 50px 60px 130px 60px;
  color: #616161;
  -webkit-box-shadow: 1px 1px 30px 0px rgba(193, 193, 193, 0.5);
          box-shadow: 1px 1px 30px 0px rgba(193, 193, 193, 0.5);
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner {
    padding: 40px 30px 120px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner {
    padding: 60px 60px 100px 60px;
  }
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner {
    padding: 40px 20px 80px 20px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner h2 {
  font-size: 36px;
  color: #13618c;
  text-align: center;
  text-transform: inherit;
  margin: 0px 0 65px 0;
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner h2 {
    margin: 0px 0 35px 0;
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner h2 {
    font-size: 21px;
    margin-bottom: 35px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-form-group {
  margin-bottom: 0;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner label {
  margin-bottom: 0;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner small {
  font-style: italic;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input {
  border: 1px solid #d7d7d7;
  height: 40px;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input {
    margin-bottom: 35px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input::-webkit-input-placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input::-moz-placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input:-ms-input-placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input::-ms-input-placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input::placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner textarea {
  border: 1px solid #d7d7d7;
  padding: 10px 20px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner textarea {
    margin-bottom: 25px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner textarea::-moz-placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner textarea:-ms-input-placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner textarea::-ms-input-placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner textarea::placeholder {
  font-size: 14px;
  color: #616161;
  font-family: "opensansregular";
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input[type=file] {
  border: none;
  padding: 20px 0 35px 0;
  position: relative;
  margin: 25px 0 20px 0;
  color: transparent;
  /*&:after{
    content: 'Test';
  }*/
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input[type=file]:focus {
  outline: none;
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input[type=file] {
    margin: 15px 0 10px 0;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input[type=submit] {
  border-radius: 25px;
  min-width: 180px;
  background: #13618c;
  border: 1px solid transparent;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  cursor: pointer;
  float: right;
  font-family: "opensansbold";
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input[type=submit] {
    min-width: 160px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner input[type=submit]:hover {
  color: #13618c;
  background: #fff;
  border: 1px solid #13618c;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-form-file-control {
  color: transparent;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-form-file-control::-webkit-file-upload-button {
  visibility: hidden;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-form-file-control:before {
  content: "CHOOSE FILE";
  border-radius: 25px;
  min-width: 180px;
  background: #fff;
  border: 1px solid #13618c;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  padding: 10px 45px;
  text-align: center;
  color: #13618c;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  cursor: pointer;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
  font-family: "opensansbold";
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-form-file-control:before {
    padding: 10px 25px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-form-file-control:hover:before {
  color: white;
  background: #13618c;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-form-file-control:after {
  content: "No File Choosen";
  color: black;
  position: absolute;
  left: 45%;
  color: #616161;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-inline-group {
  position: relative;
  margin: 50px 0 40px 0;
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-inline-group {
    margin: 35px 0 40px 0;
  }
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-inline-group {
    margin: 20px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-inline-group input[type=checkbox] {
  position: absolute !important;
  top: -2px;
  left: 0;
  border: 1px solid transparent;
  padding-left: 0 !important;
  outline: none;
  height: 0;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-inline-group input[type=checkbox]:focus {
  outline: none;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-inline-group input[type=checkbox]:before {
  border: 2px solid #d7d7d7;
  content: "";
  background: #FFF;
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-inline-group input[type=checkbox]:checked:before {
  background-image: url("../img/icon-tick1.png");
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  border: 0px solid transparent;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-inline-group label {
  padding-left: 30px;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-job-inline-group label {
  display: block !important;
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-error-message {
  padding: 0px 0px 20px 0px;
  clear: both;
  margin-top: 40px !important;
  padding: 10px 20px !important;
  min-height: 45px;
  max-height: 45px;
  min-width: 81%;
  position: absolute;
  bottom: 20px;
  background: red;
}
@media only screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-error-message {
    min-width: 88%;
  }
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-error-message {
    position: relative;
    max-height: 65px;
  }
}
.sjob-detailed .awsm-job-single-wrap .awsm-job-form .awsm-job-form-inner .awsm-error-message p {
  color: #fff;
  text-align: center;
}

.for_doctors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1440px) {
  .for_doctors {
    padding: 0 45px;
  }
}
@media only screen and (max-width: 768px) {
  .for_doctors {
    display: block;
    /*margin-top: -70px;*/
    padding: 0;
  }
}
@media only screen and (max-width: 576px) {
  .for_doctors {
    margin-top: 0;
  }
}
.for_doctors h1 {
  font-size: 36px;
  line-height: 46px;
  color: #2b8ecd;
  margin-bottom: 20px;
  text-transform: unset;
}
@media only screen and (max-width: 1440px) {
  .for_doctors h1 {
    font-size: 32px;
    line-height: 42px;
  }
}
.for_doctors p {
  font-size: 16px;
  color: #212121;
  line-height: 34px;
}
@media only screen and (max-width: 1440px) {
  .for_doctors p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 576px) {
  .for_doctors p {
    line-height: 24px;
  }
}
.for_doctors_details {
  width: 60%;
  padding-right: 80px;
}
@media only screen and (max-width: 1440px) {
  .for_doctors_details {
    width: 55%;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .for_doctors_details {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 50px;
  }
}
.for_doctors_details .title-text {
  font-size: 22px;
  line-height: 32px;
  color: #2b8ecd;
  font-family: "opensansbold";
  margin: 0;
  text-transform: unset;
}
@media only screen and (max-width: 576px) {
  .for_doctors_details .title-text {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 10px;
  }
}
.for_doctors_details a:hover {
  color: #2b8ecd;
  text-decoration: underline !important;
}
.for_doctors_form {
  width: 40%;
  padding-left: 30px;
  padding: 40px 60px 40px 60px;
  color: #616161;
  -webkit-box-shadow: 1px 1px 30px 0px rgba(193, 193, 193, 0.5);
          box-shadow: 1px 1px 30px 0px rgba(193, 193, 193, 0.5);
  margin-left: 30px;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .for_doctors_form {
    width: 45%;
    padding: 40px 30px 40px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .for_doctors_form {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 576px) {
  .for_doctors_form {
    padding: 40px 20px 60px 20px;
    margin-bottom: 20px;
  }
}
.for_doctors_form h1 {
  text-align: center;
  margin-bottom: 65px;
}
@media only screen and (max-width: 1440px) {
  .for_doctors_form h1 {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 576px) {
  .for_doctors_form h1 {
    margin-bottom: 35px;
  }
}
.for_doctors_form_wrap form {
  color: #616161;
  /* .wpcf7 form.invalid {
      .wpcf7-response-output{

      }
  } */
}
.for_doctors_form_wrap form input {
  width: 100%;
  border: 1px solid #d7d7d7;
  height: 40px;
  margin-bottom: 40px;
  padding: 0 20px;
}
.for_doctors_form_wrap form input:focus-visible {
  border: 1px solid #2b8ecd !important;
}
@media only screen and (max-width: 1440px) {
  .for_doctors_form_wrap form input {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 576px) {
  .for_doctors_form_wrap form input {
    margin-bottom: 30px;
  }
}
.for_doctors_form_wrap form p {
  padding-bottom: 0;
}
.for_doctors_form_wrap form textarea {
  border: 1px solid #d7d7d7;
  padding: 10px 20px;
  margin-bottom: 40px;
  width: 100%;
  max-height: 137px;
}
.for_doctors_form_wrap form textarea:focus-visible {
  border: 1px solid #2b8ecd !important;
}
@media only screen and (max-width: 1440px) {
  .for_doctors_form_wrap form textarea {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .for_doctors_form_wrap form textarea {
    margin-bottom: 30px;
  }
}
.for_doctors_form_wrap form .wpcf7-not-valid-tip {
  position: absolute;
  width: 200px;
  top: 30px;
}
.for_doctors_form_wrap form .wpcf7-response-output {
  margin-top: 40px !important;
  padding: 10px 20px !important;
  min-height: 45px;
  max-height: 45px;
  min-width: 81%;
}
@media only screen and (max-width: 1550px) {
  .for_doctors_form_wrap form .wpcf7-response-output {
    min-width: unset;
    max-height: none;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .for_doctors_form_wrap form .wpcf7-response-output {
    position: relative;
    bottom: 0;
  }
}
@media only screen and (max-width: 576px) {
  .for_doctors_form_wrap form .wpcf7-response-output {
    position: relative;
    margin-top: 30px !important;
    display: inline-block;
  }
}
.for_doctors_form_wrap form input[type=submit] {
  border-radius: 25px;
  max-width: 180px;
  background: #13618c;
  border: 1px solid transparent;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  cursor: pointer;
  float: right;
  font-family: "opensansbold";
  margin-top: 20px;
}
.for_doctors_form_wrap form input[type=submit]:hover {
  color: #13618c;
  background: #fff;
  border: 1px solid #13618c;
}
.for_doctors_form_wrap form input[type=file] {
  border: none;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 180px;
  margin-bottom: 25px;
}
.for_doctors_form_wrap form input[type=file]::-ms-expand {
  display: none;
}
.for_doctors_form_wrap form input[type=file]:before {
  content: "Choose File";
  border-radius: 25px;
  min-width: 180px;
  background: #fff;
  border: 1px solid #13618c;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  text-align: center;
  color: #13618c;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  cursor: pointer;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  font-family: "opensansbold";
  max-height: 40px;
  position: absolute;
  width: 180px;
  line-height: 40px;
  left: 0;
}
.for_doctors_form_wrap form input[type=file]:focus {
  outline: none;
}
.for_doctors_form_wrap form input[type=file]:hover:before {
  color: white;
  background: #13618c;
}
.for_doctors_form_wrap form input[type=file] .wpcf7-not-valid-tip {
  top: 60px;
}
.for_doctors_form_wrap form .upload_file p {
  font-size: 14px;
  color: #616161;
}
.for_doctors_form_wrap form .upload_file p:first-child {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1440px) {
  .for_doctors_form_wrap form .upload_file p:first-child {
    margin-bottom: 20px;
  }
}
.for_doctors_form_wrap form .upload_file p:last-child {
  font-style: italic;
}
.for_doctors_form_wrap form .upload_file .wpcf7-not-valid-tip {
  top: 40px;
}
.for_doctors_form_wrap form .terms_checkbox {
  margin-top: 40px;
}
@media only screen and (max-width: 1440px) {
  .for_doctors_form_wrap form .terms_checkbox {
    margin-top: 35px;
  }
}
.for_doctors_form_wrap form .terms_checkbox span {
  margin: 0;
}
.for_doctors_form_wrap form .terms_checkbox span.wpcf7-list-item-label {
  margin-left: 35px;
  font-size: 14px;
  color: #616161;
}
.for_doctors_form_wrap form .terms_checkbox .wpcf7-not-valid-tip {
  top: 50px;
}
.for_doctors_form_wrap form .terms_checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.for_doctors_form_wrap form .terms_checkbox label input[type=checkbox] {
  /*position: absolute !important;*/
  top: -2px;
  left: 0;
  border: 1px solid transparent;
  padding-left: 0 !important;
  outline: none;
  width: 0;
}
@media only screen and (max-width: 1440px) {
  .for_doctors_form_wrap form .terms_checkbox label input[type=checkbox] {
    margin-bottom: 20px;
  }
}
.for_doctors_form_wrap form .terms_checkbox label input[type=checkbox]:before {
  content: "";
  border: 2px solid #d7d7d7;
  background: #FFF;
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}
.for_doctors_form_wrap form .terms_checkbox label input[type=checkbox]:checked:before {
  background-image: url(../img/icon-tick1.png);
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  border: 0px solid transparent;
}

@media only screen and (max-width: 1024px) {
  .page-id-1124 .page-wrapper {
    min-height: calc(100vh - 520px);
  }
}

/*  contact page */
@media only screen and (max-width: 1024px) {
  .contact_page_locations .contact-loop .col-md-3 {
    width: 50%;
  }
}
@media only screen and (max-width: 576px) {
  .contact_page_locations .contact-loop .col-md-3 {
    width: 100%;
  }
}
.contact_page_locations .contact-loop .contact_wrap {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .contact_page_locations .contact-loop .contact_wrap {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .contact_page_locations .contact-loop .contact_wrap {
    margin-bottom: 50px;
  }
}
.contact_page_locations .contact-loop .contact_wrap_cnt h2 {
  font-size: 18px;
  color: #13618c;
  font-weight: bold;
  min-height: 47px;
}
@media only screen and (max-width: 576px) {
  .contact_page_locations .contact-loop .contact_wrap_cnt h2 {
    font-size: 16px;
    margin-bottom: 10px;
    min-height: 0px !important;
  }
}
.contact_page_locations .contact-loop .contact_wrap_cnt h2 span {
  display: block;
  margin-top: 5px;
}
@media only screen and (max-width: 1024px) {
  .contact_page_locations .contact-loop .contact_wrap_cnt h2.coming-soon-title {
    min-height: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .contact_page_locations .contact-loop .contact_wrap_cnt h2.ongoing-title:nth-child(2) {
    min-height: 15px !important;
  }
}
.contact_page_locations .contact-loop .contact_wrap_cnt p {
  font-size: 15px;
  letter-spacing: 0.01em;
  font-weight: bold;
  padding-bottom: 8px;
}
@media only screen and (max-width: 1440px) {
  .contact_page_locations .contact-loop .contact_wrap_cnt p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  .contact_page_locations .contact-loop .contact_wrap_cnt p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 576px) {
  .contact_page_locations .contact-loop .contact_wrap_cnt p {
    padding-bottom: 10px;
  }
}
.contact_page_locations .contact-loop .contact_wrap_cnt .fa {
  color: #13618c;
  font-size: 16px;
  padding-right: 16px;
}
@media only screen and (max-width: 1440px) {
  .contact_page_locations .contact-loop .contact_wrap_cnt .fa {
    padding-right: 10px;
  }
}
.contact_page_locations .contact-loop .contact_wrap_cnt .fa.fa-phone {
  padding-right: 23px;
}
@media only screen and (max-width: 1440px) {
  .contact_page_locations .contact-loop .contact_wrap_cnt .fa.fa-phone {
    padding-right: 18px;
  }
}
.contact_page_locations .contact-loop .contact_wrap_cnt_email {
  margin-top: 15px;
}
.contact_page_locations .contact-loop .contact_wrap_cnt_email a {
  color: #212121;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.contact_page_locations .contact-loop .contact_wrap_cnt_email a:hover {
  color: #13618c;
}
.contact_page_locations_section {
  clear: both;
  padding-top: 60px;
}
.contact_page_locations_section .col-lg-6:nth-child(2) {
  padding: 0;
}
@media only screen and (max-width: 576px) {
  .contact_page_locations_section {
    padding-top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .contact_page_locations_section_corporate {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 360px) {
  .contact_page_locations_section_corporate_address {
    padding-right: 20%;
  }
}
.contact_page_locations_section_corporate h2 {
  font-size: 18px;
  color: #13618c;
  font-weight: bold;
  margin-bottom: 25px;
}
@media only screen and (max-width: 576px) {
  .contact_page_locations_section_corporate h2 {
    margin-bottom: 15px;
  }
}
.contact_page_locations_section_corporate p {
  font-size: 15px;
  letter-spacing: 0.01em;
  font-weight: bold;
  padding-bottom: 8px;
}
@media only screen and (max-width: 1440px) {
  .contact_page_locations_section_corporate p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 576px) {
  .contact_page_locations_section_corporate p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.contact_page_locations_section_corporate .fa {
  color: #13618c;
  font-size: 16px;
  padding-right: 20px;
}
.contact_page_locations_section_corporate .fa.fa-map-marker {
  padding-right: 26px;
}
.contact_page_locations_section_corporate .fa.fa-phone {
  padding-right: 24px;
}
.contact_page_locations_section_corporate_mail {
  margin-top: 15px;
}
.contact_page_locations_section_corporate_mail a {
  color: #212121;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.contact_page_locations_section_corporate_mail a:hover {
  color: #13618c;
}
.contact_page_locations_section_corporate_address {
  font-weight: normal !important;
  margin-bottom: 0px;
}
.contact_page_locations_section_expand {
  margin-top: 50px;
}
@media only screen and (max-width: 576px) {
  .contact_page_locations_section_expand {
    margin-top: 30px;
  }
}
.contact_page_locations_section_expand h1 {
  font-size: 28px;
  color: #2b8ecd;
}
@media only screen and (max-width: 576px) {
  .contact_page_locations_section_expand h1 {
    font-size: 22px;
    line-height: 32px;
    padding-right: 30%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 320px) {
  .contact_page_locations_section_expand h1 {
    padding-right: 10%;
  }
}
.contact_page_locations_section_expand p {
  font-size: 16px;
  line-height: 34px;
  padding-right: 15%;
}
@media only screen and (max-width: 1440px) {
  .contact_page_locations_section_expand p {
    font-size: 14px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 576px) {
  .contact_page_locations_section_expand p {
    padding-right: 0;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .contact_page_locations_section_form {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .contact_page_locations_section_form {
    margin-top: 10px;
  }
}
.contact_page_locations_section_form .git-warper {
  margin-top: 0;
  height: 475px;
  padding: 70px 60px 65px 60px;
}
@media only screen and (max-width: 1440px) {
  .contact_page_locations_section_form .git-warper {
    padding: 40px;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .contact_page_locations_section_form .git-warper {
    height: 635px;
  }
}
@media only screen and (max-width: 576px) {
  .contact_page_locations_section_form .git-warper {
    padding: 25px;
  }
}
.contact_page_locations_section_form .git-warper p {
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 1440px) {
  .contact_page_locations_section_form .git-warper p {
    font-size: 14px;
    /*padding-right: 20%;*/
  }
}
.contact_page_locations_section_form .git-warper .git-item {
  padding-right: 0;
  margin-bottom: 10px;
}
.contact_page_locations_section_form .git-warper .git-item:nth-child(2) {
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .contact_page_locations_section_form .git-warper .git-item:nth-child(2) {
    padding-right: 0;
  }
}
.contact_page_locations_section_form .git-warper .git-item:nth-child(3) {
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .contact_page_locations_section_form .git-warper .git-item:nth-child(3) {
    padding-left: 0;
  }
}
.contact_page_locations_section_form .git-warper .git-item:nth-child(4) {
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .contact_page_locations_section_form .git-warper .git-item:nth-child(4) {
    padding-right: 0;
  }
}
.contact_page_locations_section_form .git-warper .git-item:nth-child(5) {
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .contact_page_locations_section_form .git-warper .git-item:nth-child(5) {
    padding-left: 0;
  }
}
.contact_page_locations_section_form .git-warper .gnt-submit {
  margin-top: 20px;
}
.contact_page_locations_section_form .git-warper .wpcf7 form.invalid .wpcf7-response-output {
  clear: both;
}
.contact_page_locations_section_form .git-warper .wpcf7 form.sent .wpcf7-response-output {
  clear: both;
}

/*
* Location Map Popup
*
*/
#location-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 20;
  background: #fff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#location-popup .loader {
  position: fixed;
  width: 60px;
  height: 60px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
#location-popup .loader .double-bounce1,
#location-popup .loader .double-bounce2 {
  background: #2b8ecd;
}
#location-popup.loaded a.close-details {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 576px) {
  #location-popup.loaded a.close-details {
    z-index: 9;
  }
}
#location-popup .wrapper {
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #location-popup .wrapper {
    max-width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  #location-popup .wrapper {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 576px) {
  #location-popup .wrapper {
    max-width: 100%;
  }
}
#location-popup a.close-details {
  position: absolute;
  left: auto;
  right: 14px;
  top: 0;
  z-index: 1;
  color: #fff;
  background: #2b8ecd;
  width: 30px;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  visibility: hidden;
  opacity: 0;
  display: block;
}
@media only screen and (max-width: 576px) {
  #location-popup a.close-details {
    right: 0;
    top: -30px;
  }
}
#location-popup a.close-details:hover {
  background: #13618c;
}
#location-popup .location-popup {
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#location-popup.show {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  visibility: visible;
  background: #ddebf9;
}
@media only screen and (max-width: 576px) {
  #location-popup.show {
    background-color: #fff;
  }
}
#location-popup.loaded .location-popup {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  opacity: 1;
}
#location-popup.loaded .loader {
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
}
#location-popup .close-details {
  position: relative;
  top: 50px;
  left: -75px;
}
#location-popup .close-details span {
  font-size: 17px !important;
}
#location-popup .table .cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}
#location-popup .table .cell .wrapper {
  width: 100%;
}

#loc-details.location-single {
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
}
#loc-details.location-single .map-border {
  border: 30px solid #fff;
}
@media only screen and (max-width: 576px) {
  #loc-details.location-single .map-border {
    border: none;
  }
}
#loc-details.location-single .map-canvas {
  height: 650px;
}
@media only screen and (max-width: 1440px) {
  #loc-details.location-single .map-canvas {
    height: 600px;
  }
}
@media only screen and (max-width: 1024px) {
  #loc-details.location-single .map-canvas {
    height: 550px;
  }
}
@media only screen and (max-width: 576px) {
  #loc-details.location-single .map-canvas {
    height: 400px;
  }
}

/*
* Success Stories Video Popup
*
*/
#success-stories {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 20;
  background: #fff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#success-stories .loader {
  position: fixed;
  width: 60px;
  height: 60px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
#success-stories .loader .double-bounce1,
#success-stories .loader .double-bounce2 {
  background: #2b8ecd;
}
#success-stories.loaded a.vpopup-close-details {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 576px) {
  #success-stories.loaded a.vpopup-close-details {
    z-index: 9;
  }
}
#success-stories .wrapper {
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #success-stories .wrapper {
    max-width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  #success-stories .wrapper {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 576px) {
  #success-stories .wrapper {
    max-width: 100%;
  }
}
#success-stories a.vpopup-close-details {
  position: absolute;
  left: auto;
  right: 0px;
  top: 0;
  z-index: 1;
  color: #fff;
  background: #2b8ecd;
  width: 30px;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.3s cubic-bezier(0, 0, 0.39, 1.1);
  visibility: hidden;
  opacity: 0;
  display: block;
}
@media only screen and (max-width: 576px) {
  #success-stories a.vpopup-close-details {
    right: 0;
    top: -29px;
  }
}
#success-stories a.vpopup-close-details:hover {
  background: #13618c;
}
#success-stories .success-stories-video-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  opacity: 0;
  height: 80vh;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  border: 30px solid #fff;
}
@media only screen and (max-width: 1024px) {
  #success-stories .success-stories-video-wrap {
    height: auto;
  }
}
@media only screen and (max-width: 576px) {
  #success-stories .success-stories-video-wrap {
    border: none;
  }
}
#success-stories .success-stories-video-wrap:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
#success-stories .success-stories-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
}
@media only screen and (max-width: 1024px) {
  #success-stories .success-stories-video-wrap iframe {
    height: auto;
    min-height: 100%;
  }
}
#success-stories.show {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  visibility: visible;
  background: #ddebf9;
}
@media only screen and (max-width: 576px) {
  #success-stories.show {
    background-color: #fff;
  }
}
#success-stories.loaded .success-stories-video-wrap {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  opacity: 1;
}
#success-stories.loaded .loader {
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
  transition: all 0.5s cubic-bezier(0, 0, 0.39, 1.1);
}
#success-stories .vpopup-close-details {
  position: relative;
  top: 50px;
  left: -75px;
}
#success-stories .vpopup-close-details span {
  font-size: 17px !important;
}
#success-stories .table .cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}
#success-stories .table .cell .wrapper {
  width: 100%;
}

/*
* Privacy policy Page
*
*/
.privacy-policy-page {
  margin-top: 200px;
}
@media only screen and (max-width: 576px) {
  .privacy-policy-page {
    margin-top: 40px;
  }
}
.privacy-policy-page p {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 34px;
}
@media only screen and (max-width: 1440px) {
  .privacy-policy-page p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 576px) {
  .privacy-policy-page p {
    margin-bottom: 10px;
    padding-bottom: 0;
    text-align: justify;
  }
}
.privacy-policy-page p a:hover {
  color: #2b8ecd;
  text-decoration: underline !important;
}
.privacy-policy-page .intro-txt p {
  padding-right: 30px;
}
@media only screen and (max-width: 1440px) {
  .privacy-policy-page .intro-txt p {
    padding-right: 0px;
  }
}
.privacy-policy-page .page-title {
  text-align: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 576px) {
  .privacy-policy-page .page-title {
    margin-bottom: 0;
  }
}
.privacy-policy-page .page-title h1 {
  font-size: 40px;
  font-family: "opensansbold";
  color: #2b8ecd;
}
@media only screen and (max-width: 576px) {
  .privacy-policy-page .page-title h1 {
    font-size: 21px;
  }
}
.privacy-policy-page .privacy-policy .title {
  margin-top: 40px;
}
@media only screen and (max-width: 1440px) {
  .privacy-policy-page .privacy-policy .title {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .privacy-policy-page .privacy-policy .title {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .privacy-policy-page .privacy-policy .title {
    margin-top: 20px;
  }
}
.privacy-policy-page .privacy-policy .title h1 {
  font-size: 28px;
  color: #2b8ecd;
}
@media only screen and (max-width: 1440px) {
  .privacy-policy-page .privacy-policy .title h1 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .privacy-policy-page .privacy-policy .title h1 {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .privacy-policy-page .privacy-policy .content-left {
    width: 100%;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .privacy-policy-page .privacy-policy .content-left {
    padding-right: 0;
  }
}
.privacy-policy-page .privacy-policy:last-child {
  margin-bottom: 80px;
}

/* Testimonial Css  */
.testimonials_wrap .gallery_wraper .light_box_gallery > div:nth-child(n+5) {
  margin-top: 60px;
}
@media only screen and (max-width: 576px) {
  .testimonials_wrap .gallery_wraper .light_box_gallery > div:nth-child(n+5) {
    margin-top: 0px;
  }
}
.testimonials_wrap .gallery_wraper .light_box_gallery .gallery_img {
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .testimonials_wrap .gallery_wraper .light_box_gallery .gallery_img img {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .testimonials_wrap .gallery_wraper .light_box_gallery .gallery_img {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials_wrap .gallery_wraper .light_box_gallery .gallery_img {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 320px) {
  .testimonials_wrap .gallery_wraper .light_box_gallery .gallery_img {
    margin-bottom: 20px;
  }
}
.testimonials_wrap .gallery_wraper .light_box_gallery .gallery_img::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: rgba(43, 142, 205, 0.5);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.testimonials_wrap .gallery_wraper .light_box_gallery .gallery_img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 28px;
  background: url(../images/icon_rectangle.png) no-repeat;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  z-index: 99;
}
.testimonials_wrap .gallery_wraper .light_box_gallery .gallery_img:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.testimonials_wrap .gallery_wraper .light_box_gallery .gallery_img:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.testimonials_wrap .gallery_wraper .light_box_gallery .body_p {
  padding-top: 15px;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-intro {
  margin-bottom: 35px;
}

.lg-actions button {
  background-color: #2b8ecd !important;
  color: #fff !important;
  top: 50% !important;
}
@media only screen and (max-width: 576px) {
  .lg-actions button {
    top: 90% !important;
    z-index: 9999 !important;
  }
}
.lg-actions button.lg-prev {
  left: 0 !important;
}
.lg-actions button.lg-next {
  right: 0 !important;
}

.lg-toolbar {
  background-color: transparent !important;
}

.lg-toolbar .lg-icon {
  color: #ffffff !important;
  margin-left: 1px;
  background-color: #2b8ecd;
  border: none;
}

.lg-object.lg-image {
  max-height: 80% !important;
  border: 15px solid #fff;
  border-bottom: 55px solid #fff;
}
@media only screen and (max-width: 1024px) {
  .lg-object.lg-image {
    max-height: 70% !important;
  }
}
@media only screen and (max-width: 576px) {
  .lg-object.lg-image {
    border: 5px solid #fff;
    max-height: 60% !important;
  }
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.lg-sub-html {
  background: transparent !important;
  position: absolute !important;
  top: calc(85% + 0px);
  padding: 0 !important;
}
@media only screen and (max-width: 1440px) {
  .lg-sub-html {
    top: calc(83% + 10px);
  }
}
@media only screen and (max-width: 1366px) {
  .lg-sub-html {
    top: calc(83% + 5px);
  }
}
@media only screen and (max-width: 1024px) {
  .lg-sub-html {
    top: calc(81% + 5px);
  }
}
.lg-sub-html p {
  padding-bottom: 0;
  font-size: 16px !important;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 576px) {
  .lg-sub-html p {
    color: #fff;
  }
}

/* Responsive */
@media only screen and (max-width: 1680px) {
  .grid-loop li {
    width: 31.5%;
  }
  .grid-loop li:nth-child(n) {
    margin-right: 2.666%;
  }
  .grid-loop li:nth-child(3n) {
    margin-right: 0;
  }
  .grid-loop li:nth-child(19) h2 a span:nth-child(2) {
    display: block;
    top: 0;
  }
  .grid-loop li:nth-child(19) .doc-details {
    top: 0px;
  }
}
@media screen and (max-width: 1440px) {
  body {
    padding: 10px;
    -webkit-overflow-scrolling: touch !important;
    height: 100% !important;
  }
  body:before {
    border-width: 10px;
  }
  /*Submenu */
  .ubermenu-item > .ubermenu-submenu-drop {
    width: 57% !important;
  }
  .ubermenu-item > .ubermenu-submenu li.ubermenu-item {
    margin-right: 20px !important;
  }
  #main-header {
    top: 20px;
    width: calc(100% - 20px);
    padding: 0 45px;
  }
  #main-header .header-top {
    padding: 10px 0 15px;
  }
  #main-header .header-top .secondary-menu a {
    font-size: 11px;
  }
  #main-header .menu-wrapper .primary-menu li {
    margin-right: 2px;
  }
  #main-header .logo {
    max-width: 130px;
    margin-top: -48px;
  }
  /* Doctors Pages */
  /** Specialites pages **/
  /*Book an appointment Modal Css*/
  /*Job Openings*/
  /*JOb Detailed*/
}
@media only screen and (max-width: 1440px) and (max-width: 1440px) {
  #main-header .logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 1440px) {
  #main-header .menu-wrapper .primary-menu a {
    padding: 4px 14px;
    font-size: 11px;
    letter-spacing: 0;
  }
  #main-header .header-top .social-links {
    margin: 0 20px;
    margin-right: 0;
  }
  .home-banner .banner-wrapper {
    height: calc(100vh - 10px);
    background: url(../img/main-banner-1.jpg) no-repeat center right;
    background-size: contain;
  }
  .home-banner .caption h3 {
    font-size: 20px;
  }
  .home-banner .caption h2 {
    font-size: 40px;
  }
  .home-banner .caption {
    -webkit-transform: translate(10vw, 3vw);
            transform: translate(10vw, 3vw);
  }
  .home-banner .caption p {
    margin: 15px 0 25px;
    font-size: 15px;
  }
  .page-header {
    height: 500px;
  }
  .page-header .caption {
    max-width: 570px;
  }
  .page-header .caption h3 {
    font-size: 20px;
  }
  .page-header .caption h2 {
    font-size: 40px;
  }
  .listing-page-awsm_job_openings .page-header .caption {
    max-width: 450px;
  }
  .page-wrapper {
    padding: 0 45px;
  }
  .intro-txt h1 {
    font-size: 36px;
  }
  .intro-txt h1 span {
    font-size: 20px;
  }
  .intro-txt p {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 28px;
  }
  .home .services-wrapper p {
    font-size: 13px;
    line-height: 24px;
  }
  .home .service-wrap {
    min-height: 320px !important;
  }
  .home .service-wrap .simg-blk {
    padding: 45px 0 !important;
    min-height: 197px !important;
    padding-bottom: 25px !important;
  }
  .home .service-wrap .hmto {
    margin-top: 15px;
  }
  .home .service-wrap .mt20 {
    margin-top: 15px !important;
  }
  .home .service-wrap h3 {
    font-size: 18px;
  }
  .home .service-wrap .s-btn {
    bottom: 25px !important;
  }
  .home .health-check .packages {
    padding: 35px 35px 35px 0px;
  }
  .home .health-check .packages h2 {
    font-size: 26px;
    letter-spacing: 0.1em;
  }
  .home .health-check .packages p {
    font-size: 13px;
    line-height: 1.6;
  }
  .home .health-check .package {
    padding: 15px;
    padding-left: 60px;
  }
  .home .health-check .package:before {
    font-size: 15px;
    width: 45px;
    height: 45px;
    line-height: 47px;
    top: 20px;
  }
  .home .health-check .package h3 {
    font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 5px;
  }
  .home .health-check .packages a.btn-outline {
    margin-bottom: 10px;
  }
  .home .life-plants > div {
    padding-bottom: 14px;
  }
  .home .life-plants .life-plants-content {
    padding: 35px;
  }
  .home .life-plants .life-plants-content h2 {
    font-size: 18px;
  }
  .home .life-plants .life-plants-content p {
    font-size: 13px;
    line-height: 25px;
    max-width: 85%;
  }
  .home .life-plants .life-plants-content a.btn-outline {
    margin-bottom: 10px;
  }
  .home-locations .location a.links {
    font-size: 13px;
  }
  .events-tour > div {
    padding: 35px;
  }
  .events-tour h2 {
    font-size: 28px;
  }
  .events-tour .event h3 {
    font-size: 15px;
    letter-spacing: 0;
  }
  .events-tour .event .desc {
    padding-left: 30px;
  }
  .events-tour .event p {
    font-size: 13px;
    letter-spacing: 0.02em;
    margin-bottom: 15px;
    line-height: 25px;
  }
  .live-plants p {
    font-size: 14px;
  }
  #main-footer {
    padding: 0 45px;
  }
  #main-footer .ctoa-footer {
    padding: 30px;
    padding-left: 70px;
    margin-top: 80px !important;
  }
  #main-footer .ctoa-footer h2 {
    font-size: 30px;
  }
  #main-footer .ctoa-footer h2 span {
    font-size: 18px;
  }
  .home-banner .scroll-btn .mouse {
    border-width: 1px;
  }
  .home-banner .scroll-btn {
    bottom: 0;
  }
  .grid-loop li {
    width: 31.5%;
  }
  .grid-loop li:nth-child(n) {
    margin-right: 2.666%;
  }
  .grid-loop li:nth-child(3n) {
    margin-right: 0;
  }
  .doc-details-single p {
    font-size: 13px;
    line-height: 24px;
  }
  #doctor-profile {
    overflow-y: scroll;
  }
  #doctor-profile .ctoa-footer .col-md-8 {
    width: 100%;
  }
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1366px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1280px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1024px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 {
    display: block;
    font-size: 28px;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1024px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 .dash {
    display: none;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1280px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
    bottom: 0;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1024px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
    padding: 0;
  }
}
@media screen and (max-width: 1440px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading span {
    font-size: 14px;
  }
  #search-doctors.fixed {
    width: calc(100vw - 111px);
    left: -3px;
  }
  .vision-wraper .vision .desc {
    padding: 0;
    max-width: 62%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1440px) {
  .vision-wraper .vision .desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1024px) {
  .vision-wraper .vision .desc {
    max-width: 80%;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 768px) {
  .vision-wraper .vision .desc {
    max-width: 70%;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 576px) {
  .vision-wraper .vision .desc {
    max-width: 80%;
  }
}
@media screen and (max-width: 1440px) {
  .mission-wraper .mission .desc {
    padding: 0;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1440px) {
  .mission-wraper .mission .desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1440px) {
  .values-wraper .values .value-items-holder {
    padding-top: 0px;
  }
}
@media screen and (max-width: 1440px) {
  .values-wraper .values .value-items-holder .value-items {
    margin-left: 3%;
  }
  .values-wraper .values .value-items-holder .value-items:nth-child(2) {
    margin-left: 3%;
  }
  .values-wraper .values .value-items-holder .value-items .value-item {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 1440px) {
  .values-wraper .values .value-items-holder .value-items .value-item {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .success-story .owl-item {
    padding: 0 140px;
    margin-bottom: 70px;
  }
  .spealities-cares .spealities-item .desc p {
    font-size: 14px;
  }
  #knowmore .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
    width: 768px;
    height: auto;
  }
  .ea-modal .modal-body h1 {
    font-size: 36px !important;
    line-height: 48px !important;
    margin-bottom: 0;
  }
  .ea-modal .modal-body h1 span {
    margin-top: 20px !important;
  }
  .s-job .s-job-explore h1 {
    font-size: 38px;
    padding-bottom: 30px;
  }
  .s-job .s-job-explore p {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 28px;
  }
  .s-job .awsm-job-container .awsm-job-item {
    min-height: 300px;
    margin-bottom: 40px;
    padding: 45px;
  }
  .s-job .awsm-job-container .awsm-job-item .awsm-job-post-title {
    font-size: 18px;
  }
  .sjob-detailed .awsm-job-container {
    max-width: 1240px !important;
  }
  .sjob-detailed .awsm-jobs-single-title {
    font-size: 38px;
    margin-bottom: 25px;
  }
  .sjob-detailed .awsm-job-single-wrap .awsm-form-file-control:after {
    left: 55% !important;
  }
  .sjob-detailed .awsm-job-single-wrap .awsm-job-content {
    padding-right: 60px !important;
    width: 55% !important;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 768px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-content {
    width: 100% !important;
    clear: both;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-content {
    padding-right: 0 !important;
  }
}
@media screen and (max-width: 1440px) {
  .sjob-detailed .awsm-job-single-wrap h1 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 25px;
  }
  .sjob-detailed .awsm-job-single-wrap h2 {
    margin-bottom: 25px;
  }
  .sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content p {
    font-size: 14px;
    line-height: 32px;
  }
  .sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content ul li {
    font-size: 14px;
    line-height: 32px;
  }
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form {
    width: 45% !important;
  }
}
@media only screen and (max-width: 1440px) and (max-width: 768px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-form {
    width: 100% !important;
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 1368px) {
  .values-wraper .values .value-items-holder .value-items {
    margin-left: 1%;
  }
  .values-wraper .values .value-items-holder .value-items:nth-child(2) {
    margin-left: 2%;
  }
  .easy_app .eap30:after {
    width: 45.5%;
  }
  .easy_app #eayn input[type=radio] {
    margin-left: 48px !important;
  }
  .sjob-detailed .awsm-job-container {
    max-width: 1170px !important;
  }
}
/* base */
@media only screen and (max-width: 576px) {
  [class*=col-] {
    padding: 0;
  }
}

/* Home Page */
@media only screen and (max-width: 1024px) {
  .page-template-front-page .intro-txt .col-md-9 {
    width: 100%;
  }
}
@media only screen and (max-width: 1440px) {
  .page-template-front-page .intro-txt.spacer-lg {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 576px) {
  .page-template-front-page .intro-txt.spacer-lg {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .page-template-front-page .services-wrapper.spacer-lg {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 1440px) {
  .page-template-front-page .home-locations.spacer-lg {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 576px) {
  .page-template-front-page .home-locations.spacer-lg {
    margin-top: 60px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1440px) {
  .page-template-front-page .home-testimonial-wrapper.spacer-lg {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 576px) {
  .page-template-front-page .home-testimonial-wrapper.spacer-lg {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 576px) {
  .page-template-front-page .life-plants.spacer-lg {
    margin-top: 60px;
    margin-bottom: 0;
  }
}

/* About Page */
@media only screen and (max-width: 1024px) {
  .page-template-aboutus .intro-txt .col-md-9 {
    width: 100%;
  }
}
.page-template-aboutus .vision-wraper .vision {
  font-size: 34px;
}
@media only screen and (max-width: 1024px) {
  .page-template-aboutus .vision-wraper .icn {
    min-height: 100px !important;
  }
}
@media only screen and (max-width: 576px) {
  .page-template-aboutus .vision-wraper .desc {
    max-width: 90%;
    min-height: 150px;
  }
}
@media only screen and (max-width: 576px) {
  .page-template-aboutus .vision-wraper .desc p {
    line-height: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-template-aboutus .mission-wraper .icn {
    min-height: 100px !important;
  }
}
@media only screen and (max-width: 768px) {
  .page-template-aboutus .mission-wraper {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .page-template-aboutus .mission-wraper .desc {
    max-width: 90%;
    min-height: 150px;
  }
}
@media only screen and (max-width: 576px) {
  .page-template-aboutus .mission-wraper .desc p {
    line-height: 24px;
  }
}
.page-template-aboutus .values-wraper .values .value-item {
  padding-top: 20px;
}
.page-template-aboutus .values-wraper .values .value-item:before {
  height: 40px;
  width: 40px;
}
@media only screen and (max-width: 576px) {
  .page-template-aboutus .values-wraper .values .value-item:before {
    top: 30px;
  }
}
.page-template-aboutus .values-wraper .values .value-item p {
  padding-left: 50px;
}
@media only screen and (max-width: 576px) {
  .page-template-aboutus .values-wraper .values .value-items-holder .value-items:nth-child(2) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 576px) {
  .page-template-template-location .page-header .caption {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 375px) {
  .page-template-template-location .page-header .caption {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 576px) {
  .ea-bootstrap .form-horizontal .checkbox {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .awsm-job-more-container {
    text-align: center;
  }
}

/*// Mobiles*/
@media only screen and (max-width: 1980px) {
  .mob-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .mob-wrapper {
    display: block;
  }
}

@media only screen and (max-width: 1980px) {
  #main-header {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  #main-header {
    display: none !important;
  }
}

.mob-wrapper {
  /*** INPUT ***/
  /*** LABEL ***/
  /* Hamburger Icon */
  /* Close Icon */
  /*** MENU ***/
  /* Overlay */
  /* List */
  /* Social Media */
}
.mob-wrapper nav {
  color: #1d1f20;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 99;
  position: absolute;
}
@media only screen and (max-width: 375px) {
  .mob-wrapper nav {
    top: -10px;
  }
}
.mob-wrapper nav .header-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #fff;
}
.mob-wrapper nav .header-mobile a {
  max-width: 160px;
  padding: 8px 16px;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav .header-mobile a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 220px;
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav .header-mobile a {
    max-width: 160px;
  }
}
@media only screen and (max-width: 375px) {
  .mob-wrapper nav .header-mobile a {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav .header-mobile a img {
    width: 189px;
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav .header-mobile a img {
    width: 120px;
  }
}
.mob-wrapper nav .smegamenu {
  position: relative;
}
.mob-wrapper nav .smegamenu:before {
  color: #fff;
  content: "\f0da";
  font-family: fontAwesome;
  position: absolute;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav .smegamenu:before {
    left: 170px;
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav .smegamenu:before {
    left: 130px;
    top: 1px;
  }
}
.mob-wrapper nav .smegamenu.smegamenu-open:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav .smegamenu .sub-menu {
    left: 15px;
    position: relative;
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav .smegamenu .sub-menu {
    left: 65px;
  }
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav .container {
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    padding: 0;
  }
}
.mob-wrapper nav .container.menu-open {
  min-height: 110vh;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #bfdcec;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav .container.menu-open {
    min-height: 100vh;
  }
}
@media only screen and (max-width: 375px) {
  .mob-wrapper nav .container.menu-open {
    min-height: 105vh;
  }
}
.mob-wrapper nav .container.menu-open label {
  background-color: #fff;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav .container.submenu-opened {
    min-height: 120vh;
  }
}
@media only screen and (max-width: 395px) {
  .mob-wrapper nav .container.submenu-opened {
    min-height: 135vh;
  }
}
.mob-wrapper nav input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.mob-wrapper nav label {
  cursor: pointer;
  display: block;
  font: 2em/1 "Oswald", sans-serif;
  padding: 1em;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav label {
    background-color: #fff;
  }
}
@media only screen and (max-width: 567px) {
  .mob-wrapper nav label {
    padding: 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
    width: 60px;
    float: right;
  }
}
@media only screen and (max-width: 375px) {
  .mob-wrapper nav label {
    height: 90px;
  }
}
.mob-wrapper #menu-icon,
.mob-wrapper #menu-icon:before,
.mob-wrapper #menu-icon:after {
  background: #2b8ecd;
  border-radius: 0.05em;
  height: 0.2em;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper #menu-icon,
  .mob-wrapper #menu-icon:before,
  .mob-wrapper #menu-icon:after {
    height: 0.1em;
  }
}
.mob-wrapper #menu-icon {
  display: inline-block;
  margin: 0.4em 0;
  max-width: 1.5em;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper #menu-icon {
    width: 45px;
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper #menu-icon {
    max-width: 1em;
    width: 1em;
  }
}
.mob-wrapper nav label #menu-icon {
  float: right;
  margin-top: 40px;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav label #menu-icon {
    margin-top: 30px;
  }
}
.mob-wrapper #menu-icon:before,
.mob-wrapper #menu-icon:after {
  content: "";
  left: 0;
  position: absolute;
}
.mob-wrapper #menu-icon:before {
  top: -0.4em;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper #menu-icon:before {
    top: -0.3em;
  }
}
.mob-wrapper #menu-icon:after {
  bottom: -0.4em;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper #menu-icon:after {
    bottom: -0.3em;
  }
}
.mob-wrapper .menu-open #menu-icon {
  background: transparent;
}
.mob-wrapper .menu-open #menu-icon:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mob-wrapper .menu-open #menu-icon:after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mob-wrapper nav input:checked ~ #overlay {
  background: white;
  bottom: 0;
  left: 0;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav input:checked ~ #overlay {
    display: none;
  }
}
.mob-wrapper nav ul {
  font-size: 1.5em;
  list-style: none;
  margin: 0;
  max-height: 0;
  /*opacity: 0;*/
  overflow: hidden;
  padding: 0;
  text-align: center;
  /*transition: all 400ms ease;*/
  /*height: 0%;*/
}
.mob-wrapper nav input:checked ~ ul {
  margin: 1em;
  max-height: inherit;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav input:checked ~ ul {
    margin-left: 3em;
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav input:checked ~ ul {
    margin-left: 1em;
  }
}
.mob-wrapper nav input:checked ~ ul#social-media {
  margin-left: 0;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav input:checked ~ ul#social-media {
    position: absolute;
    left: 50%;
    bottom: 10px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav input:checked ~ ul#social-media {
    bottom: 0;
    margin-bottom: 0;
  }
}
.mob-wrapper nav ul > li {
  margin: 0.5em 0;
}
.mob-wrapper nav ul a {
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  font-size: 21px;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav ul a {
    font-size: 15px;
  }
}
.mob-wrapper nav ul a:hover {
  text-decoration: underline;
}
.mob-wrapper nav ul#social-media > li {
  display: inline-block;
  font-size: 1.5em;
  margin: 0.5em;
}
.mob-wrapper nav ul li {
  text-align: left;
  text-transform: uppercase;
  padding: 5px 0;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav ul li {
    padding: 0;
  }
}
.mob-wrapper nav ul li.current-menu-item a {
  color: #c2e5fc !important;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper .menu-open ul li.menu-item-5286, .mob-wrapper .menu-open ul li.menu-item-5302 {
    position: absolute;
    left: 50%;
    bottom: 180px;
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper .menu-open ul li.menu-item-5286, .mob-wrapper .menu-open ul li.menu-item-5302 {
    bottom: 145px;
  }
}
@media only screen and (max-width: 385px) {
  .mob-wrapper .menu-open ul li.menu-item-5286, .mob-wrapper .menu-open ul li.menu-item-5302 {
    bottom: 130px;
  }
}
@media only screen and (max-width: 768px) {
  .mob-wrapper .menu-open ul li.menu-item-5286 {
    -webkit-transform: translate(-130%, 100%);
            transform: translate(-130%, 100%);
  }
}
@media only screen and (max-width: 768px) {
  .mob-wrapper .menu-open ul li.menu-item-5302 {
    -webkit-transform: translate(15%, 100%);
            transform: translate(15%, 100%);
  }
}
@media only screen and (max-width: 768px) {
  .mob-wrapper .container {
    min-height: 138px;
    height: 138px;
  }
}
@media only screen and (max-width: 567px) {
  .mob-wrapper .container {
    padding: 0;
    min-height: 80px;
    height: 80px;
  }
}
@media only screen and (max-width: 567px) {
  .mob-wrapper label img {
    width: 120px;
  }
}
@media only screen and (max-width: 320px) {
  .mob-wrapper label img {
    width: 100px;
  }
}
.mob-wrapper nav ul li ul {
  max-height: 100vh;
  margin-left: 40px;
  display: none;
  margin-top: -20px;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav ul li ul {
    margin-top: 0px !important;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav ul li ul {
    margin-top: -15px !important;
    margin-bottom: 0px;
    padding-top: 20px;
  }
}
.mob-wrapper nav ul li ul li {
  margin: 0;
  max-height: 25px;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav ul li ul li {
    max-height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav ul li ul li {
    max-height: 35px;
    padding: 5px 0px;
    margin-left: 35px;
  }
}
.mob-wrapper nav ul li ul li:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #2b8ecd;
}
@media only screen and (max-width: 768px) {
  .mob-wrapper nav ul li ul li:after {
    display: none;
  }
}
.mob-wrapper nav ul li ul li:before {
  content: "";
  position: absolute;
  height: 35px;
  width: 35px;
  background-image: url(../img/maternity-icon.png);
  border-radius: 50%;
  left: 0px;
  background-size: contain;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav ul li ul li:before {
    height: 25px;
    width: 25px;
  }
}
.mob-wrapper nav ul li ul li:nth-child(2):before {
  background-image: url(../img/laparoscopic-icon.png);
}
.mob-wrapper nav ul li ul li:nth-child(3):before {
  background-image: url(../img/gynaecology-icon.png);
}
.mob-wrapper nav ul li ul li:nth-child(4):before {
  background-image: url(../img/orthpedics-icon.png);
}
.mob-wrapper nav ul li ul li:nth-child(5):before {
  background-image: url(../img/pedeotrics-icon.png);
}
.mob-wrapper nav ul li ul li:nth-child(6):before {
  background-image: url(../img/ophthalmology-icon.png);
}
.mob-wrapper nav ul li ul li:nth-child(7):before {
  background-image: url(../img/medicine-icon.png);
}
.mob-wrapper nav ul li ul li:nth-child(8):before {
  background-image: url(../img/urology-icon.png);
}
.mob-wrapper nav ul li ul li:nth-child(9):before {
  background-image: url(../img/general-surgery.png);
}
.mob-wrapper nav ul li ul li a {
  color: #fff !important;
}
@media only screen and (max-width: 576px) {
  .mob-wrapper nav ul li ul li a {
    font-size: 13px;
  }
}

@-webkit-keyframes fadedown {
  0% {
    height: 0;
    opacity: 0;
  }
  20% {
    height: 30%;
    opacity: 0.3;
  }
  50% {
    height: 50%;
    opacity: 0.5;
  }
  70% {
    height: 75%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}

@keyframes fadedown {
  0% {
    height: 0;
    opacity: 0;
  }
  20% {
    height: 30%;
    opacity: 0.3;
  }
  50% {
    height: 50%;
    opacity: 0.5;
  }
  70% {
    height: 75%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}
@media only screen and (max-width: 576px) {
  body .doc-details .doc-location {
    margin: 15px 0 !important;
  }
}

@media only screen and (max-width: 576px) {
  .tparrows {
    display: none !important;
  }
}
@media only screen and (max-width: 1440px) {
  .tparrows.tp-leftarrow {
    left: -10px !important;
  }
}
@media only screen and (max-width: 1440px) {
  .tparrows.tp-rightarrow {
    left: calc(100% + 10px) !important;
  }
}

@media only screen and (max-width: 576px) {
  .tp-mask-wrap {
    margin-left: 0;
    top: 30px;
  }
}
@media only screen and (max-width: 320px) {
  .tp-mask-wrap {
    top: 70px;
  }
}

.home-locations .location.ico-left a.links:nth-child(3) {
  margin-left: -18px;
}

@media only screen and (max-width: 768px) {
  .selectric-hide-select.selectric-is-native select {
    padding-left: 20px !important;
    border-bottom: 2px solid red;
  }
}

/* Responsive */
@media only screen and (max-width: 576px) {
  body {
    padding: 0;
    height: 100% important;
  }
}
@media only screen and (max-width: 576px) {
  body:before {
    border-width: 0px;
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-930 .page-header {
    margin-bottom: 170px;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-930 .page-header {
    margin-bottom: 160px;
  }
}
@media only screen and (max-width: 360px) {
  body.page-id-930 .page-header {
    margin-bottom: 150px;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-44 .page-wrapper {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-44 .page-wrapper {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-44 .page-wrapper {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-44 .intro-txt p {
    text-align: justify;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-50 .page-wrapper {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-50 .page-wrapper {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-50 .page-wrapper {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 1440px) {
  body.page-id-50 .intro-txt p {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1024px) {
  body.page-id-50 .intro-txt p {
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-50 .intro-txt p {
    text-align: justify;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-50 .spacer-md {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-1124 .page-wrapper {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-1124 .page-wrapper {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-1124 .page-wrapper {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-1124 .page-header {
    background-position: 92% !important;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-1124 .page-header {
    background-position: 86% !important;
    margin-bottom: 140px;
  }
}
@media only screen and (max-width: 360px) {
  body.page-id-1124 .page-header {
    background-position: 85% !important;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-1124 .page-header {
    background-position: 94% !important;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-1124 .intro-txt p {
    text-align: justify;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-1064 .page-wrapper {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-1064 .page-wrapper {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-1064 .page-wrapper {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-1064 .page-header {
    background-position: 90% !important;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-1064 .page-header {
    background-position: 87% !important;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-1064 .s-job .s-job-explore h1 {
    padding-bottom: 20px;
  }
  body.page-id-1064 .s-job .s-job-explore p {
    margin-bottom: 0;
    text-align: justify;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-52 .page-wrapper {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-52 .page-wrapper {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-52 .page-wrapper {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-52 .page-wrapper.testimonial-wrapper {
    padding-top: 0px;
  }
}
body.page-id-52 .success_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: #c2e5fc;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
body.page-id-52 .success_popup_vidwrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 576px) {
  body.page-id-48 .page-wrapper {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-48 .page-wrapper {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-48 .page-wrapper {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-48 .page-wrapper .spacer-md {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-48 .page-wrapper .spacer-md {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 1440px) {
  body.page-id-48 .page-wrapper .intro-txt p {
    padding: 0 10%;
  }
}
@media only screen and (max-width: 1024px) {
  body.page-id-48 .page-wrapper .intro-txt p {
    padding: 0;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-48 .page-wrapper .intro-txt p {
    margin-bottom: 20px;
  }
}
body.page-id-5638 .form-horizontal .step.form-group {
  display: none;
}
@media only screen and (max-width: 576px) {
  body.page-id-5638 .form-horizontal .form-group {
    margin-bottom: 25px !important;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-5638 .form-horizontal .form-group .col-sm-4 {
    padding-right: 0;
  }
}
body.page-id-5638 .form-horizontal .form-group .col-sm-4:nth-child(2) {
  padding-left: 0;
}
body.page-id-5638 .form-horizontal .form-group .dr-name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 30px;
}
@media only screen and (max-width: 1440px) {
  body.page-id-5638 .form-horizontal .form-group .dr-name-wrap {
    padding: 20px 22px;
  }
}
body.page-id-5638 .form-horizontal .form-group .dr-name-wrap .dr-name {
  margin-right: 10px;
}
body.page-id-54 .form-horizontal .step.form-group {
  display: block !important;
}
@media only screen and (max-width: 576px) {
  body.page-id-1200 .page-header {
    background-position: 90% !important;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-1200 .page-header {
    background-position: 88% !important;
  }
}
@media only screen and (max-width: 360px) {
  body.page-id-1200 .page-header {
    background-position: 87% !important;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-1200 .page-header {
    background-position: 83% !important;
  }
}
@media only screen and (max-width: 576px) {
  body.page-id-1200 .page-wrapper {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 375px) {
  body.page-id-1200 .page-wrapper {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 320px) {
  body.page-id-1200 .page-wrapper {
    padding-top: 40px;
  }
}

/*Submenu */
@media only screen and (max-width: 576px) {
  #main-header {
    padding: 0 5px;
    top: 5px;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 320px) {
  #main-header .header-top .secondary-menu a {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 1024px) {
  #main-header .logo {
    margin-top: -65px;
  }
}
@media only screen and (max-width: 576px) {
  #main-header .logo {
    max-width: 100px;
    margin-top: -90px;
    margin-left: 5px;
  }
}
@media only screen and (max-width: 320px) {
  #main-header .logo {
    max-width: 80px;
    margin-top: -85px;
  }
}

.page-header {
  /*	@include breakpoint(360){
  		background-position: 40% !important;
  	}*/
}
@media only screen and (max-width: 1024px) {
  .page-header {
    margin-bottom: 30px;
    height: 420px;
  }
}
@media only screen and (max-width: 768px) {
  .page-header {
    height: 39vh;
    background-size: cover !important;
    background-position: -100px !important;
    margin-bottom: 60px;
    position: relative;
    top: 100px;
    margin-bottom: 160px;
  }
}
@media only screen and (max-width: 576px) {
  .page-header {
    height: 300px;
    margin-bottom: 40px;
    background-position: 80% !important;
    top: 60px;
    position: relative;
    margin-bottom: 130px;
  }
}
@media only screen and (max-width: 320px) {
  .page-header {
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-header .caption {
    -webkit-transform: translate(14vw, -2vw);
            transform: translate(14vw, -2vw);
  }
}
@media only screen and (max-width: 768px) {
  .page-header .caption {
    -webkit-transform: translate(7vw, -2vw);
            transform: translate(7vw, -2vw);
  }
}
@media only screen and (max-width: 576px) {
  .page-header .caption {
    -webkit-transform: translate(5px, 235px);
            transform: translate(5px, 235px);
  }
}
@media only screen and (max-width: 320px) {
  .page-header .caption {
    -webkit-transform: translate(5px, 250px);
            transform: translate(5px, 250px);
  }
}
@media only screen and (max-width: 768px) {
  .page-header .caption h3 {
    font-size: 15px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 576px) {
  .page-header .caption h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .page-header .caption h2 {
    font-size: 28px;
    line-height: 38px;
    max-width: 370px;
  }
}
@media only screen and (max-width: 576px) {
  .page-header .caption h2 {
    font-size: 22px;
    line-height: 28px;
    max-width: 370px;
  }
}
@media only screen and (max-width: 375px) {
  .page-header .caption h2 {
    max-width: 340px;
  }
}
@media only screen and (max-width: 360px) {
  .page-header .caption h2 {
    max-width: 320px;
  }
}
@media only screen and (max-width: 320px) {
  .page-header .caption h2 {
    max-width: 280px;
  }
}

@media only screen and (max-width: 576px) {
  .page-template-template-specialities .page-wrapper {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 375px) {
  .page-template-template-specialities .page-wrapper {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 320px) {
  .page-template-template-specialities .page-wrapper {
    padding-top: 20px;
  }
}
.page-template-template-specialities.page-id-935 .page-wrapper {
  /*@include breakpoint(320){
  	padding-top: 30px;
  }*/
}
@media only screen and (max-width: 576px) {
  .page-template-template-specialities.page-id-935 .page-wrapper {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 375px) {
  .page-template-template-specialities.page-id-935 .page-wrapper {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 360px) {
  .page-template-template-specialities.page-id-935 .page-wrapper {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 576px) {
  .page-wrapper {
    padding: 0 20px;
    padding-top: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .home .page-wrapper {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .home .page-wrapper {
    margin-top: 50px !important;
  }
}
@media only screen and (max-width: 375px) {
  .home .page-wrapper {
    margin-top: 130px !important;
  }
}

@media only screen and (max-width: 576px) {
  .intro-txt h1 {
    font-size: 21px;
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 576px) {
  .intro-txt h1 span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 576px) {
  .intro-txt p {
    line-height: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  .home .service-wrap {
    min-height: 340px !important;
  }
}
@media only screen and (max-width: 576px) {
  .home .service-wrap {
    min-height: 310px !important;
  }
}

@media only screen and (max-width: 576px) {
  .home .health-check .packages {
    padding: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .home-testimonial-wrapper .title-text h2 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 576px) {
  .home-testimonial-wrapper .title-text h2 span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .home-testimonial-wrapper .testimonial .text {
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .home-locations .location a.links:nth-child(2) {
    display: block;
  }
}

@media only screen and (max-width: 576px) {
  .events-tour > div {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .events-tour .event .desc {
    width: 100%;
    padding: 0;
  }
}

@media only screen and (max-width: 576px) {
  #main-footer {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  #main-footer .ctoa-footer {
    background-size: cover;
    margin-top: 80px !important;
  }
}
@media only screen and (max-width: 768px) {
  #main-footer .ctoa-footer {
    background-size: cover;
    margin-top: 80px !important;
    -webkit-box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
            box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
  }
}
@media only screen and (max-width: 576px) {
  #main-footer .ctoa-footer {
    background-position: -100px;
    margin-top: 40px !important;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  #main-footer .ctoa-footer h2 {
    font-size: 21px !important;
    text-align: center;
  }
}
@media only screen and (max-width: 320px) {
  #main-footer .ctoa-footer h2 {
    font-size: 18px !important;
  }
}
@media only screen and (max-width: 768px) {
  #main-footer .ctoa-footer h2 span {
    color: #fff;
  }
}
@media only screen and (max-width: 576px) {
  #main-footer .ctoa-footer h2 span {
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 1024px) {
  .home-banner .scroll-btn {
    bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner .scroll-btn {
    display: none;
  }
}

/* Doctors Pages */
@media only screen and (max-width: 1024px) {
  .grid-loop li {
    width: 48.5%;
  }
}
@media only screen and (max-width: 768px) {
  .grid-loop li {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .grid-loop li {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .grid-loop li:nth-child(n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .grid-loop li:nth-child(odd) {
    margin-right: 1.5%;
  }
}
@media only screen and (max-width: 768px) {
  .grid-loop li:nth-child(odd) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .grid-loop li:nth-child(even) {
    margin-left: 1.5%;
  }
}
@media only screen and (max-width: 768px) {
  .grid-loop li:nth-child(even) {
    margin-right: 0;
    margin-left: 0;
  }
}

@media only screen and (max-width: 576px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 {
    font-size: 21px;
    display: block;
    text-align: left;
  }
}
@media only screen and (max-width: 576px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span {
    padding: 0;
  }
}
@media only screen and (max-width: 576px) {
  #doctor-profile .doc-details .doc-details-left .doc-heading h1 span.dash {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  #search-doctors.fixed {
    bottom: 120px;
    position: absolute;
  }
}
@media only screen and (max-width: 576px) {
  #search-doctors.fixed {
    bottom: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .success-story .owl-item {
    padding: 0;
  }
}

@media only screen and (max-width: 1024px) {
  #knowmore .modal-content {
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}
@media only screen and (max-width: 768px) {
  #knowmore .modal-content {
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
    min-width: 720px;
    width: 720px;
  }
}
@media only screen and (max-width: 576px) {
  #knowmore .modal-content {
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    min-width: 350px;
    width: 350px;
  }
}
@media only screen and (max-width: 360px) {
  #knowmore .modal-content {
    min-width: 300px;
    width: 300px;
  }
}

/*Book an appointment Modal Css*/
/*Job Openings*/
@media only screen and (max-width: 567px) {
  .s-job .s-job-explore h1 {
    font-size: 21px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 567px) {
  .s-job .s-job-explore p {
    line-height: 21px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .s-job .awsm-job-container .awsm-job-item {
    padding: 25px;
  }
}
.s-job .awsm-job-container .awsm-job-item .awsm-job-specification-wrapper .awsm-job-specification-item:first-child {
  margin-right: 15%;
}

/*JOb Detailed*/
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-jobs-single-title {
    font-size: 21px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap h1 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 576px) {
  .sjob-detailed .awsm-job-single-wrap .awsm-job-entry-content p {
    line-height: 24px;
    margin-bottom: 25px;
    text-align: justify;
  }
}

@media only screen and (max-width: 576px) {
  .easy_app #eayn input[type=radio] {
    margin-left: 40px !important;
  }
}
@media only screen and (max-width: 360px) {
  .easy_app #eayn input[type=radio] {
    margin-left: 0px !important;
  }
}
@media only screen and (max-width: 320px) {
  .easy_app #eayn input[type=radio] {
    margin-left: 9px !important;
  }
}

@media only screen and (max-width: 320px) {
  .page-template-front-page .intro-txt {
    margin-top: 50px;
  }
}

.page-wrapper .spacer-lg {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1440px) {
  .page-wrapper .spacer-lg {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 820px) {
  .page-wrapper .vision-wraper {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .page-wrapper .vision-wraper {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 576px) {
  .page-wrapper .vision-wraper .desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 576px) {
  .page-wrapper .mission-wraper .desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 576px) {
  .page-wrapper .mission-wraper .desc p {
    margin: 0;
    padding: 0;
  }
}
@media only screen and (max-width: 1440px) {
  .page-wrapper .values-wraper .values {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 576px) {
  .page-wrapper .values-wraper .values {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-wrapper .values-wraper .values .value-items-holder {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  .page-wrapper .values-wraper .values .value-items-holder .value-item p {
    font-size: 14px;
    line-height: 24px;
    padding-left: 80px;
    padding-top: 6px;
  }
}
@media only screen and (max-width: 576px) {
  .page-wrapper .values-wraper .values .value-items-holder .value-item:before {
    width: 60px;
    height: 60px;
    background-size: 60%;
  }
}

@media only screen and (max-width: 576px) {
  .values-wraper .values .value-items-holder .value-items:nth-child(2) {
    margin-left: 0% !important;
  }
}

/* Breakpoint *//*# sourceMappingURL=style.css.map */