@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);





body {
  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: 'Rubik', sans-serif;
  font-size: 4.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6.72rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.56rem;
}
/* ---- 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.36rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  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: 1rem 3rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn-sm {
  font-weight: 500;
  letter-spacing: 1px;
  -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.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  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: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  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: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff;
  background-color: #0d6786;
  border-color: #0d6786;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366;
  border-color: #ff3366;
  color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff;
  background-color: #e50039;
  border-color: #e50039;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e;
  border-color: #82786e;
  color: #ffffff;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff;
  background-color: #59524b;
  border-color: #59524b;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a;
  border-color: #f7ed4a;
  color: #3f3c03;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03;
  background-color: #eadd0a;
  border-color: #eadd0a;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f;
  border-color: #879a9f;
  color: #ffffff;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff;
  background-color: #617479;
  border-color: #617479;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374;
  border-color: #b1a374;
  color: #ffffff;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff;
  background-color: #8b7d4e;
  border-color: #8b7d4e;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !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: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@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: 'Rubik', sans-serif;
  font-size: 1.6rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control > .mbr-iconfont {
  font-size: 2.56rem;
}
.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: #149dcc;
  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;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #149dcc;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #149dcc;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #149dcc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #149dcc;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
.offset-1 {
  margin-left: 8.33333%;
}
.offset-2 {
  margin-left: 16.66667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333%;
}
.offset-5 {
  margin-left: 41.66667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333%;
}
.offset-8 {
  margin-left: 66.66667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333%;
}
.offset-11 {
  margin-left: 91.66667%;
}
@media (min-width: 576px) {
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1200px) {
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
.navbar-toggler {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  -webkit-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}
.navbar-toggler-left {
  position: absolute;
  left: 1rem;
}
.navbar-toggler-right {
  position: absolute;
  right: 1rem;
}
@media (max-width: 575px) {
  .navbar-toggleable .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-toggleable {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar-toggleable-sm .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-sm > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-toggleable-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-sm > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar-toggleable-md .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-md > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-toggleable-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-md > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-md .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199px) {
  .navbar-toggleable-lg .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-lg > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-toggleable-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-lg > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-lg .navbar-toggler {
    display: none;
  }
}
.navbar-toggleable-xl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggleable-xl .navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-toggleable-xl > .container {
  padding-right: 0;
  padding-left: 0;
}
.navbar-toggleable-xl .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.navbar-toggleable-xl .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}
.navbar-toggleable-xl > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggleable-xl .navbar-collapse {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
}
.navbar-toggleable-xl .navbar-toggler {
  display: none;
}
.card-img {
  width: auto;
}
.menu .navbar.collapsed:not(.beta-menu) {
  flex-direction: column;
}
.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;
}
.cid-qDcQcXI6X3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCz9xe8Llt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCz9xe8Llt .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCz9xe8Llt .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCz9xe8Llt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCz9xe8Llt .inner-container {
    width: 100% !important;
  }
}
.cid-qCurwGLz1C {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCurwGLz1C .mbr-text,
.cid-qCurwGLz1C blockquote {
  color: #767676;
}
.cid-qCurwGLz1C .mbr-text I {
  color: #232323;
}
.cid-qCurwGLz1C .mbr-text {
  color: #232323;
}
.cid-qCW8WPQIIN {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCW8WPQIIN .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCW8WPQIIN .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCW8WPQIIN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCW8WPQIIN .inner-container {
    width: 100% !important;
  }
}
.cid-qCuGn7Z7eO {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCuGn7Z7eO .mbr-text,
.cid-qCuGn7Z7eO .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-qCZ3XpysDG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZ3XpysDG H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZ3XpysDG P {
  color: #232323;
  text-align: left;
}
.cid-qCZ3XpysDG H1 {
  color: #232323;
}
.cid-qCuGW7w2QI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCuGW7w2QI .mbr-text,
.cid-qCuGW7w2QI .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-qG9WZdUgIJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qG9WZdUgIJ H3 {
  color: #465052;
}
.cid-qG9WZdUgIJ P {
  color: #232323;
  text-align: left;
}
.cid-qG9WZdUgIJ H1 {
  color: #465052;
}
.cid-qG9WZdUgIJ I {
  color: #232323;
}
.cid-qCWgWD0h4g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCWgWD0h4g H3 {
  color: #465052;
}
.cid-qCWgWD0h4g P {
  color: #232323;
  text-align: left;
}
.cid-qCWgWD0h4g H1 {
  color: #465052;
}
.cid-qCWgWD0h4g I {
  color: #232323;
}
.cid-qCV3mNjklY {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCV3mNjklY H3 {
  color: #465052;
}
.cid-qCV3mNjklY P {
  color: #232323;
  text-align: left;
}
.cid-qCV3mNjklY H1 {
  color: #465052;
}
.cid-qCzb0iJtYh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCzb0iJtYh H3 {
  color: #465052;
}
.cid-qCzb0iJtYh P {
  color: #232323;
}
.cid-qCzb0iJtYh H1 {
  color: #465052;
}
.cid-qCuHbsjRLm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCuHbsjRLm .mbr-text,
.cid-qCuHbsjRLm .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-qDpt6uWoyo {
  background-color: #dadad7;
}
.cid-qDpt6uWoyo H3 {
  color: #232323;
  text-align: left;
}
.cid-qDpt6uWoyo P {
  color: #232323;
  text-align: left;
}
.cid-qDpt6uWoyo H1 {
  color: #465052;
}
.cid-qCWo7YBziw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCWo7YBziw H2 {
  color: #465052;
}
.cid-qCWo7YBziw .mbr-section-subtitle {
  color: #465052;
}
.cid-qCWo7YBziw .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDuAErPEpG {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDuAErPEpG H2 {
  color: #465052;
}
.cid-qDuAErPEpG .mbr-section-subtitle {
  color: #465052;
}
.cid-qDuAErPEpG .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCuYuyBxsE {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDcPmY2IQe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDJzWtIaO {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCDJzWtIaO H3 {
  color: #232323;
}
.cid-qCDJzWtIaO P {
  color: #232323;
  text-align: left;
}
.cid-qCDJzWtIaO H1 {
  color: #465052;
}
.cid-qCDL0w8l26 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDL0w8l26 .mbr-text,
.cid-qCDL0w8l26 blockquote {
  color: #767676;
}
.cid-qCDL0w8l26 .mbr-text I {
  color: #232323;
}
.cid-qCDL0w8l26 .mbr-text {
  color: #232323;
}
.cid-qDpBsdIq4B {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDpBsdIq4B H2 {
  color: #465052;
}
.cid-qDpBsdIq4B .mbr-section-subtitle {
  color: #465052;
}
.cid-qDpBsdIq4B .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCveOrL06O {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcQzv9D55 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDOLOv48R {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCDOLOv48R H3 {
  color: #232323;
}
.cid-qCDOLOv48R P {
  color: #232323;
  text-align: left;
}
.cid-qCDOLOv48R H1 {
  color: #465052;
}
.cid-qCv3aYRHdm {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcRfbrpfg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCEEJesaQh {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCEEJesaQh H3 {
  color: #465052;
  text-align: left;
}
.cid-qCEEJesaQh P {
  color: #232323;
  text-align: left;
}
.cid-qCEEJesaQh H1 {
  color: #465052;
  text-align: left;
}
.cid-qCEGpMFswN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCEGpMFswN .mbr-text,
.cid-qCEGpMFswN blockquote {
  color: #767676;
}
.cid-qCEGpMFswN .mbr-text I {
  color: #232323;
}
.cid-qCEGpMFswN .mbr-text {
  color: #232323;
}
.cid-qCEH5aR60U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCEH5aR60U H2 {
  color: #465052;
}
.cid-qCEH5aR60U .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCEH5aR60U .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCv5saDL7q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcRSJXv8n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCETcSQ8qz {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCETcSQ8qz H3 {
  color: #465052;
  text-align: left;
}
.cid-qCETcSQ8qz P {
  color: #232323;
  text-align: left;
}
.cid-qCETcSQ8qz H1 {
  color: #465052;
}
.cid-qGMgAZIYxC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGMgAZIYxC H3 {
  color: #465052;
  text-align: left;
}
.cid-qGMgAZIYxC P {
  color: #232323;
  text-align: left;
}
.cid-qGMgAZIYxC H1 {
  color: #465052;
}
.cid-qGMgAZIYxC I {
  color: #232323;
}
.cid-qCEOWBfNHu {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCEOWBfNHu H3 {
  color: #465052;
  text-align: left;
}
.cid-qCEOWBfNHu P {
  color: #232323;
  text-align: left;
}
.cid-qCEOWBfNHu H1 {
  color: #465052;
}
.cid-qCv7xEEzmZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCC14n2NWw {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCC14n2NWw .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCC14n2NWw .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCC14n2NWw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCC14n2NWw .inner-container {
    width: 100% !important;
  }
}
.cid-qCCcLdcyu0 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCCI4O2h87 {
  background-color: #dadad7;
}
.cid-qCCI4O2h87 H3 {
  color: #465052;
}
.cid-qCCI4O2h87 P {
  color: #232323;
  text-align: left;
}
.cid-qCCI4O2h87 H1 {
  color: #465052;
}
.cid-qCCK5kY8KI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCCDsxY6a6 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCCDsxY6a6 H3 {
  color: #465052;
}
.cid-qCCDsxY6a6 P {
  color: #232323;
  text-align: left;
}
.cid-qCCDsxY6a6 H1 {
  color: #465052;
}
.cid-qCCSkVGBMT {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCCSkVGBMT .line {
  background-color: #879a9f;
  color: #879a9f;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCCSkVGBMT .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCCSkVGBMT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCCSkVGBMT .inner-container {
    width: 100% !important;
  }
}
.cid-qCCEFEI7XX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCCEFEI7XX H3 {
  color: #465052;
}
.cid-qCCEFEI7XX P {
  color: #232323;
  text-align: left;
}
.cid-qCCEFEI7XX H1 {
  color: #465052;
}
.cid-qD3DhQwda6 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD3DhQwda6 H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3DhQwda6 P {
  color: #232323;
  text-align: left;
}
.cid-qD3DhQwda6 H1 {
  color: #465052;
}
.cid-qCCYKKzF4D {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCCYKKzF4D H3 {
  color: #465052;
}
.cid-qCCYKKzF4D P {
  color: #232323;
  text-align: left;
}
.cid-qCCYKKzF4D H1 {
  color: #465052;
}
.cid-qCCYMCODWL {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qDcWjFAHS2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDc8EpU3M {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDc8EpU3M H3 {
  color: #465052;
}
.cid-qCDc8EpU3M P {
  color: #232323;
  text-align: left;
}
.cid-qCDc8EpU3M H1 {
  color: #465052;
}
.cid-qCDgHwPlGX {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #cacabb;
}
.cid-qCDgHwPlGX H2 {
  color: #465052;
  text-align: left;
}
.cid-qCDgHwPlGX .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCDgHwPlGX .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCDcElFlWW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #bbbbaf;
}
.cid-qCDcElFlWW H2 {
  color: #465052;
  text-align: left;
}
.cid-qCDcElFlWW .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCDcElFlWW .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCDej7KySb {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qCDej7KySb H3 {
  color: #465052;
}
.cid-qCDej7KySb P {
  color: #232323;
  text-align: left;
}
.cid-qCDej7KySb H1 {
  color: #465052;
}
.cid-qCDfS1P6vO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCuIN0cgvH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCuIN0cgvH .mbr-text,
.cid-qCuIN0cgvH .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-qCzwL9qzyw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCC7UzbPzw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCC7UzbPzw .mbr-text,
.cid-qCC7UzbPzw blockquote {
  color: #767676;
}
.cid-qCC7UzbPzw .mbr-text I {
  color: #232323;
}
.cid-qCC7UzbPzw .mbr-text {
  color: #232323;
}
.cid-qCC8lSEoSp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcSfaq5dv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCJ2UJRCUq {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCJ2UJRCUq .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qCJ2VPGfp1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcSwqyG38 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCIZIEduQK {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCIZIEduQK .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-qCEWDQ1kW7 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCEWDQ1kW7 .mbr-text,
.cid-qCEWDQ1kW7 blockquote {
  color: #767676;
}
.cid-qCEWDQ1kW7 .mbr-text P {
  color: #232323;
}
.cid-qCEUV8fNkB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCEUV8fNkB .mbr-text,
.cid-qCEUV8fNkB blockquote {
  color: #767676;
}
.cid-qCEUV8fNkB .mbr-text P {
  color: #232323;
}
.cid-qCEUV8fNkB .mbr-text {
  color: #232323;
}
.cid-qCvaqQyitS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcSNNH3NR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCEZSmy75R {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCEZSmy75R H2 {
  color: #465052;
}
.cid-qCEZSmy75R .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-qCEZSmy75R .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qGh0Iev5nb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGh0Iev5nb H3 {
  color: #465052;
}
.cid-qGh0Iev5nb P {
  color: #232323;
  text-align: left;
}
.cid-qGh0Iev5nb H1 {
  color: #465052;
}
.cid-qGh0Iev5nb I {
  color: #232323;
}
.cid-qCEZyU29Gp {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCEZyU29Gp .mbr-text,
.cid-qCEZyU29Gp blockquote {
  color: #767676;
}
.cid-qCEZyU29Gp .mbr-text P {
  color: #232323;
}
.cid-qGh2l2XAeH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGh2l2XAeH H3 {
  color: #465052;
}
.cid-qGh2l2XAeH P {
  color: #232323;
  text-align: left;
}
.cid-qGh2l2XAeH H1 {
  color: #465052;
}
.cid-qGh2l2XAeH I {
  color: #232323;
}
.cid-qGh3RR5TgV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qGh3RR5TgV .mbr-text,
.cid-qGh3RR5TgV blockquote {
  color: #767676;
}
.cid-qGh3RR5TgV .mbr-text {
  color: #232323;
}
.cid-qGh3qyvm3D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGh3qyvm3D H3 {
  color: #465052;
}
.cid-qGh3qyvm3D P {
  color: #232323;
  text-align: left;
}
.cid-qGh3qyvm3D H1 {
  color: #465052;
}
.cid-qGh3qyvm3D I {
  color: #232323;
}
.cid-qGh8DMPbWB {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGh8DMPbWB .mbr-text,
.cid-qGh8DMPbWB blockquote {
  color: #767676;
}
.cid-qGh8DMPbWB .mbr-text DIV {
  color: #232323;
}
.cid-qGh8DMPbWB .mbr-text {
  color: #232323;
}
.cid-qGFTj4YAtS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGFTj4YAtS H3 {
  color: #465052;
  text-align: left;
}
.cid-qGFTj4YAtS P {
  color: #232323;
  text-align: left;
}
.cid-qGFTj4YAtS H1 {
  color: #465052;
}
.cid-qGFTYKUyPq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGFTYKUyPq H3 {
  color: #465052;
  text-align: left;
}
.cid-qGFTYKUyPq P {
  color: #232323;
  text-align: left;
}
.cid-qGFTYKUyPq H1 {
  color: #465052;
}
.cid-qGFWl3m0Oy {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGFWl3m0Oy .mbr-text,
.cid-qGFWl3m0Oy blockquote {
  color: #767676;
}
.cid-qGFWl3m0Oy .mbr-text B {
  color: #232323;
}
.cid-qGFWl3m0Oy .mbr-text I {
  color: #465052;
}
.cid-qGFWl3m0Oy .mbr-text FONT {
  color: #232323;
}
.cid-qGG0dPWJoC {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qGG0dPWJoC .mbr-text,
.cid-qGG0dPWJoC blockquote {
  color: #767676;
}
.cid-qGG0dPWJoC .mbr-text B {
  color: #232323;
}
.cid-qGG0dPWJoC .mbr-text I {
  color: #465052;
}
.cid-qGG0dPWJoC .mbr-text FONT {
  color: #232323;
}
.cid-qGh9E3viri {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qGh9E3viri .mbr-text,
.cid-qGh9E3viri blockquote {
  color: #767676;
}
.cid-qGh9E3viri .mbr-text B {
  color: #232323;
}
.cid-qGh9E3viri .mbr-text I {
  color: #465052;
}
.cid-qCvdyuSKr6 {
  padding-top: 90px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qDcT1dFPCN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCF7hzhBZp {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCF7hzhBZp H3 {
  color: #465052;
  text-align: left;
}
.cid-qCF7hzhBZp P {
  color: #232323;
  text-align: left;
}
.cid-qCF7hzhBZp H1 {
  color: #465052;
  text-align: left;
}
.cid-qCF7qDrcuS {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCF7qDrcuS .mbr-text,
.cid-qCF7qDrcuS blockquote {
  color: #767676;
}
.cid-qCF7qDrcuS .mbr-text P {
  color: #232323;
}
.cid-qCF7rwd7R7 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCF7rwd7R7 .mbr-text,
.cid-qCF7rwd7R7 blockquote {
  color: #767676;
}
.cid-qCF7rwd7R7 .mbr-text P {
  color: #232323;
}
.cid-qCF7s73CdD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCF7s73CdD .mbr-text,
.cid-qCF7s73CdD blockquote {
  color: #767676;
}
.cid-qCF7s73CdD .mbr-text P {
  color: #232323;
}
.cid-qCF7sFXDQm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCF7sFXDQm .mbr-text,
.cid-qCF7sFXDQm blockquote {
  color: #767676;
}
.cid-qCF7sFXDQm .mbr-text P {
  color: #232323;
}
.cid-qCF7tfICrB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCF7tfICrB .mbr-text,
.cid-qCF7tfICrB blockquote {
  color: #767676;
}
.cid-qCF7tfICrB .mbr-text P {
  color: #232323;
}
.cid-qCF7tHvxBY {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDcThc1zeR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZqCGAz84 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCZqCGAz84 H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZqCGAz84 P {
  color: #232323;
  text-align: left;
}
.cid-qCZqCGAz84 H1 {
  color: #232323;
}
.cid-qCZrorWxHA {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCZrorWxHA H2 {
  color: #465052;
}
.cid-qCZrorWxHA .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZrorWxHA .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCJiY7NZQG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCJiY7NZQG .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCJiY7NZQG .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCJiY7NZQG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCJiY7NZQG .inner-container {
    width: 100% !important;
  }
}
.cid-qCJqbklOgA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCJqbklOgA .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCJqbklOgA .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCJqbklOgA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCJqbklOgA .inner-container {
    width: 100% !important;
  }
}
.cid-qCJlSBTBZH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCJlSBTBZH H2 {
  color: #465052;
}
.cid-qCJlSBTBZH .mbr-section-subtitle {
  color: #465052;
}
.cid-qCJlSBTBZH .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCJjdirnB3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcTzeij5H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDgQMTBPbe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDgQMTBPbe H3 {
  color: #cc2952;
  text-align: left;
}
.cid-qDgQMTBPbe P {
  color: #232323;
}
.cid-qDgQMTBPbe H1 {
  color: #465052;
}
.cid-qDgQMTBPbe DIV {
  color: #cc2952;
}
.cid-qDgQMTBPbe B {
  color: #7f1933;
}
.cid-qDzt3lWjRQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDzt3lWjRQ .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCJtaUjndW {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCJtaUjndW H3 {
  color: #465052;
  text-align: left;
}
.cid-qCJtaUjndW P {
  color: #232323;
  text-align: left;
}
.cid-qCJtaUjndW H1 {
  color: #465052;
}
.cid-qCKvAAsFDQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCKvAAsFDQ H2 {
  color: #465052;
}
.cid-qCKvAAsFDQ .mbr-section-subtitle {
  color: #465052;
}
.cid-qCKvAAsFDQ .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKw6sVMc8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCKw6sVMc8 H3 {
  color: #465052;
  text-align: left;
}
.cid-qCKw6sVMc8 P {
  color: #232323;
  text-align: left;
}
.cid-qCKw6sVMc8 H1 {
  color: #465052;
}
.cid-qCKxf9KaPo {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCKxf9KaPo H2 {
  color: #465052;
}
.cid-qCKxf9KaPo .mbr-section-subtitle {
  color: #465052;
}
.cid-qCKxf9KaPo .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKy0Qo0oW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCKy0Qo0oW H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKy0Qo0oW P {
  color: #232323;
  text-align: left;
}
.cid-qCKy0Qo0oW H1 {
  color: #465052;
}
.cid-qCKyGY5fam {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCKyGY5fam H2 {
  color: #465052;
}
.cid-qCKyGY5fam .mbr-section-subtitle {
  color: #465052;
}
.cid-qCKyGY5fam .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKzjvJsKz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCKzjvJsKz H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKzjvJsKz P {
  color: #232323;
  text-align: left;
}
.cid-qCKzjvJsKz H1 {
  color: #465052;
}
.cid-qCKAfAaL1z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCKAfAaL1z H2 {
  color: #465052;
}
.cid-qCKAfAaL1z .mbr-section-subtitle {
  color: #465052;
}
.cid-qCKAfAaL1z .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKDn4LOHq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCKDn4LOHq H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKDn4LOHq P {
  color: #232323;
  text-align: left;
}
.cid-qCKDn4LOHq H1 {
  color: #465052;
  text-align: center;
}
.cid-qCKCWjgAOt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCKCWjgAOt H2 {
  color: #465052;
  text-align: left;
}
.cid-qCKCWjgAOt .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCKCWjgAOt .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKGtMTX8v {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCKGtMTX8v H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKGtMTX8v P {
  color: #232323;
  text-align: left;
}
.cid-qCKGtMTX8v H1 {
  color: #465052;
  text-align: center;
}
.cid-qCKHOTFc9M {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCKHOTFc9M H2 {
  color: #465052;
  text-align: left;
}
.cid-qCKHOTFc9M .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCKHOTFc9M .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKIxoJwhT {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qCKIxoJwhT H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKIxoJwhT P {
  color: #232323;
  text-align: left;
}
.cid-qCKIxoJwhT H1 {
  color: #465052;
  text-align: center;
}
.cid-qCKJkuCYpo {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #dadad7;
}
.cid-qCUPR5SPWP {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCUPR5SPWP H3 {
  color: #465052;
}
.cid-qCUPR5SPWP P {
  color: #232323;
  text-align: left;
}
.cid-qCUPR5SPWP H1 {
  color: #465052;
}
.cid-qCURjc96OS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCURjc96OS H3 {
  color: #465052;
}
.cid-qCURjc96OS P {
  color: #232323;
  text-align: left;
}
.cid-qCURjc96OS H1 {
  color: #465052;
}
.cid-qCV2s5gd6Y {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCVfmch7Md {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qCVfmch7Md H3 {
  color: #465052;
}
.cid-qCVfmch7Md P {
  color: #232323;
  text-align: left;
}
.cid-qCVfmch7Md H1 {
  color: #465052;
}
.cid-qCVgeJDvO8 {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCWlXvBj3z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCWlXvBj3z H2 {
  color: #465052;
}
.cid-qCWlXvBj3z .mbr-section-subtitle {
  color: #465052;
}
.cid-qCWlXvBj3z .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCWm3ZNoR6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCWwg59ijJ {
  padding-top: 135px;
  padding-bottom: 105px;
  background-color: #dadad7;
}
.cid-qCWwg59ijJ H3 {
  color: #465052;
}
.cid-qCWwg59ijJ P {
  color: #232323;
  text-align: left;
}
.cid-qCWwg59ijJ H1 {
  color: #465052;
}
.cid-qCWvk2pDOd {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCWdl5RJB0 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qCWdl5RJB0 H3 {
  color: #465052;
}
.cid-qCWdl5RJB0 P {
  color: #232323;
  text-align: left;
}
.cid-qCWdl5RJB0 H1 {
  color: #465052;
}
.cid-qCWdYw9tMM {
  padding-top: 105px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCZHOVwYZj {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qCZHOVwYZj H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZHOVwYZj P {
  color: #232323;
  text-align: left;
}
.cid-qCZHOVwYZj H1 {
  color: #232323;
}
.cid-qCZHQ9T2tw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCZIGnEeOd {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZIGnEeOd H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZIGnEeOd P {
  color: #232323;
  text-align: left;
}
.cid-qCZIGnEeOd H1 {
  color: #465052;
}
.cid-qD0cL34RuK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qD0cL34RuK .mbr-text,
.cid-qD0cL34RuK blockquote {
  color: #767676;
}
.cid-qD0cL34RuK .mbr-text B {
  color: #232323;
}
.cid-qD0cL34RuK .mbr-text P {
  color: #232323;
}
.cid-qCZJc2GzCh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZJc2GzCh H2 {
  color: #465052;
}
.cid-qCZJc2GzCh .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZJc2GzCh .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZJPJPL4u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZJPJPL4u H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZJPJPL4u P {
  color: #232323;
  text-align: left;
}
.cid-qCZJPJPL4u H1 {
  color: #465052;
}
.cid-qCZJc7WfM5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZJc7WfM5 H2 {
  color: #465052;
}
.cid-qCZJc7WfM5 .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZJc7WfM5 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZKIjqHjX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZKIjqHjX H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZKIjqHjX P {
  color: #232323;
  text-align: left;
}
.cid-qCZKIjqHjX H1 {
  color: #465052;
}
.cid-qCZL5gkKyW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZL5gkKyW H2 {
  color: #465052;
}
.cid-qCZL5gkKyW .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZL5gkKyW .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZMcHUjOV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCZMcHUjOV H2 {
  color: #465052;
}
.cid-qCZMcHUjOV .mbr-section-subtitle {
  color: #465052;
}
.cid-qCZMcHUjOV .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZO4lWw8r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCZO4lWw8r H2 {
  color: #465052;
}
.cid-qCZO4lWw8r .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZO4lWw8r .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZOsWx81P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCZOsWx81P .counter-container {
  color: #767676;
}
.cid-qCZOsWx81P .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-qCZOsWx81P .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-qCZOsWx81P .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
}
.cid-qCZOsWx81P .counter-container ol li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-qCZOsWx81P .mbr-text LI {
  color: #232323;
}
.cid-qCZRNwAhMa {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCZRNwAhMa .mbr-text,
.cid-qCZRNwAhMa blockquote {
  color: #767676;
}
.cid-qCZRNwAhMa .mbr-text DIV {
  color: #232323;
}
.cid-qCZRNwAhMa .mbr-text B {
  color: #465052;
}
.cid-qCZRNwAhMa .mbr-text P {
  color: #465052;
}
.cid-qCZSpsFrEF {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCZSpsFrEF H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZSpsFrEF P {
  color: #232323;
  text-align: left;
}
.cid-qCZSpsFrEF H1 {
  color: #465052;
}
.cid-qCZTErJpmW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qCZTErJpmW H2 {
  color: #465052;
}
.cid-qCZTErJpmW .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZTErJpmW .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-qD00PZRQ5c {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qD00PZRQ5c H2 {
  color: #465052;
}
.cid-qD00PZRQ5c .mbr-section-subtitle {
  color: #232323;
}
.cid-qD00PZRQ5c .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZIGPAfAc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qD06ACAnhr {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qD06ACAnhr H2 {
  color: #465052;
}
.cid-qD06ACAnhr .mbr-section-subtitle {
  color: #232323;
}
.cid-qD06ACAnhr .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qD0aUEAQnP {
  background-color: #dadad7;
}
.cid-qD0aUEAQnP H3 {
  color: #232323;
  text-align: center;
}
.cid-qD0aUEAQnP P {
  color: #232323;
  text-align: left;
}
.cid-qD0aUEAQnP H1 {
  color: #232323;
}
.cid-qD37QP0smR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD37QP0smR H3 {
  color: #232323;
  text-align: left;
}
.cid-qD37QP0smR P {
  color: #232323;
  text-align: left;
}
.cid-qD37QP0smR H1 {
  color: #465052;
}
.cid-qD3skqBGLy {
  background-color: #dadad7;
}
.cid-qD3skqBGLy H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3skqBGLy P {
  color: #232323;
  text-align: left;
}
.cid-qD3skqBGLy H1 {
  color: #465052;
}
.cid-qD3KdC14aX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qD3KdC14aX H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3KdC14aX P {
  color: #232323;
  text-align: left;
}
.cid-qD3KdC14aX H1 {
  color: #465052;
}
.cid-qD3Udcs2fb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD3Udcs2fb H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3Udcs2fb P {
  color: #232323;
  text-align: left;
}
.cid-qD3Udcs2fb H1 {
  color: #465052;
}
.cid-qD3PxyKf0j {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD3PxyKf0j H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3PxyKf0j P {
  color: #232323;
  text-align: left;
}
.cid-qD3PxyKf0j H1 {
  color: #465052;
}
.cid-qD3VZKWyfx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qD3VZKWyfx H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3VZKWyfx P {
  color: #232323;
  text-align: left;
}
.cid-qD3VZKWyfx H1 {
  color: #465052;
}
.cid-qD3WHm6eAE {
  background-color: #dadad7;
}
.cid-qD3WHm6eAE H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3WHm6eAE P {
  color: #232323;
  text-align: left;
}
.cid-qD3WHm6eAE H1 {
  color: #465052;
}
.cid-qD3ZIdOcA8 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD3ZIdOcA8 H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3ZIdOcA8 P {
  color: #232323;
  text-align: left;
}
.cid-qD3ZIdOcA8 H1 {
  color: #465052;
}
.cid-qD42nTkarl {
  background-color: #dadad7;
}
.cid-qD42nTkarl H3 {
  color: #232323;
  text-align: left;
}
.cid-qD42nTkarl P {
  color: #232323;
  text-align: left;
}
.cid-qD42nTkarl H1 {
  color: #465052;
}
.cid-qD5JPEBSJ2 {
  background-color: #dadad7;
}
.cid-qD5JPEBSJ2 H3 {
  color: #232323;
  text-align: left;
}
.cid-qD5JPEBSJ2 P {
  color: #232323;
  text-align: left;
}
.cid-qD5JPEBSJ2 H1 {
  color: #465052;
  text-align: left;
}
.cid-qD5JPEBSJ2 SPAN {
  color: #232323;
}
.cid-qD5MOMx2Cb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qD5MOMx2Cb H3 {
  color: #232323;
  text-align: left;
}
.cid-qD5MOMx2Cb P {
  color: #232323;
  text-align: left;
}
.cid-qD5MOMx2Cb H1 {
  color: #465052;
  text-align: center;
}
.cid-qD5MOMx2Cb SPAN {
  color: #232323;
}
.cid-qDbXE86skw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDbXE86skw H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbXE86skw P {
  color: #232323;
  text-align: left;
}
.cid-qDbXE86skw H1 {
  color: #465052;
}
.cid-qDcChqsAZp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qDcChqsAZp .mbr-section-subtitle {
  color: #767676;
}
.cid-qDcChqsAZp H2 {
  text-align: left;
}
.cid-qD63JIVa5E {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD63JIVa5E H3 {
  color: #232323;
  text-align: left;
}
.cid-qD63JIVa5E P {
  color: #232323;
  text-align: left;
}
.cid-qD63JIVa5E H1 {
  color: #465052;
  text-align: center;
}
.cid-qD63JIVa5E SPAN {
  color: #232323;
}
.cid-qD81CSZvvT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD81CSZvvT H3 {
  color: #465052;
}
.cid-qD81CSZvvT P {
  color: #232323;
  text-align: left;
}
.cid-qD81CSZvvT H1 {
  color: #465052;
}
.cid-qD8gDJscJ4 {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qD8gd1564O {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qD8gd1564O H3 {
  color: #465052;
}
.cid-qD8gd1564O P {
  color: #232323;
  text-align: left;
}
.cid-qD8gd1564O H1 {
  color: #465052;
}
.cid-qDjkrNpkMs {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDjkrNpkMs H2 {
  color: #465052;
}
.cid-qDjkrNpkMs .mbr-section-subtitle {
  color: #465052;
}
.cid-qDjkrNpkMs .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qD8ge0xXCi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qD8ge0xXCi H2 {
  color: #465052;
  text-align: center;
}
.cid-qD8ge0xXCi .mbr-section-subtitle {
  color: #465052;
}
.cid-qD8ge0xXCi .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qD8ghhpDPc {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qD8ghhpDPc H3 {
  color: #232323;
  text-align: center;
}
.cid-qD8ghhpDPc P {
  color: #232323;
  text-align: left;
}
.cid-qD8ghhpDPc H1 {
  color: #465052;
}
.cid-qDezMfxaXr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDaN7icwdC {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDaN7icwdC H3 {
  color: #232323;
  text-align: center;
}
.cid-qDaN7icwdC P {
  color: #232323;
  text-align: left;
}
.cid-qDaN7icwdC H1 {
  color: #465052;
}
.cid-qDeyIXOLNR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDaQ4laiA6 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDaQ4laiA6 H3 {
  color: #232323;
  text-align: center;
}
.cid-qDaQ4laiA6 P {
  color: #232323;
  text-align: left;
}
.cid-qDaQ4laiA6 H1 {
  color: #465052;
}
.cid-qDaQ4laiA6 I {
  color: #232323;
}
.cid-qDb8lndCkC {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDb8lndCkC H3 {
  color: #232323;
  text-align: center;
}
.cid-qDb8lndCkC P {
  color: #232323;
  text-align: left;
}
.cid-qDb8lndCkC H1 {
  color: #465052;
}
.cid-qDb8lndCkC I {
  color: #232323;
}
.cid-qDaS8xpW3H {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDaS8xpW3H H3 {
  color: #232323;
  text-align: center;
}
.cid-qDaS8xpW3H P {
  color: #232323;
  text-align: left;
}
.cid-qDaS8xpW3H H1 {
  color: #465052;
}
.cid-qDaS8xpW3H I {
  color: #232323;
}
.cid-qDaUamnEhq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDaUamnEhq H2 {
  color: #465052;
}
.cid-qDaUamnEhq .mbr-section-subtitle {
  color: #465052;
}
.cid-qDaUamnEhq .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDhymPInrR {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qDhymPInrR H2 {
  color: #465052;
}
.cid-qDhymPInrR .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-qDhymPInrR .mbr-text {
  color: #232323;
}
.cid-qDhymPInrR .mbr-section-subtitle DIV {
  color: #7f1933;
}
.cid-qDaYaQ8XCR {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDaYaQ8XCR H3 {
  color: #232323;
  text-align: center;
}
.cid-qDaYaQ8XCR P {
  color: #232323;
  text-align: left;
}
.cid-qDaYaQ8XCR H1 {
  color: #465052;
}
.cid-qDaYaQ8XCR I {
  color: #232323;
}
.cid-qDeH8YzI5t {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDb1j2MGQI {
  background-color: #dadad7;
}
.cid-qDb1j2MGQI H3 {
  color: #232323;
  text-align: center;
}
.cid-qDb1j2MGQI P {
  color: #232323;
  text-align: left;
}
.cid-qDb1j2MGQI H1 {
  color: #465052;
}
.cid-qDb1j2MGQI I {
  color: #232323;
}
.cid-qDbdujZNEM {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDbdujZNEM H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbdujZNEM P {
  color: #232323;
  text-align: left;
}
.cid-qDbdujZNEM H1 {
  color: #465052;
}
.cid-qDbdujZNEM I {
  color: #232323;
}
.cid-qHDVSNjXsD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qHDVSNjXsD H2 {
  color: #465052;
}
.cid-qHDVSNjXsD .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qHDVSNjXsD .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDbfbOyVrA {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDbfbOyVrA H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbfbOyVrA P {
  color: #232323;
  text-align: left;
}
.cid-qDbfbOyVrA H1 {
  color: #465052;
}
.cid-qDbfbOyVrA I {
  color: #232323;
}
.cid-qDeGWywfpm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qGgAHyxuXw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGgAHyxuXw H3 {
  color: #465052;
}
.cid-qGgAHyxuXw P {
  color: #232323;
  text-align: left;
}
.cid-qGgAHyxuXw H1 {
  color: #465052;
}
.cid-qGgAHyxuXw I {
  color: #232323;
}
.cid-qDbgc6wo0g {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDbgc6wo0g H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbgc6wo0g P {
  color: #232323;
  text-align: left;
}
.cid-qDbgc6wo0g H1 {
  color: #465052;
}
.cid-qDbgc6wo0g I {
  color: #232323;
}
.cid-qHDvGguNYd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qHDvGguNYd H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDvGguNYd P {
  color: #232323;
  text-align: left;
}
.cid-qHDvGguNYd H1 {
  color: #465052;
}
.cid-qHDBRLvIOm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qHDBRLvIOm H2 {
  color: #465052;
}
.cid-qHDBRLvIOm .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qHDBRLvIOm .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qHDDl29pFZ {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qHDDl29pFZ H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDDl29pFZ P {
  color: #232323;
  text-align: left;
}
.cid-qHDDl29pFZ H1 {
  color: #465052;
}
.cid-qDbW5msAmO {
  background-color: #dadad7;
}
.cid-qDbW5msAmO H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbW5msAmO P {
  color: #232323;
  text-align: left;
}
.cid-qDbW5msAmO H1 {
  color: #465052;
}
.cid-qDcazeKVmd {
  background-color: #dadad7;
}
.cid-qDcazeKVmd H3 {
  color: #232323;
  text-align: center;
}
.cid-qDcazeKVmd P {
  color: #232323;
  text-align: left;
}
.cid-qDcazeKVmd H1 {
  color: #465052;
}
.cid-qDAZFXyIll {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDAZFXyIll H2 {
  color: #465052;
  text-align: center;
}
.cid-qDAZFXyIll .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDAZFXyIll .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDukcom7GU {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDukcom7GU H3 {
  color: #232323;
  text-align: left;
}
.cid-qDukcom7GU P {
  color: #232323;
  text-align: left;
}
.cid-qDukcom7GU H1 {
  color: #465052;
}
.cid-qG8Y62bkJ9 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qG8Y62bkJ9 H2 {
  color: #465052;
}
.cid-qG8Y62bkJ9 .mbr-section-subtitle {
  color: #465052;
}
.cid-qG8Y62bkJ9 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qG8YdheYAY {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcLlAiyNo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDcJuw5oLk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qDcJuw5oLk H3 {
  color: #232323;
  text-align: left;
}
.cid-qDcJuw5oLk P {
  color: #232323;
  text-align: left;
}
.cid-qDcJuw5oLk H1 {
  color: #465052;
}
.cid-qDeIRfiGzS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qDeIRfiGzS H2 {
  color: #465052;
}
.cid-qDeIRfiGzS .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDeIRfiGzS .mbr-text {
  color: #232323;
}
.cid-qDeIS9sNml {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDeIS9sNml H2 {
  color: #465052;
}
.cid-qDeIS9sNml .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDeIS9sNml .mbr-text {
  color: #232323;
}
.cid-qDeITTzYjB {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qDeITTzYjB H2 {
  color: #465052;
}
.cid-qDeITTzYjB .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDeITTzYjB .mbr-text {
  color: #232323;
}
.cid-qDeIZh1mRL {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #dadad7;
}
.cid-qDejn7LXhO {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qDejn7LXhO H3 {
  color: #232323;
  text-align: left;
}
.cid-qDejn7LXhO P {
  color: #232323;
  text-align: left;
}
.cid-qDejn7LXhO H1 {
  color: #465052;
}
.cid-qDgP9SyQnx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDgP9SyQnx H3 {
  color: #cc2952;
  text-align: left;
}
.cid-qDgP9SyQnx P {
  color: #232323;
}
.cid-qDgP9SyQnx H1 {
  color: #465052;
}
.cid-qDgP9SyQnx DIV {
  color: #cc2952;
}
.cid-qDgP9SyQnx B {
  color: #7f1933;
}
.cid-qDgPy2Dnf9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDgRZEJzKp {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qDgRZEJzKp H3 {
  color: #cc2952;
  text-align: left;
}
.cid-qDgRZEJzKp P {
  color: #232323;
}
.cid-qDgRZEJzKp H1 {
  color: #465052;
}
.cid-qDgRZEJzKp DIV {
  color: #cc2952;
}
.cid-qDgRZEJzKp B {
  color: #7f1933;
}
.cid-qDgS26G0en {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDpzwHbNv2 {
  background-color: #dadad7;
}
.cid-qDpzwHbNv2 H3 {
  color: #232323;
  text-align: left;
}
.cid-qDpzwHbNv2 P {
  color: #232323;
  text-align: left;
}
.cid-qDpzwHbNv2 H1 {
  color: #465052;
}
.cid-qDuJnwW0tY {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qDuJnwW0tY H3 {
  color: #465052;
}
.cid-qDuJnwW0tY P {
  color: #232323;
  text-align: left;
}
.cid-qDuJnwW0tY H1 {
  color: #465052;
}
.cid-qDuJosD9QP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDATHZnI0F {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDATHZnI0F H2 {
  color: #465052;
  text-align: center;
}
.cid-qDATHZnI0F .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDATHZnI0F .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDATOunyK1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDAUROQ4sr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDAUROQ4sr H2 {
  color: #465052;
  text-align: center;
}
.cid-qDAUROQ4sr .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDAUROQ4sr .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDAUROQ4sr .mbr-section-subtitle DIV {
  color: #232323;
}
.cid-qG967QbITf {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qG967QbITf H2 {
  color: #465052;
}
.cid-qG967QbITf .mbr-section-subtitle {
  color: #465052;
}
.cid-qG967QbITf .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDAUT3z08H {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDAWq1jBNg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDAWq1jBNg H2 {
  color: #465052;
  text-align: center;
}
.cid-qDAWq1jBNg .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDAWq1jBNg .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDAX2pHJJU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDRuDyXJuw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDRuDyXJuw H3 {
  color: #465052;
}
.cid-qDRuDyXJuw P {
  color: #232323;
  text-align: left;
}
.cid-qDRuDyXJuw H1 {
  color: #465052;
}
.cid-qDRuGRFVnc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qG4qCt8Dfa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qG4qCt8Dfa H2 {
  color: #465052;
}
.cid-qG4qCt8Dfa .mbr-section-subtitle {
  color: #465052;
}
.cid-qG4qCt8Dfa .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qG4rAlWNRo {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #dadad7;
}
.cid-qG8MNcefdt {
  background-color: #dadad7;
}
.cid-qG8MNcefdt H1 {
  color: #465052;
}
.cid-qG8MNcefdt H3 {
  color: #465052;
  text-align: left;
}
.cid-qG8MNcefdt .mbr-text,
.cid-qG8MNcefdt .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-qG8Umhq0cA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qGMcDatDoS {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #dadad7;
}
.cid-qGMcDatDoS H3 {
  color: #232323;
  text-align: left;
}
.cid-qGMcDatDoS P {
  color: #232323;
  text-align: left;
}
.cid-qGMcDatDoS H1 {
  color: #465052;
}
.cid-qHcCtmOuMq {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qHcCtmOuMq H3 {
  color: #232323;
  text-align: center;
}
.cid-qHcCtmOuMq P {
  color: #232323;
  text-align: left;
}
.cid-qHcCtmOuMq H1 {
  color: #465052;
}
.cid-qHcMjgcwHw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qHcO6sr3Ty {
  background-color: #dadad7;
}
.cid-qHcO6sr3Ty H3 {
  color: #232323;
  text-align: center;
}
.cid-qHcO6sr3Ty P {
  color: #232323;
  text-align: left;
}
.cid-qHcO6sr3Ty H1 {
  color: #465052;
}
.cid-qHcO7Sz6V7 {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qHDjXNsv78 {
  background-color: #dadad7;
}
.cid-qHDjXNsv78 H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDjXNsv78 P {
  color: #232323;
  text-align: left;
}
.cid-qHDjXNsv78 H1 {
  color: #465052;
}
.cid-qHDsQrZZpZ {
  background-color: #dadad7;
}
.cid-qHDsQrZZpZ H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDsQrZZpZ P {
  color: #232323;
  text-align: left;
}
.cid-qHDsQrZZpZ H1 {
  color: #465052;
}
.cid-qHDTbtRrva {
  background-color: #dadad7;
}
.cid-qHDTbtRrva H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDTbtRrva P {
  color: #232323;
  text-align: left;
}
.cid-qHDTbtRrva H1 {
  color: #465052;
}
.cid-qHERgaVcii {
  background-color: #dadad7;
}
.cid-qHERgaVcii H3 {
  color: #232323;
  text-align: left;
}
.cid-qHERgaVcii P {
  color: #232323;
  text-align: left;
}
.cid-qHERgaVcii H1 {
  color: #465052;
}
body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.2rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.72rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.8rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.2rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 2.56rem;
}
/* ---- 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.36rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  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 {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  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 {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !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: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 2.56rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #149dcc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #149dcc;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  color: #ffffff;
}
.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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !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: #ff3366 !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: 100px;
  height: 100px;
  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='%23149dcc' %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.3;
}
.cid-tqacrj78WR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-tqacrj78WR .mbr-text,
.cid-tqacrj78WR blockquote {
  color: #767676;
}
.cid-tqacrj78WR .mbr-text P {
  color: #465052;
  text-align: center;
}
.cid-tqacrj78WR .mbr-text {
  color: #465052;
  text-align: center;
}
.cid-tqacrj78WR #dPisal {
  display: block;
  position: absolute;
  width: 11em;
  font-size: 45%;
  line-height: .9;
  text-align: left;
  color: #aaa;
  border: 3px solid #aaa;
  border-radius: 4px;
  padding: 4px 9px;
  background-color: transparent;
  box-shadow: -1px 1px 1px 0 #999999;
  top: 1em;
  left: 5vw;
  z-index: 1;
}
.cid-tqacrj78WR #dPisal:hover {
  width: 19em;
  line-height: 1.4;
  font-size: 100%;
  color: #465052;
  border: 3px solid #888;
  background-color: #f0f0f0;
  box-shadow: -4px 3px 5px 1px #9999dd;
  top: .4em;
  left: 2vw;
  transition: 2s ease;
}
.cid-tqacrj78WR #dPisal:not(:hover) {
  transition: 3s ease;
}
.cid-tqacrj78WR a.btn2:link {
  border: 2px solid #94b8b8;
  padding: 8px 0px 0px 0px;
  border-radius: 22px;
  background-color: #f2f2f2;
}
.cid-tqacrj78WR a.btn2:hover {
  border: 2px solid #dddddd;
  padding: 8px 0px 0px 0px;
  background-color: #ffffcc;
  transition: 1s ease;
}
.cid-tqacrj78WR a.btn2:not(:hover) {
  border: 2px solid #94b8b8;
  padding: 8px 0px 0px 0px;
  background-color: #f2f2f2;
  transition: 1s ease;
}
.cid-tqaeHagb6m {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCz9xe8Llt {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCz9xe8Llt .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCz9xe8Llt .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCz9xe8Llt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCz9xe8Llt .inner-container {
    width: 100% !important;
  }
}
.cid-qCurwGLz1C {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCurwGLz1C .mbr-text,
.cid-qCurwGLz1C blockquote {
  color: #767676;
}
.cid-qCurwGLz1C .mbr-text I {
  color: #232323;
}
.cid-qCurwGLz1C .mbr-text {
  color: #232323;
}
.cid-qCW8WPQIIN {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCW8WPQIIN .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCW8WPQIIN .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCW8WPQIIN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCW8WPQIIN .inner-container {
    width: 100% !important;
  }
}
.cid-qCuGn7Z7eO {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCuGn7Z7eO .mbr-text,
.cid-qCuGn7Z7eO .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-qCZ3XpysDG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZ3XpysDG H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZ3XpysDG P {
  color: #232323;
  text-align: left;
}
.cid-qCZ3XpysDG H1 {
  color: #232323;
}
.cid-qCuGW7w2QI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCuGW7w2QI .mbr-text,
.cid-qCuGW7w2QI .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-qG9WZdUgIJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qG9WZdUgIJ H3 {
  color: #465052;
}
.cid-qG9WZdUgIJ P {
  color: #232323;
  text-align: left;
}
.cid-qG9WZdUgIJ H1 {
  color: #465052;
}
.cid-qG9WZdUgIJ I {
  color: #232323;
}
.cid-qCWgWD0h4g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCWgWD0h4g H3 {
  color: #465052;
}
.cid-qCWgWD0h4g P {
  color: #232323;
  text-align: left;
}
.cid-qCWgWD0h4g H1 {
  color: #465052;
}
.cid-qCWgWD0h4g I {
  color: #232323;
}
.cid-qCV3mNjklY {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCV3mNjklY H3 {
  color: #465052;
}
.cid-qCV3mNjklY P {
  color: #232323;
  text-align: left;
}
.cid-qCV3mNjklY H1 {
  color: #465052;
}
.cid-qCzb0iJtYh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCzb0iJtYh H3 {
  color: #465052;
}
.cid-qCzb0iJtYh P {
  color: #232323;
}
.cid-qCzb0iJtYh H1 {
  color: #465052;
}
.cid-qCuHbsjRLm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCuHbsjRLm .mbr-text,
.cid-qCuHbsjRLm .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-qDpt6uWoyo {
  background-color: #dadad7;
}
.cid-qDpt6uWoyo H3 {
  color: #232323;
  text-align: left;
}
.cid-qDpt6uWoyo P {
  color: #232323;
  text-align: left;
}
.cid-qDpt6uWoyo H1 {
  color: #465052;
}
.cid-qCWo7YBziw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCWo7YBziw H2 {
  color: #465052;
}
.cid-qCWo7YBziw .mbr-section-subtitle {
  color: #465052;
}
.cid-qCWo7YBziw .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDuAErPEpG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qDuAErPEpG H2 {
  color: #465052;
}
.cid-qDuAErPEpG .mbr-section-subtitle {
  color: #465052;
}
.cid-qDuAErPEpG .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCuYuyBxsE {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #dadad7;
}
.cid-qCuYuyBxsE .buttopfix {
  font-size: 211%;
  text-align: center;
  color: #777;
  border: 2px solid #dadad7;
  border-radius: 45px;
  padding: 0 15px 7px 15px;
  background: #ccc;
  box-shadow: 0 0 2px 0 #aaa inset;
  position: fixed;
  z-index: 1;
  top: 70vh;
  right: 7%;
  opacity: .5;
}
.cid-qCuYuyBxsE .buttopfix:hover {
  color: #ddd;
  border: 2px solid #ddd;
  box-shadow: 0 0 11px 0 #ddd inset;
  background: #aaa;
  opacity: .8;
  transition: .5s ease;
}
.cid-qCuYuyBxsE .buttopfix:not(:hover) {
  transition: 2s ease;
}
.cid-qCuYuyBxsE .mbr-text {
  text-align: center;
}
.cid-qDcPmY2IQe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDJzWtIaO {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCDJzWtIaO H3 {
  color: #232323;
}
.cid-qCDJzWtIaO P {
  color: #232323;
  text-align: left;
}
.cid-qCDJzWtIaO H1 {
  color: #465052;
}
.cid-qCDL0w8l26 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDL0w8l26 .mbr-text,
.cid-qCDL0w8l26 blockquote {
  color: #767676;
}
.cid-qCDL0w8l26 .mbr-text I {
  color: #232323;
}
.cid-qCDL0w8l26 .mbr-text {
  color: #232323;
}
.cid-qDpBsdIq4B {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDpBsdIq4B H2 {
  color: #465052;
}
.cid-qDpBsdIq4B .mbr-section-subtitle {
  color: #465052;
}
.cid-qDpBsdIq4B .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCveOrL06O {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcQzv9D55 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDOLOv48R {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCDOLOv48R H3 {
  color: #232323;
}
.cid-qCDOLOv48R P {
  color: #232323;
  text-align: left;
}
.cid-qCDOLOv48R H1 {
  color: #465052;
}
.cid-qCv3aYRHdm {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcRfbrpfg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCEEJesaQh {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCEEJesaQh H3 {
  color: #465052;
  text-align: left;
}
.cid-qCEEJesaQh P {
  color: #232323;
  text-align: left;
}
.cid-qCEEJesaQh H1 {
  color: #465052;
  text-align: left;
}
.cid-qCEGpMFswN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCEGpMFswN .mbr-text,
.cid-qCEGpMFswN blockquote {
  color: #767676;
}
.cid-qCEGpMFswN .mbr-text I {
  color: #232323;
}
.cid-qCEGpMFswN .mbr-text {
  color: #232323;
}
.cid-qCEH5aR60U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCEH5aR60U H2 {
  color: #465052;
}
.cid-qCEH5aR60U .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCEH5aR60U .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCv5saDL7q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcRSJXv8n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCETcSQ8qz {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCETcSQ8qz H3 {
  color: #465052;
  text-align: left;
}
.cid-qCETcSQ8qz P {
  color: #232323;
  text-align: left;
}
.cid-qCETcSQ8qz H1 {
  color: #465052;
}
.cid-qGMgAZIYxC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGMgAZIYxC H3 {
  color: #465052;
  text-align: left;
}
.cid-qGMgAZIYxC P {
  color: #232323;
  text-align: left;
}
.cid-qGMgAZIYxC H1 {
  color: #465052;
}
.cid-qGMgAZIYxC I {
  color: #232323;
}
.cid-qCEOWBfNHu {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCEOWBfNHu H3 {
  color: #465052;
  text-align: left;
}
.cid-qCEOWBfNHu P {
  color: #232323;
  text-align: left;
}
.cid-qCEOWBfNHu H1 {
  color: #465052;
}
.cid-qCv7xEEzmZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCC14n2NWw {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCC14n2NWw .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCC14n2NWw .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCC14n2NWw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCC14n2NWw .inner-container {
    width: 100% !important;
  }
}
.cid-qCCcLdcyu0 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCCI4O2h87 {
  background-color: #dadad7;
}
.cid-qCCI4O2h87 H3 {
  color: #465052;
}
.cid-qCCI4O2h87 P {
  color: #232323;
  text-align: left;
}
.cid-qCCI4O2h87 H1 {
  color: #465052;
}
.cid-qCCK5kY8KI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCCDsxY6a6 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCCDsxY6a6 H3 {
  color: #465052;
}
.cid-qCCDsxY6a6 P {
  color: #232323;
  text-align: left;
}
.cid-qCCDsxY6a6 H1 {
  color: #465052;
}
.cid-qCCSkVGBMT {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCCSkVGBMT .line {
  background-color: #879a9f;
  color: #879a9f;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCCSkVGBMT .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCCSkVGBMT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCCSkVGBMT .inner-container {
    width: 100% !important;
  }
}
.cid-qCCEFEI7XX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCCEFEI7XX H3 {
  color: #465052;
}
.cid-qCCEFEI7XX P {
  color: #232323;
  text-align: left;
}
.cid-qCCEFEI7XX H1 {
  color: #465052;
}
.cid-qD3DhQwda6 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD3DhQwda6 H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3DhQwda6 P {
  color: #232323;
  text-align: left;
}
.cid-qD3DhQwda6 H1 {
  color: #465052;
}
.cid-qCCYKKzF4D {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCCYKKzF4D H3 {
  color: #465052;
}
.cid-qCCYKKzF4D P {
  color: #232323;
  text-align: left;
}
.cid-qCCYKKzF4D H1 {
  color: #465052;
}
.cid-qCCYMCODWL {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qDcWjFAHS2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDc8EpU3M {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCDc8EpU3M H3 {
  color: #465052;
}
.cid-qCDc8EpU3M P {
  color: #232323;
  text-align: left;
}
.cid-qCDc8EpU3M H1 {
  color: #465052;
}
.cid-qCDgHwPlGX {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #cacabb;
}
.cid-qCDgHwPlGX H2 {
  color: #465052;
  text-align: left;
}
.cid-qCDgHwPlGX .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCDgHwPlGX .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCDcElFlWW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #bbbbaf;
}
.cid-qCDcElFlWW H2 {
  color: #465052;
  text-align: left;
}
.cid-qCDcElFlWW .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCDcElFlWW .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCDej7KySb {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qCDej7KySb H3 {
  color: #465052;
}
.cid-qCDej7KySb P {
  color: #232323;
  text-align: left;
}
.cid-qCDej7KySb H1 {
  color: #465052;
}
.cid-qCDfS1P6vO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCuIN0cgvH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCuIN0cgvH .mbr-text,
.cid-qCuIN0cgvH .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-qCzwL9qzyw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCC7UzbPzw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCC7UzbPzw .mbr-text,
.cid-qCC7UzbPzw blockquote {
  color: #767676;
}
.cid-qCC7UzbPzw .mbr-text I {
  color: #232323;
}
.cid-qCC7UzbPzw .mbr-text {
  color: #232323;
}
.cid-qCC8lSEoSp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcSfaq5dv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCJ2UJRCUq {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCJ2UJRCUq .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qCJ2VPGfp1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcSwqyG38 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCIZIEduQK {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCIZIEduQK .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-qCEWDQ1kW7 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCEWDQ1kW7 .mbr-text,
.cid-qCEWDQ1kW7 blockquote {
  color: #767676;
}
.cid-qCEWDQ1kW7 .mbr-text P {
  color: #232323;
}
.cid-qCEUV8fNkB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCEUV8fNkB .mbr-text,
.cid-qCEUV8fNkB blockquote {
  color: #767676;
}
.cid-qCEUV8fNkB .mbr-text P {
  color: #232323;
}
.cid-qCEUV8fNkB .mbr-text {
  color: #232323;
}
.cid-qCvaqQyitS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcSNNH3NR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCEZSmy75R {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCEZSmy75R H2 {
  color: #465052;
}
.cid-qCEZSmy75R .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-qCEZSmy75R .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qGh0Iev5nb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGh0Iev5nb H3 {
  color: #465052;
}
.cid-qGh0Iev5nb P {
  color: #232323;
  text-align: left;
}
.cid-qGh0Iev5nb H1 {
  color: #465052;
}
.cid-qGh0Iev5nb I {
  color: #232323;
}
.cid-qCEZyU29Gp {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCEZyU29Gp .mbr-text,
.cid-qCEZyU29Gp blockquote {
  color: #767676;
}
.cid-qCEZyU29Gp .mbr-text P {
  color: #232323;
}
.cid-qGh2l2XAeH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGh2l2XAeH H3 {
  color: #465052;
}
.cid-qGh2l2XAeH P {
  color: #232323;
  text-align: left;
}
.cid-qGh2l2XAeH H1 {
  color: #465052;
}
.cid-qGh2l2XAeH I {
  color: #232323;
}
.cid-qGh3RR5TgV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qGh3RR5TgV .mbr-text,
.cid-qGh3RR5TgV blockquote {
  color: #767676;
}
.cid-qGh3RR5TgV .mbr-text {
  color: #232323;
}
.cid-qGh3qyvm3D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGh3qyvm3D H3 {
  color: #465052;
}
.cid-qGh3qyvm3D P {
  color: #232323;
  text-align: left;
}
.cid-qGh3qyvm3D H1 {
  color: #465052;
}
.cid-qGh3qyvm3D I {
  color: #232323;
}
.cid-qGh8DMPbWB {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGh8DMPbWB .mbr-text,
.cid-qGh8DMPbWB blockquote {
  color: #767676;
}
.cid-qGh8DMPbWB .mbr-text DIV {
  color: #232323;
}
.cid-qGh8DMPbWB .mbr-text {
  color: #232323;
}
.cid-qGFTj4YAtS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGFTj4YAtS H3 {
  color: #465052;
  text-align: left;
}
.cid-qGFTj4YAtS P {
  color: #232323;
  text-align: left;
}
.cid-qGFTj4YAtS H1 {
  color: #465052;
}
.cid-qGFTYKUyPq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGFTYKUyPq H3 {
  color: #465052;
  text-align: left;
}
.cid-qGFTYKUyPq P {
  color: #232323;
  text-align: left;
}
.cid-qGFTYKUyPq H1 {
  color: #465052;
}
.cid-qGFWl3m0Oy {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGFWl3m0Oy .mbr-text,
.cid-qGFWl3m0Oy blockquote {
  color: #767676;
}
.cid-qGFWl3m0Oy .mbr-text B {
  color: #232323;
}
.cid-qGFWl3m0Oy .mbr-text I {
  color: #465052;
}
.cid-qGFWl3m0Oy .mbr-text FONT {
  color: #232323;
}
.cid-qGG0dPWJoC {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qGG0dPWJoC .mbr-text,
.cid-qGG0dPWJoC blockquote {
  color: #767676;
}
.cid-qGG0dPWJoC .mbr-text B {
  color: #232323;
}
.cid-qGG0dPWJoC .mbr-text I {
  color: #465052;
}
.cid-qGG0dPWJoC .mbr-text FONT {
  color: #232323;
}
.cid-qGh9E3viri {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qGh9E3viri .mbr-text,
.cid-qGh9E3viri blockquote {
  color: #767676;
}
.cid-qGh9E3viri .mbr-text B {
  color: #232323;
}
.cid-qGh9E3viri .mbr-text I {
  color: #465052;
}
.cid-qCvdyuSKr6 {
  padding-top: 90px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qDcT1dFPCN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCF7hzhBZp {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCF7hzhBZp H3 {
  color: #465052;
  text-align: left;
}
.cid-qCF7hzhBZp P {
  color: #232323;
  text-align: left;
}
.cid-qCF7hzhBZp H1 {
  color: #465052;
  text-align: left;
}
.cid-qCF7qDrcuS {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCF7qDrcuS .mbr-text,
.cid-qCF7qDrcuS blockquote {
  color: #767676;
}
.cid-qCF7qDrcuS .mbr-text P {
  color: #232323;
}
.cid-qCF7rwd7R7 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCF7rwd7R7 .mbr-text,
.cid-qCF7rwd7R7 blockquote {
  color: #767676;
}
.cid-qCF7rwd7R7 .mbr-text P {
  color: #232323;
}
.cid-qCF7s73CdD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCF7s73CdD .mbr-text,
.cid-qCF7s73CdD blockquote {
  color: #767676;
}
.cid-qCF7s73CdD .mbr-text P {
  color: #232323;
}
.cid-qCF7sFXDQm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCF7sFXDQm .mbr-text,
.cid-qCF7sFXDQm blockquote {
  color: #767676;
}
.cid-qCF7sFXDQm .mbr-text P {
  color: #232323;
}
.cid-qCF7tfICrB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCF7tfICrB .mbr-text,
.cid-qCF7tfICrB blockquote {
  color: #767676;
}
.cid-qCF7tfICrB .mbr-text P {
  color: #232323;
}
.cid-qCF7tHvxBY {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDcThc1zeR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZqCGAz84 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCZqCGAz84 H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZqCGAz84 P {
  color: #232323;
  text-align: left;
}
.cid-qCZqCGAz84 H1 {
  color: #232323;
}
.cid-qCZrorWxHA {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCZrorWxHA H2 {
  color: #465052;
}
.cid-qCZrorWxHA .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZrorWxHA .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCJiY7NZQG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCJiY7NZQG .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCJiY7NZQG .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCJiY7NZQG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCJiY7NZQG .inner-container {
    width: 100% !important;
  }
}
.cid-qCJqbklOgA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCJqbklOgA .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qCJqbklOgA .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-qCJqbklOgA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qCJqbklOgA .inner-container {
    width: 100% !important;
  }
}
.cid-qCJlSBTBZH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCJlSBTBZH H2 {
  color: #465052;
}
.cid-qCJlSBTBZH .mbr-section-subtitle {
  color: #465052;
}
.cid-qCJlSBTBZH .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCJjdirnB3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcTzeij5H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDgQMTBPbe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDgQMTBPbe H3 {
  color: #cc2952;
  text-align: left;
}
.cid-qDgQMTBPbe P {
  color: #232323;
}
.cid-qDgQMTBPbe H1 {
  color: #465052;
}
.cid-qDgQMTBPbe DIV {
  color: #cc2952;
}
.cid-qDgQMTBPbe B {
  color: #7f1933;
}
.cid-qDzt3lWjRQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDzt3lWjRQ .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCJtaUjndW {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCJtaUjndW H3 {
  color: #465052;
  text-align: left;
}
.cid-qCJtaUjndW P {
  color: #232323;
  text-align: left;
}
.cid-qCJtaUjndW H1 {
  color: #465052;
}
.cid-qCKvAAsFDQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCKvAAsFDQ H2 {
  color: #465052;
}
.cid-qCKvAAsFDQ .mbr-section-subtitle {
  color: #465052;
}
.cid-qCKvAAsFDQ .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKw6sVMc8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCKw6sVMc8 H3 {
  color: #465052;
  text-align: left;
}
.cid-qCKw6sVMc8 P {
  color: #232323;
  text-align: left;
}
.cid-qCKw6sVMc8 H1 {
  color: #465052;
}
.cid-qCKxf9KaPo {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCKxf9KaPo H2 {
  color: #465052;
}
.cid-qCKxf9KaPo .mbr-section-subtitle {
  color: #465052;
}
.cid-qCKxf9KaPo .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKy0Qo0oW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCKy0Qo0oW H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKy0Qo0oW P {
  color: #232323;
  text-align: left;
}
.cid-qCKy0Qo0oW H1 {
  color: #465052;
}
.cid-qCKyGY5fam {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCKyGY5fam H2 {
  color: #465052;
}
.cid-qCKyGY5fam .mbr-section-subtitle {
  color: #465052;
}
.cid-qCKyGY5fam .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKzjvJsKz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCKzjvJsKz H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKzjvJsKz P {
  color: #232323;
  text-align: left;
}
.cid-qCKzjvJsKz H1 {
  color: #465052;
}
.cid-qCKAfAaL1z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCKAfAaL1z H2 {
  color: #465052;
}
.cid-qCKAfAaL1z .mbr-section-subtitle {
  color: #465052;
}
.cid-qCKAfAaL1z .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKDn4LOHq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCKDn4LOHq H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKDn4LOHq P {
  color: #232323;
  text-align: left;
}
.cid-qCKDn4LOHq H1 {
  color: #465052;
  text-align: center;
}
.cid-qCKCWjgAOt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCKCWjgAOt H2 {
  color: #465052;
  text-align: left;
}
.cid-qCKCWjgAOt .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCKCWjgAOt .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKGtMTX8v {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCKGtMTX8v H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKGtMTX8v P {
  color: #232323;
  text-align: left;
}
.cid-qCKGtMTX8v H1 {
  color: #465052;
  text-align: center;
}
.cid-qCKHOTFc9M {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCKHOTFc9M H2 {
  color: #465052;
  text-align: left;
}
.cid-qCKHOTFc9M .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qCKHOTFc9M .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCKIxoJwhT {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qCKIxoJwhT H3 {
  color: #465052;
  text-align: center;
}
.cid-qCKIxoJwhT P {
  color: #232323;
  text-align: left;
}
.cid-qCKIxoJwhT H1 {
  color: #465052;
  text-align: center;
}
.cid-qCKJkuCYpo {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #dadad7;
}
.cid-qCUPR5SPWP {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCUPR5SPWP H3 {
  color: #465052;
}
.cid-qCUPR5SPWP P {
  color: #232323;
  text-align: left;
}
.cid-qCUPR5SPWP H1 {
  color: #465052;
}
.cid-qCURjc96OS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCURjc96OS H3 {
  color: #465052;
}
.cid-qCURjc96OS P {
  color: #232323;
  text-align: left;
}
.cid-qCURjc96OS H1 {
  color: #465052;
}
.cid-qCV2s5gd6Y {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCVfmch7Md {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qCVfmch7Md H3 {
  color: #465052;
}
.cid-qCVfmch7Md P {
  color: #232323;
  text-align: left;
}
.cid-qCVfmch7Md H1 {
  color: #465052;
}
.cid-qCVgeJDvO8 {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCWlXvBj3z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCWlXvBj3z H2 {
  color: #465052;
}
.cid-qCWlXvBj3z .mbr-section-subtitle {
  color: #465052;
}
.cid-qCWlXvBj3z .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCWm3ZNoR6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCWwg59ijJ {
  padding-top: 135px;
  padding-bottom: 105px;
  background-color: #dadad7;
}
.cid-qCWwg59ijJ H3 {
  color: #465052;
}
.cid-qCWwg59ijJ P {
  color: #232323;
  text-align: left;
}
.cid-qCWwg59ijJ H1 {
  color: #465052;
}
.cid-qCWvk2pDOd {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCWdl5RJB0 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qCWdl5RJB0 H3 {
  color: #465052;
}
.cid-qCWdl5RJB0 P {
  color: #232323;
  text-align: left;
}
.cid-qCWdl5RJB0 H1 {
  color: #465052;
}
.cid-qCWdYw9tMM {
  padding-top: 105px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qCZHOVwYZj {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qCZHOVwYZj H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZHOVwYZj P {
  color: #232323;
  text-align: left;
}
.cid-qCZHOVwYZj H1 {
  color: #232323;
}
.cid-qCZHQ9T2tw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCZIGnEeOd {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZIGnEeOd H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZIGnEeOd P {
  color: #232323;
  text-align: left;
}
.cid-qCZIGnEeOd H1 {
  color: #465052;
}
.cid-qD0cL34RuK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qD0cL34RuK .mbr-text,
.cid-qD0cL34RuK blockquote {
  color: #767676;
}
.cid-qD0cL34RuK .mbr-text B {
  color: #232323;
}
.cid-qD0cL34RuK .mbr-text P {
  color: #232323;
}
.cid-qCZJc2GzCh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZJc2GzCh H2 {
  color: #465052;
}
.cid-qCZJc2GzCh .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZJc2GzCh .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZJPJPL4u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZJPJPL4u H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZJPJPL4u P {
  color: #232323;
  text-align: left;
}
.cid-qCZJPJPL4u H1 {
  color: #465052;
}
.cid-qCZJc7WfM5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZJc7WfM5 H2 {
  color: #465052;
}
.cid-qCZJc7WfM5 .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZJc7WfM5 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZKIjqHjX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZKIjqHjX H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZKIjqHjX P {
  color: #232323;
  text-align: left;
}
.cid-qCZKIjqHjX H1 {
  color: #465052;
}
.cid-qCZL5gkKyW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qCZL5gkKyW H2 {
  color: #465052;
}
.cid-qCZL5gkKyW .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZL5gkKyW .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZMcHUjOV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCZMcHUjOV H2 {
  color: #465052;
}
.cid-qCZMcHUjOV .mbr-section-subtitle {
  color: #465052;
}
.cid-qCZMcHUjOV .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZO4lWw8r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCZO4lWw8r H2 {
  color: #465052;
}
.cid-qCZO4lWw8r .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZO4lWw8r .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZOsWx81P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qCZOsWx81P .counter-container {
  color: #767676;
}
.cid-qCZOsWx81P .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-qCZOsWx81P .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-qCZOsWx81P .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
}
.cid-qCZOsWx81P .counter-container ol li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-qCZOsWx81P .mbr-text LI {
  color: #232323;
}
.cid-qCZRNwAhMa {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qCZRNwAhMa .mbr-text,
.cid-qCZRNwAhMa blockquote {
  color: #767676;
}
.cid-qCZRNwAhMa .mbr-text DIV {
  color: #232323;
}
.cid-qCZRNwAhMa .mbr-text B {
  color: #465052;
}
.cid-qCZRNwAhMa .mbr-text P {
  color: #465052;
}
.cid-qCZSpsFrEF {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qCZSpsFrEF H3 {
  color: #232323;
  text-align: center;
}
.cid-qCZSpsFrEF P {
  color: #232323;
  text-align: left;
}
.cid-qCZSpsFrEF H1 {
  color: #465052;
}
.cid-qCZTErJpmW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qCZTErJpmW H2 {
  color: #465052;
}
.cid-qCZTErJpmW .mbr-section-subtitle {
  color: #232323;
}
.cid-qCZTErJpmW .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-qD00PZRQ5c {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qD00PZRQ5c H2 {
  color: #465052;
}
.cid-qD00PZRQ5c .mbr-section-subtitle {
  color: #232323;
}
.cid-qD00PZRQ5c .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qCZIGPAfAc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qD06ACAnhr {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qD06ACAnhr H2 {
  color: #465052;
}
.cid-qD06ACAnhr .mbr-section-subtitle {
  color: #232323;
}
.cid-qD06ACAnhr .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qD0aUEAQnP {
  background-color: #dadad7;
}
.cid-qD0aUEAQnP H3 {
  color: #232323;
  text-align: center;
}
.cid-qD0aUEAQnP P {
  color: #232323;
  text-align: left;
}
.cid-qD0aUEAQnP H1 {
  color: #232323;
}
.cid-qD37QP0smR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD37QP0smR H3 {
  color: #232323;
  text-align: left;
}
.cid-qD37QP0smR P {
  color: #232323;
  text-align: left;
}
.cid-qD37QP0smR H1 {
  color: #465052;
}
.cid-qD3skqBGLy {
  background-color: #dadad7;
}
.cid-qD3skqBGLy H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3skqBGLy P {
  color: #232323;
  text-align: left;
}
.cid-qD3skqBGLy H1 {
  color: #465052;
}
.cid-qD3KdC14aX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qD3KdC14aX H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3KdC14aX P {
  color: #232323;
  text-align: left;
}
.cid-qD3KdC14aX H1 {
  color: #465052;
}
.cid-qD3Udcs2fb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD3Udcs2fb H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3Udcs2fb P {
  color: #232323;
  text-align: left;
}
.cid-qD3Udcs2fb H1 {
  color: #465052;
}
.cid-qD3PxyKf0j {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD3PxyKf0j H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3PxyKf0j P {
  color: #232323;
  text-align: left;
}
.cid-qD3PxyKf0j H1 {
  color: #465052;
}
.cid-qD3VZKWyfx {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qD3VZKWyfx H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3VZKWyfx P {
  color: #232323;
  text-align: left;
}
.cid-qD3VZKWyfx H1 {
  color: #465052;
}
.cid-qD3WHm6eAE {
  background-color: #dadad7;
}
.cid-qD3WHm6eAE H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3WHm6eAE P {
  color: #232323;
  text-align: left;
}
.cid-qD3WHm6eAE H1 {
  color: #465052;
}
.cid-qD3ZIdOcA8 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD3ZIdOcA8 H3 {
  color: #232323;
  text-align: left;
}
.cid-qD3ZIdOcA8 P {
  color: #232323;
  text-align: left;
}
.cid-qD3ZIdOcA8 H1 {
  color: #465052;
}
.cid-qD42nTkarl {
  background-color: #dadad7;
}
.cid-qD42nTkarl H3 {
  color: #232323;
  text-align: left;
}
.cid-qD42nTkarl P {
  color: #232323;
  text-align: left;
}
.cid-qD42nTkarl H1 {
  color: #465052;
}
.cid-qD5JPEBSJ2 {
  background-color: #dadad7;
}
.cid-qD5JPEBSJ2 H3 {
  color: #232323;
  text-align: left;
}
.cid-qD5JPEBSJ2 P {
  color: #232323;
  text-align: left;
}
.cid-qD5JPEBSJ2 H1 {
  color: #465052;
  text-align: left;
}
.cid-qD5JPEBSJ2 SPAN {
  color: #232323;
}
.cid-qD5MOMx2Cb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qD5MOMx2Cb H3 {
  color: #232323;
  text-align: left;
}
.cid-qD5MOMx2Cb P {
  color: #232323;
  text-align: left;
}
.cid-qD5MOMx2Cb H1 {
  color: #465052;
  text-align: center;
}
.cid-qD5MOMx2Cb SPAN {
  color: #232323;
}
.cid-qDbXE86skw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDbXE86skw H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbXE86skw P {
  color: #232323;
  text-align: left;
}
.cid-qDbXE86skw H1 {
  color: #465052;
}
.cid-qDcChqsAZp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qDcChqsAZp .mbr-section-subtitle {
  color: #767676;
}
.cid-qDcChqsAZp H2 {
  text-align: left;
}
.cid-qD63JIVa5E {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD63JIVa5E H3 {
  color: #232323;
  text-align: left;
}
.cid-qD63JIVa5E P {
  color: #232323;
  text-align: left;
}
.cid-qD63JIVa5E H1 {
  color: #465052;
  text-align: center;
}
.cid-qD63JIVa5E SPAN {
  color: #232323;
}
.cid-qD81CSZvvT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qD81CSZvvT H3 {
  color: #465052;
}
.cid-qD81CSZvvT P {
  color: #232323;
  text-align: left;
}
.cid-qD81CSZvvT H1 {
  color: #465052;
}
.cid-qD8gDJscJ4 {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qD8gd1564O {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qD8gd1564O H3 {
  color: #465052;
}
.cid-qD8gd1564O P {
  color: #232323;
  text-align: left;
}
.cid-qD8gd1564O H1 {
  color: #465052;
}
.cid-qDjkrNpkMs {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDjkrNpkMs H2 {
  color: #465052;
}
.cid-qDjkrNpkMs .mbr-section-subtitle {
  color: #465052;
}
.cid-qDjkrNpkMs .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qD8ge0xXCi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qD8ge0xXCi H2 {
  color: #465052;
  text-align: center;
}
.cid-qD8ge0xXCi .mbr-section-subtitle {
  color: #465052;
}
.cid-qD8ge0xXCi .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qD8ghhpDPc {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qD8ghhpDPc H3 {
  color: #232323;
  text-align: center;
}
.cid-qD8ghhpDPc P {
  color: #232323;
  text-align: left;
}
.cid-qD8ghhpDPc H1 {
  color: #465052;
}
.cid-qDezMfxaXr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDaN7icwdC {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDaN7icwdC H3 {
  color: #232323;
  text-align: center;
}
.cid-qDaN7icwdC P {
  color: #232323;
  text-align: left;
}
.cid-qDaN7icwdC H1 {
  color: #465052;
}
.cid-qDeyIXOLNR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDaQ4laiA6 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDaQ4laiA6 H3 {
  color: #232323;
  text-align: center;
}
.cid-qDaQ4laiA6 P {
  color: #232323;
  text-align: left;
}
.cid-qDaQ4laiA6 H1 {
  color: #465052;
}
.cid-qDaQ4laiA6 I {
  color: #232323;
}
.cid-qDb8lndCkC {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDb8lndCkC H3 {
  color: #232323;
  text-align: center;
}
.cid-qDb8lndCkC P {
  color: #232323;
  text-align: left;
}
.cid-qDb8lndCkC H1 {
  color: #465052;
}
.cid-qDb8lndCkC I {
  color: #232323;
}
.cid-qDaS8xpW3H {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDaS8xpW3H H3 {
  color: #232323;
  text-align: center;
}
.cid-qDaS8xpW3H P {
  color: #232323;
  text-align: left;
}
.cid-qDaS8xpW3H H1 {
  color: #465052;
}
.cid-qDaS8xpW3H I {
  color: #232323;
}
.cid-qDaUamnEhq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDaUamnEhq H2 {
  color: #465052;
}
.cid-qDaUamnEhq .mbr-section-subtitle {
  color: #465052;
}
.cid-qDaUamnEhq .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDhymPInrR {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qDhymPInrR H2 {
  color: #465052;
}
.cid-qDhymPInrR .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-qDhymPInrR .mbr-text {
  color: #232323;
}
.cid-qDhymPInrR .mbr-section-subtitle DIV {
  color: #7f1933;
}
.cid-qDaYaQ8XCR {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDaYaQ8XCR H3 {
  color: #232323;
  text-align: center;
}
.cid-qDaYaQ8XCR P {
  color: #232323;
  text-align: left;
}
.cid-qDaYaQ8XCR H1 {
  color: #465052;
}
.cid-qDaYaQ8XCR I {
  color: #232323;
}
.cid-qDeH8YzI5t {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDb1j2MGQI {
  background-color: #dadad7;
}
.cid-qDb1j2MGQI H3 {
  color: #232323;
  text-align: center;
}
.cid-qDb1j2MGQI P {
  color: #232323;
  text-align: left;
}
.cid-qDb1j2MGQI H1 {
  color: #465052;
}
.cid-qDb1j2MGQI I {
  color: #232323;
}
.cid-qDbdujZNEM {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDbdujZNEM H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbdujZNEM P {
  color: #232323;
  text-align: left;
}
.cid-qDbdujZNEM H1 {
  color: #465052;
}
.cid-qDbdujZNEM I {
  color: #232323;
}
.cid-qHDVSNjXsD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qHDVSNjXsD H2 {
  color: #465052;
}
.cid-qHDVSNjXsD .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qHDVSNjXsD .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDbfbOyVrA {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDbfbOyVrA H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbfbOyVrA P {
  color: #232323;
  text-align: left;
}
.cid-qDbfbOyVrA H1 {
  color: #465052;
}
.cid-qDbfbOyVrA I {
  color: #232323;
}
.cid-qDeGWywfpm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qGgAHyxuXw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qGgAHyxuXw H3 {
  color: #465052;
}
.cid-qGgAHyxuXw P {
  color: #232323;
  text-align: left;
}
.cid-qGgAHyxuXw H1 {
  color: #465052;
}
.cid-qGgAHyxuXw I {
  color: #232323;
}
.cid-qDbgc6wo0g {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDbgc6wo0g H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbgc6wo0g P {
  color: #232323;
  text-align: left;
}
.cid-qDbgc6wo0g H1 {
  color: #465052;
}
.cid-qDbgc6wo0g I {
  color: #232323;
}
.cid-qHDvGguNYd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qHDvGguNYd H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDvGguNYd P {
  color: #232323;
  text-align: left;
}
.cid-qHDvGguNYd H1 {
  color: #465052;
}
.cid-qHDBRLvIOm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qHDBRLvIOm H2 {
  color: #465052;
}
.cid-qHDBRLvIOm .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qHDBRLvIOm .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qHDDl29pFZ {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qHDDl29pFZ H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDDl29pFZ P {
  color: #232323;
  text-align: left;
}
.cid-qHDDl29pFZ H1 {
  color: #465052;
}
.cid-qDbW5msAmO {
  background-color: #dadad7;
}
.cid-qDbW5msAmO H3 {
  color: #232323;
  text-align: center;
}
.cid-qDbW5msAmO P {
  color: #232323;
  text-align: left;
}
.cid-qDbW5msAmO H1 {
  color: #465052;
}
.cid-qDcazeKVmd {
  background-color: #dadad7;
}
.cid-qDcazeKVmd H3 {
  color: #232323;
  text-align: center;
}
.cid-qDcazeKVmd P {
  color: #232323;
  text-align: left;
}
.cid-qDcazeKVmd H1 {
  color: #465052;
}
.cid-qDAZFXyIll {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDAZFXyIll H2 {
  color: #465052;
  text-align: center;
}
.cid-qDAZFXyIll .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDAZFXyIll .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDukcom7GU {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDukcom7GU H3 {
  color: #232323;
  text-align: left;
}
.cid-qDukcom7GU P {
  color: #232323;
  text-align: left;
}
.cid-qDukcom7GU H1 {
  color: #465052;
}
.cid-qG8Y62bkJ9 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qG8Y62bkJ9 H2 {
  color: #465052;
}
.cid-qG8Y62bkJ9 .mbr-section-subtitle {
  color: #465052;
}
.cid-qG8Y62bkJ9 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qG8YdheYAY {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDcLlAiyNo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDcJuw5oLk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qDcJuw5oLk H3 {
  color: #232323;
  text-align: left;
}
.cid-qDcJuw5oLk P {
  color: #232323;
  text-align: left;
}
.cid-qDcJuw5oLk H1 {
  color: #465052;
}
.cid-qDeIRfiGzS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qDeIRfiGzS H2 {
  color: #465052;
}
.cid-qDeIRfiGzS .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDeIRfiGzS .mbr-text {
  color: #232323;
}
.cid-qDeIS9sNml {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDeIS9sNml H2 {
  color: #465052;
}
.cid-qDeIS9sNml .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDeIS9sNml .mbr-text {
  color: #232323;
}
.cid-qDeITTzYjB {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-qDeITTzYjB H2 {
  color: #465052;
}
.cid-qDeITTzYjB .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDeITTzYjB .mbr-text {
  color: #232323;
}
.cid-qDeIZh1mRL {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #dadad7;
}
.cid-qDejn7LXhO {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qDejn7LXhO H3 {
  color: #232323;
  text-align: left;
}
.cid-qDejn7LXhO P {
  color: #232323;
  text-align: left;
}
.cid-qDejn7LXhO H1 {
  color: #465052;
}
.cid-qDgP9SyQnx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDgP9SyQnx H3 {
  color: #cc2952;
  text-align: left;
}
.cid-qDgP9SyQnx P {
  color: #232323;
}
.cid-qDgP9SyQnx H1 {
  color: #465052;
}
.cid-qDgP9SyQnx DIV {
  color: #cc2952;
}
.cid-qDgP9SyQnx B {
  color: #7f1933;
}
.cid-qDgPy2Dnf9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDgRZEJzKp {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qDgRZEJzKp H3 {
  color: #cc2952;
  text-align: left;
}
.cid-qDgRZEJzKp P {
  color: #232323;
}
.cid-qDgRZEJzKp H1 {
  color: #465052;
}
.cid-qDgRZEJzKp DIV {
  color: #cc2952;
}
.cid-qDgRZEJzKp B {
  color: #7f1933;
}
.cid-qDgS26G0en {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDpzwHbNv2 {
  background-color: #dadad7;
}
.cid-qDpzwHbNv2 H3 {
  color: #232323;
  text-align: left;
}
.cid-qDpzwHbNv2 P {
  color: #232323;
  text-align: left;
}
.cid-qDpzwHbNv2 H1 {
  color: #465052;
}
.cid-qDuJnwW0tY {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-qDuJnwW0tY H3 {
  color: #465052;
}
.cid-qDuJnwW0tY P {
  color: #232323;
  text-align: left;
}
.cid-qDuJnwW0tY H1 {
  color: #465052;
}
.cid-qDuJosD9QP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDATHZnI0F {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDATHZnI0F H2 {
  color: #465052;
  text-align: center;
}
.cid-qDATHZnI0F .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDATHZnI0F .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDATOunyK1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDAUROQ4sr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-qDAUROQ4sr H2 {
  color: #465052;
  text-align: center;
}
.cid-qDAUROQ4sr .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDAUROQ4sr .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDAUROQ4sr .mbr-section-subtitle DIV {
  color: #232323;
}
.cid-qG967QbITf {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qG967QbITf H2 {
  color: #465052;
}
.cid-qG967QbITf .mbr-section-subtitle {
  color: #465052;
}
.cid-qG967QbITf .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDAUT3z08H {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDAWq1jBNg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDAWq1jBNg H2 {
  color: #465052;
  text-align: center;
}
.cid-qDAWq1jBNg .mbr-section-subtitle {
  color: #465052;
  text-align: left;
}
.cid-qDAWq1jBNg .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qDAX2pHJJU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qDRuDyXJuw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qDRuDyXJuw H3 {
  color: #465052;
}
.cid-qDRuDyXJuw P {
  color: #232323;
  text-align: left;
}
.cid-qDRuDyXJuw H1 {
  color: #465052;
}
.cid-qDRuGRFVnc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qG4qCt8Dfa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-qG4qCt8Dfa H2 {
  color: #465052;
}
.cid-qG4qCt8Dfa .mbr-section-subtitle {
  color: #465052;
}
.cid-qG4qCt8Dfa .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-qG4rAlWNRo {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #dadad7;
}
.cid-qG8MNcefdt {
  background-color: #dadad7;
}
.cid-qG8MNcefdt H1 {
  color: #465052;
}
.cid-qG8MNcefdt H3 {
  color: #465052;
  text-align: left;
}
.cid-qG8MNcefdt .mbr-text,
.cid-qG8MNcefdt .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-qG8Umhq0cA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qGMcDatDoS {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #dadad7;
}
.cid-qGMcDatDoS H3 {
  color: #232323;
  text-align: left;
}
.cid-qGMcDatDoS P {
  color: #232323;
  text-align: left;
}
.cid-qGMcDatDoS H1 {
  color: #465052;
}
.cid-qHcCtmOuMq {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-qHcCtmOuMq H3 {
  color: #232323;
  text-align: center;
}
.cid-qHcCtmOuMq P {
  color: #232323;
  text-align: left;
}
.cid-qHcCtmOuMq H1 {
  color: #465052;
}
.cid-qHcMjgcwHw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-qHcO6sr3Ty {
  background-color: #dadad7;
}
.cid-qHcO6sr3Ty H3 {
  color: #232323;
  text-align: center;
}
.cid-qHcO6sr3Ty P {
  color: #232323;
  text-align: left;
}
.cid-qHcO6sr3Ty H1 {
  color: #465052;
}
.cid-qHcO7Sz6V7 {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #dadad7;
}
.cid-qHDjXNsv78 {
  background-color: #dadad7;
}
.cid-qHDjXNsv78 H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDjXNsv78 P {
  color: #232323;
  text-align: left;
}
.cid-qHDjXNsv78 H1 {
  color: #465052;
}
.cid-qHDsQrZZpZ {
  background-color: #dadad7;
}
.cid-qHDsQrZZpZ H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDsQrZZpZ P {
  color: #232323;
  text-align: left;
}
.cid-qHDsQrZZpZ H1 {
  color: #465052;
}
.cid-qHDTbtRrva {
  background-color: #dadad7;
}
.cid-qHDTbtRrva H3 {
  color: #232323;
  text-align: right;
}
.cid-qHDTbtRrva P {
  color: #232323;
  text-align: left;
}
.cid-qHDTbtRrva H1 {
  color: #465052;
}
.cid-qHERgaVcii {
  background-color: #dadad7;
}
.cid-qHERgaVcii H3 {
  color: #232323;
  text-align: left;
}
.cid-qHERgaVcii P {
  color: #232323;
  text-align: left;
}
.cid-qHERgaVcii H1 {
  color: #465052;
}
.cid-tqcvkbK3Z5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-tqcvkbK3Z5 .mbr-text,
.cid-tqcvkbK3Z5 blockquote {
  color: #767676;
}
.cid-tqcvkbK3Z5 .mbr-text P {
  color: #465052;
  text-align: left;
}
.cid-tqcvkbK3Z5 .mbr-text {
  color: #465052;
}
.cid-tqcvkbK3Z5 a:link {
  background-color: #d9d9d7;
}
.cid-tqcvkbK3Z5 a:hover {
  border-radius: 25px;
  padding: 2px 3px 4px 0px;
  background-color: #f0f0f0;
  transition: 1s ease;
}
.cid-tqcvkbK3Z5 a:not(:hover) {
  background-color: #d9d9d7 ;
  transition: 1s ease;
}
.cid-tqcvkbK3Z5 .buttopfix {
  width: 39px;
  font-size: 155%;
  text-align: center;
  color: #777;
  border: 2px solid #dadad7;
  border-radius: 25px;
  padding: 0 0 7px 0;
  background: #cbc;
  position: fixed;
  z-index: 1;
  top: 70vh;
  right: 10%;
  opacity: .5;
}
.cid-tqcvkbK3Z5 .buttopfix:hover {
  color: #ddd;
  border: 2px solid #ddd;
  background: #999;
  opacity: .8;
  transition: .5s ease;
}
.cid-tqcvkbK3Z5 .buttopfix:not(:hover) {
  transition: 2s ease;
}
.cid-tqnFceRkFs {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-tqnFceRkFs .mbr-text,
.cid-tqnFceRkFs blockquote {
  color: #767676;
}
.cid-tqnFceRkFs .mbr-text P {
  text-align: left;
  color: #465052;
}
.cid-tqnF8D76hX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dadad7;
}
.cid-tqnF8D76hX .mbr-text,
.cid-tqnF8D76hX blockquote {
  color: #767676;
}
.cid-tqnF8D76hX .mbr-text P {
  text-align: left;
  color: #465052;
}
.cid-tqnF1xvN6p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-tqnF1xvN6p .mbr-text,
.cid-tqnF1xvN6p blockquote {
  color: #767676;
}
.cid-tqnF1xvN6p .mbr-text P {
  color: #465052;
  text-align: left;
}
.cid-tqnF1xvN6p .mbr-text {
  color: #465052;
}
.cid-tqnF00h4So {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-tqnF00h4So .mbr-text,
.cid-tqnF00h4So blockquote {
  color: #767676;
}
.cid-tqnF00h4So .mbr-text P {
  color: #465052;
  text-align: left;
}
.cid-tqnF00h4So .mbr-text {
  color: #465052;
  text-align: left;
}
.cid-tqnF3baXst {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #dadad7;
}
.cid-tqnF3baXst .mbr-text,
.cid-tqnF3baXst blockquote {
  color: #767676;
}
.cid-tqnF3baXst .mbr-text P {
  color: #465052;
  text-align: left;
}
.cid-tqnF3baXst .mbr-text {
  color: #465052;
  text-align: right;
}
.cid-tqnEYpygTp {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #dadad7;
}
.cid-tqnEYpygTp .mbr-text,
.cid-tqnEYpygTp blockquote {
  color: #767676;
}
.cid-tqnEYpygTp .mbr-text P {
  color: #465052;
  text-align: right;
}
.cid-tqnEYpygTp .mbr-text {
  color: #465052;
  text-align: left;
}
.cid-tqnFf0YC1F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-tqnFf0YC1F .mbr-text,
.cid-tqnFf0YC1F blockquote {
  color: #767676;
}
.cid-tqnFf0YC1F .mbr-text P {
  text-align: left;
  color: #465052;
}
.cid-tqnFg8iHEv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-tqnFg8iHEv .mbr-text,
.cid-tqnFg8iHEv blockquote {
  color: #767676;
}
.cid-tqnFg8iHEv .mbr-text P {
  text-align: left;
  color: #465052;
}
.cid-tqnFidZfLZ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-tqnFidZfLZ .line {
  background-color: #f9f295;
  color: #f9f295;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqnFidZfLZ .section-text {
  padding: 2rem 0;
  color: #5b686b;
}
.cid-tqnFidZfLZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tqnFidZfLZ .inner-container {
    width: 100% !important;
  }
}
.cid-tqnTGsSTLW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #dadad7;
}
.cid-tqnTGsSTLW .mbr-text,
.cid-tqnTGsSTLW blockquote {
  color: #767676;
}
.cid-tqnTGsSTLW .mbr-text P {
  text-align: left;
  color: #465052;
}
.cid-tqnTGsSTLW .buttopfix {
  font-size: 211%;
  text-align: center;
  color: #777;
  border: 2px solid #dadad7;
  border-radius: 45px;
  padding: 0 15px 7px 15px;
  background: #ccc;
  box-shadow: 0 0 2px 0 #aaa inset;
  position: fixed;
  z-index: 1;
  top: 70vh;
  right: 7%;
  opacity: .5;
}
.cid-tqnTGsSTLW .buttopfix:hover {
  color: #ddd;
  border: 2px solid #ddd;
  box-shadow: 0 0 11px 0 #ddd inset;
  background: #aaa;
  opacity: .8;
  transition: .5s ease;
}
.cid-tqnTGsSTLW .buttopfix:not(:hover) {
  transition: 2s ease;
}
.cid-tqnTGsSTLW .mbr-text {
  text-align: center;
}
.cid-tqcuOTxqwG {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #dadad7;
}
.cid-tqcweUMj6k {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #dadad7;
}
.cid-tqcweUMj6k .mbr-text,
.cid-tqcweUMj6k blockquote {
  color: #767676;
}
.cid-tqcweUMj6k .mbr-text P {
  text-align: left;
  color: #465052;
}
