body {
  font-family: 'Work Sans', sans-serif;
}
.display-1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 4.4rem;
  line-height: 1.22;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.38rem;
  line-height: 1.7;
}
.display-7 > .mbr-iconfont {
  font-size: 1.725rem;
}
/* ---- 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.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((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.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.104rem;
    font-size: calc( 1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.133rem + (1.38 - 1.133) * ((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: #ffb18a !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 {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffb18a !important;
  border-color: #ffb18a !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary::before,
.btn-primary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffb18a !important;
  background-color: transparent !important;
  border-color: #ffb18a;
  box-shadow: none;
}
.btn-primary:hover::before,
.btn-primary:focus::before,
.btn-primary.focus::before,
.btn-primary.active::before {
  width: 100%;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #cc4400 !important;
  border-color: #cc4400 !important;
}
.btn-secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f2bb2c !important;
  border-color: #f2bb2c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary::before,
.btn-secondary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #f2bb2c !important;
  background-color: transparent !important;
  border-color: #f2bb2c;
  box-shadow: none;
}
.btn-secondary:hover::before,
.btn-secondary:focus::before,
.btn-secondary.focus::before,
.btn-secondary.active::before {
  width: 100%;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5c4406 !important;
  border-color: #5c4406 !important;
}
.btn-info {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info::before,
.btn-info:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #47b5ed !important;
  background-color: transparent !important;
  border-color: #47b5ed;
  box-shadow: none;
}
.btn-info:hover::before,
.btn-info:focus::before,
.btn-info.focus::before,
.btn-info.active::before {
  width: 100%;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0b4c6d !important;
  border-color: #0b4c6d !important;
}
.btn-success {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success::before,
.btn-success:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #40b0bf !important;
  background-color: transparent !important;
  border-color: #40b0bf;
  box-shadow: none;
}
.btn-success:hover::before,
.btn-success:focus::before,
.btn-success.focus::before,
.btn-success.active::before {
  width: 100%;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #112e32 !important;
  border-color: #112e32 !important;
}
.btn-warning {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: none;
}
.btn-warning::before,
.btn-warning:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #614f00 !important;
  transition: all .3s;
  z-index: -1;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffe161 !important;
  background-color: transparent !important;
  border-color: #ffe161;
  box-shadow: none;
}
.btn-warning:hover::before,
.btn-warning:focus::before,
.btn-warning.focus::before,
.btn-warning.active::before {
  width: 100%;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #a38400 !important;
  border-color: #a38400 !important;
}
.btn-danger {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger::before,
.btn-danger:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ff9966 !important;
  background-color: transparent !important;
  border-color: #ff9966;
  box-shadow: none;
}
.btn-danger:hover::before,
.btn-danger:focus::before,
.btn-danger.focus::before,
.btn-danger.active::before {
  width: 100%;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a83800 !important;
  border-color: #a83800 !important;
}
.btn-white {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.btn-white::before,
.btn-white:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #7a7a7a !important;
  transition: all .3s;
  z-index: -1;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #fafafa !important;
  background-color: transparent !important;
  border-color: #fafafa;
  box-shadow: none;
}
.btn-white:hover::before,
.btn-white:focus::before,
.btn-white.focus::before,
.btn-white.active::before {
  width: 100%;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-black {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black::before,
.btn-black:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #232323 !important;
  background-color: transparent !important;
  border-color: #232323;
  box-shadow: none;
}
.btn-black:hover::before,
.btn-black:focus::before,
.btn-black.focus::before,
.btn-black.active::before {
  width: 100%;
}
.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: #ffb18a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff7733 !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: #ffb18a !important;
  border-color: #ffb18a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2bb2c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #bc8b0c !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: #f2bb2c !important;
  border-color: #f2bb2c !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: #ffb18a !important;
}
.text-secondary {
  color: #f2bb2c !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: #f2bb2c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #f8da8c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #f2bb2c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #f2bb2c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f2bb2c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffddcc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #f2bb2c !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #f2bb2c !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: #ffb18a;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn button.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffb18a;
  border-color: #ffb18a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffb18a;
}
.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: 'Work Sans', 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: #ffb18a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Work Sans', 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: #ffb18a;
}
/* 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);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffb18a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffb18a;
}
.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: #ffb18a;
  border-bottom-color: #ffb18a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffb18a !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: #f2bb2c !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='%23ffb18a' %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-sIjMv8j33t {
  background-color: #fcf5e6;
}
.cid-sIjMv8j33t .main-container .main-img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .cid-sIjMv8j33t .main-container {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .cid-sIjMv8j33t .main-container .main-title {
    margin-top: 1rem;
  }
}
.cid-sIjMM1uCNB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-sIjMM1uCNB .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-sIjMM1uCNB .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-sIjMM1uCNB .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-sIjMM1uCNB .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-sIjMM1uCNB .text-wrapper .card-text,
.cid-sIjMM1uCNB .text-wrapper .card-btn,
.cid-sIjMM1uCNB .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-sIjMM1uCNB .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-sIjMM1uCNB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-sIjMM1uCNB .content-wrapper .geometry__square,
  .cid-sIjMM1uCNB .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-sIjMM1uCNB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sIjMM1uCNB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjMM1uCNB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sIjMM1uCNB .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sIjMM1uCNB .geometry {
  position: absolute;
}
.cid-sIjMM1uCNB .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-sIjMM1uCNB .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-sIjMM1uCNB .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-sIjMM1uCNB .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-sIjMM1uCNB .geometry__square,
.cid-sIjMM1uCNB .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-sIjMM1uCNB .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-sIjMM1uCNB .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-sIjMM1uCNB .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-sIjMM1uCNB .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-sIjMM1uCNB .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-sIjMM1uCNB .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-sIjMM1uCNB .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sIjMM1uCNB .content {
    display: block;
  }
  .cid-sIjMM1uCNB .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-sIjMM1uCNB .card-text,
  .cid-sIjMM1uCNB .card-title,
  .cid-sIjMM1uCNB .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-sIjMM1uCNB .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-sIjMM1uCNB .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-sIjMM1uCNB .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-sIjMM1uCNB .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-sIjMM1uCNB .geometry {
    position: absolute;
  }
  .cid-sIjMM1uCNB .geometry__circle,
  .cid-sIjMM1uCNB .geometry__circle-bg,
  .cid-sIjMM1uCNB .geometry__square,
  .cid-sIjMM1uCNB .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-sIjMUUybCn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fcf5e6;
}
.cid-sIjMUUybCn .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sIjMUUybCn .team-card:hover {
  transform: translateY(-10px);
}
.cid-sIjMUUybCn .container-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 77%;
}
.cid-sIjMUUybCn .card-content {
  margin: -80% 0 0 0;
}
.cid-sIjMUUybCn .card-wrap {
  background: #ffffff;
  height: 100%;
  display: flex;
  border-radius: 20px;
  position: relative;
}
.cid-sIjMUUybCn .card-wrap__content {
  margin: 0 0 -6vw 0;
  padding: 3rem 1.3rem;
}
.cid-sIjMUUybCn .card-wrap .image-wrap img {
  width: 100%;
}
.cid-sIjMUUybCn .card-wrap .image-wrap {
  margin: 1rem 2rem;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjMUUybCn .card-wrap .content-wrap {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sIjMUUybCn .card-wrap {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIjMUUybCn .profile-container .pdd-top:not(:first-child) {
    margin-bottom: 4rem;
  }
}
.cid-sIjMUUybCn .social-row {
  text-align: center;
}
.cid-sIjMUUybCn .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sIjMUUybCn .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sIjMUUybCn .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sIjMUUybCn .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sIjMZohNm2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fcf5e6;
}
.cid-sIjMZohNm2 img,
.cid-sIjMZohNm2 .item-img {
  width: 100%;
}
.cid-sIjMZohNm2 .item-card:focus,
.cid-sIjMZohNm2 span:focus {
  outline: none;
}
.cid-sIjMZohNm2 .item-card {
  margin-bottom: 2rem;
}
.cid-sIjMZohNm2 .item-wrapper {
  position: relative;
  background: #ffffff;
  overflow: initial;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sIjMZohNm2 .item-wrapper ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
  padding: 0;
}
.cid-sIjMZohNm2 .item-wrapper ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-sIjMZohNm2 .item-wrapper ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #232323;
  width: 40px;
  height: 40px;
  margin-top: 5px;
  padding-bottom: 1rem;
}
.cid-sIjMZohNm2 .item-wrapper .item-content {
  z-index: 1;
}
.cid-sIjMZohNm2 .item-wrapper .outline-hover {
  border: 2px solid #000;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20px, -20px);
  opacity: 0;
}
@media screen and (min-width: 767px) {
  .cid-sIjMZohNm2 .item-wrapper:hover {
    background: #f2bb2c;
  }
  .cid-sIjMZohNm2 .item-wrapper:hover .outline-hover {
    opacity: 1;
  }
}
.cid-sIjMZohNm2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sIjMZohNm2 .mbr-text,
.cid-sIjMZohNm2 .mbr-section-btn {
  text-align: left;
}
.cid-sIjMZohNm2 .item-title {
  text-align: left;
}
.cid-sIjMZohNm2 .item-subtitle {
  text-align: left;
}
.cid-tPwPvN0Y2W {
  background-color: #fdf2ec;
  position: relative;
}
.cid-tPwPvN0Y2W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPwPvN0Y2W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPwPvN0Y2W .container,
.cid-tPwPvN0Y2W .container-fluid {
  position: static;
}
.cid-tPwPvN0Y2W .mbr-section-title {
  margin-bottom: 25px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPwPvN0Y2W .mbr-section-title {
    margin-bottom: 5px;
  }
}
.cid-tPwPvN0Y2W .mbr-section-subtitle {
  color: #131313;
}
.cid-tPwPvN0Y2W .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tPwPvN0Y2W .mbr-text {
    margin-top: 18px;
  }
}
.cid-tPwPvN0Y2W .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tPwPvN0Y2W .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-tPwPvN0Y2W .item-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.cid-tPwPvN0Y2W .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-tPwPvN0Y2W .item-img {
    display: none;
  }
}
.cid-tPwPwXhyA7 {
  background-image: url("../../../assets/images/42-900x600.jpg");
}
.cid-tPwPwXhyA7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPwPwXhyA7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPwPwXhyA7 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tPwPwXhyA7 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tPwPwXhyA7 .container {
    padding: 0;
  }
}
.cid-tPwPwXhyA7 .title-wrapper {
  padding: 0 16px;
}
.cid-tPwPwXhyA7 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tPwPwXhyA7 .title-wrapper .mbr-text {
  margin: 25px 0 0 0;
}
.cid-tPwPwXhyA7 .title-wrapper .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tPwPwXhyA7 .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tPwPwXhyA7 .mbr-section-title {
  color: #ffffff;
}
.cid-tPwPwXhyA7 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tPwPwXhyA7 .mbr-section-title,
.cid-tPwPwXhyA7 .mbr-section-btn {
  text-align: center;
}
.cid-tPwPBpbJd6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdf2ec;
}
.cid-tPwPBpbJd6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPwPBpbJd6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tPwPBpbJd6 .container {
    padding: 0 30px;
  }
}
.cid-tPwPBpbJd6 .image-wrapper {
  margin-right: 120px;
}
@media (max-width: 992px) {
  .cid-tPwPBpbJd6 .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tPwPBpbJd6 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tPwPBpbJd6 .image-wrapper img {
    height: 300px;
  }
}
.cid-tPwPBpbJd6 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tPwPBpbJd6 .title-wrapper {
    height: auto;
  }
}
.cid-tPwPBpbJd6 .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tPwPBpbJd6 .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-tPwPBpbJd6 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tPwPBpbJd6 .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tPwPBpbJd6 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tPwPBpbJd6 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tPwPBpbJd6 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tPwPBpbJd6 .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tPwPBpbJd6 .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tPwPBpbJd6 .mbr-section-subtitle {
  color: #212529;
}
.cid-tPwPBpbJd6 .mbr-section-title {
  color: #212529;
}
.cid-tPwPBpbJd6 .mbr-text {
  color: #212529;
}
.cid-tPwQikxZTn {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/44-1263x600.png");
}
.cid-tPwQikxZTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPwQikxZTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tPwQikxZTn .col-content {
    text-align: center;
  }
}
.cid-tPwQikxZTn .label-container {
  margin-bottom: 16px;
}
.cid-tPwQikxZTn .label-text {
  color: #24262b;
}
.cid-tPwQikxZTn .label-text-2 {
  color: #24262b;
}
.cid-tPwQikxZTn .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tPwQikxZTn .text-container {
  margin-top: 24px;
}
.cid-tPwQikxZTn .mbr-section-subtitle {
  color: #ffffff;
  text-align: right;
}
.cid-tPwQikxZTn .mbr-text {
  color: #b79b6c;
}
.cid-tPwQikxZTn .mbr-section-btn {
  margin-top: 28px;
}
.cid-tPwQvD8kyD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdf2ec;
}
.cid-tPwQvD8kyD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPwQvD8kyD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tPwQvD8kyD .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tPwQvD8kyD .container {
    padding: 0 12px;
  }
}
.cid-tPwQvD8kyD .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tPwQvD8kyD .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tPwQvD8kyD .title-wrapper .mbr-section-title span {
  padding: 6px 12px;
  background-color: #ffcd9f;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-tPwQvD8kyD .title-wrapper .mbr-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.cid-tPwQvD8kyD .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tPwQvD8kyD .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-tPwQvD8kyD .title-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-tPwQvD8kyD .title-wrapper .tags-wrapper {
  margin-bottom: 24px;
}
.cid-tPwQvD8kyD .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-block;
}
.cid-tPwQvD8kyD .title-wrapper .tags-wrapper .tags-wrap .tag-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cid-tPwQvD8kyD .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-iconfont {
  font-size: 44px;
  margin-right: 8px;
  color: #222222;
}
.cid-tPwQvD8kyD .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-tag {
  margin-bottom: 0;
}
.cid-tPwQvD8kyD .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-tPwQvD8kyD .image-wrapper img {
  width: 420px;
  height: 420px;
  border-radius: 100%;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #222222;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .cid-tPwQvD8kyD .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-tPwQvD8kyD .image-wrapper img {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 768px) {
  .cid-tPwQvD8kyD .image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
.cid-tPwQvD8kyD .mbr-section-title {
  color: #222222;
}
.cid-tPwQvD8kyD .mbr-text {
  color: #222222;
}
.cid-tPwQvD8kyD .mbr-tag {
  color: #222222;
}
.cid-sIjN9yivXz {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #fdf2ec;
}
.cid-sIjN9yivXz .nav-tabs .nav-item.open .nav-link:focus,
.cid-sIjN9yivXz .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sIjN9yivXz .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-sIjN9yivXz .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-sIjN9yivXz .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-sIjN9yivXz .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #0b2b5c;
}
.cid-sIjN9yivXz .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sIjN9yivXz .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-sIjN9yivXz .nav-tabs .nav-item {
  width: 100%;
}
.cid-sIjN9yivXz .nav-link,
.cid-sIjN9yivXz .nav-link.active {
  padding: 1rem auto;
  background: #ffb18a;
}
.cid-sIjN9yivXz .nav-tabs .nav-link.active {
  color: #0b2b5c;
}
.cid-sIjN9yivXz .tab-content {
  background: #ffe885;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-sIjN9yivXz .tab-content {
    border-radius: 30px !important;
  }
}
.cid-sIjN9yivXz .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-sIjN9yivXz .logo-container {
    border-right: 1px solid #0b2b5c;
  }
}
.cid-sIjN9yivXz H4 {
  text-align: center;
}
.cid-sIjN9yivXz H3 {
  text-align: center;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-sIjN9yivXz .nav-link {
    font-size: 1.2rem;
  }
}
.cid-sIjN9yivXz P {
  text-align: center;
}
.cid-sIjMsNkbhY .navbar-dropdown {
  position: relative !important;
}
.cid-sIjMsNkbhY .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-sIjMsNkbhY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIjMsNkbhY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIjMsNkbhY .dropdown-item:hover,
.cid-sIjMsNkbhY .dropdown-item:focus {
  background: #ffb18a !important;
  color: white !important;
}
.cid-sIjMsNkbhY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIjMsNkbhY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIjMsNkbhY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-sIjMsNkbhY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIjMsNkbhY .nav-link {
  position: relative;
}
.cid-sIjMsNkbhY .container {
  display: flex;
  margin: auto;
}
.cid-sIjMsNkbhY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIjMsNkbhY .dropdown-menu,
.cid-sIjMsNkbhY .navbar.opened {
  background: #000000 !important;
}
.cid-sIjMsNkbhY .nav-item:focus,
.cid-sIjMsNkbhY .nav-link:focus {
  outline: none;
}
.cid-sIjMsNkbhY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIjMsNkbhY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIjMsNkbhY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIjMsNkbhY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIjMsNkbhY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIjMsNkbhY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIjMsNkbhY .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: #000000;
}
.cid-sIjMsNkbhY .navbar.opened {
  transition: all 0.3s;
}
.cid-sIjMsNkbhY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIjMsNkbhY .navbar .navbar-logo img {
  width: auto;
}
.cid-sIjMsNkbhY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIjMsNkbhY .navbar.collapsed {
  justify-content: center;
}
.cid-sIjMsNkbhY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIjMsNkbhY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIjMsNkbhY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.9rem);
  }
}
.cid-sIjMsNkbhY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIjMsNkbhY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIjMsNkbhY .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-sIjMsNkbhY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIjMsNkbhY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIjMsNkbhY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIjMsNkbhY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIjMsNkbhY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIjMsNkbhY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIjMsNkbhY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIjMsNkbhY .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-sIjMsNkbhY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIjMsNkbhY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIjMsNkbhY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIjMsNkbhY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIjMsNkbhY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIjMsNkbhY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIjMsNkbhY .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIjMsNkbhY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIjMsNkbhY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIjMsNkbhY .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-sIjMsNkbhY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIjMsNkbhY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIjMsNkbhY .dropdown-item.active,
.cid-sIjMsNkbhY .dropdown-item:active {
  background-color: transparent;
}
.cid-sIjMsNkbhY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIjMsNkbhY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIjMsNkbhY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIjMsNkbhY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sIjMsNkbhY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIjMsNkbhY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIjMsNkbhY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIjMsNkbhY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIjMsNkbhY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIjMsNkbhY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIjMsNkbhY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIjMsNkbhY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIjMsNkbhY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIjMsNkbhY .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-sIjMsNkbhY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIjMsNkbhY .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-sIjMsNkbhY .navbar {
    height: 70px;
  }
  .cid-sIjMsNkbhY .navbar.opened {
    height: auto;
  }
  .cid-sIjMsNkbhY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIjNm1ufWb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sIjNm1ufWb .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-sIjNm1ufWb .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjNm1ufWb .row > div {
    margin: auto;
  }
}
.cid-sIjNm1ufWb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sIjNm1ufWb .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 0rem;
  }
}
.cid-sIjNm1ufWb .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-sIjNm1ufWb .row {
    display: grid;
  }
  .cid-sIjNm1ufWb .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-sIjNm1ufWb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sIjNm1ufWb .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sIjMsNkbhY .navbar-dropdown {
  position: relative !important;
}
.cid-sIjMsNkbhY .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-sIjMsNkbhY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIjMsNkbhY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIjMsNkbhY .dropdown-item:hover,
.cid-sIjMsNkbhY .dropdown-item:focus {
  background: #ffb18a !important;
  color: white !important;
}
.cid-sIjMsNkbhY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIjMsNkbhY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIjMsNkbhY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-sIjMsNkbhY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIjMsNkbhY .nav-link {
  position: relative;
}
.cid-sIjMsNkbhY .container {
  display: flex;
  margin: auto;
}
.cid-sIjMsNkbhY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIjMsNkbhY .dropdown-menu,
.cid-sIjMsNkbhY .navbar.opened {
  background: #000000 !important;
}
.cid-sIjMsNkbhY .nav-item:focus,
.cid-sIjMsNkbhY .nav-link:focus {
  outline: none;
}
.cid-sIjMsNkbhY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIjMsNkbhY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIjMsNkbhY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIjMsNkbhY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIjMsNkbhY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIjMsNkbhY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIjMsNkbhY .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: #000000;
}
.cid-sIjMsNkbhY .navbar.opened {
  transition: all 0.3s;
}
.cid-sIjMsNkbhY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIjMsNkbhY .navbar .navbar-logo img {
  width: auto;
}
.cid-sIjMsNkbhY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIjMsNkbhY .navbar.collapsed {
  justify-content: center;
}
.cid-sIjMsNkbhY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIjMsNkbhY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIjMsNkbhY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.9rem);
  }
}
.cid-sIjMsNkbhY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIjMsNkbhY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIjMsNkbhY .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-sIjMsNkbhY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIjMsNkbhY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIjMsNkbhY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIjMsNkbhY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIjMsNkbhY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIjMsNkbhY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIjMsNkbhY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIjMsNkbhY .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-sIjMsNkbhY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIjMsNkbhY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIjMsNkbhY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIjMsNkbhY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIjMsNkbhY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIjMsNkbhY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIjMsNkbhY .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIjMsNkbhY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIjMsNkbhY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIjMsNkbhY .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-sIjMsNkbhY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIjMsNkbhY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIjMsNkbhY .dropdown-item.active,
.cid-sIjMsNkbhY .dropdown-item:active {
  background-color: transparent;
}
.cid-sIjMsNkbhY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIjMsNkbhY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIjMsNkbhY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIjMsNkbhY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sIjMsNkbhY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIjMsNkbhY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIjMsNkbhY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIjMsNkbhY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIjMsNkbhY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIjMsNkbhY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIjMsNkbhY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIjMsNkbhY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIjMsNkbhY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIjMsNkbhY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIjMsNkbhY .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-sIjMsNkbhY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIjMsNkbhY .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-sIjMsNkbhY .navbar {
    height: 70px;
  }
  .cid-sIjMsNkbhY .navbar.opened {
    height: auto;
  }
  .cid-sIjMsNkbhY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPwW2wYGy8 {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/50.webp");
}
.cid-tPwW2wYGy8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPwW2wYGy8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tPwW2wYGy8 .col-content {
    text-align: center;
  }
}
.cid-tPwW2wYGy8 .label-container {
  margin-bottom: 16px;
}
.cid-tPwW2wYGy8 .label-text {
  color: #24262b;
}
.cid-tPwW2wYGy8 .label-text-2 {
  color: #24262b;
}
.cid-tPwW2wYGy8 .mbr-section-title {
  color: #ffffff;
}
.cid-tPwW2wYGy8 .text-container {
  margin-top: 24px;
}
.cid-tPwW2wYGy8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPwW2wYGy8 .mbr-text {
  color: #b79b6c;
}
.cid-tPwW2wYGy8 .mbr-section-btn {
  margin-top: 28px;
}
.cid-tPwXaE10g6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tPwXaE10g6 .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-tPwXaE10g6 .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-tPwXaE10g6 .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-tPwXaE10g6 .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-tPwXaE10g6 .text-wrapper .card-text,
.cid-tPwXaE10g6 .text-wrapper .card-btn,
.cid-tPwXaE10g6 .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-tPwXaE10g6 .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tPwXaE10g6 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-tPwXaE10g6 .content-wrapper .geometry__square,
  .cid-tPwXaE10g6 .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-tPwXaE10g6 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tPwXaE10g6 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPwXaE10g6 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tPwXaE10g6 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tPwXaE10g6 .geometry {
  position: absolute;
}
.cid-tPwXaE10g6 .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-tPwXaE10g6 .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-tPwXaE10g6 .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPwXaE10g6 .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-tPwXaE10g6 .geometry__square,
.cid-tPwXaE10g6 .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-tPwXaE10g6 .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-tPwXaE10g6 .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-tPwXaE10g6 .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tPwXaE10g6 .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-tPwXaE10g6 .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-tPwXaE10g6 .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-tPwXaE10g6 .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tPwXaE10g6 .content {
    display: block;
  }
  .cid-tPwXaE10g6 .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-tPwXaE10g6 .card-text,
  .cid-tPwXaE10g6 .card-title,
  .cid-tPwXaE10g6 .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-tPwXaE10g6 .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-tPwXaE10g6 .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPwXaE10g6 .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-tPwXaE10g6 .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-tPwXaE10g6 .geometry {
    position: absolute;
  }
  .cid-tPwXaE10g6 .geometry__circle,
  .cid-tPwXaE10g6 .geometry__circle-bg,
  .cid-tPwXaE10g6 .geometry__square,
  .cid-tPwXaE10g6 .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tPwXtzdlVE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tPwXtzdlVE .geometry {
  position: absolute;
}
.cid-tPwXtzdlVE .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tPwXtzdlVE .geometry_left {
  left: -70px;
}
.cid-tPwXtzdlVE .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPwXtzdlVE .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tPwXtzdlVE .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-tPwXtzdlVE blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-tPwXtzdlVE blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tPwXtzdlVE blockquote {
    padding: 2rem 1rem;
  }
  .cid-tPwXtzdlVE .geometry {
    position: absolute;
  }
  .cid-tPwXtzdlVE .geometry__square,
  .cid-tPwXtzdlVE .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tPwXtzdlVE .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tPwXtzdlVE blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-tPwXtzdlVE .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-tPwXtzdlVE .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tPwXtzdlVE blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tPwXtzdlVE .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPwXtzdlVE blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tPwZWV8hJn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcf5e6;
}
.cid-tPwZWV8hJn .geometry {
  position: absolute;
}
.cid-tPwZWV8hJn .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tPwZWV8hJn .geometry_left {
  left: -70px;
}
.cid-tPwZWV8hJn .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPwZWV8hJn .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tPwZWV8hJn .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-tPwZWV8hJn blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-tPwZWV8hJn blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tPwZWV8hJn blockquote {
    padding: 2rem 1rem;
  }
  .cid-tPwZWV8hJn .geometry {
    position: absolute;
  }
  .cid-tPwZWV8hJn .geometry__square,
  .cid-tPwZWV8hJn .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tPwZWV8hJn .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tPwZWV8hJn blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-tPwZWV8hJn .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-tPwZWV8hJn .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tPwZWV8hJn blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tPwZWV8hJn .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPwZWV8hJn blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tPwZI1XWfs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdf2ec;
}
.cid-tPwZI1XWfs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPwZI1XWfs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPwZI1XWfs .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPwZI1XWfs .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPwZI1XWfs .container {
    padding: 0 30px;
  }
}
.cid-tPwZI1XWfs .item {
  margin-bottom: 30px;
}
.cid-tPwZI1XWfs .item .item-wrapper {
  padding: 40px 3rem;
  border-radius: 2em;
  background-color: #ffffff;
  display: flex;
}
@media (max-width: 992px) {
  .cid-tPwZI1XWfs .item .item-wrapper {
    display: block;
    margin: 0;
    padding: 30px 20px;
  }
}
.cid-tPwZI1XWfs .item .item-wrapper .image-wrap {
  margin-right: 3rem;
}
@media (max-width: 992px) {
  .cid-tPwZI1XWfs .item .item-wrapper .image-wrap {
    margin: 0;
  }
}
.cid-tPwZI1XWfs .item .item-wrapper .image-wrap .item-img img {
  height: 265px;
  width: 400px;
  object-fit: cover;
  border-radius: 1.5em;
}
@media (max-width: 992px) {
  .cid-tPwZI1XWfs .item .item-wrapper .image-wrap .item-img img {
    width: 265px;
    margin: 0 auto;
  }
}
@media (max-width: 425px) {
  .cid-tPwZI1XWfs .item .item-wrapper .image-wrap .item-img img {
    width: 180px;
  }
}
.cid-tPwZI1XWfs .item .item-wrapper .image-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-tPwZI1XWfs .item .item-wrapper .item-content {
  width: 100%;
}
.cid-tPwZI1XWfs .item .item-wrapper .item-content .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tPwZI1XWfs .item .item-wrapper .item-content .desc-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tPwZI1XWfs .item .item-wrapper .item-content .desc-wrap {
    display: block;
  }
}
.cid-tPwZI1XWfs .item .item-wrapper .item-content .desc-wrap .mbr-desc {
  padding: 8px 20px;
  margin-bottom: 0;
  background-color: #fe5115;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-tPwZI1XWfs .item .item-wrapper .item-content .desc-wrap .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-tPwZI1XWfs .item .item-wrapper .item-content .desc-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-tPwZI1XWfs .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-tPwZI1XWfs .mbr-section-title {
  color: #2b2b2b;
}
.cid-tPwZI1XWfs .mbr-desc {
  color: #ffffff;
}
.cid-tPwZI1XWfs .mbr-date {
  color: #4e4e4e;
}
.cid-tPwZI1XWfs .mbr-text {
  color: #4e4e4e;
}
.cid-tPwYaYIEzA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdf2ec;
}
.cid-tPwYaYIEzA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPwYaYIEzA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPwYaYIEzA .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPwYaYIEzA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPwYaYIEzA .container {
    padding: 0 30px;
  }
}
.cid-tPwYaYIEzA .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tPwYaYIEzA .item {
    margin-bottom: 30px;
  }
}
.cid-tPwYaYIEzA .item:nth-child(2n) .item-wrapper {
  margin-right: 0;
  margin-left: 16px;
}
@media (max-width: 992px) {
  .cid-tPwYaYIEzA .item:nth-child(2n) .item-wrapper {
    margin: 0;
  }
}
.cid-tPwYaYIEzA .item .item-wrapper {
  margin-right: 16px;
  padding: 40px 3rem;
  border-radius: 2em;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tPwYaYIEzA .item .item-wrapper {
    margin: 0;
    padding: 30px 20px;
  }
}
.cid-tPwYaYIEzA .item .item-wrapper .item-img {
  margin-bottom: 30px;
}
.cid-tPwYaYIEzA .item .item-wrapper .item-img img {
  height: 365px;
  object-fit: cover;
  border-radius: 1.5em;
}
.cid-tPwYaYIEzA .item .item-wrapper .item-content .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tPwYaYIEzA .item .item-wrapper .item-content .desc-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tPwYaYIEzA .item .item-wrapper .item-content .desc-wrap {
    display: block;
  }
}
.cid-tPwYaYIEzA .item .item-wrapper .item-content .desc-wrap .mbr-desc {
  padding: 8px 20px;
  margin-bottom: 0;
  background-color: #fe5115;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-tPwYaYIEzA .item .item-wrapper .item-content .desc-wrap .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-tPwYaYIEzA .item .item-wrapper .item-content .desc-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-tPwYaYIEzA .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-tPwYaYIEzA .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-tPwYaYIEzA .mbr-section-title {
  color: #2b2b2b;
}
.cid-tPwYaYIEzA .mbr-desc {
  color: #ffffff;
}
.cid-tPwYaYIEzA .mbr-date {
  color: #4e4e4e;
}
.cid-tPwYaYIEzA .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tPwYaYIEzA .mbr-section-title,
.cid-tPwYaYIEzA .mbr-section-btn {
  text-align: center;
}
.cid-tPx0xwId7K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tPx0xwId7K .geometry {
  position: absolute;
}
.cid-tPx0xwId7K .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tPx0xwId7K .geometry_left {
  left: -70px;
  bottom: 230px;
}
.cid-tPx0xwId7K .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPx0xwId7K .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .cid-tPx0xwId7K .card-block {
    width: 100%;
  }
}
.cid-tPx0xwId7K blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-tPx0xwId7K blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tPx0xwId7K blockquote {
    padding: 2rem 1rem;
  }
  .cid-tPx0xwId7K .geometry {
    position: absolute;
  }
  .cid-tPx0xwId7K .geometry__circle,
  .cid-tPx0xwId7K .geometry__circle-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tPx0xwId7K .geometry_left {
    left: -47px;
    bottom: 240px;
  }
}
@media (min-width: 992px) {
  .cid-tPx0xwId7K blockquote {
    padding: 3rem;
  }
}
@media (min-width: 768px) {
  .cid-tPx0xwId7K .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPx0xwId7K blockquote:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tPx16Iiev4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fdf2ec;
}
.cid-tPx16Iiev4 .nav-tabs .nav-item.open .nav-link:focus,
.cid-tPx16Iiev4 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tPx16Iiev4 .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-tPx16Iiev4 .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tPx16Iiev4 .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-tPx16Iiev4 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #0b2b5c;
}
.cid-tPx16Iiev4 .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tPx16Iiev4 .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-tPx16Iiev4 .nav-tabs .nav-item {
  width: 100%;
}
.cid-tPx16Iiev4 .nav-link,
.cid-tPx16Iiev4 .nav-link.active {
  padding: 1rem auto;
  background: #ffb18a;
}
.cid-tPx16Iiev4 .nav-tabs .nav-link.active {
  color: #0b2b5c;
}
.cid-tPx16Iiev4 .tab-content {
  background: #ffe885;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-tPx16Iiev4 .tab-content {
    border-radius: 30px !important;
  }
}
.cid-tPx16Iiev4 .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-tPx16Iiev4 .logo-container {
    border-right: 1px solid #0b2b5c;
  }
}
.cid-tPx16Iiev4 H4 {
  text-align: center;
}
.cid-tPx16Iiev4 H3 {
  text-align: center;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-tPx16Iiev4 .nav-link {
    font-size: 1.2rem;
  }
}
.cid-tPx16Iiev4 P {
  text-align: center;
}
.cid-sIjNm1ufWb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sIjNm1ufWb .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-sIjNm1ufWb .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjNm1ufWb .row > div {
    margin: auto;
  }
}
.cid-sIjNm1ufWb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sIjNm1ufWb .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 0rem;
  }
}
.cid-sIjNm1ufWb .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-sIjNm1ufWb .row {
    display: grid;
  }
  .cid-sIjNm1ufWb .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-sIjNm1ufWb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sIjNm1ufWb .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPx5Sm61ia .navbar-dropdown {
  position: relative !important;
}
.cid-tPx5Sm61ia .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-tPx5Sm61ia .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPx5Sm61ia .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPx5Sm61ia .dropdown-item:hover,
.cid-tPx5Sm61ia .dropdown-item:focus {
  background: #ffb18a !important;
  color: white !important;
}
.cid-tPx5Sm61ia .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPx5Sm61ia .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPx5Sm61ia .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-tPx5Sm61ia .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPx5Sm61ia .nav-link {
  position: relative;
}
.cid-tPx5Sm61ia .container {
  display: flex;
  margin: auto;
}
.cid-tPx5Sm61ia .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPx5Sm61ia .dropdown-menu,
.cid-tPx5Sm61ia .navbar.opened {
  background: #000000 !important;
}
.cid-tPx5Sm61ia .nav-item:focus,
.cid-tPx5Sm61ia .nav-link:focus {
  outline: none;
}
.cid-tPx5Sm61ia .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPx5Sm61ia .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPx5Sm61ia .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPx5Sm61ia .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPx5Sm61ia .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPx5Sm61ia .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPx5Sm61ia .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: #000000;
}
.cid-tPx5Sm61ia .navbar.opened {
  transition: all 0.3s;
}
.cid-tPx5Sm61ia .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPx5Sm61ia .navbar .navbar-logo img {
  width: auto;
}
.cid-tPx5Sm61ia .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPx5Sm61ia .navbar.collapsed {
  justify-content: center;
}
.cid-tPx5Sm61ia .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPx5Sm61ia .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPx5Sm61ia .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.9rem);
  }
}
.cid-tPx5Sm61ia .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPx5Sm61ia .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPx5Sm61ia .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-tPx5Sm61ia .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPx5Sm61ia .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPx5Sm61ia .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPx5Sm61ia .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPx5Sm61ia .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPx5Sm61ia .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPx5Sm61ia .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPx5Sm61ia .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-tPx5Sm61ia .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPx5Sm61ia .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPx5Sm61ia .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPx5Sm61ia .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPx5Sm61ia .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPx5Sm61ia .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPx5Sm61ia .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPx5Sm61ia .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPx5Sm61ia .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPx5Sm61ia .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-tPx5Sm61ia .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPx5Sm61ia .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPx5Sm61ia .dropdown-item.active,
.cid-tPx5Sm61ia .dropdown-item:active {
  background-color: transparent;
}
.cid-tPx5Sm61ia .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPx5Sm61ia .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPx5Sm61ia .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPx5Sm61ia .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tPx5Sm61ia .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPx5Sm61ia .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPx5Sm61ia ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPx5Sm61ia .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPx5Sm61ia button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPx5Sm61ia button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tPx5Sm61ia button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPx5Sm61ia button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPx5Sm61ia button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPx5Sm61ia button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPx5Sm61ia nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPx5Sm61ia nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPx5Sm61ia nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPx5Sm61ia nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPx5Sm61ia .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-tPx5Sm61ia a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPx5Sm61ia .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-tPx5Sm61ia .navbar {
    height: 70px;
  }
  .cid-tPx5Sm61ia .navbar.opened {
    height: auto;
  }
  .cid-tPx5Sm61ia .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPx5Sn0I6I {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/56-800x564.png");
}
.cid-tPx5Sn0I6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPx5Sn0I6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tPx5Sn0I6I .col-content {
    text-align: center;
  }
}
.cid-tPx5Sn0I6I .label-container {
  margin-bottom: 16px;
}
.cid-tPx5Sn0I6I .label-text {
  color: #24262b;
}
.cid-tPx5Sn0I6I .label-text-2 {
  color: #24262b;
}
.cid-tPx5Sn0I6I .mbr-section-title {
  color: #ffffff;
}
.cid-tPx5Sn0I6I .text-container {
  margin-top: 24px;
}
.cid-tPx5Sn0I6I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPx5Sn0I6I .mbr-text {
  color: #b79b6c;
}
.cid-tPx5Sn0I6I .mbr-section-btn {
  margin-top: 28px;
}
.cid-tPx5SnQ0NF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tPx5SnQ0NF .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-tPx5SnQ0NF .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-tPx5SnQ0NF .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-tPx5SnQ0NF .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-tPx5SnQ0NF .text-wrapper .card-text,
.cid-tPx5SnQ0NF .text-wrapper .card-btn,
.cid-tPx5SnQ0NF .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-tPx5SnQ0NF .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tPx5SnQ0NF .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-tPx5SnQ0NF .content-wrapper .geometry__square,
  .cid-tPx5SnQ0NF .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-tPx5SnQ0NF .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tPx5SnQ0NF .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPx5SnQ0NF .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tPx5SnQ0NF .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tPx5SnQ0NF .geometry {
  position: absolute;
}
.cid-tPx5SnQ0NF .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-tPx5SnQ0NF .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-tPx5SnQ0NF .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPx5SnQ0NF .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-tPx5SnQ0NF .geometry__square,
.cid-tPx5SnQ0NF .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-tPx5SnQ0NF .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-tPx5SnQ0NF .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-tPx5SnQ0NF .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tPx5SnQ0NF .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-tPx5SnQ0NF .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-tPx5SnQ0NF .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-tPx5SnQ0NF .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tPx5SnQ0NF .content {
    display: block;
  }
  .cid-tPx5SnQ0NF .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-tPx5SnQ0NF .card-text,
  .cid-tPx5SnQ0NF .card-title,
  .cid-tPx5SnQ0NF .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-tPx5SnQ0NF .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-tPx5SnQ0NF .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPx5SnQ0NF .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-tPx5SnQ0NF .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-tPx5SnQ0NF .geometry {
    position: absolute;
  }
  .cid-tPx5SnQ0NF .geometry__circle,
  .cid-tPx5SnQ0NF .geometry__circle-bg,
  .cid-tPx5SnQ0NF .geometry__square,
  .cid-tPx5SnQ0NF .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tPx5SotXPp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tPx5SotXPp .geometry {
  position: absolute;
}
.cid-tPx5SotXPp .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tPx5SotXPp .geometry_left {
  left: -70px;
}
.cid-tPx5SotXPp .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPx5SotXPp .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tPx5SotXPp .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-tPx5SotXPp blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-tPx5SotXPp blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tPx5SotXPp blockquote {
    padding: 2rem 1rem;
  }
  .cid-tPx5SotXPp .geometry {
    position: absolute;
  }
  .cid-tPx5SotXPp .geometry__square,
  .cid-tPx5SotXPp .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tPx5SotXPp .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tPx5SotXPp blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-tPx5SotXPp .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-tPx5SotXPp .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tPx5SotXPp blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tPx5SotXPp .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPx5SotXPp blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tPx7srZxXL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/58-650x450.jpg");
}
.cid-tPx7srZxXL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPx7srZxXL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPx7srZxXL .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tPx7srZxXL .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tPx7srZxXL .container {
    padding: 0 20px;
  }
}
.cid-tPx7srZxXL .row {
  height: 800px;
}
@media (max-width: 992px) {
  .cid-tPx7srZxXL .row {
    height: 450px;
  }
}
.cid-tPx5SpeQoQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fcf5e6;
}
.cid-tPx5SpeQoQ .geometry {
  position: absolute;
}
.cid-tPx5SpeQoQ .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tPx5SpeQoQ .geometry_left {
  left: -70px;
}
.cid-tPx5SpeQoQ .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPx5SpeQoQ .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tPx5SpeQoQ .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-tPx5SpeQoQ blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-tPx5SpeQoQ blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tPx5SpeQoQ blockquote {
    padding: 2rem 1rem;
  }
  .cid-tPx5SpeQoQ .geometry {
    position: absolute;
  }
  .cid-tPx5SpeQoQ .geometry__square,
  .cid-tPx5SpeQoQ .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tPx5SpeQoQ .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tPx5SpeQoQ blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-tPx5SpeQoQ .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-tPx5SpeQoQ .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tPx5SpeQoQ blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tPx5SpeQoQ .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPx5SpeQoQ blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tPx5SscD2X {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fdf2ec;
}
.cid-tPx5SscD2X .nav-tabs .nav-item.open .nav-link:focus,
.cid-tPx5SscD2X .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tPx5SscD2X .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-tPx5SscD2X .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tPx5SscD2X .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-tPx5SscD2X .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #0b2b5c;
}
.cid-tPx5SscD2X .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tPx5SscD2X .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-tPx5SscD2X .nav-tabs .nav-item {
  width: 100%;
}
.cid-tPx5SscD2X .nav-link,
.cid-tPx5SscD2X .nav-link.active {
  padding: 1rem auto;
  background: #ffb18a;
}
.cid-tPx5SscD2X .nav-tabs .nav-link.active {
  color: #0b2b5c;
}
.cid-tPx5SscD2X .tab-content {
  background: #ffe885;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-tPx5SscD2X .tab-content {
    border-radius: 30px !important;
  }
}
.cid-tPx5SscD2X .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-tPx5SscD2X .logo-container {
    border-right: 1px solid #0b2b5c;
  }
}
.cid-tPx5SscD2X H4 {
  text-align: center;
}
.cid-tPx5SscD2X H3 {
  text-align: center;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-tPx5SscD2X .nav-link {
    font-size: 1.2rem;
  }
}
.cid-tPx5SscD2X P {
  text-align: center;
}
.cid-tPx5St2Xqy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPx5St2Xqy .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-tPx5St2Xqy .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-tPx5St2Xqy .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-tPx5St2Xqy .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-tPx5St2Xqy .row > div {
    margin: auto;
  }
}
.cid-tPx5St2Xqy .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPx5St2Xqy .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-tPx5St2Xqy .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPx5St2Xqy .list {
    margin-bottom: 0rem;
  }
}
.cid-tPx5St2Xqy .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-tPx5St2Xqy .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-tPx5St2Xqy .row {
    display: grid;
  }
  .cid-tPx5St2Xqy .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-tPx5St2Xqy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPx5St2Xqy .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-tPx5St2Xqy div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPx7Wn6PYG .navbar-dropdown {
  position: relative !important;
}
.cid-tPx7Wn6PYG .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-tPx7Wn6PYG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPx7Wn6PYG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPx7Wn6PYG .dropdown-item:hover,
.cid-tPx7Wn6PYG .dropdown-item:focus {
  background: #ffb18a !important;
  color: white !important;
}
.cid-tPx7Wn6PYG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPx7Wn6PYG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPx7Wn6PYG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-tPx7Wn6PYG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPx7Wn6PYG .nav-link {
  position: relative;
}
.cid-tPx7Wn6PYG .container {
  display: flex;
  margin: auto;
}
.cid-tPx7Wn6PYG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPx7Wn6PYG .dropdown-menu,
.cid-tPx7Wn6PYG .navbar.opened {
  background: #000000 !important;
}
.cid-tPx7Wn6PYG .nav-item:focus,
.cid-tPx7Wn6PYG .nav-link:focus {
  outline: none;
}
.cid-tPx7Wn6PYG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPx7Wn6PYG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPx7Wn6PYG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPx7Wn6PYG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPx7Wn6PYG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPx7Wn6PYG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPx7Wn6PYG .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: #000000;
}
.cid-tPx7Wn6PYG .navbar.opened {
  transition: all 0.3s;
}
.cid-tPx7Wn6PYG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPx7Wn6PYG .navbar .navbar-logo img {
  width: auto;
}
.cid-tPx7Wn6PYG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPx7Wn6PYG .navbar.collapsed {
  justify-content: center;
}
.cid-tPx7Wn6PYG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPx7Wn6PYG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPx7Wn6PYG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.9rem);
  }
}
.cid-tPx7Wn6PYG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPx7Wn6PYG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPx7Wn6PYG .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-tPx7Wn6PYG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPx7Wn6PYG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPx7Wn6PYG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPx7Wn6PYG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPx7Wn6PYG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPx7Wn6PYG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPx7Wn6PYG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPx7Wn6PYG .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-tPx7Wn6PYG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPx7Wn6PYG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPx7Wn6PYG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPx7Wn6PYG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPx7Wn6PYG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPx7Wn6PYG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tPx7Wn6PYG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPx7Wn6PYG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPx7Wn6PYG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPx7Wn6PYG .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-tPx7Wn6PYG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPx7Wn6PYG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPx7Wn6PYG .dropdown-item.active,
.cid-tPx7Wn6PYG .dropdown-item:active {
  background-color: transparent;
}
.cid-tPx7Wn6PYG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPx7Wn6PYG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPx7Wn6PYG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPx7Wn6PYG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tPx7Wn6PYG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPx7Wn6PYG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPx7Wn6PYG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPx7Wn6PYG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPx7Wn6PYG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPx7Wn6PYG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tPx7Wn6PYG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPx7Wn6PYG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPx7Wn6PYG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPx7Wn6PYG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPx7Wn6PYG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPx7Wn6PYG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPx7Wn6PYG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPx7Wn6PYG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPx7Wn6PYG .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-tPx7Wn6PYG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPx7Wn6PYG .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-tPx7Wn6PYG .navbar {
    height: 70px;
  }
  .cid-tPx7Wn6PYG .navbar.opened {
    height: auto;
  }
  .cid-tPx7Wn6PYG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPx7WnTZEG {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/61-800x529.jpg");
}
.cid-tPx7WnTZEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPx7WnTZEG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tPx7WnTZEG .col-content {
    text-align: center;
  }
}
.cid-tPx7WnTZEG .label-container {
  margin-bottom: 16px;
}
.cid-tPx7WnTZEG .label-text {
  color: #24262b;
}
.cid-tPx7WnTZEG .label-text-2 {
  color: #24262b;
}
.cid-tPx7WnTZEG .mbr-section-title {
  color: #ffffff;
}
.cid-tPx7WnTZEG .text-container {
  margin-top: 24px;
}
.cid-tPx7WnTZEG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPx7WnTZEG .mbr-text {
  color: #b79b6c;
}
.cid-tPx7WnTZEG .mbr-section-btn {
  margin-top: 28px;
}
.cid-tPx7WoHzdM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tPx7WoHzdM .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-tPx7WoHzdM .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-tPx7WoHzdM .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-tPx7WoHzdM .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-tPx7WoHzdM .text-wrapper .card-text,
.cid-tPx7WoHzdM .text-wrapper .card-btn,
.cid-tPx7WoHzdM .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-tPx7WoHzdM .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tPx7WoHzdM .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-tPx7WoHzdM .content-wrapper .geometry__square,
  .cid-tPx7WoHzdM .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-tPx7WoHzdM .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tPx7WoHzdM .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPx7WoHzdM .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tPx7WoHzdM .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tPx7WoHzdM .geometry {
  position: absolute;
}
.cid-tPx7WoHzdM .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-tPx7WoHzdM .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-tPx7WoHzdM .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPx7WoHzdM .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-tPx7WoHzdM .geometry__square,
.cid-tPx7WoHzdM .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-tPx7WoHzdM .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-tPx7WoHzdM .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-tPx7WoHzdM .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tPx7WoHzdM .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-tPx7WoHzdM .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-tPx7WoHzdM .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-tPx7WoHzdM .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tPx7WoHzdM .content {
    display: block;
  }
  .cid-tPx7WoHzdM .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-tPx7WoHzdM .card-text,
  .cid-tPx7WoHzdM .card-title,
  .cid-tPx7WoHzdM .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-tPx7WoHzdM .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-tPx7WoHzdM .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPx7WoHzdM .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-tPx7WoHzdM .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-tPx7WoHzdM .geometry {
    position: absolute;
  }
  .cid-tPx7WoHzdM .geometry__circle,
  .cid-tPx7WoHzdM .geometry__circle-bg,
  .cid-tPx7WoHzdM .geometry__square,
  .cid-tPx7WoHzdM .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tPx7Wpg2cI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tPx7Wpg2cI .geometry {
  position: absolute;
}
.cid-tPx7Wpg2cI .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tPx7Wpg2cI .geometry_left {
  left: -70px;
}
.cid-tPx7Wpg2cI .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPx7Wpg2cI .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tPx7Wpg2cI .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-tPx7Wpg2cI blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-tPx7Wpg2cI blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tPx7Wpg2cI blockquote {
    padding: 2rem 1rem;
  }
  .cid-tPx7Wpg2cI .geometry {
    position: absolute;
  }
  .cid-tPx7Wpg2cI .geometry__square,
  .cid-tPx7Wpg2cI .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tPx7Wpg2cI .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tPx7Wpg2cI blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-tPx7Wpg2cI .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-tPx7Wpg2cI .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tPx7Wpg2cI blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tPx7Wpg2cI .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPx7Wpg2cI blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tPx7Wq2bTn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/62-2000x1358.jpg");
}
.cid-tPx7Wq2bTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPx7Wq2bTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPx7Wq2bTn .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tPx7Wq2bTn .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tPx7Wq2bTn .container {
    padding: 0 20px;
  }
}
.cid-tPx7Wq2bTn .row {
  height: 800px;
}
@media (max-width: 992px) {
  .cid-tPx7Wq2bTn .row {
    height: 450px;
  }
}
.cid-tPx7WqGEJI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fcf5e6;
}
.cid-tPx7WqGEJI .geometry {
  position: absolute;
}
.cid-tPx7WqGEJI .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tPx7WqGEJI .geometry_left {
  left: -70px;
}
.cid-tPx7WqGEJI .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tPx7WqGEJI .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tPx7WqGEJI .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-tPx7WqGEJI blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-tPx7WqGEJI blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tPx7WqGEJI blockquote {
    padding: 2rem 1rem;
  }
  .cid-tPx7WqGEJI .geometry {
    position: absolute;
  }
  .cid-tPx7WqGEJI .geometry__square,
  .cid-tPx7WqGEJI .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tPx7WqGEJI .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tPx7WqGEJI blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-tPx7WqGEJI .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-tPx7WqGEJI .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tPx7WqGEJI blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tPx7WqGEJI .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tPx7WqGEJI blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tPx7WrnJAL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fdf2ec;
}
.cid-tPx7WrnJAL .nav-tabs .nav-item.open .nav-link:focus,
.cid-tPx7WrnJAL .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tPx7WrnJAL .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-tPx7WrnJAL .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tPx7WrnJAL .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-tPx7WrnJAL .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #0b2b5c;
}
.cid-tPx7WrnJAL .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tPx7WrnJAL .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-tPx7WrnJAL .nav-tabs .nav-item {
  width: 100%;
}
.cid-tPx7WrnJAL .nav-link,
.cid-tPx7WrnJAL .nav-link.active {
  padding: 1rem auto;
  background: #ffb18a;
}
.cid-tPx7WrnJAL .nav-tabs .nav-link.active {
  color: #0b2b5c;
}
.cid-tPx7WrnJAL .tab-content {
  background: #ffe885;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-tPx7WrnJAL .tab-content {
    border-radius: 30px !important;
  }
}
.cid-tPx7WrnJAL .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-tPx7WrnJAL .logo-container {
    border-right: 1px solid #0b2b5c;
  }
}
.cid-tPx7WrnJAL H4 {
  text-align: center;
}
.cid-tPx7WrnJAL H3 {
  text-align: center;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-tPx7WrnJAL .nav-link {
    font-size: 1.2rem;
  }
}
.cid-tPx7WrnJAL P {
  text-align: center;
}
.cid-tPx7WspjGb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPx7WspjGb .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-tPx7WspjGb .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-tPx7WspjGb .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-tPx7WspjGb .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-tPx7WspjGb .row > div {
    margin: auto;
  }
}
.cid-tPx7WspjGb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPx7WspjGb .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-tPx7WspjGb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPx7WspjGb .list {
    margin-bottom: 0rem;
  }
}
.cid-tPx7WspjGb .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-tPx7WspjGb .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-tPx7WspjGb .row {
    display: grid;
  }
  .cid-tPx7WspjGb .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-tPx7WspjGb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPx7WspjGb .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-tPx7WspjGb div > *:last-child {
    margin-top: 0 !important;
  }
}
