body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 4.625rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.78125rem;
}
.display-2 {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 3.125rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.2rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Sora', sans-serif;
  font-size: 1.31rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6375rem;
}
/* ---- 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.7rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2375rem;
    font-size: calc( 2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.048rem;
    font-size: calc( 1.1085rem + (1.31 - 1.1085) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1085rem + (1.31 - 1.1085) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-sm {
  padding: 12px 31px;
  border-radius: 0;
}
.btn-md {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 40px;
  border-radius: 0;
}
.bg-primary {
  background-color: #52646d !important;
}
.bg-success {
  background-color: #a5bdce !important;
}
.bg-info {
  background-color: #ef8e81 !important;
}
.bg-warning {
  background-color: #a4897d !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #52646d !important;
  border-color: #52646d !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cf496d;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  border-color: #cf496d !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #cf496d !important;
  border-color: #cf496d !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #cf496d !important;
  border-color: #cf496d !important;
  color: #ffffff !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #52646d;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  border-color: #52646d !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #52646d !important;
  border-color: #52646d !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ef8e81 !important;
  border-color: #ef8e81 !important;
  color: #ffffff !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cf496d;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  border-color: #cf496d !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #cf496d !important;
  border-color: #cf496d !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #a5bdce !important;
  border-color: #a5bdce !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #52646d;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  border-color: #52646d !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #52646d !important;
  border-color: #52646d !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #a4897d !important;
  border-color: #a4897d !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #a5bdce;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  border-color: #a5bdce !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a5bdce !important;
  border-color: #a5bdce !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #a5bdce;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  border-color: #a5bdce !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #a5bdce !important;
  border-color: #a5bdce !important;
}
.btn-white,
.btn-white:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cac8bc;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  border-color: #cac8bc !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #cac8bc !important;
  border-color: #cac8bc !important;
}
.btn-black,
.btn-black:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #282727 !important;
  border-color: #282727 !important;
  color: #ffffff !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn[class*="outline"] {
  border: 0;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
}
.btn[class*="outline"].btn-lg {
  padding: 0 0 5px 0;
}
.btn-primary-outline {
  border-color: #52646d;
  color: #52646d;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #cf496d;
  color: #cf496d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #a12a4a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #cf496d !important;
  border-color: #cf496d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ef8e81;
  color: #ef8e81;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #e6513d;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ef8e81 !important;
  border-color: #ef8e81 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #a5bdce;
  color: #a5bdce;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #7399b3;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a5bdce !important;
  border-color: #a5bdce !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #a4897d;
  color: #a4897d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #7d6357;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a4897d !important;
  border-color: #a4897d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #d9d9d9;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #282727;
  color: #282727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #282727 !important;
  border-color: #282727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  background-color: transparent !important;
  color: #d4d4d4;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #52646d !important;
}
.text-secondary {
  color: #cf496d !important;
}
.text-success {
  color: #a5bdce !important;
}
.text-info {
  color: #ef8e81 !important;
}
.text-warning {
  color: #a4897d !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #262f33 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #8d2541 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #638daa !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #e43d26 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #6e574d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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;
}
.nav-tabs .nav-link.active {
  color: #52646d;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ef8e81;
}
.alert-warning {
  background-color: #a4897d;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #52646d;
  border-color: #52646d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #52646d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #92a4ad;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d9cdc8;
}
.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: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #52646d;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
form .btn {
  border-radius: 0 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #52646d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #52646d;
}
.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: #52646d;
  border-bottom-color: #52646d;
}
.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: #52646d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #cf496d !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='%2352646d' %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;
}
.cid-se8xQhJViB {
  display: flex;
  background-image: url("../../../assets/images/20230711-180429780-ios-sml-1000x1021.jpeg");
}
.cid-se8xQhJViB .mbr-overlay {
  background-color: #282727;
  opacity: 0.5;
}
.cid-se8xQhJViB .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-se8xQhJViB {
    align-items: center;
  }
  .cid-se8xQhJViB .row {
    justify-content: flex-start;
  }
  .cid-se8xQhJViB .content-wrap {
    width: 42%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-se8xQhJViB .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-se8xQhJViB {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-se8xQhJViB .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-se8xQhJViB .content-wrap {
    width: 100%;
  }
}
.cid-se8xQhJViB .mbr-section-title {
  color: #420c20;
  text-align: left;
}
.cid-se8xQhJViB .mbr-text {
  margin-bottom: 20.4px;
}
.cid-se8xQhJViB .mbr-text,
.cid-se8xQhJViB .mbr-section-btn {
  color: #282727;
}
.cid-seeBbx2QPf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1-4-1920x1280.jpg");
}
.cid-seeBbx2QPf .mbr-overlay {
  background: #7394ab;
  opacity: 0.6;
}
.cid-seeBbx2QPf .svg-wrapper {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1964' height='920'%3E%3Cpolygon points='0,0 985,0 920,23 0,23' class='svg1' style='fill:%2352646d'%3E%3C/polygon%3E%3Cpolygon points='985,0 1964,0 1941,23 920,23' class='svg2' style='fill:%23ef8e81'%3E%3C/polygon%3E%3Cpolygon points='1964,0 1964,469.65 1941,525.5 1941,23' class='svg3' style='fill:%23a5bdce'%3E%3C/polygon%3E%3Cpolygon points='1964,469.65 1964,920 1941,920 1941,525.5' class='svg4' style='fill:%23ffffff'%3E%3C/polygon%3E%3C/svg%3E");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position-x: right;
  width: 100%;
  max-height: 454px;
  height: 100%;
  position: absolute;
  top: -25px;
  right: 30px;
  bottom: 25px;
}
@media (max-width: 992px) {
  .cid-seeBbx2QPf .svg-wrapper {
    top: -10px;
    right: 10px;
  }
}
.cid-seeBbx2QPf .text-wrapper {
  padding: 70px 50px;
  margin: 0 auto;
  position: relative;
  display: flex;
  background-color: #ffffff;
  flex-direction: column;
}
.cid-seeBbx2QPf .mbr-section-title,
.cid-seeBbx2QPf .mbr-section-text,
.cid-seeBbx2QPf .section-subtitle,
.cid-seeBbx2QPf .mbr-section-btn {
  z-index: 0;
}
.cid-seeBbx2QPf .section-subtitle {
  margin-bottom: 20.4px;
}
.cid-seeBbx2QPf .section-subtitle,
.cid-seeBbx2QPf .mbr-section-btn {
  color: #4c4c4c;
}
.cid-seeBbx2QPf .mbr-section-text,
.cid-seeBbx2QPf .mbr-section-btn {
  color: #4c4c4c;
}
.cid-seeBbx2QPf .mbr-section-title {
  color: #231f59;
}
.cid-seeBzNJhXH {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/022.jpg");
}
.cid-seeBzNJhXH .mbr-overlay {
  background: #ffffff;
  opacity: 0;
}
.cid-seeBzNJhXH .row {
  flex-direction: row-reverse;
}
.cid-seeBzNJhXH .text-wrapper {
  padding: 20px;
}
.cid-seeBzNJhXH .mbr-text {
  margin-bottom: 20.4px;
}
.cid-seeBzNJhXH .mbr-text,
.cid-seeBzNJhXH .mbr-section-btn {
  text-align: left;
  color: #4c4a4b;
}
.cid-seeBzNJhXH .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 484px;
}
.cid-seeBzNJhXH .mbr-section-subtitle {
  color: #1b1b1b;
}
.cid-seeBzNJhXH .section-subtext {
  color: #1b1b1b;
}
.cid-seeC0rKSe0 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f7bd50;
}
@media (max-width: 992px) {
  .cid-seeC0rKSe0 {
    background-color: #272727;
  }
  .cid-seeC0rKSe0 .accordion-content-wrapper {
    padding-top: 10px;
  }
  .cid-seeC0rKSe0 .mbr-section-subtitle {
    margin-top: 0;
    line-height: 2 !important;
  }
}
.cid-seeC0rKSe0 .mbr-overlay {
  padding: 0;
  background: #272727;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
  bottom: -5%;
}
.cid-seeC0rKSe0 .header-text {
  flex: 1 1 auto;
  letter-spacing: 1.61px;
}
.cid-seeC0rKSe0 h4 {
  letter-spacing: 3.27px !important;
  font-style: normal;
}
.cid-seeC0rKSe0 .panel-collapse {
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: left;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-seeC0rKSe0 .mbr-section-subtitle {
  font-weight: 500;
  color: #f7bd50;
  margin: 30px 0;
}
.cid-seeC0rKSe0 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-seeC0rKSe0 .accordion-wrapper {
  padding: 0 25px;
}
.cid-seeC0rKSe0 .accordion-content-wrapper {
  padding: 50px 0;
  max-width: 484px;
  margin: 0 auto;
}
.cid-seeC0rKSe0 .vertical-center {
  align-items: center;
}
.cid-seeC0rKSe0 .panel-group {
  width: 100%;
}
.cid-seeC0rKSe0 .card {
  border-bottom: 1px solid #feeac6 !important;
  border-radius: 0px;
}
.cid-seeC0rKSe0 .card:first-of-type {
  border-top: 1px solid #feeac6;
}
.cid-seeC0rKSe0 .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
  background-color: transparent;
  padding: 20px 0;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title {
  transition: all .3s;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-seeC0rKSe0 .card h4,
.cid-seeC0rKSe0 .card h5 {
  margin-bottom: 0;
}
.cid-seeC0rKSe0 .card p {
  margin: 0;
}
.cid-seeC0rKSe0 .card .panel-body {
  background-color: transparent;
  padding: 4px 0 20px 0;
}
.cid-seeC0rKSe0 .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-seeC0rKSe0 .sign {
  color: #ffffff;
}
.cid-seeC0rKSe0 .sign:before {
  content: "\e95d";
  font-weight: 700;
}
@media (max-width: 991px) {
  .cid-seeC0rKSe0 .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-seeC0rKSe0 .header-text,
.cid-seeC0rKSe0 .sign P {
  text-align: left;
}
.cid-seeC0rKSe0 .mbr-text {
  color: #ffffff;
}
.cid-seeC0rKSe0 .mbri-arrow-up {
  max-height: 7px;
  overflow: hidden;
  vertical-align: middle;
}
.cid-seeC0rKSe0 .mbri-arrow-up:before {
  content: "\e94c";
  font-weight: 700;
}
.cid-seeC0rKSe0 .text-container {
  max-width: 934px;
}
.cid-seeC0rKSe0 .text-container p {
  padding: 30px 0 20.6px 0;
}
.cid-seeC0rKSe0 .panel-title {
  background: transparent;
}
.cid-seeC0rKSe0 H4 {
  color: #ffffff;
}
.cid-seeC0rKSe0 .header-text,
.cid-seeC0rKSe0 .sign {
  color: #feeac6;
}
.cid-seeC0rKSe0 .mbr-text,
.cid-seeC0rKSe0 .mbr-section-btn {
  color: #f2f2f2;
}
.cid-seeC0rKSe0 H5 {
  color: #ebc6b8;
}
.cid-seeC0rKSe0 .panel-text {
  color: #ffffff;
}
.cid-seeEc07jnp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7bd50;
}
.cid-seeEc07jnp .mbr-overlay {
  padding: 0;
  background: #ffffff;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
@media (max-width: 992px) {
  .cid-seeEc07jnp .mbr-overlay {
    background-color: #f7bd50;
  }
}
.cid-seeEc07jnp .mbr-text {
  color: #282727;
}
.cid-seeEc07jnp .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-seeEc07jnp .mbr-section-subtitle {
  color: #282727;
}
.cid-seeELHPvVE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #272727;
}
.cid-seeELHPvVE img,
.cid-seeELHPvVE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-seeELHPvVE .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #ffffff;
}
.cid-seeELHPvVE .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-seeELHPvVE .item:focus,
.cid-seeELHPvVE span:focus {
  outline: none;
}
.cid-seeELHPvVE .item {
  cursor: pointer;
}
.cid-seeELHPvVE .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-seeELHPvVE .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-seeELHPvVE .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-seeELHPvVE .item-subtitle {
  color: #ffbf47;
}
.cid-seeELHPvVE .mbr-text,
.cid-seeELHPvVE .mbr-section-btn {
  color: #ffffff;
}
.cid-tUKNFLS2Or {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cccccc;
}
.cid-tUKNFLS2Or .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUKNFLS2Or .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUKNFLS2Or .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tUKNFLS2Or .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tUKNFLS2Or .container {
    padding: 0;
  }
}
.cid-tUKNFLS2Or .row {
  justify-content: center;
}
.cid-tUKNFLS2Or a:hover .row .icon-wrapper .mbr-iconfont {
  transform: translateX(10px);
}
.cid-tUKNFLS2Or .title-wrapper {
  padding: 0 16px;
}
.cid-tUKNFLS2Or .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tUKNFLS2Or .icon-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 0 16px;
}
.cid-tUKNFLS2Or .icon-wrapper .mbr-iconfont {
  font-size: 34px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tUKNFLS2Or .mbr-section-title {
  color: #ffffff;
}
.cid-tUKNGdriz2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #cccccc;
}
.cid-tUKNGdriz2 .container {
  max-width: 1400px;
}
.cid-tUKNGdriz2 img,
.cid-tUKNGdriz2 .item-img {
  width: 100%;
  position: relative;
  height: 100%;
  object-fit: cover;
}
.cid-tUKNGdriz2 img:before,
.cid-tUKNGdriz2 .item-img:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-tUKNGdriz2 img:hover:before,
.cid-tUKNGdriz2 .item-img:hover:before {
  opacity: 0.2;
}
.cid-tUKNGdriz2 .item:focus,
.cid-tUKNGdriz2 span:focus {
  outline: none;
}
.cid-tUKNGdriz2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tUKNGdriz2 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tUKNGdriz2 .item-content {
  padding-top: 1.5rem;
}
.cid-tUKNGdriz2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tUKNGdriz2 .mbr-section-title {
  color: #232323;
}
.cid-tUKNGdriz2 .mbr-text,
.cid-tUKNGdriz2 .mbr-section-btn {
  color: #818181;
}
.cid-tUKNHhSyEd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #cccccc;
}
.cid-tUKNHhSyEd .container {
  max-width: 1400px;
}
.cid-tUKNHhSyEd img,
.cid-tUKNHhSyEd .item-img {
  width: 100%;
  position: relative;
  height: 100%;
  object-fit: cover;
}
.cid-tUKNHhSyEd img:before,
.cid-tUKNHhSyEd .item-img:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-tUKNHhSyEd img:hover:before,
.cid-tUKNHhSyEd .item-img:hover:before {
  opacity: 0.2;
}
.cid-tUKNHhSyEd .item:focus,
.cid-tUKNHhSyEd span:focus {
  outline: none;
}
.cid-tUKNHhSyEd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tUKNHhSyEd .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tUKNHhSyEd .item-content {
  padding-top: 1.5rem;
}
.cid-tUKNHhSyEd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tUKNHhSyEd .mbr-section-title {
  color: #232323;
}
.cid-tUKNHhSyEd .mbr-text,
.cid-tUKNHhSyEd .mbr-section-btn {
  color: #818181;
}
.cid-tUQSBKtLTj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #cccccc;
}
.cid-tUQSBKtLTj .container {
  max-width: 1400px;
}
.cid-tUQSBKtLTj img,
.cid-tUQSBKtLTj .item-img {
  width: 100%;
  position: relative;
  height: 100%;
  object-fit: cover;
}
.cid-tUQSBKtLTj img:before,
.cid-tUQSBKtLTj .item-img:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-tUQSBKtLTj img:hover:before,
.cid-tUQSBKtLTj .item-img:hover:before {
  opacity: 0.2;
}
.cid-tUQSBKtLTj .item:focus,
.cid-tUQSBKtLTj span:focus {
  outline: none;
}
.cid-tUQSBKtLTj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tUQSBKtLTj .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tUQSBKtLTj .item-content {
  padding-top: 1.5rem;
}
.cid-tUQSBKtLTj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tUQSBKtLTj .mbr-section-title {
  color: #232323;
}
.cid-tUQSBKtLTj .mbr-text,
.cid-tUQSBKtLTj .mbr-section-btn {
  color: #818181;
}
