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





body {
  font-family: Poppins;
  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: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  position: relative;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: normal;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 100%;
  height: 100%;
  transition: border-radius 0.3s;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  position: absolute;
  left: 0%;
  top: 0%;
  opacity: 1;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.note-popover .btn:after {
  display: none;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #66458e !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !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: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,.8s;
  transition-timing-function: ease-in-out;
}
.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;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #66458e;
  border-color: #66458e;
  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: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#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.1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.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: #66458e;
  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 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  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;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #66458e;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #66458e;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
/* Footer */
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-qUcgRxlXg5 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #f34497;
}
.cid-qUcgRxlXg5 .mbr-overlay {
  background: #879a9f;
}
.cid-qUcgRxlXg5 .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
  text-align: left;
}
.cid-qUcgRxlXg5 .mbr-section-subtitle {
  color: #232323;
}
.cid-qUcgRxlXg5 .mbr-section-subtitle B {
  color: #ffffff;
}
.cid-qUcAcoT41X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-qUcAcoT41X .counter-container {
  color: #767676;
}
.cid-qUcAcoT41X .counter-container ul {
  margin-bottom: 0;
}
.cid-qUcAcoT41X .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-qUcAcoT41X .mbr-text UL {
  color: #ffffff;
}
.cid-qUdo56dSa5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUdo56dSa5 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUdo56dSa5 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUdo56dSa5 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUdo56dSa5 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUdo56dSa5 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUdo56dSa5 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUdo56dSa5 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUdo56dSa5 .btn-social {
  border: none !important;
}
.cid-qUdo56dSa5 [class^="socicon-"]:before,
.cid-qUdo56dSa5 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUdo56dSa5 .btn {
    font-size: 20px !important;
  }
}
.cid-qUcBO5zV2y {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qUcBO5zV2y .container-fluid {
  padding: 0 3rem;
}
.cid-qUcBO5zV2y .image-block {
  position: relative;
  margin: auto;
}
.cid-qUcBO5zV2y .image-block img {
  width: 100%;
}
.cid-qUcBO5zV2y .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-qUcBO5zV2y .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-qUcBO5zV2y .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-qUcBO5zV2y .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUcD9Edltu {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUcD9Edltu .mbr-section-subtitle {
  color: #f34497;
}
.cid-qUcDxgoLsp {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUcErHFLux {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUcErHFLux .mbr-section-subtitle {
  color: #767676;
}
.cid-qUcEmk1DDa {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUcEY2hFnH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f34497;
}
.cid-qUcEY2hFnH .container-fluid {
  padding: 0 3rem;
}
.cid-qUcEY2hFnH .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qUcEY2hFnH svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qUcEY2hFnH .signature > span {
  color: #66458e;
}
@media (max-width: 767px) {
  .cid-qUcEY2hFnH .blockquote-quote {
    text-align: left;
  }
  .cid-qUcEY2hFnH .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUcEY2hFnH .mbr-text,
.cid-qUcEY2hFnH .blockquote-quote {
  color: #000000;
}
.cid-qUcEVj5JdM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUcFB4fvwk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUcFB4fvwk .mbr-section-subtitle {
  color: #767676;
}
.cid-qUcFHG71L8 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUcOgSiPNr {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #fef17d;
}
.cid-qUcOgSiPNr .container-fluid {
  padding: 0 3rem;
}
.cid-qUcOgSiPNr .underline .line {
  width: 10rem;
  height: 3px;
  background: linear-gradient(to right, #66458e 50%, #ca4336 120%);
  display: inline-block;
}
.cid-qUcOgSiPNr .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-qUcOgSiPNr .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qUcOgSiPNr .time-line-date-content {
  margin-right: 2rem;
}
.cid-qUcOgSiPNr .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-qUcOgSiPNr .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qUcOgSiPNr .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #f34497;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-qUcOgSiPNr .separline:before,
.cid-qUcOgSiPNr .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #f34497;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-qUcOgSiPNr .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #f34497;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-qUcOgSiPNr .container-fluid {
    padding: 0 1rem;
  }
  .cid-qUcOgSiPNr .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-qUcOgSiPNr .separline:before,
  .cid-qUcOgSiPNr .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-qUcOgSiPNr .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-qUcOgSiPNr .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-qUcOgSiPNr .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-qUcOgSiPNr .time-line-date-content p {
    float: left !important;
  }
  .cid-qUcOgSiPNr .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-qUcOgSiPNr .mbr-timeline-date {
  text-align: right;
}
.cid-qUcSh2M6PO {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUcSh2M6PO .mbr-section-subtitle {
  color: #f34497;
}
.cid-qUd5tnWWIY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUd5tnWWIY .mbr-text {
  text-align: center;
}
.cid-qUd5M77xjF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUd5M77xjF blockquote {
  border-width: 1px;
  border-color: #000000;
  padding: 0 0 0 20px;
}
.cid-qUd5M77xjF .mbr-text,
.cid-qUd5M77xjF .blockquote-quote {
  color: #000000;
}
.cid-qUd5M77xjF footer {
  font-style: normal;
}
.cid-qUd5U6XEWT {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUd6dt68gm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f34497;
}
.cid-qUd6dt68gm .container-fluid {
  padding: 0 3rem;
}
.cid-qUd6dt68gm .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qUd6dt68gm svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qUd6dt68gm .signature > span {
  color: #66458e;
}
@media (max-width: 767px) {
  .cid-qUd6dt68gm .blockquote-quote {
    text-align: left;
  }
  .cid-qUd6dt68gm .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUd6dt68gm .mbr-text,
.cid-qUd6dt68gm .blockquote-quote {
  color: #000000;
}
.cid-qUd6t2ZnvS {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qUd6JV5Tdb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUd6JV5Tdb .mbr-section-subtitle {
  color: #767676;
}
.cid-qUd6Sdd8xb {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUd783of6o {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f34497;
}
.cid-qUd783of6o .container-fluid {
  padding: 0 3rem;
}
.cid-qUd783of6o .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qUd783of6o svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qUd783of6o .signature > span {
  color: #66458e;
}
@media (max-width: 767px) {
  .cid-qUd783of6o .blockquote-quote {
    text-align: left;
  }
  .cid-qUd783of6o .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUd783of6o .mbr-text,
.cid-qUd783of6o .blockquote-quote {
  color: #000000;
}
.cid-qUd7hIoKSL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUd7yecfYN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fef17d;
}
.cid-qUd7yecfYN .mbr-text,
.cid-qUd7yecfYN .mbr-section-subtitle {
  color: #767676;
}
.cid-qUd7yecfYN .card-title {
  color: #66458e;
}
.cid-qUd7yecfYN .card .card-img span {
  color: #66458e;
  font-size: 60px;
  background: linear-gradient(45deg, #66458e, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-qUd7yecfYN .mbr-section-subtitle,
  .cid-qUd7yecfYN .mbr-section-title {
    text-align: center !important;
  }
}
.cid-qUd7yecfYN .mbr-text {
  color: #000000;
}
.cid-qUd8wQdF7K {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUd8wQdF7K .mbr-section-subtitle {
  color: #767676;
}
.cid-qUd8NEv75l {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUd8NEv75l .mbr-text {
  text-align: center;
}
.cid-qUd8SDhDcq {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qUd8SDhDcq blockquote {
  border-width: 1px;
  border-color: #000000;
  padding: 0 0 0 20px;
}
.cid-qUd8SDhDcq .mbr-text,
.cid-qUd8SDhDcq .blockquote-quote {
  color: #000000;
}
.cid-qUd8SDhDcq footer {
  font-style: normal;
}
.cid-qUdeHWXrsw {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUdeX1mwNW {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qUdeX1mwNW .container-fluid {
  padding: 0 3rem;
}
.cid-qUdeX1mwNW .image-block {
  position: relative;
  margin: auto;
}
.cid-qUdeX1mwNW .image-block img {
  width: 100%;
}
.cid-qUdeX1mwNW .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-qUdeX1mwNW .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-qUdeX1mwNW .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-qUdeX1mwNW .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qUdglN7OMd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUdgxywWyI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUdgxywWyI .mbr-section-subtitle {
  color: #767676;
}
.cid-qUdgFRsR8k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qUdhMNxXCC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fef17d;
}
.cid-qUdhMNxXCC .mbr-section-subtitle {
  color: #767676;
}
.cid-qUdhXx7YWW {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #fef17d;
}
.cid-qUdh4OCMIZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fef17d;
}
.cid-qUdh4OCMIZ .mbr-text {
  color: #767676;
}
.cid-qUdh4OCMIZ .mbr-section-subtitle {
  color: #767676;
}
.cid-qUdh4OCMIZ .title {
  position: relative;
  display: flex;
  align-items: center;
}
.cid-qUdh4OCMIZ .title .num {
  flex-shrink: 0;
  position: absolute;
  z-index: 0;
  font-size: 4rem;
  width: 100%;
}
.cid-qUdh4OCMIZ .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-qUdh4OCMIZ .card-text {
  margin-top: 2rem;
  color: #000000;
}
.cid-qUdh4OCMIZ .card-box {
  margin-bottom: 1rem;
}
.cid-qUdh4OCMIZ .num {
  color: #f34497;
}
@media (max-width: 767px) {
  .cid-qUdh4OCMIZ .num,
  .cid-qUdh4OCMIZ .card-title,
  .cid-qUdh4OCMIZ .mbr-text,
  .cid-qUdh4OCMIZ .mbr-title,
  .cid-qUdh4OCMIZ .mbr-section-subtitle,
  .cid-qUdh4OCMIZ .mbr-section-btn,
  .cid-qUdh4OCMIZ .mbr-section-title {
    text-align: center !important;
  }
  .cid-qUdh4OCMIZ .content-column {
    margin-bottom: 2rem;
  }
}
.cid-qUdh4OCMIZ .mbr-section-title {
  text-align: center;
}
.cid-qUdoj0me7h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUdoj0me7h .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-qUdoj0me7h .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-qUdoj0me7h .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-qUdoj0me7h .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-qUdoj0me7h .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-qUdoj0me7h .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-qUdoj0me7h .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-qUdoj0me7h .btn-social {
  border: none !important;
}
.cid-qUdoj0me7h [class^="socicon-"]:before,
.cid-qUdoj0me7h [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-qUdoj0me7h .btn {
    font-size: 20px !important;
  }
}
