/*
 * Vendor Prefix generator
 */
/*
 * a small mixin for easy use of rem with px as fallback
 * usage: @include x-rem(font-size, 14px)
 * usage: @include x-rem(margin, 0 12px 2 1.2)
 * usage: @include x-rem(padding, 1.5 24px)
 *
 * thanks to Eric Meyer for https://github.com/ericam/susy
 * and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/
 */
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
/****************** BUTTONS **************************/
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  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;
  touch-action: manipulation;
  -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;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.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 {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  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 Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.alert[style*=inline] {
  display: block !important;
}

:root {
  font-size: 16px;
  line-height: 27px;
  font-family: "Source Sans Pro", sans-serif;
}

.container {
  max-width: 1366px;
}

h1, .h1 {
  font-size: 68px;
  line-height: 80px;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
}
@media screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 30px;
    line-height: 40px !important;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  h1, .h1 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  h1, .h1 {
    font-size: 50px;
    line-height: 60px;
  }
}
h1 strong, .h1 strong {
  font-size: 60px;
  line-height: 80px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #71bfaf;
}
@media screen and (max-width: 767px) {
  h1 strong, .h1 strong {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  h1 strong, .h1 strong {
    font-size: 45px;
    line-height: 60px;
  }
}

h2, .h2 {
  font-size: 42px;
  line-height: 56px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  h2, .h2 {
    font-size: 25px !important;
    line-height: 30px !important;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  h2, .h2 {
    line-height: 40px;
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  h2, .h2 {
    line-height: 40px;
    font-size: 30px;
  }
}
h2.primary-h2, .h2.primary-h2 {
  text-transform: capitalize;
}
h2.primary-h2 strong, .h2.primary-h2 strong {
  color: #71bfaf;
}
h2 strong, .h2 strong {
  font-size: 42px;
  line-height: 56px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #71bfaf;
}
@media screen and (max-width: 767px) {
  h2 strong, .h2 strong {
    font-size: 25px;
    line-height: 30px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  h2 strong, .h2 strong {
    line-height: 40px;
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  h2 strong, .h2 strong {
    line-height: 25px;
    font-size: 30px;
  }
}

.h2 {
  line-height: 45px;
  text-align: left !important;
  margin-bottom: 0;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .h2 {
    font-size: 20px !important;
    line-height: 25px !important;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .h2 {
    line-height: 40px !important;
    font-size: 30px !important;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .h2 {
    line-height: 40px !important;
    font-size: 30px !important;
  }
}
.h2 strong {
  font-size: 24px;
  line-height: 32px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  position: relative;
  color: #C3C3C3;
}
@media screen and (max-width: 767px) {
  .h2 strong {
    font-size: 16px;
    line-height: 20px;
  }
}
.h2 strong:after {
  content: "";
  background: #71bfaf;
  width: 60px;
  height: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
}
@media screen and (max-width: 767px) {
  .h2 strong:after {
    width: 40px;
    right: -50px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .h2 strong:after {
    right: -80px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .h2 strong:after {
    right: -75px;
  }
}
.h2.white {
  color: white;
}
.h2.white strong {
  color: white;
}
.h2.white strong:after {
  background: white;
}

.container > .h2 {
  text-align: center !important;
}
.container > .h2 strong:after {
  top: unset;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .container > .h2 strong:after {
    bottom: -17px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .container > .h2 strong:after {
    bottom: -18px;
  }
}

h3 {
  font-size: 24px;
  line-height: 30px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
h3 strong {
  color: #71bfaf;
  font-weight: 700;
}

p {
  font-size: 16px;
  line-height: 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #000000;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 19px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  p {
    font-size: 16px;
    line-height: 22px;
  }
}

a {
  font-family: "Source Sans Pro", sans-serif;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a {
    font-size: 15px;
    line-height: 25px;
  }
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}
ul li {
  display: inline-block;
  list-style: none;
}

@media screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 30px;
    line-height: 45px;
  }
  h2, .h2 {
    font-size: 28px;
    line-height: 38px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
a {
  color: #000000;
}
a:hover {
  color: #5b779d;
}

img {
  max-width: 100%;
}

.social-links {
  list-style: none;
  padding: 0;
}
.social-links li {
  display: inline-block;
}

.btn-style {
  display: inline-block;
  position: relative;
  height: 50px;
  padding: 14px 14px;
  text-align: center;
  text-transform: capitalize;
  background: linear-gradient(90deg, #5aa1bf 0, #71bfaf 50%, #71bfaf 100%) !important;
  background-size: 200% !important;
  background-position: 100% !important;
  vertical-align: middle;
  transition: all 0.5s;
  min-width: 193px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Source Sans Pro", sans-serif;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .btn-style {
    min-width: 150px;
  }
}
.btn-style:hover, .btn-style:focus, .btn-style:active {
  color: #ffffff;
  background-position: 0 !important;
}

.btn-link {
  color: #2D2D2D;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

label {
  line-height: 26px;
  color: #2D2D2D;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  label {
    font-size: 14px !important;
    margin: 0;
    line-height: 16px !important;
  }
}

.form-control {
  border: 0 solid #eeeeee;
  background-color: rgba(69, 69, 69, 0.05);
  box-shadow: none;
  height: 40px;
  border-radius: 0;
  padding-left: 15px;
  font-family: "Source Sans Pro", sans-serif;
  color: #2D2D2D;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: inherit;
}
.form-control::-webkit-input-placeholder {
  color: #2D2D2D;
}
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #2D2D2D;
}
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #2D2D2D;
}
.form-control:-ms-input-placeholder {
  color: #2D2D2D;
}
.form-control:focus, .form-control:active, .form-control:hover {
  color: #2D2D2D;
  outline: none;
  box-shadow: none;
  background-color: rgba(69, 69, 69, 0.05);
}

.form-group {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .form-group {
    margin-bottom: 10px;
  }
}

textarea.form-control {
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 150px;
  max-height: 200px;
  resize: none;
}
@media screen and (max-width: 767px) {
  textarea.form-control {
    min-height: 100px;
    max-height: 100px;
  }
}

.screen-reader-response, .wpcf7-validation-errors {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #2D2D2D;
  text-shadow: 0 0 0;
  line-height: 47px;
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin-top: 8px;
}

.wpcf7-mail-sent-ok {
  text-align: center;
  padding: 10px !important;
  margin: 20px auto 0;
  font-weight: 600;
  width: 100%;
  display: block;
  max-width: 100%;
  clear: both;
  margin-top: 90px;
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

div.wpcf7-validation-errors {
  border: 2px solid #f7e700;
  text-align: center;
  padding: 10px 30px !important;
  font-weight: 600;
  width: 100%;
  display: block;
  max-width: 100%;
  clear: both;
}

.pagination {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
  display: inline-block;
}
.pagination li {
  display: inline-block;
  margin: 0 3px;
}
.pagination li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  display: inline-block;
  height: 40px;
  width: 40px;
  padding: 2px;
  border: 1px solid #71bfaf;
  color: #71bfaf;
  transition: 0.5s;
  padding-top: 8px;
}
.pagination li a:hover, .pagination li a:focus, .pagination li a:active {
  background: #71bfaf;
  color: #ffffff;
  border: 1px solid #71bfaf;
  text-decoration: none;
}
.pagination li.active a {
  background: #71bfaf;
  color: #ffffff;
  border: 1px solid #71bfaf;
}
.pagination li.active a:hover {
  background: #71bfaf;
  color: #ffffff;
  border: 1px solid #71bfaf;
  text-decoration: none;
}

.wpcf7-not-valid-tip {
  color: #71bfaf;
  line-height: 20px;
  font-size: 12px !important;
  font-weight: normal;
  margin-top: 8px;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.container.smaller {
  max-width: 900px;
}

.container.more-smaller {
  max-width: 700px;
}

.blue-bg {
  background: #59A2CB;
}

.silver-bg {
  background: #f6f6f6;
}

.red-bg {
  background: #b21212;
}
.red-bg .btn-style {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.red-bg .btn-style:before {
  background: #ffffff;
}
.red-bg .btn-style:hover, .red-bg .btn-style:active, .red-bg .btn-style:focus {
  color: #b21212;
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  section {
    padding: 45px 0;
  }
}
@media screen and (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

.no-style-submit {
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  padding: 14px 20px;
  width: 100%;
  text-indent: 0;
  z-index: 9999;
  font-weight: 500;
  transition: 0.5s;
}

.container > h2 {
  text-align: center;
  position: relative;
  margin-bottom: 17px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .container > h2 {
    margin-bottom: 30px;
  }
}

.owl-dot:hover, .owl-dot:focus, .owl-dot:active, .owl-nav button:hover, .owl-nav button:focus, .owl-nav button:active {
  outline: none;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list li {
  display: inline-block;
}

.owl-dots {
  display: none !important;
}

.owl-carousel .owl-nav {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav {
    display: none !important;
  }
}
.owl-carousel .owl-nav span {
  display: none !important;
}
.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
}
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
}

img.float-left {
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  img.float-left {
    margin-right: 0;
    width: 100%;
  }
}

img.float-right {
  margin-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  img.float-right {
    margin-left: 0;
    width: 100%;
  }
}

.image-wrapper {
  overflow: hidden;
}
.image-wrapper img {
  transition: 0.5s;
}
.image-wrapper:hover img, .image-wrapper:focus img, .image-wrapper:active img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

#menu-btn {
  display: none;
  position: absolute;
  top: 30px;
  right: 15px;
  height: 25px;
  width: 25px;
  background: url("../img/svg/001-menu.png") no-repeat;
  background-size: 100%;
  z-index: 9999;
}
#menu-btn.active {
  background: url("../img/svg/002-cancel.png") no-repeat;
  background-size: 100%;
  z-index: 99999;
  position: fixed;
  top: 30px;
  right: 18px;
  left: auto;
  margin: auto;
  height: 30px;
  width: 20px;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #menu-btn {
    display: none;
    top: 34px;
  }
  #menu-btn.active {
    top: 35px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #menu-btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #menu-btn {
    display: block;
  }
}

#main-menu {
  display: block;
}
@media screen and (max-width: 767px) {
  #main-menu {
    display: none;
    background: #ffffff;
    margin-top: 0;
    position: fixed;
    height: 100%;
    text-align: center !important;
    z-index: 9999;
    padding: 20px 0;
    left: 0;
    width: 100%;
    top: 0;
    padding-top: 100px;
  }
  #main-menu ul {
    padding-left: 20px;
    /*    padding-top: 100px;
        top: 0;*/
    width: 100%;
  }
  #main-menu ul li {
    display: block;
    text-align: left;
  }
  #main-menu ul li a {
    display: block;
  }
  #main-menu.active {
    display: block;
  }
}

.captcha-image {
  border-color: #eeeeee !important;
  width: 100%;
}

.split2 {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
@media screen and (max-width: 767px) {
  .split2 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.split3 {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}
@media screen and (max-width: 767px) {
  .split3 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.gray-bg {
  background: #f6f6f6;
}

.text-black {
  color: #000000 !important;
}

[class^=icon-], [class^=svg-] {
  display: inline-block;
}

@media screen and (max-width: 991px) {
  [class^=svg-b] {
    display: none !important;
  }
}

.ekko-lightbox-nav-overlay {
  display: flex !important;
  z-index: 999999;
}

.error-404 {
  padding: 100px 0;
}

.coming-soon {
  padding: 100px 0;
}

.admin-bar header {
  top: 32px;
}

.standard-content {
  font-size: 16px;
  line-height: 24px;
}
.standard-content h3, .standard-content h4, .standard-content h5, .standard-content h6 {
  margin: 0 0 10px;
}
.standard-content h3 {
  font-weight: 700;
  margin: 35px 0 5px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .standard-content h3 {
    font-size: 16px;
    line-height: 24px;
    margin: 25px 0 5px;
  }
}
.standard-content h4 {
  font-weight: 600;
  padding: 12px 0 5px;
  margin: 0;
}
.standard-content hr {
  margin: 0 0 15px;
  border-top: 1px solid #d6dfe8;
}
.standard-content p {
  font-size: 16px;
  margin: 0 0 20px;
}
.standard-content ol, .standard-content ul {
  font-size: 16px;
}
.standard-content ol.wrapped li, .standard-content ul.wrapped li {
  font-weight: 600;
  color: #2D2D2D;
  font-size: 16px;
}
.standard-content ol.wrapped li span, .standard-content ul.wrapped li span {
  font-weight: 400;
  color: #2D2D2D;
  display: inline-block;
  vertical-align: top;
}
.standard-content ol.wrapped li span {
  margin-left: 3px;
}
.standard-content ul {
  padding: 0;
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
  font-size: 16px;
}
.standard-content ul li {
  font-size: 16px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.standard-content ul li ul {
  margin: 0;
  font-size: 16px;
}
.standard-content ul li:before {
  content: "";
  left: 0;
  top: 9px;
  background: #ffffff;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 2px solid #5b779d;
  display: block;
  position: absolute;
  transition: 0.1s;
}
.standard-content ul li:hover {
  /*&:before {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid $blue;
    border-bottom: 5px solid transparent;
    border-radius: 0;
    border-right: 0;
  }*/
}
.standard-content ul.social-icons li {
  padding-left: 25px;
}
.standard-content ul.social-icons li:before {
  background: url("../img/sprite.png") no-repeat;
  left: 0;
  top: 9px;
  border-radius: 0;
  border: none;
}
.standard-content img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  margin: 20px 0;
}
.standard-content img.left, .standard-content img[style*="float: left;"], .standard-content img[style*="float:left;"] {
  width: auto;
  height: auto;
  float: left;
  margin: 7px 15px 10px 0;
}
@media screen and (max-width: 767px) {
  .standard-content img.left, .standard-content img[style*="float: left;"], .standard-content img[style*="float:left;"] {
    float: none !important;
    display: block;
    margin: 20px 0 20px 0;
  }
}
.standard-content img.right, .standard-content img[style*="float: right;"], .standard-content img[style*="float:right;"] {
  width: auto;
  height: auto;
  float: right;
  margin: 7px 0 10px 15px;
}
@media screen and (max-width: 767px) {
  .standard-content img.right, .standard-content img[style*="float: right;"], .standard-content img[style*="float:right;"] {
    float: none !important;
    display: block;
    margin: 20px 0 20px 0;
  }
}
.standard-content img.kv-play-icon {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  margin: auto !important;
}
.standard-content figure {
  margin: 0 0 10px;
}
.standard-content figure figcaption {
  text-align: center;
  font-style: italic;
  font-size: 12px;
}
.standard-content dl {
  margin: 0 0 10px;
  font-size: 16px;
}
.standard-content dl dd {
  padding: 0 0 0 10px;
  margin: 0 0 10px;
  font-size: 16px;
}
.standard-content meter {
  width: 100%;
  margin: 0 0 10px;
}
.standard-content progress {
  width: 100%;
  margin: 0 0 10px;
}
.standard-content details {
  margin: 0 0 10px;
}
.standard-content details summary {
  font-weight: bold;
}
.standard-content details p {
  margin-left: 15px;
}
.standard-content blockquote {
  margin: 0 0 30px;
}
.standard-content blockquote:before, .standard-content blockquote:after {
  font-size: 20px;
  content: '"';
}
.standard-content table {
  visibility: hidden;
}
.standard-content table.table {
  visibility: visible;
}
.standard-content .table-wrapper {
  width: 100%;
  overflow-y: auto;
  padding-bottom: 6px;
  margin: 25px 0 20px;
}
@media screen and (max-width: 767px) {
  .standard-content .table-wrapper {
    margin: 15px 0 15px;
  }
}
.standard-content .table-wrapper::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
}
.standard-content .table-wrapper::-webkit-scrollbar-thumb {
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
}
.standard-content .table-wrapper table {
  visibility: visible;
  width: 100%;
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .standard-content .table-wrapper table {
    width: 1200px;
    font-size: 17px;
  }
}
.standard-content .table-wrapper table caption {
  display: none;
}
.standard-content .table-wrapper table thead {
  background-color: #b21212;
}
.standard-content .table-wrapper table thead tr th {
  color: #ffffff;
  line-height: 28px;
  font-weight: 600;
  border-bottom: 0;
  padding: 12px 15px;
  text-transform: uppercase;
  font-size: 16px;
}
.standard-content .table-wrapper table tbody tr td {
  padding: 15px 15px;
  font-weight: 500;
  font-size: 16px;
}
.standard-content .table-wrapper table tbody tr:last-of-type {
  border-bottom: 1px solid #eeeeee;
}
.standard-content iframe {
  display: block;
}
.standard-content .embed-responsive {
  margin-top: 25px;
  margin-bottom: 25px;
}
.standard-content .embed-responsive iframe {
  visibility: visible;
}
.standard-content .show-iframe iframe {
  visibility: visible;
  width: 100%;
  height: 530px;
}
@media screen and (max-width: 767px) {
  .standard-content .show-iframe iframe {
    height: 257px;
  }
}
.standard-content .show-iframe iframe[src*="/slideshows/"] {
  width: 100% !important;
  max-width: 100% !important;
  height: 530px !important;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .standard-content .show-iframe iframe[src*="/slideshows/"] {
    height: 257px !important;
  }
}
.standard-content iframe.cke_wysiwyg_frame.cke_reset {
  visibility: visible;
}
.standard-content a.btn {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  .standard-content a.btn {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.standard-content a.btn-download span, .standard-content a.btn-download strong {
  display: inline-block;
  margin-right: 10px;
}
.standard-content #h5 {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .standard-content #h5[style*=width] {
    width: 0 !important;
    height: 0 !important;
    overflow: hidden;
  }
}
.standard-content .centered-image img {
  left: auto !important;
  transform: none;
}

body {
  padding: 93px 0 0;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  body {
    padding: 79px 0 0;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding: 84px 0 0;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: #ffffff;
  z-index: 11;
  box-shadow: 0 27px 29px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 767px) {
  #header #navbar {
    display: none;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 5px;
    width: calc(100% - 35px);
    box-shadow: 0 50px 100px -12px rgba(0, 0, 0, 0.15), 0 30px 60px -30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(0, 0, 0, 0.1);
  }
  #header #navbar.active {
    display: block;
  }
}
#header #navbar ul.menu {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #header #navbar ul.menu {
    text-align: left;
  }
}
#header #navbar ul.menu li:not(:last-of-type) {
  margin: 0 40px 0 0;
}
@media screen and (max-width: 767px) {
  #header #navbar ul.menu li {
    display: block;
    padding: 14px 22px;
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #DBEEFD;
  }
}
@media screen and (max-width: 767px) {
  #header #navbar ul.menu li:last-of-type {
    border-bottom: none;
  }
}
#header #navbar ul.menu li a {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #header a.logo img {
    width: 120px;
  }
}
#header .col-md-3 {
  text-align: right;
}
#header .col-md-3 a.btn-style {
  position: relative;
}
#header .col-md-3 a.btn-style:first-of-type {
  margin: 0 0 0 0;
}

#home-page-banner {
  background-image: url("../img/home-page-banner-image.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 1000px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #home-page-banner {
    padding: 80px 0;
    min-height: auto;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #home-page-banner {
    min-height: 700px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #home-page-banner {
    min-height: 800px;
  }
}
#home-page-banner .wrapper {
  padding: 30px 20px;
  background: rgba(90, 161, 191, 0.8);
}
#home-page-banner .wrapper h1 {
  margin-bottom: 20px;
  color: #fff;
}
#home-page-banner .wrapper p {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
}
#home-page-banner .wrapper a {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  color: #fff;
}

#dental-employee .container {
  position: relative;
  padding-top: 65px;
}
#dental-employee .container:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 84%;
  width: 88%;
  background: #b6ede2 url(../img/svg/dental-employee-bd.svg) no-repeat;
  background-size: cover;
  background-position: left;
  border-radius: 80px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #dental-employee .container:before {
    display: none;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dental-employee .container:before {
    right: 0;
    width: 85%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #dental-employee .container:before {
    right: 0;
    background-position: right;
  }
}
#dental-employee .container .col-xl-6 .img-wrapper {
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px -6px rgba(0, 0, 0, 0.04);
}
#dental-employee .container .col-xl-6 .img-wrapper img {
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  height: 563px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #dental-employee .container .col-xl-6 .img-wrapper img {
    border-top-left-radius: initial;
    border-bottom-right-radius: initial;
    height: auto;
  }
}
#dental-employee .container .col-xl-6 .content-wrapper {
  padding: 30px 15px 0 70px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #dental-employee .container .col-xl-6 .content-wrapper {
    padding: 0;
    margin: 30px 0 0;
  }
}
#dental-employee .container .col-xl-6 .content-wrapper h2 {
  margin-bottom: 0;
}
#dental-employee .container .col-xl-6 .content-wrapper p {
  color: #37404e;
  margin: 30px 0;
  font-size: 18px;
  line-height: 27px;
}
@media screen and (max-width: 767px) {
  #dental-employee .container .col-xl-6 .content-wrapper p {
    margin: 20px 0;
  }
}
#dental-employee .container .col-xl-6 .content-wrapper a.btn-style:first-of-type {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  #dental-employee .container .col-xl-6 .content-wrapper a.btn-style:first-of-type {
    margin: 0 0 10px 0;
  }
}

#dental-plans {
  background: #5b779d;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  #dental-plans {
    padding: 45px 0;
  }
}
#dental-plans h2 {
  color: #ffffff;
  margin-right: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #dental-plans h2 {
    margin: 0 0 12px 0;
  }
}
#dental-plans a {
  display: inline-block;
  vertical-align: middle;
}

#get-hired-candidate {
  background-image: url("../img/get-hired-candidate-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  #get-hired-candidate {
    padding: 50px 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #get-hired-candidate {
    padding: 100px 0;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #get-hired-candidate {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  #get-hired-candidate .col-xl-6:first-of-type {
    order: 2;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #get-hired-candidate .col-xl-6:first-of-type {
    order: 2;
    padding: 0 45px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #get-hired-candidate .col-xl-6:first-of-type {
    order: 2;
  }
}
#get-hired-candidate .col-xl-6:first-of-type .content-wrapper {
  background-color: #5b779d;
  border-radius: 10px;
  padding: 55px 70px;
}
@media screen and (max-width: 767px) {
  #get-hired-candidate .col-xl-6:first-of-type .content-wrapper {
    padding: 35px 30px;
  }
}
#get-hired-candidate .col-xl-6:first-of-type .content-wrapper h2 {
  margin-bottom: 0;
  color: #ffffff;
}
#get-hired-candidate .col-xl-6:first-of-type .content-wrapper p {
  color: #ffffff;
  margin: 40px 0;
}
#get-hired-candidate .col-xl-6:first-of-type .content-wrapper a.btn-style:first-of-type {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  #get-hired-candidate .col-xl-6:first-of-type .content-wrapper a.btn-style:first-of-type {
    margin: 0 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  #get-hired-candidate .col-xl-6:last-of-type {
    order: 1;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #get-hired-candidate .col-xl-6:last-of-type {
    order: 1;
    text-align: center;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #get-hired-candidate .col-xl-6:last-of-type {
    order: 1;
    text-align: center;
  }
}
#get-hired-candidate .col-xl-6:last-of-type img {
  position: absolute;
  bottom: 0;
  max-height: 600px;
}
@media screen and (max-width: 767px) {
  #get-hired-candidate .col-xl-6:last-of-type img {
    position: relative;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #get-hired-candidate .col-xl-6:last-of-type img {
    position: relative;
    max-height: 500px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #get-hired-candidate .col-xl-6:last-of-type img {
    position: relative;
  }
}

#dashboard {
  background-color: #fafafa;
}
#dashboard .dashboard-sidebar {
  position: absolute;
  top: 94px;
  left: 0;
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.1);
  background-color: white;
  height: calc(100% - 94px);
  width: 35vh;
  overflow: auto;
}
#dashboard .dashboard-sidebar::-webkit-scrollbar {
  width: 2px;
}
#dashboard .dashboard-sidebar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px white;
}
#dashboard .dashboard-sidebar::-webkit-scrollbar-thumb {
  background-color: #dee2e6;
  outline: 1px solid #dee2e6;
  border-radius: 5px;
}
#dashboard .dashboard-sidebar ul.dashboard-menu {
  border-top: 1px solid #f1f4f9;
}
#dashboard .dashboard-sidebar ul.dashboard-menu li {
  display: block;
  border-top: 1px solid #f1f4f9;
  padding: 0 25px 0;
  position: relative;
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:after {
  content: "";
  background: #7e7e7e;
  width: 5px;
  position: absolute;
  height: 0;
  left: 0;
  top: 0;
  transition: height 0.3s;
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:hover:after {
  height: 100%;
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:first-of-type {
  border-top: none;
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:nth-of-type(2) a:before {
  background-image: url("../img/dashboard-job-board-icon.png");
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:nth-of-type(3) a:before {
  background-image: url("../img/dashboard-profile-icon.png");
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:nth-of-type(4) a:before {
  background-image: url("../img/dashboard-job-board-icon.png");
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:nth-of-type(5) a:before {
  background-image: url("../img/dashboard-schedule-icon.png");
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:nth-of-type(6) a:before {
  background-image: url("../img/dashboard-stat-icon.png");
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:nth-of-type(7) a:before {
  background-image: url("../img/dashboard-settings-icon.png");
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:nth-of-type(8) a:before {
  background-image: url("../img/dashboard-rewards-icon.png");
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:nth-of-type(9) a:before {
  background-image: url("../img/dashboard-problem-report-icon.png");
}
#dashboard .dashboard-sidebar ul.dashboard-menu li:nth-of-type(10) a:before {
  background-image: url("../img/dashboard-logout-icon.png");
}
#dashboard .dashboard-sidebar ul.dashboard-menu li a {
  color: #7e7e7e;
  padding: 15px 30px;
  display: block;
  font-weight: 400;
  font-size: 17px;
  position: relative;
}
#dashboard .dashboard-sidebar ul.dashboard-menu li a:before {
  content: "";
  background-image: url("../img/dashboard-home-icon.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  transform: translateY(-50%);
}

footer {
  padding: 0;
  background: #5b779d;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  footer {
    padding-top: 30px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  footer {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 30px;
  }
}
footer .logo {
  margin-bottom: 0;
  display: inline-block;
}
footer .phone-wrapper {
  text-align: right;
  padding: 40px 0;
}
footer .phone-wrapper a {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767px) {
  footer .phone-wrapper a {
    font-size: 20px;
    line-height: 33px;
  }
}
footer h3 {
  color: #ffffff;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  footer h3 {
    font-size: 22px;
    line-height: 27px;
  }
}
@media screen and (max-width: 767px) {
  footer h3 {
    margin: 20px 0 15px;
  }
}
footer .logo img {
  height: 100px;
}
footer ul li {
  display: block;
  margin-bottom: 10px;
}
footer ul li a {
  color: #ffffff;
}
footer ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
footer .bottom-bar {
  background: #71bfaf;
  padding: 25px 0 20px;
  margin-top: 0;
}
footer .bottom-bar p {
  font-size: 12px;
  margin-bottom: 0;
}
footer .bottom-bar p:last-of-type {
  margin-bottom: 0;
}
footer .bottom-bar .social-links {
  text-align: right;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  footer .bottom-bar .social-links {
    text-align: left;
    margin: 25px 0 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  footer .bottom-bar .social-links {
    margin: 25px 0 0;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  footer .bottom-bar .social-links {
    text-align: left;
    margin: 15px 0 0;
  }
}
footer .bottom-bar .social-links li {
  height: 50px;
  width: 50px;
  background: #5b779d;
  border-radius: 50%;
  text-align: center;
  margin-left: 15px;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  footer .bottom-bar .social-links li {
    height: 45px;
    width: 45px;
  }
}
footer .bottom-bar .social-links li:hover {
  box-shadow: 0 0 10px #5b779d;
}
footer .bottom-bar .social-links li a {
  height: 50px;
  width: 50px;
  font-size: 30px;
  padding-top: 3px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  footer .bottom-bar .social-links li a {
    height: 45px;
    width: 45px;
  }
}
@media screen and (max-width: 767px) {
  footer .bottom-bar .social-links li a i {
    font-size: 24px;
  }
}
footer .bottom-bar .social-links li a:hover {
  text-decoration: none;
}

#main-content .container > h2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #main-content .container > h2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  #main-content .container > h2 {
    margin-bottom: 40px;
  }
}
#main-content .content-div {
  margin-bottom: 30px;
}
#main-content .content-div h3 {
  margin-bottom: 15px;
}
#main-content .content-div p {
  color: #6d6969;
}

#page-404 {
  display: flex;
  align-items: center;
  height: calc(100vh - 93px);
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #page-404 {
    height: auto;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #page-404 {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  #page-404 {
    height: auto;
  }
}
#page-404 .content-wrapper h1 {
  font-size: 300px !important;
  line-height: 0.7;
  font-weight: 700;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #page-404 .content-wrapper h1 {
    font-size: 200px !important;
  }
}
@media screen and (max-width: 767px) {
  #page-404 .content-wrapper h1 {
    font-size: 100px !important;
  }
}
#page-404 .content-wrapper h1 strong {
  font-size: 300px !important;
  color: #00ca99;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #page-404 .content-wrapper h1 strong {
    font-size: 200px !important;
  }
}
@media screen and (max-width: 767px) {
  #page-404 .content-wrapper h1 strong {
    font-size: 100px !important;
  }
}
#page-404 .content-wrapper h2 {
  margin: 30px 0 10px;
}
#page-404 .content-wrapper p {
  color: #6d6969;
}

@media screen and (max-width: 767px) {
  #dental-offices-coverage .col-md-4 {
    margin-bottom: 20px;
  }
}

#dental-staff .img-wrapper {
  margin: 0 0 45px;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #dental-staff .img-wrapper {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dental-staff .img-wrapper {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  #dental-staff .img-wrapper {
    margin-bottom: 40px;
  }
}
#dental-staff .img-wrapper img {
  border-radius: 5px;
  height: 570px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #dental-staff .img-wrapper img {
    border-radius: 5px;
    height: auto;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dental-staff .img-wrapper img {
    border-radius: 5px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  #dental-staff .img-wrapper img {
    border-radius: 5px;
    height: auto;
  }
}
#dental-staff .content-div {
  padding: 0 50px 0 0;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dental-staff .content-div {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #dental-staff .content-div {
    padding: 0;
  }
}
#dental-staff .content-div h2 {
  margin-bottom: 30px;
  color: #71bfaf;
}
#dental-staff .content-div p {
  color: #6d6969;
}
#dental-staff .col-xl-6 {
  /*&:first-of-type{
    @media screen and (max-width: 1199px) and (min-width: 992px) {
      order: 2;
    }
    @media screen and (max-width: 991px) and (min-width: 768px) {
      order: 2;
    }
    @media screen and (max-width: $screen-xs) {
      order: 2;
    }
  }
  &:last-of-type{
    @media screen and (max-width: 1199px) and (min-width: 992px) {
      order: 1;
    }
    @media screen and (max-width: 991px) and (min-width: 768px) {
      order: 1;
    }
    @media screen and (max-width: $screen-xs) {
      order: 1;
    }
  }
  .img-wrapper{
    @media screen and (max-width: 1199px) and (min-width: 992px) {
      margin-bottom: 50px;
    }
    @media screen and (max-width: 991px) and (min-width: 768px) {
      margin-bottom: 50px;
    }
    @media screen and (max-width: $screen-xs) {
      margin-bottom: 40px;
    }
    img{
      border-top-right-radius: 100px;
      border-bottom-left-radius: 100px;
      height: 570px;
      object-fit: cover;
      @media screen and (max-width: 1199px) and (min-width: 992px) {
        border-radius: 5px;
        height: auto;
      }
      @media screen and (max-width: 991px) and (min-width: 768px) {
        border-radius: 5px;
        height: auto;
      }
      @media screen and (max-width: $screen-xs) {
        border-radius: 5px;
        height: auto;
      }
    }
  }
  .content-div{
    padding: 0 50px 0 0;
    @media screen and (max-width: 991px) and (min-width: 768px) {
      padding: 0;
    }
    @media screen and (max-width: $screen-xs) {
      padding: 0;
    }
    h2{
      margin-bottom: 30px;
      color: $primary;
    }
    p{
      color: #6d6969;
    }
  }*/
}

#dental-office-steps {
  background-image: url("../img/dental-steps-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#dental-office-steps .container > h2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #dental-office-steps .col-md-4 {
    margin-bottom: 20px;
  }
}

#dental-office-timesheet {
  background: #5b779d;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  #dental-office-timesheet {
    padding: 45px 0;
  }
}
#dental-office-timesheet h2 {
  color: #ffffff;
  margin-right: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dental-office-timesheet h2 {
    margin: 0 50px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  #dental-office-timesheet h2 {
    margin: 0 0 20px 0;
  }
}
#dental-office-timesheet a {
  display: inline-block;
  vertical-align: middle;
}

#dental-office-form .container > h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dental-office-form .container > h2 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #dental-office-form .container > h2 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  #dental-temp-coverage .col-md-4 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  #dental-temp-guide .col-md-6 .img-wrapper {
    margin-bottom: 20px;
  }
}
#dental-temp-guide .col-md-6 .img-wrapper img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #dental-temp-guide .col-md-6 .img-wrapper img {
    height: 400px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dental-temp-guide .col-md-6 .img-wrapper img {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  #dental-temp-guide .col-md-6 .img-wrapper img {
    height: 300px;
  }
}

#dental-temp-timesheet {
  background: #5b779d;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  #dental-temp-timesheet {
    padding: 45px 0;
  }
}
#dental-temp-timesheet h2 {
  color: #ffffff;
  margin-right: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dental-temp-timesheet h2 {
    margin: 0 50px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  #dental-temp-timesheet h2 {
    margin: 0 0 20px 0;
  }
}
#dental-temp-timesheet a {
  display: inline-block;
  vertical-align: middle;
}

#dental-temps-steps {
  background-image: url("../img/dental-steps-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#dental-temps-steps .container > h2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #dental-temps-steps .col-md-4 {
    margin-bottom: 20px;
  }
}

#dental-temp-form .container > h2 {
  margin-bottom: 10px;
}
#dental-temp-form .container > p {
  margin-bottom: 50px;
}
#dental-temp-form .form .col-md-6:nth-of-type(3) {
  text-align: right;
}
#dental-temp-form .form .col-md-6:nth-of-type(4) {
  text-align: left;
}

#contact-info .container > h2 {
  margin-bottom: 0;
}
#contact-info .container > p {
  margin: 15px 0 50px;
  color: #696969;
}
@media screen and (max-width: 767px) {
  #contact-info .container > p {
    margin: 15px 0 30px;
  }
}
#contact-info .col-xl-3 .contact-info-card {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
  padding: 25px 18px 25px 93px;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  text-align: left;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #contact-info .col-xl-3 .contact-info-card {
    padding: 20px 18px 20px 93px;
  }
}
@media screen and (max-width: 767px) {
  #contact-info .col-xl-3 .contact-info-card {
    padding: 15px 18px 20px 93px;
    margin-bottom: 20px;
  }
}
#contact-info .col-xl-3 .contact-info-card h3 {
  margin-bottom: 2px;
  font-size: 20px;
}
#contact-info .col-xl-3 .contact-info-card p, #contact-info .col-xl-3 .contact-info-card a {
  color: #696969;
  margin-bottom: 0;
  font-size: 14px;
}
#contact-info .col-xl-3 .contact-info-card i {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 58px;
  height: 80px;
  line-height: 80px;
  font-size: 30px;
  text-align: center;
  border-radius: 5px;
}
#contact-info .col-xl-3 .contact-info-card .contact-info-bg {
  color: #fa5f1c;
  background-color: #fee7dd;
}
#contact-info .col-xl-3 .contact-info-card .contact-info-bg2 {
  color: #00ca99;
  background-color: #d9f7f0;
}
#contact-info .col-xl-3 .contact-info-card .contact-info-bg3 {
  color: #ffb300;
  background-color: #fff4d9;
}
#contact-info .col-xl-3 .contact-info-card .contact-info-bg4 {
  color: #62e3f1;
  background-color: #e8fbfd;
}

#map {
  padding: 0;
}
#map iframe {
  display: block;
  width: 100%;
  height: 500px;
}

#contact-us-form .form {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}
#contact-us-form .form > h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
#contact-us-form .form .form-group {
  text-align: left;
}
#contact-us-form .form .form-group label {
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  color: #212529;
}
@media screen and (max-width: 767px) {
  #contact-us-form .form .form-group label {
    margin-bottom: 10px;
  }
}
#contact-us-form .form .form-group .form-control {
  height: 50px;
  color: #696969;
  border: none;
  background-color: #f8f8f8;
  font-size: 15px;
  padding: 15px 20px;
  width: 100%;
  border-radius: 0;
  font-weight: 400;
  line-height: 1.5;
}

#dynamic-banner {
  position: relative;
  padding: 0;
}
#dynamic-banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#dynamic-banner img {
  background-size: cover;
  width: 100%;
  min-height: 523px;
  max-height: 523px;
  object-fit: cover;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #dynamic-banner img {
    min-height: 400px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dynamic-banner img {
    min-height: 350px;
  }
}
@media screen and (max-width: 767px) {
  #dynamic-banner img {
    min-height: 300px;
  }
}
#dynamic-banner .content-wrapper {
  padding: 120px 0;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /*ul{
    li{
      position: relative;
      &:not(:last-of-type){
        margin: 0 30px 0 0;
        &:after{
          content: '';
          position: absolute;
          bottom: 8px;
          right: -21px;
          height: 5px;
          width: 5px;
          border-radius: 50px;
          background-color: #00ca99;
        }
      }
      a{
        color: $white;
        font-weight: 600;
        font-size: 18px;
        @media screen and (max-width: $screen-xs) {
          font-size: 15px;
        }
      }
    }
  }*/
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #dynamic-banner .content-wrapper {
    padding: 100px 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #dynamic-banner .content-wrapper {
    padding: 70px 0;
  }
}
@media screen and (max-width: 767px) {
  #dynamic-banner .content-wrapper {
    padding: 45px 0;
  }
}
#dynamic-banner .content-wrapper h1 {
  color: #ffffff;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #dynamic-banner .content-wrapper h1 {
    margin-bottom: 0;
  }
}
#dynamic-banner .content-wrapper a, #dynamic-banner .content-wrapper p, #dynamic-banner .content-wrapper span {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  #dynamic-banner .content-wrapper a, #dynamic-banner .content-wrapper p, #dynamic-banner .content-wrapper span {
    font-size: 15px;
  }
}
#dynamic-banner .content-wrapper p a {
  color: #71bfaf;
}
#dynamic-banner .content-wrapper #breadcrumbs .parent-url {
  position: relative;
  margin: 0 30px 0 0;
}
#dynamic-banner .content-wrapper #breadcrumbs .parent-url:after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -21px;
  height: 5px;
  width: 5px;
  border-radius: 50px;
  background-color: #00ca99;
}

.dental-card {
  padding: 40px 35px;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(56, 152, 226, 0.3);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .dental-card {
    padding: 20px 20px;
  }
}
.dental-card:before {
  width: 110px;
  height: 110px;
  position: absolute;
  left: -60px;
  top: -60px;
  content: "";
  background-color: #1967d2;
  border-radius: 50%;
  opacity: 0.04;
  z-index: -1;
}
.dental-card:after {
  width: 110px;
  height: 110px;
  position: absolute;
  right: -60px;
  bottom: -60px;
  content: "";
  background-color: #1967d2;
  border-radius: 50%;
  opacity: 0.04;
  z-index: -1;
}
.dental-card h3 {
  margin-bottom: 15px;
}
.dental-card p {
  margin-bottom: 0;
  color: #17171d;
  font-size: 15px;
  line-height: 23px;
}

.dental-steps-cards {
  text-align: center;
  padding: 35px 35px;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(56, 152, 226, 0.3);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  height: 100%;
}
.dental-steps-cards .img-wrapper img {
  width: 130px;
}
.dental-steps-cards .content-wrapper h3 {
  color: #71bfaf;
  margin: 20px 0 15px;
}
.dental-steps-cards .content-wrapper p {
  color: #6d6969;
  margin-bottom: 0;
}

.form {
  width: 900px;
  margin: auto;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .form {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .form {
    width: auto;
  }
}
.form .form-group {
  position: relative;
}
@media screen and (max-width: 767px) {
  .form .form-group {
    text-align: left !important;
  }
}
.form .form-group .form-control {
  height: 52px;
  color: #60697b;
  background-color: #fefefe;
  border: 1px solid rgba(8, 60, 130, 0.07);
  border-radius: 0.4rem;
  box-shadow: 0 0 1.25rem rgba(30, 34, 40, 0.04);
}
.form .form-group .form-control::placeholder {
  color: #60697b;
}
.form .form-group .wpcf7-not-valid-tip {
  color: red;
  text-align: left;
}
.form .form-group input.btn-style {
  border: none;
}
.form .form-group input[type=file] {
  height: 0;
  overflow: hidden;
  width: 0;
}
@media screen and (max-width: 767px) {
  .form .form-group input[type=submit] {
    margin-top: 25px;
  }
}
.form .col-md-6 span[data-name=your-resume], .form .col-md-6 span[data-name=your-certificate] {
  display: none;
}
.form .col-md-6 .select-date {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.form .col-md-6 .select-date span[data-name=selected-date] {
  width: 100%;
}
.form .col-md-6 .select-date span[data-name=date-hour] {
  width: 100%;
  display: none;
}
.form .col-md-6 .select-date span[data-name=date-hour].active {
  display: block;
}
.form .col-md-6 .select-date #show-hours {
  width: 100%;
}
.form .col-md-6 #resume-field, .form .col-md-6 #certificate-field {
  user-select: none;
  cursor: default;
}
.form .col-md-6 .file-label {
  background: #71bfaf;
  position: absolute;
  top: 6px;
  right: 14px;
  padding: 7px 11px;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form .col-md-6 .file-label {
    padding: 11px 11px;
  }
}
.form .col-md-6 .file-label i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .col-md-6 .file-label i:before {
  color: white;
  font-weight: 400;
  font-size: 20px;
}

.page-id-39 #dynamic-banner #breadcrumbs {
  display: none;
}

/*# sourceMappingURL=main.css.map */
