body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-7 {
    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.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e85a4f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e85a4f !important;
  border-color: #e85a4f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #c6261a !important;
  border-color: #c6261a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c6261a !important;
  border-color: #c6261a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d8c3a5 !important;
  border-color: #d8c3a5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #be9b69 !important;
  border-color: #be9b69 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #be9b69 !important;
  border-color: #be9b69 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e85a4f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c6261a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e85a4f !important;
  border-color: #e85a4f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d8c3a5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #be9b69 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #d8c3a5 !important;
  border-color: #d8c3a5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e85a4f !important;
}
.text-secondary {
  color: #d8c3a5 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b92418 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b9945e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e85a4f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e85a4f;
  border-color: #e85a4f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e85a4f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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;
}
.form-control {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e85a4f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e85a4f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e85a4f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e85a4f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e85a4f;
  border-bottom-color: #e85a4f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #e85a4f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #d8c3a5 !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%;
  width: 100%;
  height: auto;
}
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='%23e85a4f' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #fafafa !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFF0ciwnEL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ve7UimuHxL {
  background-image: url("../../../assets/images/cape-town-travel-1.jpeg?v=1W5HbO");
}
.cid-ve7UimuHxL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve7UimuHxL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve7UimuHxL .mbr-section-title {
  color: #ff6666;
  text-align: center;
}
.cid-ve7UimuHxL .mbr-text,
.cid-ve7UimuHxL .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ve7JnrMY4R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ve7JnrMY4R .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ve7VglhLt5 {
  background-color: #ffffff;
}
.cid-ve7VglhLt5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve7VglhLt5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve7VglhLt5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve7VglhLt5 .row {
  flex-direction: row-reverse;
}
.cid-ve7VglhLt5 img {
  width: 100%;
}
.cid-ve7JLx9TH3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ve7JLx9TH3 .mbr-section-subtitle {
  text-align: left;
  color: #e43f3f;
}
.cid-ve7X7Xgm68 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ve7X7Xgm68 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ve7LDVzwwv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ve7LDVzwwv .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ve82e3DpcK {
  background-color: #ffffff;
}
.cid-ve82e3DpcK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve82e3DpcK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve82e3DpcK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve82e3DpcK .row {
  flex-direction: row-reverse;
}
.cid-ve82e3DpcK img {
  width: 100%;
}
.cid-ve81wI0LCY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-ve81wI0LCY .mbr-text {
  color: #ffffff;
}
.cid-ve81wI0LCY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ve81ICk75p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ve81J0v6Rd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-ve81J0v6Rd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ve81J0v6Rd .mbr-text {
  color: #ffffff;
}
.cid-ve81TCLHQJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ve7N77AYlO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ve7N77AYlO .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ve82weZlC3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve82weZlC3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve82weZlC3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve82weZlC3 .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve82weZlC3 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve82weZlC3 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve82weZlC3 .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve82weZlC3 .mbr-text,
.cid-ve82weZlC3 .mbr-section-btn {
  color: #ffffff;
}
.cid-ve82weZlC3 .card-title,
.cid-ve82weZlC3 .card-box {
  text-align: left;
}
.cid-ve82yrz0aL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve82yrz0aL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve82yrz0aL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve82yrz0aL .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve82yrz0aL .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve82yrz0aL .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve82yrz0aL .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve82yrz0aL .mbr-text,
.cid-ve82yrz0aL .mbr-section-btn {
  color: #232323;
}
.cid-ve82yrz0aL .card-title,
.cid-ve82yrz0aL .card-box {
  text-align: left;
  color: #000000;
}
.cid-ve82yZfVfI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve82yZfVfI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve82yZfVfI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve82yZfVfI .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve82yZfVfI .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve82yZfVfI .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve82yZfVfI .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve82yZfVfI .mbr-text,
.cid-ve82yZfVfI .mbr-section-btn {
  color: #ffffff;
}
.cid-ve82yZfVfI .card-title,
.cid-ve82yZfVfI .card-box {
  text-align: left;
}
.cid-ve82zcXThO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve82zcXThO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve82zcXThO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve82zcXThO .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve82zcXThO .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve82zcXThO .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve82zcXThO .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve82zcXThO .mbr-text,
.cid-ve82zcXThO .mbr-section-btn {
  color: #232323;
}
.cid-ve82zcXThO .card-title,
.cid-ve82zcXThO .card-box {
  text-align: left;
  color: #232323;
}
.cid-ve82zoESim {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve82zoESim .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve82zoESim .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve82zoESim .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve82zoESim .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve82zoESim .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve82zoESim .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve82zoESim .mbr-text,
.cid-ve82zoESim .mbr-section-btn {
  color: #ffffff;
}
.cid-ve82zoESim .card-title,
.cid-ve82zoESim .card-box {
  text-align: left;
}
.cid-ve830AuNvW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve830AuNvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve830AuNvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve830AuNvW .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve830AuNvW .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve830AuNvW .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve830AuNvW .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve830AuNvW .mbr-text,
.cid-ve830AuNvW .mbr-section-btn {
  color: #000000;
}
.cid-ve830AuNvW .card-title,
.cid-ve830AuNvW .card-box {
  text-align: left;
  color: #232323;
}
.cid-ve8310pQCx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve8310pQCx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve8310pQCx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve8310pQCx .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve8310pQCx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve8310pQCx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve8310pQCx .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve8310pQCx .mbr-text,
.cid-ve8310pQCx .mbr-section-btn {
  color: #ffffff;
}
.cid-ve8310pQCx .card-title,
.cid-ve8310pQCx .card-box {
  text-align: left;
}
.cid-ve831n8DS1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve831n8DS1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve831n8DS1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve831n8DS1 .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve831n8DS1 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve831n8DS1 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve831n8DS1 .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve831n8DS1 .mbr-text,
.cid-ve831n8DS1 .mbr-section-btn {
  color: #232323;
}
.cid-ve831n8DS1 .card-title,
.cid-ve831n8DS1 .card-box {
  text-align: left;
  color: #232323;
}
.cid-ve831ECeCr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve831ECeCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve831ECeCr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve831ECeCr .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve831ECeCr .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve831ECeCr .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve831ECeCr .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve831ECeCr .mbr-text,
.cid-ve831ECeCr .mbr-section-btn {
  color: #ffffff;
}
.cid-ve831ECeCr .card-title,
.cid-ve831ECeCr .card-box {
  text-align: left;
}
.cid-ve83urVd9d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ve83urVd9d .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve83urVd9d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve83urVd9d .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ve83urVd9d .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ve83urVd9d .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ve83urVd9d .card-wrapper {
    padding: 4rem;
  }
}
.cid-ve83urVd9d .mbr-text,
.cid-ve83urVd9d .mbr-section-btn {
  color: #232323;
}
.cid-ve83urVd9d .card-title,
.cid-ve83urVd9d .card-box {
  text-align: left;
  color: #232323;
}
.cid-ve846ZSBum {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ve7QpFobRL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ve7QpFobRL .mbr-section-title {
  color: #e43f3f;
}
.cid-ve7XNpH2pX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-ve7XNpH2pX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve7XNpH2pX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve7XNpH2pX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve7XNpH2pX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve7XNpH2pX .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve7XNpH2pX .mbr-section-title {
  color: #ffffff;
}
.cid-ve7XNpH2pX .mbr-text {
  color: #ffffff;
}
.cid-ve7XTiP9Bd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ve7XTiP9Bd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve7XTiP9Bd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve7XTiP9Bd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve7XTiP9Bd .row {
  flex-direction: row-reverse;
}
.cid-ve7XTiP9Bd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve7XTiP9Bd .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve7Y4GTeA0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-ve7Y4GTeA0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve7Y4GTeA0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve7Y4GTeA0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve7Y4GTeA0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve7Y4GTeA0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve7Y4GTeA0 .mbr-section-title {
  color: #ffffff;
}
.cid-ve7Y4GTeA0 .mbr-text {
  color: #ffffff;
}
.cid-ve7Y3pPMoE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ve7Y3pPMoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve7Y3pPMoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve7Y3pPMoE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve7Y3pPMoE .row {
  flex-direction: row-reverse;
}
.cid-ve7Y3pPMoE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve7Y3pPMoE .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve7YbOWuGH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-ve7YbOWuGH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve7YbOWuGH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve7YbOWuGH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve7YbOWuGH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve7YbOWuGH .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve7YbOWuGH .mbr-section-title {
  color: #ffffff;
}
.cid-ve7YbOWuGH .mbr-text {
  color: #ffffff;
}
.cid-ve8021GrIg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ve8021GrIg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve8021GrIg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve8021GrIg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve8021GrIg .row {
  flex-direction: row-reverse;
}
.cid-ve8021GrIg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve8021GrIg .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve802vXKaE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-ve802vXKaE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve802vXKaE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve802vXKaE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve802vXKaE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve802vXKaE .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve802vXKaE .mbr-section-title {
  color: #ffffff;
}
.cid-ve802vXKaE .mbr-text {
  color: #fafafa;
}
.cid-ve7YHj6RX5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ve7RwKbpJv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ve7RwKbpJv .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ve8lU5Myip {
  background-color: #fafafa;
}
.cid-ve8lU5Myip .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve8lU5Myip .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve8lU5Myip .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve8lU5Myip .row {
  flex-direction: row-reverse;
}
.cid-ve8lU5Myip img {
  width: 100%;
}
.cid-ve7RRN3pzJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ve7RRN3pzJ .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ve7RSBcX8s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ve7RSBcX8s .mbr-section-title {
  color: #e43f3f;
}
.cid-ve89hyhqDe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ff6666;
}
.cid-ve89hyhqDe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve89hyhqDe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve89hyhqDe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve89hyhqDe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve89hyhqDe .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve89hyhqDe .mbr-section-title {
  color: #ffffff;
}
.cid-ve89hyhqDe .mbr-text {
  color: #ffffff;
}
.cid-ve89ibOhxU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-ve89ibOhxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve89ibOhxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve89ibOhxU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve89ibOhxU .row {
  flex-direction: row-reverse;
}
.cid-ve89ibOhxU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve89ibOhxU .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve89Mu0wJ3 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ff6666;
}
.cid-ve89Mu0wJ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve89Mu0wJ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve89Mu0wJ3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve89Mu0wJ3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve89Mu0wJ3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve89Mu0wJ3 .mbr-section-title {
  color: #ffffff;
}
.cid-ve89Mu0wJ3 .mbr-text {
  color: #ffffff;
}
.cid-ve89Na3L4L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-ve89Na3L4L .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve89Na3L4L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve89Na3L4L .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve89Na3L4L .row {
  flex-direction: row-reverse;
}
.cid-ve89Na3L4L img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve89Na3L4L .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve8abCYfPY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ff6666;
}
.cid-ve8abCYfPY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve8abCYfPY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve8abCYfPY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve8abCYfPY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve8abCYfPY .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve8abCYfPY .mbr-section-title {
  color: #ffffff;
}
.cid-ve8abCYfPY .mbr-text {
  color: #ffffff;
}
.cid-ve8acdzfQz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ve8acdzfQz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve8acdzfQz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ve8acdzfQz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ve8acdzfQz .row {
  flex-direction: row-reverse;
}
.cid-ve8acdzfQz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ve8acdzfQz .text-wrapper {
    padding: 2rem;
  }
}
.cid-ve7SpEVTOn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ve7SpEVTOn .mbr-section-subtitle {
  color: #232323;
}
.cid-ve7SpEVTOn .mbr-text {
  color: #232323;
}
.cid-ve89mFHoyp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ve89mFHoyp .mbr-section-subtitle {
  color: #e43f3f;
  text-align: justify;
}
.cid-sFF75ZhH2d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFF75ZhH2d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFF75ZhH2d img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFF75ZhH2d .text-wrapper {
    padding: 2rem;
  }
}
.cid-sFF75ZhH2d .mbr-section-title {
  color: #e43f3f;
}
.cid-sFF75ZhH2d .mbr-text {
  color: #8e8d8a;
}
.cid-ve8qtJA7Tq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-veH5oYnNiQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veH5oYnNiQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-veH5oYnNiQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veH5oYnNiQ .mbr-section-title {
  color: #232323;
}
.cid-vecHZLBXQm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vecHZLBXQm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecHZLBXQm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecHZLBXQm .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vecHZLBXQm .bg-facebook:hover {
  background: #0b60cb;
}
.cid-vecHZLBXQm .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vecHZLBXQm .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vecHZLBXQm .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-vecHZLBXQm .bg-pinterest:hover {
  background: #b3001b;
}
.cid-vecHZLBXQm .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-vecHZLBXQm .bg-instagram:hover {
  background: #bd005c;
}
.cid-vecHZLBXQm .bg-behance {
  background: #0056ff;
  color: #ffffff;
}
.cid-vecHZLBXQm .bg-behance:hover {
  background: #0045cc;
}
.cid-vecHZLBXQm .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-vecHZLBXQm .bg-tiktok:hover {
  background: #000000;
}
.cid-vecHZLBXQm .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-vecHZLBXQm .bg-youtube:hover {
  background: #cc0000;
}
.cid-vecHZLBXQm .bg-twitch {
  background: #9146ff;
  color: #ffffff;
}
.cid-vecHZLBXQm .bg-twitch:hover {
  background: #7313ff;
}
.cid-vecHZLBXQm .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-vecHZLBXQm [class^="socicon-"]:before,
.cid-vecHZLBXQm [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sFF3CYc3p7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vecKnxe1Sz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vecKnxe1Sz nav.navbar {
  position: fixed;
}
.cid-vecKnxe1Sz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vecKnxe1Sz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vecKnxe1Sz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vecKnxe1Sz .dropdown-item:hover,
.cid-vecKnxe1Sz .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-vecKnxe1Sz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vecKnxe1Sz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vecKnxe1Sz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vecKnxe1Sz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vecKnxe1Sz .nav-link {
  position: relative;
}
.cid-vecKnxe1Sz .container {
  display: flex;
  margin: auto;
}
.cid-vecKnxe1Sz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vecKnxe1Sz .dropdown-menu,
.cid-vecKnxe1Sz .navbar.opened {
  background: #fafafa !important;
}
.cid-vecKnxe1Sz .nav-item:focus,
.cid-vecKnxe1Sz .nav-link:focus {
  outline: none;
}
.cid-vecKnxe1Sz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vecKnxe1Sz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vecKnxe1Sz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vecKnxe1Sz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vecKnxe1Sz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vecKnxe1Sz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vecKnxe1Sz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-vecKnxe1Sz .navbar.opened {
  transition: all 0.3s;
}
.cid-vecKnxe1Sz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vecKnxe1Sz .navbar .navbar-logo img {
  width: auto;
}
.cid-vecKnxe1Sz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vecKnxe1Sz .navbar.collapsed {
  justify-content: center;
}
.cid-vecKnxe1Sz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vecKnxe1Sz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vecKnxe1Sz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-vecKnxe1Sz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vecKnxe1Sz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vecKnxe1Sz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vecKnxe1Sz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vecKnxe1Sz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vecKnxe1Sz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vecKnxe1Sz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vecKnxe1Sz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vecKnxe1Sz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vecKnxe1Sz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vecKnxe1Sz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vecKnxe1Sz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vecKnxe1Sz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vecKnxe1Sz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vecKnxe1Sz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vecKnxe1Sz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vecKnxe1Sz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vecKnxe1Sz .navbar.navbar-short {
  min-height: 60px;
}
.cid-vecKnxe1Sz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vecKnxe1Sz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vecKnxe1Sz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vecKnxe1Sz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vecKnxe1Sz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vecKnxe1Sz .dropdown-item.active,
.cid-vecKnxe1Sz .dropdown-item:active {
  background-color: transparent;
}
.cid-vecKnxe1Sz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vecKnxe1Sz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vecKnxe1Sz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vecKnxe1Sz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-vecKnxe1Sz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vecKnxe1Sz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vecKnxe1Sz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vecKnxe1Sz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vecKnxe1Sz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vecKnxe1Sz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vecKnxe1Sz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vecKnxe1Sz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vecKnxe1Sz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vecKnxe1Sz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vecKnxe1Sz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vecKnxe1Sz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vecKnxe1Sz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vecKnxe1Sz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vecKnxe1Sz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vecKnxe1Sz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vecKnxe1Sz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vecKnxe1Sz .navbar {
    height: 70px;
  }
  .cid-vecKnxe1Sz .navbar.opened {
    height: auto;
  }
  .cid-vecKnxe1Sz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vecKnxMLIe {
  background-image: url("../../../assets/images/cape-town-travel-1.jpeg?v=1W5HbO");
}
.cid-vecKnxMLIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnxMLIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecKnxMLIe .mbr-section-title {
  color: #ff6666;
  text-align: center;
}
.cid-vecKnxMLIe .mbr-text,
.cid-vecKnxMLIe .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vecKnygG4Z {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vecKnygG4Z .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vecL6rul4B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vecL6rul4B .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vecKnyCRMh {
  background-color: #ffffff;
}
.cid-vecKnyCRMh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnyCRMh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vecKnyCRMh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vecKnyCRMh .row {
  flex-direction: row-reverse;
}
.cid-vecKnyCRMh img {
  width: 100%;
}
.cid-vecKnz45oR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vecKnz45oR .mbr-section-subtitle {
  text-align: left;
  color: #e43f3f;
}
.cid-ved0JvPNXC {
  background-color: #ffffff;
}
.cid-ved0JvPNXC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ved0JvPNXC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ved0JvPNXC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ved0JvPNXC .row {
  flex-direction: row-reverse;
}
.cid-ved0JvPNXC img {
  width: 100%;
}
.cid-vecKnzpCKj {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vecKnzpCKj .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vecODoIEh4 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vecODoIEh4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecODoIEh4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecODoIEh4 .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecODoIEh4 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecODoIEh4 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecODoIEh4 .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecODoIEh4 .mbr-text,
.cid-vecODoIEh4 .mbr-section-btn {
  color: #ffffff;
}
.cid-vecODoIEh4 .card-title,
.cid-vecODoIEh4 .card-box {
  text-align: left;
}
.cid-vecOI80izf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vecOI80izf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecOI80izf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecOI80izf .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecOI80izf .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecOI80izf .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecOI80izf .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecOI80izf .mbr-text,
.cid-vecOI80izf .mbr-section-btn {
  color: #ffffff;
}
.cid-vecOI80izf .card-title,
.cid-vecOI80izf .card-box {
  text-align: left;
}
.cid-vecOIrnmX3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vecOIrnmX3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecOIrnmX3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecOIrnmX3 .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecOIrnmX3 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecOIrnmX3 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecOIrnmX3 .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecOIrnmX3 .mbr-text,
.cid-vecOIrnmX3 .mbr-section-btn {
  color: #ffffff;
}
.cid-vecOIrnmX3 .card-title,
.cid-vecOIrnmX3 .card-box {
  text-align: left;
}
.cid-vecOIIp4Kr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vecOIIp4Kr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecOIIp4Kr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecOIIp4Kr .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecOIIp4Kr .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecOIIp4Kr .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecOIIp4Kr .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecOIIp4Kr .mbr-text,
.cid-vecOIIp4Kr .mbr-section-btn {
  color: #ffffff;
}
.cid-vecOIIp4Kr .card-title,
.cid-vecOIIp4Kr .card-box {
  text-align: left;
}
.cid-vecPqe1Bgd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vecPqe1Bgd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecPqe1Bgd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecPqe1Bgd .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecPqe1Bgd .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecPqe1Bgd .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecPqe1Bgd .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecPqe1Bgd .mbr-text,
.cid-vecPqe1Bgd .mbr-section-btn {
  color: #ffffff;
}
.cid-vecPqe1Bgd .card-title,
.cid-vecPqe1Bgd .card-box {
  text-align: left;
}
.cid-vecPqvYaom {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vecPqvYaom .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecPqvYaom .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecPqvYaom .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecPqvYaom .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecPqvYaom .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecPqvYaom .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecPqvYaom .mbr-text,
.cid-vecPqvYaom .mbr-section-btn {
  color: #ffffff;
}
.cid-vecPqvYaom .card-title,
.cid-vecPqvYaom .card-box {
  text-align: left;
}
.cid-vecKnzMQ2J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vecKnzMQ2J .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vecKnAbFM6 {
  background-color: #ffffff;
}
.cid-vecKnAbFM6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnAbFM6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vecKnAbFM6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vecKnAbFM6 .row {
  flex-direction: row-reverse;
}
.cid-vecKnAbFM6 img {
  width: 100%;
}
.cid-vecKnCzBC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vecKnCzBC0 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vecQoangeU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vecKnDmf5v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vecKnDmf5v .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnDmf5v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecKnDmf5v .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecKnDmf5v .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecKnDmf5v .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecKnDmf5v .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecKnDmf5v .mbr-text,
.cid-vecKnDmf5v .mbr-section-btn {
  color: #ffffff;
}
.cid-vecKnDmf5v .card-title,
.cid-vecKnDmf5v .card-box {
  text-align: left;
}
.cid-vecKnE0gAa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vecKnE0gAa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnE0gAa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecKnE0gAa .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecKnE0gAa .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecKnE0gAa .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecKnE0gAa .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecKnE0gAa .mbr-text,
.cid-vecKnE0gAa .mbr-section-btn {
  color: #232323;
}
.cid-vecKnE0gAa .card-title,
.cid-vecKnE0gAa .card-box {
  text-align: left;
  color: #000000;
}
.cid-vecKnEDZkx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vecKnEDZkx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnEDZkx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecKnEDZkx .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecKnEDZkx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecKnEDZkx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecKnEDZkx .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecKnEDZkx .mbr-text,
.cid-vecKnEDZkx .mbr-section-btn {
  color: #ffffff;
}
.cid-vecKnEDZkx .card-title,
.cid-vecKnEDZkx .card-box {
  text-align: left;
}
.cid-vecKnFeWMb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vecKnFeWMb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnFeWMb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecKnFeWMb .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecKnFeWMb .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecKnFeWMb .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecKnFeWMb .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecKnFeWMb .mbr-text,
.cid-vecKnFeWMb .mbr-section-btn {
  color: #232323;
}
.cid-vecKnFeWMb .card-title,
.cid-vecKnFeWMb .card-box {
  text-align: left;
  color: #232323;
}
.cid-vecKnFR6a9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vecKnFR6a9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnFR6a9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecKnFR6a9 .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vecKnFR6a9 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vecKnFR6a9 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vecKnFR6a9 .card-wrapper {
    padding: 4rem;
  }
}
.cid-vecKnFR6a9 .mbr-text,
.cid-vecKnFR6a9 .mbr-section-btn {
  color: #ffffff;
}
.cid-vecKnFR6a9 .card-title,
.cid-vecKnFR6a9 .card-box {
  text-align: left;
}
.cid-vecKnJRql1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vecKnKeAYz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vecKnKeAYz .mbr-section-title {
  color: #e43f3f;
}
.cid-vecKnKB4WS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-vecKnKB4WS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnKB4WS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vecKnKB4WS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vecKnKB4WS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vecKnKB4WS .text-wrapper {
    padding: 2rem;
  }
}
.cid-vecKnKB4WS .mbr-section-title {
  color: #ffffff;
}
.cid-vecKnKB4WS .mbr-text {
  color: #ffffff;
}
.cid-vecKnL68G4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vecKnL68G4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnL68G4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vecKnL68G4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vecKnL68G4 .row {
  flex-direction: row-reverse;
}
.cid-vecKnL68G4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vecKnL68G4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-vecKnLwFF4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-vecKnLwFF4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnLwFF4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vecKnLwFF4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vecKnLwFF4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vecKnLwFF4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-vecKnLwFF4 .mbr-section-title {
  color: #ffffff;
}
.cid-vecKnLwFF4 .mbr-text {
  color: #ffffff;
}
.cid-vecKnMiQ7x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vecKnMiQ7x .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnMiQ7x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vecKnMiQ7x .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vecKnMiQ7x .row {
  flex-direction: row-reverse;
}
.cid-vecKnMiQ7x img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vecKnMiQ7x .text-wrapper {
    padding: 2rem;
  }
}
.cid-vecKnMJ5gz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vecKnMJ5gz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnMJ5gz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vecKnMJ5gz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vecKnMJ5gz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vecKnMJ5gz .text-wrapper {
    padding: 2rem;
  }
}
.cid-vecKnMJ5gz .mbr-section-title {
  color: #ffffff;
}
.cid-vecKnMJ5gz .mbr-text {
  color: #ffffff;
}
.cid-vecKnOsGzF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vecKnOsGzF .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vecKnOO8uk {
  background-color: #fafafa;
}
.cid-vecKnOO8uk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnOO8uk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vecKnOO8uk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vecKnOO8uk .row {
  flex-direction: row-reverse;
}
.cid-vecKnOO8uk img {
  width: 100%;
}
.cid-vecKnTvbIG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vecKnTVlHb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vecKnTVlHb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vecKnTVlHb img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vecKnTVlHb .text-wrapper {
    padding: 2rem;
  }
}
.cid-vecKnTVlHb .mbr-section-title {
  color: #e43f3f;
}
.cid-vecKnTVlHb .mbr-text {
  color: #8e8d8a;
}
.cid-veH86lOzzQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veH86lOzzQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-veH86lOzzQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecKnUown5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vecKnUown5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vecKnUown5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vecKnUown5 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vecKnUown5 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-vecKnUown5 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vecKnUown5 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vecKnUown5 .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-vecKnUown5 .bg-pinterest:hover {
  background: #b3001b;
}
.cid-vecKnUown5 .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-vecKnUown5 .bg-instagram:hover {
  background: #bd005c;
}
.cid-vecKnUown5 .bg-behance {
  background: #0056ff;
  color: #ffffff;
}
.cid-vecKnUown5 .bg-behance:hover {
  background: #0045cc;
}
.cid-vecKnUown5 .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-vecKnUown5 .bg-tiktok:hover {
  background: #000000;
}
.cid-vecKnUown5 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-vecKnUown5 .bg-youtube:hover {
  background: #cc0000;
}
.cid-vecKnUown5 .bg-twitch {
  background: #9146ff;
  color: #ffffff;
}
.cid-vecKnUown5 .bg-twitch:hover {
  background: #7313ff;
}
.cid-vecKnUown5 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-vecKnUown5 [class^="socicon-"]:before,
.cid-vecKnUown5 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vecKnVqrcP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vedjXDjhZU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vedjXDjhZU nav.navbar {
  position: fixed;
}
.cid-vedjXDjhZU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedjXDjhZU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vedjXDjhZU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vedjXDjhZU .dropdown-item:hover,
.cid-vedjXDjhZU .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-vedjXDjhZU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vedjXDjhZU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vedjXDjhZU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vedjXDjhZU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vedjXDjhZU .nav-link {
  position: relative;
}
.cid-vedjXDjhZU .container {
  display: flex;
  margin: auto;
}
.cid-vedjXDjhZU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vedjXDjhZU .dropdown-menu,
.cid-vedjXDjhZU .navbar.opened {
  background: #fafafa !important;
}
.cid-vedjXDjhZU .nav-item:focus,
.cid-vedjXDjhZU .nav-link:focus {
  outline: none;
}
.cid-vedjXDjhZU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedjXDjhZU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedjXDjhZU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedjXDjhZU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedjXDjhZU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedjXDjhZU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedjXDjhZU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-vedjXDjhZU .navbar.opened {
  transition: all 0.3s;
}
.cid-vedjXDjhZU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vedjXDjhZU .navbar .navbar-logo img {
  width: auto;
}
.cid-vedjXDjhZU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedjXDjhZU .navbar.collapsed {
  justify-content: center;
}
.cid-vedjXDjhZU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedjXDjhZU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vedjXDjhZU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-vedjXDjhZU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedjXDjhZU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedjXDjhZU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vedjXDjhZU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedjXDjhZU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vedjXDjhZU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vedjXDjhZU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedjXDjhZU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedjXDjhZU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedjXDjhZU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vedjXDjhZU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vedjXDjhZU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedjXDjhZU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vedjXDjhZU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vedjXDjhZU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vedjXDjhZU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedjXDjhZU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vedjXDjhZU .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedjXDjhZU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedjXDjhZU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedjXDjhZU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedjXDjhZU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vedjXDjhZU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedjXDjhZU .dropdown-item.active,
.cid-vedjXDjhZU .dropdown-item:active {
  background-color: transparent;
}
.cid-vedjXDjhZU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vedjXDjhZU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedjXDjhZU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedjXDjhZU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-vedjXDjhZU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedjXDjhZU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedjXDjhZU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vedjXDjhZU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedjXDjhZU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vedjXDjhZU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vedjXDjhZU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedjXDjhZU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedjXDjhZU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedjXDjhZU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedjXDjhZU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedjXDjhZU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedjXDjhZU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedjXDjhZU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedjXDjhZU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vedjXDjhZU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vedjXDjhZU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedjXDjhZU .navbar {
    height: 70px;
  }
  .cid-vedjXDjhZU .navbar.opened {
    height: auto;
  }
  .cid-vedjXDjhZU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedjXE0J3b {
  background-image: url("../../../assets/images/cape-town-travel-1.jpeg?v=1W5HbO");
}
.cid-vedjXE0J3b .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXE0J3b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedjXE0J3b .mbr-section-title {
  color: #ff6666;
  text-align: center;
}
.cid-vedjXE0J3b .mbr-text,
.cid-vedjXE0J3b .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vedjXEySIz {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vedjXEySIz .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedjXFq3dn {
  background-color: #ffffff;
}
.cid-vedjXFq3dn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXFq3dn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vedjXFq3dn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vedjXFq3dn .row {
  flex-direction: row-reverse;
}
.cid-vedjXFq3dn img {
  width: 100%;
}
.cid-vedjXF4Nnf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vedjXF4Nnf .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedjXG2xUu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff6666;
}
.cid-vedjXG2xUu .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-vedjXG2xUu .mbr-text {
  color: #ffffff;
}
.cid-vedqr83cn7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vedqroBk2r {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-vedqroBk2r .mbr-text {
  color: #ffffff;
}
.cid-vedqroBk2r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vedqq99e8P {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vedjXGtd6U {
  background-color: #ffffff;
}
.cid-vedjXGtd6U .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXGtd6U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vedjXGtd6U .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vedjXGtd6U .row {
  flex-direction: row-reverse;
}
.cid-vedjXGtd6U img {
  width: 100%;
}
.cid-vedjXGVEuf {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vedjXGVEuf .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedpzTVyWo {
  background-color: #ffffff;
}
.cid-vedpzTVyWo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedpzTVyWo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vedpzTVyWo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vedpzTVyWo .row {
  flex-direction: row-reverse;
}
.cid-vedpzTVyWo img {
  width: 100%;
}
.cid-vedjXKGgMs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vedjXKGgMs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedjXL6kxq {
  background-color: #ffffff;
}
.cid-vedjXL6kxq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXL6kxq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vedjXL6kxq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vedjXL6kxq .row {
  flex-direction: row-reverse;
}
.cid-vedjXL6kxq img {
  width: 100%;
}
.cid-vedjXLx7Fb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vedjXLx7Fb .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedpy8c2B3 {
  background-color: #ffffff;
}
.cid-vedpy8c2B3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedpy8c2B3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vedpy8c2B3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vedpy8c2B3 .row {
  flex-direction: row-reverse;
}
.cid-vedpy8c2B3 img {
  width: 100%;
}
.cid-vedjXM1cTP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vedjXMwkRI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vedjXMwkRI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXMwkRI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedjXMwkRI .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vedjXMwkRI .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vedjXMwkRI .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vedjXMwkRI .card-wrapper {
    padding: 4rem;
  }
}
.cid-vedjXMwkRI .mbr-text,
.cid-vedjXMwkRI .mbr-section-btn {
  color: #ffffff;
}
.cid-vedjXMwkRI .card-title,
.cid-vedjXMwkRI .card-box {
  text-align: left;
}
.cid-vedjXN2fYD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vedjXN2fYD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXN2fYD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedjXN2fYD .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vedjXN2fYD .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vedjXN2fYD .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vedjXN2fYD .card-wrapper {
    padding: 4rem;
  }
}
.cid-vedjXN2fYD .mbr-text,
.cid-vedjXN2fYD .mbr-section-btn {
  color: #232323;
}
.cid-vedjXN2fYD .card-title,
.cid-vedjXN2fYD .card-box {
  text-align: left;
  color: #000000;
}
.cid-vedjXNtFBj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vedjXNtFBj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXNtFBj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedjXNtFBj .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vedjXNtFBj .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vedjXNtFBj .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vedjXNtFBj .card-wrapper {
    padding: 4rem;
  }
}
.cid-vedjXNtFBj .mbr-text,
.cid-vedjXNtFBj .mbr-section-btn {
  color: #ffffff;
}
.cid-vedjXNtFBj .card-title,
.cid-vedjXNtFBj .card-box {
  text-align: left;
}
.cid-vedjXNWCiN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vedjXNWCiN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXNWCiN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedjXNWCiN .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vedjXNWCiN .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vedjXNWCiN .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vedjXNWCiN .card-wrapper {
    padding: 4rem;
  }
}
.cid-vedjXNWCiN .mbr-text,
.cid-vedjXNWCiN .mbr-section-btn {
  color: #232323;
}
.cid-vedjXNWCiN .card-title,
.cid-vedjXNWCiN .card-box {
  text-align: left;
  color: #232323;
}
.cid-vedjXOpy9D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vedjXOpy9D .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXOpy9D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedjXOpy9D .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vedjXOpy9D .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vedjXOpy9D .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vedjXOpy9D .card-wrapper {
    padding: 4rem;
  }
}
.cid-vedjXOpy9D .mbr-text,
.cid-vedjXOpy9D .mbr-section-btn {
  color: #ffffff;
}
.cid-vedjXOpy9D .card-title,
.cid-vedjXOpy9D .card-box {
  text-align: left;
}
.cid-vedjXOPyde {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vedjXOPyde .mbr-section-title {
  color: #e43f3f;
}
.cid-vedjXPhBcr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vedjXPhBcr .mbr-section-title {
  color: #e43f3f;
}
.cid-vedjXSQ853 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vedjXSQ853 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedFUi7fb7 {
  background-color: #ffffff;
}
.cid-vedFUi7fb7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedFUi7fb7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vedFUi7fb7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vedFUi7fb7 .row {
  flex-direction: row-reverse;
}
.cid-vedFUi7fb7 img {
  width: 100%;
}
.cid-vedo9z5mb9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vedo9z5mb9 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedoflLO5g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vedoflLO5g .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedFSL2kQG {
  background-color: #ffffff;
}
.cid-vedFSL2kQG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedFSL2kQG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vedFSL2kQG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vedFSL2kQG .row {
  flex-direction: row-reverse;
}
.cid-vedFSL2kQG img {
  width: 100%;
}
.cid-vedolFEukx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vedolFEukx .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedpaisiZs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vedpaisiZs .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-vedjXTl3AQ {
  background-color: #fafafa;
}
.cid-vedjXTl3AQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXTl3AQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vedjXTl3AQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vedjXTl3AQ .row {
  flex-direction: row-reverse;
}
.cid-vedjXTl3AQ img {
  width: 100%;
}
.cid-vedjXTXIsf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vedjXUzpix {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vedjXUzpix .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vedjXUzpix img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vedjXUzpix .text-wrapper {
    padding: 2rem;
  }
}
.cid-vedjXUzpix .mbr-section-title {
  color: #e43f3f;
}
.cid-vedjXUzpix .mbr-text {
  color: #8e8d8a;
}
.cid-veH9UNAGFh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veH9UNAGFh .mbr-fallback-image.disabled {
  display: none;
}
.cid-veH9UNAGFh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedjXV9e9u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vedjXV9e9u .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedjXV9e9u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedjXV9e9u .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vedjXV9e9u .bg-facebook:hover {
  background: #0b60cb;
}
.cid-vedjXV9e9u .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vedjXV9e9u .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vedjXV9e9u .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-vedjXV9e9u .bg-pinterest:hover {
  background: #b3001b;
}
.cid-vedjXV9e9u .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-vedjXV9e9u .bg-instagram:hover {
  background: #bd005c;
}
.cid-vedjXV9e9u .bg-behance {
  background: #0056ff;
  color: #ffffff;
}
.cid-vedjXV9e9u .bg-behance:hover {
  background: #0045cc;
}
.cid-vedjXV9e9u .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-vedjXV9e9u .bg-tiktok:hover {
  background: #000000;
}
.cid-vedjXV9e9u .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-vedjXV9e9u .bg-youtube:hover {
  background: #cc0000;
}
.cid-vedjXV9e9u .bg-twitch {
  background: #9146ff;
  color: #ffffff;
}
.cid-vedjXV9e9u .bg-twitch:hover {
  background: #7313ff;
}
.cid-vedjXV9e9u .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-vedjXV9e9u [class^="socicon-"]:before,
.cid-vedjXV9e9u [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vedjXVUduH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-veHhXrVHmY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-veHhXrVHmY nav.navbar {
  position: fixed;
}
.cid-veHhXrVHmY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veHhXrVHmY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veHhXrVHmY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veHhXrVHmY .dropdown-item:hover,
.cid-veHhXrVHmY .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-veHhXrVHmY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veHhXrVHmY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veHhXrVHmY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veHhXrVHmY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veHhXrVHmY .nav-link {
  position: relative;
}
.cid-veHhXrVHmY .container {
  display: flex;
  margin: auto;
}
.cid-veHhXrVHmY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veHhXrVHmY .dropdown-menu,
.cid-veHhXrVHmY .navbar.opened {
  background: #fafafa !important;
}
.cid-veHhXrVHmY .nav-item:focus,
.cid-veHhXrVHmY .nav-link:focus {
  outline: none;
}
.cid-veHhXrVHmY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veHhXrVHmY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veHhXrVHmY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veHhXrVHmY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veHhXrVHmY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veHhXrVHmY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veHhXrVHmY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-veHhXrVHmY .navbar.opened {
  transition: all 0.3s;
}
.cid-veHhXrVHmY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veHhXrVHmY .navbar .navbar-logo img {
  width: auto;
}
.cid-veHhXrVHmY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veHhXrVHmY .navbar.collapsed {
  justify-content: center;
}
.cid-veHhXrVHmY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veHhXrVHmY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veHhXrVHmY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-veHhXrVHmY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veHhXrVHmY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veHhXrVHmY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-veHhXrVHmY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veHhXrVHmY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veHhXrVHmY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veHhXrVHmY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veHhXrVHmY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veHhXrVHmY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veHhXrVHmY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veHhXrVHmY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-veHhXrVHmY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veHhXrVHmY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veHhXrVHmY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veHhXrVHmY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veHhXrVHmY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veHhXrVHmY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veHhXrVHmY .navbar.navbar-short {
  min-height: 60px;
}
.cid-veHhXrVHmY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veHhXrVHmY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veHhXrVHmY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-veHhXrVHmY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veHhXrVHmY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veHhXrVHmY .dropdown-item.active,
.cid-veHhXrVHmY .dropdown-item:active {
  background-color: transparent;
}
.cid-veHhXrVHmY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veHhXrVHmY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veHhXrVHmY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veHhXrVHmY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-veHhXrVHmY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veHhXrVHmY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veHhXrVHmY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veHhXrVHmY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veHhXrVHmY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veHhXrVHmY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-veHhXrVHmY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veHhXrVHmY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veHhXrVHmY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veHhXrVHmY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veHhXrVHmY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veHhXrVHmY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veHhXrVHmY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veHhXrVHmY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veHhXrVHmY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veHhXrVHmY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veHhXrVHmY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-veHhXrVHmY .navbar {
    height: 70px;
  }
  .cid-veHhXrVHmY .navbar.opened {
    height: auto;
  }
  .cid-veHhXrVHmY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veHhXsG0gN {
  background-image: url("../../../assets/images/cape-town-travel-1.jpeg?v=1W5HbO");
}
.cid-veHhXsG0gN .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXsG0gN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veHhXsG0gN .mbr-section-title {
  color: #ff6666;
  text-align: center;
}
.cid-veHhXsG0gN .mbr-text,
.cid-veHhXsG0gN .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-veHhXtaihK {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veHhXtaihK .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veHhXtrdTK {
  background-color: #ffffff;
}
.cid-veHhXtrdTK .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXtrdTK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHhXtrdTK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHhXtrdTK .row {
  flex-direction: row-reverse;
}
.cid-veHhXtrdTK img {
  width: 100%;
}
.cid-veHhXtQ7xa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veHhXtQ7xa .mbr-section-subtitle {
  color: #232323;
}
.cid-veHhXtQ7xa .mbr-section-title {
  color: #e43f3f;
}
.cid-veHpwrFYkX {
  background-color: #ffffff;
}
.cid-veHpwrFYkX .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHpwrFYkX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHpwrFYkX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHpwrFYkX .row {
  flex-direction: row-reverse;
}
.cid-veHpwrFYkX img {
  width: 100%;
}
.cid-veHiNjCLQM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veHiNjCLQM .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veHhXu9uFu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff6666;
}
.cid-veHhXu9uFu .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-veHhXu9uFu .mbr-text {
  color: #ffffff;
}
.cid-veHhXuHq0r {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veHhXuTRcc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-veHhXuTRcc .mbr-text {
  color: #ffffff;
}
.cid-veHhXuTRcc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-veHhXv4pPb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veHjjldXxf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-veHjjldXxf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-veHjjldXxf .mbr-text {
  color: #ffffff;
}
.cid-veHhXvgByy {
  background-color: #ffffff;
}
.cid-veHhXvgByy .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXvgByy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHhXvgByy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHhXvgByy .row {
  flex-direction: row-reverse;
}
.cid-veHhXvgByy img {
  width: 100%;
}
.cid-veHhXvuF1k {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veHhXvuF1k .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veHhXvHM6v {
  background-color: #ffffff;
}
.cid-veHhXvHM6v .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXvHM6v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHhXvHM6v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHhXvHM6v .row {
  flex-direction: row-reverse;
}
.cid-veHhXvHM6v img {
  width: 100%;
}
.cid-veHhXvVNwT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-veHhXvVNwT .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veHhXw7lxn {
  background-color: #ffffff;
}
.cid-veHhXw7lxn .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXw7lxn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHhXw7lxn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHhXw7lxn .row {
  flex-direction: row-reverse;
}
.cid-veHhXw7lxn img {
  width: 100%;
}
.cid-veHhXwpFIW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veHhXwpFIW .mbr-section-subtitle {
  color: #232323;
}
.cid-veHhXwpFIW .mbr-section-title {
  color: #e43f3f;
}
.cid-veHjOvgSrS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veHjOvgSrS .mbr-section-subtitle {
  color: #232323;
}
.cid-veHk3zYGnE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veHk3zYGnE .mbr-section-subtitle {
  color: #232323;
}
.cid-veHhXwBnO6 {
  background-color: #ffffff;
}
.cid-veHhXwBnO6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXwBnO6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHhXwBnO6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHhXwBnO6 .row {
  flex-direction: row-reverse;
}
.cid-veHhXwBnO6 img {
  width: 100%;
}
.cid-veHhXwOG7O {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veHhXwOG7O .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veHr673PZG {
  background-color: #ffffff;
}
.cid-veHr673PZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHr673PZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHr673PZG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHr673PZG .row {
  flex-direction: row-reverse;
}
.cid-veHr673PZG img {
  width: 100%;
}
.cid-veHkITnyZV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veHkITnyZV .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veHqZNhfiQ {
  background-color: #ffffff;
}
.cid-veHqZNhfiQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHqZNhfiQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHqZNhfiQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHqZNhfiQ .row {
  flex-direction: row-reverse;
}
.cid-veHqZNhfiQ img {
  width: 100%;
}
.cid-veHl7PY1Or {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veHl7PY1Or .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veHraLLaX2 {
  background-color: #ffffff;
}
.cid-veHraLLaX2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHraLLaX2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHraLLaX2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHraLLaX2 .row {
  flex-direction: row-reverse;
}
.cid-veHraLLaX2 img {
  width: 100%;
}
.cid-veHlecgiAM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veHlecgiAM .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veHhXx1kCc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veHhXx1kCc .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXx1kCc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veHhXx1kCc .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veHhXx1kCc .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veHhXx1kCc .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veHhXx1kCc .card-wrapper {
    padding: 4rem;
  }
}
.cid-veHhXx1kCc .mbr-text,
.cid-veHhXx1kCc .mbr-section-btn {
  color: #ffffff;
}
.cid-veHhXx1kCc .card-title,
.cid-veHhXx1kCc .card-box {
  text-align: left;
}
.cid-veHhXxheS8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veHhXxheS8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXxheS8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veHhXxheS8 .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veHhXxheS8 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veHhXxheS8 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veHhXxheS8 .card-wrapper {
    padding: 4rem;
  }
}
.cid-veHhXxheS8 .mbr-text,
.cid-veHhXxheS8 .mbr-section-btn {
  color: #232323;
}
.cid-veHhXxheS8 .card-title,
.cid-veHhXxheS8 .card-box {
  text-align: left;
  color: #000000;
}
.cid-veHhXy56Wj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veHhXy56Wj .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXy56Wj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veHhXy56Wj .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veHhXy56Wj .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veHhXy56Wj .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veHhXy56Wj .card-wrapper {
    padding: 4rem;
  }
}
.cid-veHhXy56Wj .mbr-text,
.cid-veHhXy56Wj .mbr-section-btn {
  color: #ffffff;
}
.cid-veHhXy56Wj .card-title,
.cid-veHhXy56Wj .card-box {
  text-align: left;
}
.cid-veHhXxQtwS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veHhXxQtwS .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXxQtwS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veHhXxQtwS .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veHhXxQtwS .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veHhXxQtwS .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veHhXxQtwS .card-wrapper {
    padding: 4rem;
  }
}
.cid-veHhXxQtwS .mbr-text,
.cid-veHhXxQtwS .mbr-section-btn {
  color: #232323;
}
.cid-veHhXxQtwS .card-title,
.cid-veHhXxQtwS .card-box {
  text-align: left;
  color: #232323;
}
.cid-veHhXzHrUO {
  background-color: #ffffff;
}
.cid-veHhXzHrUO .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXzHrUO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHhXzHrUO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHhXzHrUO .row {
  flex-direction: row-reverse;
}
.cid-veHhXzHrUO img {
  width: 100%;
}
.cid-veHhXykmak {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veHhXykmak .mbr-section-title {
  color: #e43f3f;
}
.cid-veHqkeRaIB {
  background-color: #ffffff;
}
.cid-veHqkeRaIB .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHqkeRaIB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHqkeRaIB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHqkeRaIB .row {
  flex-direction: row-reverse;
}
.cid-veHqkeRaIB img {
  width: 100%;
}
.cid-veHhXywaEJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-veHhXywaEJ .mbr-section-title {
  color: #e43f3f;
}
.cid-veHhXyXF09 {
  background-color: #ffffff;
}
.cid-veHhXyXF09 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXyXF09 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHhXyXF09 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHhXyXF09 .row {
  flex-direction: row-reverse;
}
.cid-veHhXyXF09 img {
  width: 100%;
}
.cid-veHhXyKnnm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veHhXyKnnm .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veHrfMRsa1 {
  background-color: #ffffff;
}
.cid-veHrfMRsa1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHrfMRsa1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veHrfMRsa1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHrfMRsa1 .row {
  flex-direction: row-reverse;
}
.cid-veHrfMRsa1 img {
  width: 100%;
}
.cid-veHhXAILkq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-veHhXAVbXH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-veHhXAVbXH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veHhXAVbXH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-veHhXAVbXH .text-wrapper {
    padding: 2rem;
  }
}
.cid-veHhXAVbXH .mbr-section-title {
  color: #e43f3f;
}
.cid-veHhXAVbXH .mbr-text {
  color: #8e8d8a;
}
.cid-veHhXBiysm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veHhXBiysm .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXBiysm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veHhXBzjeS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veHhXBzjeS .mbr-fallback-image.disabled {
  display: none;
}
.cid-veHhXBzjeS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veHhXBzjeS .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-veHhXBzjeS .bg-facebook:hover {
  background: #0b60cb;
}
.cid-veHhXBzjeS .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-veHhXBzjeS .bg-twitter:hover {
  background: #0c85d0;
}
.cid-veHhXBzjeS .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-veHhXBzjeS .bg-pinterest:hover {
  background: #b3001b;
}
.cid-veHhXBzjeS .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-veHhXBzjeS .bg-instagram:hover {
  background: #bd005c;
}
.cid-veHhXBzjeS .bg-behance {
  background: #0056ff;
  color: #ffffff;
}
.cid-veHhXBzjeS .bg-behance:hover {
  background: #0045cc;
}
.cid-veHhXBzjeS .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-veHhXBzjeS .bg-tiktok:hover {
  background: #000000;
}
.cid-veHhXBzjeS .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-veHhXBzjeS .bg-youtube:hover {
  background: #cc0000;
}
.cid-veHhXBzjeS .bg-twitch {
  background: #9146ff;
  color: #ffffff;
}
.cid-veHhXBzjeS .bg-twitch:hover {
  background: #7313ff;
}
.cid-veHhXBzjeS .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-veHhXBzjeS [class^="socicon-"]:before,
.cid-veHhXBzjeS [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-veHhXBYwlS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-veM2bv1ShE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-veM2bv1ShE nav.navbar {
  position: fixed;
}
.cid-veM2bv1ShE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veM2bv1ShE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veM2bv1ShE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veM2bv1ShE .dropdown-item:hover,
.cid-veM2bv1ShE .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-veM2bv1ShE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veM2bv1ShE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veM2bv1ShE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veM2bv1ShE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veM2bv1ShE .nav-link {
  position: relative;
}
.cid-veM2bv1ShE .container {
  display: flex;
  margin: auto;
}
.cid-veM2bv1ShE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veM2bv1ShE .dropdown-menu,
.cid-veM2bv1ShE .navbar.opened {
  background: #fafafa !important;
}
.cid-veM2bv1ShE .nav-item:focus,
.cid-veM2bv1ShE .nav-link:focus {
  outline: none;
}
.cid-veM2bv1ShE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veM2bv1ShE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veM2bv1ShE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veM2bv1ShE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veM2bv1ShE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veM2bv1ShE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veM2bv1ShE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-veM2bv1ShE .navbar.opened {
  transition: all 0.3s;
}
.cid-veM2bv1ShE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veM2bv1ShE .navbar .navbar-logo img {
  width: auto;
}
.cid-veM2bv1ShE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veM2bv1ShE .navbar.collapsed {
  justify-content: center;
}
.cid-veM2bv1ShE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veM2bv1ShE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veM2bv1ShE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-veM2bv1ShE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veM2bv1ShE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veM2bv1ShE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-veM2bv1ShE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veM2bv1ShE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veM2bv1ShE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veM2bv1ShE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veM2bv1ShE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veM2bv1ShE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veM2bv1ShE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veM2bv1ShE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-veM2bv1ShE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veM2bv1ShE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veM2bv1ShE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veM2bv1ShE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veM2bv1ShE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veM2bv1ShE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veM2bv1ShE .navbar.navbar-short {
  min-height: 60px;
}
.cid-veM2bv1ShE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veM2bv1ShE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veM2bv1ShE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-veM2bv1ShE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veM2bv1ShE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veM2bv1ShE .dropdown-item.active,
.cid-veM2bv1ShE .dropdown-item:active {
  background-color: transparent;
}
.cid-veM2bv1ShE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veM2bv1ShE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veM2bv1ShE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veM2bv1ShE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-veM2bv1ShE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veM2bv1ShE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veM2bv1ShE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veM2bv1ShE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veM2bv1ShE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veM2bv1ShE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-veM2bv1ShE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veM2bv1ShE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veM2bv1ShE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veM2bv1ShE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veM2bv1ShE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veM2bv1ShE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veM2bv1ShE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veM2bv1ShE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veM2bv1ShE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veM2bv1ShE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veM2bv1ShE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-veM2bv1ShE .navbar {
    height: 70px;
  }
  .cid-veM2bv1ShE .navbar.opened {
    height: auto;
  }
  .cid-veM2bv1ShE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veM2bvOyij {
  background-image: url("../../../assets/images/cape-town-travel-1.jpeg?v=1W5HbO");
}
.cid-veM2bvOyij .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bvOyij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM2bvOyij .mbr-section-title {
  color: #ff6666;
  text-align: center;
}
.cid-veM2bvOyij .mbr-text,
.cid-veM2bvOyij .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-veM2bwc2Fq {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM2bwc2Fq .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veM2bwtft3 {
  background-color: #ffffff;
}
.cid-veM2bwtft3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bwtft3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2bwtft3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bwtft3 .row {
  flex-direction: row-reverse;
}
.cid-veM2bwtft3 img {
  width: 100%;
}
.cid-veM2bwIGZl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM2bwIGZl .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veM2bwIGZl .mbr-section-title {
  color: #e43f3f;
}
.cid-veM2bxicja {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-veM2bxicja .mbr-section-subtitle {
  color: #000000;
}
.cid-veM2bxvwfm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff6666;
}
.cid-veM2bxvwfm .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-veM2bxvwfm .mbr-text {
  color: #ffffff;
}
.cid-veM2bxM4Zc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veM2by6LjT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff6666;
}
.cid-veM2by6LjT .mbr-text {
  color: #ffffff;
}
.cid-veM2by6LjT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-veM2byjQpy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veM2byOw7Y {
  background-color: #ffffff;
}
.cid-veM2byOw7Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2byOw7Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2byOw7Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2byOw7Y .row {
  flex-direction: row-reverse;
}
.cid-veM2byOw7Y img {
  width: 100%;
}
.cid-veM2bz2pHl {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veM2bz2pHl .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veM2bzgt0h {
  background-color: #ffffff;
}
.cid-veM2bzgt0h .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bzgt0h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2bzgt0h .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bzgt0h .row {
  flex-direction: row-reverse;
}
.cid-veM2bzgt0h img {
  width: 100%;
}
.cid-veM2bzvFNY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-veM2bzvFNY .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veM2bzIcck {
  background-color: #ffffff;
}
.cid-veM2bzIcck .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bzIcck .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2bzIcck .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bzIcck .row {
  flex-direction: row-reverse;
}
.cid-veM2bzIcck img {
  width: 100%;
}
.cid-veM2bzZkDq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veM2bzZkDq .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veM2bzZkDq .mbr-section-title {
  color: #e43f3f;
}
.cid-veMqk4vvyR {
  background-color: #ffffff;
}
.cid-veMqk4vvyR .mbr-fallback-image.disabled {
  display: none;
}
.cid-veMqk4vvyR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veMqk4vvyR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veMqk4vvyR .row {
  flex-direction: row-reverse;
}
.cid-veMqk4vvyR img {
  width: 100%;
}
.cid-veM4xwB64O {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veM4xwB64O .mbr-section-subtitle {
  color: #232323;
}
.cid-veM4xwB64O .mbr-section-title {
  color: #e43f3f;
}
.cid-veM2bAd1Rr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM2bAd1Rr .mbr-section-subtitle {
  color: #232323;
}
.cid-veM2bArE8c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veM2bArE8c .mbr-section-subtitle {
  color: #232323;
}
.cid-veM2bAGAXa {
  background-color: #ffffff;
}
.cid-veM2bAGAXa .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bAGAXa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2bAGAXa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bAGAXa .row {
  flex-direction: row-reverse;
}
.cid-veM2bAGAXa img {
  width: 100%;
}
.cid-veM2bAVG7p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM2bAVG7p .mbr-section-subtitle {
  color: #232323;
}
.cid-veM2bAVG7p .mbr-section-title {
  color: #e43f3f;
}
.cid-veM2bBb7rD {
  background-color: #ffffff;
}
.cid-veM2bBb7rD .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bBb7rD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2bBb7rD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bBb7rD .row {
  flex-direction: row-reverse;
}
.cid-veM2bBb7rD img {
  width: 100%;
}
.cid-veM2bBwpVc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM2bBwpVc .mbr-section-subtitle {
  color: #232323;
}
.cid-veM2bCSwzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veM2bCSwzv .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bCSwzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM2bCSwzv .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veM2bCSwzv .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veM2bCSwzv .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veM2bCSwzv .card-wrapper {
    padding: 4rem;
  }
}
.cid-veM2bCSwzv .mbr-text,
.cid-veM2bCSwzv .mbr-section-btn {
  color: #ffffff;
}
.cid-veM2bCSwzv .card-title,
.cid-veM2bCSwzv .card-box {
  text-align: left;
}
.cid-veM2bDd2mP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veM2bDd2mP .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bDd2mP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM2bDd2mP .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veM2bDd2mP .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veM2bDd2mP .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veM2bDd2mP .card-wrapper {
    padding: 4rem;
  }
}
.cid-veM2bDd2mP .mbr-text,
.cid-veM2bDd2mP .mbr-section-btn {
  color: #232323;
}
.cid-veM2bDd2mP .card-title,
.cid-veM2bDd2mP .card-box {
  text-align: left;
  color: #000000;
}
.cid-veM2bDuqvl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veM2bDuqvl .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bDuqvl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM2bDuqvl .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veM2bDuqvl .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veM2bDuqvl .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veM2bDuqvl .card-wrapper {
    padding: 4rem;
  }
}
.cid-veM2bDuqvl .mbr-text,
.cid-veM2bDuqvl .mbr-section-btn {
  color: #ffffff;
}
.cid-veM2bDuqvl .card-title,
.cid-veM2bDuqvl .card-box {
  text-align: left;
}
.cid-veM2bDMmu8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veM2bDMmu8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bDMmu8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM2bDMmu8 .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veM2bDMmu8 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veM2bDMmu8 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veM2bDMmu8 .card-wrapper {
    padding: 4rem;
  }
}
.cid-veM2bDMmu8 .mbr-text,
.cid-veM2bDMmu8 .mbr-section-btn {
  color: #232323;
}
.cid-veM2bDMmu8 .card-title,
.cid-veM2bDMmu8 .card-box {
  text-align: left;
  color: #232323;
}
.cid-veM5Tbo8nF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veM2bE790j {
  background-color: #ffffff;
}
.cid-veM2bE790j .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bE790j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2bE790j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bE790j .row {
  flex-direction: row-reverse;
}
.cid-veM2bE790j img {
  width: 100%;
}
.cid-veM2bEvuIv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veM2bEvuIv .mbr-section-title {
  color: #e43f3f;
}
.cid-veM2bESxHL {
  background-color: #ffffff;
}
.cid-veM2bESxHL .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bESxHL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2bESxHL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bESxHL .row {
  flex-direction: row-reverse;
}
.cid-veM2bESxHL img {
  width: 100%;
}
.cid-veM2bFaPu8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-veM2bFaPu8 .mbr-section-title {
  color: #e43f3f;
}
.cid-veM6ArWHxn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM6ArWHxn .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM6ArWHxn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM6ArWHxn .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veM6ArWHxn .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veM6ArWHxn .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veM6ArWHxn .card-wrapper {
    padding: 4rem;
  }
}
.cid-veM6ArWHxn .mbr-text,
.cid-veM6ArWHxn .mbr-section-btn {
  color: #ffffff;
}
.cid-veM6ArWHxn .card-title,
.cid-veM6ArWHxn .card-box {
  text-align: left;
}
.cid-veM6GVpr4i {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM6GVpr4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM6GVpr4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM6GVpr4i .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veM6GVpr4i .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veM6GVpr4i .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veM6GVpr4i .card-wrapper {
    padding: 4rem;
  }
}
.cid-veM6GVpr4i .mbr-text,
.cid-veM6GVpr4i .mbr-section-btn {
  color: #ffffff;
}
.cid-veM6GVpr4i .card-title,
.cid-veM6GVpr4i .card-box {
  text-align: left;
}
.cid-veM6Hn6Mou {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM6Hn6Mou .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM6Hn6Mou .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM6Hn6Mou .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veM6Hn6Mou .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veM6Hn6Mou .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veM6Hn6Mou .card-wrapper {
    padding: 4rem;
  }
}
.cid-veM6Hn6Mou .mbr-text,
.cid-veM6Hn6Mou .mbr-section-btn {
  color: #ffffff;
}
.cid-veM6Hn6Mou .card-title,
.cid-veM6Hn6Mou .card-box {
  text-align: left;
}
.cid-veM7aiJVdE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM7aiJVdE .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM7aiJVdE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM7aiJVdE .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veM7aiJVdE .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veM7aiJVdE .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veM7aiJVdE .card-wrapper {
    padding: 4rem;
  }
}
.cid-veM7aiJVdE .mbr-text,
.cid-veM7aiJVdE .mbr-section-btn {
  color: #ffffff;
}
.cid-veM7aiJVdE .card-title,
.cid-veM7aiJVdE .card-box {
  text-align: left;
}
.cid-veM7f9ZoQJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM7f9ZoQJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM7f9ZoQJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM7f9ZoQJ .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veM7f9ZoQJ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veM7f9ZoQJ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veM7f9ZoQJ .card-wrapper {
    padding: 4rem;
  }
}
.cid-veM7f9ZoQJ .mbr-text,
.cid-veM7f9ZoQJ .mbr-section-btn {
  color: #ffffff;
}
.cid-veM7f9ZoQJ .card-title,
.cid-veM7f9ZoQJ .card-box {
  text-align: left;
}
.cid-veM2bGwFK4 {
  background-color: #ffffff;
}
.cid-veM2bGwFK4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bGwFK4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2bGwFK4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bGwFK4 .row {
  flex-direction: row-reverse;
}
.cid-veM2bGwFK4 img {
  width: 100%;
}
.cid-veM6li1U02 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM6li1U02 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veM2bHAIKv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veM2bHAIKv .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veM2bIroUa {
  background-color: #ffffff;
}
.cid-veM2bIroUa .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bIroUa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veM2bIroUa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bIroUa .row {
  flex-direction: row-reverse;
}
.cid-veM2bIroUa img {
  width: 100%;
}
.cid-veM2bJ0N6S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-veM2bJsMa2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-veM2bJsMa2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veM2bJsMa2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-veM2bJsMa2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-veM2bJsMa2 .mbr-section-title {
  color: #e43f3f;
}
.cid-veM2bJsMa2 .mbr-text {
  color: #8e8d8a;
}
.cid-veM2bK675p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veM2bK675p .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bK675p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM2bKHXJp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veM2bKHXJp .mbr-fallback-image.disabled {
  display: none;
}
.cid-veM2bKHXJp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veM2bKHXJp .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-veM2bKHXJp .bg-facebook:hover {
  background: #0b60cb;
}
.cid-veM2bKHXJp .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-veM2bKHXJp .bg-twitter:hover {
  background: #0c85d0;
}
.cid-veM2bKHXJp .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-veM2bKHXJp .bg-pinterest:hover {
  background: #b3001b;
}
.cid-veM2bKHXJp .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-veM2bKHXJp .bg-instagram:hover {
  background: #bd005c;
}
.cid-veM2bKHXJp .bg-behance {
  background: #0056ff;
  color: #ffffff;
}
.cid-veM2bKHXJp .bg-behance:hover {
  background: #0045cc;
}
.cid-veM2bKHXJp .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-veM2bKHXJp .bg-tiktok:hover {
  background: #000000;
}
.cid-veM2bKHXJp .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-veM2bKHXJp .bg-youtube:hover {
  background: #cc0000;
}
.cid-veM2bKHXJp .bg-twitch {
  background: #9146ff;
  color: #ffffff;
}
.cid-veM2bKHXJp .bg-twitch:hover {
  background: #7313ff;
}
.cid-veM2bKHXJp .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-veM2bKHXJp [class^="socicon-"]:before,
.cid-veM2bKHXJp [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-veM2bLrSGH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-veUOeAWY89 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-veUOeAWY89 nav.navbar {
  position: fixed;
}
.cid-veUOeAWY89 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veUOeAWY89 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veUOeAWY89 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veUOeAWY89 .dropdown-item:hover,
.cid-veUOeAWY89 .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-veUOeAWY89 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veUOeAWY89 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veUOeAWY89 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veUOeAWY89 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veUOeAWY89 .nav-link {
  position: relative;
}
.cid-veUOeAWY89 .container {
  display: flex;
  margin: auto;
}
.cid-veUOeAWY89 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veUOeAWY89 .dropdown-menu,
.cid-veUOeAWY89 .navbar.opened {
  background: #fafafa !important;
}
.cid-veUOeAWY89 .nav-item:focus,
.cid-veUOeAWY89 .nav-link:focus {
  outline: none;
}
.cid-veUOeAWY89 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veUOeAWY89 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veUOeAWY89 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veUOeAWY89 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veUOeAWY89 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veUOeAWY89 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veUOeAWY89 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-veUOeAWY89 .navbar.opened {
  transition: all 0.3s;
}
.cid-veUOeAWY89 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veUOeAWY89 .navbar .navbar-logo img {
  width: auto;
}
.cid-veUOeAWY89 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veUOeAWY89 .navbar.collapsed {
  justify-content: center;
}
.cid-veUOeAWY89 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veUOeAWY89 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veUOeAWY89 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-veUOeAWY89 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veUOeAWY89 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veUOeAWY89 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-veUOeAWY89 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veUOeAWY89 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veUOeAWY89 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veUOeAWY89 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veUOeAWY89 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veUOeAWY89 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veUOeAWY89 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veUOeAWY89 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-veUOeAWY89 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veUOeAWY89 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veUOeAWY89 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veUOeAWY89 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veUOeAWY89 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veUOeAWY89 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veUOeAWY89 .navbar.navbar-short {
  min-height: 60px;
}
.cid-veUOeAWY89 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veUOeAWY89 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veUOeAWY89 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-veUOeAWY89 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veUOeAWY89 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veUOeAWY89 .dropdown-item.active,
.cid-veUOeAWY89 .dropdown-item:active {
  background-color: transparent;
}
.cid-veUOeAWY89 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veUOeAWY89 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veUOeAWY89 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veUOeAWY89 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-veUOeAWY89 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veUOeAWY89 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veUOeAWY89 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veUOeAWY89 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veUOeAWY89 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veUOeAWY89 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-veUOeAWY89 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veUOeAWY89 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veUOeAWY89 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veUOeAWY89 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veUOeAWY89 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veUOeAWY89 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veUOeAWY89 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veUOeAWY89 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veUOeAWY89 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veUOeAWY89 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veUOeAWY89 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-veUOeAWY89 .navbar {
    height: 70px;
  }
  .cid-veUOeAWY89 .navbar.opened {
    height: auto;
  }
  .cid-veUOeAWY89 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veUOeBcjJb {
  background-image: url("../../../assets/images/cape-town-travel-1.jpeg?v=1W5HbO");
}
.cid-veUOeBcjJb .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeBcjJb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veUOeBcjJb .mbr-section-title {
  color: #ff6666;
  text-align: center;
}
.cid-veUOeBcjJb .mbr-text,
.cid-veUOeBcjJb .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-veUOeBnFyh {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veUOeBnFyh .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veUOeBy4cJ {
  background-color: #ffffff;
}
.cid-veUOeBy4cJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeBy4cJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeBy4cJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeBy4cJ .row {
  flex-direction: row-reverse;
}
.cid-veUOeBy4cJ img {
  width: 100%;
}
.cid-veUOeBNtI8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veUOeBNtI8 .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veUOeBNtI8 .mbr-section-title {
  color: #e43f3f;
}
.cid-veXAxm2R1F {
  background-color: #ffffff;
}
.cid-veXAxm2R1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXAxm2R1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veXAxm2R1F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veXAxm2R1F .row {
  flex-direction: row-reverse;
}
.cid-veXAxm2R1F img {
  width: 100%;
}
.cid-veUONKICuT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veUONKICuT .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veUONKICuT .mbr-section-title {
  color: #e43f3f;
}
.cid-veUOeFsA3t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veUOeFsA3t .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeFsA3t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veUOeFsA3t .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veUOeFsA3t .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veUOeFsA3t .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veUOeFsA3t .card-wrapper {
    padding: 4rem;
  }
}
.cid-veUOeFsA3t .mbr-text,
.cid-veUOeFsA3t .mbr-section-btn {
  color: #ffffff;
}
.cid-veUOeFsA3t .card-title,
.cid-veUOeFsA3t .card-box {
  text-align: left;
}
.cid-veUOeFfBSN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veUOeFfBSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeFfBSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veUOeFfBSN .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veUOeFfBSN .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veUOeFfBSN .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veUOeFfBSN .card-wrapper {
    padding: 4rem;
  }
}
.cid-veUOeFfBSN .mbr-text,
.cid-veUOeFfBSN .mbr-section-btn {
  color: #232323;
}
.cid-veUOeFfBSN .card-title,
.cid-veUOeFfBSN .card-box {
  text-align: left;
  color: #000000;
}
.cid-veXrYQS8xV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veXrYQS8xV .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXrYQS8xV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veXrYQS8xV .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veXrYQS8xV .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veXrYQS8xV .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veXrYQS8xV .card-wrapper {
    padding: 4rem;
  }
}
.cid-veXrYQS8xV .mbr-text,
.cid-veXrYQS8xV .mbr-section-btn {
  color: #ffffff;
}
.cid-veXrYQS8xV .card-title,
.cid-veXrYQS8xV .card-box {
  text-align: left;
}
.cid-veXs2bBBBp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veXs2bBBBp .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXs2bBBBp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veXs2bBBBp .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veXs2bBBBp .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veXs2bBBBp .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veXs2bBBBp .card-wrapper {
    padding: 4rem;
  }
}
.cid-veXs2bBBBp .mbr-text,
.cid-veXs2bBBBp .mbr-section-btn {
  color: #232323;
}
.cid-veXs2bBBBp .card-title,
.cid-veXs2bBBBp .card-box {
  text-align: left;
  color: #000000;
}
.cid-veXtYJBodv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veXtYJBodv .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXtYJBodv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veXtYJBodv .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veXtYJBodv .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veXtYJBodv .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veXtYJBodv .card-wrapper {
    padding: 4rem;
  }
}
.cid-veXtYJBodv .mbr-text,
.cid-veXtYJBodv .mbr-section-btn {
  color: #ffffff;
}
.cid-veXtYJBodv .card-title,
.cid-veXtYJBodv .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-veXu2gKjxc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veXu2gKjxc .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXu2gKjxc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veXu2gKjxc .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veXu2gKjxc .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veXu2gKjxc .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veXu2gKjxc .card-wrapper {
    padding: 4rem;
  }
}
.cid-veXu2gKjxc .mbr-text,
.cid-veXu2gKjxc .mbr-section-btn {
  color: #232323;
}
.cid-veXu2gKjxc .card-title,
.cid-veXu2gKjxc .card-box {
  text-align: left;
  color: #000000;
}
.cid-veXu2Ezzgp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veXu2Ezzgp .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXu2Ezzgp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veXu2Ezzgp .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veXu2Ezzgp .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veXu2Ezzgp .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veXu2Ezzgp .card-wrapper {
    padding: 4rem;
  }
}
.cid-veXu2Ezzgp .mbr-text,
.cid-veXu2Ezzgp .mbr-section-btn {
  color: #ffffff;
}
.cid-veXu2Ezzgp .card-title,
.cid-veXu2Ezzgp .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-veXu2UPZQk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veXu2UPZQk .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXu2UPZQk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veXu2UPZQk .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veXu2UPZQk .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veXu2UPZQk .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veXu2UPZQk .card-wrapper {
    padding: 4rem;
  }
}
.cid-veXu2UPZQk .mbr-text,
.cid-veXu2UPZQk .mbr-section-btn {
  color: #232323;
}
.cid-veXu2UPZQk .card-title,
.cid-veXu2UPZQk .card-box {
  text-align: left;
  color: #000000;
}
.cid-veXu3lSW0a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veXu3lSW0a .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXu3lSW0a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veXu3lSW0a .card-wrapper {
  background: #ff6666;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veXu3lSW0a .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veXu3lSW0a .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veXu3lSW0a .card-wrapper {
    padding: 4rem;
  }
}
.cid-veXu3lSW0a .mbr-text,
.cid-veXu3lSW0a .mbr-section-btn {
  color: #ffffff;
}
.cid-veXu3lSW0a .card-title,
.cid-veXu3lSW0a .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-veXu3Ju2UB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veXu3Ju2UB .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXu3Ju2UB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veXu3Ju2UB .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veXu3Ju2UB .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veXu3Ju2UB .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veXu3Ju2UB .card-wrapper {
    padding: 4rem;
  }
}
.cid-veXu3Ju2UB .mbr-text,
.cid-veXu3Ju2UB .mbr-section-btn {
  color: #232323;
}
.cid-veXu3Ju2UB .card-title,
.cid-veXu3Ju2UB .card-box {
  text-align: left;
  color: #000000;
}
.cid-veUOeCHu2q {
  background-color: #ffffff;
}
.cid-veUOeCHu2q .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeCHu2q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeCHu2q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeCHu2q .row {
  flex-direction: row-reverse;
}
.cid-veUOeCHu2q img {
  width: 100%;
}
.cid-veUOeCRX3N {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-veUOeCRX3N .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veUOeD0e1J {
  background-color: #ffffff;
}
.cid-veUOeD0e1J .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeD0e1J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeD0e1J .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeD0e1J .row {
  flex-direction: row-reverse;
}
.cid-veUOeD0e1J img {
  width: 100%;
}
.cid-veUOeDbPok {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-veUOeDbPok .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veUOeDkxiz {
  background-color: #ffffff;
}
.cid-veUOeDkxiz .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeDkxiz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeDkxiz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeDkxiz .row {
  flex-direction: row-reverse;
}
.cid-veUOeDkxiz img {
  width: 100%;
}
.cid-veUOeDuQWf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veUOeDuQWf .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veUOeDuQWf .mbr-section-title {
  color: #e43f3f;
}
.cid-veUOeDDzux {
  background-color: #ffffff;
}
.cid-veUOeDDzux .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeDDzux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeDDzux .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeDDzux .row {
  flex-direction: row-reverse;
}
.cid-veUOeDDzux img {
  width: 100%;
}
.cid-veUOeDPGXR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veUOeDPGXR .mbr-section-subtitle {
  color: #232323;
}
.cid-veUOeDPGXR .mbr-section-title {
  color: #e43f3f;
}
.cid-veUOeDZN5c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veUOeDZN5c .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veUOeE8X4m {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veUOeE8X4m .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-veUOeEiwQg {
  background-color: #ffffff;
}
.cid-veUOeEiwQg .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeEiwQg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeEiwQg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeEiwQg .row {
  flex-direction: row-reverse;
}
.cid-veUOeEiwQg img {
  width: 100%;
}
.cid-veUOeEvq6y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veUOeEvq6y .mbr-section-subtitle {
  color: #232323;
}
.cid-veUOeEvq6y .mbr-section-title {
  color: #e43f3f;
}
.cid-veUOeEEW2R {
  background-color: #ffffff;
}
.cid-veUOeEEW2R .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeEEW2R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeEEW2R .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeEEW2R .row {
  flex-direction: row-reverse;
}
.cid-veUOeEEW2R img {
  width: 100%;
}
.cid-veUOeEPw4T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veUOeEPw4T .mbr-section-subtitle {
  color: #232323;
}
.cid-veUOeEPw4T .mbr-section-title {
  color: #e43f3f;
}
.cid-veXw45LRnn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-veXw45LRnn .mbr-section-title {
  color: #232323;
}
.cid-veXwcBDHfF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veXwcBDHfF .mbr-section-title {
  color: #232323;
}
.cid-veUOeG4MCs {
  background-color: #ffffff;
}
.cid-veUOeG4MCs .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeG4MCs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeG4MCs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeG4MCs .row {
  flex-direction: row-reverse;
}
.cid-veUOeG4MCs img {
  width: 100%;
}
.cid-veUOeGhrO4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veUOeGhrO4 .mbr-section-title {
  color: #e43f3f;
}
.cid-veUOeGrnXw {
  background-color: #ffffff;
}
.cid-veUOeGrnXw .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeGrnXw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeGrnXw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeGrnXw .row {
  flex-direction: row-reverse;
}
.cid-veUOeGrnXw img {
  width: 100%;
}
.cid-veUOeGDFWE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-veUOeGDFWE .mbr-section-title {
  color: #232323;
}
.cid-veUOeI6HTw {
  background-color: #ffffff;
}
.cid-veUOeI6HTw .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeI6HTw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeI6HTw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeI6HTw .row {
  flex-direction: row-reverse;
}
.cid-veUOeI6HTw img {
  width: 100%;
}
.cid-veUOeIzktn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-veUOeIzktn .mbr-section-subtitle {
  color: #232323;
}
.cid-veUOeIP6lg {
  background-color: #ffffff;
}
.cid-veUOeIP6lg .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeIP6lg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-veUOeIP6lg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeIP6lg .row {
  flex-direction: row-reverse;
}
.cid-veUOeIP6lg img {
  width: 100%;
}
.cid-veUOeJ9qkQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-veUOeJqtDR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-veUOeJqtDR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-veUOeJqtDR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-veUOeJqtDR .text-wrapper {
    padding: 2rem;
  }
}
.cid-veUOeJqtDR .mbr-section-title {
  color: #e43f3f;
}
.cid-veUOeJqtDR .mbr-text {
  color: #8e8d8a;
}
.cid-veUOeJEQvf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-veUOeJEQvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeJEQvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veUOeJRsCS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veUOeJRsCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-veUOeJRsCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veUOeJRsCS .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-veUOeJRsCS .bg-facebook:hover {
  background: #0b60cb;
}
.cid-veUOeJRsCS .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-veUOeJRsCS .bg-twitter:hover {
  background: #0c85d0;
}
.cid-veUOeJRsCS .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-veUOeJRsCS .bg-pinterest:hover {
  background: #b3001b;
}
.cid-veUOeJRsCS .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-veUOeJRsCS .bg-instagram:hover {
  background: #bd005c;
}
.cid-veUOeJRsCS .bg-behance {
  background: #0056ff;
  color: #ffffff;
}
.cid-veUOeJRsCS .bg-behance:hover {
  background: #0045cc;
}
.cid-veUOeJRsCS .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-veUOeJRsCS .bg-tiktok:hover {
  background: #000000;
}
.cid-veUOeJRsCS .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-veUOeJRsCS .bg-youtube:hover {
  background: #cc0000;
}
.cid-veUOeJRsCS .bg-twitch {
  background: #9146ff;
  color: #ffffff;
}
.cid-veUOeJRsCS .bg-twitch:hover {
  background: #7313ff;
}
.cid-veUOeJRsCS .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-veUOeJRsCS [class^="socicon-"]:before,
.cid-veUOeJRsCS [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-veUOeKdKuA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
