@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Comfortaa:300,400,500,600,700&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 0.9rem;
}
/* ---- 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: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #096693 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #05344b;
  border-color: #05344b;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #096693 !important;
  border-color: #096693 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #05344b !important;
  border-color: #05344b !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #05344b !important;
  border-color: #05344b !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #05344b;
  border-color: #05344b;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #096693 !important;
  border-color: #096693 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #05344b !important;
  border-color: #05344b !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #05344b !important;
  border-color: #05344b !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.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:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.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:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #096693;
  border-color: #096693;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #032333;
  color: #032333 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #096693;
  border-color: #096693;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #096693 !important;
  border-color: #096693 !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #096693;
  border-color: #096693;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #032333;
  color: #032333 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #096693;
  border-color: #096693;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #096693 !important;
  border-color: #096693 !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
}
.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:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}
.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;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #096693 !important;
}
.text-secondary {
  color: #096693 !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #032333 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #032333 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !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: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #096693;
  border-color: #096693;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #096693;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2ab1f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 0.9rem;
}
blockquote {
  border-color: #096693;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #096693;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #096693;
  border-bottom-color: #096693;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #096693 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #096693 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23096693' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sgTbVUDK8U .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sgTbVUDK8U .nav-item:focus,
.cid-sgTbVUDK8U .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sgTbVUDK8U .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sgTbVUDK8U .nav-item .nav-link {
    position: relative;
  }
  .cid-sgTbVUDK8U .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #096693);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sgTbVUDK8U .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sgTbVUDK8U .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sgTbVUDK8U .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sgTbVUDK8U .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sgTbVUDK8U .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-sgTbVUDK8U .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sgTbVUDK8U .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sgTbVUDK8U .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #2e2e2e;
  background: none;
}
.cid-sgTbVUDK8U .navbar.opened {
  transition: all .3s;
  background: #2e2e2e !important;
}
.cid-sgTbVUDK8U .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-sgTbVUDK8U .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgTbVUDK8U .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sgTbVUDK8U .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sgTbVUDK8U .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sgTbVUDK8U .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgTbVUDK8U .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgTbVUDK8U .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgTbVUDK8U .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-sgTbVUDK8U .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgTbVUDK8U .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sgTbVUDK8U .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sgTbVUDK8U .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sgTbVUDK8U .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgTbVUDK8U .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgTbVUDK8U .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgTbVUDK8U .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgTbVUDK8U .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-sgTbVUDK8U .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sgTbVUDK8U .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgTbVUDK8U .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sgTbVUDK8U .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sgTbVUDK8U .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sgTbVUDK8U .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sgTbVUDK8U .navbar.navbar-short {
  background: #2e2e2e !important;
  min-height: 60px;
}
.cid-sgTbVUDK8U .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sgTbVUDK8U .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgTbVUDK8U .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sgTbVUDK8U .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgTbVUDK8U .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgTbVUDK8U .dropdown-item.active,
.cid-sgTbVUDK8U .dropdown-item:active {
  background-color: transparent;
}
.cid-sgTbVUDK8U .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgTbVUDK8U .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgTbVUDK8U .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgTbVUDK8U .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e2e2e;
}
.cid-sgTbVUDK8U .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgTbVUDK8U .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgTbVUDK8U ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgTbVUDK8U .navbar-buttons {
  text-align: center;
}
.cid-sgTbVUDK8U button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sgTbVUDK8U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgTbVUDK8U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sgTbVUDK8U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sgTbVUDK8U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sgTbVUDK8U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sgTbVUDK8U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgTbVUDK8U nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sgTbVUDK8U nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sgTbVUDK8U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgTbVUDK8U .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sgTbVUDK8U a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgTbVUDK8U .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sgTbVUDK8U .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sgTbVUDK8U .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgTbVUDK8U .navbar {
    height: 77px;
  }
  .cid-sgTbVUDK8U .navbar.opened {
    height: auto;
  }
  .cid-sgTbVUDK8U .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sgT8GuMS3E .modal-body .close {
  background: #1b1b1b;
}
.cid-sgT8GuMS3E .modal-body .close span {
  font-style: normal;
}
.cid-sgT8GuMS3E .carousel-inner > .active,
.cid-sgT8GuMS3E .carousel-inner > .next,
.cid-sgT8GuMS3E .carousel-inner > .prev {
  display: table;
}
.cid-sgT8GuMS3E .carousel-control .icon-next,
.cid-sgT8GuMS3E .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sgT8GuMS3E .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sgT8GuMS3E .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sgT8GuMS3E .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sgT8GuMS3E .boxed-slider > div {
  position: relative;
}
.cid-sgT8GuMS3E .container img {
  width: 100%;
}
.cid-sgT8GuMS3E .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sgT8GuMS3E .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sgT8GuMS3E .mbr-table-cell {
  padding: 0;
}
.cid-sgT8GuMS3E .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sgT8GuMS3E .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sgT8GuMS3E .mbr-overlay {
  z-index: 1;
}
.cid-sgT8GuMS3E .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sgT8GuMS3E .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sgT8GuMS3E .carousel-item .container {
    width: 100%;
  }
}
.cid-sgT8GuMS3E .carousel-item-next.carousel-item-left,
.cid-sgT8GuMS3E .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sgT8GuMS3E .active.carousel-item-right,
.cid-sgT8GuMS3E .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-sgT8GuMS3E .active.carousel-item-left,
.cid-sgT8GuMS3E .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-sgT8GuMS3E .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sgT8GuMS3E .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgT8GuMS3E .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgT8GuMS3E .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sgT8GuMS3E .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sgT8GuMS3E .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sgT8GuMS3E .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sgT8GuMS3E .mbr-slider .carousel-indicators li.active,
.cid-sgT8GuMS3E .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sgT8GuMS3E .mbr-slider .carousel-indicators li::after,
.cid-sgT8GuMS3E .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sgT8GuMS3E .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sgT8GuMS3E .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sgT8GuMS3E .mbr-slider > .container img {
  width: 100%;
}
.cid-sgT8GuMS3E .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sgT8GuMS3E .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sgT8GuMS3E .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sgT8GuMS3E .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sgT8GuMS3E .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sgT8GuMS3E .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-sgT8GuMS3E .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sgT8GuMS3E .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-sgT8GuMS3E .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sgT8GuMS3E .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sgT8GuMS3E .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sgT8GuMS3E .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sgT8GuMS3E .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-shm8PrBmH6 {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to right, #1ba1e2 0%, #1ba1e2 30%, #096693 30%, #096693 100%);
}
.cid-shm8PrBmH6 .animated-element {
  color: #efefef;
}
.cid-shm8PrBmH6 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (min-width: 992px) {
  .cid-shm8PrBmH6 .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-shm8PrBmH6 {
    background: #096693;
  }
}
.cid-shm8PrBmH6 .mbr-section-subtitle {
  color: #cccccc;
}
.cid-shm8PrBmH6 .mbr-text,
.cid-shm8PrBmH6 .mbr-section-btn {
  color: #efefef;
}
.cid-soCKa801VC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f7f7f7;
}
.cid-soCKa801VC .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-soCKa801VC .card-img {
  overflow: hidden;
  border-radius: 0;
  position: relative;
}
.cid-soCKa801VC .card-img:hover .img-hover {
  opacity: 0.5;
}
.cid-soCKa801VC .card-img:hover .img-btn {
  opacity: 1;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-soCKa801VC .btn {
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-soCKa801VC .img-btn {
  transition: all 0.5s;
  position: absolute;
  display: block;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 0;
}
.cid-soCKa801VC .img-hover {
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  background: #52bdf1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.cid-soCKa801VC .content-box {
  display: flex;
}
.cid-soCKa801VC .date-box {
  background: #187dec;
  width: 110px;
  padding: 5px;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-soCKa801VC .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-soCKa801VC .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-soCKa801VC .rev,
.cid-soCKa801VC .mbr-iconfont {
  display: inline-block;
}
.cid-soCKa801VC .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #1ba1e2;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-soCKa801VC .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-soCKa801VC .card-box {
  padding: 1rem;
}
.cid-soCKa801VC .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: center;
}
.cid-soCKa801VC .mbr-section-title,
.cid-soCKa801VC .line-wrap {
  text-align: center;
  color: #1ba1e2;
}
.cid-soCKa801VC .rev {
  text-align: left;
  color: #0a1c44;
}
.cid-soCKa801VC .date {
  text-align: center;
  color: #ffffff;
}
.cid-soCKa801VC .mounth {
  text-align: center;
  color: #ffffff;
}
.cid-soCKa801VC .time {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-soCKa801VC .img-hover {
    opacity: 0.5;
  }
  .cid-soCKa801VC .img-btn {
    opacity: 1;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.cid-shmZPSLYbf {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #096693;
}
.cid-shmZPSLYbf .mbr-iconfont {
  color: #767676;
  font-size: 0.3rem;
}
.cid-shmZPSLYbf .title,
.cid-shmZPSLYbf .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-shmZPSLYbf .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-shmZPSLYbf .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-shmZPSLYbf .phone {
  margin-bottom: 0;
  color: #000000;
  text-align: left;
}
.cid-shmZPSLYbf .text-box {
  padding: 0rem;
}
.cid-shmZPSLYbf .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-shmZPSLYbf .card-title {
  color: #096693;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-shmZPSLYbf .card-img {
  overflow: hidden;
}
.cid-shmZPSLYbf .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-shmZPSLYbf .card-box {
  padding: 0rem;
}
.cid-shmZPSLYbf img {
  transition: all 0.3s;
}
.cid-shmZPSLYbf .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-shmZPSLYbf .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-shmZPSLYbf .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-shmZPSLYbf .card-img {
    width: 30%;
  }
  .cid-shmZPSLYbf .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-shmZPSLYbf .card-img {
    width: 50%;
  }
  .cid-shmZPSLYbf .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-shmZPSLYbf .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-shmZPSLYbf .card-img {
    width: 100%;
  }
  .cid-shmZPSLYbf .card-box {
    width: 100%;
  }
}
.cid-shmZPSLYbf .card-box > p,
.cid-shmZPSLYbf .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-shncptwe0f {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #096693;
}
.cid-shncptwe0f .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-shncptwe0f .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-shncptwe0f H2 {
  margin: 0;
  width: 100%;
  text-align: right;
}
.cid-shncptwe0f h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-shncptwe0f .title {
    margin-bottom: 2rem;
  }
  .cid-shncptwe0f .align-left,
  .cid-shncptwe0f .align-right {
    text-align: center;
  }
}
.cid-shmjkjQnJS {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-shmjkjQnJS .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-shmjkjQnJS .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-shmjkjQnJS .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-shmjkjQnJS .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-shmjkjQnJS .process-icon,
.cid-shmjkjQnJS .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-shmjkjQnJS .wrapper,
.cid-shmjkjQnJS .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-shmjkjQnJS .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #096693;
  opacity: .4;
}
.cid-shmjkjQnJS .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-shmjkjQnJS .icon-container a {
  display: inherit;
}
.cid-shmjkjQnJS .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #1ba1e2 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-shmjkjQnJS .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-shmjkjQnJS .icon-main:hover .icon-wrapper {
  background-color: #1ba1e2 !important;
}
.cid-shmjkjQnJS .icon-main:hover .icon-number {
  background-color: #096693 !important;
  color: #ffffff !important;
}
.cid-shmjkjQnJS .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-shmjkjQnJS .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-shmjkjQnJS .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-shmjkjQnJS .third-elem .wrapper:before {
    display: none;
  }
}
.cid-shmjkjQnJS .mbr-section-title {
  margin: 0;
}
.cid-shmjkjQnJS .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-shat7iKgDE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #096693;
}
.cid-shat7iKgDE h2,
.cid-shat7iKgDE h3,
.cid-shat7iKgDE h4,
.cid-shat7iKgDE p {
  color: #ffffff;
}
.cid-shat7iKgDE .mbr-overlay {
  z-index: -1;
}
.cid-shat7iKgDE .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-shat7iKgDE .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-shat7iKgDE .form-control:focus,
.cid-shat7iKgDE .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-shat7iKgDE .form-group {
  margin-bottom: 1rem;
}
.cid-shat7iKgDE input::-webkit-input-placeholder,
.cid-shat7iKgDE textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-shat7iKgDE input:-moz-placeholder,
.cid-shat7iKgDE textarea:-moz-placeholder {
  color: #656565;
}
.cid-shat7iKgDE .jq-selectbox li,
.cid-shat7iKgDE .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shat7iKgDE .jq-selectbox li:hover,
.cid-shat7iKgDE .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shat7iKgDE .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shat7iKgDE .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shat7iKgDE .subtext {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.cid-shat7iKgDE .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-shat7iKgDE .mbr-text {
  color: #767676;
}
.cid-shat7iKgDE .form-block {
  padding: 3rem;
  position: relative;
}
.cid-shat7iKgDE .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-shat7iKgDE .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-shat7iKgDE a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-shat7iKgDE .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-shat7iKgDE .input-group-btn {
  display: block;
  text-align: center;
}
.cid-shat7iKgDE textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-shat7iKgDE .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-shat7iKgDE .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-shat7iKgDE .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-shat7iKgDE h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-shat7iKgDE .block-content {
    padding: 0;
  }
  .cid-shat7iKgDE .form-block {
    padding: 1rem;
  }
}
.cid-shnrMBR2bP {
  background-image: url("../../../assets/images/mbr-1920x1011.jpg");
  background-position: right;
}
.cid-shnrMBR2bP .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-shnrMBR2bP .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-shnrMBR2bP .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-shnrMBR2bP img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-shnrMBR2bP .wrapper {
    padding: 1rem 1.5rem;
  }
}
#instagram-feed-block-h .inst__title {
  color: #096693;
}
.cid-shmXvb04Py {
  padding-top: 90px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/mbr-1920x1011.jpg");
}
.cid-shmXvb04Py .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #1ba1e2;
}
.cid-shmXvb04Py .block {
  background-color: #096693;
}
.cid-shmXvb04Py img {
  width: 100%;
}
.cid-shmXvb04Py .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
  display: flex;
  justify-content: flex-end;
}
.cid-shmXvb04Py .content {
  max-width: 600px;
}
.cid-shmXvb04Py h4 {
  position: absolute;
  transform: rotate(270deg);
  transform-origin: bottom left;
  left: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-shmXvb04Py .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-shmXvb04Py h4 {
    left: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-shmXvb04Py .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-shmXvb04Py h4 {
    left: 2rem;
    bottom: 30%;
  }
  .cid-shmXvb04Py .content-wrapper {
    padding-left: 3rem;
  }
}
.cid-shmXvb04Py H1 {
  color: #ffffff;
}
.cid-shmXvb04Py .mbr-text,
.cid-shmXvb04Py .mbr-section-btn {
  color: #ffffff;
}
.cid-shmXvb04Py H4 {
  color: #ffffff;
}
.cid-shpdAtPTDp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-shpdAtPTDp .card-icon {
  font-size: 72px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-shpdAtPTDp .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-shpdAtPTDp .card {
  margin: 0!important;
  padding: 0!important;
  border-radius: 0;
}
.cid-shpdAtPTDp p {
  font-weight: 400;
}
.cid-shpdAtPTDp .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  transition: all 0.3s;
}
.cid-shpdAtPTDp .link-ico:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray!important;
}
.cid-shpdAtPTDp .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-shpdAtPTDp .bg1 {
  background: #1ba1e2;
}
.cid-shpdAtPTDp .bg2 {
  background: #0f7699;
}
.cid-shpdAtPTDp .bg3 {
  background: #1ba1e2;
}
.cid-shpdAtPTDp .bg4 {
  background: #149dcc;
}
.cid-shpdAtPTDp .card-wrapper {
  padding: 4rem 2rem;
  transition: background 0.3s;
}
.cid-shpdAtPTDp .card-wrapper:hover .link-ico {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray!important;
}
.cid-shpdAtPTDp .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.cid-shpdAtPTDp .card-title,
.cid-shpdAtPTDp .card-ico,
.cid-shpdAtPTDp .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-shpdAtPTDp .mbr-text,
.cid-shpdAtPTDp .card-link {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-shpdAtPTDp .row {
    padding: 0 1rem;
  }
}
.cid-shcut9xx2r {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1011.jpg");
}
.cid-shcut9xx2r .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-shcut9xx2r .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-shcut9xx2r .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-shcut9xx2r .mbr-text {
    text-align: center;
  }
}
.cid-shcut9xx2r .mbr-text,
.cid-shcut9xx2r .mbr-section-btn {
  color: #ffffff;
}
.cid-shcut9xx2r H1 {
  color: #000000;
}
.cid-shmeNPfxA1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-shmeNPfxA1 .content {
    text-align: center;
  }
  .cid-shmeNPfxA1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-shmeNPfxA1 .img-logo img {
  height: 6rem;
  width: auto;
}
.cid-shmeNPfxA1 textarea.form-control {
  resize: none;
}
.cid-shmeNPfxA1 .input-group-btn {
  display: inline-block;
}
.cid-shmeNPfxA1 .input-group-btn .btn {
  margin: 0 !important;
  padding: 0.75rem 1.5625rem !important;
  text-transform: none;
}
.cid-shmeNPfxA1 .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-shmeNPfxA1 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-shmeNPfxA1 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-shmeNPfxA1 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-shmeNPfxA1 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-shmeNPfxA1 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-shmeNPfxA1 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-shmeNPfxA1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-shmeNPfxA1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-shmeNPfxA1 .form-control,
.cid-shmeNPfxA1 .input-group-btn .btn {
  border-radius: 3px;
}
.cid-shp5XZ7IdS .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-shp5XZ7IdS .nav-item:focus,
.cid-shp5XZ7IdS .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-shp5XZ7IdS .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-shp5XZ7IdS .nav-item .nav-link {
    position: relative;
  }
  .cid-shp5XZ7IdS .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #096693);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-shp5XZ7IdS .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-shp5XZ7IdS .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shp5XZ7IdS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-shp5XZ7IdS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shp5XZ7IdS .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-shp5XZ7IdS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shp5XZ7IdS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shp5XZ7IdS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #2e2e2e;
  background: none;
}
.cid-shp5XZ7IdS .navbar.opened {
  transition: all .3s;
  background: #2e2e2e !important;
}
.cid-shp5XZ7IdS .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-shp5XZ7IdS .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-shp5XZ7IdS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shp5XZ7IdS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-shp5XZ7IdS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-shp5XZ7IdS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-shp5XZ7IdS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shp5XZ7IdS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shp5XZ7IdS .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-shp5XZ7IdS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shp5XZ7IdS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-shp5XZ7IdS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-shp5XZ7IdS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shp5XZ7IdS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shp5XZ7IdS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-shp5XZ7IdS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shp5XZ7IdS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shp5XZ7IdS .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-shp5XZ7IdS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-shp5XZ7IdS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shp5XZ7IdS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shp5XZ7IdS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-shp5XZ7IdS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-shp5XZ7IdS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-shp5XZ7IdS .navbar.navbar-short {
  background: #2e2e2e !important;
  min-height: 60px;
}
.cid-shp5XZ7IdS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-shp5XZ7IdS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-shp5XZ7IdS .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shp5XZ7IdS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shp5XZ7IdS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shp5XZ7IdS .dropdown-item.active,
.cid-shp5XZ7IdS .dropdown-item:active {
  background-color: transparent;
}
.cid-shp5XZ7IdS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shp5XZ7IdS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shp5XZ7IdS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shp5XZ7IdS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e2e2e;
}
.cid-shp5XZ7IdS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shp5XZ7IdS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shp5XZ7IdS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-shp5XZ7IdS .navbar-buttons {
  text-align: center;
}
.cid-shp5XZ7IdS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-shp5XZ7IdS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-shp5XZ7IdS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-shp5XZ7IdS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-shp5XZ7IdS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-shp5XZ7IdS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-shp5XZ7IdS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-shp5XZ7IdS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-shp5XZ7IdS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-shp5XZ7IdS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-shp5XZ7IdS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-shp5XZ7IdS a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-shp5XZ7IdS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-shp5XZ7IdS .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-shp5XZ7IdS .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-shp5XZ7IdS .navbar {
    height: 77px;
  }
  .cid-shp5XZ7IdS .navbar.opened {
    height: auto;
  }
  .cid-shp5XZ7IdS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shpaDpp7SX {
  overflow: hidden !important;
  background-image: url("../../../assets/images/img-7005-2000x1333.jpeg");
}
.cid-shpaDpp7SX .container-fluid {
  padding: 0 3rem;
}
.cid-shpaDpp7SX .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-shpaDpp7SX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-shpaDpp7SX .mbr-section-subtitle,
.cid-shpaDpp7SX .mbr-section-btn {
  color: #ffffff;
}
.cid-shp6rySSZP {
  padding-top: 90px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-shp6rySSZP .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-shp6rySSZP .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #096693);
  display: inline-block;
}
.cid-shp6rySSZP .container-fluid {
  padding: 0 3rem;
}
.cid-shp6rySSZP .mbr-iconfont {
  color: #cccccc;
  font-size: 1.6rem;
}
.cid-shp6rySSZP .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-shp6rySSZP .image-wrap img {
  border-radius: 50%;
  width: 40%;
  height: 40%;
}
.cid-shp6rySSZP .mbr-title {
  margin-bottom: 0;
}
.cid-shp6rySSZP .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-shp6rySSZP .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-shp6rySSZP .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-shp6rySSZP .card-wrap {
    padding: 0 1rem;
  }
  .cid-shp6rySSZP .container-fluid {
    padding: 0 1rem;
  }
  .cid-shp6rySSZP .mbr-role {
    margin-top: .5rem;
  }
}
.cid-shp6rySSZP .social-media,
.cid-shp6rySSZP .image-wrap,
.cid-shp6rySSZP .mbr-title {
  text-align: left;
  color: #096693;
}
.cid-shp6rySSZP .mbr-role {
  text-align: left;
}
.cid-shp6rySSZP .mbr-section-subtitle {
  text-align: left;
}
.cid-shp6rySSZP .mbr-section-title,
.cid-shp6rySSZP .underline {
  color: #096693;
}
.cid-shprWQaVYy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #096693;
}
.cid-shprWQaVYy h2,
.cid-shprWQaVYy h3,
.cid-shprWQaVYy h4,
.cid-shprWQaVYy p {
  color: #ffffff;
}
.cid-shprWQaVYy .mbr-overlay {
  z-index: -1;
}
.cid-shprWQaVYy .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-shprWQaVYy .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-shprWQaVYy .form-control:focus,
.cid-shprWQaVYy .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-shprWQaVYy .form-group {
  margin-bottom: 1rem;
}
.cid-shprWQaVYy input::-webkit-input-placeholder,
.cid-shprWQaVYy textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-shprWQaVYy input:-moz-placeholder,
.cid-shprWQaVYy textarea:-moz-placeholder {
  color: #656565;
}
.cid-shprWQaVYy .jq-selectbox li,
.cid-shprWQaVYy .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shprWQaVYy .jq-selectbox li:hover,
.cid-shprWQaVYy .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shprWQaVYy .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shprWQaVYy .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shprWQaVYy .subtext {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.cid-shprWQaVYy .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-shprWQaVYy .mbr-text {
  color: #767676;
}
.cid-shprWQaVYy .form-block {
  padding: 3rem;
  position: relative;
}
.cid-shprWQaVYy .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-shprWQaVYy .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-shprWQaVYy a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-shprWQaVYy .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-shprWQaVYy .input-group-btn {
  display: block;
  text-align: center;
}
.cid-shprWQaVYy textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-shprWQaVYy .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-shprWQaVYy .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-shprWQaVYy .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-shprWQaVYy h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-shprWQaVYy .block-content {
    padding: 0;
  }
  .cid-shprWQaVYy .form-block {
    padding: 1rem;
  }
}
.cid-shp5YkcrzL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1011.jpg");
}
.cid-shp5YkcrzL .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-shp5YkcrzL .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-shp5YkcrzL .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-shp5YkcrzL .mbr-text {
    text-align: center;
  }
}
.cid-shp5YkcrzL .mbr-text,
.cid-shp5YkcrzL .mbr-section-btn {
  color: #ffffff;
}
.cid-shp5YkcrzL H1 {
  color: #000000;
}
#instagram-feed-block-2s .inst__title {
  color: #096693;
}
.cid-shp5Yig1p8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-shp5Yig1p8 .card-icon {
  font-size: 72px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-shp5Yig1p8 .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-shp5Yig1p8 .card {
  margin: 0!important;
  padding: 0!important;
  border-radius: 0;
}
.cid-shp5Yig1p8 p {
  font-weight: 400;
}
.cid-shp5Yig1p8 .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  transition: all 0.3s;
}
.cid-shp5Yig1p8 .link-ico:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray!important;
}
.cid-shp5Yig1p8 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-shp5Yig1p8 .bg1 {
  background: #1ba1e2;
}
.cid-shp5Yig1p8 .bg2 {
  background: #0f7699;
}
.cid-shp5Yig1p8 .bg3 {
  background: #1ba1e2;
}
.cid-shp5Yig1p8 .bg4 {
  background: #149dcc;
}
.cid-shp5Yig1p8 .card-wrapper {
  padding: 4rem 2rem;
  transition: background 0.3s;
}
.cid-shp5Yig1p8 .card-wrapper:hover .link-ico {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray!important;
}
.cid-shp5Yig1p8 .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.cid-shp5Yig1p8 .card-title,
.cid-shp5Yig1p8 .card-ico,
.cid-shp5Yig1p8 .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-shp5Yig1p8 .mbr-text,
.cid-shp5Yig1p8 .card-link {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-shp5Yig1p8 .row {
    padding: 0 1rem;
  }
}
.cid-shp5YlJBnD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-shp5YlJBnD .content {
    text-align: center;
  }
  .cid-shp5YlJBnD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-shp5YlJBnD .img-logo img {
  height: 6rem;
  width: auto;
}
.cid-shp5YlJBnD textarea.form-control {
  resize: none;
}
.cid-shp5YlJBnD .input-group-btn {
  display: inline-block;
}
.cid-shp5YlJBnD .input-group-btn .btn {
  margin: 0 !important;
  padding: 0.75rem 1.5625rem !important;
  text-transform: none;
}
.cid-shp5YlJBnD .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-shp5YlJBnD .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-shp5YlJBnD .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-shp5YlJBnD .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-shp5YlJBnD .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-shp5YlJBnD .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-shp5YlJBnD .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-shp5YlJBnD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-shp5YlJBnD .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-shp5YlJBnD .form-control,
.cid-shp5YlJBnD .input-group-btn .btn {
  border-radius: 3px;
}
.cid-shp69Hl6EB .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-shp69Hl6EB .nav-item:focus,
.cid-shp69Hl6EB .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-shp69Hl6EB .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-shp69Hl6EB .nav-item .nav-link {
    position: relative;
  }
  .cid-shp69Hl6EB .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #096693, #096693);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-shp69Hl6EB .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-shp69Hl6EB .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shp69Hl6EB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-shp69Hl6EB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shp69Hl6EB .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5em;
  padding-left: 2.5em;
}
.cid-shp69Hl6EB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shp69Hl6EB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shp69Hl6EB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #2e2e2e;
  background: none;
}
.cid-shp69Hl6EB .navbar.opened {
  transition: all .3s;
  background: #2e2e2e !important;
}
.cid-shp69Hl6EB .navbar .dropdown-item {
  padding: .235rem 1.5rem;
  line-height: 1.6;
  min-width: 170px;
}
.cid-shp69Hl6EB .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-shp69Hl6EB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shp69Hl6EB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-shp69Hl6EB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-shp69Hl6EB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-shp69Hl6EB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shp69Hl6EB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shp69Hl6EB .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-shp69Hl6EB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shp69Hl6EB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-shp69Hl6EB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-shp69Hl6EB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shp69Hl6EB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shp69Hl6EB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-shp69Hl6EB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shp69Hl6EB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shp69Hl6EB .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-shp69Hl6EB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-shp69Hl6EB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shp69Hl6EB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shp69Hl6EB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-shp69Hl6EB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-shp69Hl6EB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-shp69Hl6EB .navbar.navbar-short {
  background: #2e2e2e !important;
  min-height: 60px;
}
.cid-shp69Hl6EB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-shp69Hl6EB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-shp69Hl6EB .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shp69Hl6EB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shp69Hl6EB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shp69Hl6EB .dropdown-item.active,
.cid-shp69Hl6EB .dropdown-item:active {
  background-color: transparent;
}
.cid-shp69Hl6EB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shp69Hl6EB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shp69Hl6EB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shp69Hl6EB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2e2e2e;
}
.cid-shp69Hl6EB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shp69Hl6EB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shp69Hl6EB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-shp69Hl6EB .navbar-buttons {
  text-align: center;
}
.cid-shp69Hl6EB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-shp69Hl6EB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-shp69Hl6EB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-shp69Hl6EB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-shp69Hl6EB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-shp69Hl6EB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-shp69Hl6EB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-shp69Hl6EB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-shp69Hl6EB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-shp69Hl6EB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-shp69Hl6EB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-shp69Hl6EB a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-shp69Hl6EB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-shp69Hl6EB .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-shp69Hl6EB .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-shp69Hl6EB .navbar {
    height: 77px;
  }
  .cid-shp69Hl6EB .navbar.opened {
    height: auto;
  }
  .cid-shp69Hl6EB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shpdKxP3yF {
  overflow: hidden !important;
  background-image: url("../../../assets/images/rede-de-contatos-810x453.jpg");
}
.cid-shpdKxP3yF .container-fluid {
  padding: 0 3rem;
}
.cid-shpdKxP3yF .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-shpdKxP3yF .container-fluid {
    padding: 0 1rem;
  }
}
.cid-shpdKxP3yF .mbr-section-subtitle,
.cid-shpdKxP3yF .mbr-section-btn {
  color: #ffffff;
}
.cid-soCHqkpCH5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f7f7f7;
}
.cid-soCHqkpCH5 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-soCHqkpCH5 .card-img {
  overflow: hidden;
  border-radius: 0;
  position: relative;
}
.cid-soCHqkpCH5 .card-img:hover .img-hover {
  opacity: 0.5;
}
.cid-soCHqkpCH5 .card-img:hover .img-btn {
  opacity: 1;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-soCHqkpCH5 .btn {
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-soCHqkpCH5 .img-btn {
  transition: all 0.5s;
  position: absolute;
  display: block;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 0;
}
.cid-soCHqkpCH5 .img-hover {
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  background: #52bdf1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.cid-soCHqkpCH5 .content-box {
  display: flex;
}
.cid-soCHqkpCH5 .date-box {
  background: #187dec;
  width: 110px;
  padding: 5px;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-soCHqkpCH5 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-soCHqkpCH5 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-soCHqkpCH5 .rev,
.cid-soCHqkpCH5 .mbr-iconfont {
  display: inline-block;
}
.cid-soCHqkpCH5 .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #1ba1e2;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-soCHqkpCH5 .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-soCHqkpCH5 .card-box {
  padding: 1rem;
}
.cid-soCHqkpCH5 .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: center;
}
.cid-soCHqkpCH5 .mbr-section-title,
.cid-soCHqkpCH5 .line-wrap {
  text-align: center;
  color: #1ba1e2;
}
.cid-soCHqkpCH5 .rev {
  text-align: left;
  color: #0a1c44;
}
.cid-soCHqkpCH5 .date {
  text-align: center;
  color: #ffffff;
}
.cid-soCHqkpCH5 .mounth {
  text-align: center;
  color: #ffffff;
}
.cid-soCHqkpCH5 .time {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-soCHqkpCH5 .img-hover {
    opacity: 0.5;
  }
  .cid-soCHqkpCH5 .img-btn {
    opacity: 1;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.cid-shpeC29yJp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #096693;
}
.cid-shpeC29yJp .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-shpeC29yJp .row-element,
.cid-shpeC29yJp .image-element {
  padding: 0;
}
.cid-shpeC29yJp .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-shpeC29yJp .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-shpeC29yJp .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-shpeC29yJp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #096693);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-shpeC29yJp .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-shpeC29yJp .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-shpeC29yJp .text-content {
    padding: 2rem 1rem;
  }
  .cid-shpeC29yJp .underline .line {
    height: 2px;
  }
  .cid-shpeC29yJp .mbr-title,
  .cid-shpeC29yJp .underline,
  .cid-shpeC29yJp .mbr-text,
  .cid-shpeC29yJp .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-shpgypsKRT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-shpgypsKRT h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-shpgypsKRT .mbr-section-subtitle {
  color: #767676;
}
.cid-shpgypsKRT .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-shpgypsKRT .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-shpgypsKRT .mbr-text-right {
  color: #767676;
}
.cid-shpgypsKRT .mbr-text-left {
  text-align: left;
}
.cid-shphY1Il2p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #096693;
}
.cid-shphY1Il2p .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-shphY1Il2p .row-element,
.cid-shphY1Il2p .image-element {
  padding: 0;
}
.cid-shphY1Il2p .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-shphY1Il2p .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-shphY1Il2p .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-shphY1Il2p .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #096693);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-shphY1Il2p .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-shphY1Il2p .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-shphY1Il2p .text-content {
    padding: 2rem 1rem;
  }
  .cid-shphY1Il2p .underline .line {
    height: 2px;
  }
  .cid-shphY1Il2p .mbr-title,
  .cid-shphY1Il2p .underline,
  .cid-shphY1Il2p .mbr-text,
  .cid-shphY1Il2p .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-shphYIBoN4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-shphYIBoN4 h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-shphYIBoN4 .mbr-section-subtitle {
  color: #767676;
}
.cid-shphYIBoN4 .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-shphYIBoN4 .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-shphYIBoN4 .mbr-text-right {
  color: #767676;
}
.cid-shphYIBoN4 .mbr-text-left {
  text-align: left;
}
.cid-shA8RL8JBf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-shA8RL8JBf .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-shA8RL8JBf a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-shA8RL8JBf .mbr-section-btn {
  margin: 0;
}
.cid-shA8RL8JBf .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-shA8RL8JBf .form-control:focus,
.cid-shA8RL8JBf .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-shA8RL8JBf .form-group {
  margin-bottom: 1rem;
}
.cid-shA8RL8JBf input::-webkit-input-placeholder,
.cid-shA8RL8JBf textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-shA8RL8JBf input:-moz-placeholder,
.cid-shA8RL8JBf textarea:-moz-placeholder {
  color: #656565;
}
.cid-shA8RL8JBf .jq-selectbox li,
.cid-shA8RL8JBf .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shA8RL8JBf .jq-selectbox li:hover,
.cid-shA8RL8JBf .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shA8RL8JBf .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shA8RL8JBf .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shA8RL8JBf .form-group,
.cid-shA8RL8JBf .mbr-section-btn {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .cid-shA8RL8JBf .col-auto.mbr-section-btn .btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .cid-shA8RL8JBf .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-shA8RL8JBf .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 499px) {
  .cid-shA8RL8JBf .form-block {
    padding: 1rem;
  }
}
.cid-shA8RL8JBf H4 {
  text-align: left;
  color: #ffffff;
}
.cid-shA8RL8JBf P {
  text-align: left;
  color: #ffffff;
}
.cid-shpjw8IVQM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #096693;
}
.cid-shpjw8IVQM .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-shpjw8IVQM .row-element,
.cid-shpjw8IVQM .image-element {
  padding: 0;
}
.cid-shpjw8IVQM .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-shpjw8IVQM .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-shpjw8IVQM .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-shpjw8IVQM .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #096693);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-shpjw8IVQM .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-shpjw8IVQM .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-shpjw8IVQM .text-content {
    padding: 2rem 1rem;
  }
  .cid-shpjw8IVQM .underline .line {
    height: 2px;
  }
  .cid-shpjw8IVQM .mbr-title,
  .cid-shpjw8IVQM .underline,
  .cid-shpjw8IVQM .mbr-text,
  .cid-shpjw8IVQM .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-shpjwHP8SB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-shpjwHP8SB h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-shpjwHP8SB .mbr-section-subtitle {
  color: #767676;
}
.cid-shpjwHP8SB .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-shpjwHP8SB .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-shpjwHP8SB .mbr-text-right {
  color: #767676;
}
.cid-shpjwHP8SB .mbr-text-left {
  text-align: left;
}
.cid-shAcsoR34q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-shAcsoR34q .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-shAcsoR34q a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-shAcsoR34q .mbr-section-btn {
  margin: 0;
}
.cid-shAcsoR34q .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-shAcsoR34q .form-control:focus,
.cid-shAcsoR34q .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-shAcsoR34q .form-group {
  margin-bottom: 1rem;
}
.cid-shAcsoR34q input::-webkit-input-placeholder,
.cid-shAcsoR34q textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-shAcsoR34q input:-moz-placeholder,
.cid-shAcsoR34q textarea:-moz-placeholder {
  color: #656565;
}
.cid-shAcsoR34q .jq-selectbox li,
.cid-shAcsoR34q .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shAcsoR34q .jq-selectbox li:hover,
.cid-shAcsoR34q .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shAcsoR34q .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shAcsoR34q .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shAcsoR34q .form-group,
.cid-shAcsoR34q .mbr-section-btn {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .cid-shAcsoR34q .col-auto.mbr-section-btn .btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .cid-shAcsoR34q .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-shAcsoR34q .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 499px) {
  .cid-shAcsoR34q .form-block {
    padding: 1rem;
  }
}
.cid-shAcsoR34q H4 {
  text-align: left;
  color: #ffffff;
}
.cid-shAcsoR34q P {
  text-align: left;
  color: #ffffff;
}
.cid-soCIP9FNti {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #096693;
}
.cid-soCIP9FNti .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-soCIP9FNti .row-element,
.cid-soCIP9FNti .image-element {
  padding: 0;
}
.cid-soCIP9FNti .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soCIP9FNti .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-soCIP9FNti .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-soCIP9FNti .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #096693, #096693);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-soCIP9FNti .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-soCIP9FNti .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-soCIP9FNti .text-content {
    padding: 2rem 1rem;
  }
  .cid-soCIP9FNti .underline .line {
    height: 2px;
  }
  .cid-soCIP9FNti .mbr-title,
  .cid-soCIP9FNti .underline,
  .cid-soCIP9FNti .mbr-text,
  .cid-soCIP9FNti .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-soCIPVVgNo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-soCIPVVgNo h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-soCIPVVgNo .mbr-section-subtitle {
  color: #767676;
}
.cid-soCIPVVgNo .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-soCIPVVgNo .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-soCIPVVgNo .mbr-text-right {
  color: #767676;
}
.cid-soCIPVVgNo .mbr-text-left {
  text-align: left;
}
.cid-soCIQKLYgv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #2e2e2e;
}
.cid-soCIQKLYgv .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-soCIQKLYgv a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-soCIQKLYgv .mbr-section-btn {
  margin: 0;
}
.cid-soCIQKLYgv .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-soCIQKLYgv .form-control:focus,
.cid-soCIQKLYgv .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-soCIQKLYgv .form-group {
  margin-bottom: 1rem;
}
.cid-soCIQKLYgv input::-webkit-input-placeholder,
.cid-soCIQKLYgv textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-soCIQKLYgv input:-moz-placeholder,
.cid-soCIQKLYgv textarea:-moz-placeholder {
  color: #656565;
}
.cid-soCIQKLYgv .jq-selectbox li,
.cid-soCIQKLYgv .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-soCIQKLYgv .jq-selectbox li:hover,
.cid-soCIQKLYgv .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-soCIQKLYgv .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-soCIQKLYgv .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-soCIQKLYgv .form-group,
.cid-soCIQKLYgv .mbr-section-btn {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .cid-soCIQKLYgv .col-auto.mbr-section-btn .btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .cid-soCIQKLYgv .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-soCIQKLYgv .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 499px) {
  .cid-soCIQKLYgv .form-block {
    padding: 1rem;
  }
}
.cid-soCIQKLYgv H4 {
  text-align: left;
  color: #ffffff;
}
.cid-soCIQKLYgv P {
  text-align: left;
  color: #ffffff;
}
.cid-shps38lnFc {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #096693;
}
.cid-shps38lnFc h2,
.cid-shps38lnFc h3,
.cid-shps38lnFc h4,
.cid-shps38lnFc p {
  color: #ffffff;
}
.cid-shps38lnFc .mbr-overlay {
  z-index: -1;
}
.cid-shps38lnFc .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-shps38lnFc .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-shps38lnFc .form-control:focus,
.cid-shps38lnFc .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-shps38lnFc .form-group {
  margin-bottom: 1rem;
}
.cid-shps38lnFc input::-webkit-input-placeholder,
.cid-shps38lnFc textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-shps38lnFc input:-moz-placeholder,
.cid-shps38lnFc textarea:-moz-placeholder {
  color: #656565;
}
.cid-shps38lnFc .jq-selectbox li,
.cid-shps38lnFc .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shps38lnFc .jq-selectbox li:hover,
.cid-shps38lnFc .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-shps38lnFc .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shps38lnFc .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-shps38lnFc .subtext {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.cid-shps38lnFc .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-shps38lnFc .mbr-text {
  color: #767676;
}
.cid-shps38lnFc .form-block {
  padding: 3rem;
  position: relative;
}
.cid-shps38lnFc .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-shps38lnFc .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-shps38lnFc a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-shps38lnFc .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-shps38lnFc .input-group-btn {
  display: block;
  text-align: center;
}
.cid-shps38lnFc textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-shps38lnFc .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-shps38lnFc .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-shps38lnFc .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-shps38lnFc h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-shps38lnFc .block-content {
    padding: 0;
  }
  .cid-shps38lnFc .form-block {
    padding: 1rem;
  }
}
#instagram-feed-block-36 .inst__title {
  color: #096693;
}
.cid-shp6a1Ktjk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1011.jpg");
}
.cid-shp6a1Ktjk .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-shp6a1Ktjk .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-shp6a1Ktjk .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-shp6a1Ktjk .mbr-text {
    text-align: center;
  }
}
.cid-shp6a1Ktjk .mbr-text,
.cid-shp6a1Ktjk .mbr-section-btn {
  color: #ffffff;
}
.cid-shp6a1Ktjk H1 {
  color: #000000;
}
.cid-shpemCuyqR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-shpemCuyqR .card-icon {
  font-size: 72px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-shpemCuyqR .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-shpemCuyqR .card {
  margin: 0!important;
  padding: 0!important;
  border-radius: 0;
}
.cid-shpemCuyqR p {
  font-weight: 400;
}
.cid-shpemCuyqR .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  transition: all 0.3s;
}
.cid-shpemCuyqR .link-ico:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray!important;
}
.cid-shpemCuyqR .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-shpemCuyqR .bg1 {
  background: #1ba1e2;
}
.cid-shpemCuyqR .bg2 {
  background: #0f7699;
}
.cid-shpemCuyqR .bg3 {
  background: #1ba1e2;
}
.cid-shpemCuyqR .bg4 {
  background: #149dcc;
}
.cid-shpemCuyqR .card-wrapper {
  padding: 4rem 2rem;
  transition: background 0.3s;
}
.cid-shpemCuyqR .card-wrapper:hover .link-ico {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray!important;
}
.cid-shpemCuyqR .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.cid-shpemCuyqR .card-title,
.cid-shpemCuyqR .card-ico,
.cid-shpemCuyqR .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-shpemCuyqR .mbr-text,
.cid-shpemCuyqR .card-link {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-shpemCuyqR .row {
    padding: 0 1rem;
  }
}
.cid-shp6a3locE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-shp6a3locE .content {
    text-align: center;
  }
  .cid-shp6a3locE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-shp6a3locE .img-logo img {
  height: 6rem;
  width: auto;
}
.cid-shp6a3locE textarea.form-control {
  resize: none;
}
.cid-shp6a3locE .input-group-btn {
  display: inline-block;
}
.cid-shp6a3locE .input-group-btn .btn {
  margin: 0 !important;
  padding: 0.75rem 1.5625rem !important;
  text-transform: none;
}
.cid-shp6a3locE .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-shp6a3locE .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-shp6a3locE .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-shp6a3locE .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-shp6a3locE .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-shp6a3locE .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-shp6a3locE .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-shp6a3locE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-shp6a3locE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-shp6a3locE .form-control,
.cid-shp6a3locE .input-group-btn .btn {
  border-radius: 3px;
}
