@import url(https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i);





body {
  font-family: Dosis;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Dosis', sans-serif;
  font-size: 3.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-2 {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  color: initial;
  border-radius: 0;
  font-weight: 600;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 2px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  font-weight: 600;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  font-weight: 600;
  letter-spacing: 2px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  font-weight: 600;
  letter-spacing: 2px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ffbc00 !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #b38400 !important;
  border-color: #b38400 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b38400 !important;
  border-color: #b38400 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #997100;
  color: #997100 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ffbc00;
  border-color: #ffbc00;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #215f88;
  color: #215f88 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #992700;
  color: #992700 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ff4100;
  border-color: #ff4100;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1b8d56;
  color: #1b8d56 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #36d88a;
  border-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffbc00 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #997100 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1b8d56 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #992700 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffbc00;
  border-color: #ffbc00;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #ffbc00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff2cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a {
  background: #444444;
  opacity: .5;
}
#scrollToTop a:hover {
  opacity: .7;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow {
  background-color: #444444;
  opacity: .5;
  transition: .3s;
}
.mbr-arrow a {
  color: #ffffff;
}
.mbr-arrow:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #ffbc00;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form1 .input-group-btn a.btn {
  border-radius: 0 !important;
}
.form1 .input-group-btn button[type="submit"] {
  border-radius: 0 !important;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ffbc00;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ffbc00;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ffbc00;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffbc00;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffbc00;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: contrast(currentColor, #000000, #ffffff, 30%);
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffbc00;
}
.cid-qVmhbhnqPF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-qVmhbhnqPF .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-qVmhbhnqPF .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qVmhbhnqPF .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qVmhbhnqPF .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qVmhbhnqPF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qVmhbhnqPF .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qVmhbhnqPF .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qVmhbhnqPF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qVmhbhnqPF .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qVmhbhnqPF .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qVmhbhnqPF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qVmhbhnqPF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qVmhbhnqPF .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qVmhbhnqPF .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qVmhbhnqPF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qVmhbhnqPF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qVmhbhnqPF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qVmhbhnqPF .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-qVmhbhnqPF .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-qVmhbhnqPF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qVmhbhnqPF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qVmhbhnqPF .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qVmhbhnqPF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qVmhbhnqPF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qVmhbhnqPF .dropdown-item.active,
.cid-qVmhbhnqPF .dropdown-item:active {
  background-color: transparent;
}
.cid-qVmhbhnqPF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qVmhbhnqPF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qVmhbhnqPF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qVmhbhnqPF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-qVmhbhnqPF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qVmhbhnqPF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qVmhbhnqPF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qVmhbhnqPF .navbar-buttons {
  text-align: center;
}
.cid-qVmhbhnqPF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qVmhbhnqPF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qVmhbhnqPF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qVmhbhnqPF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qVmhbhnqPF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qVmhbhnqPF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qVmhbhnqPF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qVmhbhnqPF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qVmhbhnqPF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qVmhbhnqPF .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qVmhbhnqPF .nav-link:hover,
.cid-qVmhbhnqPF .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-qVmhp2IbvH {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qVmhp2IbvH .mbr-text,
.cid-qVmhp2IbvH .typed-text,
.cid-qVmhp2IbvH .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-qVmhp2IbvH .btn {
  margin-left: 4px !important;
}
.cid-qVmhp2IbvH .animated-element {
  color: #ffbc00;
}
.cid-qVmhp2IbvH .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-qVmhp2IbvH .mbr-section-text,
.cid-qVmhp2IbvH .mbr-section-btn {
  text-align: left;
}
.cid-qVmhp2IbvH SPAN {
  text-align: left;
}
.cid-qVmhp2IbvH .mbr-section-title {
  text-align: left;
}
.cid-qVmkGRK1T0 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/aj-family-2-1200x798.jpg");
}
.cid-qVmkGRK1T0 .mbr-section-title {
  margin: 0;
}
.cid-qVmkGRK1T0 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qVmkGRK1T0 .underline .line {
  width: 3rem;
  height: 2px;
  background: #ffffff;
  display: inline-block;
}
.cid-qVmkGRK1T0 .slider-testimonials {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-qVmkGRK1T0 .carousel-item {
  justify-content: center;
}
.cid-qVmkGRK1T0 .carousel-item.active,
.cid-qVmkGRK1T0 .carousel-item-next,
.cid-qVmkGRK1T0 .carousel-item-prev {
  display: flex;
}
.cid-qVmkGRK1T0 .carousel-control {
  transition: all .3s;
  opacity: 1;
  background-color: #000000;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 46%;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-qVmkGRK1T0 .carousel-control.carousel-control-prev {
  left: -25px;
}
.cid-qVmkGRK1T0 .carousel-control.carousel-control-prev:hover {
  left: -30px;
}
.cid-qVmkGRK1T0 .carousel-control.carousel-control-next {
  right: -25px;
}
.cid-qVmkGRK1T0 .carousel-control.carousel-control-next:hover {
  right: -30px;
}
.cid-qVmkGRK1T0 .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-qVmkGRK1T0 .carousel-control:hover {
  background-color: #ffbc00;
}
.cid-qVmkGRK1T0 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-qVmkGRK1T0 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 767px) {
  .cid-qVmkGRK1T0 .carousel-control-prev,
  .cid-qVmkGRK1T0 .carousel-control-next {
    display: none;
  }
  .cid-qVmkGRK1T0 .mbr-section-title {
    padding-bottom: 0;
  }
  .cid-qVmkGRK1T0 .slider-testimonials {
    padding: 2rem 1rem;
  }
}
@media (max-width: 230px) {
  .cid-qVmkGRK1T0 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-qVmkGRK1T0 .carousel-row:hover .carousel-control {
  visibility: visible;
}
.cid-qVmkGRK1T0 .user_name,
.cid-qVmkGRK1T0 .user_desk {
  text-align: right;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qVmkGRK1T0 .slider-testimonials {
    min-width: 100%;
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .cid-qVmkGRK1T0 .carousel-control-prev {
    left: -40px !important;
  }
  .cid-qVmkGRK1T0 .carousel-control-prev:hover {
    left: -45px !important;
  }
  .cid-qVmkGRK1T0 .carousel-control-next {
    right: -40px !important;
  }
  .cid-qVmkGRK1T0 .carousel-control-next:hover {
    right: -45px !important;
  }
}
.cid-qVmkGRK1T0 .mbr-section-title,
.cid-qVmkGRK1T0 .underline B {
  color: #000000;
}
.cid-qVmkGRK1T0 .mbr-section-title,
.cid-qVmkGRK1T0 .underline {
  color: #ffffff;
}
.cid-qVmkrITDRW {
  background-image: url("../../../assets/images/adobestock-135654752-2000x1333.jpg");
}
.cid-qVmkrITDRW .mbr-section {
  padding: 0;
}
.cid-qVmkrITDRW .first-col,
.cid-qVmkrITDRW .second-col {
  padding: 0 5%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-qVmkrITDRW .second-col {
  background-color: #000000;
}
.cid-qVmkrITDRW .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #3e97d1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qVmkrITDRW .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-qVmkrITDRW .social-media {
  display: flex;
  padding-left: 0;
}
.cid-qVmkrITDRW .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qVmkrITDRW .social-media ul li {
  padding-right: 0.6rem;
  margin-bottom: .5rem;
  display: inline-block;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-qVmkrITDRW .about-content {
    padding: 0 1rem;
  }
  .cid-qVmkrITDRW .typed-text {
    text-align: center;
  }
  .cid-qVmkrITDRW .second-col {
    padding: 1rem;
  }
  .cid-qVmkrITDRW .social-media {
    justify-content: center;
    padding: 0 1rem;
  }
  .cid-qVmkrITDRW .social-media ul li {
    padding: 0 0.3rem;
  }
}
.cid-qVmkrITDRW .mbr-section-title {
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.cid-qVmkrITDRW .mbr-section-title span {
  color: #ffbc00;
}
.cid-qVmkrITDRW .mbr-section-subtitle {
  color: #ffffff;
  letter-spacing: 0.03em;
}
.cid-qVmkrITDRW .progressbar-title p {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cid-qVmkrITDRW .progressbar-title {
  color: white;
}
.cid-qVmkrITDRW .progress {
  width: 100%;
  height: 5px;
  border-radius: 0;
}
.cid-qVmkrITDRW .progress_elements {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-qVmkrITDRW .progress_elements > div {
  flex: 0 0 100%;
  max-width: 100%;
}
.cid-qVmkrITDRW .progress-bar {
  height: 5px;
  background-color: #ffbc00;
}
.cid-qVmkrITDRW .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-qVmkrITDRW .progressbar-number {
  display: inline-block;
}
.cid-qVmkrITDRW .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-qVmkrITDRW .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qVmkrITDRW .progress_value {
  position: relative;
  color: #ffbc00;
}
.cid-qVmkrITDRW progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-qVmkrITDRW progress::-webkit-progress-value {
  background: #ffbc00;
}
.cid-qVmkrITDRW progress[value]::-moz-progress-bar {
  background: #ffbc00;
}
.cid-qVmkrITDRW progress::-ms-fill {
  background: #ffbc00;
}
.cid-qVmkrITDRW .progress1 .progressbar-number:before {
  content: '100';
}
.cid-qVmkrITDRW .progress2 .progressbar-number:before {
  content: '100';
}
.cid-qVmkrITDRW .progress3 .progressbar-number:before {
  content: '100';
}
.cid-qVmkrITDRW .progress4 .progressbar-number:before {
  content: '100';
}
.cid-qVmkrITDRW .progress5 .progressbar-number:before {
  content: '100';
}
.cid-qVmkrITDRW .progress-bar-1 {
  width: 100%;
}
.cid-qVmkrITDRW .progress-bar-2 {
  width: 100%;
}
.cid-qVmkrITDRW .progress-bar-3 {
  width: 100%;
}
.cid-qVmkrITDRW .progress-bar-4 {
  width: 100%;
}
.cid-qVmkrITDRW .progress-bar-5 {
  width: 100%;
}
.cid-qVrPlqu7tt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #013a4e;
}
.cid-qVrPlqu7tt .container-fluid {
  padding: 0 3rem;
}
.cid-qVrPlqu7tt .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qVrPlqu7tt svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qVrPlqu7tt .signature > span {
  color: #ffbc00;
}
@media (max-width: 767px) {
  .cid-qVrPlqu7tt .blockquote-quote {
    text-align: left;
  }
  .cid-qVrPlqu7tt .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qVrPlqu7tt .mbr-text,
.cid-qVrPlqu7tt .blockquote-quote {
  color: #efefef;
}
.cid-qVrPlqu7tt .mbr-section-title {
  color: #efefef;
}
.cid-rn8ICa7kaF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rn8ICa7kaF .mbr-section-heading {
  margin-bottom: 1.5em;
}
.cid-rn8ICa7kaF .form-group {
  margin-bottom: 1.3em;
}
.cid-rn8ICa7kaF .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-rn8ICa7kaF .form-control {
  border: 1px solid #ddd;
  background-color: white;
  padding-left: .5em;
  min-height: 2.5em;
  width: 100%;
}
.cid-rn8ICa7kaF textarea.form-control {
  height: 15em;
  padding: 0.5em 0.6em;
}
.cid-rn8ICa7kaF H2 {
  color: #ffffff;
}
.cid-qY3My5gByz {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #013a4e, #013a4e);
}
.cid-qY3My5gByz .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-qY3My5gByz .social-list a:focus {
  text-decoration: none;
}
.cid-qY3My5gByz H2 {
  color: #ffffff;
}
.cid-qZi64iwo7m .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-qZi64iwo7m .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-qZi64iwo7m .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qZi64iwo7m .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qZi64iwo7m .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qZi64iwo7m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qZi64iwo7m .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qZi64iwo7m .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-qZi64iwo7m .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qZi64iwo7m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qZi64iwo7m .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qZi64iwo7m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qZi64iwo7m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qZi64iwo7m .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qZi64iwo7m .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qZi64iwo7m .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qZi64iwo7m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qZi64iwo7m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qZi64iwo7m .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qZi64iwo7m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qZi64iwo7m .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qZi64iwo7m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qZi64iwo7m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qZi64iwo7m .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qZi64iwo7m .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qZi64iwo7m .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qZi64iwo7m .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qZi64iwo7m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qZi64iwo7m .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qZi64iwo7m .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qZi64iwo7m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qZi64iwo7m .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-qZi64iwo7m .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-qZi64iwo7m .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qZi64iwo7m .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qZi64iwo7m .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qZi64iwo7m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qZi64iwo7m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qZi64iwo7m .dropdown-item.active,
.cid-qZi64iwo7m .dropdown-item:active {
  background-color: transparent;
}
.cid-qZi64iwo7m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qZi64iwo7m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qZi64iwo7m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qZi64iwo7m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-qZi64iwo7m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qZi64iwo7m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qZi64iwo7m ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qZi64iwo7m .navbar-buttons {
  text-align: center;
}
.cid-qZi64iwo7m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qZi64iwo7m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qZi64iwo7m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qZi64iwo7m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qZi64iwo7m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qZi64iwo7m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qZi64iwo7m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZi64iwo7m nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qZi64iwo7m nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qZi64iwo7m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qZi64iwo7m .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qZi64iwo7m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qZi64iwo7m .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qZi64iwo7m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qZi64iwo7m .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qZi64iwo7m .nav-link:hover,
.cid-qZi64iwo7m .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-qZhKRjrRqC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/adobestock-100798532-2000x860.jpg");
}
.cid-qZhKRjrRqC .mbr-text,
.cid-qZhKRjrRqC .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-qZhKRjrRqC .mbr-section-title {
  margin-left: -0.2rem;
}
.cid-qZhKRjrRqC .mbr-section-title span {
  color: #ffbc00;
}
.cid-qZhKRjrRqC .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-qZhKRjrRqC .mbr-section-title {
    margin-left: -0.8rem;
  }
}
.cid-qZhPZxrFrE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #013a4e;
}
.cid-qZGPjdpljX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #013a4e;
}
.cid-qZGPjdpljX .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qZGPjdpljX .photo-split {
  padding: 0;
}
.cid-qZGPjdpljX .photo-split img {
  width: 100%;
}
.cid-qZGPjdpljX .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-qZGPjdpljX .counter-container ul {
  display: flex;
  flex-direction: column;
}
.cid-qZGPjdpljX .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qZGPjdpljX .wrap-block {
  padding: 3rem 3rem;
}
.cid-qZGPjdpljX .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qZGPjdpljX .wrap-block ul li {
  display: inline-block;
}
.cid-qZGPjdpljX .wrap-block ul li span {
  text-align: center;
}
.cid-qZGPjdpljX .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qZGPjdpljX .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qZGPjdpljX .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qZGPjdpljX .mbr-list,
.cid-qZGPjdpljX .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qZGPjdpljX .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qZGPjdpljX .mbr-section-title,
  .cid-qZGPjdpljX .mbr-section-subtitle,
  .cid-qZGPjdpljX .mbr-text {
    text-align: center !important;
  }
  .cid-qZGPjdpljX .social-list {
    text-align: center !important;
  }
}
.cid-qZGPjdpljX .mbr-section-title {
  color: #efefef;
}
.cid-qZGPjdpljX .mbr-section-subtitle {
  color: #efefef;
}
.cid-qZGPjdpljX .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qZGIlupNgq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #013a4e;
}
.cid-qZGIlupNgq .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qZGIlupNgq .content-row {
  flex-direction: row-reverse;
}
.cid-qZGIlupNgq .photo-split {
  padding: 0;
}
.cid-qZGIlupNgq .photo-split img {
  width: 100%;
}
.cid-qZGIlupNgq .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-qZGIlupNgq .counter-container ul {
  display: flex;
  flex-direction: column;
}
.cid-qZGIlupNgq .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qZGIlupNgq .wrap-block {
  padding: 3rem 3rem;
}
.cid-qZGIlupNgq .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qZGIlupNgq .wrap-block ul li {
  display: inline-block;
}
.cid-qZGIlupNgq .wrap-block ul li span {
  text-align: center;
}
.cid-qZGIlupNgq .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qZGIlupNgq .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qZGIlupNgq .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qZGIlupNgq .mbr-list,
.cid-qZGIlupNgq .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qZGIlupNgq .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qZGIlupNgq .mbr-section-title,
  .cid-qZGIlupNgq .mbr-section-subtitle,
  .cid-qZGIlupNgq .mbr-text {
    text-align: center !important;
  }
  .cid-qZGIlupNgq .social-list {
    text-align: center !important;
  }
}
.cid-qZGIlupNgq .mbr-section-title {
  color: #efefef;
}
.cid-qZGIlupNgq .mbr-section-subtitle {
  color: #efefef;
}
.cid-qZGIlupNgq .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qZGJWZ6YaQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #013a4e;
}
.cid-qZGJWZ6YaQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qZGJWZ6YaQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qZGJWZ6YaQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qZGJWZ6YaQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qZGJWZ6YaQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qZGJWZ6YaQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qZGJWZ6YaQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qZGJWZ6YaQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qZGJWZ6YaQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qZhDNtTtOl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #013a4e;
}
.cid-qZhDNtTtOl .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qZhDNtTtOl .photo-split {
  padding: 0;
}
.cid-qZhDNtTtOl .photo-split img {
  width: 100%;
}
.cid-qZhDNtTtOl .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-qZhDNtTtOl .counter-container ul {
  display: flex;
  flex-direction: column;
}
.cid-qZhDNtTtOl .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qZhDNtTtOl .wrap-block {
  padding: 3rem 3rem;
}
.cid-qZhDNtTtOl .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qZhDNtTtOl .wrap-block ul li {
  display: inline-block;
}
.cid-qZhDNtTtOl .wrap-block ul li span {
  text-align: center;
}
.cid-qZhDNtTtOl .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qZhDNtTtOl .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qZhDNtTtOl .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qZhDNtTtOl .mbr-list,
.cid-qZhDNtTtOl .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qZhDNtTtOl .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qZhDNtTtOl .mbr-section-title,
  .cid-qZhDNtTtOl .mbr-section-subtitle,
  .cid-qZhDNtTtOl .mbr-text {
    text-align: center !important;
  }
  .cid-qZhDNtTtOl .social-list {
    text-align: center !important;
  }
}
.cid-qZhDNtTtOl .mbr-section-title {
  color: #efefef;
}
.cid-qZhDNtTtOl .mbr-section-subtitle {
  color: #efefef;
}
.cid-qZhDNtTtOl .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qZhDNusBGh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #013a4e;
}
.cid-qZhDNusBGh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qZhDNusBGh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qZhDNusBGh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qZhDNusBGh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qZhDNusBGh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qZhDNusBGh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qZhDNusBGh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qZhDNusBGh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qZhDNusBGh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qZhDNvcRqF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #013a4e;
}
.cid-qZhDNvcRqF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qZhDNvcRqF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qZhDNvcRqF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qZhDNvcRqF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qZhDNvcRqF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qZhDNvcRqF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qZhDNvcRqF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qZhDNvcRqF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qZhDNvcRqF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qZhDNvVQa4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #013a4e;
}
.cid-qZhDNvVQa4 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qZhDNvVQa4 .content-row {
  flex-direction: row-reverse;
}
.cid-qZhDNvVQa4 .photo-split {
  padding: 0;
}
.cid-qZhDNvVQa4 .photo-split img {
  width: 100%;
}
.cid-qZhDNvVQa4 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-qZhDNvVQa4 .counter-container ul {
  display: flex;
  flex-direction: column;
}
.cid-qZhDNvVQa4 .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qZhDNvVQa4 .wrap-block {
  padding: 3rem 3rem;
}
.cid-qZhDNvVQa4 .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qZhDNvVQa4 .wrap-block ul li {
  display: inline-block;
}
.cid-qZhDNvVQa4 .wrap-block ul li span {
  text-align: center;
}
.cid-qZhDNvVQa4 .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qZhDNvVQa4 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qZhDNvVQa4 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qZhDNvVQa4 .mbr-list,
.cid-qZhDNvVQa4 .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qZhDNvVQa4 .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qZhDNvVQa4 .mbr-section-title,
  .cid-qZhDNvVQa4 .mbr-section-subtitle,
  .cid-qZhDNvVQa4 .mbr-text {
    text-align: center !important;
  }
  .cid-qZhDNvVQa4 .social-list {
    text-align: center !important;
  }
}
.cid-qZhDNvVQa4 .mbr-section-title {
  color: #efefef;
}
.cid-qZhDNvVQa4 .mbr-section-subtitle {
  color: #efefef;
}
.cid-qZhDNvVQa4 .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qZhDNwGhS3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #013a4e;
}
.cid-qZhDNwGhS3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qZhDNwGhS3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qZhDNwGhS3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qZhDNwGhS3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qZhDNwGhS3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qZhDNwGhS3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qZhDNwGhS3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qZhDNwGhS3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qZhDNwGhS3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qZhDNxrfvi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #013a4e;
}
.cid-qZhDNxrfvi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qZhDNxrfvi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qZhDNxrfvi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qZhDNxrfvi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qZhDNxrfvi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qZhDNxrfvi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qZhDNxrfvi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qZhDNxrfvi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qZhDNxrfvi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qZhDNynyPR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #013a4e;
}
.cid-qZhDNynyPR .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qZhDNynyPR .photo-split {
  padding: 0;
}
.cid-qZhDNynyPR .photo-split img {
  width: 100%;
}
.cid-qZhDNynyPR .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-qZhDNynyPR .counter-container ul {
  display: flex;
  flex-direction: column;
}
.cid-qZhDNynyPR .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-qZhDNynyPR .wrap-block {
  padding: 3rem 3rem;
}
.cid-qZhDNynyPR .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-qZhDNynyPR .wrap-block ul li {
  display: inline-block;
}
.cid-qZhDNynyPR .wrap-block ul li span {
  text-align: center;
}
.cid-qZhDNynyPR .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-qZhDNynyPR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qZhDNynyPR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qZhDNynyPR .mbr-list,
.cid-qZhDNynyPR .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-qZhDNynyPR .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qZhDNynyPR .mbr-section-title,
  .cid-qZhDNynyPR .mbr-section-subtitle,
  .cid-qZhDNynyPR .mbr-text {
    text-align: center !important;
  }
  .cid-qZhDNynyPR .social-list {
    text-align: center !important;
  }
}
.cid-qZhDNynyPR .mbr-section-title {
  color: #efefef;
}
.cid-qZhDNynyPR .mbr-section-subtitle {
  color: #efefef;
}
.cid-qZhDNynyPR .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-qZhDNz9xjZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #013a4e;
}
.cid-qZhDNz9xjZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qZhDNz9xjZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qZhDNz9xjZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qZhDNz9xjZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qZhDNz9xjZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qZhDNz9xjZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qZhDNz9xjZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qZhDNz9xjZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qZhDNz9xjZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qZhDNAhfiV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #013a4e;
}
.cid-qZhDNBV72L {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #013a4e;
}
.cid-qZhDNBV72L [class^="socicon-"]:before,
.cid-qZhDNBV72L [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-qZhDNBV72L .btn-social {
  border-color: #149dcc;
}
.cid-qZhDNBV72L .btn-social:hover {
  background: #149dcc;
}
.cid-qZhDNBV72L .btn-social:hover i.socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-qZhDNBV72L .btn {
    font-size: 20px !important;
  }
}
.cid-qZhDNBV72L .btn-social,
.cid-qZhDNBV72L .mbr-section-title {
  color: #ffffff;
}
.cid-qZhDNCzlia {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #013a4e, #013a4e);
}
.cid-qZhDNCzlia .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-qZhDNCzlia .social-list a:focus {
  text-decoration: none;
}
.cid-qZhDNCzlia H2 {
  color: #ffffff;
}
.cid-qVmhbhnqPF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-qVmhbhnqPF .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-qVmhbhnqPF .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qVmhbhnqPF .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qVmhbhnqPF .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qVmhbhnqPF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qVmhbhnqPF .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qVmhbhnqPF .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qVmhbhnqPF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qVmhbhnqPF .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qVmhbhnqPF .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qVmhbhnqPF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qVmhbhnqPF .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qVmhbhnqPF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qVmhbhnqPF .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qVmhbhnqPF .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qVmhbhnqPF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qVmhbhnqPF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qVmhbhnqPF .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qVmhbhnqPF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qVmhbhnqPF .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-qVmhbhnqPF .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-qVmhbhnqPF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qVmhbhnqPF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qVmhbhnqPF .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qVmhbhnqPF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qVmhbhnqPF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qVmhbhnqPF .dropdown-item.active,
.cid-qVmhbhnqPF .dropdown-item:active {
  background-color: transparent;
}
.cid-qVmhbhnqPF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qVmhbhnqPF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qVmhbhnqPF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qVmhbhnqPF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-qVmhbhnqPF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qVmhbhnqPF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qVmhbhnqPF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qVmhbhnqPF .navbar-buttons {
  text-align: center;
}
.cid-qVmhbhnqPF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qVmhbhnqPF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qVmhbhnqPF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qVmhbhnqPF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qVmhbhnqPF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qVmhbhnqPF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qVmhbhnqPF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qVmhbhnqPF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qVmhbhnqPF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qVmhbhnqPF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qVmhbhnqPF .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qVmhbhnqPF .nav-link:hover,
.cid-qVmhbhnqPF .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-qZpnAsfi3N {
  padding-top: 90px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/keys-1595x1081.jpg");
}
.cid-qZpnAsfi3N .main-heading-content {
  margin-bottom: 5rem;
}
.cid-qZpnAsfi3N .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qZpnAsfi3N .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qZpnAsfi3N .form-control {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  display: block;
  line-height: 1.42857;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
}
.cid-qZpnAsfi3N .form-control,
.cid-qZpnAsfi3N textarea {
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.cid-qZpnAsfi3N .google-map {
  width: 100%;
  height: 30rem;
}
.cid-qZpnAsfi3N .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-qZpnAsfi3N a:link {
  text-decoration: none;
}
.cid-qZpnAsfi3N .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qZpnAsfi3N .mbr-section-title,
.cid-qZpnAsfi3N .underline {
  text-align: center;
  color: #ffffff;
}
.cid-qZpqWysnRd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #013a4e;
}
.cid-qZpqWysnRd blockquote {
  color: #232323;
  font-size: inherit;
  font-style: normal;
}
.cid-qZpqWysnRd .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-qZpqWysnRd .mbr-iconfont.right-top {
  right: -1rem;
  top: -1rem;
}
.cid-qZpqWysnRd BLOCKQUOTE {
  color: #ffffff;
}
.cid-qZpqWysnRd DIV {
  text-align: left;
}
.cid-qZpqr7J8Mi {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #013a4e, #013a4e);
}
.cid-qZpqr7J8Mi .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-qZpqr7J8Mi .social-list a:focus {
  text-decoration: none;
}
.cid-qZpqr7J8Mi H2 {
  color: #ffffff;
}
