body {
  font-family: Dosis;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Cochin';
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Cochin';
  font-size: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-4 {
  font-family: 'Cochin';
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Cochin';
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Cochin';
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 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.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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 {
  color: initial;
  border-radius: 0;
  font-weight: 600;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 2px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn-sm {
  font-weight: 600;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  font-weight: 600;
  letter-spacing: 2px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  font-weight: 600;
  letter-spacing: 2px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ffbc00 !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #b38400 !important;
  border-color: #b38400 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b38400 !important;
  border-color: #b38400 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #997100;
  color: #997100 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ffbc00;
  border-color: #ffbc00;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #215f88;
  color: #215f88 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #992700;
  color: #992700 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ff4100;
  border-color: #ff4100;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1b8d56;
  color: #1b8d56 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #36d88a;
  border-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffbc00 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #997100 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1b8d56 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #992700 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffbc00;
  border-color: #ffbc00;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #ffbc00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff2cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  opacity: 0 !important;
}
#scrollToTop a {
  background: #444444;
  opacity: .5;
}
#scrollToTop a:hover {
  opacity: .7;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow {
  background-color: #444444;
  opacity: .5;
  transition: .3s;
}
.mbr-arrow a {
  color: #ffffff;
}
.mbr-arrow:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Cochin';
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #ffbc00;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ffbc00;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ffbc00;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ffbc00;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffbc00;
}
/* Headers*/
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-qSp2Udredy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-qSp2Udredy .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-qSp2Udredy .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-qSp2Udredy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-qSp2Udredy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-qSp2Udredy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSp2Udredy .navbar .dropdown-menu {
  width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-qSp2Udredy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-qSp2Udredy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-qSp2Udredy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSp2Udredy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-qSp2Udredy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSp2Udredy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSp2Udredy .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-qSp2Udredy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-qSp2Udredy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-qSp2Udredy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSp2Udredy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-qSp2Udredy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-qSp2Udredy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSp2Udredy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-qSp2Udredy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSp2Udredy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSp2Udredy .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-qSp2Udredy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-qSp2Udredy .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-qSp2Udredy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSp2Udredy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSp2Udredy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-qSp2Udredy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-qSp2Udredy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSp2Udredy .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-qSp2Udredy .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-qSp2Udredy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSp2Udredy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSp2Udredy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSp2Udredy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSp2Udredy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSp2Udredy .dropdown-item.active,
.cid-qSp2Udredy .dropdown-item:active {
  background-color: transparent;
}
.cid-qSp2Udredy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSp2Udredy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSp2Udredy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSp2Udredy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-qSp2Udredy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-qSp2Udredy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSp2Udredy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSp2Udredy .navbar-buttons {
  text-align: center;
}
.cid-qSp2Udredy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSp2Udredy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qSp2Udredy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSp2Udredy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSp2Udredy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSp2Udredy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSp2Udredy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSp2Udredy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSp2Udredy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSp2Udredy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSp2Udredy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSp2Udredy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-qSp2Udredy .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSp2Udredy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-qSp2Udredy .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-qSp2Udredy .nav-link:hover,
.cid-qSp2Udredy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-qQOOfjYJ9P {
  padding-top: 120px;
  padding-bottom: 0px;
  background: #cccccc;
}
.cid-qQOOfjYJ9P .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qQOOfjYJ9P .image-block {
    width: 100% !important;
  }
}
.cid-qQONESIKv8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qQONESIKv8 .mbr-title {
  text-align: center;
}
.cid-qQONESIKv8 .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qQONESIKv8 .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qQONESIKv8 .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qQONESIKv8 .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSitZY4sfS {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSitZY4sfS .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSiu0D32Lg {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSiu0D32Lg .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSiu0D32Lg .image-block {
    width: 100% !important;
  }
}
.cid-qSiu1HSj7T {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSiu1HSj7T .mbr-title {
  text-align: center;
}
.cid-qSiu1HSj7T .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiu1HSj7T .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiu1HSj7T .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiu1HSj7T .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiu3cRvoK {
  background: #ffffff;
}
.cid-qSiu3cRvoK .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSiu3cRvoK .image-block {
    width: 100% !important;
  }
}
.cid-qSiu4YXPzn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSiu4YXPzn .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSiu4YXPzn .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSiujHPWvF {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSiujHPWvF .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSiukgxPwH {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSiukgxPwH .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSiukgxPwH .image-block {
    width: 100% !important;
  }
}
.cid-qSiumVSf7h {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSiumVSf7h .mbr-title {
  text-align: center;
}
.cid-qSiumVSf7h .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiumVSf7h .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiumVSf7h .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiumVSf7h .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiuocEWNf {
  background: #ffffff;
}
.cid-qSiuocEWNf .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSiuocEWNf .image-block {
    width: 100% !important;
  }
}
.cid-qSiup4nEj2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSiup4nEj2 .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSiup4nEj2 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qQOYV5RkMm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qQOYV5RkMm .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qQOYVP4oTF {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qQOYVP4oTF .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qQOYVP4oTF .image-block {
    width: 100% !important;
  }
}
.cid-qQOYWuoHzr {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qQOYWuoHzr .mbr-title {
  text-align: center;
}
.cid-qQOYWuoHzr .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qQOYWuoHzr .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qQOYWuoHzr .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qQOYWuoHzr .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qQOYXyHmbv {
  background: #ffffff;
}
.cid-qQOYXyHmbv .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qQOYXyHmbv .image-block {
    width: 100% !important;
  }
}
.cid-qShYwjSRYp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qShYwjSRYp .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qShYwjSRYp .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSiviaLd8U {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSiviaLd8U .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSivjfBiAS {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSivjfBiAS .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSivjfBiAS .image-block {
    width: 100% !important;
  }
}
.cid-qSivIkVSYc {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSivIkVSYc .mbr-title {
  text-align: center;
}
.cid-qSivIkVSYc .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivIkVSYc .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivIkVSYc .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivIkVSYc .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivLrmAXr {
  background: #ffffff;
}
.cid-qSivLrmAXr .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSivLrmAXr .image-block {
    width: 100% !important;
  }
}
.cid-qSivMwdLK9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSivMwdLK9 .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSivMwdLK9 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSiwCDIxCb {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qSiwCDIxCb .mbr-title {
  text-align: center;
}
.cid-qSiwCDIxCb .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiwCDIxCb .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiwCDIxCb .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiwCDIxCb .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qRbXiD4vpg {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qRbXiD4vpg .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qRbXiD4vpg .image-block {
    width: 100% !important;
  }
}
.cid-qSixg17oWP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSixg17oWP .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSizcfBLUP {
  background: #ffffff;
}
.cid-qSizcfBLUP .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSizcfBLUP .image-block {
    width: 100% !important;
  }
}
.cid-qSixsxwhFl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSixsxwhFl .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSixsxwhFl .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSiy5a8yQt {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSiy5a8yQt .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSiy5G2AR3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSiy5G2AR3 .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSiy5G2AR3 .image-block {
    width: 100% !important;
  }
}
.cid-qSiy6bPVCM {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSiy6bPVCM .mbr-title {
  text-align: center;
}
.cid-qSiy6bPVCM .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiy6bPVCM .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiy6bPVCM .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiy6bPVCM .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSiy6QPjUg {
  background: #ffffff;
}
.cid-qSiy6QPjUg .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSiy6QPjUg .image-block {
    width: 100% !important;
  }
}
.cid-qSiy7FF1uV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSiy7FF1uV .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSiy7FF1uV .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSivl0Qrtd {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSivl0Qrtd .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSivlsYmjW {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSivlsYmjW .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSivlsYmjW .image-block {
    width: 100% !important;
  }
}
.cid-qSivjJRszw {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSivjJRszw .mbr-title {
  text-align: center;
}
.cid-qSivjJRszw .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivjJRszw .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivjJRszw .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivjJRszw .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivmewPZX {
  background: #ffffff;
}
.cid-qSivmewPZX .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSivmewPZX .image-block {
    width: 100% !important;
  }
}
.cid-qSivmu7gWP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSivmu7gWP .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSivmu7gWP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSivl3KXWZ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSivl3KXWZ .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSivlpSlOk {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSivlpSlOk .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSivlpSlOk .image-block {
    width: 100% !important;
  }
}
.cid-qSivjN9C7a {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSivjN9C7a .mbr-title {
  text-align: center;
}
.cid-qSivjN9C7a .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivjN9C7a .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivjN9C7a .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivjN9C7a .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivmkKEzd {
  background: #ffffff;
}
.cid-qSivmkKEzd .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSivmkKEzd .image-block {
    width: 100% !important;
  }
}
.cid-qSivmxt4NE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSivmxt4NE .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSivmxt4NE .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSivnh7XYk {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSivnh7XYk .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSivo30T5p {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSivo30T5p .mbr-title {
  text-align: center;
}
.cid-qSivo30T5p .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivo30T5p .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivo30T5p .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivo30T5p .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSivnyrNl2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSivnyrNl2 .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSivnyrNl2 .image-block {
    width: 100% !important;
  }
}
.cid-qSivosc5Bn {
  background: #ffffff;
}
.cid-qSivosc5Bn .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSivosc5Bn .image-block {
    width: 100% !important;
  }
}
.cid-qSivoPVKES {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSivoPVKES .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSivoPVKES .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSoi27MgTR {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSoi27MgTR .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSoi3b9LCs {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSoi3b9LCs .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSoi3b9LCs .image-block {
    width: 100% !important;
  }
}
.cid-qSoi5G7BWw {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSoi5G7BWw .mbr-title {
  text-align: center;
}
.cid-qSoi5G7BWw .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoi5G7BWw .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoi5G7BWw .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoi5G7BWw .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoi6RtI7U {
  background: #ffffff;
}
.cid-qSoi6RtI7U .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoi6RtI7U .image-block {
    width: 100% !important;
  }
}
.cid-qSoi8R72F1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSoi8R72F1 .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSoi8R72F1 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSoiaAfhhm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSoiaAfhhm .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSoiblAUzB {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSoiblAUzB .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSoiblAUzB .image-block {
    width: 100% !important;
  }
}
.cid-qSoic1T5TI {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSoic1T5TI .mbr-title {
  text-align: center;
}
.cid-qSoic1T5TI .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoic1T5TI .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoic1T5TI .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoic1T5TI .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoicDTm0L {
  background: #ffffff;
}
.cid-qSoicDTm0L .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoicDTm0L .image-block {
    width: 100% !important;
  }
}
.cid-qSoid8GlB4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSoid8GlB4 .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSoid8GlB4 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSoiex5WaB {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSoiex5WaB .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSoiiaSb8a {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSoiiaSb8a .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSoiiaSb8a .image-block {
    width: 100% !important;
  }
}
.cid-qSoikAap6a {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSoikAap6a .mbr-title {
  text-align: center;
}
.cid-qSoikAap6a .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoikAap6a .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoikAap6a .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoikAap6a .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoioVmC1E {
  background: #ffffff;
}
.cid-qSoioVmC1E .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoioVmC1E .image-block {
    width: 100% !important;
  }
}
.cid-qSoivmbTA7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSoivmbTA7 .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSoivmbTA7 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSoifNR0XH {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSoifNR0XH .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSoiizlJyf {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSoiizlJyf .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSoiizlJyf .image-block {
    width: 100% !important;
  }
}
.cid-qSoil8bHjg {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSoil8bHjg .mbr-title {
  text-align: center;
}
.cid-qSoil8bHjg .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoil8bHjg .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoil8bHjg .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoil8bHjg .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoipwRqhV {
  background: #ffffff;
}
.cid-qSoipwRqhV .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoipwRqhV .image-block {
    width: 100% !important;
  }
}
.cid-qSoivUyw3U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSoivUyw3U .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSoivUyw3U .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSoighsj6Q {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSoighsj6Q .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSoiiYZRiI {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSoiiYZRiI .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSoiiYZRiI .image-block {
    width: 100% !important;
  }
}
.cid-qSoilKmsQH {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSoilKmsQH .mbr-title {
  text-align: center;
}
.cid-qSoilKmsQH .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoilKmsQH .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoilKmsQH .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoilKmsQH .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoiqi4elv {
  background: #ffffff;
}
.cid-qSoiqi4elv .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoiqi4elv .image-block {
    width: 100% !important;
  }
}
.cid-qSoiwCN1k8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSoiwCN1k8 .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSoiwCN1k8 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSoigMmPep {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSoigMmPep .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSoijubQmH {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSoijubQmH .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSoijubQmH .image-block {
    width: 100% !important;
  }
}
.cid-qSoimjHiJU {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSoimjHiJU .mbr-title {
  text-align: center;
}
.cid-qSoimjHiJU .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoimjHiJU .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoimjHiJU .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoimjHiJU .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoiqRKIHL {
  background: #ffffff;
}
.cid-qSoiqRKIHL .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoiqRKIHL .image-block {
    width: 100% !important;
  }
}
.cid-qSoixuQMpt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSoixuQMpt .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSoixuQMpt .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSoihhuPtP {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSoihhuPtP .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSoik351Ru {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSoik351Ru .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSoik351Ru .image-block {
    width: 100% !important;
  }
}
.cid-qSoin9CHBe {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSoin9CHBe .mbr-title {
  text-align: center;
}
.cid-qSoin9CHBe .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoin9CHBe .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoin9CHBe .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoin9CHBe .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoirtmDhb {
  background: #ffffff;
}
.cid-qSoirtmDhb .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoirtmDhb .image-block {
    width: 100% !important;
  }
}
.cid-qSoispPvWx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSoispPvWx .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSoispPvWx .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSomYJuRXo {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSomYJuRXo .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSon7EleDY {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSon7EleDY .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSon7EleDY .image-block {
    width: 100% !important;
  }
}
.cid-qSondbyMMm {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSondbyMMm .mbr-title {
  text-align: center;
}
.cid-qSondbyMMm .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSondbyMMm .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSondbyMMm .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSondbyMMm .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoni60yTP {
  background: #ffffff;
}
.cid-qSoni60yTP .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoni60yTP .image-block {
    width: 100% !important;
  }
}
.cid-qSonp1I50m {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSonp1I50m .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSonp1I50m .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSomZ8s1B3 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSomZ8s1B3 .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSon8jADV5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSon8jADV5 .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSon8jADV5 .image-block {
    width: 100% !important;
  }
}
.cid-qSondLXvbK {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSondLXvbK .mbr-title {
  text-align: center;
}
.cid-qSondLXvbK .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSondLXvbK .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSondLXvbK .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSondLXvbK .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoniI3cTv {
  background: #ffffff;
}
.cid-qSoniI3cTv .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoniI3cTv .image-block {
    width: 100% !important;
  }
}
.cid-qSonpGR8Vr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSonpGR8Vr .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSonpGR8Vr .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSomZdR26I {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSomZdR26I .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSon8LS0WD {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSon8LS0WD .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSon8LS0WD .image-block {
    width: 100% !important;
  }
}
.cid-qSonehr0g0 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSonehr0g0 .mbr-title {
  text-align: center;
}
.cid-qSonehr0g0 .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSonehr0g0 .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSonehr0g0 .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSonehr0g0 .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSonjap40m {
  background: #ffffff;
}
.cid-qSonjap40m .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSonjap40m .image-block {
    width: 100% !important;
  }
}
.cid-qSonqcgpJu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSonqcgpJu .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSonqcgpJu .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSomZTdO92 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSomZTdO92 .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSon9mhwQw {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSon9mhwQw .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSon9mhwQw .image-block {
    width: 100% !important;
  }
}
.cid-qSoneKVrjE {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSoneKVrjE .mbr-title {
  text-align: center;
}
.cid-qSoneKVrjE .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoneKVrjE .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoneKVrjE .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoneKVrjE .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSonh4gWxu {
  background: #ffffff;
}
.cid-qSonh4gWxu .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSonh4gWxu .image-block {
    width: 100% !important;
  }
}
.cid-qSonqFJMk4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSonqFJMk4 .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSonqFJMk4 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSomZYBQFJ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSomZYBQFJ .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSon9XeHFG {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSon9XeHFG .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSon9XeHFG .image-block {
    width: 100% !important;
  }
}
.cid-qSonfp419e {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSonfp419e .mbr-title {
  text-align: center;
}
.cid-qSonfp419e .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSonfp419e .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSonfp419e .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSonfp419e .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSonghQlxe {
  background: #ffffff;
}
.cid-qSonghQlxe .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSonghQlxe .image-block {
    width: 100% !important;
  }
}
.cid-qSonr5KVqn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSonr5KVqn .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSonr5KVqn .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSos4qI2bQ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSos4qI2bQ .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSosaP13OP {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSosaP13OP .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSosaP13OP .image-block {
    width: 100% !important;
  }
}
.cid-qSosgR31Re {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSosgR31Re .mbr-title {
  text-align: center;
}
.cid-qSosgR31Re .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosgR31Re .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosgR31Re .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosgR31Re .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoshsOcPD {
  background: #ffffff;
}
.cid-qSoshsOcPD .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSoshsOcPD .image-block {
    width: 100% !important;
  }
}
.cid-qSosrdhApL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSosrdhApL .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSosrdhApL .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSos4XWGv9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSos4XWGv9 .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSosbindUS {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSosbindUS .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSosbindUS .image-block {
    width: 100% !important;
  }
}
.cid-qSosdzGptf {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSosdzGptf .mbr-title {
  text-align: center;
}
.cid-qSosdzGptf .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosdzGptf .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosdzGptf .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosdzGptf .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosi3vKP2 {
  background: #ffffff;
}
.cid-qSosi3vKP2 .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSosi3vKP2 .image-block {
    width: 100% !important;
  }
}
.cid-qSosBGUg9a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSosBGUg9a .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSosBGUg9a .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSos5wfWJt {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSos5wfWJt .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSosbGUUFl {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSosbGUUFl .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSosbGUUFl .image-block {
    width: 100% !important;
  }
}
.cid-qSosdXqH66 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSosdXqH66 .mbr-title {
  text-align: center;
}
.cid-qSosdXqH66 .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosdXqH66 .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosdXqH66 .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosdXqH66 .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosizOhbz {
  background: #ffffff;
}
.cid-qSosizOhbz .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSosizOhbz .image-block {
    width: 100% !important;
  }
}
.cid-qSosCx63wl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSosCx63wl .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSosCx63wl .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSos622Rrc {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSos622Rrc .block-text {
  text-align: center;
  color: #000000;
  padding: 0rem 0;
  line-height: 1.0;
}
.cid-qSosc44dpA {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qSosc44dpA .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qSosc44dpA .image-block {
    width: 100% !important;
  }
}
.cid-qSoseA7MU8 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qSoseA7MU8 .mbr-title {
  text-align: center;
}
.cid-qSoseA7MU8 .mbr-text {
  text-align: center;
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoseA7MU8 .mbr-h1 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoseA7MU8 .mbr-h2 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSoseA7MU8 .mbr-h3 {
  padding: 0rem 0;
  line-height: 1.3;
}
.cid-qSosj33y1g {
  background: #ffffff;
}
.cid-qSosj33y1g .image-block {
  margin: auto;
  width: 50% !important;
}
@media (max-width: 768px) {
  .cid-qSosj33y1g .image-block {
    width: 100% !important;
  }
}
.cid-qSosD1AEg7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qSosD1AEg7 .mbr-text DIV {
  text-align: center;
  color: #ffffff;
}
.cid-qSosD1AEg7 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-qSjacnAqKF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qSjacnAqKF a:link {
  text-decoration: none;
}
.cid-qSjacnAqKF .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qSjacnAqKF .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-qSjacnAqKF .inner-text {
  line-height: 3em;
}
.cid-qSjacnAqKF .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qSjacnAqKF .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qSjacnAqKF .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qSjacnAqKF .content-text,
.cid-qSjacnAqKF .inner-text {
  color: #c1c1c1;
}
