body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 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.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@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 {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffc107 !important;
}
.bg-success {
  background-color: #101f7e !important;
}
.bg-info {
  background-color: #b6e2e7 !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #b98b00 !important;
  border-color: #b98b00 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b98b00 !important;
  border-color: #b98b00 !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: #b6e2e7 !important;
  border-color: #b6e2e7 !important;
  color: #276f77 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #276f77 !important;
  background-color: #7ccbd4 !important;
  border-color: #7ccbd4 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #276f77 !important;
  background-color: #7ccbd4 !important;
  border-color: #7ccbd4 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #101f7e !important;
  border-color: #101f7e !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #070e3a !important;
  border-color: #070e3a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #070e3a !important;
  border-color: #070e3a !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #b98b00 !important;
  border-color: #b98b00 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b98b00 !important;
  border-color: #b98b00 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-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: #a07800;
  color: #a07800 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffc107 !important;
  border-color: #ffc107 !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: #69c4ce;
  color: #69c4ce !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #276f77 !important;
  background-color: #b6e2e7;
  border-color: #b6e2e7;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #276f77 !important;
  background-color: #b6e2e7 !important;
  border-color: #b6e2e7 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #050923;
  color: #050923 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #101f7e;
  border-color: #101f7e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #101f7e !important;
  border-color: #101f7e !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #a07800;
  color: #a07800 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #ffc107 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #101f7e !important;
}
.text-info {
  color: #b6e2e7 !important;
}
.text-warning {
  color: #ffc107 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #a07800 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #050923 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #69c4ce !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a07800 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !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: #101f7e;
}
.alert-info {
  background-color: #b6e2e7;
}
.alert-warning {
  background-color: #ffc107;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.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: #ffc107;
  border-color: #ffc107;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffc107;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff4d3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #2a43e4;
}
.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: #fff4d3;
}
.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;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #ffc107;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.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;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffc107;
  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: #ffc107;
  border-bottom-color: #ffc107;
}
.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: #000000 !important;
  background-color: #ffc107 !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: #ca4336 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffc107' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-tkGtZzVPnJ .container,
.cid-tkGtZzVPnJ .container-fluid {
  padding: 5px;
  width: 100% !important;
  max-width: 100% !important;
  max-height: 70% !important;
}
.cid-tkGtZzVPnJ .video-wrapper iframe {
  width: 100%;
  height: 50%;
}
.cid-tkGtZzVPnJ .app-video-wrapper:before {
  font-size: 16px;
  padding: 0px 0px 0px 0px;
  background-color: #fff0;
  color: #fff0;
  line-height: 10px;
  text-shadow: none;
}
.cid-tkBsPPDTmn {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tkBsPPDTmn img {
  transition: all 0.3s;
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tkBsPPDTmn img {
    height: 300px;
  }
}
.cid-tkBsPPDTmn .item-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  transition: all 0.3s;
  background: #ffc107;
  padding: 0.5rem 1.5rem;
}
@media (max-width: 767px) {
  .cid-tkBsPPDTmn .item-content {
    bottom: 0;
  }
}
.cid-tkBsPPDTmn .slide-content {
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tkBsPPDTmn .slide-content:hover img {
  transform: scale(1.15) rotate(-5deg);
}
.cid-tkBsPPDTmn .slide-content:hover .item-content {
  bottom: 0;
}
.cid-tkBsPPDTmn .img-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  padding: 1rem 0rem;
  color: #000000;
  width: 100%;
}
.cid-tkBsPPDTmn .img-link span {
  font-size: 2rem;
  color: currentColor;
}
.cid-tkBsPPDTmn .item:focus,
.cid-tkBsPPDTmn span:focus {
  outline: none;
}
.cid-tkBsPPDTmn .item-wrapper {
  position: relative;
}
.cid-tkBsPPDTmn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkBsPPDTmn .mbr-section-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tkBsPPDTmn .mbr-text,
.cid-tkBsPPDTmn .mbr-section-btn {
  text-align: left;
}
.cid-tkBsPPDTmn .item-title {
  text-align: left;
}
.cid-tkBsPPDTmn .item-subtitle {
  text-align: left;
}
.cid-tkBsPPDTmn .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-tkBsPPDTmn .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tkBsPPDTmn .embla__button--next,
.cid-tkBsPPDTmn .embla__button--prev {
  display: flex;
}
.cid-tkBsPPDTmn .embla__button--prev span {
  padding-right: 7px;
}
.cid-tkBsPPDTmn .embla__button--next span {
  padding-left: 3px;
}
.cid-tkBsPPDTmn .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  color: black;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tkBsPPDTmn .embla__button {
    display: none;
  }
}
.cid-tkBsPPDTmn .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tkBsPPDTmn .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkBsPPDTmn .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 1400px) {
  .cid-tkBsPPDTmn .embla__button {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: black;
  }
}
@media (max-width: 767px) {
  .cid-tkBsPPDTmn .embla__button {
    top: auto;
    margin-top: 1rem;
  }
}
.cid-tkBsPPDTmn .embla {
  position: relative;
  width: 100%;
}
.cid-tkBsPPDTmn .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tkBsPPDTmn .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tkBsPPDTmn .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tkBsPPDTmn .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tkBsPPDTmn .img-link,
.cid-tkBsPPDTmn .link-icon {
  color: #ffffff;
}
.cid-tkBsPPDTmn .mbr-section-subtitle {
  text-align: center;
}
.cid-tkBwpTup2h {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tkBwpTup2h img {
  transition: all 0.3s;
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tkBwpTup2h img {
    height: 300px;
  }
}
.cid-tkBwpTup2h .item-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  transition: all 0.3s;
  background: #ffc107;
  padding: 0.5rem 1.5rem;
}
@media (max-width: 767px) {
  .cid-tkBwpTup2h .item-content {
    bottom: 0;
  }
}
.cid-tkBwpTup2h .slide-content {
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tkBwpTup2h .slide-content:hover img {
  transform: scale(1.15) rotate(-5deg);
}
.cid-tkBwpTup2h .slide-content:hover .item-content {
  bottom: 0;
}
.cid-tkBwpTup2h .img-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  padding: 1rem 0rem;
  color: #000000;
  width: 100%;
}
.cid-tkBwpTup2h .img-link span {
  font-size: 2rem;
  color: currentColor;
}
.cid-tkBwpTup2h .item:focus,
.cid-tkBwpTup2h span:focus {
  outline: none;
}
.cid-tkBwpTup2h .item-wrapper {
  position: relative;
}
.cid-tkBwpTup2h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkBwpTup2h .mbr-section-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tkBwpTup2h .mbr-text,
.cid-tkBwpTup2h .mbr-section-btn {
  text-align: left;
}
.cid-tkBwpTup2h .item-title {
  text-align: left;
}
.cid-tkBwpTup2h .item-subtitle {
  text-align: left;
}
.cid-tkBwpTup2h .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-tkBwpTup2h .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tkBwpTup2h .embla__button--next,
.cid-tkBwpTup2h .embla__button--prev {
  display: flex;
}
.cid-tkBwpTup2h .embla__button--prev span {
  padding-right: 7px;
}
.cid-tkBwpTup2h .embla__button--next span {
  padding-left: 3px;
}
.cid-tkBwpTup2h .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  color: black;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tkBwpTup2h .embla__button {
    display: none;
  }
}
.cid-tkBwpTup2h .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tkBwpTup2h .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkBwpTup2h .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 1400px) {
  .cid-tkBwpTup2h .embla__button {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: black;
  }
}
@media (max-width: 767px) {
  .cid-tkBwpTup2h .embla__button {
    top: auto;
    margin-top: 1rem;
  }
}
.cid-tkBwpTup2h .embla {
  position: relative;
  width: 100%;
}
.cid-tkBwpTup2h .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tkBwpTup2h .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tkBwpTup2h .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tkBwpTup2h .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tkBwpTup2h .img-link,
.cid-tkBwpTup2h .link-icon {
  color: #ffffff;
}
.cid-tkBwpTup2h .mbr-section-subtitle {
  text-align: center;
}
.cid-tkBDTLRWZQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tkBDTLRWZQ img,
.cid-tkBDTLRWZQ .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tkBDTLRWZQ .item:focus,
.cid-tkBDTLRWZQ span:focus {
  outline: none;
}
.cid-tkBDTLRWZQ .item-wrapper {
  position: relative;
}
.cid-tkBDTLRWZQ .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffc107;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tkBDTLRWZQ .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tkBDTLRWZQ .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tkBDTLRWZQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkBDTLRWZQ .mbr-section-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tkBDTLRWZQ .mbr-text,
.cid-tkBDTLRWZQ .mbr-section-btn {
  text-align: center;
}
.cid-tkBDTLRWZQ .item-title {
  text-align: center;
}
.cid-tkBDTLRWZQ .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tkBDTLRWZQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tkBDTLRWZQ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tkBDTLRWZQ .embla__button--next,
.cid-tkBDTLRWZQ .embla__button--prev {
  display: flex;
}
.cid-tkBDTLRWZQ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tkBDTLRWZQ .embla__button {
    display: none;
  }
}
.cid-tkBDTLRWZQ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tkBDTLRWZQ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tkBDTLRWZQ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkBDTLRWZQ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkBDTLRWZQ .embla__button {
    top: auto;
  }
}
.cid-tkBDTLRWZQ .embla {
  position: relative;
  width: 100%;
}
.cid-tkBDTLRWZQ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tkBDTLRWZQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tkBDTLRWZQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tkBDTLRWZQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tkBDTLRWZQ .mbr-section-subtitle {
  text-align: center;
}
.cid-tkBzcAWipa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tkBzcAWipa img,
.cid-tkBzcAWipa .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tkBzcAWipa .item:focus,
.cid-tkBzcAWipa span:focus {
  outline: none;
}
.cid-tkBzcAWipa .item-wrapper {
  position: relative;
}
.cid-tkBzcAWipa .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffc107;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tkBzcAWipa .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tkBzcAWipa .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tkBzcAWipa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkBzcAWipa .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tkBzcAWipa .mbr-text,
.cid-tkBzcAWipa .mbr-section-btn {
  text-align: center;
}
.cid-tkBzcAWipa .item-title {
  text-align: center;
}
.cid-tkBzcAWipa .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tkBzcAWipa .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tkBzcAWipa .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tkBzcAWipa .embla__button--next,
.cid-tkBzcAWipa .embla__button--prev {
  display: flex;
}
.cid-tkBzcAWipa .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tkBzcAWipa .embla__button {
    display: none;
  }
}
.cid-tkBzcAWipa .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tkBzcAWipa .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tkBzcAWipa .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkBzcAWipa .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkBzcAWipa .embla__button {
    top: auto;
  }
}
.cid-tkBzcAWipa .embla {
  position: relative;
  width: 100%;
}
.cid-tkBzcAWipa .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tkBzcAWipa .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tkBzcAWipa .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tkBzcAWipa .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tkBzcAWipa .mbr-section-subtitle {
  text-align: center;
}
.cid-tkBG6BXDIc {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #dbf0f2;
}
.cid-tkBG6BXDIc img,
.cid-tkBG6BXDIc .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tkBG6BXDIc .item:focus,
.cid-tkBG6BXDIc span:focus {
  outline: none;
}
.cid-tkBG6BXDIc .item-wrapper {
  position: relative;
}
.cid-tkBG6BXDIc .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffc107;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tkBG6BXDIc .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tkBG6BXDIc .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tkBG6BXDIc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkBG6BXDIc .mbr-section-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tkBG6BXDIc .mbr-text,
.cid-tkBG6BXDIc .mbr-section-btn {
  text-align: center;
}
.cid-tkBG6BXDIc .item-title {
  text-align: center;
}
.cid-tkBG6BXDIc .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tkBG6BXDIc .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tkBG6BXDIc .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tkBG6BXDIc .embla__button--next,
.cid-tkBG6BXDIc .embla__button--prev {
  display: flex;
}
.cid-tkBG6BXDIc .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tkBG6BXDIc .embla__button {
    display: none;
  }
}
.cid-tkBG6BXDIc .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tkBG6BXDIc .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tkBG6BXDIc .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkBG6BXDIc .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkBG6BXDIc .embla__button {
    top: auto;
  }
}
.cid-tkBG6BXDIc .embla {
  position: relative;
  width: 100%;
}
.cid-tkBG6BXDIc .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tkBG6BXDIc .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tkBG6BXDIc .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tkBG6BXDIc .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tkBG6BXDIc .mbr-section-subtitle {
  text-align: center;
}
.cid-tkBIiyz5gW {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #dbf0f2;
}
.cid-tkBIiyz5gW img,
.cid-tkBIiyz5gW .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-tkBIiyz5gW .item:focus,
.cid-tkBIiyz5gW span:focus {
  outline: none;
}
.cid-tkBIiyz5gW .item-wrapper {
  position: relative;
}
.cid-tkBIiyz5gW .slide-content {
  position: relative;
  border-radius: 4px;
  background: #f2f2f2;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tkBIiyz5gW .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tkBIiyz5gW .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tkBIiyz5gW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkBIiyz5gW .mbr-section-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tkBIiyz5gW .mbr-text,
.cid-tkBIiyz5gW .mbr-section-btn {
  text-align: center;
}
.cid-tkBIiyz5gW .item-title {
  text-align: center;
}
.cid-tkBIiyz5gW .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tkBIiyz5gW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tkBIiyz5gW .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tkBIiyz5gW .embla__button--next,
.cid-tkBIiyz5gW .embla__button--prev {
  display: flex;
}
.cid-tkBIiyz5gW .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tkBIiyz5gW .embla__button {
    display: none;
  }
}
.cid-tkBIiyz5gW .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tkBIiyz5gW .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tkBIiyz5gW .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkBIiyz5gW .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkBIiyz5gW .embla__button {
    top: auto;
  }
}
.cid-tkBIiyz5gW .embla {
  position: relative;
  width: 100%;
}
.cid-tkBIiyz5gW .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tkBIiyz5gW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tkBIiyz5gW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tkBIiyz5gW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tkBIiyz5gW .mbr-section-subtitle {
  text-align: center;
}
.cid-tkHriEjp5R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dbf0f2;
}
.cid-tkHriEjp5R img,
.cid-tkHriEjp5R .item-img {
  width: 100%;
}
.cid-tkHriEjp5R .item:focus,
.cid-tkHriEjp5R span:focus {
  outline: none;
}
.cid-tkHriEjp5R .slide-content {
  width: 100%;
  height: 460px;
  position: relative;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (max-width: 992px) {
  .cid-tkHriEjp5R .slide-content {
    margin-bottom: 30px;
  }
}
.cid-tkHriEjp5R .slide-content img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-tkHriEjp5R .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-tkHriEjp5R .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
}
@media (max-width: 425px) {
  .cid-tkHriEjp5R .card-wrapper {
    padding: 29px;
  }
}
.cid-tkHriEjp5R .card-wrapper .card-button {
  width: 100%;
}
.cid-tkHriEjp5R .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ff4712;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-tkHriEjp5R .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-tkHriEjp5R .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-tkHriEjp5R .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .85;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-tkHriEjp5R .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #ffc107;
  pointer-events: visible;
}
.cid-tkHriEjp5R .slide-content:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tkHriEjp5R .slide-content:hover .mbr-button {
  background: #20232a;
}
.cid-tkHriEjp5R .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tkHriEjp5R .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tkHriEjp5R .embla__button--next,
.cid-tkHriEjp5R .embla__button--prev {
  display: flex;
}
.cid-tkHriEjp5R .embla__button {
  width: 38px;
  height: 38px;
  margin-top: -1.5rem;
  font-size: 14px;
  background-color: transparent;
  color: #b3b3b3;
  border: 2px solid #e6e6e6;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20%;
}
@media (max-width: 992px) {
  .cid-tkHriEjp5R .embla__button {
    top: -5%;
  }
}
@media (max-width: 768px) {
  .cid-tkHriEjp5R .embla__button {
    top: -8%;
  }
}
.cid-tkHriEjp5R .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tkHriEjp5R .embla__button:hover {
  background: transparent;
  color: #ffc107;
}
.cid-tkHriEjp5R .embla__button.embla__button--prev {
  right: 2.6rem;
}
@media (max-width: 768px) {
  .cid-tkHriEjp5R .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-tkHriEjp5R .embla__button.embla__button--next {
  right: 0;
}
@media (max-width: 768px) {
  .cid-tkHriEjp5R .embla__button.embla__button--next {
    left: 2.6rem;
  }
}
.cid-tkHriEjp5R .embla {
  position: relative;
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 992px) {
  .cid-tkHriEjp5R .embla {
    margin-top: 88px;
  }
}
.cid-tkHriEjp5R .embla__viewport {
  overflow: hidden;
  width: 120%;
  padding: 0;
}
.cid-tkHriEjp5R .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tkHriEjp5R .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tkHriEjp5R .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tkHriEjp5R .mbr-section-title {
  margin-bottom: 20px;
  color: #20232a;
  text-align: left;
}
.cid-tkHriEjp5R .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #ffb800;
  text-align: left;
}
@media (max-width: 992px) {
  .cid-tkHriEjp5R .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-tkHriEjp5R .mbr-text {
  margin: 55px 0 0 0;
  color: #84858a;
  text-align: left;
}
@media (max-width: 992px) {
  .cid-tkHriEjp5R .mbr-text {
    margin: 0;
  }
}
.cid-tkHriEjp5R .mbr-button {
  color: #FFFFFF;
}
.cid-tkHriEjp5R .mbr-card-title {
  color: #FFFFFF;
}
.cid-tkHriEjp5R .mbr-date {
  color: #fafafa;
}
.cid-tkHriEjp5R .mbr-card-title,
.cid-tkHriEjp5R .card-button,
.cid-tkHriEjp5R .card-text-date {
  text-align: left;
}
.cid-tkHriEjp5R .mbr-section-title,
.cid-tkHriEjp5R .mbr-section-btn {
  color: #0b1b56;
}
.cid-tkCSkU0BZB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #dbf0f2;
}
.cid-tkCSkU0BZB .item:focus,
.cid-tkCSkU0BZB span:focus {
  outline: none;
}
.cid-tkCSkU0BZB .item-wrapper {
  position: relative;
}
.cid-tkCSkU0BZB .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tkCSkU0BZB .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 40%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tkCSkU0BZB .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tkCSkU0BZB .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tkCSkU0BZB .embla__slide {
    min-width: 375px;
  }
}
.cid-tkCSkU0BZB .embla__button--next,
.cid-tkCSkU0BZB .embla__button--prev {
  display: flex;
}
.cid-tkCSkU0BZB .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-tkCSkU0BZB .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tkCSkU0BZB .embla__button:hover {
  background: #b6e2e7;
  color: #fff;
  transform: scale(1.05);
}
.cid-tkCSkU0BZB .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkCSkU0BZB .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkCSkU0BZB .embla__button {
    top: auto;
  }
}
.cid-tkCSkU0BZB .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tkCSkU0BZB .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tkCSkU0BZB .embla {
  position: relative;
  width: 100%;
}
.cid-tkCSkU0BZB .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tkCSkU0BZB .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tkCSkU0BZB .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tkCSkU0BZB .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tkCSkU0BZB .shadow {
  padding: 44px 32px 52px;
  border-radius: 34px;
  box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  border: 1px solid #eff0f6;
}
.cid-tkCSkU0BZB .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  padding: 20px 20px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tkCSkU0BZB .wrap-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  background-size: cover;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.cid-tkCSkU0BZB .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tkCSkU0BZB .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tkCSkU0BZB .shadow:hover .number,
.cid-tkCSkU0BZB .shadow:hover .card-title {
  color: #b6e2e7 !important;
}
.cid-tkCSkU0BZB .shadow:hover .wrap-img {
  padding: 15px 15px 30px;
}
.cid-tkCSkU0BZB .shadow:hover .wrap-img::after {
  transform: scale(1.05);
}
.cid-tkCSkU0BZB .card-wrapper {
  padding: 30px 15px;
  margin: 0 15px;
  width: auto;
  max-width: 100%;
  border: 1px solid #dbdbdb;
}
.cid-tkCSkU0BZB .card-title {
  font-weight: 700;
  padding: 10px 20px 10px;
  color: #4c4c4c;
  text-align: left;
  text-transform: uppercase;
}
.cid-tkCSkU0BZB H3 {
  color: #1d1d1f;
}
.cid-tkCSkU0BZB .card-subtitle {
  text-align: left;
  color: #14142b;
}
.cid-tkCSkU0BZB .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-tkCSkU0BZB .card-text {
  margin-bottom: 16px;
  text-align: left;
}
.cid-tkCSkU0BZB .mbr-iconfont::before {
  font-size: 25px;
}
.cid-tkCSkU0BZB .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-tkCSkU0BZB .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tkCSkU0BZB .people {
  align-items: center;
}
.cid-tkCSkU0BZB img {
  border-radius: 10%;
  height: 128px;
  width: 128px;
  margin: 0;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tkCSkU0BZB .row.title-block {
    flex-direction: column;
  }
  .cid-tkCSkU0BZB .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-tkCSkU0BZB .mbr-section-title {
    text-align: center;
  }
}
.cid-tkCSkU0BZB .card-subtitle,
.cid-tkCSkU0BZB .card-subtitle2 {
  display: inline;
}
@media (max-width: 1040px) {
  .cid-tkCSkU0BZB .people {
    flex-direction: column;
  }
  .cid-tkCSkU0BZB .card-text,
  .cid-tkCSkU0BZB .align,
  .cid-tkCSkU0BZB .iconfont-wrapper {
    text-align: center;
  }
  .cid-tkCSkU0BZB img {
    margin-bottom: 20px !important;
  }
}
.cid-tkCSkU0BZB .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
}
@media (max-width: 400px) {
  .cid-tkCSkU0BZB .button-align {
    margin-top: 20px;
  }
}
.cid-tkCSkU0BZB .btn {
  margin-top: 20px;
}
.cid-tkCSkU0BZB a.btn > span {
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tkCSkU0BZB .shadow {
    padding-top: 40px;
    padding-bottom: 43px;
  }
}
@media (max-width: 479px) {
  .cid-tkCSkU0BZB .shadow {
    padding: 33px 25px 36px;
  }
}
.cid-tkCSkU0BZB .mbr-section-subtitle,
.cid-tkCSkU0BZB .button-align {
  text-align: center;
  color: #0b1b56;
}
.cid-tkCSkU0BZB .mbr-section-title {
  text-align: right;
  color: #0b1b56;
}
.cid-tlbIG0uf8s {
  padding-top: 120px;
  padding-bottom: 105px;
  background-color: #ffc107;
}
.cid-tlbIG0uf8s .form-control,
.cid-tlbIG0uf8s .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-tlbIG0uf8s .form-control:focus,
.cid-tlbIG0uf8s .form-control:focus:focus {
  outline: none;
}
.cid-tlbIG0uf8s input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-tlbIG0uf8s input::-moz-placeholder {
  color: #5b686b;
}
.cid-tlbIG0uf8s textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-tlbIG0uf8s textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-tlbIG0uf8s .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-tlbIG0uf8s .input {
  margin-bottom: 15px;
}
.cid-tlbIG0uf8s .map {
  width: 100%;
  height: 30rem;
}
.cid-tlbIG0uf8s .map iframe {
  width: inherit;
  height: 100%;
}
.cid-tlbIG0uf8s .mbr-text {
  color: #767676;
}
.cid-tlbIG0uf8s .input-group-btn {
  display: block;
}
.cid-tlbIG0uf8s .google-map {
  height: 25rem;
  position: relative;
}
.cid-tlbIG0uf8s .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlbIG0uf8s .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlbIG0uf8s .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlbIG0uf8s .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-tlbIG0uf8s .mbr-section-subtitle,
  .cid-tlbIG0uf8s .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tlbIG0uf8s form.mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-tlbIG0uf8s H2 {
  color: #0b1b56;
}
.cid-tlbIG0uf8s .mbr-section-subtitle {
  color: #000000;
}
.cid-tlbIJQxRJY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #dbf0f2;
}
@media (max-width: 767px) {
  .cid-tlbIJQxRJY .content {
    text-align: center;
  }
  .cid-tlbIJQxRJY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlbIJQxRJY .img-logo img {
  height: 6rem;
}
.cid-tlbIJQxRJY .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tlbIJQxRJY .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-tlbIJQxRJY .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tlbIJQxRJY .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tlbIJQxRJY .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tlbIJQxRJY .social-list a:hover {
  opacity: 1;
}
.cid-tlbIJQxRJY .form-control {
  min-height: auto;
  color: #0b1b56 !important;
  border: none;
  width: 100%;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #0b1b56;
}
.cid-tlbIJQxRJY .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tlbIJQxRJY input::-webkit-input-placeholder {
  color: #0b1b56;
}
.cid-tlbIJQxRJY input::-moz-placeholder {
  color: #0b1b56;
}
.cid-tlbIJQxRJY textarea::-webkit-input-placeholder {
  color: #0b1b56;
}
.cid-tlbIJQxRJY textarea::-moz-placeholder {
  color: #0b1b56;
}
.cid-tlbIJQxRJY .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlbIJQxRJY .list li {
  padding-bottom: .5rem;
}
.cid-tlbIJQxRJY .list li:last-child {
  padding-bottom: 0;
}
.cid-tlbIJQxRJY .mbr-footer-list,
.cid-tlbIJQxRJY .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tlbIJQxRJY .mbr-footer-list,
  .cid-tlbIJQxRJY .form-text,
  .cid-tlbIJQxRJY .footer-title,
  .cid-tlbIJQxRJY .footer-main-title,
  .cid-tlbIJQxRJY .form-text,
  .cid-tlbIJQxRJY .list {
    text-align: center !important;
  }
  .cid-tlbIJQxRJY .mbr-form,
  .cid-tlbIJQxRJY .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tlbIJQxRJY .footer-main-title {
  color: #0b1b56;
}
.cid-tlbIJQxRJY .footer-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tlbIJQxRJY .mbr-footer-list {
  color: #0b1b56;
}
.cid-tlbIJQxRJY .form-text {
  color: #0b1b56;
}
.cid-tlbIJQxRJY .mbr-footer-list UL {
  text-align: center;
}
.cid-tlbJYPPMyM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dbf0f2;
}
.cid-tlbJYPPMyM .mbr-section-subtitle {
  color: #767676;
}
.cid-tlbJYPPMyM .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-tlbJYPPMyM .socicon-bg-facebook:after {
  border-color: #3e5b98;
}
.cid-tlbJYPPMyM .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-tlbJYPPMyM .socicon-bg-twitter:after {
  border-color: #4da7de;
}
.cid-tlbJYPPMyM .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-tlbJYPPMyM .socicon-bg-googleplus:after {
  border-color: #dd4b39;
}
.cid-tlbJYPPMyM .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-tlbJYPPMyM .socicon-bg-vkontakte:after {
  border-color: #5a7fa6;
}
.cid-tlbJYPPMyM .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-tlbJYPPMyM .socicon-bg-odnoklassniki:after {
  border-color: #f48420;
}
.cid-tlbJYPPMyM .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-tlbJYPPMyM .socicon-bg-pinterest:after {
  border-color: #c92619;
}
.cid-tlbJYPPMyM .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-tlbJYPPMyM .socicon-bg-mail:after {
  border-color: #134785;
}
.cid-tlbJYPPMyM .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border-radius: 100px;
  border: none !important;
}
.cid-tlbJYPPMyM .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-tlbJYPPMyM .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tlbJYPPMyM [class^="socicon-"]:before,
.cid-tlbJYPPMyM [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-tlbJYPPMyM .btn {
    font-size: 20px !important;
  }
}
.cid-tlbJYPPMyM .mbr-section-title,
.cid-tlbJYPPMyM .mbr-social-likes {
  color: #0b1b56;
}
.cid-tlbJ8vAZ7l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tlbJ8vAZ7l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlbJ8vAZ7l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tlbJ8vAZ7l .image-wrapper {
    flex-direction: column;
  }
  .cid-tlbJ8vAZ7l .image-wrapper img {
    margin: auto;
    margin-bottom: 1rem;
  }
}
.cid-tlbJ8vAZ7l img {
  width: 150px;
  margin: 1rem;
}
.cid-tlbJ8vAZ7l .mbr-description {
  color: #e9c0e9;
}
.cid-tlbIW8atYO {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #dbf0f2;
}
.cid-tlbIW8atYO .mbr-section-subtitle {
  color: #767676;
}
.cid-tlbIW8atYO .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffb800;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tlbIW8atYO .mbr-iconfont-social:before {
  padding: .6rem;
  border: 1px solid;
  border-radius: 100px;
  transition: all .3s;
}
.cid-tlbIW8atYO .mbr-iconfont-social:hover {
  color: #000000;
}
.cid-tlbIW8atYO .mbr-iconfont-social:hover:before {
  background: #ffb800;
  transition: all .3s;
  border-color: transparent;
}
.cid-tlbIW8atYO .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tlbIW8atYO .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tlbIW8atYO .mbr-section-title,
.cid-tlbIW8atYO .social-list {
  color: #0b1b56;
}
.cid-tlbJ3YlPC8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dbf0f2;
}
.cid-tlbJ3YlPC8 .mbr-section-subtitle {
  color: #767676;
}
.cid-tlbJ3YlPC8 ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tlbJ3YlPC8 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-tlbJ3YlPC8 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-tlbJ3YlPC8 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-tlbJ3YlPC8 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-tlbJ3YlPC8 .mbr-section-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tli2TBQVQF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0b1b56;
  overflow: hidden;
}
.cid-tkGhEzVVI0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tkGhEzVVI0 .mbr-text,
.cid-tkGhEzVVI0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tkGhEzVVI0 .card-title {
  color: #66458e;
}
.cid-tkGhEzVVI0 .card .card-img span {
  color: #ffb800;
  font-size: 60px;
  background: linear-gradient(45deg, #ffb800, #ffb800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-tkGhEzVVI0 .mbr-section-subtitle,
  .cid-tkGhEzVVI0 .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tkGhEzVVI0 .card .card-img span {
    background: none;
  }
}
.cid-tkGhEzVVI0 .mbr-section-title {
  text-align: center;
  color: #0b1b56;
}
.cid-tkGhEzVVI0 .mbr-section-subtitle {
  text-align: left;
  color: #ca4336;
}
.cid-tkGhEzVVI0 .mbr-text {
  color: #000000;
}
.cid-tkGhEzVVI0 .card-title,
.cid-tkGhEzVVI0 .card-img {
  color: #101f7e;
}
.cid-tkGkrSUHZi {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tkGkrSUHZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkGkrSUHZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkGkrSUHZi .row {
  justify-content: flex-start;
}
.cid-tkGkrSUHZi .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-tkGkrSUHZi .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-tkGkrSUHZi .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-tkGkrSUHZi .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tkGkrSUHZi .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-tkGkrSUHZi .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
}
.cid-tkGkrSUHZi .mbr-section-title,
.cid-tkGkrSUHZi .mbr-section-btn {
  color: #101f7e;
}
.cid-tkGlfKUhSu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #dbf0f2;
}
.cid-tkGlfKUhSu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkGlfKUhSu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkGlfKUhSu .row {
  justify-content: flex-start;
}
.cid-tkGlfKUhSu .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-tkGlfKUhSu .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-tkGlfKUhSu .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-tkGlfKUhSu .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tkGlfKUhSu .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-tkGlfKUhSu .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
}
.cid-tkGlfKUhSu .mbr-section-title,
.cid-tkGlfKUhSu .mbr-section-btn {
  color: #101f7e;
}
.cid-tkGkTiWHpL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tkGkTiWHpL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkGkTiWHpL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkGkTiWHpL .row {
  justify-content: flex-start;
}
.cid-tkGkTiWHpL .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-tkGkTiWHpL .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-tkGkTiWHpL .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-tkGkTiWHpL .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tkGkTiWHpL .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-tkGkTiWHpL .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
}
.cid-tkGkTiWHpL .mbr-section-title,
.cid-tkGkTiWHpL .mbr-section-btn {
  color: #101f7e;
}
.cid-tkGlNTBlyv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #dbf0f2;
}
.cid-tkGlNTBlyv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkGlNTBlyv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkGlNTBlyv .row {
  justify-content: flex-start;
}
.cid-tkGlNTBlyv .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-tkGlNTBlyv .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-tkGlNTBlyv .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-tkGlNTBlyv .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tkGlNTBlyv .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-tkGlNTBlyv .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
}
.cid-tkGlNTBlyv .mbr-section-title,
.cid-tkGlNTBlyv .mbr-section-btn {
  color: #101f7e;
}
.cid-tkGm9RkMJO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tkGm9RkMJO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkGm9RkMJO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkGm9RkMJO .row {
  justify-content: flex-start;
}
.cid-tkGm9RkMJO .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-tkGm9RkMJO .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-tkGm9RkMJO .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-tkGm9RkMJO .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tkGm9RkMJO .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-tkGm9RkMJO .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
}
.cid-tkGm9RkMJO .mbr-section-title,
.cid-tkGm9RkMJO .mbr-section-btn {
  color: #101f7e;
}
.cid-tkGmpCXgNi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tkGmpCXgNi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkGmpCXgNi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkGmpCXgNi .row {
  justify-content: flex-start;
}
.cid-tkGmpCXgNi .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-tkGmpCXgNi .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-tkGmpCXgNi .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-tkGmpCXgNi .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tkGmpCXgNi .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-tkGmpCXgNi .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
}
.cid-tkGmpCXgNi .mbr-section-title,
.cid-tkGmpCXgNi .mbr-section-btn {
  color: #101f7e;
}
.cid-tkHe6M9CLE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #dbf0f2;
}
.cid-tkHe6M9CLE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkHe6M9CLE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkHe6M9CLE .row {
  justify-content: flex-start;
}
.cid-tkHe6M9CLE .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-tkHe6M9CLE .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-tkHe6M9CLE .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-tkHe6M9CLE .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tkHe6M9CLE .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-tkHe6M9CLE .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
}
.cid-tkHe6M9CLE .mbr-section-title,
.cid-tkHe6M9CLE .mbr-section-btn {
  color: #101f7e;
}
.cid-tlbIJQxRJY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #dbf0f2;
}
@media (max-width: 767px) {
  .cid-tlbIJQxRJY .content {
    text-align: center;
  }
  .cid-tlbIJQxRJY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlbIJQxRJY .img-logo img {
  height: 6rem;
}
.cid-tlbIJQxRJY .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tlbIJQxRJY .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-tlbIJQxRJY .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tlbIJQxRJY .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tlbIJQxRJY .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tlbIJQxRJY .social-list a:hover {
  opacity: 1;
}
.cid-tlbIJQxRJY .form-control {
  min-height: auto;
  color: #0b1b56 !important;
  border: none;
  width: 100%;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #0b1b56;
}
.cid-tlbIJQxRJY .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tlbIJQxRJY input::-webkit-input-placeholder {
  color: #0b1b56;
}
.cid-tlbIJQxRJY input::-moz-placeholder {
  color: #0b1b56;
}
.cid-tlbIJQxRJY textarea::-webkit-input-placeholder {
  color: #0b1b56;
}
.cid-tlbIJQxRJY textarea::-moz-placeholder {
  color: #0b1b56;
}
.cid-tlbIJQxRJY .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlbIJQxRJY .list li {
  padding-bottom: .5rem;
}
.cid-tlbIJQxRJY .list li:last-child {
  padding-bottom: 0;
}
.cid-tlbIJQxRJY .mbr-footer-list,
.cid-tlbIJQxRJY .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tlbIJQxRJY .mbr-footer-list,
  .cid-tlbIJQxRJY .form-text,
  .cid-tlbIJQxRJY .footer-title,
  .cid-tlbIJQxRJY .footer-main-title,
  .cid-tlbIJQxRJY .form-text,
  .cid-tlbIJQxRJY .list {
    text-align: center !important;
  }
  .cid-tlbIJQxRJY .mbr-form,
  .cid-tlbIJQxRJY .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tlbIJQxRJY .footer-main-title {
  color: #0b1b56;
}
.cid-tlbIJQxRJY .footer-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tlbIJQxRJY .mbr-footer-list {
  color: #0b1b56;
}
.cid-tlbIJQxRJY .form-text {
  color: #0b1b56;
}
.cid-tlbIJQxRJY .mbr-footer-list UL {
  text-align: center;
}
.cid-tkHk6zNvLS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dbf0f2;
}
.cid-tkHk6zNvLS .mbr-section-subtitle {
  color: #767676;
}
.cid-tkHk6zNvLS .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-tkHk6zNvLS .socicon-bg-facebook:after {
  border-color: #3e5b98;
}
.cid-tkHk6zNvLS .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-tkHk6zNvLS .socicon-bg-twitter:after {
  border-color: #4da7de;
}
.cid-tkHk6zNvLS .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-tkHk6zNvLS .socicon-bg-googleplus:after {
  border-color: #dd4b39;
}
.cid-tkHk6zNvLS .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-tkHk6zNvLS .socicon-bg-vkontakte:after {
  border-color: #5a7fa6;
}
.cid-tkHk6zNvLS .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-tkHk6zNvLS .socicon-bg-odnoklassniki:after {
  border-color: #f48420;
}
.cid-tkHk6zNvLS .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-tkHk6zNvLS .socicon-bg-pinterest:after {
  border-color: #c92619;
}
.cid-tkHk6zNvLS .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-tkHk6zNvLS .socicon-bg-mail:after {
  border-color: #134785;
}
.cid-tkHk6zNvLS .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border-radius: 100px;
  border: none !important;
}
.cid-tkHk6zNvLS .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-tkHk6zNvLS .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tkHk6zNvLS [class^="socicon-"]:before,
.cid-tkHk6zNvLS [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-tkHk6zNvLS .btn {
    font-size: 20px !important;
  }
}
.cid-tkHk6zNvLS .mbr-section-title,
.cid-tkHk6zNvLS .mbr-social-likes {
  color: #0b1b56;
}
.cid-tkHk6A2UgX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tkHk6A2UgX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkHk6A2UgX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tkHk6A2UgX .image-wrapper {
    flex-direction: column;
  }
  .cid-tkHk6A2UgX .image-wrapper img {
    margin: auto;
    margin-bottom: 1rem;
  }
}
.cid-tkHk6A2UgX img {
  width: 150px;
  margin: 1rem;
}
.cid-tkHk6A2UgX .mbr-description {
  color: #e9c0e9;
}
.cid-tkHk6zxvXb {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #dbf0f2;
}
.cid-tkHk6zxvXb .mbr-section-subtitle {
  color: #767676;
}
.cid-tkHk6zxvXb .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffb800;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tkHk6zxvXb .mbr-iconfont-social:before {
  padding: .6rem;
  border: 1px solid;
  border-radius: 100px;
  transition: all .3s;
}
.cid-tkHk6zxvXb .mbr-iconfont-social:hover {
  color: #000000;
}
.cid-tkHk6zxvXb .mbr-iconfont-social:hover:before {
  background: #ffb800;
  transition: all .3s;
  border-color: transparent;
}
.cid-tkHk6zxvXb .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tkHk6zxvXb .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tkHk6zxvXb .mbr-section-title,
.cid-tkHk6zxvXb .social-list {
  color: #0b1b56;
}
.cid-tl2cZ6BP4T {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dbf0f2;
}
.cid-tl2cZ6BP4T .mbr-section-subtitle {
  color: #767676;
}
.cid-tl2cZ6BP4T ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tl2cZ6BP4T ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-tl2cZ6BP4T ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-tl2cZ6BP4T ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-tl2cZ6BP4T .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-tl2cZ6BP4T .mbr-section-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tli2TBQVQF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0b1b56;
  overflow: hidden;
}
.cid-tliaGJxPpc {
  padding-top: 225px;
  padding-bottom: 375px;
  background: url("../../../assets/images/yes-click-banners-2000x1125.png");
}
.cid-tliaGJxPpc .mbr-section-subtitle {
  color: #efefef;
  font-weight: 300;
}
.cid-tliaGJxPpc .number {
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffb800;
  font-size: 4.1rem;
}
.cid-tliaGJxPpc .period {
  display: block;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffb800;
}
.cid-tliaGJxPpc .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffb800;
  font-size: 4.1rem;
}
.cid-tliaGJxPpc .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tliaGJxPpc .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-tliaGJxPpc .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-tliaGJxPpc .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-tliaGJxPpc .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-tliaGJxPpc .number {
    font-size: 25px;
  }
  .cid-tliaGJxPpc .period {
    font-size: 0.7rem;
  }
}
.cid-tliaGJxPpc H2 {
  color: #ffffff;
}
.cid-tliwGWsb0H {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #dbf0f2;
}
@media (max-width: 767px) {
  .cid-tliwGWsb0H .content {
    text-align: center;
  }
  .cid-tliwGWsb0H .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tliwGWsb0H .img-logo img {
  height: 6rem;
}
.cid-tliwGWsb0H .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tliwGWsb0H .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-tliwGWsb0H .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tliwGWsb0H .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tliwGWsb0H .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tliwGWsb0H .social-list a:hover {
  opacity: 1;
}
.cid-tliwGWsb0H .form-control {
  min-height: auto;
  color: #0b1b56 !important;
  border: none;
  width: 100%;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #0b1b56;
}
.cid-tliwGWsb0H .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tliwGWsb0H input::-webkit-input-placeholder {
  color: #0b1b56;
}
.cid-tliwGWsb0H input::-moz-placeholder {
  color: #0b1b56;
}
.cid-tliwGWsb0H textarea::-webkit-input-placeholder {
  color: #0b1b56;
}
.cid-tliwGWsb0H textarea::-moz-placeholder {
  color: #0b1b56;
}
.cid-tliwGWsb0H .list {
  list-style-type: none;
  padding: 0;
}
.cid-tliwGWsb0H .list li {
  padding-bottom: .5rem;
}
.cid-tliwGWsb0H .list li:last-child {
  padding-bottom: 0;
}
.cid-tliwGWsb0H .mbr-footer-list,
.cid-tliwGWsb0H .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tliwGWsb0H .mbr-footer-list,
  .cid-tliwGWsb0H .form-text,
  .cid-tliwGWsb0H .footer-title,
  .cid-tliwGWsb0H .footer-main-title,
  .cid-tliwGWsb0H .form-text,
  .cid-tliwGWsb0H .list {
    text-align: center !important;
  }
  .cid-tliwGWsb0H .mbr-form,
  .cid-tliwGWsb0H .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tliwGWsb0H .footer-main-title {
  color: #0b1b56;
}
.cid-tliwGWsb0H .footer-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tliwGWsb0H .mbr-footer-list {
  color: #0b1b56;
}
.cid-tliwGWsb0H .form-text {
  color: #0b1b56;
}
.cid-tliwGWsb0H .mbr-footer-list UL {
  text-align: center;
}
.cid-tliwLLrdjR {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #dbf0f2;
}
.cid-tliwLLrdjR .mbr-section-subtitle {
  color: #767676;
}
.cid-tliwLLrdjR .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffb800;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-tliwLLrdjR .mbr-iconfont-social:before {
  padding: .6rem;
  border: 1px solid;
  border-radius: 100px;
  transition: all .3s;
}
.cid-tliwLLrdjR .mbr-iconfont-social:hover {
  color: #000000;
}
.cid-tliwLLrdjR .mbr-iconfont-social:hover:before {
  background: #ffb800;
  transition: all .3s;
  border-color: transparent;
}
.cid-tliwLLrdjR .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tliwLLrdjR .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-tliwLLrdjR .mbr-section-title,
.cid-tliwLLrdjR .social-list {
  color: #0b1b56;
}
.cid-tliwVhXBY6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dbf0f2;
}
.cid-tliwVhXBY6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tliwVhXBY6 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-tliwVhXBY6 .socicon-bg-facebook:after {
  border-color: #3e5b98;
}
.cid-tliwVhXBY6 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-tliwVhXBY6 .socicon-bg-twitter:after {
  border-color: #4da7de;
}
.cid-tliwVhXBY6 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-tliwVhXBY6 .socicon-bg-googleplus:after {
  border-color: #dd4b39;
}
.cid-tliwVhXBY6 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-tliwVhXBY6 .socicon-bg-vkontakte:after {
  border-color: #5a7fa6;
}
.cid-tliwVhXBY6 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-tliwVhXBY6 .socicon-bg-odnoklassniki:after {
  border-color: #f48420;
}
.cid-tliwVhXBY6 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-tliwVhXBY6 .socicon-bg-pinterest:after {
  border-color: #c92619;
}
.cid-tliwVhXBY6 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-tliwVhXBY6 .socicon-bg-mail:after {
  border-color: #134785;
}
.cid-tliwVhXBY6 .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border-radius: 100px;
  border: none !important;
}
.cid-tliwVhXBY6 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-tliwVhXBY6 .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tliwVhXBY6 [class^="socicon-"]:before,
.cid-tliwVhXBY6 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-tliwVhXBY6 .btn {
    font-size: 20px !important;
  }
}
.cid-tliwVhXBY6 .mbr-section-title,
.cid-tliwVhXBY6 .mbr-social-likes {
  color: #0b1b56;
}
.cid-tliwUohfwt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dbf0f2;
}
.cid-tliwUohfwt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tliwUohfwt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tliwUohfwt .image-wrapper {
    flex-direction: column;
  }
  .cid-tliwUohfwt .image-wrapper img {
    margin: auto;
    margin-bottom: 1rem;
  }
}
.cid-tliwUohfwt img {
  width: 150px;
  margin: 1rem;
}
.cid-tliwUohfwt .mbr-description {
  color: #e9c0e9;
}
.cid-tliwMwczgq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dbf0f2;
}
.cid-tliwMwczgq .mbr-section-subtitle {
  color: #767676;
}
.cid-tliwMwczgq ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tliwMwczgq ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-tliwMwczgq ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-tliwMwczgq ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-tliwMwczgq .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-tliwMwczgq .mbr-section-title {
  color: #0b1b56;
  text-align: center;
}
.cid-tliwXK23GJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0b1b56;
  overflow: hidden;
}
.cid-tm0cI2rcat {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tm0cI2rcat .mbr-section-subtitle {
  color: #767676;
}
.cid-tm0cI2rcat .mbr-section-title {
  color: #0b1b56;
}
.cid-tm0cF9bpaN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tm0cF9bpaN .counter-container {
  color: #767676;
}
.cid-tm0cF9bpaN .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tm0cF9bpaN .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tm0cF9bpaN .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-tm0cF9bpaN .counter-container ol li:before {
  position: absolute;
  left: -56px;
  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: #000000;
  background: #ffb800;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-tm0cF9bpaN .mbr-text {
  color: #0b1b56;
  text-align: left;
}
.cid-to2JruHeEA .container,
.cid-to2JruHeEA .container-fluid {
  padding: 5px;
  width: 100% !important;
  max-width: 100% !important;
  max-height: 70% !important;
}
.cid-to2JruHeEA .video-wrapper iframe {
  width: 100%;
  height: 50%;
}
.cid-to2JruHeEA .app-video-wrapper:before {
  font-size: 16px;
  padding: 0px 0px 0px 0px;
  background-color: #fff0;
  color: #fff0;
  line-height: 10px;
  text-shadow: none;
}
