@charset "UTF-8";
/* utilities */
/* plugins */
.btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-size: 14px;
  padding: 13px 20px;
  line-height: 1.25;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  font-family: 'Montserrat', sans-serif;
}

.btn.btn-md {
  padding: 7px 20px;
  font-size: 24px;
}

.btn.shadow {
  -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.2) !important;
  -moz-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary {
  background: #045d8b;
  border-color: #045d8b;
  color: #ffffff;
}

.btn-primary:focus, .btn-primary.focus {
  color: #ffffff;
  background: #045d8b;
  border-color: #045d8b;
}

.btn-primary:focus:hover, .btn-primary.focus:hover {
  background-color: #034c72;
  border-color: #034c72;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #034c72;
  border: 1px solid #034c72;
  color: #ffffff;
}

.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  background-color: #034c72;
  border: 1px solid #034c72;
  color: #ffffff;
}

.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
  background-color: #034c72;
  border: 1px solid #034c72;
  color: #ffffff;
}

.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  background-image: none;
}

.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #034c72;
  border: 1px solid #034c72;
  color: #ffffff;
}

.btn-primary.light {
  background: #8ab3c9;
  border-color: #8ab3c9;
  color: #ffffff;
}

.btn-primary.light:focus, .btn-primary.light.focus {
  color: #ffffff;
  background: #8ab3c9;
  border-color: #8ab3c9;
}

.btn-primary.light:focus:hover, .btn-primary.light.focus:hover {
  background-color: #045d8b;
  border-color: #045d8b;
  color: #ffffff;
}

.btn-primary.light:hover {
  background-color: #045d8b;
  border: 1px solid #045d8b;
  color: #ffffff;
}

.btn-primary.light:active, .btn-primary.light.active,
.open > .btn-primary.light.dropdown-toggle {
  background-color: #045d8b;
  border: 1px solid #045d8b;
  color: #ffffff;
}

.btn-primary.light:active:hover, .btn-primary.light:active:focus, .btn-primary.light:active.focus, .btn-primary.light.active:hover, .btn-primary.light.active:focus, .btn-primary.light.active.focus,
.open > .btn-primary.light.dropdown-toggle:hover,
.open > .btn-primary.light.dropdown-toggle:focus,
.open > .btn-primary.light.dropdown-toggle.focus {
  background-color: #045d8b;
  border: 1px solid #045d8b;
  color: #ffffff;
}

.btn-primary.light:active, .btn-primary.light.active,
.open > .btn-primary.light.dropdown-toggle {
  background-image: none;
}

.btn-primary.light.disabled:hover, .btn-primary.light.disabled:focus, .btn-primary.light.disabled.focus, .btn-primary.light[disabled]:hover, .btn-primary.light[disabled]:focus, .btn-primary.light[disabled].focus,
fieldset[disabled] .btn-primary.light:hover,
fieldset[disabled] .btn-primary.light:focus,
fieldset[disabled] .btn-primary.light.focus {
  background-color: #045d8b;
  border: 1px solid #045d8b;
  color: #ffffff;
}

.badge {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  font-weight: 400;
  font-size: 12px;
}

.badge.badge-secondary {
  background-color: #f9930a;
}

/* base */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  width: 30px;
  height: 27px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -12px;
}

.hamburger-inner::after {
  bottom: -12px;
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in, background .14s;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, background 0.14s, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, background .14s, opacity 0.1s 0.14s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, background 0.14s, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

*, *:after, *:before {
  outline: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button,
textarea,
select,
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=file]::-webkit-file-upload-button {
  cursor: pointer;
}

* {
  outline: none !important;
}

button {
  border: 0;
}

button,
.btn {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.218s linear, border-color 0.218s linear, color 0.218s linear;
  -moz-transition: background-color 0.218s linear, border-color 0.218s linear, color 0.218s linear;
  -o-transition: background-color 0.218s linear, border-color 0.218s linear, color 0.218s linear;
  transition: background-color 0.218s linear, border-color 0.218s linear, color 0.218s linear;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline: 0 auto -webkit-focus-ring-color;
  outline-offset: 0;
}

a {
  -webkit-transition: color 0.218s linear;
  -moz-transition: color 0.218s linear;
  -o-transition: color 0.218s linear;
  transition: color 0.218s linear;
  color: #045d8b;
}

a:hover, a:focus, a:active {
  text-decoration: none;
  color: #022b41;
}

a.underline {
  text-decoration: underline;
}

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

a:focus,
a:active,
button,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: 0;
  border-color: transparent;
  outline: none;
  -moz-outline-style: none;
  outline-offset: 0;
}

:-moz-any-link:focus {
  outline: none;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p {
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: normal;
  line-height: 1.42857;
}

h2, .h2 {
  font-size: 50px;
  text-transform: uppercase;
  color: #045d8b;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
}

@media (max-width: 991px) {
  h2, .h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  h2, .h2 {
    font-size: 33px;
  }
}

h3, .h3 {
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 767px) {
  h3, .h3 {
    font-size: 28px;
  }
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 18px;
  font-weight: 700;
}

h6, h6 {
  font-size: 16px;
}

html {
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #303030;
  overflow-x: hidden;
  line-height: 1.42857;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

.page-container {
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}

.clear {
  height: 0;
  overflow: hidden;
  clear: both;
  display: block;
  width: 100%;
}

.clear.clear10 {
  height: 10px;
}

.clear.clear15 {
  height: 15px;
}

.clear.clear20 {
  height: 20px;
}

.clear.clear25 {
  height: 25px;
}

.clear.clear30 {
  height: 30px;
}

.clear.clear60 {
  height: 60px;
}

strong, b {
  font-weight: 700;
}

.tt {
  display: table;
  width: 100%;
  height: 100%;
}

.tr {
  display: table-row;
  width: 100%;
  height: 100%;
}

.tc {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

figure {
  margin: 0;
}

img.alignright {
  float: right;
  margin: 0 0 25px 25px;
}

img.alignleft {
  float: left;
  margin: 0 25px 25px 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

a img.alignright {
  float: right;
  margin: 0 0 25px 25px;
}

a img.alignleft {
  float: left;
  margin: 0 25px 25px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.col-shrink {
  width: auto;
  max-width: none;
  -webkit-flex: 1 1 0;
  flex: 1 1 0;
  margin-right: auto;
}

.col-auto {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: -10px !important;
}

.h-100 {
  height: 100%;
}

.fz-14 {
  font-size: 14px !important;
}

.fz-13 {
  font-size: 13px !important;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.subtitle {
  position: relative;
  z-index: 1;
  color: #034466;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}

.subtitle:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
  border-top: 1px solid #9bbed1;
}

.subtitle span {
  background-color: #ffffff;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 10px;
  margin-bottom: 10px;
}

.navbar {
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) and (min-width: 768px) {
  .navbar {
    -ms-flex-flow: row nowrap;
    flex-flow: row wrap;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .navbar .navbar-collapse {
    margin-top: -55px;
    margin-bottom: 55px;
  }
}

@media (max-width: 767px) {
  .navbar .navbar-collapse {
    display: block !important;
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 100000;
    -webkit-transition: left 0.218s;
    -moz-transition: left 0.218s;
    -o-transition: left 0.218s;
    transition: left 0.218s;
    text-align: center;
    width: 100%;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding-top: 70px;
    overflow-y: auto;
    max-height: 100%;
    margin: 0;
  }
}

.navbar .navbar-collapse .nav > li {
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 0;
}

@media (min-width: 768px) {
  .navbar .navbar-collapse .nav > li + li:before {
    content: '•';
    margin: 10px 15px 0;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
  }
}

.navbar .navbar-collapse .nav > li > a {
  font-size: 14px;
  position: relative;
  color: #ffffff;
  padding: 0;
  line-height: 40px;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .nav > li > a {
    display: block;
    line-height: 50px;
  }
}

.navbar .navbar-collapse .nav > li > a:before {
  content: '';
  position: absolute;
  bottom: -6px;
  border-bottom: 1px solid #73c5c1;
  width: 0;
  -webkit-transition: width linear;
  -webkit-transition-delay: 0.15s;
  -moz-transition: width linear 0.15s;
  -o-transition: width linear 0.15s;
  transition: width linear 0.15s;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .nav > li > a:before {
    bottom: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.navbar .navbar-collapse .nav > li > a:hover, .navbar .navbar-collapse .nav > li > a:active, .navbar .navbar-collapse .nav > li > a:focus {
  color: #73c5c1;
  background-color: transparent;
}

.navbar .navbar-collapse .nav > li > a:hover:before, .navbar .navbar-collapse .nav > li > a:active:before, .navbar .navbar-collapse .nav > li > a:focus:before {
  width: 43px;
}

.navbar .navbar-collapse .nav > li.open > a, .navbar .navbar-collapse .nav > li.active > a {
  color: #73c5c1;
  background-color: transparent;
}

.navbar .navbar-collapse .nav > li.open > a:before, .navbar .navbar-collapse .nav > li.active > a:before {
  width: 43px;
}

.navbar .navbar-collapse .dropdown {
  z-index: 10000;
}

.navbar .navbar-collapse .dropdown .dropdown-menu {
  background-color: #60a5a2;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.35);
  margin-top: 8px;
  border: none;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .dropdown .dropdown-menu {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    position: relative;
  }
}

.navbar .navbar-collapse .dropdown .dropdown-menu:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent #60a5a2 transparent;
  position: absolute;
  top: -7px;
  left: 40px;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .dropdown .dropdown-menu:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: background-color linear, color linear;
  -webkit-transition-delay: 0.218s, 0.218s;
  -moz-transition: background-color linear 0.218s, color linear 0.218s;
  -o-transition: background-color linear 0.218s, color linear 0.218s;
  transition: background-color linear 0.218s, color linear 0.218s;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    line-height: 30px;
  }
}

.navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:focus, .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:active, .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #a1cac8;
  color: #034466;
}

.navbar .navbar-collapse .dropdown .dropdown-menu .show > .dropdown-item {
  background-color: #a1cac8;
  color: #034466;
}

.navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-menu {
  left: calc(100% - 30px);
  top: -16px;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-menu {
    top: auto;
    left: auto;
    margin-top: 0;
  }
}

.navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-menu:before {
  border-width: 10px 10px 10px 0;
  border-color: transparent #60a5a2 transparent transparent;
  top: 11px;
  left: -10px;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-menu:before {
    left: 40px;
    top: -7px;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #60a5a2 transparent;
  }
}

.navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-menu .dropdown-item {
  text-transform: none;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-menu .dropdown-item {
    padding-left: 40px;
  }
}

.navbar .navbar-brand {
  padding: 0;
  margin: 0 0 -52px 0;
  display: inline-block;
  font-size: 0;
  position: relative;
  z-index: 100;
}

@media (max-width: 1199px) {
  .navbar .navbar-brand {
    max-width: 260px;
  }
}

@media (max-width: 991px) {
  .navbar .navbar-brand {
    max-width: 180px;
  }
}

@media (max-width: 767px) {
  .navbar .navbar-brand {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (max-width: 359px) {
  .navbar .navbar-brand {
    max-width: 160px;
  }
}

@media (max-width: 767px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }
  .btn-mobile-menu {
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 10000000;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    transition: transform 0.3s;
    margin: 0 !important;
    background-color: rgba(4, 93, 139, 0.85);
    height: 47px;
  }
  body.smenu {
    width: 100%;
    overflow: hidden;
  }
  body.smenu .gray-overlay {
    visibility: visible;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    left: 0;
    pointer-events: all;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 100%;
  }
  body.smenu .navbar-collapse {
    -webkit-transition: left 0.218s;
    -moz-transition: left 0.218s;
    -o-transition: left 0.218s;
    transition: left 0.218s;
    left: 0;
  }
  .gray-overlay {
    background-color: transparent;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    position: fixed;
    left: -100%;
    width: 100%;
    top: -100em;
    bottom: -100em;
    min-height: 100000em;
    z-index: 10000;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
}

header {
  background-color: #034466;
  position: relative;
  z-index: 100000;
  color: #ffffff;
}

header:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40px;
  background-color: #045d8b;
  z-index: -1;
}

@media (min-width: 768px) {
  header .htop {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

header .htop > .row {
  height: 54px;
  margin: 0 -20px;
}

@media (max-width: 767px) {
  header .htop > .row {
    margin: 1px 0 0;
    height: 30px;
  }
}

@media (max-width: 359px) {
  header .htop > .row {
    height: 41px;
  }
}

header .htop > .row > .col {
  padding: 4px 20px 0;
  color: #f1eeec;
  font-size: 12px;
}

header .htop > .row > .col + .col {
  border-left: 1px solid #30647f;
}

header .htop a {
  color: #f1eeec;
}

header .htop a:hover {
  color: #ffffff;
}

header .htop a:focus, header .htop a:active {
  color: #f1eeec;
}

header .htop a:focus:hover, header .htop a:active:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  header .htop .questions {
    display: none;
  }
}

header .htop .questions strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  line-height: 1.2;
}

header .htop .questions strong span {
  font-weight: 400;
}

header .htop .questions .fas {
  color: #62889c;
  font-size: 24px;
  margin: 6px 10px 0 0;
  vertical-align: top;
}

@media (max-width: 767px) {
  header .htop .contact {
    display: none;
  }
}

header .htop .contact strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

header .htop .contact .badge {
  margin-bottom: 7px;
}

@media (max-width: 767px) {
  header .htop .search {
    margin-top: -15px;
    padding-left: 10px !important;
    border-left: none !important;
    position: absolute;
    right: 40px;
  }
}

@media (max-width: 359px) {
  header .htop .search {
    margin-top: -5px;
    right: 30px;
  }
}

header .htop .search a {
  display: block;
  height: 54px;
  line-height: 56px;
  font-size: 18px;
  margin: 0 -15px;
  padding: 0 15px;
}

@media (max-width: 767px) {
  header .htop .search a {
    height: 40px;
    line-height: 42px;
    padding: 0 10px;
    margin: 0 -10px;
  }
}

footer {
  background-color: #045d8b;
  width: 100%;
  margin-top: auto;
  color: #ffffff;
  padding-top: 30px;
}

@media (max-width: 575px) {
  footer .sides {
    margin: 0;
  }
}

footer p {
  color: rgba(255, 255, 255, 0.6);
}

footer h5 {
  line-height: 30px;
  border-left: 3px solid #689eb9;
  padding-left: 15px;
}

footer .fpartners .row {
  margin: 0 -5px;
}

footer .fpartners .row > div {
  padding: 0 5px;
}

footer .keywords {
  font-size: 0;
  margin: 0 -3px;
}

footer .keywords a {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.6);
  padding: 3px 8px;
  -webkit-transition: color linear, border-color linear;
  -webkit-transition-delay: 0.218s, 0.218s;
  -moz-transition: color linear 0.218s, border-color linear 0.218s;
  -o-transition: color linear 0.218s, border-color linear 0.218s;
  transition: color linear 0.218s, border-color linear 0.218s;
  margin: 0 3px 5px;
  font-size: 16px;
}

footer .keywords a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

footer .keywords a:focus, footer .keywords a:active {
  color: #ffffff;
  border-color: #ffffff;
}

footer .keywords a:focus:hover, footer .keywords a:active:hover {
  color: #ffffff;
  border-color: #ffffff;
}

footer .news {
  line-height: 1.1;
}

footer .news .list > .row {
  margin: 0 -10px;
}

footer .news .list > .row > div {
  padding: 0 10px;
}

footer .news a {
  color: #ffffff;
}

footer .news a:hover {
  color: rgba(255, 255, 255, 0.6);
}

footer .news a:focus, footer .news a:active {
  color: #ffffff;
}

footer .news a:focus:hover, footer .news a:active:hover {
  color: rgba(255, 255, 255, 0.6);
}

footer .news small {
  color: #60a4a1;
  font-size: 13px;
  font-weight: 600;
}

footer .newsletter .input-group {
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

footer .newsletter .input-group .form-control {
  border: none;
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
  height: 38px;
  padding: 5px 15px;
}

footer .newsletter .input-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

footer .newsletter .input-group .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

footer .newsletter .input-group .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

footer .newsletter .input-group .input-group-prepend button {
  width: 40px;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

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

footer .social a {
  color: rgba(255, 255, 255, 0.6);
}

footer .social a:hover {
  color: #ffffff;
}

footer .social a:focus, footer .social a:active {
  color: rgba(255, 255, 255, 0.6);
}

footer .social a:focus:hover, footer .social a:active:hover {
  color: #ffffff;
}

footer .social a + a {
  margin-left: 20px;
}

footer .fclose {
  background-color: #034466;
  padding: 30px 0;
  font-size: 14px;
}

footer .fclose .flinks {
  display: inline-block;
  vertical-align: top;
}

footer .fclose .flinks a {
  color: #ffffff;
}

footer .fclose .flinks a:hover {
  color: rgba(255, 255, 255, 0.6);
}

footer .fclose .flinks a:focus, footer .fclose .flinks a:active {
  color: #ffffff;
}

footer .fclose .flinks a:focus:hover, footer .fclose .flinks a:active:hover {
  color: rgba(255, 255, 255, 0.6);
}

footer .fclose .flinks a + a {
  margin-left: 20px;
}

footer .fclose .flinks ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767px) {
  footer .fclose .flinks ul {
    display: block;
    padding-top: 15px;
  }
}

footer .fclose .flinks ul li {
  display: inline;
}

@media (max-width: 767px) {
  footer .fclose .flinks ul li:first-child:before {
    display: none;
  }
}

footer .fclose .flinks ul li:before {
  content: '|';
  margin: -1px 10px 0;
  display: inline-block;
  vertical-align: top;
}

.modal-backdrop,
.modal-backdrop.fade.in {
  background-color: #000000;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  z-index: 10000000;
}

.modal {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  z-index: 10000001;
}

.modal .modal-content {
  border: none;
}

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

.modal .modal-header .close {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  z-index: 10;
  padding: 10px 15px;
}

.modal .modal-body {
  padding: 25px;
}

.form-control {
  border: 1px solid #c0c0c0;
  background-color: #ffffff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  height: 40px;
  color: #303030;
  font-size: 14px;
  padding: 5px 15px;
}

.form-control:focus {
  color: #303030;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #045d8b;
}

.form-control::-moz-placeholder {
  color: #969696;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #969696;
}

.form-control::-webkit-input-placeholder {
  color: #969696;
}

textarea.form-control {
  resize: none;
  padding-bottom: 10px;
}

.form-group {
  display: block;
  margin-bottom: 30px;
  color: #969696;
  font-size: 14px;
}

.custom-file {
  height: 40px;
}

.custom-file-input {
  height: 40px;
}

.custom-file-input:focus ~ .custom-file-label {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #045d8b;
}

.custom-file-label {
  height: 40px;
  border: 1px solid #c0c0c0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-size: 14px;
  padding: 5px 85px 5px 15px;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-file-label:after {
  height: 38px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding: 5px 15px;
  line-height: 28px;
}

.radio-line {
  clear: left;
  float: left;
  line-height: 18px;
  vertical-align: middle;
  cursor: pointer;
  font-size: 16px;
  padding: 0 0 0 30px;
  color: #303030;
}

.radio-line input {
  display: none;
}

.radio-line input + i {
  float: left;
  width: 18px;
  height: 18px;
  margin-left: -30px;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #045d8b;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.radio-line input + i:after {
  width: 11px;
  height: 11px;
  content: '';
  background: #045d8b;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.218s linear;
  -moz-transition: all 0.218s linear;
  -o-transition: all 0.218s linear;
  transition: all 0.218s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.radio-line input:checked + i:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.checkbox-line {
  clear: left;
  float: left;
  line-height: 22px;
  vertical-align: middle;
  cursor: pointer;
  font-size: 14px;
  padding: 0 0 0 20px;
  color: #303030;
  text-align: left;
  margin-bottom: 0;
}

.checkbox-line.fz-12 {
  font-size: 12px;
  line-height: 14px;
}

.checkbox-line.fz-12 input + i {
  margin-top: 0;
}

.checkbox-line.right {
  padding: 0 20px 0 0;
}

.checkbox-line input {
  display: none;
}

.checkbox-line input + i {
  float: left;
  width: 14px;
  height: 14px;
  margin-left: -20px;
  margin-top: 4px;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #303030;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  line-height: 14px;
}

.checkbox-line.right input + i {
  float: right;
  margin-left: 0;
  margin-right: -30px;
}

.checkbox-line input + i:after {
  content: '\f00c';
  position: absolute;
  left: .5px;
  top: 0;
  font-size: 9px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  color: #303030;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.218s linear;
  -moz-transition: all 0.218s linear;
  -o-transition: all 0.218s linear;
  transition: all 0.218s linear;
  width: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  text-align: left;
}

.checkbox-line input:checked + i:after {
  width: 14px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.icons {
  background: url(/img/icons.png) no-repeat;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.icons.disabled {
  pointer-events: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

.icons.icons-video {
  background-position: 0 0;
  width: 32px;
  height: 30px;
}

.icons.icons-gallery {
  background-position: -40px 0;
  width: 32px;
  height: 32px;
}

/* home */
.sticky {
  position: fixed;
  right: 0;
  top: 140px;
  width: 160px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  color: #f1eeec;
  font-size: 12px;
  z-index: 10000;
}

@media (max-width: 991px) {
  .sticky {
    top: 119px;
  }
}

@media (max-width: 767px) {
  .sticky {
    top: 10px;
  }
}

.sticky figure {
  margin: 0 -3px 5px;
}

@media (min-width: 1200px) {
  .sticky .sticky-trigger {
    display: none;
  }
}

@media (max-width: 1199px) {
  .sticky {
    -webkit-transition: -webkit-transform linear, box-shadow linear;
    -webkit-transition-delay: 0.15s, 0.15s;
    -moz-transition: -moz-transform linear 0.15s, box-shadow linear 0.15s;
    -o-transition: -o-transform linear 0.15s, box-shadow linear 0.15s;
    transition: transform linear 0.15s, box-shadow linear 0.15s;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .sticky.opened {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  }
  .sticky.opened .sticky-trigger .fas.fa-phone-volume {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    visibility: hidden;
  }
  .sticky.opened .sticky-trigger .fas.fa-angle-double-right {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    visibility: visible;
  }
  .sticky .sticky-trigger {
    width: 40px;
    height: 40px;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    background-color: #f9930a;
    display: block;
    position: absolute;
    left: -40px;
    top: 0;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    color: #9c5c06;
    z-index: -1;
  }
  .sticky .sticky-trigger .fas {
    -webkit-transition: opacity linear, visibility linear;
    -webkit-transition-delay: 0.218s, 0.218s;
    -moz-transition: opacity linear 0.218s, visibility linear 0.218s;
    -o-transition: opacity linear 0.218s, visibility linear 0.218s;
    transition: opacity linear 0.218s, visibility linear 0.218s;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .sticky .sticky-trigger .fas.fa-phone-volume {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    visibility: visible;
  }
  .sticky .sticky-trigger .fas.fa-angle-double-right {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    visibility: hidden;
  }
}

.sticky .bg {
  background-color: #f9930a;
  padding: 5px 8px;
  position: relative;
  z-index: 1;
}

.sticky .h3 {
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0;
}

.sticky .h3 span {
  color: #9c5c06;
}

.sticky hr {
  margin: 5px 0;
  border-color: #f6b764;
}

.sticky .tel {
  padding-left: 30px;
  line-height: 1;
  padding-top: 2px;
}

.sticky .tel a {
  color: #f1eeec;
  display: block;
  line-height: 1.1;
  margin-left: -28px;
}

.sticky .tel a:hover {
  color: #9c5c06;
}

.sticky .tel a:focus, .sticky .tel a:active {
  color: #ffffff;
}

.sticky .tel a:focus:hover, .sticky .tel a:active:hover {
  color: #9c5c06;
}

.sticky .tel strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
}

.sticky .tel strong small {
  font-size: 24px;
  font-weight: 700;
}

.sticky .tel strong span {
  font-weight: 400;
}

.sticky .tel .fas {
  color: #9c5c06;
  font-size: 30px;
  margin: -7px 5px 0 0;
  float: left;
}

.sticky .contact {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: #9c5c06;
}

.sticky .contact:hover {
  color: #f1eeec;
}

.sticky .contact:focus, .sticky .contact:active {
  color: #9c5c06;
}

.sticky .contact:focus:hover, .sticky .contact:active:hover {
  color: #f1eeec;
}

.main-pic {
  height: 302px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .main-pic {
    height: 160px;
  }
  .main-pic img {
    height: 160px;
  }
}

.main-pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .main:not(.consultation-line):not(.team-why-line):not(.cta-line) {
    padding: 15px;
  }
}

.cta-line {
  background-color: #f9930a;
  padding: 30px 15px;
}

@media (max-width: 767px) {
  .cta-line {
    padding: 15px;
  }
  .cta-line h2:last-child {
    margin-bottom: 10px !important;
  }
}

.cta-line.blue {
  background-color: #e5eef3;
}

.cta-line.blue .subtitle span {
  background-color: #e5eef3;
}

.cta-line.blue h3 {
  color: #045d8b;
}

.cta-line:not(.blue) h2 {
  color: #303030;
}

.cta-line:not(.blue) .subtitle {
  color: #ffffff;
  text-transform: uppercase;
}

.cta-line:not(.blue) .subtitle:after {
  border-color: #ffffff;
}

@media (min-width: 1199px) {
  .cta-line:not(.blue) .subtitle:after {
    right: 10%;
  }
}

.cta-line:not(.blue) .subtitle span {
  background-color: #f9930a;
}

.cta-line .more {
  line-height: 30px;
  border-left: 3px solid #fbbe6c;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.cta-line .more a {
  display: inline-block;
  padding-left: 15px;
  color: #303030;
}

.cta-line .more a:hover {
  color: #045d8b;
}

.cta-line .more a:focus, .cta-line .more a:active {
  color: #303030;
}

.cta-line .more a:focus:hover, .cta-line .more a:active:hover {
  color: #045d8b;
}

.cta-line .more .fas {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  background-color: #fbbe6c;
  margin-left: 15px;
  vertical-align: top;
  display: inline-bblock;
}

.cta-line p:last-child {
  margin-bottom: 0;
}

.consultation-line {
  background-color: #045d8b;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .consultation-line .container {
    max-width: 1024px;
  }
  .consultation-line .container .col-auto {
    max-width: 210px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .consultation-line .container .sides .left-side {
    flex-basis: 43%;
    max-width: 43%;
  }
  .consultation-line .container .sides .right-side {
    flex-basis: 57%;
    max-width: 57%;
  }
  .consultation-line .container .col-auto {
    max-width: 180px;
  }
}

@media (max-width: 767px) {
  .consultation-line .container .col-auto {
    max-width: 160px;
  }
  .consultation-line .container .col-auto img {
    min-height: 100%;
    object-fit: cover;
  }
}

.consultation-line h2 {
  color: #ffffff;
  font-size: 48px;
}

@media (max-width: 1199px) {
  .consultation-line h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .consultation-line h2 {
    font-size: 33px;
  }
}

.consultation-line h3 {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 991px) {
  .consultation-line h3 {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .consultation-line p {
    margin-bottom: 0;
  }
}

.consultation-line a {
  color: #ffffff;
}

.consultation-line a:hover {
  color: #f9930a;
}

.consultation-line a:focus, .consultation-line a:active {
  color: #ffffff;
}

.consultation-line a:focus:hover, .consultation-line a:active:hover {
  color: #f9930a;
}

.consultation-line a .fas {
  vertical-align: top;
  margin: 3px 0 0 3px;
}

.consultation-line .link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  -webkit-transition: background-color linear;
  -webkit-transition-delay: 0.218s;
  -moz-transition: background-color linear 0.218s;
  -o-transition: background-color linear 0.218s;
  transition: background-color linear 0.218s;
}

.consultation-line .link:hover, .consultation-line .link.active {
  background-color: rgba(255, 255, 255, 0.3);
}

.consultation-line .left-side .link {
  left: -100em;
}

.consultation-line .right-side .link {
  right: -100em;
}

.team-why-line {
  background-color: #f9930a;
  color: #ffffff;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .team-why-line .container {
    max-width: 1024px;
  }
  .team-why-line .container .col-auto {
    max-width: 302px;
  }
}

@media (max-width: 991px) {
  .team-why-line .container .sides {
    height: 100%;
  }
  .team-why-line .container .col-auto {
    max-width: 230px;
  }
  .team-why-line .container .col-auto img {
    min-height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .team-why-line .container .col-auto {
    max-width: 180px;
    min-height: 155px;
  }
}

@media (max-width: 359px) {
  .team-why-line .container .col-auto {
    max-width: 150px;
  }
}

.team-why-line h2 {
  color: #ffffff;
  font-size: 48px;
}

@media (max-width: 1199px) {
  .team-why-line h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .team-why-line h2 {
    font-size: 33px;
  }
}

.team-why-line h3 {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 991px) {
  .team-why-line h3 {
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .team-why-line p {
    margin-bottom: 0;
  }
}

.team-why-line a {
  color: #ffffff;
}

.team-why-line a:hover {
  color: #f9930a;
}

.team-why-line a:focus, .team-why-line a:active {
  color: #ffffff;
}

.team-why-line a:focus:hover, .team-why-line a:active:hover {
  color: #f9930a;
}

.team-why-line a .fas {
  vertical-align: top;
  margin: 3px 3px 0 0;
}

.team-why-line .why-choose p {
  font-size: 14px;
}

.team-why-line .why-choose p:last-child {
  margin-bottom: 0;
}

.team-why-line .team {
  background-color: #034466;
}

.team-why-line .link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  -webkit-transition: background-color linear;
  -webkit-transition-delay: 0.218s;
  -moz-transition: background-color linear 0.218s;
  -o-transition: background-color linear 0.218s;
  transition: background-color linear 0.218s;
}

.team-why-line .link:hover, .team-why-line .link.active {
  background-color: rgba(255, 255, 255, 0.3);
}

.team-why-line .left-side .link {
  left: -100em;
}

.team-why-line .right-side .link {
  top: -100em;
  right: -100em;
  bottom: -100em;
}

.dental-prices ul {
  margin: 0 0 15px 20px;
  padding: 0;
  list-style-type: none;
}

.dental-prices ul li {
  padding-left: 22px;
  position: relative;
  color: #616161;
}

.dental-prices ul li + li {
  margin-top: 10px;
}

.dental-prices ul li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-size: 12px;
  font-weight: 400;
  color: #045d8b;
  float: left;
  margin: 3px 0 0 -22px;
}

.dental-prices .embed-responsive {
  margin-top: 13px;
}

.services {
  padding: 60px 0;
}

@media (max-width: 991px) {
  .services {
    padding: 30px 0;
  }
}

.services .h3 {
  color: #303030;
  font-weight: 400;
  margin-bottom: 5px;
}

.services p {
  font-size: 14px;
  margin-bottom: 10px;
}

.services figure {
  height: 206px;
  margin-bottom: 10px;
}

.services .more {
  line-height: 30px;
  border-left: 3px solid #4f8dae;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .services .more {
    font-size: 13px;
  }
}

.services .more a {
  display: inline-block;
  padding-left: 15px;
  color: #303030;
}

.services .more a:hover {
  color: #045d8b;
}

.services .more a:focus, .services .more a:active {
  color: #303030;
}

.services .more a:focus:hover, .services .more a:active:hover {
  color: #045d8b;
}

.services .more a:hover .fas {
  color: #a9dbd9;
}

.services .more a:focus .fas, .services .more a:active .fas {
  color: #a9dbd9;
}

.services .more a:focus:hover .fas, .services .more a:active:hover .fas {
  color: #a9dbd9;
}

.services .more .fas {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  background-color: #4f8dae;
  margin-left: 15px;
  vertical-align: top;
  display: inline-bblock;
  color: #ffffff;
  -webkit-transition: color linear;
  -webkit-transition-delay: 0.218s;
  -moz-transition: color linear 0.218s;
  -o-transition: color linear 0.218s;
  transition: color linear 0.218s;
}

.inside-menu-nav {
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .inside-menu-nav {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .inside-menu-nav {
    margin-bottom: 10px;
  }
}

.inside-menu-nav li {
  display: inline;
}

@media (max-width: 767px) {
  .inside-menu-nav li {
    display: block;
  }
}

.inside-menu-nav li a {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  margin: 0 20px 20px;
  color: #034466;
  display: inline-block;
}

@media (max-width: 991px) {
  .inside-menu-nav li a {
    font-size: 16px;
    margin: 0 10px 20px;
  }
}

.inside-menu-nav li a:after, .inside-menu-nav li a:before {
  content: '';
  position: absolute;
  bottom: -2px;
  border-bottom: 1px solid #9bbed1;
  width: 0;
  -webkit-transition: width linear;
  -webkit-transition-delay: 0.15s;
  -moz-transition: width linear 0.15s;
  -o-transition: width linear 0.15s;
  transition: width linear 0.15s;
}

.inside-menu-nav li a:after {
  right: 50%;
}

.inside-menu-nav li a:before {
  left: 50%;
}

.inside-menu-nav li a:hover:before {
  left: 0;
  width: 50%;
}

.inside-menu-nav li a:hover:after {
  right: 0;
  width: 50%;
}

.inside-menu-nav li.active a {
  font-weight: 700;
}

.inside-menu-nav li.active a:before {
  left: 50%;
  width: 50%;
}

.inside-menu-nav li.active a:after {
  right: 50%;
  width: 50%;
}

/* videos */
.main-videos {
  padding: 35px 0;
}

.main-videos .video-nav {
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .main-videos .video-nav {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .main-videos .video-nav {
    margin-bottom: 10px;
  }
}

.main-videos .video-nav li {
  display: inline;
}

@media (max-width: 767px) {
  .main-videos .video-nav li {
    display: block;
  }
}

.main-videos .video-nav li a {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  margin: 0 20px 20px;
  color: #034466;
  display: inline-block;
}

@media (max-width: 991px) {
  .main-videos .video-nav li a {
    font-size: 16px;
    margin: 0 10px 20px;
  }
}

.main-videos .video-nav li a:after, .main-videos .video-nav li a:before {
  content: '';
  position: absolute;
  bottom: -2px;
  border-bottom: 1px solid #9bbed1;
  width: 0;
  -webkit-transition: width linear;
  -webkit-transition-delay: 0.15s;
  -moz-transition: width linear 0.15s;
  -o-transition: width linear 0.15s;
  transition: width linear 0.15s;
}

.main-videos .video-nav li a:after {
  right: 50%;
}

.main-videos .video-nav li a:before {
  left: 50%;
}

.main-videos .video-nav li a:hover:before {
  left: 0;
  width: 50%;
}

.main-videos .video-nav li a:hover:after {
  right: 0;
  width: 50%;
}

.main-videos .video-nav li.active a {
  font-weight: 700;
}

.main-videos .video-nav li.active a:before {
  left: 50%;
  width: 50%;
}

.main-videos .video-nav li.active a:after {
  right: 50%;
  width: 50%;
}

.main-videos .video-list .col-md-6 {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .main-videos .video-list .col-md-6 {
    margin-bottom: 40px;
  }
}

.main-videos .video-list .h3 {
  font-weight: 700;
  position: relative;
}

.main-videos .video-list .h3:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  border-bottom: 1px solid #9bbed1;
}

.main-videos .video-list .embed-responsive {
  max-width: 460px;
  margin: 35px auto;
}

.main-videos .video-list p.fz-13 {
  color: rgba(48, 48, 48, 0.8);
  font-weight: 500;
  line-height: 1.5;
}

.main-videos .video-list .more {
  line-height: 30px;
  border-left: 3px solid #4f8dae;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .main-videos .video-list .more {
    font-size: 13px;
  }
}

.main-videos .video-list .more a {
  display: inline-block;
  padding-left: 15px;
  color: #303030;
}

.main-videos .video-list .more a:hover {
  color: #045d8b;
}

.main-videos .video-list .more a:focus, .main-videos .video-list .more a:active {
  color: #303030;
}

.main-videos .video-list .more a:focus:hover, .main-videos .video-list .more a:active:hover {
  color: #045d8b;
}

.main-videos .video-list .more a:hover .fas {
  color: #a9dbd9;
}

.main-videos .video-list .more a:focus .fas, .main-videos .video-list .more a:active .fas {
  color: #a9dbd9;
}

.main-videos .video-list .more a:focus:hover .fas, .main-videos .video-list .more a:active:hover .fas {
  color: #a9dbd9;
}

.main-videos .video-list .more .fas {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  background-color: #4f8dae;
  margin-left: 15px;
  vertical-align: top;
  display: inline-bblock;
  color: #303030;
  -webkit-transition: color linear;
  -webkit-transition-delay: 0.218s;
  -moz-transition: color linear 0.218s;
  -o-transition: color linear 0.218s;
  transition: color linear 0.218s;
}

.main-videos .icon-grid {
  max-width: 460px;
  margin-bottom: 25px;
}

.main-videos .icon-grid .col-auto {
  width: 60px;
  padding-left: 0;
}

.main-videos .icon-grid h5 {
  font-size: 20px;
  margin-bottom: 5px;
}

.main-videos .icon-grid p {
  font-size: 14px;
}

.main-videos .icon-grid p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .main-videos .more-button {
    margin-top: -30px;
  }
}

.main-videos .more-button .btn {
  width: 100%;
  max-width: 336px;
}

/* gallery */
.main-gallery {
  padding: 35px 0;
}

.main-gallery .gallery-list .gallery-item {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .main-gallery .gallery-list .gallery-item {
    margin-bottom: 40px;
  }
}

.main-gallery .gallery-list .h3 {
  font-weight: 700;
  position: relative;
}

.main-gallery .gallery-list .h3 span {
  font-weight: 300;
  color: #9bbed1;
}

.main-gallery .gallery-list .h3:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  border-bottom: 1px solid #9bbed1;
}

.main-gallery .gallery-list .more {
  line-height: 30px;
  border-left: 3px solid #4f8dae;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .main-gallery .gallery-list .more {
    font-size: 13px;
  }
}

.main-gallery .gallery-list .more a {
  display: inline-block;
  padding-left: 15px;
  color: #303030;
}

.main-gallery .gallery-list .more a:hover {
  color: #045d8b;
}

.main-gallery .gallery-list .more a:focus, .main-gallery .gallery-list .more a:active {
  color: #303030;
}

.main-gallery .gallery-list .more a:focus:hover, .main-gallery .gallery-list .more a:active:hover {
  color: #045d8b;
}

.main-gallery .gallery-list .more a:hover .fas {
  color: #a9dbd9;
}

.main-gallery .gallery-list .more a:focus .fas, .main-gallery .gallery-list .more a:active .fas {
  color: #a9dbd9;
}

.main-gallery .gallery-list .more a:focus:hover .fas, .main-gallery .gallery-list .more a:active:hover .fas {
  color: #a9dbd9;
}

.main-gallery .gallery-list .more .fas {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  background-color: #4f8dae;
  margin-left: 15px;
  vertical-align: top;
  display: inline-bblock;
  color: #303030;
  -webkit-transition: color linear;
  -webkit-transition-delay: 0.218s;
  -moz-transition: color linear 0.218s;
  -o-transition: color linear 0.218s;
  transition: color linear 0.218s;
}

.main-gallery .icon-grid {
  padding-left: 15px;
}

@media (min-width: 1200px) {
  .main-gallery .icon-grid {
    margin-bottom: calc(1rem + 30px);
  }
}

@media (max-width: 991px) {
  .main-gallery .icon-grid {
    margin-bottom: 20px;
  }
}

.main-gallery .icon-grid .col-auto {
  width: 60px;
  padding-left: 0;
  border-right: 1px solid #9bbed1;
}

.main-gallery .icon-grid h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.main-gallery .icon-grid p {
  font-size: 14px;
  line-height: 1.2;
}

.main-gallery .icon-grid p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .main-gallery .more-button {
    margin-top: -30px;
  }
}

.main-gallery .more-button .btn {
  width: 100%;
  max-width: 336px;
}

/* contact */
.main-contact {
  padding: 65px 0;
}

.main-contact h2 {
  color: #303030;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .main-contact .left-side {
    margin-bottom: 40px;
  }
}

.main-contact .left-side .h3 {
  font-weight: 700;
  line-height: 30px;
}

.main-contact .left-side .h3.bordered {
  border-left: 2px solid #034466;
  padding-left: 15px;
}

.main-contact .left-side p {
  margin-left: 17px;
  color: rgba(48, 48, 48, 0.8);
}

.main-contact .btn-primary {
  min-width: 153px;
}

.main-contact .birthday .label-txt {
  padding-left: 31px;
}

#hearOther {
	display: none;
}

/* faq */
.main-faq {
  padding: 65px 0 0;
}

.main-faq h2 {
  margin-bottom: 30px;
}

.main-faq .faq-list {
  padding-right: 15px;
}

@media (min-width: 768px) {
  .main-faq .faq-list .mb-5 {
    margin-bottom: 80px !important;
  }
}

.main-faq .faq-list .question {
  line-height: 1.15;
}

.main-faq .faq-list .answer {
  background-color: #e5eef3;
  padding: 20px;
  margin-left: 15%;
  color: #045d8b;
  font-size: 18px;
}

.main-faq .faq-list .answer p:last-child {
  margin-bottom: 0;
}

.main-faq .faq-list img {
  max-width: 100%;
}

/* prices */
.main-prices {
  padding: 35px 0;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100000;
  visibility: hidden;
  -webkit-transition: opacity linear, visibility linear;
  -webkit-transition-delay: 0.218s, 0.218s;
  -moz-transition: opacity linear 0.218s, visibility linear 0.218s;
  -o-transition: opacity linear 0.218s, visibility linear 0.218s;
  transition: opacity linear 0.218s, visibility linear 0.218s;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.overlay.is-active {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.picture-layer,
.main-prices .video-layer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  z-index: 1000001;
  visibility: hidden;
  -webkit-transition: opacity linear, visibility linear;
  -webkit-transition-delay: 0.218s, 0.218s;
  -moz-transition: opacity linear 0.218s, visibility linear 0.218s;
  -o-transition: opacity linear 0.218s, visibility linear 0.218s;
  transition: opacity linear 0.218s, visibility linear 0.218s;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

@media (max-width: 767px) {
  .picture-layer,
  .main-prices .video-layer {
    height: 100vh !important;
    bottom: 0 !important;
  }
}

.picture-layer.is-active,
.main-prices .video-layer.is-active {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.picture-layer .col-12,
.picture-layer .embed-responsive,
.main-prices .video-layer .col-12,
.main-prices .video-layer .embed-responsive {
  max-width: 570px;
  margin: 0 auto;
}

.main-prices svg {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.main-prices h2.h3 {
  color: #303030;
  font-weight: 700;
  margin-bottom: -5px;
  font-size: 35px;
}

@media (max-width: 767px) {
  .main-prices h2.h3 {
    font-size: 28px;
  }
}

.main-prices h3 {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: .2em;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .main-prices h3 {
    margin-bottom: 20px;
    word-break: break-word;
  }
}

@media (min-width: 992px) {
  .main-prices .more-button {
    margin-top: -10px;
  }
}

.main-prices .more-button .btn {
  width: 100%;
  max-width: 336px;
}

.price-list {
  max-width: 970px;
  margin: 0 auto 60px;
}

@media (max-width: 767px) {
  .price-list {
    margin-bottom: 30px;
  }
}

.price-list .price-item {
  padding: 1px 0;
  border-top: 1px solid #8bb4c9;
  border-bottom: 1px solid #8bb4c9;
  position: relative;
}

@media (min-width: 768px) {
  .price-list .price-item.is-active {
    z-index: 1000001;
  }
}

.price-list .price-item + .price-item {
  margin-top: -1px;
}

@media (max-width: 575px) {
  .price-list .right-side {
    padding-left: 0;
    text-align: center;
  }
}

.price-list .icon {
  position: static;
}

@media (max-width: 575px) {
  .price-list .icon {
    padding-right: 0;
  }
}

.price-list .icon .col-auto {
  width: 26px;
  background-color: #8bb4c9;
  color: #ffffff;
  font-size: 14px;
  padding: 0;
  margin-right: 10px;
  position: static;
}

.price-list .icon .col-auto.disabled {
  background-color: #ffffff;
}

.price-list .icon .col-auto.disabled .rotate, .price-list .icon .col-auto.disabled:after {
  display: none;
}

.price-list .icon .col-auto:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 6px;
  border-color: transparent transparent transparent #8bb4c9;
  left: 26px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.price-list .icon .col-auto .rotate {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(3px, -50%);
  -moz-transform: translate(3px, -50%);
  -ms-transform: translate(3px, -50%);
  -o-transform: translate(3px, -50%);
  transform: translate(3px, -50%);
}

.price-list .icon .col-auto .rotate span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg) translate(-140px, -140px);
  -moz-transform: rotate(-90deg) translate(-140px, -140px);
  -ms-transform: rotate(-90deg) translate(-140px, -140px);
  -o-transform: rotate(-90deg) translate(-140px, -140px);
  transform: rotate(-90deg) translate(-140px, -140px);
}

.price-list .image {
  max-width: 55px;
}

@media (max-width: 575px) {
  .price-list .image {
    margin: 5px auto;
  }
}

.price-list .image img {
  max-width: 55px;
}

.price-list .text {
  padding-top: 5px;
  padding-bottom: 5px;
  min-width: 375px;
  max-width: 375px;
}

@media (max-width: 991px) {
  .price-list .text {
    min-width: 265px;
    max-width: 265px;
  }
}

@media (max-width: 575px) {
  .price-list .text {
    max-width: 100%;
    min-width: 100%;
  }
}

.price-list .text h5 {
  margin-bottom: 5px;
}

.price-list .text p {
  font-size: 14px;
}

.price-list .text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .price-list .icons-price {
    padding: 10px 0;
  }
  .price-list .icons-price .col:not(.icons-cont) {
    min-width: 100%;
  }
}

@media (max-width: 767px) {
  .price-list .icons-price {
    margin-bottom: 32px;
  }
}

.price-list .icons-price .icons-cont {
  max-width: 120px;
}

@media (max-width: 991px) {
  .price-list .icons-price .icons-cont {
    margin: 0 auto;
  }
}

.price-list .icons-price .price {
  font-size: 14px;
}

.price-list .icons-price .price strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  line-height: 1.2;
}

.price-list .icons-price .price a {
  color: #9bbed1;
}

.price-list .icons-price .price a:hover {
  color: #045d8b;
}

.price-list .icons-price .price a:focus, .price-list .icons-price .price a:active {
  color: #9bbed1;
}

.price-list .icons-price .price a:focus:hover, .price-list .icons-price .price a:active:hover {
  color: #045d8b;
}

.price-list .button {
  max-width: 185px;
}

@media (max-width: 991px) {
  .price-list .button {
    max-width: 165px;
  }
}

@media (max-width: 767px) {
  .price-list .button {
    margin-left: auto;
    margin-bottom: 3px;
  }
}

@media (max-width: 767px) {
  .price-list .button {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 575px) {
  .price-list .button {
    max-width: 214px;
    min-width: 214px;
    right: auto;
    left: 50%;
    bottom: -3px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.price-list .button .more {
  line-height: 1.2;
  border-left: 3px solid #4f8dae;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

@media (max-width: 991px) {
  .price-list .button .more {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .price-list .button .more {
    line-height: 30px;
  }
}

.price-list .button .more a {
  display: inline-block;
  padding-left: 15px;
  color: #303030;
  position: relative;
}

.price-list .button .more a:hover {
  color: #045d8b;
}

.price-list .button .more a:focus, .price-list .button .more a:active {
  color: #303030;
}

.price-list .button .more a:focus:hover, .price-list .button .more a:active:hover {
  color: #045d8b;
}

@media (max-width: 575px) {
  .price-list .button .more a {
    display: block;
    padding-right: 40px;
  }
}

.price-list .button .more a:hover .fas {
  color: #a9dbd9;
}

.price-list .button .more a:focus .fas, .price-list .button .more a:active .fas {
  color: #a9dbd9;
}

.price-list .button .more a:focus:hover .fas, .price-list .button .more a:active:hover .fas {
  color: #a9dbd9;
}

.price-list .button .more .fas {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  background-color: #4f8dae;
  margin-left: 15px;
  vertical-align: top;
  display: inline-bblock;
  color: #303030;
  -webkit-transition: color linear;
  -webkit-transition-delay: 0.218s;
  -moz-transition: color linear 0.218s;
  -o-transition: color linear 0.218s;
  transition: color linear 0.218s;
  position: absolute;
  right: 0;
  top: 1px;
}

@media (max-width: 575px) {
  .price-list .button .more .fas {
    top: 0;
  }
}

@media (max-width: 770px) {
  .team-why-line .right-side .link {
    top: 0em;
    bottom: 0em;
  }
}

/* article */
.main-article {
  padding: 35px 0;
}

.main-article h2 {
  color: #303030;
  margin-bottom: 0;
}

.main-article img {
  max-width: 100%;
  height: auto;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icons {
    background-image: url(/img/icons@2x.png) !important;
    background-size: 500px 500px !important;
  }
}
a.contactlink { color: #ffffff; }
/* sliders */
	.slider-mask { height: 302px; overflow:hidden; }
	ul.sliders { position:relative; top:0px; left:0px; list-style-type:none; padding-left:0px; }
	ul.sliders li { position:absolute; top: 50%; left: 50%;
					  -webkit-transform: translate(-50%,0%);
					  -moz-transform: translate(-50%,0%);
					  -ms-transform: translate(-50%,0%);
					  -o-transform: translate(-50%,0%);
					  transform: translate(-50%,0%); }
					  
	@media (max-width: 767px) {
	  .slider-mask {
		height: 160px;
	  }
	  .slider-mask img {
		height: 160px;
	  }
	}
/* cookie popup */
#cookie-div{
    background-color: #fff;
    border-top: 4px solid #444;
    bottom: 0;
    color: #000;
    font-size: 10pt;
    margin: 0 auto;
    padding: 5px 0;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 9999;
}
#cookie-accept{
    background-color: #000;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: inline-block;
    margin: auto 10px;
    padding: 5px 10px 6px;
    position: relative;
    text-decoration: none;
}