body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((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.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ea811d !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #2299aa !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ea811d !important;
  border-color: #ea811d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a1560f !important;
  border-color: #a1560f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a1560f !important;
  border-color: #a1560f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #2299aa !important;
  border-color: #2299aa !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ea811d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a1560f !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: #ea811d !important;
  border-color: #ea811d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2299aa;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #145862 !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: #2299aa !important;
  border-color: #2299aa !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: #ea811d !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #2299aa !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: #934f0e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #114c55 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ea811d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #2299aa;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ea811d;
  border-color: #ea811d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ea811d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbe9d8;
}
.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: #6ad2e1;
}
.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: 'Jost', 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: #ea811d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #ea811d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ea811d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ea811d;
}
.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: #ea811d;
  border-bottom-color: #ea811d;
}
.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: #ea811d !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: #ff6666 !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='%23ea811d' %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-td3LWzA6Y0 {
  background-image: url("../../../assets/images/classroom3-1-1500x1125.jpg");
}
.cid-td3LWzA6Y0 .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-td3LWzA6Y0 .text-content {
  z-index: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 50%;
  background-color: #2299aa;
}
@media (max-width: 991px) {
  .cid-td3LWzA6Y0 .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-td3LWzA6Y0 .text-content {
    width: 100%;
  }
}
.cid-td3LWzA6Y0 .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-td3LWzA6Y0 .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-td3LWzA6Y0 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-td3LWzA6Y0 .mbr-section-btn {
  margin-left: -4.5px;
}
@media (max-width: 767px) {
  .cid-td3LWzA6Y0 .mbr-text {
    text-align: center;
  }
}
.cid-td3LWzA6Y0 .mbr-section-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-td3LWzA6Y0 .mbr-section-btn,
.cid-td3LWzA6Y0 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-td3LWzA6Y0 P {
  text-align: left;
}
.cid-sy1OCnccCS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sy1OCnccCS h4 {
  margin-bottom: 0;
}
.cid-sy1OCnccCS p {
  color: #767676;
}
.cid-sy1OCnccCS .cardcenter {
  background-color: #2299aa;
  transition: all 0.3s;
  border-radius: 10px;
  padding: 1.5rem;
  height: fit-content;
  position: relative;
}
.cid-sy1OCnccCS .cardcenter:hover {
  background-color: #ea811d;
}
.cid-sy1OCnccCS .ico2 {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 8rem;
  opacity: 0.3;
}
.cid-sy1OCnccCS .cards {
  height: fit-content;
  margin-top: -1.5rem;
}
.cid-sy1OCnccCS .btn-info-outline {
  border: none;
  color: #2299aa !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-sy1OCnccCS .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-sy1OCnccCS .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-sy1OCnccCS .btn-info-outline:hover {
  background-color: transparent!important;
  color: #ea811d !important;
  box-shadow: none!important;
}
.cid-sy1OCnccCS .btn-info-outline:active,
.cid-sy1OCnccCS .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-sy1OCnccCS .card-box {
  padding-top: 2rem;
}
.cid-sy1OCnccCS .card-wrapper {
  height: 100%;
}
.cid-sy1OCnccCS .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sy1OCnccCS img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-sy1OCnccCS .card-title {
  color: #2299aa;
}
.cid-sy1OCnccCS .main-title {
  color: #57468b;
}
.cid-sy1OCnccCS DIV {
  color: #57468b;
}
.cid-sy1OCnccCS .text {
  color: #ffffff;
  text-align: center;
}
.cid-sy1OCnccCS .card-subtitle {
  color: #716c80;
}
@media (max-width: 992px) {
  .cid-sy1OCnccCS .cards {
    margin-top: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-sy1OCnccCS .link {
    margin: auto;
  }
}
.cid-sy1OCnccCS .card-img {
  width: auto;
}
.cid-sxDJBAPuOR {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-sxDJBAPuOR .mbr-section-title {
  margin-bottom: 0;
  color: #2299aa;
}
.cid-sxDJBAPuOR .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-sxDJBAPuOR .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sxDJBAPuOR .mbr-iconfont:hover {
  color: #e96188;
}
.cid-sxDJBAPuOR .image-wrap {
  position: relative;
}
.cid-sxDJBAPuOR .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-sxDJBAPuOR .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-sxDJBAPuOR .card-wrap {
  margin-bottom: 3rem;
}
.cid-sxDJBAPuOR .card-wrap .social-media {
  transition-delay: 0.3s;
}
.cid-sxDJBAPuOR .card-wrap:hover .social-media {
  opacity: 1;
}
.cid-sxDJBAPuOR .card-wrap:hover .img-overlay {
  opacity: 1;
}
@media (max-width: 991px) {
  .cid-sxDJBAPuOR .card-wrap .social-media {
    opacity: 1;
  }
  .cid-sxDJBAPuOR .card-wrap .img-overlay {
    opacity: 1;
  }
}
.cid-sxDJBAPuOR .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-sxDJBAPuOR .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-sxDJBAPuOR .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-sxDJBAPuOR .img-overlay {
  background: linear-gradient(transparent, #232323);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-sxDJBAPuOR .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-sxDJBAPuOR .mbr-role {
  color: #e96188;
}
.cid-sxDJBAPuOR .mbr-text {
  color: #000000;
}
.cid-sxDJBAPuOR .mbr-name {
  color: #2299aa;
  text-align: left;
}
.cid-txRZ2n8QoH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1228.png");
}
.cid-txRZ2n8QoH .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-txRZ2n8QoH .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-txRZ2n8QoH .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-txRZ2n8QoH .card-box {
  background: #2299aa;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-txRZ2n8QoH .link {
  letter-spacing: 2px;
}
.cid-txRZ2n8QoH .card.first-card,
.cid-txRZ2n8QoH .card.third-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-txRZ2n8QoH .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txRZ2n8QoH .card {
    padding-bottom: 2rem;
  }
}
.cid-txRZ2n8QoH .card-title {
  color: #ffffff;
}
.cid-txRZ2n8QoH .card-text,
.cid-txRZ2n8QoH .link {
  color: #ffffff;
}
.cid-txRZ2n8QoH .main-title {
  color: #2299aa;
}
.cid-sy21ryM70T {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1228.png");
}
.cid-sy21ryM70T .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sy21ryM70T .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sy21ryM70T .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sy21ryM70T .card-box {
  background: #2299aa;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sy21ryM70T .link {
  letter-spacing: 2px;
}
.cid-sy21ryM70T .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sy21ryM70T .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sy21ryM70T .card {
    padding-bottom: 2rem;
  }
}
.cid-sy21ryM70T .card-title {
  color: #ffffff;
}
.cid-sy21ryM70T .card-text,
.cid-sy21ryM70T .link {
  color: #ffffff;
}
.cid-sy21ryM70T .main-title {
  color: #2299aa;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s48P1Icc8J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxFir2vFyw {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-sxFir2vFyw .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sxFir2vFyw .title,
.cid-sxFir2vFyw .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sxFir2vFyw .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sxFir2vFyw .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sxFir2vFyw .phone {
  margin-bottom: 0;
  color: #000000;
  text-align: left;
}
.cid-sxFir2vFyw .text-box {
  padding: 0rem;
}
.cid-sxFir2vFyw .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sxFir2vFyw .card-title {
  color: #ffb5b5;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sxFir2vFyw .card-img {
  overflow: hidden;
}
.cid-sxFir2vFyw .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sxFir2vFyw .card-box {
  padding: 0rem;
}
.cid-sxFir2vFyw img {
  transition: all 0.3s;
}
.cid-sxFir2vFyw .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sxFir2vFyw .status {
  color: #000000;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sxFir2vFyw .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sxFir2vFyw .card-img {
    width: 30%;
  }
  .cid-sxFir2vFyw .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sxFir2vFyw .card-img {
    width: 50%;
  }
  .cid-sxFir2vFyw .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sxFir2vFyw .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sxFir2vFyw .card-img {
    width: 100%;
  }
  .cid-sxFir2vFyw .card-box {
    width: 100%;
  }
}
.cid-sxFir2vFyw .card-box > p,
.cid-sxFir2vFyw .mbr-section-btn {
  color: #767676;
}
.cid-sxFklfLyVy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-sxFklfLyVy H1 {
  color: #ffb5b5;
}
.cid-sxFklfLyVy .mbr-text,
.cid-sxFklfLyVy .mbr-section-btn {
  color: #000000;
}
.cid-sxFklfLyVy img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-sxFklfLyVy .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sxFklfLyVy img:last-child {
    margin-bottom: 3rem;
  }
}
.cid-sxQ8oJvcd5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sxQ8oJvcd5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxQ8oJvcd5 .row {
  flex-direction: row-reverse;
}
.cid-sxQ8oJvcd5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxQ8oJvcd5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sxQ8oJvcd5 .mbr-section-title {
  color: #ffb5b5;
}
.cid-sxQ6zvGHWJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-sxQ6zvGHWJ .row:not(.items-row) {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sxQ6zvGHWJ .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sxQ6zvGHWJ .main-head {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sxQ6zvGHWJ .first-table {
  margin: 0;
}
.cid-sxQ6zvGHWJ .first-table.two-items {
  margin-right: 15px;
}
.cid-sxQ6zvGHWJ .first-table .table-head-wrapper {
  background: #efefef;
}
.cid-sxQ6zvGHWJ .second-table {
  margin: 0;
  margin-left: 15px;
}
.cid-sxQ6zvGHWJ .second-table .table-head-wrapper {
  background: #ffb5b5;
}
.cid-sxQ6zvGHWJ .table {
  padding: 2rem;
  background: #ffffff;
  position: relative;
}
.cid-sxQ6zvGHWJ .table .table-wrapper .table-head-wrapper {
  margin: -2rem;
  margin-bottom: 0 !important;
  padding: 2rem;
  padding-bottom: 0 !important;
}
.cid-sxQ6zvGHWJ .table .table-wrapper .table-head-wrapper span {
  width: 100%;
  display: block;
}
.cid-sxQ6zvGHWJ .table .table-wrapper .table-purchase {
  padding-bottom: 2rem;
}
.cid-sxQ6zvGHWJ .table .table-wrapper .table-purchase .table-pricing {
  margin: 0;
  margin-top: .5rem !important;
}
.cid-sxQ6zvGHWJ .table .table-wrapper .list-group {
  padding-top: 2rem;
  list-style: none;
}
.cid-sxQ6zvGHWJ .table .table-wrapper .list-group li {
  padding: .4rem;
  border-bottom: 1px solid #efefef;
}
.cid-sxQ6zvGHWJ .table .table-wrapper .list-group li .mbr-iconfont {
  font-size: 30px;
}
@media (max-width: 767px) {
  .cid-sxQ6zvGHWJ .first-table,
  .cid-sxQ6zvGHWJ .second-table {
    margin: 0 15px;
  }
  .cid-sxQ6zvGHWJ .first-table {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sxQ6zvGHWJ .items-row {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-sxQ6zvGHWJ .first-table,
  .cid-sxQ6zvGHWJ .second-table {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .cid-sxQ6zvGHWJ .main-head {
    padding-bottom: 2rem;
  }
}
.cid-sxQ6zvGHWJ .main-title {
  color: #ffb5b5;
}
.cid-sxQ6zvGHWJ .main-text,
.cid-sxQ6zvGHWJ .main-btn {
  color: #ffb5b5;
}
.cid-s48P1Icc8J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sxENE8f6UQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxENE8f6UQ nav.navbar {
  position: fixed;
}
.cid-sxENE8f6UQ .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-sxENE8f6UQ .dropdown-menu {
  padding: 0;
}
.cid-sxENE8f6UQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxENE8f6UQ .dropdown-item:hover,
.cid-sxENE8f6UQ .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-sxENE8f6UQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sxENE8f6UQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxENE8f6UQ .nav-link {
  position: relative;
}
.cid-sxENE8f6UQ .container {
  display: flex;
  margin: auto;
}
.cid-sxENE8f6UQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sxENE8f6UQ .navbar-caption {
  padding-right: 4rem;
}
.cid-sxENE8f6UQ .dropdown-menu,
.cid-sxENE8f6UQ .navbar.opened {
  background: #ffffff !important;
}
.cid-sxENE8f6UQ .nav-item:focus,
.cid-sxENE8f6UQ .nav-link:focus {
  outline: none;
}
.cid-sxENE8f6UQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxENE8f6UQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxENE8f6UQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sxENE8f6UQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxENE8f6UQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxENE8f6UQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxENE8f6UQ .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sxENE8f6UQ .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxENE8f6UQ .navbar.opened {
  transition: all .3s;
}
.cid-sxENE8f6UQ .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sxENE8f6UQ .navbar .navbar-logo img {
  width: auto;
}
.cid-sxENE8f6UQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxENE8f6UQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxENE8f6UQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxENE8f6UQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxENE8f6UQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxENE8f6UQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxENE8f6UQ .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: 55%;
}
.cid-sxENE8f6UQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxENE8f6UQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sxENE8f6UQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sxENE8f6UQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxENE8f6UQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxENE8f6UQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxENE8f6UQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxENE8f6UQ .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: 55%;
  }
  .cid-sxENE8f6UQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sxENE8f6UQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxENE8f6UQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxENE8f6UQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxENE8f6UQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxENE8f6UQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sxENE8f6UQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxENE8f6UQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sxENE8f6UQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sxENE8f6UQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxENE8f6UQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxENE8f6UQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxENE8f6UQ .dropdown-item.active,
.cid-sxENE8f6UQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sxENE8f6UQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxENE8f6UQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxENE8f6UQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxENE8f6UQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxENE8f6UQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxENE8f6UQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxENE8f6UQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxENE8f6UQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxENE8f6UQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sxENE8f6UQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sxENE8f6UQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sxENE8f6UQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sxENE8f6UQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sxENE8f6UQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sxENE8f6UQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxENE8f6UQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sxENE8f6UQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sxENE8f6UQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxENE8f6UQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sxENE8f6UQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxENE8f6UQ .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-sxENE8f6UQ .navbar {
    height: 77px;
  }
  .cid-sxENE8f6UQ .navbar.opened {
    height: auto;
  }
  .cid-sxENE8f6UQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxENPnMjqp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sxENPnMjqp .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sxENPnMjqp .title,
.cid-sxENPnMjqp .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sxENPnMjqp .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sxENPnMjqp .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sxENPnMjqp .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sxENPnMjqp .text-box {
  padding: 0rem;
}
.cid-sxENPnMjqp .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sxENPnMjqp .card-title {
  color: #2299aa;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sxENPnMjqp .card-img {
  overflow: hidden;
}
.cid-sxENPnMjqp .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sxENPnMjqp .card-box {
  padding: 0rem;
}
.cid-sxENPnMjqp img {
  transition: all 0.3s;
}
.cid-sxENPnMjqp .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sxENPnMjqp .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sxENPnMjqp .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sxENPnMjqp .card-img {
    width: 30%;
  }
  .cid-sxENPnMjqp .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sxENPnMjqp .card-img {
    width: 50%;
  }
  .cid-sxENPnMjqp .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sxENPnMjqp .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sxENPnMjqp .card-img {
    width: 100%;
  }
  .cid-sxENPnMjqp .card-box {
    width: 100%;
  }
}
.cid-sxENPnMjqp .card-box > p,
.cid-sxENPnMjqp .mbr-section-btn {
  color: #767676;
}
.cid-sxENTibBR2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxENTibBR2 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sxENTibBR2 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sxENTibBR2 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ea811d;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sxEXTxebYP {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-sxEXTxebYP svg {
  margin-right: 10px;
  fill: currentColor;
}
.cid-sxEXTxebYP .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-sxEXTxebYP .item-wrap h4 {
  font-weight: 400;
}
.cid-sxEXTxebYP .list {
  margin-left: 0;
  padding-left: 0;
}
.cid-sxEXTxebYP .list-group-item {
  background-color: transparent;
  padding: .5rem 1rem;
}
.cid-sxEXTxebYP .plan-body {
  padding-bottom: 2rem;
}
.cid-sxEXTxebYP .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding: 0;
}
.cid-sxEXTxebYP .price {
  color: #1d2c35;
  line-height: 0.7;
}
.cid-sxEXTxebYP .price-term {
  color: #353535;
}
.cid-sxEXTxebYP .card-bg {
  background: #fbf7f0;
}
.cid-sxEXTxebYP .plan {
  word-break: break-word;
  padding: 2.5rem;
}
.cid-sxEXTxebYP .plan .list-group-item {
  position: relative;
  justify-content: left;
  border: 0;
}
.cid-sxEXTxebYP .item {
  color: #2299aa;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-sxEXTxebYP .plan {
    padding: 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sxEXTxebYP .plan {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sxEXTxebYP .plan {
    padding: 2.5rem;
  }
}
.cid-sxEXTxebYP .card-box .mbr-text,
.cid-sxEXTxebYP .mbr-section-btn,
.cid-sxEXTxebYP .card-subtitle {
  color: #2299aa;
}
.cid-sye6pO4yBS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #2299aa;
  background: linear-gradient(90deg, #2299aa, #c35d2a);
}
.cid-sye6pO4yBS .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-sye6pO4yBS H2 {
  text-align: left;
}
.cid-sye6pO4yBS .mbr-section-subtitle,
.cid-sye6pO4yBS .mbr-section-btn {
  text-align: right;
}
.cid-sy27xSbriv {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sy27xSbriv img {
  border-radius: 0px;
}
.cid-sy27xSbriv .mbr-section-title {
  color: #000000;
  padding-top: 0.4rem;
}
.cid-sy27xSbriv .date {
  text-transform: uppercase;
  color: #ea811d;
  text-align: left;
  padding-top: 1rem;
}
.cid-sy27xSbriv .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sy27xSbriv .heading {
  padding-bottom: 40px;
}
@media (max-width: 1400px) {
  .cid-sy27xSbriv img {
    margin-top: 60px;
  }
}
.cid-sxENE8ZWEt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sxENE8ZWEt .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxENE8ZWEt .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxENE8ZWEt .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxENE8ZWEt .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxENE8ZWEt .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxENE8ZWEt .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxENE8ZWEt .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxENE8ZWEt .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxENE8ZWEt .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxENE8ZWEt .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxENE8ZWEt .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxENE8ZWEt .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxENE8ZWEt .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxENE8ZWEt .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sy1aAfmpTp {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/mbr-1920x937.jpg");
}
.cid-sy1aAfmpTp .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
  width: 100%;
}
.cid-sy1aAfmpTp .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
  width: 100%;
}
.cid-sy1aAfmpTp .mbr-section-title.display-2 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.cid-sy1aAfmpTp .mbr-text {
  color: #ffffff;
  font-weight: 400;
  width: 100;
}
.cid-sy1aAfmpTp .mbr-text.display-7 {
  font-size: 20px;
  line-height: 1.5;
}
.cid-sy1aAfmpTp .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
  margin-left: 0.6rem;
}
.cid-sy1aAfmpTp .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sy1aAfmpTp .mbr-section-btn .btn {
  border-radius: 3px;
  line-height: 2;
  letter-spacing: 1px;
  padding: 12px 40px !important;
  margin-right: 20px;
}
.cid-sy1aAfmpTp .mbr-section-btn.display-4,
.cid-sy1aAfmpTp .btn.display-4 {
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .cid-sy1aAfmpTp .separator,
  .cid-sy1aAfmpTp .sep-holder,
  .cid-sy1aAfmpTp .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sy1aAfmpTp .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.cid-sy1aAfmpTp .mbr-section-title,
.cid-sy1aAfmpTp .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sxJ5dbjOf7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxJ5dbjOf7 nav.navbar {
  position: fixed;
}
.cid-sxJ5dbjOf7 .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-sxJ5dbjOf7 .dropdown-menu {
  padding: 0;
}
.cid-sxJ5dbjOf7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxJ5dbjOf7 .dropdown-item:hover,
.cid-sxJ5dbjOf7 .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-sxJ5dbjOf7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sxJ5dbjOf7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxJ5dbjOf7 .nav-link {
  position: relative;
}
.cid-sxJ5dbjOf7 .container {
  display: flex;
  margin: auto;
}
.cid-sxJ5dbjOf7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sxJ5dbjOf7 .navbar-caption {
  padding-right: 4rem;
}
.cid-sxJ5dbjOf7 .dropdown-menu,
.cid-sxJ5dbjOf7 .navbar.opened {
  background: #ffffff !important;
}
.cid-sxJ5dbjOf7 .nav-item:focus,
.cid-sxJ5dbjOf7 .nav-link:focus {
  outline: none;
}
.cid-sxJ5dbjOf7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxJ5dbjOf7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxJ5dbjOf7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sxJ5dbjOf7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxJ5dbjOf7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxJ5dbjOf7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxJ5dbjOf7 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sxJ5dbjOf7 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxJ5dbjOf7 .navbar.opened {
  transition: all .3s;
}
.cid-sxJ5dbjOf7 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sxJ5dbjOf7 .navbar .navbar-logo img {
  width: auto;
}
.cid-sxJ5dbjOf7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxJ5dbjOf7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxJ5dbjOf7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxJ5dbjOf7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxJ5dbjOf7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxJ5dbjOf7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxJ5dbjOf7 .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: 55%;
}
.cid-sxJ5dbjOf7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxJ5dbjOf7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sxJ5dbjOf7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sxJ5dbjOf7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxJ5dbjOf7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxJ5dbjOf7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxJ5dbjOf7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxJ5dbjOf7 .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: 55%;
  }
  .cid-sxJ5dbjOf7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sxJ5dbjOf7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxJ5dbjOf7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxJ5dbjOf7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxJ5dbjOf7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxJ5dbjOf7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sxJ5dbjOf7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxJ5dbjOf7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sxJ5dbjOf7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sxJ5dbjOf7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxJ5dbjOf7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxJ5dbjOf7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxJ5dbjOf7 .dropdown-item.active,
.cid-sxJ5dbjOf7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sxJ5dbjOf7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxJ5dbjOf7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxJ5dbjOf7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxJ5dbjOf7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxJ5dbjOf7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxJ5dbjOf7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxJ5dbjOf7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxJ5dbjOf7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxJ5dbjOf7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sxJ5dbjOf7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sxJ5dbjOf7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sxJ5dbjOf7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sxJ5dbjOf7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sxJ5dbjOf7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sxJ5dbjOf7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxJ5dbjOf7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sxJ5dbjOf7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sxJ5dbjOf7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxJ5dbjOf7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sxJ5dbjOf7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxJ5dbjOf7 .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-sxJ5dbjOf7 .navbar {
    height: 77px;
  }
  .cid-sxJ5dbjOf7 .navbar.opened {
    height: auto;
  }
  .cid-sxJ5dbjOf7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxJ5dbEGyx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sxJ5dbEGyx .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxJ5dbEGyx .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxJ5dbEGyx .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxJ5dbEGyx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxJ5dbEGyx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxJ5dbEGyx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxJ5dbEGyx .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxJ5dbEGyx .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxJ5dbEGyx .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxJ5dbEGyx .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxJ5dbEGyx .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxJ5dbEGyx .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxJ5dbEGyx .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxJ5dbEGyx .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-td3UJei15y {
  background-image: url("../../../assets/images/classroom3-1-1500x1125.jpg");
}
.cid-td3UJei15y .text-content {
  padding-top: 105px;
  padding-bottom: 45px;
}
.cid-td3UJei15y .text-content {
  z-index: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 50%;
  background-color: #2299aa;
}
@media (max-width: 991px) {
  .cid-td3UJei15y .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-td3UJei15y .text-content {
    width: 100%;
  }
}
.cid-td3UJei15y .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-td3UJei15y .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-td3UJei15y .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-td3UJei15y .mbr-section-btn {
  margin-left: -4.5px;
}
@media (max-width: 767px) {
  .cid-td3UJei15y .mbr-text {
    text-align: center;
  }
}
.cid-td3UJei15y .mbr-section-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-td3UJei15y .mbr-section-btn,
.cid-td3UJei15y .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-td3UJei15y P {
  text-align: left;
}
.cid-sy2nHXoXZc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sy2nHXoXZc img {
  transition: all 0.3s;
}
.cid-sy2nHXoXZc .image-wrapper {
  overflow: hidden;
  padding: 0;
}
.cid-sy2nHXoXZc p {
  max-width: 500px;
}
.cid-sy2nHXoXZc .card-wrapper {
  margin-bottom: 2rem;
  background: #65c6d4;
}
.cid-sy2nHXoXZc .card-wrapper:hover .link:before {
  background: #2299aa;
}
.cid-sy2nHXoXZc .card-wrapper:hover img {
  transform: scale(1.1);
}
.cid-sy2nHXoXZc .card-row,
.cid-sy2nHXoXZc .img-col {
  margin: 0;
  padding: 0;
}
.cid-sy2nHXoXZc .text-box {
  padding: 2rem 1rem;
}
.cid-sy2nHXoXZc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sy2nHXoXZc H5 {
  color: #3098f3;
}
.cid-sy2nHXoXZc H2 {
  color: #232323;
}
.cid-sy2nHXoXZc H4 {
  color: #fafafa;
}
.cid-tyeY5qPDmV {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tyeY5qPDmV .mbr-section-title {
  margin-bottom: 0;
  color: #2299aa;
}
.cid-tyeY5qPDmV .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-tyeY5qPDmV .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tyeY5qPDmV .mbr-iconfont:hover {
  color: #e96188;
}
.cid-tyeY5qPDmV .image-wrap {
  position: relative;
}
.cid-tyeY5qPDmV .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-tyeY5qPDmV .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-tyeY5qPDmV .card-wrap {
  margin-bottom: 3rem;
}
.cid-tyeY5qPDmV .card-wrap .social-media {
  transition-delay: 0.3s;
}
.cid-tyeY5qPDmV .card-wrap:hover .social-media {
  opacity: 1;
}
.cid-tyeY5qPDmV .card-wrap:hover .img-overlay {
  opacity: 1;
}
@media (max-width: 991px) {
  .cid-tyeY5qPDmV .card-wrap .social-media {
    opacity: 1;
  }
  .cid-tyeY5qPDmV .card-wrap .img-overlay {
    opacity: 1;
  }
}
.cid-tyeY5qPDmV .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-tyeY5qPDmV .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tyeY5qPDmV .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-tyeY5qPDmV .img-overlay {
  background: linear-gradient(transparent, #232323);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-tyeY5qPDmV .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-tyeY5qPDmV .mbr-role {
  color: #e96188;
}
.cid-tyeY5qPDmV .mbr-text {
  color: #000000;
}
.cid-tyeY5qPDmV .mbr-name {
  color: #2299aa;
  text-align: left;
}
.cid-sxEvhIXKHO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-sxEvhIXKHO .row {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-sxEvhIXKHO .row {
    padding: 1rem 0rem;
  }
}
.cid-sxEvhIXKHO img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-sxEvhIXKHO img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sxEvhIXKHO .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-sxEvhIXKHO .mbr-text,
.cid-sxEvhIXKHO .mbr-section-btn {
  color: #777777;
}
.cid-sxEvhIXKHO .mbr-section-subtitle {
  color: #14191e;
}
.cid-sxE5sFB9qH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxE5sFB9qH nav.navbar {
  position: fixed;
}
.cid-sxE5sFB9qH .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-sxE5sFB9qH .dropdown-menu {
  padding: 0;
}
.cid-sxE5sFB9qH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxE5sFB9qH .dropdown-item:hover,
.cid-sxE5sFB9qH .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-sxE5sFB9qH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sxE5sFB9qH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxE5sFB9qH .nav-link {
  position: relative;
}
.cid-sxE5sFB9qH .container {
  display: flex;
  margin: auto;
}
.cid-sxE5sFB9qH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sxE5sFB9qH .navbar-caption {
  padding-right: 4rem;
}
.cid-sxE5sFB9qH .dropdown-menu,
.cid-sxE5sFB9qH .navbar.opened {
  background: #ffffff !important;
}
.cid-sxE5sFB9qH .nav-item:focus,
.cid-sxE5sFB9qH .nav-link:focus {
  outline: none;
}
.cid-sxE5sFB9qH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxE5sFB9qH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxE5sFB9qH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sxE5sFB9qH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxE5sFB9qH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxE5sFB9qH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxE5sFB9qH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sxE5sFB9qH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxE5sFB9qH .navbar.opened {
  transition: all .3s;
}
.cid-sxE5sFB9qH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sxE5sFB9qH .navbar .navbar-logo img {
  width: auto;
}
.cid-sxE5sFB9qH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxE5sFB9qH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxE5sFB9qH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxE5sFB9qH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxE5sFB9qH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxE5sFB9qH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxE5sFB9qH .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: 55%;
}
.cid-sxE5sFB9qH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxE5sFB9qH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sxE5sFB9qH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sxE5sFB9qH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxE5sFB9qH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxE5sFB9qH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxE5sFB9qH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxE5sFB9qH .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: 55%;
  }
  .cid-sxE5sFB9qH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sxE5sFB9qH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxE5sFB9qH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxE5sFB9qH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxE5sFB9qH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxE5sFB9qH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sxE5sFB9qH .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxE5sFB9qH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sxE5sFB9qH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sxE5sFB9qH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxE5sFB9qH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxE5sFB9qH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxE5sFB9qH .dropdown-item.active,
.cid-sxE5sFB9qH .dropdown-item:active {
  background-color: transparent;
}
.cid-sxE5sFB9qH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxE5sFB9qH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxE5sFB9qH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxE5sFB9qH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxE5sFB9qH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxE5sFB9qH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxE5sFB9qH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxE5sFB9qH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxE5sFB9qH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sxE5sFB9qH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sxE5sFB9qH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sxE5sFB9qH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sxE5sFB9qH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sxE5sFB9qH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sxE5sFB9qH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxE5sFB9qH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sxE5sFB9qH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sxE5sFB9qH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxE5sFB9qH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sxE5sFB9qH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxE5sFB9qH .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-sxE5sFB9qH .navbar {
    height: 77px;
  }
  .cid-sxE5sFB9qH .navbar.opened {
    height: auto;
  }
  .cid-sxE5sFB9qH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxE5sG2q4l {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sxE5sG2q4l .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxE5sG2q4l .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxE5sG2q4l .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxE5sG2q4l .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxE5sG2q4l .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxE5sG2q4l .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxE5sG2q4l .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxE5sG2q4l .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxE5sG2q4l .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxE5sG2q4l .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxE5sG2q4l .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxE5sG2q4l .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxE5sG2q4l .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxE5sG2q4l .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-td3XYQJ5Jj {
  background-image: url("../../../assets/images/classroom3-1-1500x1125.jpg");
}
.cid-td3XYQJ5Jj .text-content {
  padding-top: 120px;
  padding-bottom: 45px;
}
.cid-td3XYQJ5Jj .text-content {
  z-index: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 50%;
  background-color: #2299aa;
}
@media (max-width: 991px) {
  .cid-td3XYQJ5Jj .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-td3XYQJ5Jj .text-content {
    width: 100%;
  }
}
.cid-td3XYQJ5Jj .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-td3XYQJ5Jj .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-td3XYQJ5Jj .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-td3XYQJ5Jj .mbr-section-btn {
  margin-left: -4.5px;
}
@media (max-width: 767px) {
  .cid-td3XYQJ5Jj .mbr-text {
    text-align: center;
  }
}
.cid-td3XYQJ5Jj .mbr-section-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-td3XYQJ5Jj .mbr-section-btn,
.cid-td3XYQJ5Jj .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-td3XYQJ5Jj P {
  text-align: left;
}
.cid-szU8WP0bh2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szU8WP0bh2 img {
  transition: all 0.3s;
}
.cid-szU8WP0bh2 .image-wrapper {
  overflow: hidden;
  padding: 0;
}
.cid-szU8WP0bh2 p {
  max-width: 500px;
}
.cid-szU8WP0bh2 .card-wrapper {
  margin-bottom: 2rem;
  background: #65c6d4;
}
.cid-szU8WP0bh2 .card-wrapper:hover .link:before {
  background: #2299aa;
}
.cid-szU8WP0bh2 .card-wrapper:hover img {
  transform: scale(1.1);
}
.cid-szU8WP0bh2 .card-row,
.cid-szU8WP0bh2 .img-col {
  margin: 0;
  padding: 0;
}
.cid-szU8WP0bh2 .text-box {
  padding: 2rem 1rem;
}
.cid-szU8WP0bh2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-szU8WP0bh2 H5 {
  color: #3098f3;
}
.cid-szU8WP0bh2 H2 {
  color: #232323;
}
.cid-szU8WP0bh2 H4 {
  color: #fafafa;
}
.cid-tyfpWBXP4i {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tyfpWBXP4i .mbr-section-title {
  margin-bottom: 0;
  color: #2299aa;
}
.cid-tyfpWBXP4i .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-tyfpWBXP4i .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tyfpWBXP4i .mbr-iconfont:hover {
  color: #e96188;
}
.cid-tyfpWBXP4i .image-wrap {
  position: relative;
}
.cid-tyfpWBXP4i .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-tyfpWBXP4i .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-tyfpWBXP4i .card-wrap {
  margin-bottom: 3rem;
}
.cid-tyfpWBXP4i .card-wrap .social-media {
  transition-delay: 0.3s;
}
.cid-tyfpWBXP4i .card-wrap:hover .social-media {
  opacity: 1;
}
.cid-tyfpWBXP4i .card-wrap:hover .img-overlay {
  opacity: 1;
}
@media (max-width: 991px) {
  .cid-tyfpWBXP4i .card-wrap .social-media {
    opacity: 1;
  }
  .cid-tyfpWBXP4i .card-wrap .img-overlay {
    opacity: 1;
  }
}
.cid-tyfpWBXP4i .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-tyfpWBXP4i .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tyfpWBXP4i .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-tyfpWBXP4i .img-overlay {
  background: linear-gradient(transparent, #232323);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-tyfpWBXP4i .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-tyfpWBXP4i .mbr-role {
  color: #e96188;
}
.cid-tyfpWBXP4i .mbr-text {
  color: #000000;
}
.cid-tyfpWBXP4i .mbr-name {
  color: #2299aa;
  text-align: left;
}
.cid-szU8WR5t7V {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-szU8WR5t7V .row {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-szU8WR5t7V .row {
    padding: 1rem 0rem;
  }
}
.cid-szU8WR5t7V img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-szU8WR5t7V img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-szU8WR5t7V .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-szU8WR5t7V .mbr-text,
.cid-szU8WR5t7V .mbr-section-btn {
  color: #777777;
}
.cid-szU8WR5t7V .mbr-section-subtitle {
  color: #14191e;
}
.cid-szU8WRmkuG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-szU8WRmkuG nav.navbar {
  position: fixed;
}
.cid-szU8WRmkuG .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-szU8WRmkuG .dropdown-menu {
  padding: 0;
}
.cid-szU8WRmkuG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szU8WRmkuG .dropdown-item:hover,
.cid-szU8WRmkuG .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-szU8WRmkuG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-szU8WRmkuG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szU8WRmkuG .nav-link {
  position: relative;
}
.cid-szU8WRmkuG .container {
  display: flex;
  margin: auto;
}
.cid-szU8WRmkuG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-szU8WRmkuG .navbar-caption {
  padding-right: 4rem;
}
.cid-szU8WRmkuG .dropdown-menu,
.cid-szU8WRmkuG .navbar.opened {
  background: #ffffff !important;
}
.cid-szU8WRmkuG .nav-item:focus,
.cid-szU8WRmkuG .nav-link:focus {
  outline: none;
}
.cid-szU8WRmkuG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szU8WRmkuG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szU8WRmkuG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-szU8WRmkuG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szU8WRmkuG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szU8WRmkuG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szU8WRmkuG .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-szU8WRmkuG .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szU8WRmkuG .navbar.opened {
  transition: all .3s;
}
.cid-szU8WRmkuG .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-szU8WRmkuG .navbar .navbar-logo img {
  width: auto;
}
.cid-szU8WRmkuG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szU8WRmkuG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szU8WRmkuG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szU8WRmkuG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-szU8WRmkuG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szU8WRmkuG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szU8WRmkuG .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: 55%;
}
.cid-szU8WRmkuG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szU8WRmkuG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-szU8WRmkuG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-szU8WRmkuG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szU8WRmkuG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szU8WRmkuG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szU8WRmkuG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szU8WRmkuG .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: 55%;
  }
  .cid-szU8WRmkuG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-szU8WRmkuG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szU8WRmkuG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szU8WRmkuG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szU8WRmkuG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szU8WRmkuG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-szU8WRmkuG .navbar.navbar-short {
  min-height: 60px;
}
.cid-szU8WRmkuG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-szU8WRmkuG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-szU8WRmkuG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szU8WRmkuG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szU8WRmkuG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szU8WRmkuG .dropdown-item.active,
.cid-szU8WRmkuG .dropdown-item:active {
  background-color: transparent;
}
.cid-szU8WRmkuG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szU8WRmkuG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szU8WRmkuG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szU8WRmkuG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-szU8WRmkuG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szU8WRmkuG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szU8WRmkuG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szU8WRmkuG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szU8WRmkuG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-szU8WRmkuG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-szU8WRmkuG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szU8WRmkuG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szU8WRmkuG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szU8WRmkuG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szU8WRmkuG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szU8WRmkuG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szU8WRmkuG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szU8WRmkuG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szU8WRmkuG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-szU8WRmkuG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szU8WRmkuG .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-szU8WRmkuG .navbar {
    height: 77px;
  }
  .cid-szU8WRmkuG .navbar.opened {
    height: auto;
  }
  .cid-szU8WRmkuG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szU8WRGr2K {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-szU8WRGr2K .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szU8WRGr2K .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szU8WRGr2K .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szU8WRGr2K .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szU8WRGr2K .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szU8WRGr2K .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szU8WRGr2K .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szU8WRGr2K .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szU8WRGr2K .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szU8WRGr2K .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szU8WRGr2K .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szU8WRGr2K .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szU8WRGr2K .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szU8WRGr2K .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz2tZxJjgm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz2tZxJjgm nav.navbar {
  position: fixed;
}
.cid-sz2tZxJjgm .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-sz2tZxJjgm .dropdown-menu {
  padding: 0;
}
.cid-sz2tZxJjgm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz2tZxJjgm .dropdown-item:hover,
.cid-sz2tZxJjgm .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-sz2tZxJjgm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sz2tZxJjgm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz2tZxJjgm .nav-link {
  position: relative;
}
.cid-sz2tZxJjgm .container {
  display: flex;
  margin: auto;
}
.cid-sz2tZxJjgm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sz2tZxJjgm .navbar-caption {
  padding-right: 4rem;
}
.cid-sz2tZxJjgm .dropdown-menu,
.cid-sz2tZxJjgm .navbar.opened {
  background: #ffffff !important;
}
.cid-sz2tZxJjgm .nav-item:focus,
.cid-sz2tZxJjgm .nav-link:focus {
  outline: none;
}
.cid-sz2tZxJjgm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz2tZxJjgm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz2tZxJjgm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sz2tZxJjgm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz2tZxJjgm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz2tZxJjgm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz2tZxJjgm .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sz2tZxJjgm .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz2tZxJjgm .navbar.opened {
  transition: all .3s;
}
.cid-sz2tZxJjgm .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sz2tZxJjgm .navbar .navbar-logo img {
  width: auto;
}
.cid-sz2tZxJjgm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz2tZxJjgm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz2tZxJjgm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz2tZxJjgm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sz2tZxJjgm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz2tZxJjgm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz2tZxJjgm .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: 55%;
}
.cid-sz2tZxJjgm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz2tZxJjgm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sz2tZxJjgm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sz2tZxJjgm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz2tZxJjgm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz2tZxJjgm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz2tZxJjgm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz2tZxJjgm .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: 55%;
  }
  .cid-sz2tZxJjgm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sz2tZxJjgm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz2tZxJjgm .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz2tZxJjgm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz2tZxJjgm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz2tZxJjgm .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sz2tZxJjgm .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz2tZxJjgm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sz2tZxJjgm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sz2tZxJjgm .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz2tZxJjgm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz2tZxJjgm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz2tZxJjgm .dropdown-item.active,
.cid-sz2tZxJjgm .dropdown-item:active {
  background-color: transparent;
}
.cid-sz2tZxJjgm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz2tZxJjgm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz2tZxJjgm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz2tZxJjgm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sz2tZxJjgm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz2tZxJjgm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz2tZxJjgm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz2tZxJjgm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz2tZxJjgm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sz2tZxJjgm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sz2tZxJjgm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sz2tZxJjgm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sz2tZxJjgm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sz2tZxJjgm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sz2tZxJjgm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz2tZxJjgm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sz2tZxJjgm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sz2tZxJjgm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz2tZxJjgm .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sz2tZxJjgm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz2tZxJjgm .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-sz2tZxJjgm .navbar {
    height: 77px;
  }
  .cid-sz2tZxJjgm .navbar.opened {
    height: auto;
  }
  .cid-sz2tZxJjgm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sz2tZy96kc {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-sz2tZy96kc .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sz2tZy96kc .title,
.cid-sz2tZy96kc .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sz2tZy96kc .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sz2tZy96kc .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sz2tZy96kc .phone {
  margin-bottom: 0;
  color: #000000;
  text-align: left;
}
.cid-sz2tZy96kc .text-box {
  padding: 0rem;
}
.cid-sz2tZy96kc .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sz2tZy96kc .card-title {
  color: #ffb5b5;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sz2tZy96kc .card-img {
  overflow: hidden;
}
.cid-sz2tZy96kc .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sz2tZy96kc .card-box {
  padding: 0rem;
}
.cid-sz2tZy96kc img {
  transition: all 0.3s;
}
.cid-sz2tZy96kc .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sz2tZy96kc .status {
  color: #232323;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sz2tZy96kc .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sz2tZy96kc .card-img {
    width: 30%;
  }
  .cid-sz2tZy96kc .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sz2tZy96kc .card-img {
    width: 50%;
  }
  .cid-sz2tZy96kc .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sz2tZy96kc .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sz2tZy96kc .card-img {
    width: 100%;
  }
  .cid-sz2tZy96kc .card-box {
    width: 100%;
  }
}
.cid-sz2tZy96kc .card-box > p,
.cid-sz2tZy96kc .mbr-section-btn {
  color: #767676;
}
.cid-sz2tZyBJqK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-sz2tZyBJqK H1 {
  color: #ffb5b5;
}
.cid-sz2tZyBJqK .mbr-text,
.cid-sz2tZyBJqK .mbr-section-btn {
  color: #000000;
}
.cid-sz2tZyBJqK img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-sz2tZyBJqK .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sz2tZyBJqK img:last-child {
    margin-bottom: 3rem;
  }
}
.cid-sz2tZySEO5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sz2tZySEO5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz2tZySEO5 .row {
  flex-direction: row-reverse;
}
.cid-sz2tZySEO5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz2tZySEO5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz2tZySEO5 .mbr-section-title {
  color: #ffb5b5;
}
.cid-sz2tZz9iDQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-sz2tZz9iDQ .row:not(.items-row) {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sz2tZz9iDQ .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sz2tZz9iDQ .main-head {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sz2tZz9iDQ .first-table {
  margin: 0;
}
.cid-sz2tZz9iDQ .first-table.two-items {
  margin-right: 15px;
}
.cid-sz2tZz9iDQ .first-table .table-head-wrapper {
  background: #efefef;
}
.cid-sz2tZz9iDQ .second-table {
  margin: 0;
  margin-left: 15px;
}
.cid-sz2tZz9iDQ .second-table .table-head-wrapper {
  background: #ffb5b5;
}
.cid-sz2tZz9iDQ .table {
  padding: 2rem;
  background: #ffffff;
  position: relative;
}
.cid-sz2tZz9iDQ .table .table-wrapper .table-head-wrapper {
  margin: -2rem;
  margin-bottom: 0 !important;
  padding: 2rem;
  padding-bottom: 0 !important;
}
.cid-sz2tZz9iDQ .table .table-wrapper .table-head-wrapper span {
  width: 100%;
  display: block;
}
.cid-sz2tZz9iDQ .table .table-wrapper .table-purchase {
  padding-bottom: 2rem;
}
.cid-sz2tZz9iDQ .table .table-wrapper .table-purchase .table-pricing {
  margin: 0;
  margin-top: .5rem !important;
}
.cid-sz2tZz9iDQ .table .table-wrapper .list-group {
  padding-top: 2rem;
  list-style: none;
}
.cid-sz2tZz9iDQ .table .table-wrapper .list-group li {
  padding: .4rem;
  border-bottom: 1px solid #efefef;
}
.cid-sz2tZz9iDQ .table .table-wrapper .list-group li .mbr-iconfont {
  font-size: 30px;
}
@media (max-width: 767px) {
  .cid-sz2tZz9iDQ .first-table,
  .cid-sz2tZz9iDQ .second-table {
    margin: 0 15px;
  }
  .cid-sz2tZz9iDQ .first-table {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sz2tZz9iDQ .items-row {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-sz2tZz9iDQ .first-table,
  .cid-sz2tZz9iDQ .second-table {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .cid-sz2tZz9iDQ .main-head {
    padding-bottom: 2rem;
  }
}
.cid-sz2tZz9iDQ .main-title {
  color: #ffb5b5;
}
.cid-sz2tZz9iDQ .main-text,
.cid-sz2tZz9iDQ .main-btn {
  color: #ffb5b5;
}
.cid-sz2tZAcMi7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sz2tZAcMi7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sz2tZAcMi7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sz2tZAcMi7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sz2tZAcMi7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sz2tZAcMi7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sz2tZAcMi7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sz2tZAcMi7 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sz2tZAcMi7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sz2tZAcMi7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sz2tZAcMi7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sz2tZAcMi7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sz2tZAcMi7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sz2tZAcMi7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sz2tZAcMi7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szUQhINteC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-szUQhINteC nav.navbar {
  position: fixed;
}
.cid-szUQhINteC .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-szUQhINteC .dropdown-menu {
  padding: 0;
}
.cid-szUQhINteC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szUQhINteC .dropdown-item:hover,
.cid-szUQhINteC .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-szUQhINteC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-szUQhINteC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szUQhINteC .nav-link {
  position: relative;
}
.cid-szUQhINteC .container {
  display: flex;
  margin: auto;
}
.cid-szUQhINteC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-szUQhINteC .navbar-caption {
  padding-right: 4rem;
}
.cid-szUQhINteC .dropdown-menu,
.cid-szUQhINteC .navbar.opened {
  background: #ffffff !important;
}
.cid-szUQhINteC .nav-item:focus,
.cid-szUQhINteC .nav-link:focus {
  outline: none;
}
.cid-szUQhINteC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szUQhINteC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szUQhINteC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-szUQhINteC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szUQhINteC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szUQhINteC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szUQhINteC .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-szUQhINteC .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szUQhINteC .navbar.opened {
  transition: all .3s;
}
.cid-szUQhINteC .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-szUQhINteC .navbar .navbar-logo img {
  width: auto;
}
.cid-szUQhINteC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szUQhINteC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szUQhINteC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szUQhINteC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-szUQhINteC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szUQhINteC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szUQhINteC .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: 55%;
}
.cid-szUQhINteC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szUQhINteC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-szUQhINteC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-szUQhINteC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szUQhINteC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szUQhINteC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szUQhINteC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szUQhINteC .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: 55%;
  }
  .cid-szUQhINteC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-szUQhINteC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szUQhINteC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szUQhINteC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szUQhINteC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szUQhINteC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-szUQhINteC .navbar.navbar-short {
  min-height: 60px;
}
.cid-szUQhINteC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-szUQhINteC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-szUQhINteC .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szUQhINteC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szUQhINteC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szUQhINteC .dropdown-item.active,
.cid-szUQhINteC .dropdown-item:active {
  background-color: transparent;
}
.cid-szUQhINteC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szUQhINteC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szUQhINteC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szUQhINteC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-szUQhINteC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szUQhINteC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szUQhINteC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szUQhINteC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szUQhINteC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-szUQhINteC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-szUQhINteC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szUQhINteC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szUQhINteC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szUQhINteC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szUQhINteC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szUQhINteC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szUQhINteC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szUQhINteC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szUQhINteC .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-szUQhINteC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szUQhINteC .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-szUQhINteC .navbar {
    height: 77px;
  }
  .cid-szUQhINteC .navbar.opened {
    height: auto;
  }
  .cid-szUQhINteC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szUQhJm5GW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-szUQhJm5GW .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-szUQhJm5GW .title,
.cid-szUQhJm5GW .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-szUQhJm5GW .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-szUQhJm5GW .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-szUQhJm5GW .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-szUQhJm5GW .text-box {
  padding: 0rem;
}
.cid-szUQhJm5GW .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-szUQhJm5GW .card-title {
  color: #2299aa;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-szUQhJm5GW .card-img {
  overflow: hidden;
}
.cid-szUQhJm5GW .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-szUQhJm5GW .card-box {
  padding: 0rem;
}
.cid-szUQhJm5GW img {
  transition: all 0.3s;
}
.cid-szUQhJm5GW .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-szUQhJm5GW .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-szUQhJm5GW .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-szUQhJm5GW .card-img {
    width: 30%;
  }
  .cid-szUQhJm5GW .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-szUQhJm5GW .card-img {
    width: 50%;
  }
  .cid-szUQhJm5GW .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-szUQhJm5GW .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-szUQhJm5GW .card-img {
    width: 100%;
  }
  .cid-szUQhJm5GW .card-box {
    width: 100%;
  }
}
.cid-szUQhJm5GW .card-box > p,
.cid-szUQhJm5GW .mbr-section-btn {
  color: #767676;
}
.cid-szUQhJN6zK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szUQhJN6zK ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-szUQhJN6zK li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-szUQhJN6zK ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ea811d;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-szUQhK1eIp {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-szUQhK1eIp svg {
  margin-right: 10px;
  fill: currentColor;
}
.cid-szUQhK1eIp .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-szUQhK1eIp .item-wrap h4 {
  font-weight: 400;
}
.cid-szUQhK1eIp .list {
  margin-left: 0;
  padding-left: 0;
}
.cid-szUQhK1eIp .list-group-item {
  background-color: transparent;
  padding: .5rem 1rem;
}
.cid-szUQhK1eIp .plan-body {
  padding-bottom: 2rem;
}
.cid-szUQhK1eIp .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding: 0;
}
.cid-szUQhK1eIp .price {
  color: #1d2c35;
  line-height: 0.7;
  text-align: left;
}
.cid-szUQhK1eIp .price-term {
  color: #353535;
  text-align: left;
}
.cid-szUQhK1eIp .card-bg {
  background: #fbf7f0;
}
.cid-szUQhK1eIp .plan {
  word-break: break-word;
  padding: 2.5rem;
}
.cid-szUQhK1eIp .plan .list-group-item {
  position: relative;
  justify-content: left;
  border: 0;
}
.cid-szUQhK1eIp .item {
  color: #2299aa;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-szUQhK1eIp .plan {
    padding: 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-szUQhK1eIp .plan {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-szUQhK1eIp .plan {
    padding: 2.5rem;
  }
}
.cid-szUQhK1eIp .card-box .mbr-text,
.cid-szUQhK1eIp .mbr-section-btn,
.cid-szUQhK1eIp .card-subtitle {
  color: #2299aa;
}
.cid-szUQhK1eIp .plan-title {
  text-align: left;
  color: #000000;
}
.cid-szUQhKyNDc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #2299aa;
  background: linear-gradient(90deg, #2299aa, #c35d2a);
}
.cid-szUQhKyNDc .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-szUQhKyNDc H2 {
  text-align: left;
}
.cid-szUQhKyNDc .mbr-section-subtitle,
.cid-szUQhKyNDc .mbr-section-btn {
  text-align: right;
}
.cid-szUQhKKH8o {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-szUQhKKH8o img {
  border-radius: 0px;
}
.cid-szUQhKKH8o .mbr-section-title {
  color: #000000;
  padding-top: 0.4rem;
}
.cid-szUQhKKH8o .date {
  text-transform: uppercase;
  color: #ea811d;
  text-align: left;
  padding-top: 1rem;
}
.cid-szUQhKKH8o .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-szUQhKKH8o .heading {
  padding-bottom: 40px;
}
@media (max-width: 1400px) {
  .cid-szUQhKKH8o img {
    margin-top: 60px;
  }
}
.cid-szUQhL1PNl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-szUQhL1PNl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szUQhL1PNl .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szUQhL1PNl .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szUQhL1PNl .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szUQhL1PNl .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szUQhL1PNl .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szUQhL1PNl .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szUQhL1PNl .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szUQhL1PNl .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szUQhL1PNl .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szUQhL1PNl .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szUQhL1PNl .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szUQhL1PNl .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szUQhL1PNl .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sxZTC1YUVX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxZTC1YUVX nav.navbar {
  position: fixed;
}
.cid-sxZTC1YUVX .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-sxZTC1YUVX .dropdown-menu {
  padding: 0;
}
.cid-sxZTC1YUVX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxZTC1YUVX .dropdown-item:hover,
.cid-sxZTC1YUVX .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-sxZTC1YUVX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sxZTC1YUVX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxZTC1YUVX .nav-link {
  position: relative;
}
.cid-sxZTC1YUVX .container {
  display: flex;
  margin: auto;
}
.cid-sxZTC1YUVX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sxZTC1YUVX .navbar-caption {
  padding-right: 4rem;
}
.cid-sxZTC1YUVX .dropdown-menu,
.cid-sxZTC1YUVX .navbar.opened {
  background: #ffffff !important;
}
.cid-sxZTC1YUVX .nav-item:focus,
.cid-sxZTC1YUVX .nav-link:focus {
  outline: none;
}
.cid-sxZTC1YUVX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxZTC1YUVX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxZTC1YUVX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sxZTC1YUVX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZTC1YUVX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxZTC1YUVX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxZTC1YUVX .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sxZTC1YUVX .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxZTC1YUVX .navbar.opened {
  transition: all .3s;
}
.cid-sxZTC1YUVX .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sxZTC1YUVX .navbar .navbar-logo img {
  width: auto;
}
.cid-sxZTC1YUVX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxZTC1YUVX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxZTC1YUVX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxZTC1YUVX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxZTC1YUVX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxZTC1YUVX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxZTC1YUVX .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: 55%;
}
.cid-sxZTC1YUVX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxZTC1YUVX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sxZTC1YUVX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sxZTC1YUVX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxZTC1YUVX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxZTC1YUVX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxZTC1YUVX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxZTC1YUVX .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: 55%;
  }
  .cid-sxZTC1YUVX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sxZTC1YUVX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxZTC1YUVX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxZTC1YUVX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxZTC1YUVX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxZTC1YUVX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sxZTC1YUVX .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxZTC1YUVX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sxZTC1YUVX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sxZTC1YUVX .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxZTC1YUVX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxZTC1YUVX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxZTC1YUVX .dropdown-item.active,
.cid-sxZTC1YUVX .dropdown-item:active {
  background-color: transparent;
}
.cid-sxZTC1YUVX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxZTC1YUVX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxZTC1YUVX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxZTC1YUVX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxZTC1YUVX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxZTC1YUVX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxZTC1YUVX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxZTC1YUVX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxZTC1YUVX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sxZTC1YUVX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sxZTC1YUVX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sxZTC1YUVX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sxZTC1YUVX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sxZTC1YUVX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sxZTC1YUVX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxZTC1YUVX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sxZTC1YUVX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sxZTC1YUVX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxZTC1YUVX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sxZTC1YUVX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxZTC1YUVX .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-sxZTC1YUVX .navbar {
    height: 77px;
  }
  .cid-sxZTC1YUVX .navbar.opened {
    height: auto;
  }
  .cid-sxZTC1YUVX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxZTTD2CFa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efdefc;
}
.cid-sxZTTD2CFa .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sxZTTD2CFa .title,
.cid-sxZTTD2CFa .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sxZTTD2CFa .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sxZTTD2CFa .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sxZTTD2CFa .phone {
  margin-bottom: 0;
  color: #74458e;
  text-align: left;
}
.cid-sxZTTD2CFa .text-box {
  padding: 0rem;
}
.cid-sxZTTD2CFa .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sxZTTD2CFa .card-title {
  color: #814ca8;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sxZTTD2CFa .card-img {
  overflow: hidden;
}
.cid-sxZTTD2CFa .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sxZTTD2CFa .card-box {
  padding: 0rem;
}
.cid-sxZTTD2CFa img {
  transition: all 0.3s;
}
.cid-sxZTTD2CFa .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sxZTTD2CFa .status {
  color: #000000;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sxZTTD2CFa .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sxZTTD2CFa .card-img {
    width: 30%;
  }
  .cid-sxZTTD2CFa .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sxZTTD2CFa .card-img {
    width: 50%;
  }
  .cid-sxZTTD2CFa .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sxZTTD2CFa .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sxZTTD2CFa .card-img {
    width: 100%;
  }
  .cid-sxZTTD2CFa .card-box {
    width: 100%;
  }
}
.cid-sxZTTD2CFa .card-box > p,
.cid-sxZTTD2CFa .mbr-section-btn {
  color: #767676;
}
.cid-sydy9hw4w3 {
  padding-top: 15px;
  padding-bottom: 45px;
  background: #eee1f8;
}
.cid-sydy9hw4w3 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-sydy9hw4w3 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-sydy9hw4w3 .list-group-item {
  padding: .75rem 0rem;
}
.cid-sydy9hw4w3 .plan-subtitle {
  color: #cccccc;
}
.cid-sydy9hw4w3 .mbr-text {
  margin: 10px 0 0 0;
  color: #cccccc;
}
.cid-sydy9hw4w3 .price-term .term {
  display: inline-block;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-sydy9hw4w3 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-sydy9hw4w3 .plan .mbr-overlay {
  background: #66458e;
  opacity: 0.9;
}
.cid-sydy9hw4w3 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-sydy9hw4w3 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-sydy9hw4w3 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-sydy9hw4w3 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-sydy9hw4w3 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-sydy9hw4w3 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-sydy9hw4w3 .plan {
    margin-bottom: 30px;
  }
}
.cid-sydy9hw4w3 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-sydy9hw4w3 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sxZTUL1Wmv {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/img-6518-1080x1080.jpeg");
  background-position: right;
}
.cid-sxZTUL1Wmv .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-sxZTUL1Wmv .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sxZTUL1Wmv .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sxZTUL1Wmv img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sxZTUL1Wmv .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sxZU0PWAog {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #efdefc;
}
@media (min-width: 767px) {
  .cid-sxZU0PWAog .container {
    padding: 1rem;
  }
}
.cid-sxZU0PWAog .card-box {
  padding: 0 2rem;
}
.cid-sxZU0PWAog .mbr-section-btn {
  padding-top: 2rem;
}
.cid-sxZU0PWAog .card1 {
  background-image: url("../../../assets/images/9655-500x375.jpeg");
}
.cid-sxZU0PWAog .card2 {
  background-image: url("../../../assets/images/img-6507-502x502.jpeg");
}
.cid-sxZU0PWAog .card3 {
  background-image: url("../../../assets/images/img-6525-866x866.jpeg");
}
.cid-sxZU0PWAog h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sxZU0PWAog p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sxZU0PWAog .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-sxZU0PWAog .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-sxZU0PWAog .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-sxZU1TEoBQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/9662-960x640.jpg");
}
.cid-sxZU1TEoBQ H3 {
  color: #ffffff;
}
.cid-sxZU1TEoBQ H1 {
  color: #ffffff;
}
.cid-sxZU1TEoBQ .mbr-text,
.cid-sxZU1TEoBQ .mbr-section-btn {
  color: #ffffff;
}
.cid-sxZU2yMmbm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efdefc;
}
.cid-sxZU2yMmbm .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sxZU2yMmbm .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sxZU2yMmbm .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sxZU2yMmbm P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-sxZU2yMmbm img {
  margin-top: 32px;
}
.cid-sxZU2yMmbm img {
  margin-top: 16px;
}
@media (max-width: 990px) {
  .cid-sxZU2yMmbm .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-sxZU2yMmbm .top,
  .cid-sxZU2yMmbm .top-2 {
    margin-top: 0;
  }
}
.cid-sxZU8OHLX3 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efdefc;
}
@media (min-width: 1500px) {
  .cid-sxZU8OHLX3 .container {
    max-width: 1400px;
  }
}
.cid-sxZU8OHLX3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sxZU8OHLX3 .card {
  border-radius: 0;
  background: #333333;
}
.cid-sxZU8OHLX3 .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-sxZU8OHLX3 .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-sxZU8OHLX3 .img-col {
  padding: 0;
}
.cid-sxZU8OHLX3 .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sxZU8OHLX3 .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-sy14tNLLbq {
  background: #efdefc;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sy14tNLLbq .image-block {
  margin: auto;
  height: 650px;
  overflow: hidden;
  position: relative;
}
.cid-sy14tNLLbq .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #814ca8;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sy14tNLLbq .image-block:hover:before {
  opacity: 0.3;
}
.cid-sy14tNLLbq .image-block:hover .wrap {
  opacity: 1;
}
.cid-sy14tNLLbq .image-block:hover img {
  transform: scale(1.05);
}
.cid-sy14tNLLbq h4 {
  letter-spacing: 2px;
}
.cid-sy14tNLLbq figcaption {
  position: relative;
}
.cid-sy14tNLLbq figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sy14tNLLbq img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sy14tNLLbq .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sy14tNLLbq .wrap {
    opacity: 1!important;
  }
  .cid-sy14tNLLbq .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-sy0Y65Soc0 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #efdefc;
}
.cid-sy0Y65Soc0 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sy0Y65Soc0 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sy0Y65Soc0 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sy0Y65Soc0 P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-sy0Y65Soc0 img {
  margin-top: 32px;
}
.cid-sy0Y65Soc0 img {
  margin-top: 16px;
}
@media (max-width: 990px) {
  .cid-sy0Y65Soc0 .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-sy0Y65Soc0 .top,
  .cid-sy0Y65Soc0 .top-2 {
    margin-top: 0;
  }
}
.cid-sy17hW0sks {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-6507-960x641.jpeg");
}
.cid-sy17hW0sks .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sy17hW0sks .wrap-block .contents {
  margin-bottom: 40px;
}
.cid-sy17hW0sks .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-sy17hW0sks .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sy17hW0sks .mbr-section-title {
  margin-bottom: 10px;
  color: #130947;
  font-weight: 700;
}
.cid-sy17hW0sks .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-sy17hW0sks .mbr-section-text {
  color: #6d7a8c;
  line-height: 1.5;
  margin-top: 10px;
}
.cid-sy17hW0sks .boldSubtitle {
  color: #130947;
}
.cid-sy17hW0sks .info-widget {
  padding-top: 0.5rem;
}
.cid-sy17hW0sks .info-widget .widget-icon {
  display: inline-block;
  font-size: 1.75rem;
  color: #4f87fb;
  margin-right: 15px;
  vertical-align: middle;
}
.cid-sy17hW0sks .info-widget .signature {
  width: 35%;
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-sy17hW0sks .info-widget .widget-content {
  vertical-align: middle;
  display: inline-block;
}
.cid-sy17hW0sks .info-widget .widget-content .widget-title {
  color: #130947;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-sy17hW0sks .info-widget .widget-content .widget-title.display-7 {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: -0.5px;
}
.cid-sy17hW0sks .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
  font-weight: 700;
}
.cid-sy17hW0sks .info-widget .widget-content .widget-text.display-4 {
  line-height: 1.71;
  letter-spacing: -0.5px;
}
.cid-sy17hW0sks .info-widget--right {
  margin-top: 30px;
  padding-top: 0;
}
.cid-sy17hW0sks .info-widget--right .widget-content .widget-title {
  margin-bottom: 0 !important;
  color: #130947;
  font-weight: 700;
}
.cid-sy17hW0sks .info-widget--right .widget-content .widget-title.display-7 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
@media (max-width: 500px) {
  .cid-sy17hW0sks .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sy17hW0sks .mbr-section-title,
  .cid-sy17hW0sks .mbr-section-subtitle,
  .cid-sy17hW0sks .mbr-text {
    text-align: left !important;
  }
  .cid-sy17hW0sks .social-list {
    text-align: left !important;
  }
}
.cid-sy17hW0sks .mbr-section-title,
.cid-sy17hW0sks .menu-content-right {
  color: #ffffff;
}
.cid-sy17hW0sks .mbr-section-title,
.cid-sy17hW0sks .menu-content-right P {
  text-align: center;
}
.cid-sxZU9NIUyB {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #efdefc;
}
.cid-sxZU9NIUyB .images-container.container-fluid {
  padding: 0;
}
.cid-sxZU9NIUyB .media-container-row {
  margin: 0 auto;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sxZU9NIUyB .media-container-row .img-item {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-sxZU9NIUyB .media-container-row .img-item img {
  width: 100%;
}
.cid-sxZU9NIUyB .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.cid-sxZU9NIUyB .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sxZU9NIUyB .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
.cid-sxZU9NIUyB .media-container-row .img-item.item1 .img-caption {
  right: 2rem;
}
@media (max-width: 992px) {
  .cid-sxZU9NIUyB .img-item {
    width: 100% !important;
  }
  .cid-sxZU9NIUyB .img-item.item1 {
    width: 100%;
    -webkit-flex-basis: initial !important;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxZU9NIUyB .media-container-row .img-item {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.cid-sxZUa9Eo7X {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #efdefc;
}
.cid-sxZUa9Eo7X .images-container.container-fluid {
  padding: 0;
}
.cid-sxZUa9Eo7X .media-container-row {
  margin: 0 auto;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sxZUa9Eo7X .media-container-row .img-item {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-sxZUa9Eo7X .media-container-row .img-item img {
  width: 100%;
}
.cid-sxZUa9Eo7X .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.cid-sxZUa9Eo7X .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sxZUa9Eo7X .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
.cid-sxZUa9Eo7X .media-container-row .img-item.item1 .img-caption {
  right: 2rem;
}
@media (max-width: 992px) {
  .cid-sxZUa9Eo7X .img-item {
    width: 100% !important;
  }
  .cid-sxZUa9Eo7X .img-item.item1 {
    width: 100%;
    -webkit-flex-basis: initial !important;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxZUa9Eo7X .media-container-row .img-item {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.cid-sxZTC2jXq9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sxZTC2jXq9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxZTC2jXq9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxZTC2jXq9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxZTC2jXq9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxZTC2jXq9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxZTC2jXq9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxZTC2jXq9 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxZTC2jXq9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxZTC2jXq9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxZTC2jXq9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxZTC2jXq9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxZTC2jXq9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxZTC2jXq9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxZTC2jXq9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-syADuLyLSx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syADuLyLSx nav.navbar {
  position: fixed;
}
.cid-syADuLyLSx .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-syADuLyLSx .dropdown-menu {
  padding: 0;
}
.cid-syADuLyLSx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syADuLyLSx .dropdown-item:hover,
.cid-syADuLyLSx .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-syADuLyLSx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-syADuLyLSx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syADuLyLSx .nav-link {
  position: relative;
}
.cid-syADuLyLSx .container {
  display: flex;
  margin: auto;
}
.cid-syADuLyLSx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-syADuLyLSx .navbar-caption {
  padding-right: 4rem;
}
.cid-syADuLyLSx .dropdown-menu,
.cid-syADuLyLSx .navbar.opened {
  background: #ffffff !important;
}
.cid-syADuLyLSx .nav-item:focus,
.cid-syADuLyLSx .nav-link:focus {
  outline: none;
}
.cid-syADuLyLSx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syADuLyLSx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syADuLyLSx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-syADuLyLSx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syADuLyLSx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syADuLyLSx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syADuLyLSx .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-syADuLyLSx .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syADuLyLSx .navbar.opened {
  transition: all .3s;
}
.cid-syADuLyLSx .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-syADuLyLSx .navbar .navbar-logo img {
  width: auto;
}
.cid-syADuLyLSx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syADuLyLSx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syADuLyLSx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syADuLyLSx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-syADuLyLSx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syADuLyLSx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syADuLyLSx .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: 55%;
}
.cid-syADuLyLSx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syADuLyLSx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-syADuLyLSx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-syADuLyLSx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syADuLyLSx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syADuLyLSx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syADuLyLSx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syADuLyLSx .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: 55%;
  }
  .cid-syADuLyLSx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-syADuLyLSx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syADuLyLSx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syADuLyLSx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syADuLyLSx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syADuLyLSx .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-syADuLyLSx .navbar.navbar-short {
  min-height: 60px;
}
.cid-syADuLyLSx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-syADuLyLSx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-syADuLyLSx .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syADuLyLSx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syADuLyLSx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syADuLyLSx .dropdown-item.active,
.cid-syADuLyLSx .dropdown-item:active {
  background-color: transparent;
}
.cid-syADuLyLSx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syADuLyLSx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syADuLyLSx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syADuLyLSx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-syADuLyLSx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syADuLyLSx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syADuLyLSx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syADuLyLSx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syADuLyLSx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-syADuLyLSx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-syADuLyLSx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-syADuLyLSx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-syADuLyLSx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-syADuLyLSx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-syADuLyLSx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-syADuLyLSx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-syADuLyLSx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-syADuLyLSx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-syADuLyLSx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-syADuLyLSx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syADuLyLSx .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-syADuLyLSx .navbar {
    height: 77px;
  }
  .cid-syADuLyLSx .navbar.opened {
    height: auto;
  }
  .cid-syADuLyLSx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syAE0cYs9i {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efdefc;
}
.cid-syAE0cYs9i .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-syAE0cYs9i .title,
.cid-syAE0cYs9i .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-syAE0cYs9i .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-syAE0cYs9i .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-syAE0cYs9i .phone {
  margin-bottom: 0;
  color: #c586f5;
  text-align: left;
}
.cid-syAE0cYs9i .text-box {
  padding: 0rem;
}
.cid-syAE0cYs9i .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-syAE0cYs9i .card-title {
  color: #c586f5;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-syAE0cYs9i .card-img {
  overflow: hidden;
}
.cid-syAE0cYs9i .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-syAE0cYs9i .card-box {
  padding: 0rem;
}
.cid-syAE0cYs9i img {
  transition: all 0.3s;
}
.cid-syAE0cYs9i .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-syAE0cYs9i .status {
  color: #000000;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-syAE0cYs9i .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-syAE0cYs9i .card-img {
    width: 30%;
  }
  .cid-syAE0cYs9i .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-syAE0cYs9i .card-img {
    width: 50%;
  }
  .cid-syAE0cYs9i .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-syAE0cYs9i .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-syAE0cYs9i .card-img {
    width: 100%;
  }
  .cid-syAE0cYs9i .card-box {
    width: 100%;
  }
}
.cid-syAE0cYs9i .card-box > p,
.cid-syAE0cYs9i .mbr-section-btn {
  color: #767676;
}
.cid-syADuMNoy8 {
  padding-top: 15px;
  padding-bottom: 45px;
  background: #eee1f8;
}
.cid-syADuMNoy8 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-syADuMNoy8 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-syADuMNoy8 .list-group-item {
  padding: .75rem 0rem;
}
.cid-syADuMNoy8 .plan-subtitle {
  color: #cccccc;
}
.cid-syADuMNoy8 .mbr-text {
  margin: 10px 0 0 0;
  color: #cccccc;
}
.cid-syADuMNoy8 .price-term .term {
  display: inline-block;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-syADuMNoy8 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-syADuMNoy8 .plan .mbr-overlay {
  background: #66458e;
  opacity: 0.9;
}
.cid-syADuMNoy8 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-syADuMNoy8 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-syADuMNoy8 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-syADuMNoy8 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-syADuMNoy8 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-syADuMNoy8 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-syADuMNoy8 .plan {
    margin-bottom: 30px;
  }
}
.cid-syADuMNoy8 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-syADuMNoy8 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-syADuNvnD6 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/img-6518-1080x1080.jpeg");
  background-position: right;
}
.cid-syADuNvnD6 .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-syADuNvnD6 .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-syADuNvnD6 .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-syADuNvnD6 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-syADuNvnD6 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-syADuNvnD6 H1 {
  text-align: center;
}
.cid-syADuOdD4V {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #efdefc;
}
@media (min-width: 767px) {
  .cid-syADuOdD4V .container {
    padding: 1rem;
  }
}
.cid-syADuOdD4V .card-box {
  padding: 0 2rem;
}
.cid-syADuOdD4V .mbr-section-btn {
  padding-top: 2rem;
}
.cid-syADuOdD4V .card1 {
  background-image: url("../../../assets/images/9655-500x375.jpeg");
}
.cid-syADuOdD4V .card2 {
  background-image: url("../../../assets/images/img-6507-502x502.jpeg");
}
.cid-syADuOdD4V .card3 {
  background-image: url("../../../assets/images/img-6525-866x866.jpeg");
}
.cid-syADuOdD4V h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-syADuOdD4V p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-syADuOdD4V .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-syADuOdD4V .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-syADuOdD4V .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-syADuP5Ygn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/9662-960x640.jpg");
}
.cid-syADuP5Ygn H3 {
  color: #ffffff;
}
.cid-syADuP5Ygn H1 {
  color: #ffffff;
}
.cid-syADuP5Ygn .mbr-text,
.cid-syADuP5Ygn .mbr-section-btn {
  color: #ffffff;
}
.cid-syADuPQhIW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efdefc;
}
.cid-syADuPQhIW .row {
  align-items: stretch;
  justify-content: center;
}
.cid-syADuPQhIW .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-syADuPQhIW .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-syADuPQhIW P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-syADuPQhIW img {
  margin-top: 32px;
}
.cid-syADuPQhIW img {
  margin-top: 16px;
}
@media (max-width: 990px) {
  .cid-syADuPQhIW .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-syADuPQhIW .top,
  .cid-syADuPQhIW .top-2 {
    margin-top: 0;
  }
}
.cid-syADuQcJ9u {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efdefc;
}
@media (min-width: 1500px) {
  .cid-syADuQcJ9u .container {
    max-width: 1400px;
  }
}
.cid-syADuQcJ9u img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-syADuQcJ9u .card {
  border-radius: 0;
  background: #333333;
}
.cid-syADuQcJ9u .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-syADuQcJ9u .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-syADuQcJ9u .img-col {
  padding: 0;
}
.cid-syADuQcJ9u .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-syADuQcJ9u .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-syADuQcJ9u .card-title,
.cid-syADuQcJ9u .card-box {
  text-align: center;
}
.cid-syADuQuKNr {
  background: #efdefc;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-syADuQuKNr .image-block {
  margin: auto;
  height: 650px;
  overflow: hidden;
  position: relative;
}
.cid-syADuQuKNr .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #814ca8;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-syADuQuKNr .image-block:hover:before {
  opacity: 0.3;
}
.cid-syADuQuKNr .image-block:hover .wrap {
  opacity: 1;
}
.cid-syADuQuKNr .image-block:hover img {
  transform: scale(1.05);
}
.cid-syADuQuKNr h4 {
  letter-spacing: 2px;
}
.cid-syADuQuKNr figcaption {
  position: relative;
}
.cid-syADuQuKNr figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-syADuQuKNr img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-syADuQuKNr .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-syADuQuKNr .wrap {
    opacity: 1!important;
  }
  .cid-syADuQuKNr .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-syADuRa5kY {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #efdefc;
}
.cid-syADuRa5kY .row {
  align-items: stretch;
  justify-content: center;
}
.cid-syADuRa5kY .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-syADuRa5kY .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-syADuRa5kY P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-syADuRa5kY img {
  margin-top: 32px;
}
.cid-syADuRa5kY img {
  margin-top: 16px;
}
@media (max-width: 990px) {
  .cid-syADuRa5kY .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-syADuRa5kY .top,
  .cid-syADuRa5kY .top-2 {
    margin-top: 0;
  }
}
.cid-syADuRBlrG {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-6507-960x641.jpeg");
}
.cid-syADuRBlrG .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-syADuRBlrG .wrap-block .contents {
  margin-bottom: 40px;
}
.cid-syADuRBlrG .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-syADuRBlrG .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-syADuRBlrG .mbr-section-title {
  margin-bottom: 10px;
  color: #130947;
  font-weight: 700;
}
.cid-syADuRBlrG .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-syADuRBlrG .mbr-section-text {
  color: #6d7a8c;
  line-height: 1.5;
  margin-top: 10px;
}
.cid-syADuRBlrG .boldSubtitle {
  color: #130947;
}
.cid-syADuRBlrG .info-widget {
  padding-top: 0.5rem;
}
.cid-syADuRBlrG .info-widget .widget-icon {
  display: inline-block;
  font-size: 1.75rem;
  color: #4f87fb;
  margin-right: 15px;
  vertical-align: middle;
}
.cid-syADuRBlrG .info-widget .signature {
  width: 35%;
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-syADuRBlrG .info-widget .widget-content {
  vertical-align: middle;
  display: inline-block;
}
.cid-syADuRBlrG .info-widget .widget-content .widget-title {
  color: #130947;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-syADuRBlrG .info-widget .widget-content .widget-title.display-7 {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: -0.5px;
}
.cid-syADuRBlrG .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
  font-weight: 700;
}
.cid-syADuRBlrG .info-widget .widget-content .widget-text.display-4 {
  line-height: 1.71;
  letter-spacing: -0.5px;
}
.cid-syADuRBlrG .info-widget--right {
  margin-top: 30px;
  padding-top: 0;
}
.cid-syADuRBlrG .info-widget--right .widget-content .widget-title {
  margin-bottom: 0 !important;
  color: #130947;
  font-weight: 700;
}
.cid-syADuRBlrG .info-widget--right .widget-content .widget-title.display-7 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
@media (max-width: 500px) {
  .cid-syADuRBlrG .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-syADuRBlrG .mbr-section-title,
  .cid-syADuRBlrG .mbr-section-subtitle,
  .cid-syADuRBlrG .mbr-text {
    text-align: left !important;
  }
  .cid-syADuRBlrG .social-list {
    text-align: left !important;
  }
}
.cid-syADuRBlrG .mbr-section-title,
.cid-syADuRBlrG .menu-content-right {
  color: #ffffff;
}
.cid-syADuRBlrG .mbr-section-title,
.cid-syADuRBlrG .menu-content-right P {
  text-align: center;
}
.cid-syADuS2lGE {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #efdefc;
}
.cid-syADuS2lGE .images-container.container-fluid {
  padding: 0;
}
.cid-syADuS2lGE .media-container-row {
  margin: 0 auto;
  -webkit-align-items: center;
  align-items: center;
}
.cid-syADuS2lGE .media-container-row .img-item {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-syADuS2lGE .media-container-row .img-item img {
  width: 100%;
}
.cid-syADuS2lGE .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.cid-syADuS2lGE .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-syADuS2lGE .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
.cid-syADuS2lGE .media-container-row .img-item.item1 .img-caption {
  right: 2rem;
}
@media (max-width: 992px) {
  .cid-syADuS2lGE .img-item {
    width: 100% !important;
  }
  .cid-syADuS2lGE .img-item.item1 {
    width: 100%;
    -webkit-flex-basis: initial !important;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syADuS2lGE .media-container-row .img-item {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.cid-syADuSkIFm {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #efdefc;
}
.cid-syADuSkIFm .images-container.container-fluid {
  padding: 0;
}
.cid-syADuSkIFm .media-container-row {
  margin: 0 auto;
  -webkit-align-items: center;
  align-items: center;
}
.cid-syADuSkIFm .media-container-row .img-item {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-syADuSkIFm .media-container-row .img-item img {
  width: 100%;
}
.cid-syADuSkIFm .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.cid-syADuSkIFm .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-syADuSkIFm .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
.cid-syADuSkIFm .media-container-row .img-item.item1 .img-caption {
  right: 2rem;
}
@media (max-width: 992px) {
  .cid-syADuSkIFm .img-item {
    width: 100% !important;
  }
  .cid-syADuSkIFm .img-item.item1 {
    width: 100%;
    -webkit-flex-basis: initial !important;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syADuSkIFm .media-container-row .img-item {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.cid-syADuSHY5o {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-syADuSHY5o .row-links {
  width: 100%;
  justify-content: center;
}
.cid-syADuSHY5o .social-row {
  width: 100%;
  justify-content: center;
}
.cid-syADuSHY5o .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-syADuSHY5o .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-syADuSHY5o .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-syADuSHY5o .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-syADuSHY5o .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-syADuSHY5o .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-syADuSHY5o .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-syADuSHY5o .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-syADuSHY5o .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syADuSHY5o .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syADuSHY5o .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-syADuSHY5o .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-td3W6D0nY3 {
  background-image: url("../../../assets/images/classroom3-1-1500x1125.jpg");
}
.cid-td3W6D0nY3 .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-td3W6D0nY3 .text-content {
  z-index: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 50%;
  background-color: #2299aa;
}
@media (max-width: 991px) {
  .cid-td3W6D0nY3 .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-td3W6D0nY3 .text-content {
    width: 100%;
  }
}
.cid-td3W6D0nY3 .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-td3W6D0nY3 .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-td3W6D0nY3 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-td3W6D0nY3 .mbr-section-btn {
  margin-left: -4.5px;
}
@media (max-width: 767px) {
  .cid-td3W6D0nY3 .mbr-text {
    text-align: center;
  }
}
.cid-td3W6D0nY3 .mbr-section-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-td3W6D0nY3 .mbr-section-btn,
.cid-td3W6D0nY3 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-td3W6D0nY3 P {
  text-align: left;
}
.cid-sypjh9LHlm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sypjh9LHlm h4 {
  margin-bottom: 0;
}
.cid-sypjh9LHlm p {
  color: #767676;
}
.cid-sypjh9LHlm .cardcenter {
  background-color: #2299aa;
  transition: all 0.3s;
  border-radius: 10px;
  padding: 1.5rem;
  height: fit-content;
  position: relative;
}
.cid-sypjh9LHlm .cardcenter:hover {
  background-color: #ea811d;
}
.cid-sypjh9LHlm .ico2 {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 8rem;
  opacity: 0.3;
}
.cid-sypjh9LHlm .cards {
  height: fit-content;
  margin-top: -1.5rem;
}
.cid-sypjh9LHlm .btn-info-outline {
  border: none;
  color: #2299aa !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-sypjh9LHlm .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-sypjh9LHlm .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-sypjh9LHlm .btn-info-outline:hover {
  background-color: transparent!important;
  color: #ea811d !important;
  box-shadow: none!important;
}
.cid-sypjh9LHlm .btn-info-outline:active,
.cid-sypjh9LHlm .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-sypjh9LHlm .card-box {
  padding-top: 2rem;
}
.cid-sypjh9LHlm .card-wrapper {
  height: 100%;
}
.cid-sypjh9LHlm .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sypjh9LHlm img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-sypjh9LHlm .card-title {
  color: #2299aa;
  text-align: center;
}
.cid-sypjh9LHlm .main-title {
  color: #57468b;
}
.cid-sypjh9LHlm DIV {
  color: #57468b;
}
.cid-sypjh9LHlm .text {
  color: #ffffff;
  text-align: center;
}
.cid-sypjh9LHlm .card-subtitle {
  color: #716c80;
}
@media (max-width: 992px) {
  .cid-sypjh9LHlm .cards {
    margin-top: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-sypjh9LHlm .link {
    margin: auto;
  }
}
.cid-sypjh9LHlm .card-img {
  width: auto;
}
.cid-tyfpQCtAuM {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tyfpQCtAuM .mbr-section-title {
  margin-bottom: 0;
  color: #2299aa;
}
.cid-tyfpQCtAuM .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-tyfpQCtAuM .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tyfpQCtAuM .mbr-iconfont:hover {
  color: #e96188;
}
.cid-tyfpQCtAuM .image-wrap {
  position: relative;
}
.cid-tyfpQCtAuM .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-tyfpQCtAuM .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-tyfpQCtAuM .card-wrap {
  margin-bottom: 3rem;
}
.cid-tyfpQCtAuM .card-wrap .social-media {
  transition-delay: 0.3s;
}
.cid-tyfpQCtAuM .card-wrap:hover .social-media {
  opacity: 1;
}
.cid-tyfpQCtAuM .card-wrap:hover .img-overlay {
  opacity: 1;
}
@media (max-width: 991px) {
  .cid-tyfpQCtAuM .card-wrap .social-media {
    opacity: 1;
  }
  .cid-tyfpQCtAuM .card-wrap .img-overlay {
    opacity: 1;
  }
}
.cid-tyfpQCtAuM .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-tyfpQCtAuM .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tyfpQCtAuM .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-tyfpQCtAuM .img-overlay {
  background: linear-gradient(transparent, #232323);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-tyfpQCtAuM .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-tyfpQCtAuM .mbr-role {
  color: #e96188;
}
.cid-tyfpQCtAuM .mbr-text {
  color: #000000;
}
.cid-tyfpQCtAuM .mbr-name {
  color: #2299aa;
  text-align: left;
}
.cid-tyfqi07ZWW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1228.png");
}
.cid-tyfqi07ZWW .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tyfqi07ZWW .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-tyfqi07ZWW .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tyfqi07ZWW .card-box {
  background: #2299aa;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tyfqi07ZWW .link {
  letter-spacing: 2px;
}
.cid-tyfqi07ZWW .card.first-card,
.cid-tyfqi07ZWW .card.third-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-tyfqi07ZWW .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tyfqi07ZWW .card {
    padding-bottom: 2rem;
  }
}
.cid-tyfqi07ZWW .card-title {
  color: #ffffff;
}
.cid-tyfqi07ZWW .card-text,
.cid-tyfqi07ZWW .link {
  color: #ffffff;
}
.cid-tyfqi07ZWW .main-title {
  color: #2299aa;
}
.cid-sypjhb7WzD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1228.png");
}
.cid-sypjhb7WzD .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sypjhb7WzD .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sypjhb7WzD .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sypjhb7WzD .card-box {
  background: #2299aa;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sypjhb7WzD .link {
  letter-spacing: 2px;
}
.cid-sypjhb7WzD .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sypjhb7WzD .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sypjhb7WzD .card {
    padding-bottom: 2rem;
  }
}
.cid-sypjhb7WzD .card-title {
  color: #ffffff;
}
.cid-sypjhb7WzD .card-text,
.cid-sypjhb7WzD .link {
  color: #ffffff;
}
.cid-sypjhb7WzD .main-title {
  color: #2299aa;
}
.cid-sypjhbDwqd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sypjhbDwqd nav.navbar {
  position: fixed;
}
.cid-sypjhbDwqd .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-sypjhbDwqd .dropdown-menu {
  padding: 0;
}
.cid-sypjhbDwqd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sypjhbDwqd .dropdown-item:hover,
.cid-sypjhbDwqd .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-sypjhbDwqd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sypjhbDwqd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sypjhbDwqd .nav-link {
  position: relative;
}
.cid-sypjhbDwqd .container {
  display: flex;
  margin: auto;
}
.cid-sypjhbDwqd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sypjhbDwqd .navbar-caption {
  padding-right: 4rem;
}
.cid-sypjhbDwqd .dropdown-menu,
.cid-sypjhbDwqd .navbar.opened {
  background: #ffffff !important;
}
.cid-sypjhbDwqd .nav-item:focus,
.cid-sypjhbDwqd .nav-link:focus {
  outline: none;
}
.cid-sypjhbDwqd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sypjhbDwqd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sypjhbDwqd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sypjhbDwqd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sypjhbDwqd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sypjhbDwqd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sypjhbDwqd .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sypjhbDwqd .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sypjhbDwqd .navbar.opened {
  transition: all .3s;
}
.cid-sypjhbDwqd .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sypjhbDwqd .navbar .navbar-logo img {
  width: auto;
}
.cid-sypjhbDwqd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sypjhbDwqd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sypjhbDwqd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sypjhbDwqd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sypjhbDwqd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sypjhbDwqd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sypjhbDwqd .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: 55%;
}
.cid-sypjhbDwqd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sypjhbDwqd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sypjhbDwqd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sypjhbDwqd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sypjhbDwqd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sypjhbDwqd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sypjhbDwqd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sypjhbDwqd .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: 55%;
  }
  .cid-sypjhbDwqd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sypjhbDwqd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sypjhbDwqd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sypjhbDwqd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sypjhbDwqd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sypjhbDwqd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sypjhbDwqd .navbar.navbar-short {
  min-height: 60px;
}
.cid-sypjhbDwqd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sypjhbDwqd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sypjhbDwqd .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sypjhbDwqd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sypjhbDwqd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sypjhbDwqd .dropdown-item.active,
.cid-sypjhbDwqd .dropdown-item:active {
  background-color: transparent;
}
.cid-sypjhbDwqd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sypjhbDwqd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sypjhbDwqd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sypjhbDwqd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sypjhbDwqd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sypjhbDwqd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sypjhbDwqd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sypjhbDwqd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sypjhbDwqd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sypjhbDwqd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sypjhbDwqd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sypjhbDwqd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sypjhbDwqd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sypjhbDwqd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sypjhbDwqd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sypjhbDwqd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sypjhbDwqd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sypjhbDwqd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sypjhbDwqd .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sypjhbDwqd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sypjhbDwqd .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-sypjhbDwqd .navbar {
    height: 77px;
  }
  .cid-sypjhbDwqd .navbar.opened {
    height: auto;
  }
  .cid-sypjhbDwqd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sypjhce5lV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sypjhce5lV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sypjhce5lV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sypjhce5lV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sypjhce5lV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sypjhce5lV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sypjhce5lV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sypjhce5lV .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sypjhce5lV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sypjhce5lV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sypjhce5lV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sypjhce5lV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sypjhce5lV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sypjhce5lV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sypjhce5lV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-txvfEadSzW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-txvfEadSzW nav.navbar {
  position: fixed;
}
.cid-txvfEadSzW .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-txvfEadSzW .dropdown-menu {
  padding: 0;
}
.cid-txvfEadSzW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txvfEadSzW .dropdown-item:hover,
.cid-txvfEadSzW .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-txvfEadSzW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-txvfEadSzW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txvfEadSzW .nav-link {
  position: relative;
}
.cid-txvfEadSzW .container {
  display: flex;
  margin: auto;
}
.cid-txvfEadSzW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-txvfEadSzW .navbar-caption {
  padding-right: 4rem;
}
.cid-txvfEadSzW .dropdown-menu,
.cid-txvfEadSzW .navbar.opened {
  background: #ffffff !important;
}
.cid-txvfEadSzW .nav-item:focus,
.cid-txvfEadSzW .nav-link:focus {
  outline: none;
}
.cid-txvfEadSzW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txvfEadSzW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txvfEadSzW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-txvfEadSzW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txvfEadSzW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txvfEadSzW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txvfEadSzW .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-txvfEadSzW .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txvfEadSzW .navbar.opened {
  transition: all .3s;
}
.cid-txvfEadSzW .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-txvfEadSzW .navbar .navbar-logo img {
  width: auto;
}
.cid-txvfEadSzW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txvfEadSzW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txvfEadSzW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txvfEadSzW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-txvfEadSzW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txvfEadSzW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txvfEadSzW .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: 55%;
}
.cid-txvfEadSzW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txvfEadSzW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-txvfEadSzW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-txvfEadSzW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txvfEadSzW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txvfEadSzW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txvfEadSzW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txvfEadSzW .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: 55%;
  }
  .cid-txvfEadSzW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-txvfEadSzW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txvfEadSzW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txvfEadSzW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txvfEadSzW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txvfEadSzW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-txvfEadSzW .navbar.navbar-short {
  min-height: 60px;
}
.cid-txvfEadSzW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-txvfEadSzW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-txvfEadSzW .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txvfEadSzW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txvfEadSzW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txvfEadSzW .dropdown-item.active,
.cid-txvfEadSzW .dropdown-item:active {
  background-color: transparent;
}
.cid-txvfEadSzW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txvfEadSzW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txvfEadSzW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txvfEadSzW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txvfEadSzW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txvfEadSzW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txvfEadSzW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-txvfEadSzW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txvfEadSzW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-txvfEadSzW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-txvfEadSzW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txvfEadSzW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txvfEadSzW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txvfEadSzW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txvfEadSzW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txvfEadSzW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txvfEadSzW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txvfEadSzW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txvfEadSzW .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-txvfEadSzW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txvfEadSzW .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-txvfEadSzW .navbar {
    height: 77px;
  }
  .cid-txvfEadSzW .navbar.opened {
    height: auto;
  }
  .cid-txvfEadSzW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txvfEbjExU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bbbbbb;
}
.cid-txvfEbjExU .mbr-iconfont {
  color: #767676;
  font-size: 1rem;
}
.cid-txvfEbjExU .title,
.cid-txvfEbjExU .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-txvfEbjExU .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-txvfEbjExU .ico-wrap {
  background: #b0d6dc;
  padding: 1rem;
}
.cid-txvfEbjExU .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-txvfEbjExU .text-box {
  padding: 0rem;
}
.cid-txvfEbjExU .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-txvfEbjExU .card-title {
  color: #2299aa;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-txvfEbjExU .card-img {
  overflow: hidden;
}
.cid-txvfEbjExU .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-txvfEbjExU .card-box {
  padding: 0rem;
}
.cid-txvfEbjExU img {
  transition: all 0.3s;
}
.cid-txvfEbjExU .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-txvfEbjExU .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-txvfEbjExU .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-txvfEbjExU .card-img {
    width: 30%;
  }
  .cid-txvfEbjExU .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-txvfEbjExU .card-img {
    width: 50%;
  }
  .cid-txvfEbjExU .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-txvfEbjExU .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-txvfEbjExU .card-img {
    width: 100%;
  }
  .cid-txvfEbjExU .card-box {
    width: 100%;
  }
}
.cid-txvfEbjExU .card-box > p,
.cid-txvfEbjExU .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-txHeMBJLGT {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/ellen7-1-2000x1125.jpeg");
}
.cid-txHeMBJLGT .content {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .cid-txHeMBJLGT .content {
    flex-wrap: wrap;
  }
}
.cid-txHeMBJLGT h2,
.cid-txHeMBJLGT h3,
.cid-txHeMBJLGT h4,
.cid-txHeMBJLGT p {
  margin: 0;
}
.cid-txHeMBJLGT ul {
  padding: 0;
  list-style-type: none;
}
.cid-txHeMBJLGT .text-wrap {
  width: 50%;
  width: 100%;
}
@media (max-width: 1024px) {
  .cid-txHeMBJLGT .text-wrap {
    width: 100%;
  }
}
.cid-txHeMBJLGT .image-wrap {
  width: 50%;
}
@media (max-width: 1024px) {
  .cid-txHeMBJLGT .image-wrap {
    width: 100%;
  }
}
.cid-txHeMBJLGT .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txHeMBJLGT .first-section {
  width: 414px;
  width: 100%;
}
@media (max-width: 473px) {
  .cid-txHeMBJLGT .first-section {
    width: 100%;
  }
}
.cid-txHeMBJLGT .second-section {
  margin-top: 70px;
}
@media (max-width: 1024px) {
  .cid-txHeMBJLGT .second-section {
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .cid-txHeMBJLGT .second-section {
    margin-top: 53px;
  }
}
.cid-txHeMBJLGT .mbr-first-section-title {
  color: #ffffff;
  margin-bottom: 14px;
}
.cid-txHeMBJLGT .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-txHeMBJLGT .mbr-first-section-text {
  color: #ffffff;
}
.cid-txHeMBJLGT .mbr-second-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-txHeMBJLGT .list {
  margin: 10px 0;
  color: #ffffff;
}
.cid-txHeMBJLGT .mbr-card-text {
  margin: 10px 0;
}
.cid-txHeMBJLGT .mbr-card-text::before {
  content: "* ";
  display: inline;
}
.cid-ty9yXhqL0m {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ty9yXhqL0m .mbr-fallback-image.disabled {
  display: none;
}
.cid-ty9yXhqL0m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ty9yXhqL0m .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-ty9yXhqL0m .bg-youtube:hover {
  background: #cc0000;
}
.cid-ty9yXhqL0m .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-ty9yXhqL0m [class^="socicon-"]:before,
.cid-ty9yXhqL0m [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-ty9yXhqL0m .mbr-section-title,
.cid-ty9yXhqL0m .social-list {
  color: #ffffff;
}
.cid-txHndZZio9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-13-1920x1920.jpeg");
}
.cid-txHndZZio9 .mbr-overlay {
  background: #353535;
  opacity: 0.5;
}
.cid-txHndZZio9 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #ffffff;
  text-align: center;
}
.cid-txHndZZio9 .title-text {
  color: #ffffff;
  text-align: center;
}
.cid-txHndZZio9 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-txHndZZio9 .section-text,
.cid-txHndZZio9 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-txHmuMCtPI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1920.jpg");
}
.cid-txHmuMCtPI .container-fluid {
  padding: 0 2rem;
}
.cid-txHmuMCtPI .mbr-section-title {
  margin-bottom: 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-txHmuMCtPI .mbr-title {
  padding: 0 1rem;
}
.cid-txHmuMCtPI .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
  text-align: center;
  color: #ffffff;
}
.cid-txHmuMCtPI .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-txHmuMCtPI .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ea811d, #ff6666);
  display: inline-block;
}
.cid-txHmuMCtPI .image-wrap {
  width: 100%;
}
.cid-txHmuMCtPI .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-txHmuMCtPI .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-txHmuMCtPI .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-txHmuMCtPI .container-fluid {
    padding: 0rem;
  }
}
.cid-txHmuMCtPI .mbr-text,
.cid-txHmuMCtPI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-txHmuMCtPI .underline,
.cid-txHmuMCtPI .mbr-title {
  color: #ffffff;
}
.cid-ty5CLQd6KS {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1-1920x1920.jpeg");
}
.cid-ty5CLQd6KS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ty5CLQd6KS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ty5CLQd6KS .row {
    padding: 0 24px;
  }
}
.cid-ty5CLQd6KS .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ty5CLQd6KS .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ty5CLQd6KS .mbr-section-title {
  color: #2c0066;
}
.cid-ty5CLQd6KS .mbr-section-title,
.cid-ty5CLQd6KS .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-txNvnh7bO3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-txNvnh7bO3 .timeline-element {
  position: relative;
}
.cid-txNvnh7bO3 .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-txNvnh7bO3 .image-wrapper {
  padding: 1rem;
}
.cid-txNvnh7bO3 .row {
  flex-direction: row-reverse;
}
.cid-txNvnh7bO3 .row:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 2px;
  height: calc(100% + 50px);
  top: 82px;
  left: 50%;
}
@media (max-width: 992px) {
  .cid-txNvnh7bO3 .row:after {
    top: 64px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-txNvnh7bO3 .row:after {
    height: calc(100% + 50px);
    top: 0px;
    left: 15px;
  }
}
.cid-txNvnh7bO3 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-txNvnh7bO3 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #ea811d;
}
.cid-txNvnh7bO3 .svg-top .st0 {
  fill: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-txNvnh7bO3 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-txNvnh7bO3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txNvnh7bO3 .mbr-section-title,
.cid-txNvnh7bO3 .mbr-section-subtitle,
.cid-txNvnh7bO3 .timeline-date {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-txNvnh7bO3 .timeline-date-wrapper,
  .cid-txNvnh7bO3 .timeline-text-wrapper,
  .cid-txNvnh7bO3 .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-txNvnh7bO3 .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-txNvnh7bO3 .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-txNvnh7bO3 .timeline-date-wrapper,
  .cid-txNvnh7bO3 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txNvnh7bO3 .timeline-date-wrapper,
  .cid-txNvnh7bO3 .timeline-text-wrapper,
  .cid-txNvnh7bO3 .image-wrapper {
    padding: 2rem;
  }
}
.cid-txNvnh7bO3 .mbr-text {
  color: #ffffff;
}
.cid-txNvnh7bO3 .mbr-timeline-date {
  color: #ffffff;
}
.cid-txNvnh7bO3 .mbr-timeline-title {
  color: #ffffff;
}
.cid-txNvnh7bO3 .mbr-section-title {
  color: #ffffff;
}
.cid-txvfEefihr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-txvfEefihr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-txvfEefihr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-txvfEefihr .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-txvfEefihr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-txvfEefihr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-txvfEefihr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-txvfEefihr .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txvfEefihr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-txvfEefihr .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txvfEefihr .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-txvfEefihr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txvfEefihr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-txvfEefihr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-txvfEefihr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-txDbhLwFL3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-txDbhLwFL3 nav.navbar {
  position: fixed;
}
.cid-txDbhLwFL3 .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-txDbhLwFL3 .dropdown-menu {
  padding: 0;
}
.cid-txDbhLwFL3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txDbhLwFL3 .dropdown-item:hover,
.cid-txDbhLwFL3 .dropdown-item:focus {
  background: #ea811d !important;
  color: white !important;
}
.cid-txDbhLwFL3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-txDbhLwFL3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txDbhLwFL3 .nav-link {
  position: relative;
}
.cid-txDbhLwFL3 .container {
  display: flex;
  margin: auto;
}
.cid-txDbhLwFL3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-txDbhLwFL3 .navbar-caption {
  padding-right: 4rem;
}
.cid-txDbhLwFL3 .dropdown-menu,
.cid-txDbhLwFL3 .navbar.opened {
  background: #ffffff !important;
}
.cid-txDbhLwFL3 .nav-item:focus,
.cid-txDbhLwFL3 .nav-link:focus {
  outline: none;
}
.cid-txDbhLwFL3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txDbhLwFL3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txDbhLwFL3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-txDbhLwFL3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txDbhLwFL3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txDbhLwFL3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txDbhLwFL3 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-txDbhLwFL3 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txDbhLwFL3 .navbar.opened {
  transition: all .3s;
}
.cid-txDbhLwFL3 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-txDbhLwFL3 .navbar .navbar-logo img {
  width: auto;
}
.cid-txDbhLwFL3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txDbhLwFL3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txDbhLwFL3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txDbhLwFL3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-txDbhLwFL3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txDbhLwFL3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txDbhLwFL3 .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: 55%;
}
.cid-txDbhLwFL3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txDbhLwFL3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-txDbhLwFL3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-txDbhLwFL3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txDbhLwFL3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txDbhLwFL3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txDbhLwFL3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txDbhLwFL3 .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: 55%;
  }
  .cid-txDbhLwFL3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-txDbhLwFL3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txDbhLwFL3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txDbhLwFL3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txDbhLwFL3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txDbhLwFL3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-txDbhLwFL3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-txDbhLwFL3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-txDbhLwFL3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-txDbhLwFL3 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txDbhLwFL3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txDbhLwFL3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txDbhLwFL3 .dropdown-item.active,
.cid-txDbhLwFL3 .dropdown-item:active {
  background-color: transparent;
}
.cid-txDbhLwFL3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txDbhLwFL3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txDbhLwFL3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txDbhLwFL3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txDbhLwFL3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txDbhLwFL3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txDbhLwFL3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-txDbhLwFL3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txDbhLwFL3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-txDbhLwFL3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-txDbhLwFL3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txDbhLwFL3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txDbhLwFL3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txDbhLwFL3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txDbhLwFL3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txDbhLwFL3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txDbhLwFL3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txDbhLwFL3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txDbhLwFL3 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-txDbhLwFL3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txDbhLwFL3 .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-txDbhLwFL3 .navbar {
    height: 77px;
  }
  .cid-txDbhLwFL3 .navbar.opened {
    height: auto;
  }
  .cid-txDbhLwFL3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txDbhNdq0z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bbbbbb;
}
.cid-txDbhNdq0z .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-txDbhNdq0z .title,
.cid-txDbhNdq0z .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-txDbhNdq0z .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-txDbhNdq0z .ico-wrap {
  background: #b0d6dc;
  padding: 1rem;
}
.cid-txDbhNdq0z .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-txDbhNdq0z .text-box {
  padding: 0rem;
}
.cid-txDbhNdq0z .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-txDbhNdq0z .card-title {
  color: #2299aa;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-txDbhNdq0z .card-img {
  overflow: hidden;
}
.cid-txDbhNdq0z .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-txDbhNdq0z .card-box {
  padding: 0rem;
}
.cid-txDbhNdq0z img {
  transition: all 0.3s;
}
.cid-txDbhNdq0z .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-txDbhNdq0z .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-txDbhNdq0z .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-txDbhNdq0z .card-img {
    width: 30%;
  }
  .cid-txDbhNdq0z .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-txDbhNdq0z .card-img {
    width: 50%;
  }
  .cid-txDbhNdq0z .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-txDbhNdq0z .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-txDbhNdq0z .card-img {
    width: 100%;
  }
  .cid-txDbhNdq0z .card-box {
    width: 100%;
  }
}
.cid-txDbhNdq0z .card-box > p,
.cid-txDbhNdq0z .mbr-section-btn {
  color: #767676;
}
.cid-txMVyVlrfS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/ellen7-1-2000x1125.jpeg");
}
.cid-txMVyVlrfS .content {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .cid-txMVyVlrfS .content {
    flex-wrap: wrap;
  }
}
.cid-txMVyVlrfS h2,
.cid-txMVyVlrfS h3,
.cid-txMVyVlrfS h4,
.cid-txMVyVlrfS p {
  margin: 0;
}
.cid-txMVyVlrfS ul {
  padding: 0;
  list-style-type: none;
}
.cid-txMVyVlrfS .text-wrap {
  width: 50%;
  width: 100%;
}
@media (max-width: 1024px) {
  .cid-txMVyVlrfS .text-wrap {
    width: 100%;
  }
}
.cid-txMVyVlrfS .image-wrap {
  width: 50%;
}
@media (max-width: 1024px) {
  .cid-txMVyVlrfS .image-wrap {
    width: 100%;
  }
}
.cid-txMVyVlrfS .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txMVyVlrfS .first-section {
  width: 414px;
  width: 100%;
}
@media (max-width: 473px) {
  .cid-txMVyVlrfS .first-section {
    width: 100%;
  }
}
.cid-txMVyVlrfS .second-section {
  margin-top: 70px;
}
@media (max-width: 1024px) {
  .cid-txMVyVlrfS .second-section {
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .cid-txMVyVlrfS .second-section {
    margin-top: 53px;
  }
}
.cid-txMVyVlrfS .mbr-first-section-title {
  color: #ffffff;
  margin-bottom: 14px;
}
.cid-txMVyVlrfS .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-txMVyVlrfS .mbr-first-section-text {
  color: #ffffff;
}
.cid-txMVyVlrfS .mbr-second-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-txMVyVlrfS .list {
  margin: 10px 0;
  color: #ffffff;
}
.cid-txMVyVlrfS .mbr-card-text {
  margin: 10px 0;
}
.cid-txMVyVlrfS .mbr-card-text::before {
  content: "* ";
  display: inline;
}
.cid-tybfJLUbPK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tybfJLUbPK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybfJLUbPK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybfJLUbPK .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tybfJLUbPK .bg-youtube:hover {
  background: #cc0000;
}
.cid-tybfJLUbPK .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tybfJLUbPK [class^="socicon-"]:before,
.cid-tybfJLUbPK [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tybfJLUbPK .mbr-section-title,
.cid-tybfJLUbPK .social-list {
  color: #ffffff;
}
.cid-txMVzsHdOG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-12-1920x1920.jpeg");
}
.cid-txMVzsHdOG .mbr-overlay {
  background: #353535;
  opacity: 0.5;
}
.cid-txMVzsHdOG .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #ffffff;
  text-align: center;
}
.cid-txMVzsHdOG .title-text {
  color: #ffffff;
  text-align: center;
}
.cid-txMVzsHdOG H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-txMVzsHdOG .section-text,
.cid-txMVzsHdOG .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-txMVAg2w6v {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1920.jpg");
}
.cid-txMVAg2w6v .container-fluid {
  padding: 0 2rem;
}
.cid-txMVAg2w6v .mbr-section-title {
  margin-bottom: 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-txMVAg2w6v .mbr-title {
  padding: 0 1rem;
}
.cid-txMVAg2w6v .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
  text-align: center;
  color: #ffffff;
}
.cid-txMVAg2w6v .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-txMVAg2w6v .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ea811d, #ff6666);
  display: inline-block;
}
.cid-txMVAg2w6v .image-wrap {
  width: 100%;
}
.cid-txMVAg2w6v .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-txMVAg2w6v .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-txMVAg2w6v .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-txMVAg2w6v .container-fluid {
    padding: 0rem;
  }
}
.cid-txMVAg2w6v .mbr-section-subtitle P {
  text-align: center;
}
.cid-txMVAg2w6v .mbr-text,
.cid-txMVAg2w6v .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-txMVAg2w6v .underline,
.cid-txMVAg2w6v .mbr-title {
  color: #ffffff;
}
.cid-ty5spinAmB {
  padding-top: 2rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/mbr-3-1920x1920.jpeg");
}
.cid-ty5spinAmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ty5spinAmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ty5spinAmB .row {
    padding: 0 24px;
  }
}
.cid-ty5spinAmB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ty5spinAmB .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-ty5spinAmB .mbr-section-title {
  color: #2c0066;
}
.cid-ty5spinAmB .mbr-section-title,
.cid-ty5spinAmB .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-txNtxP7hx2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
.cid-txNtxP7hx2 .timeline-element {
  position: relative;
}
.cid-txNtxP7hx2 .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-txNtxP7hx2 .image-wrapper {
  padding: 1rem;
}
.cid-txNtxP7hx2 .row {
  flex-direction: row-reverse;
}
.cid-txNtxP7hx2 .row:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 2px;
  height: calc(100% + 50px);
  top: 82px;
  left: 50%;
}
@media (max-width: 992px) {
  .cid-txNtxP7hx2 .row:after {
    top: 64px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-txNtxP7hx2 .row:after {
    height: calc(100% + 50px);
    top: 0px;
    left: 15px;
  }
}
.cid-txNtxP7hx2 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-txNtxP7hx2 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #ea811d;
}
.cid-txNtxP7hx2 .svg-top .st0 {
  fill: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-txNtxP7hx2 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-txNtxP7hx2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txNtxP7hx2 .mbr-section-title,
.cid-txNtxP7hx2 .mbr-section-subtitle,
.cid-txNtxP7hx2 .timeline-date {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-txNtxP7hx2 .timeline-date-wrapper,
  .cid-txNtxP7hx2 .timeline-text-wrapper,
  .cid-txNtxP7hx2 .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-txNtxP7hx2 .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-txNtxP7hx2 .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-txNtxP7hx2 .timeline-date-wrapper,
  .cid-txNtxP7hx2 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txNtxP7hx2 .timeline-date-wrapper,
  .cid-txNtxP7hx2 .timeline-text-wrapper,
  .cid-txNtxP7hx2 .image-wrapper {
    padding: 2rem;
  }
}
.cid-txNtxP7hx2 .mbr-text {
  color: #ffffff;
}
.cid-txNtxP7hx2 .mbr-timeline-date {
  color: #ffffff;
}
.cid-txNtxP7hx2 .mbr-timeline-title {
  color: #ffffff;
}
.cid-txNtxP7hx2 .mbr-section-title {
  color: #ffffff;
}
.cid-txDbhQLf5T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-txDbhQLf5T .row-links {
  width: 100%;
  justify-content: center;
}
.cid-txDbhQLf5T .social-row {
  width: 100%;
  justify-content: center;
}
.cid-txDbhQLf5T .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-txDbhQLf5T .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-txDbhQLf5T .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-txDbhQLf5T .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-txDbhQLf5T .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txDbhQLf5T .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-txDbhQLf5T .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDbhQLf5T .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-txDbhQLf5T .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDbhQLf5T .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-txDbhQLf5T .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-txDbhQLf5T .media-container-row .row-copirayt p {
  width: 100%;
}
