body {
  font-family: 'Rajdhani', sans-serif;
}
.display-1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 5rem;
  line-height: 1.06;
  letter-spacing: -3px;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -1.44px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: -0.3px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  line-height: 1.24;
  letter-spacing: -0.896px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.08px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.06 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.525rem + (2.5 - 1.525) * ((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.2 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.24 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.14rem + (1.4 - 1.14) * ((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: #ffbb00 !important;
}
.bg-success {
  background-color: #0671a1 !important;
}
.bg-info {
  background-color: #8160ff !important;
}
.bg-warning {
  background-color: #e97e19 !important;
}
.bg-danger {
  background-color: #ad0c15 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffbb00 !important;
  border-color: #ffbb00 !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: #a87b00 !important;
  border-color: #a87b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a87b00 !important;
  border-color: #a87b00 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0628b4 !important;
  border-color: #0628b4 !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: #031560 !important;
  border-color: #031560 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #031560 !important;
  border-color: #031560 !important;
}
.btn-info,
.btn-info:active {
  background-color: #8160ff !important;
  border-color: #8160ff !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: #3c09ff !important;
  border-color: #3c09ff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3c09ff !important;
  border-color: #3c09ff !important;
}
.btn-success,
.btn-success:active {
  background-color: #0671a1 !important;
  border-color: #0671a1 !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: #03364d !important;
  border-color: #03364d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #03364d !important;
  border-color: #03364d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e97e19 !important;
  border-color: #e97e19 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #9c540f !important;
  border-color: #9c540f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9c540f !important;
  border-color: #9c540f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ad0c15 !important;
  border-color: #ad0c15 !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: #5c060b !important;
  border-color: #5c060b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5c060b !important;
  border-color: #5c060b !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #ffbb00;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a87b00 !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: #ffbb00 !important;
  border-color: #ffbb00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0628b4;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #031560 !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: #0628b4 !important;
  border-color: #0628b4 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8160ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3c09ff !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: #8160ff !important;
  border-color: #8160ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0671a1;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #03364d !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: #0671a1 !important;
  border-color: #0671a1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e97e19;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #9c540f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e97e19 !important;
  border-color: #e97e19 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ad0c15;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #5c060b !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: #ad0c15 !important;
  border-color: #ad0c15 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.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: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #ffbb00 !important;
}
.text-secondary {
  color: #0628b4 !important;
}
.text-success {
  color: #0671a1 !important;
}
.text-info {
  color: #8160ff !important;
}
.text-warning {
  color: #e97e19 !important;
}
.text-danger {
  color: #ad0c15 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #997000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #031251 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #022c3f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3400f9 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8e4c0e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4e0509 !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: #ffbb00;
}
.nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #8160ff;
}
.alert-warning {
  background-color: #e97e19;
}
.alert-danger {
  background-color: #ad0c15;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffbb00;
  border-color: #ffbb00;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffbb00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff1cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #2fb9f7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fbe6d3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f24650;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: -0.3px;
  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: #ffbb00 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: -0.3px;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffbb00;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffbb00;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffbb00;
}
.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: #ffbb00;
  border-bottom-color: #ffbb00;
}
.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: #ffbb00 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #0628b4 !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='%23ffbb00' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1440px;
}
@media (max-width: 1399px) {
  .container {
    max-width: 1240px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 1040px;
  }
}
.container {
  padding-left: 20px;
  padding-right: 20px;
}
.row {
  margin-left: -20px;
  margin-right: -20px;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.btn {
  border-radius: 1rem;
  padding: 14px 28px;
  min-height: 62px;
  line-height: 1;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tqDZn21nCv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/slider-2-pic-eyedeas-international-bpo-philippines-1920x1280.webp");
}
.cid-tqDZn21nCv .wrapper {
  padding: 70px 45px 70px 45px;
  background-color: #0671a1;
}
@media (max-width: 768px) {
  .cid-tqDZn21nCv .wrapper {
    padding: 20px;
  }
}
.cid-tqDZn21nCv .mbr-section-title {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqDZn21nCv .container {
    padding: 60px;
  }
}
.cid-tqDZn21nCv .mbr-section-btn {
  width: 100%;
  display: inline-block;
}
.cid-tqDZn21nCv .btn {
  display: block;
}
.cid-tqDZn21nCv .mbr-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tqDZn21nCv .ico-section {
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .cid-tqDZn21nCv .ico-section {
    flex-wrap: wrap;
  }
}
.cid-tqDZn21nCv .img {
  margin: 0 20px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tqDZn21nCv .img img {
  object-fit: contain;
}
.cid-tqDZn21nCv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqDZn21nCv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sUp808fGej {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/home-header-1-1280x853.webp");
}
.cid-sUp808fGej .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-sUp808fGej .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-sUp808fGej .row {
    text-align: center!important;
  }
}
.cid-sUp808fGej .label-container {
  width: 100%;
}
.cid-sUp808fGej .label-text {
  color: #4BFDB1;
  margin-bottom: 0;
}
.cid-sUp808fGej .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-sUp808fGej .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-sUp808fGej .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-sUp808fGej .mbr-text {
  color: #b80a1a;
  opacity: 1.0;
  margin-top: 28px;
  margin-bottom: 0;
  text-size: 30px;
}
.cid-sUp808fGej .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-sUp808fGej .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sUp808fGej .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sUp808fGej .mbr-section-title,
.cid-sUp808fGej .mbr-section-btn {
  color: #0079ae;
}
.cid-tsNP4PVYoW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsNP4PVYoW .row {
  flex-direction: row-reverse;
}
.cid-tsNP4PVYoW .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tsNP4PVYoW .row {
    padding-bottom: 40px;
  }
}
.cid-tsNP4PVYoW .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-tsNP4PVYoW .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-tsNP4PVYoW .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tsNP4PVYoW .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tsNP4PVYoW .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tsNP4PVYoW .text-container {
    text-align: center!important;
  }
}
.cid-tsNP4PVYoW .mbr-section-title {
  color: #0079ae;
}
.cid-tsNP4PVYoW .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-tsNP4PVYoW .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-tsNP4PVYoW .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tsNP4PVYoW .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tsNP4PVYoW .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-tsNP4PVYoW .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-tsNP4PVYoW .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-tsNP4PVYoW .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tsNP4PVYoW .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tsNP4PVYoW .col-video .mbr-media img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-tsNP4PVYoW .col-video .mbr-media img {
    height: auto;
  }
}
.cid-tsNP4PVYoW .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tsNP4PVYoW .mbr-media {
  position: relative;
}
.cid-tsNP4PVYoW .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tsNP4PVYoW .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tsNP4PVYoW .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tsNP4PVYoW .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tsNP4PVYoW .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tsNP4PVYoW .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tsNP4PVYoW .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsNP4PVYoW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsNP4PVYoW .mbr-section-subtitle,
.cid-tsNP4PVYoW .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t6lCji4rE3 {
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
  margin-top: -3px;
  border-bottom: 3px solid #dfdacb;
  border-top: 3px solid #dfdacb;
}
.cid-t6lCji4rE3 .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #0079ae;
  margin-bottom: 2rem;
  background-color: #ffffff;
  border: 3px solid #dfdacb;
  padding: 2rem;
  border-radius: 20px;
}
.cid-t6lCji4rE3 .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  justify-content: center;
  align-items: center;
}
.cid-t6lCji4rE3 .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-t6lCji4rE3 .mbr-section-btn {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
@media (min-width: 991px) {
  .cid-t6lCji4rE3 .mbr-section-btn {
    margin-left: .5rem;
  }
}
.cid-t6lCji4rE3 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-t6lCji4rE3 .btn:hover,
.cid-t6lCji4rE3 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-t6lCji4rE3 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-t6lCji4rE3 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-t6lCji4rE3 .btn:hover:before,
.cid-t6lCji4rE3 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-t6lCji4rE3 .btn-secondary {
  color: #000000 !important;
}
.cid-t6lCji4rE3 .btn-secondary:hover {
  color: #000000 !important;
}
.cid-t6lCji4rE3 .card-title {
  text-align: left;
  color: #9d9b96;
}
.cid-t6lCji4rE3 .mbr-text {
  text-align: justify;
  color: #686868;
  line-height: 1.5;
}
.cid-t6lCji4rE3 .card-title,
.cid-t6lCji4rE3 .card-box {
  text-align: center;
}
.cid-t6lCji4rE3 .mbr-title,
.cid-t6lCji4rE3 .mbr-section-btn {
  text-align: right;
  color: #e4ab0d;
}
@media (max-width: 991px) {
  .cid-t6lCji4rE3 .mbr-title,
  .cid-t6lCji4rE3 .mbr-section-btn,
  .cid-t6lCji4rE3 .mbr-text {
    text-align: justify;
    line-height: 1.5;
  }
}
.cid-sUpgDwldBP {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/undraw-mobile-devices-k1ok.webp");
}
.cid-sUpgDwldBP .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-sUpgDwldBP .row {
    text-align: center!important;
  }
}
.cid-sUpgDwldBP .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-sUpgDwldBP .mbr-section-title {
    text-align: center;
  }
}
.cid-sUpgDwldBP .mbr-text {
  color: #000000;
  margin-top: 20px;
}
.cid-sUpgDwldBP .mbr-text a:hover {
  text-decoration: underline;
}
.cid-sUpgDwldBP .mbr-section-btn {
  margin-top: 20px;
}
.cid-sUpgDwldBP .mbr-section-btn .btn {
  border-radius: 50px;
}
@media (max-width: 575px) {
  .cid-sUpgDwldBP .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sUpgDwldBP .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sUpgDwldBP .mbr-section-title,
.cid-sUpgDwldBP .mbr-section-btn {
  color: #0079ae;
}
.cid-t6lX9VZNSU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-t6lX9VZNSU img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-t6lX9VZNSU .si {
  width: 100%;
}
.cid-t6lX9VZNSU .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-t6lX9VZNSU .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-t6lX9VZNSU .subtitle {
  color: #ffffff;
}
.cid-t6lX9VZNSU .text,
.cid-t6lX9VZNSU .si {
  text-align: center;
}
.cid-t6lX9VZNSU .copyright {
  padding-top: 120px;
}
.cid-txfrDOHd1g.popup-builder {
  background-color: #ffffff;
}
.cid-txfrDOHd1g.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txfrDOHd1g.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txfrDOHd1g .modal-content,
.cid-txfrDOHd1g .modal-dialog {
  height: auto;
}
.cid-txfrDOHd1g .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txfrDOHd1g .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txfrDOHd1g .form-wrapper .mbr-form .form-group,
  .cid-txfrDOHd1g .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txfrDOHd1g .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txfrDOHd1g .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txfrDOHd1g .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txfrDOHd1g .pt-0 {
  padding-top: 0 !important;
}
.cid-txfrDOHd1g .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txfrDOHd1g .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txfrDOHd1g .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txfrDOHd1g .modal-open {
  overflow: hidden;
}
.cid-txfrDOHd1g .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txfrDOHd1g .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txfrDOHd1g .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txfrDOHd1g .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txfrDOHd1g .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txfrDOHd1g .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txfrDOHd1g .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txfrDOHd1g .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txfrDOHd1g .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txfrDOHd1g .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txfrDOHd1g .modal-backdrop.fade {
  opacity: 0;
}
.cid-txfrDOHd1g .modal-backdrop.show {
  opacity: .5;
}
.cid-txfrDOHd1g .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txfrDOHd1g .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOHd1g .modal-header {
    padding: 1rem;
  }
}
.cid-txfrDOHd1g .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txfrDOHd1g .modal-header .close svg {
  fill: #353535;
}
.cid-txfrDOHd1g .modal-header .close:hover {
  opacity: 1;
}
.cid-txfrDOHd1g .modal-header .close:focus {
  outline: none;
}
.cid-txfrDOHd1g .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txfrDOHd1g .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txfrDOHd1g .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOHd1g .modal-body {
    padding: 1rem;
  }
}
.cid-txfrDOHd1g .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txfrDOHd1g .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOHd1g .modal-footer {
    padding: 1rem;
  }
}
.cid-txfrDOHd1g .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txfrDOHd1g .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txfrDOHd1g .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txfrDOHd1g .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txfrDOHd1g .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txfrDOHd1g .modal-lg,
  .cid-txfrDOHd1g .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txfrDOHd1g .modal-xl {
    max-width: 1140px;
  }
}
.cid-txfrDOHd1g .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txfrDOHd1g .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txfrDOHd1g .form-group {
  margin-bottom: 1rem;
}
.cid-txfrDOHd1g .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txfrDOHd1g .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txfrDOHd1g .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txfrDOHd1g .mbr-section-btn {
  margin: 0;
}
.cid-txfrDOHd1g .mbr-section-btn .btn {
  margin: 0;
}
.cid-tt0BCXY9wp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/slider-2-pic-eyedeas-international-bpo-philippines-1920x1280.webp");
}
.cid-tt0BCXY9wp .wrapper {
  padding: 70px 45px 70px 45px;
  background-color: #0671a1;
}
@media (max-width: 768px) {
  .cid-tt0BCXY9wp .wrapper {
    padding: 20px;
  }
}
.cid-tt0BCXY9wp .mbr-section-title {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tt0BCXY9wp .container {
    padding: 60px;
  }
}
.cid-tt0BCXY9wp .mbr-section-btn {
  width: 100%;
  display: inline-block;
}
.cid-tt0BCXY9wp .btn {
  display: block;
}
.cid-tt0BCXY9wp .mbr-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tt0BCXY9wp .ico-section {
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .cid-tt0BCXY9wp .ico-section {
    flex-wrap: wrap;
  }
}
.cid-tt0BCXY9wp .img {
  margin: 0 20px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tt0BCXY9wp .img img {
  object-fit: contain;
}
.cid-tt0BCXY9wp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt0BCXY9wp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6n5YaT2CO {
  background-image: url("../../../assets/images/services-header-3-1280x853.webp");
}
.cid-t6n5YaT2CO .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-t6n5YaT2CO .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-t6n5YaT2CO .row {
    text-align: center!important;
  }
}
.cid-t6n5YaT2CO .label-container {
  width: 100%;
}
.cid-t6n5YaT2CO .label-text {
  color: #4BFDB1;
  margin-bottom: 0;
}
.cid-t6n5YaT2CO .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-t6n5YaT2CO .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-t6n5YaT2CO .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-t6n5YaT2CO .mbr-text {
  color: #64040b;
  opacity: 0.5;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-t6n5YaT2CO .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-t6n5YaT2CO .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6n5YaT2CO .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6n5YaT2CO .mbr-section-title,
.cid-t6n5YaT2CO .mbr-section-btn {
  color: #0079ae;
}
.cid-t6tAHZFDe5 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #edeff0;
}
.cid-t6tAHZFDe5 .mbr-text {
  margin: 0;
}
.cid-t6tAHZFDe5 .row-element {
  padding: 0;
}
.cid-t6tAHZFDe5 img {
  border-radius: 10px;
  object-fit: cover;
}
.cid-t6tAHZFDe5 .carousel-item.active,
.cid-t6tAHZFDe5 .carousel-item-next,
.cid-t6tAHZFDe5 .carousel-item-prev {
  display: flex;
}
.cid-t6tAHZFDe5 .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
}
.cid-t6tAHZFDe5 .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #ffbb00;
}
.cid-t6tAHZFDe5 .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-t6tAHZFDe5 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-t6tAHZFDe5 .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-t6tAHZFDe5 .carousel-controls {
    display: block;
  }
  .cid-t6tAHZFDe5 .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-t6tAHZFDe5 .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-t6tAHZFDe5 .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-t6tAHZFDe5 .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-t6tAHZFDe5 .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t6tAHZFDe5 .media-container-row {
    width: 100%;
  }
}
.cid-t6tAHZFDe5 .text-content {
  padding: 3rem;
}
.cid-t6tAHZFDe5 .mbr-title {
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
}
.cid-t6tAHZFDe5 .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
  color: #0079ae;
}
@media (max-width: 992px) {
  .cid-t6tAHZFDe5 .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-t6tAHZFDe5 .card-text {
  line-height: 1.5;
  text-align: left;
}
.cid-t6tAHZFDe5 .link {
  text-align: left;
  text-height: 30px;
}
.cid-t6tAHZFDe5 .card-text,
.cid-t6tAHZFDe5 .link {
  text-align: right;
}
.cid-t6vyn6JT7s {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-t6vyn6JT7s .container {
    max-width: 1400px;
  }
}
.cid-t6vyn6JT7s .card-text_padding-bottom {
  padding-bottom: 5rem;
}
.cid-t6vyn6JT7s .card-img {
  margin-left: auto;
  margin-bottom: 2rem;
  margin-right: auto;
}
.cid-t6vyn6JT7s .card-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.cid-t6vyn6JT7s .btn-bottom {
  display: flex;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1620px) {
  .cid-t6vyn6JT7s .card {
    padding: 0 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1250px) {
  .cid-t6vyn6JT7s .card {
    padding: 0 2rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .cid-t6vyn6JT7s .card {
    padding: 0 1rem;
    padding-bottom: 4rem;
  }
}
.cid-t6vyn6JT7s .row {
  justify-content: center;
}
.cid-t6vyn6JT7s .mbr-section-title {
  color: #0079ae;
  text-align: center;
}
.cid-t6vyn6JT7s .card-title {
  color: #2e6b75;
  text-align: center;
}
.cid-t6vyn6JT7s .mbr-section-subtitle {
  color: #6c7577;
  text-align: center;
}
.cid-t6vyn6JT7s .card-text {
  color: #6c7577;
  text-align: justify;
  line-height: 1.5;
}
.cid-t6vu1NIsZX {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-t6vu1NIsZX .card-wrapper {
  display: flex;
  padding-bottom: 2rem;
}
.cid-t6vu1NIsZX .card-wrapper:hover .card-title {
  color: #0628b4;
}
.cid-t6vu1NIsZX .col1 span {
  padding-right: 1.5rem;
}
.cid-t6vu1NIsZX .col2 span {
  padding-left: 1.5rem;
}
.cid-t6vu1NIsZX .card-title {
  transition: all 0.3s;
  color: #0079ae;
}
.cid-t6vu1NIsZX .mbr-iconfont {
  font-size: 2rem;
  padding-top: 0.5rem;
  color: #0628b4;
}
@media (max-width: 992px) {
  .cid-t6vu1NIsZX .card-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .cid-t6vu1NIsZX span {
    padding: 0!important;
    margin-bottom: 1rem;
  }
  .cid-t6vu1NIsZX .col2 .card-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-t6vu1NIsZX .card-text {
  color: #616161;
}
.cid-t6wb1BKnzc {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/header-band-1920x400.webp");
}
.cid-t6wb1BKnzc .row {
  align-items: center;
}
.cid-t6wb1BKnzc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t6wb1BKnzc .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-t6wb1BKnzc .header-text {
    margin-bottom: 20px;
  }
}
.cid-t6wb1BKnzc .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-t6wb1BKnzc .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-t6wb1BKnzc .mbr-text,
.cid-t6wb1BKnzc .mbr-section-btn {
  color: #ffffff;
}
.cid-t6w76Jnw3n {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t6w76Jnw3n .row {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-t6w76Jnw3n .col-text {
    padding: 0 0 0 0;
  }
}
.cid-t6w76Jnw3n .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
  background-color: #f9f7f5;
}
@media (max-width: 767px) {
  .cid-t6w76Jnw3n .text-wrapper {
    text-align: center !important;
    padding-bottom: 54px;
  }
}
.cid-t6w76Jnw3n .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #0079ae;
}
@media (max-width: 767px) {
  .cid-t6w76Jnw3n .label-text {
    text-align: center !important;
  }
}
.cid-t6w76Jnw3n .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-t6w76Jnw3n .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t6w76Jnw3n .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-t6w76Jnw3n .mbr-text {
    text-align: center !important;
  }
}
.cid-t6w76Jnw3n .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-t6w76Jnw3n .btn-container {
  width: 100%;
  margin-top: auto;
}
.cid-t6w76Jnw3n .mbr-section-btn .btn {
  padding: 0;
}
.cid-t6w76Jnw3n .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-t6w76Jnw3n .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-t6w76Jnw3n .col-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cid-t6w76Jnw3n .col-cards {
    padding: 0;
    padding-left: 1.8%;
  }
}
@media (min-width: 992px) {
  .cid-t6w76Jnw3n .col-cards {
    padding-left: 5%;
  }
}
.cid-t6w76Jnw3n .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
}
.cid-t6w76Jnw3n .cards-wrap:hover {
  background-color: #f9f7f5;
}
.cid-t6w76Jnw3n .card {
  padding: 30px;
  background-color: #ffffff;
  transition: 0.4s all;
  border-radius: 0;
}
.cid-t6w76Jnw3n .card:hover {
  background-color: #f9f7f5;
}
@media (min-width: 768px) {
  .cid-t6w76Jnw3n .card:hover {
    transform: translate(0px, -10px);
  }
}
.cid-t6w76Jnw3n .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t6w76Jnw3n .img-container {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-t6w76Jnw3n .img-container {
    display: flex;
    justify-content: center;
  }
}
.cid-t6w76Jnw3n .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: relative;
}
.cid-t6w76Jnw3n .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t6w76Jnw3n .img-bg {
  min-width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
}
.cid-t6w76Jnw3n .card-title {
  color: #b80a1a;
  margin-bottom: 8px;
  text-align: left;
}
.cid-t6w76Jnw3n .card-text {
  color: #222222;
  margin-bottom: 0;
}
.cid-t6w76Jnw3n .mbr-section-title,
.cid-t6w76Jnw3n .mbr-section-btn {
  text-align: justify;
  line-height: 1.5;
}
.cid-t6wj8nC6vx {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6wj8nC6vx .row {
  align-items: center;
}
.cid-t6wj8nC6vx .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t6wj8nC6vx .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-t6wj8nC6vx .header-text {
    margin-bottom: 20px;
  }
}
.cid-t6wj8nC6vx .mbr-section-title {
  width: 100%;
  color: #0671a1;
  margin-bottom: 8px;
}
.cid-t6wj8nC6vx .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-t6wl0RUwvG {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-t6wl0RUwvG img {
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.cid-t6wl0RUwvG .img-wrapper {
  margin-bottom: 1.8rem;
  transition: all 0.3s ease-in-out;
}
.cid-t6wl0RUwvG .card .img-wrapper {
  overflow: hidden;
}
.cid-t6wl0RUwvG .card:hover {
  cursor: pointer;
}
.cid-t6wl0RUwvG .card:hover img {
  transform: scale(1.05);
}
.cid-t6wl0RUwvG .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
.cid-t6wl0RUwvG .mbr-section-title {
  transition: all 0.3s ease-in-out;
}
.cid-t6wl0RUwvG .mbr-section-title:hover {
  color: #ffbb00;
}
.cid-t6wl0RUwvG .mbr-section-date {
  color: #999999;
}
.cid-t6wl0RUwvG .mbr-section-text {
  color: #999999;
}
.cid-t6tz428PEz {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/header-band-5-1280x400.webp");
}
.cid-t6tz428PEz .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-t6tz428PEz .row {
    text-align: center!important;
  }
}
.cid-t6tz428PEz .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-t6tz428PEz .mbr-section-title {
    text-align: center;
  }
}
.cid-t6tz428PEz .mbr-text {
  color: #000000;
  margin-top: 20px;
}
.cid-t6tz428PEz .mbr-text a:hover {
  text-decoration: underline;
}
.cid-t6tz428PEz .mbr-section-btn {
  margin-top: 20px;
}
.cid-t6tz428PEz .mbr-section-btn .btn {
  border-radius: 50px;
}
@media (max-width: 575px) {
  .cid-t6tz428PEz .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6tz428PEz .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6tz428PEz .mbr-section-title,
.cid-t6tz428PEz .mbr-section-btn {
  color: #0079ae;
}
.cid-tsNPDmg3fv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsNPDmg3fv .row {
  flex-direction: row-reverse;
}
.cid-tsNPDmg3fv .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tsNPDmg3fv .row {
    padding-bottom: 40px;
  }
}
.cid-tsNPDmg3fv .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-tsNPDmg3fv .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-tsNPDmg3fv .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tsNPDmg3fv .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tsNPDmg3fv .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tsNPDmg3fv .text-container {
    text-align: center!important;
  }
}
.cid-tsNPDmg3fv .mbr-section-title {
  color: #0079ae;
}
.cid-tsNPDmg3fv .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-tsNPDmg3fv .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-tsNPDmg3fv .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tsNPDmg3fv .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tsNPDmg3fv .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-tsNPDmg3fv .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-tsNPDmg3fv .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-tsNPDmg3fv .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tsNPDmg3fv .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tsNPDmg3fv .col-video .mbr-media img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-tsNPDmg3fv .col-video .mbr-media img {
    height: auto;
  }
}
.cid-tsNPDmg3fv .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tsNPDmg3fv .mbr-media {
  position: relative;
}
.cid-tsNPDmg3fv .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tsNPDmg3fv .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tsNPDmg3fv .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tsNPDmg3fv .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tsNPDmg3fv .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tsNPDmg3fv .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tsNPDmg3fv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsNPDmg3fv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsNPDmg3fv .mbr-section-subtitle,
.cid-tsNPDmg3fv .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t6vGEFIOgA.popup-builder {
  background-color: #ffffff;
}
.cid-t6vGEFIOgA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t6vGEFIOgA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t6vGEFIOgA .modal-content,
.cid-t6vGEFIOgA .modal-dialog {
  height: auto;
}
.cid-t6vGEFIOgA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t6vGEFIOgA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t6vGEFIOgA .form-wrapper .mbr-form .form-group,
  .cid-t6vGEFIOgA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t6vGEFIOgA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t6vGEFIOgA .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t6vGEFIOgA .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-t6vGEFIOgA .pt-0 {
  padding-top: 0 !important;
}
.cid-t6vGEFIOgA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t6vGEFIOgA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t6vGEFIOgA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t6vGEFIOgA .modal-open {
  overflow: hidden;
}
.cid-t6vGEFIOgA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t6vGEFIOgA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t6vGEFIOgA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t6vGEFIOgA .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t6vGEFIOgA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t6vGEFIOgA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t6vGEFIOgA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t6vGEFIOgA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t6vGEFIOgA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t6vGEFIOgA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t6vGEFIOgA .modal-backdrop.fade {
  opacity: 0;
}
.cid-t6vGEFIOgA .modal-backdrop.show {
  opacity: .5;
}
.cid-t6vGEFIOgA .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t6vGEFIOgA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t6vGEFIOgA .modal-header {
    padding: 1rem;
  }
}
.cid-t6vGEFIOgA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t6vGEFIOgA .modal-header .close svg {
  fill: #353535;
}
.cid-t6vGEFIOgA .modal-header .close:hover {
  opacity: 1;
}
.cid-t6vGEFIOgA .modal-header .close:focus {
  outline: none;
}
.cid-t6vGEFIOgA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-t6vGEFIOgA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t6vGEFIOgA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6vGEFIOgA .modal-body {
    padding: 1rem;
  }
}
.cid-t6vGEFIOgA .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6vGEFIOgA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6vGEFIOgA .modal-footer {
    padding: 1rem;
  }
}
.cid-t6vGEFIOgA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t6vGEFIOgA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t6vGEFIOgA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t6vGEFIOgA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t6vGEFIOgA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t6vGEFIOgA .modal-lg,
  .cid-t6vGEFIOgA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t6vGEFIOgA .modal-xl {
    max-width: 1140px;
  }
}
.cid-t6vGEFIOgA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t6vGEFIOgA .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t6vGEFIOgA .form-group {
  margin-bottom: 1rem;
}
.cid-t6vGEFIOgA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t6vGEFIOgA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t6vGEFIOgA .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t6vGEFIOgA .mbr-section-btn {
  margin: 0;
}
.cid-t6vGEFIOgA .mbr-section-btn .btn {
  margin: 0;
}
.cid-t6vIcLFYf1.popup-builder {
  background-color: #ffffff;
}
.cid-t6vIcLFYf1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t6vIcLFYf1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t6vIcLFYf1 .modal-content,
.cid-t6vIcLFYf1 .modal-dialog {
  height: auto;
}
.cid-t6vIcLFYf1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t6vIcLFYf1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t6vIcLFYf1 .form-wrapper .mbr-form .form-group,
  .cid-t6vIcLFYf1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t6vIcLFYf1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t6vIcLFYf1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t6vIcLFYf1 .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-t6vIcLFYf1 .pt-0 {
  padding-top: 0 !important;
}
.cid-t6vIcLFYf1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t6vIcLFYf1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t6vIcLFYf1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t6vIcLFYf1 .modal-open {
  overflow: hidden;
}
.cid-t6vIcLFYf1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t6vIcLFYf1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t6vIcLFYf1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t6vIcLFYf1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t6vIcLFYf1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t6vIcLFYf1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t6vIcLFYf1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t6vIcLFYf1 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t6vIcLFYf1 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t6vIcLFYf1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t6vIcLFYf1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-t6vIcLFYf1 .modal-backdrop.show {
  opacity: .5;
}
.cid-t6vIcLFYf1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t6vIcLFYf1 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t6vIcLFYf1 .modal-header {
    padding: 1rem;
  }
}
.cid-t6vIcLFYf1 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t6vIcLFYf1 .modal-header .close svg {
  fill: #353535;
}
.cid-t6vIcLFYf1 .modal-header .close:hover {
  opacity: 1;
}
.cid-t6vIcLFYf1 .modal-header .close:focus {
  outline: none;
}
.cid-t6vIcLFYf1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-t6vIcLFYf1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t6vIcLFYf1 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6vIcLFYf1 .modal-body {
    padding: 1rem;
  }
}
.cid-t6vIcLFYf1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6vIcLFYf1 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6vIcLFYf1 .modal-footer {
    padding: 1rem;
  }
}
.cid-t6vIcLFYf1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t6vIcLFYf1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t6vIcLFYf1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t6vIcLFYf1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t6vIcLFYf1 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t6vIcLFYf1 .modal-lg,
  .cid-t6vIcLFYf1 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t6vIcLFYf1 .modal-xl {
    max-width: 1140px;
  }
}
.cid-t6vIcLFYf1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t6vIcLFYf1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t6vIcLFYf1 .form-group {
  margin-bottom: 1rem;
}
.cid-t6vIcLFYf1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t6vIcLFYf1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t6vIcLFYf1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t6vIcLFYf1 .mbr-section-btn {
  margin: 0;
}
.cid-t6vIcLFYf1 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t6w3QSIqYy.popup-builder {
  background-color: #ffffff;
}
.cid-t6w3QSIqYy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t6w3QSIqYy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t6w3QSIqYy .modal-content,
.cid-t6w3QSIqYy .modal-dialog {
  height: auto;
}
.cid-t6w3QSIqYy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t6w3QSIqYy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t6w3QSIqYy .form-wrapper .mbr-form .form-group,
  .cid-t6w3QSIqYy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t6w3QSIqYy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t6w3QSIqYy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t6w3QSIqYy .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-t6w3QSIqYy .pt-0 {
  padding-top: 0 !important;
}
.cid-t6w3QSIqYy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t6w3QSIqYy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t6w3QSIqYy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t6w3QSIqYy .modal-open {
  overflow: hidden;
}
.cid-t6w3QSIqYy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t6w3QSIqYy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t6w3QSIqYy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t6w3QSIqYy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t6w3QSIqYy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t6w3QSIqYy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t6w3QSIqYy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t6w3QSIqYy .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t6w3QSIqYy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t6w3QSIqYy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t6w3QSIqYy .modal-backdrop.fade {
  opacity: 0;
}
.cid-t6w3QSIqYy .modal-backdrop.show {
  opacity: .5;
}
.cid-t6w3QSIqYy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t6w3QSIqYy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t6w3QSIqYy .modal-header {
    padding: 1rem;
  }
}
.cid-t6w3QSIqYy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t6w3QSIqYy .modal-header .close svg {
  fill: #353535;
}
.cid-t6w3QSIqYy .modal-header .close:hover {
  opacity: 1;
}
.cid-t6w3QSIqYy .modal-header .close:focus {
  outline: none;
}
.cid-t6w3QSIqYy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-t6w3QSIqYy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t6w3QSIqYy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6w3QSIqYy .modal-body {
    padding: 1rem;
  }
}
.cid-t6w3QSIqYy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6w3QSIqYy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6w3QSIqYy .modal-footer {
    padding: 1rem;
  }
}
.cid-t6w3QSIqYy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t6w3QSIqYy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t6w3QSIqYy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t6w3QSIqYy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t6w3QSIqYy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t6w3QSIqYy .modal-lg,
  .cid-t6w3QSIqYy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t6w3QSIqYy .modal-xl {
    max-width: 1140px;
  }
}
.cid-t6w3QSIqYy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t6w3QSIqYy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t6w3QSIqYy .form-group {
  margin-bottom: 1rem;
}
.cid-t6w3QSIqYy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t6w3QSIqYy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t6w3QSIqYy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t6w3QSIqYy .mbr-section-btn {
  margin: 0;
}
.cid-t6w3QSIqYy .mbr-section-btn .btn {
  margin: 0;
}
.cid-t6w4Q7adlk.popup-builder {
  background-color: #ffffff;
}
.cid-t6w4Q7adlk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t6w4Q7adlk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t6w4Q7adlk .modal-content,
.cid-t6w4Q7adlk .modal-dialog {
  height: auto;
}
.cid-t6w4Q7adlk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t6w4Q7adlk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t6w4Q7adlk .form-wrapper .mbr-form .form-group,
  .cid-t6w4Q7adlk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t6w4Q7adlk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t6w4Q7adlk .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t6w4Q7adlk .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-t6w4Q7adlk .pt-0 {
  padding-top: 0 !important;
}
.cid-t6w4Q7adlk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t6w4Q7adlk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t6w4Q7adlk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t6w4Q7adlk .modal-open {
  overflow: hidden;
}
.cid-t6w4Q7adlk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t6w4Q7adlk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t6w4Q7adlk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t6w4Q7adlk .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t6w4Q7adlk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t6w4Q7adlk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t6w4Q7adlk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t6w4Q7adlk .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t6w4Q7adlk .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t6w4Q7adlk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t6w4Q7adlk .modal-backdrop.fade {
  opacity: 0;
}
.cid-t6w4Q7adlk .modal-backdrop.show {
  opacity: .5;
}
.cid-t6w4Q7adlk .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t6w4Q7adlk .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t6w4Q7adlk .modal-header {
    padding: 1rem;
  }
}
.cid-t6w4Q7adlk .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t6w4Q7adlk .modal-header .close svg {
  fill: #353535;
}
.cid-t6w4Q7adlk .modal-header .close:hover {
  opacity: 1;
}
.cid-t6w4Q7adlk .modal-header .close:focus {
  outline: none;
}
.cid-t6w4Q7adlk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-t6w4Q7adlk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t6w4Q7adlk .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6w4Q7adlk .modal-body {
    padding: 1rem;
  }
}
.cid-t6w4Q7adlk .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6w4Q7adlk .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6w4Q7adlk .modal-footer {
    padding: 1rem;
  }
}
.cid-t6w4Q7adlk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t6w4Q7adlk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t6w4Q7adlk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t6w4Q7adlk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t6w4Q7adlk .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t6w4Q7adlk .modal-lg,
  .cid-t6w4Q7adlk .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t6w4Q7adlk .modal-xl {
    max-width: 1140px;
  }
}
.cid-t6w4Q7adlk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t6w4Q7adlk .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t6w4Q7adlk .form-group {
  margin-bottom: 1rem;
}
.cid-t6w4Q7adlk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t6w4Q7adlk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t6w4Q7adlk .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t6w4Q7adlk .mbr-section-btn {
  margin: 0;
}
.cid-t6w4Q7adlk .mbr-section-btn .btn {
  margin: 0;
}
.cid-t6n5YeYLyv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-t6n5YeYLyv img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-t6n5YeYLyv .si {
  width: 100%;
}
.cid-t6n5YeYLyv .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-t6n5YeYLyv .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-t6n5YeYLyv .subtitle {
  color: #ffffff;
}
.cid-t6n5YeYLyv .text,
.cid-t6n5YeYLyv .si {
  text-align: center;
}
.cid-t6n5YeYLyv .copyright {
  padding-top: 120px;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tt0BrpnGhM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/slider-2-pic-eyedeas-international-bpo-philippines-1920x1280.webp");
}
.cid-tt0BrpnGhM .wrapper {
  padding: 70px 45px 70px 45px;
  background-color: #0671a1;
}
@media (max-width: 768px) {
  .cid-tt0BrpnGhM .wrapper {
    padding: 20px;
  }
}
.cid-tt0BrpnGhM .mbr-section-title {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tt0BrpnGhM .container {
    padding: 60px;
  }
}
.cid-tt0BrpnGhM .mbr-section-btn {
  width: 100%;
  display: inline-block;
}
.cid-tt0BrpnGhM .btn {
  display: block;
}
.cid-tt0BrpnGhM .mbr-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tt0BrpnGhM .ico-section {
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .cid-tt0BrpnGhM .ico-section {
    flex-wrap: wrap;
  }
}
.cid-tt0BrpnGhM .img {
  margin: 0 20px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tt0BrpnGhM .img img {
  object-fit: contain;
}
.cid-tt0BrpnGhM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt0BrpnGhM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6n6azWlUt {
  background-image: url("../../../assets/images/about-header-1-1280x853.webp");
}
.cid-t6n6azWlUt .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-t6n6azWlUt .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-t6n6azWlUt .row {
    text-align: center!important;
  }
}
.cid-t6n6azWlUt .label-container {
  width: 100%;
}
.cid-t6n6azWlUt .label-text {
  color: #4BFDB1;
  margin-bottom: 0;
}
.cid-t6n6azWlUt .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-t6n6azWlUt .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-t6n6azWlUt .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-t6n6azWlUt .mbr-text {
  color: #64040b;
  opacity: 0.5;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-t6n6azWlUt .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-t6n6azWlUt .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6n6azWlUt .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6n6azWlUt .mbr-section-title,
.cid-t6n6azWlUt .mbr-section-btn {
  color: #ffffff;
}
.cid-t6rqJr3NNT {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-t6rqJr3NNT .row {
  flex-direction: row-reverse;
}
.cid-t6rqJr3NNT .image-wrapper {
  padding: 0 2rem;
}
.cid-t6rqJr3NNT .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t6rqJr3NNT .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t6rqJr3NNT .mbr-section-title {
  color: #0079ae;
  margin-bottom: 1.5rem;
}
.cid-t6rqJr3NNT .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t6rqJr3NNT .mbr-text {
  color: #69665c;
  margin-bottom: 3rem;
  text-align: justify;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .cid-t6rqJr3NNT .text-wrapper,
  .cid-t6rqJr3NNT .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t6rqJr3NNT .text-wrapper,
  .cid-t6rqJr3NNT .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t6rqJr3NNT .text-wrapper,
  .cid-t6rqJr3NNT .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t6rqJr3NNT .text-wrapper,
  .cid-t6rqJr3NNT .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t6rqJr3NNT .text-wrapper,
  .cid-t6rqJr3NNT .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t6rqJr3NNT .content {
    text-align: center;
  }
}
.cid-t6rqJr3NNT .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t6rqJr3NNT .mbr-card-title {
    text-align: start;
  }
}
.cid-t6rqJr3NNT .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t6rqJr3NNT .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t6rqJr3NNT .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t6rqJr3NNT .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t6rqJr3NNT .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t6rqJr3NNT .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t6rqJr3NNT .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t6rqJr3NNT .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t6rqJr3NNT .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t6rqJr3NNT .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t6rqJr3NNT .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t6rqJr3NNT .nutrition-wrap {
    width: 100%;
  }
}
.cid-t6rqJr3NNT .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t6rqJr3NNT .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t6rqJr3NNT .tile-text-wrap {
  display: flex;
}
.cid-t6rqJr3NNT svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t6rqJr3NNT svg path {
  fill: #cd8ad1;
}
.cid-t6rqJr3NNT .numbers {
  display: flex;
  align-self: center;
}
.cid-t6rqJr3NNT .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t6rqJr3NNT .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t6rqJr3NNT .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t6rqJr3NNT .mbr-tile-text {
    text-align: start;
  }
}
.cid-t6rqJr3NNT .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t6rqJr3NNT .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t6rqJr3NNT .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t6rqJr3NNT .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-t6rqJr3NNT .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t6rqJr3NNT .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t6rqJr3NNT .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t6rqJr3NNT .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t6rqJr3NNT .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t6rqJr3NNT div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t6rqJr3NNT .mbr-section-btn {
  display: flex;
}
.cid-t6taW9RNII {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/pngegg-42-1556x1071.webp");
}
.cid-t6taW9RNII .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-t6taW9RNII .row {
    text-align: center!important;
  }
}
.cid-t6taW9RNII .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-t6taW9RNII .mbr-section-title {
    text-align: center;
  }
}
.cid-t6taW9RNII .mbr-text {
  color: #000000;
  margin-top: 20px;
}
.cid-t6taW9RNII .mbr-text a:hover {
  text-decoration: underline;
}
.cid-t6taW9RNII .mbr-section-btn {
  margin-top: 20px;
}
.cid-t6taW9RNII .mbr-section-btn .btn {
  border-radius: 50px;
}
@media (max-width: 575px) {
  .cid-t6taW9RNII .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6taW9RNII .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6taW9RNII .mbr-section-title,
.cid-t6taW9RNII .mbr-section-btn {
  color: #0079ae;
}
.cid-t6ythiO6Z9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-t6ythiO6Z9 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffbb00;
  margin-left: 1rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  padding: 1.5rem;
}
.cid-t6ythiO6Z9 .panel-group {
  border: none;
}
.cid-t6ythiO6Z9 .panel-collapse {
  padding: 0 2rem;
}
.cid-t6ythiO6Z9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  padding: 2rem;
}
.cid-t6ythiO6Z9 .panel-body,
.cid-t6ythiO6Z9 .card-header {
  padding: 1rem 0;
}
.cid-t6ythiO6Z9 .panel-title-edit {
  color: #0079ae;
}
.cid-t6ythiO6Z9 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
}
.cid-t6ythiO6Z9 .card {
  overflow: visible;
}
.cid-t6ythiO6Z9 .panel-text {
  color: #6c758f;
}
.cid-t6ythiO6Z9 H3 {
  color: #36187d;
}
.cid-t6tcphPvyb {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-t6tcphPvyb .shadow {
  margin: auto;
  max-width: 713px;
  padding: 60px 50px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-t6tcphPvyb .card-subtitle {
  color: #0099ff;
  padding: 16px 25px;
  border-radius: 1000px;
  background-color: #ffbb00;
  display: inline-block;
}
.cid-t6tcphPvyb .card-text {
  color: #8c8c95;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 470px) {
  .cid-t6tcphPvyb .shadow {
    padding: 40px;
  }
}
.cid-t6tcphPvyb .card-text,
.cid-t6tcphPvyb .align {
  text-align: center;
  color: #000000;
}
.cid-t6tbH3NUJO {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-t6tbH3NUJO .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-t6tbH3NUJO .row {
    padding: 0 0.75rem;
  }
}
.cid-t6tbH3NUJO .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
.cid-t6tbH3NUJO .label-text {
  color: #0057fc;
}
.cid-t6tbH3NUJO .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-t6tbH3NUJO .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-t6tbH3NUJO .card {
    padding: 0;
  }
}
.cid-t6tbH3NUJO .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-t6tbH3NUJO .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-t6tbH3NUJO .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-t6tbH3NUJO .card-text {
  color: #555555;
  line-height: 1.5;
  text-align: justify;
}
.cid-t6tbH3NUJO .mbr-iconfont {
  font-size: 25px;
  color: #0079ae;
}
.cid-t6tbH3NUJO .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-t6tbH3NUJO .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-t6tbH3NUJO .card-box {
    text-align: center;
  }
}
.cid-t6tbH3NUJO .mbr-section-title {
  text-align: justify;
  line-height: 1.5;
}
.cid-t6tbH3NUJO .card-title {
  color: #a89c77;
}
.cid-t6n6aEJ3rW {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/pngegg-42-1556x1071.webp");
}
.cid-t6n6aEJ3rW .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-t6n6aEJ3rW .row {
    text-align: center!important;
  }
}
.cid-t6n6aEJ3rW .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-t6n6aEJ3rW .mbr-section-title {
    text-align: center;
  }
}
.cid-t6n6aEJ3rW .mbr-text {
  color: #000000;
  margin-top: 20px;
}
.cid-t6n6aEJ3rW .mbr-text a:hover {
  text-decoration: underline;
}
.cid-t6n6aEJ3rW .mbr-section-btn {
  margin-top: 20px;
}
.cid-t6n6aEJ3rW .mbr-section-btn .btn {
  border-radius: 50px;
}
@media (max-width: 575px) {
  .cid-t6n6aEJ3rW .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6n6aEJ3rW .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6n6aEJ3rW .mbr-section-title,
.cid-t6n6aEJ3rW .mbr-section-btn {
  color: #0079ae;
}
.cid-tsNPoJ2FyE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsNPoJ2FyE .row {
  flex-direction: row-reverse;
}
.cid-tsNPoJ2FyE .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tsNPoJ2FyE .row {
    padding-bottom: 40px;
  }
}
.cid-tsNPoJ2FyE .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-tsNPoJ2FyE .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-tsNPoJ2FyE .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tsNPoJ2FyE .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tsNPoJ2FyE .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tsNPoJ2FyE .text-container {
    text-align: center!important;
  }
}
.cid-tsNPoJ2FyE .mbr-section-title {
  color: #0079ae;
}
.cid-tsNPoJ2FyE .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-tsNPoJ2FyE .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-tsNPoJ2FyE .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tsNPoJ2FyE .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tsNPoJ2FyE .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-tsNPoJ2FyE .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-tsNPoJ2FyE .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-tsNPoJ2FyE .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tsNPoJ2FyE .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tsNPoJ2FyE .col-video .mbr-media img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-tsNPoJ2FyE .col-video .mbr-media img {
    height: auto;
  }
}
.cid-tsNPoJ2FyE .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tsNPoJ2FyE .mbr-media {
  position: relative;
}
.cid-tsNPoJ2FyE .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tsNPoJ2FyE .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tsNPoJ2FyE .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tsNPoJ2FyE .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tsNPoJ2FyE .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tsNPoJ2FyE .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tsNPoJ2FyE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsNPoJ2FyE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsNPoJ2FyE .mbr-section-subtitle,
.cid-tsNPoJ2FyE .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t6n6aGmCAI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-t6n6aGmCAI img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-t6n6aGmCAI .si {
  width: 100%;
}
.cid-t6n6aGmCAI .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-t6n6aGmCAI .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-t6n6aGmCAI .subtitle {
  color: #ffffff;
}
.cid-t6n6aGmCAI .text,
.cid-t6n6aGmCAI .si {
  text-align: center;
}
.cid-t6n6aGmCAI .copyright {
  padding-top: 120px;
}
.cid-t6tu8rmttA.popup-builder {
  background-color: #ffffff;
}
.cid-t6tu8rmttA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t6tu8rmttA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t6tu8rmttA .modal-content,
.cid-t6tu8rmttA .modal-dialog {
  height: auto;
}
.cid-t6tu8rmttA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t6tu8rmttA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t6tu8rmttA .form-wrapper .mbr-form .form-group,
  .cid-t6tu8rmttA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t6tu8rmttA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t6tu8rmttA .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t6tu8rmttA .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-t6tu8rmttA .pt-0 {
  padding-top: 0 !important;
}
.cid-t6tu8rmttA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t6tu8rmttA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t6tu8rmttA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t6tu8rmttA .modal-open {
  overflow: hidden;
}
.cid-t6tu8rmttA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t6tu8rmttA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t6tu8rmttA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t6tu8rmttA .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t6tu8rmttA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t6tu8rmttA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t6tu8rmttA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t6tu8rmttA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t6tu8rmttA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t6tu8rmttA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t6tu8rmttA .modal-backdrop.fade {
  opacity: 0;
}
.cid-t6tu8rmttA .modal-backdrop.show {
  opacity: .5;
}
.cid-t6tu8rmttA .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t6tu8rmttA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t6tu8rmttA .modal-header {
    padding: 1rem;
  }
}
.cid-t6tu8rmttA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t6tu8rmttA .modal-header .close svg {
  fill: #353535;
}
.cid-t6tu8rmttA .modal-header .close:hover {
  opacity: 1;
}
.cid-t6tu8rmttA .modal-header .close:focus {
  outline: none;
}
.cid-t6tu8rmttA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-t6tu8rmttA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t6tu8rmttA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6tu8rmttA .modal-body {
    padding: 1rem;
  }
}
.cid-t6tu8rmttA .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6tu8rmttA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6tu8rmttA .modal-footer {
    padding: 1rem;
  }
}
.cid-t6tu8rmttA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t6tu8rmttA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t6tu8rmttA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t6tu8rmttA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t6tu8rmttA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t6tu8rmttA .modal-lg,
  .cid-t6tu8rmttA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t6tu8rmttA .modal-xl {
    max-width: 1140px;
  }
}
.cid-t6tu8rmttA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t6tu8rmttA .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t6tu8rmttA .form-group {
  margin-bottom: 1rem;
}
.cid-t6tu8rmttA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t6tu8rmttA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t6tu8rmttA .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t6tu8rmttA .mbr-section-btn {
  margin: 0;
}
.cid-t6tu8rmttA .mbr-section-btn .btn {
  margin: 0;
}
.cid-txfrDOIKcu.popup-builder {
  background-color: #ffffff;
}
.cid-txfrDOIKcu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txfrDOIKcu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txfrDOIKcu .modal-content,
.cid-txfrDOIKcu .modal-dialog {
  height: auto;
}
.cid-txfrDOIKcu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txfrDOIKcu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txfrDOIKcu .form-wrapper .mbr-form .form-group,
  .cid-txfrDOIKcu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txfrDOIKcu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txfrDOIKcu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txfrDOIKcu .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txfrDOIKcu .pt-0 {
  padding-top: 0 !important;
}
.cid-txfrDOIKcu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txfrDOIKcu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txfrDOIKcu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txfrDOIKcu .modal-open {
  overflow: hidden;
}
.cid-txfrDOIKcu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txfrDOIKcu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txfrDOIKcu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txfrDOIKcu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txfrDOIKcu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txfrDOIKcu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txfrDOIKcu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txfrDOIKcu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txfrDOIKcu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txfrDOIKcu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txfrDOIKcu .modal-backdrop.fade {
  opacity: 0;
}
.cid-txfrDOIKcu .modal-backdrop.show {
  opacity: .5;
}
.cid-txfrDOIKcu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txfrDOIKcu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOIKcu .modal-header {
    padding: 1rem;
  }
}
.cid-txfrDOIKcu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txfrDOIKcu .modal-header .close svg {
  fill: #353535;
}
.cid-txfrDOIKcu .modal-header .close:hover {
  opacity: 1;
}
.cid-txfrDOIKcu .modal-header .close:focus {
  outline: none;
}
.cid-txfrDOIKcu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txfrDOIKcu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txfrDOIKcu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOIKcu .modal-body {
    padding: 1rem;
  }
}
.cid-txfrDOIKcu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txfrDOIKcu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOIKcu .modal-footer {
    padding: 1rem;
  }
}
.cid-txfrDOIKcu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txfrDOIKcu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txfrDOIKcu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txfrDOIKcu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txfrDOIKcu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txfrDOIKcu .modal-lg,
  .cid-txfrDOIKcu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txfrDOIKcu .modal-xl {
    max-width: 1140px;
  }
}
.cid-txfrDOIKcu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txfrDOIKcu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txfrDOIKcu .form-group {
  margin-bottom: 1rem;
}
.cid-txfrDOIKcu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txfrDOIKcu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txfrDOIKcu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txfrDOIKcu .mbr-section-btn {
  margin: 0;
}
.cid-txfrDOIKcu .mbr-section-btn .btn {
  margin: 0;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tt0BS9Jk0P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/slider-2-pic-eyedeas-international-bpo-philippines-1920x1280.webp");
}
.cid-tt0BS9Jk0P .wrapper {
  padding: 70px 45px 70px 45px;
  background-color: #0671a1;
}
@media (max-width: 768px) {
  .cid-tt0BS9Jk0P .wrapper {
    padding: 20px;
  }
}
.cid-tt0BS9Jk0P .mbr-section-title {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tt0BS9Jk0P .container {
    padding: 60px;
  }
}
.cid-tt0BS9Jk0P .mbr-section-btn {
  width: 100%;
  display: inline-block;
}
.cid-tt0BS9Jk0P .btn {
  display: block;
}
.cid-tt0BS9Jk0P .mbr-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tt0BS9Jk0P .ico-section {
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .cid-tt0BS9Jk0P .ico-section {
    flex-wrap: wrap;
  }
}
.cid-tt0BS9Jk0P .img {
  margin: 0 20px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tt0BS9Jk0P .img img {
  object-fit: contain;
}
.cid-tt0BS9Jk0P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt0BS9Jk0P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6n6GpZ3h9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pexels-photomix-company-887751.webp");
}
.cid-t6n6GpZ3h9 .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-t6n6GpZ3h9 .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-t6n6GpZ3h9 .row {
    text-align: center!important;
  }
}
.cid-t6n6GpZ3h9 .label-container {
  width: 100%;
}
.cid-t6n6GpZ3h9 .label-text {
  color: #4BFDB1;
  margin-bottom: 0;
}
.cid-t6n6GpZ3h9 .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-t6n6GpZ3h9 .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-t6n6GpZ3h9 .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-t6n6GpZ3h9 .mbr-text {
  color: #64040b;
  opacity: 0.5;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-t6n6GpZ3h9 .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-t6n6GpZ3h9 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6n6GpZ3h9 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6n6GpZ3h9 .mbr-section-title,
.cid-t6n6GpZ3h9 .mbr-section-btn {
  color: #0079ae;
}
.cid-t6xIEYyvRP {
  padding-top: 135px;
  padding-bottom: 105px;
  position: relative;
  background-color: #ffffff;
}
.cid-t6xIEYyvRP .mbr-section-title {
  color: #06182d;
}
.cid-t6xIEYyvRP .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #0079ae;
  background: linear-gradient(#0079ae 0%, #999999 69%, #0079ae 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-t6xIEYyvRP .mbr-section-subtitle {
  color: #06182d;
}
.cid-t6xIEYyvRP .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-t6xIEYyvRP .mbr-text {
  color: #8160ff;
  font-weight: 300;
}
.cid-t6xIEYyvRP .title-text {
  margin-bottom: 70px;
}
.cid-t6xIEYyvRP .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-t6xIEYyvRP .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-t6xIEYyvRP .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-t6xIEYyvRP .title-text .mbr-section-title {
  color: #0628b4;
}
.cid-t6xIEYyvRP .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-t6xIEYyvRP .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-t6xIEYyvRP .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-t6xIEYyvRP .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #0079ae;
}
.cid-t6xIEYyvRP .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-t6xIEYyvRP .p-4 {
  padding: 1rem 0 !important;
}
.cid-t6xIEYyvRP .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-t6xIEYyvRP .mbri-arrow-down:before {
  content: "\e960";
}
.cid-t6xIEYyvRP .mbri-arrow-up:before {
  content: "\e960";
}
.cid-t6xIEYyvRP .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-t6xIEYyvRP .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-t6xIEYyvRP .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-t6xIEYyvRP .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-t6xIEYyvRP .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-t6xIEYyvRP .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #0099ff;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title .toggle-icon:before,
.cid-t6xIEYyvRP .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-t6xIEYyvRP .card .panel-body {
  padding: 14px 20px;
}
.cid-t6xIEYyvRP .card .panel-body p {
  color: #8160ff;
  line-height: 1.5;
}
.cid-t6xIEYyvRP .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-t6xIEYyvRP .card .panel-body p {
  color: #000000;
  text-align: justify;
}
.cid-t6xIEYyvRP .title-text .mbr-section-title {
  color: #0079ae;
}
.cid-t6xIEYyvRP .card .card-header a.panel-title h4 {
  color: #0079ae;
}
.cid-t6xEWbgs4k {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/header-band-5-1280x400.webp");
}
.cid-t6xEWbgs4k .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-t6xEWbgs4k .row {
    text-align: center!important;
  }
}
.cid-t6xEWbgs4k .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-t6xEWbgs4k .mbr-section-title {
    text-align: center;
  }
}
.cid-t6xEWbgs4k .mbr-text {
  color: #000000;
  margin-top: 20px;
}
.cid-t6xEWbgs4k .mbr-text a:hover {
  text-decoration: underline;
}
.cid-t6xEWbgs4k .mbr-section-btn {
  margin-top: 20px;
}
.cid-t6xEWbgs4k .mbr-section-btn .btn {
  border-radius: 50px;
}
@media (max-width: 575px) {
  .cid-t6xEWbgs4k .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6xEWbgs4k .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6xEWbgs4k .mbr-section-title,
.cid-t6xEWbgs4k .mbr-section-btn {
  color: #0079ae;
}
.cid-t6xEXuwGu6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6xEXuwGu6 .row {
  flex-direction: row-reverse;
}
.cid-t6xEXuwGu6 .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-t6xEXuwGu6 .row {
    padding-bottom: 40px;
  }
}
.cid-t6xEXuwGu6 .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-t6xEXuwGu6 .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-t6xEXuwGu6 .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-t6xEXuwGu6 .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-t6xEXuwGu6 .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-t6xEXuwGu6 .text-container {
    text-align: center!important;
  }
}
.cid-t6xEXuwGu6 .mbr-section-title {
  color: #0079ae;
}
.cid-t6xEXuwGu6 .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-t6xEXuwGu6 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-t6xEXuwGu6 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6xEXuwGu6 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6xEXuwGu6 .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-t6xEXuwGu6 .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-t6xEXuwGu6 .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-t6xEXuwGu6 .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-t6xEXuwGu6 .col-video .mbr-media img {
  height: 600px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-t6xEXuwGu6 .col-video .mbr-media img {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-t6xEXuwGu6 .col-video .mbr-media img {
    height: auto;
  }
}
.cid-t6xEXuwGu6 .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-t6xEXuwGu6 .mbr-media {
  position: relative;
}
.cid-t6xEXuwGu6 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t6xEXuwGu6 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-t6xEXuwGu6 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-t6xEXuwGu6 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t6xEXuwGu6 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t6xEXuwGu6 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t6xEXuwGu6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6xEXuwGu6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6xEXuwGu6 .mbr-section-subtitle,
.cid-t6xEXuwGu6 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t6n6GuxojD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-t6n6GuxojD img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-t6n6GuxojD .si {
  width: 100%;
}
.cid-t6n6GuxojD .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-t6n6GuxojD .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-t6n6GuxojD .subtitle {
  color: #ffffff;
}
.cid-t6n6GuxojD .text,
.cid-t6n6GuxojD .si {
  text-align: center;
}
.cid-t6n6GuxojD .copyright {
  padding-top: 120px;
}
.cid-txfrDOI873.popup-builder {
  background-color: #ffffff;
}
.cid-txfrDOI873.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txfrDOI873.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txfrDOI873 .modal-content,
.cid-txfrDOI873 .modal-dialog {
  height: auto;
}
.cid-txfrDOI873 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txfrDOI873 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txfrDOI873 .form-wrapper .mbr-form .form-group,
  .cid-txfrDOI873 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txfrDOI873 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txfrDOI873 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txfrDOI873 .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txfrDOI873 .pt-0 {
  padding-top: 0 !important;
}
.cid-txfrDOI873 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txfrDOI873 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txfrDOI873 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txfrDOI873 .modal-open {
  overflow: hidden;
}
.cid-txfrDOI873 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txfrDOI873 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txfrDOI873 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txfrDOI873 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txfrDOI873 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txfrDOI873 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txfrDOI873 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txfrDOI873 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txfrDOI873 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txfrDOI873 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txfrDOI873 .modal-backdrop.fade {
  opacity: 0;
}
.cid-txfrDOI873 .modal-backdrop.show {
  opacity: .5;
}
.cid-txfrDOI873 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txfrDOI873 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOI873 .modal-header {
    padding: 1rem;
  }
}
.cid-txfrDOI873 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txfrDOI873 .modal-header .close svg {
  fill: #353535;
}
.cid-txfrDOI873 .modal-header .close:hover {
  opacity: 1;
}
.cid-txfrDOI873 .modal-header .close:focus {
  outline: none;
}
.cid-txfrDOI873 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txfrDOI873 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txfrDOI873 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOI873 .modal-body {
    padding: 1rem;
  }
}
.cid-txfrDOI873 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txfrDOI873 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOI873 .modal-footer {
    padding: 1rem;
  }
}
.cid-txfrDOI873 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txfrDOI873 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txfrDOI873 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txfrDOI873 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txfrDOI873 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txfrDOI873 .modal-lg,
  .cid-txfrDOI873 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txfrDOI873 .modal-xl {
    max-width: 1140px;
  }
}
.cid-txfrDOI873 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txfrDOI873 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txfrDOI873 .form-group {
  margin-bottom: 1rem;
}
.cid-txfrDOI873 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txfrDOI873 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txfrDOI873 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txfrDOI873 .mbr-section-btn {
  margin: 0;
}
.cid-txfrDOI873 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tt0BVbtY84 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/slider-2-pic-eyedeas-international-bpo-philippines-1920x1280.webp");
}
.cid-tt0BVbtY84 .wrapper {
  padding: 70px 45px 70px 45px;
  background-color: #0671a1;
}
@media (max-width: 768px) {
  .cid-tt0BVbtY84 .wrapper {
    padding: 20px;
  }
}
.cid-tt0BVbtY84 .mbr-section-title {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tt0BVbtY84 .container {
    padding: 60px;
  }
}
.cid-tt0BVbtY84 .mbr-section-btn {
  width: 100%;
  display: inline-block;
}
.cid-tt0BVbtY84 .btn {
  display: block;
}
.cid-tt0BVbtY84 .mbr-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tt0BVbtY84 .ico-section {
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .cid-tt0BVbtY84 .ico-section {
    flex-wrap: wrap;
  }
}
.cid-tt0BVbtY84 .img {
  margin: 0 20px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tt0BVbtY84 .img img {
  object-fit: contain;
}
.cid-tt0BVbtY84 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt0BVbtY84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6n6XY7zTC {
  background-image: url("../../../assets/images/quote-header-2-1280x853.webp");
}
.cid-t6n6XY7zTC .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-t6n6XY7zTC .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-t6n6XY7zTC .row {
    text-align: center!important;
  }
}
.cid-t6n6XY7zTC .label-container {
  width: 100%;
}
.cid-t6n6XY7zTC .label-text {
  color: #ffca39;
  margin-bottom: 0;
}
.cid-t6n6XY7zTC .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-t6n6XY7zTC .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-t6n6XY7zTC .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-t6n6XY7zTC .mbr-text {
  color: #64040b;
  opacity: 1.0;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-t6n6XY7zTC .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-t6n6XY7zTC .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6n6XY7zTC .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6n6XY7zTC .mbr-section-title,
.cid-t6n6XY7zTC .mbr-section-btn {
  color: #86dbff;
}
.cid-t6rFbcN15c {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-t6rFbcN15c .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t6rFbcN15c H3 {
  color: #0079ae;
}
.cid-t6rFbcN15c H5 {
  color: #0079ae;
}
.cid-t6n6Y28y7s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-t6n6Y28y7s img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-t6n6Y28y7s .si {
  width: 100%;
}
.cid-t6n6Y28y7s .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-t6n6Y28y7s .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-t6n6Y28y7s .subtitle {
  color: #ffffff;
}
.cid-t6n6Y28y7s .text,
.cid-t6n6Y28y7s .si {
  text-align: center;
}
.cid-t6n6Y28y7s .copyright {
  padding-top: 120px;
}
.cid-txfrDOJteY.popup-builder {
  background-color: #ffffff;
}
.cid-txfrDOJteY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txfrDOJteY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txfrDOJteY .modal-content,
.cid-txfrDOJteY .modal-dialog {
  height: auto;
}
.cid-txfrDOJteY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txfrDOJteY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txfrDOJteY .form-wrapper .mbr-form .form-group,
  .cid-txfrDOJteY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txfrDOJteY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txfrDOJteY .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txfrDOJteY .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txfrDOJteY .pt-0 {
  padding-top: 0 !important;
}
.cid-txfrDOJteY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txfrDOJteY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txfrDOJteY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txfrDOJteY .modal-open {
  overflow: hidden;
}
.cid-txfrDOJteY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txfrDOJteY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txfrDOJteY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txfrDOJteY .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txfrDOJteY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txfrDOJteY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txfrDOJteY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txfrDOJteY .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txfrDOJteY .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txfrDOJteY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txfrDOJteY .modal-backdrop.fade {
  opacity: 0;
}
.cid-txfrDOJteY .modal-backdrop.show {
  opacity: .5;
}
.cid-txfrDOJteY .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txfrDOJteY .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOJteY .modal-header {
    padding: 1rem;
  }
}
.cid-txfrDOJteY .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txfrDOJteY .modal-header .close svg {
  fill: #353535;
}
.cid-txfrDOJteY .modal-header .close:hover {
  opacity: 1;
}
.cid-txfrDOJteY .modal-header .close:focus {
  outline: none;
}
.cid-txfrDOJteY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txfrDOJteY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txfrDOJteY .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOJteY .modal-body {
    padding: 1rem;
  }
}
.cid-txfrDOJteY .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txfrDOJteY .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOJteY .modal-footer {
    padding: 1rem;
  }
}
.cid-txfrDOJteY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txfrDOJteY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txfrDOJteY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txfrDOJteY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txfrDOJteY .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txfrDOJteY .modal-lg,
  .cid-txfrDOJteY .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txfrDOJteY .modal-xl {
    max-width: 1140px;
  }
}
.cid-txfrDOJteY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txfrDOJteY .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txfrDOJteY .form-group {
  margin-bottom: 1rem;
}
.cid-txfrDOJteY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txfrDOJteY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txfrDOJteY .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txfrDOJteY .mbr-section-btn {
  margin: 0;
}
.cid-txfrDOJteY .mbr-section-btn .btn {
  margin: 0;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tt0BZUXVWq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/slider-2-pic-eyedeas-international-bpo-philippines-1920x1280.webp");
}
.cid-tt0BZUXVWq .wrapper {
  padding: 70px 45px 70px 45px;
  background-color: #0671a1;
}
@media (max-width: 768px) {
  .cid-tt0BZUXVWq .wrapper {
    padding: 20px;
  }
}
.cid-tt0BZUXVWq .mbr-section-title {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tt0BZUXVWq .container {
    padding: 60px;
  }
}
.cid-tt0BZUXVWq .mbr-section-btn {
  width: 100%;
  display: inline-block;
}
.cid-tt0BZUXVWq .btn {
  display: block;
}
.cid-tt0BZUXVWq .mbr-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tt0BZUXVWq .ico-section {
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .cid-tt0BZUXVWq .ico-section {
    flex-wrap: wrap;
  }
}
.cid-tt0BZUXVWq .img {
  margin: 0 20px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tt0BZUXVWq .img img {
  object-fit: contain;
}
.cid-tt0BZUXVWq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt0BZUXVWq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6n7rMq6p8 {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/contact-header-7-1280x853.webp");
}
.cid-t6n7rMq6p8 .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-t6n7rMq6p8 .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-t6n7rMq6p8 .row {
    text-align: center!important;
  }
}
.cid-t6n7rMq6p8 .label-container {
  width: 100%;
}
.cid-t6n7rMq6p8 .label-text {
  color: #4BFDB1;
  margin-bottom: 0;
}
.cid-t6n7rMq6p8 .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-t6n7rMq6p8 .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-t6n7rMq6p8 .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-t6n7rMq6p8 .mbr-text {
  color: #0079ae;
  opacity: 1.0;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-t6n7rMq6p8 .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-t6n7rMq6p8 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6n7rMq6p8 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6n7rMq6p8 .mbr-section-title,
.cid-t6n7rMq6p8 .mbr-section-btn {
  color: #0671a1;
}
.cid-t6xp9wEnvM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #0079ae;
  background: linear-gradient(180deg, #0079ae, #ffffff);
}
@media (max-width: 575px) {
  .cid-t6xp9wEnvM .row {
    text-align: center!important;
  }
}
.cid-t6xp9wEnvM .mbr-section-title {
  color: #ffffff;
}
.cid-t6xp9wEnvM .opacity-text {
  opacity: 0.5;
  font-weight: inherit;
}
.cid-t6xp9wEnvM .mbr-text {
  color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t6xp9wEnvM .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6xp9wEnvM .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6xp9wEnvM .mbr-section-title,
.cid-t6xp9wEnvM .mbr-section-btn {
  color: #ffffff;
}
#custom-html-6u {
  /* Type valid CSS here */
}
#custom-html-6u div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6u p {
  font-size: 60px;
  color: #777;
}
.cid-tsNQJxVT7Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsNQJxVT7Z .row {
  flex-direction: row-reverse;
}
.cid-tsNQJxVT7Z .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tsNQJxVT7Z .row {
    padding-bottom: 40px;
  }
}
.cid-tsNQJxVT7Z .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-tsNQJxVT7Z .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-tsNQJxVT7Z .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tsNQJxVT7Z .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tsNQJxVT7Z .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tsNQJxVT7Z .text-container {
    text-align: center!important;
  }
}
.cid-tsNQJxVT7Z .mbr-section-title {
  color: #0079ae;
}
.cid-tsNQJxVT7Z .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-tsNQJxVT7Z .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-tsNQJxVT7Z .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tsNQJxVT7Z .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tsNQJxVT7Z .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-tsNQJxVT7Z .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-tsNQJxVT7Z .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-tsNQJxVT7Z .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tsNQJxVT7Z .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tsNQJxVT7Z .col-video .mbr-media img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-tsNQJxVT7Z .col-video .mbr-media img {
    height: auto;
  }
}
.cid-tsNQJxVT7Z .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tsNQJxVT7Z .mbr-media {
  position: relative;
}
.cid-tsNQJxVT7Z .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tsNQJxVT7Z .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tsNQJxVT7Z .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tsNQJxVT7Z .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tsNQJxVT7Z .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tsNQJxVT7Z .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tsNQJxVT7Z .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsNQJxVT7Z .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsNQJxVT7Z .mbr-section-subtitle,
.cid-tsNQJxVT7Z .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t6n7rRwyLg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-t6n7rRwyLg img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-t6n7rRwyLg .si {
  width: 100%;
}
.cid-t6n7rRwyLg .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-t6n7rRwyLg .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-t6n7rRwyLg .subtitle {
  color: #ffffff;
}
.cid-t6n7rRwyLg .text,
.cid-t6n7rRwyLg .si {
  text-align: center;
}
.cid-t6n7rRwyLg .copyright {
  padding-top: 120px;
}
.cid-txfrDOJBJC.popup-builder {
  background-color: #ffffff;
}
.cid-txfrDOJBJC.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txfrDOJBJC.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txfrDOJBJC .modal-content,
.cid-txfrDOJBJC .modal-dialog {
  height: auto;
}
.cid-txfrDOJBJC .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txfrDOJBJC .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txfrDOJBJC .form-wrapper .mbr-form .form-group,
  .cid-txfrDOJBJC .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txfrDOJBJC .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txfrDOJBJC .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txfrDOJBJC .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txfrDOJBJC .pt-0 {
  padding-top: 0 !important;
}
.cid-txfrDOJBJC .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txfrDOJBJC .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txfrDOJBJC .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txfrDOJBJC .modal-open {
  overflow: hidden;
}
.cid-txfrDOJBJC .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txfrDOJBJC .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txfrDOJBJC .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txfrDOJBJC .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txfrDOJBJC .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txfrDOJBJC .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txfrDOJBJC .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txfrDOJBJC .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txfrDOJBJC .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txfrDOJBJC .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txfrDOJBJC .modal-backdrop.fade {
  opacity: 0;
}
.cid-txfrDOJBJC .modal-backdrop.show {
  opacity: .5;
}
.cid-txfrDOJBJC .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txfrDOJBJC .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOJBJC .modal-header {
    padding: 1rem;
  }
}
.cid-txfrDOJBJC .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txfrDOJBJC .modal-header .close svg {
  fill: #353535;
}
.cid-txfrDOJBJC .modal-header .close:hover {
  opacity: 1;
}
.cid-txfrDOJBJC .modal-header .close:focus {
  outline: none;
}
.cid-txfrDOJBJC .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txfrDOJBJC .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txfrDOJBJC .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOJBJC .modal-body {
    padding: 1rem;
  }
}
.cid-txfrDOJBJC .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txfrDOJBJC .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOJBJC .modal-footer {
    padding: 1rem;
  }
}
.cid-txfrDOJBJC .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txfrDOJBJC .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txfrDOJBJC .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txfrDOJBJC .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txfrDOJBJC .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txfrDOJBJC .modal-lg,
  .cid-txfrDOJBJC .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txfrDOJBJC .modal-xl {
    max-width: 1140px;
  }
}
.cid-txfrDOJBJC .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txfrDOJBJC .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txfrDOJBJC .form-group {
  margin-bottom: 1rem;
}
.cid-txfrDOJBJC .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txfrDOJBJC .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txfrDOJBJC .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txfrDOJBJC .mbr-section-btn {
  margin: 0;
}
.cid-txfrDOJBJC .mbr-section-btn .btn {
  margin: 0;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-t6yCi2xgxn {
  background-image: url("../../../assets/images/thankyou-2-1280x853.webp");
}
.cid-t6yCi2xgxn .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-t6yCi2xgxn .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-t6yCi2xgxn .row {
    text-align: center!important;
  }
}
.cid-t6yCi2xgxn .label-container {
  width: 100%;
}
.cid-t6yCi2xgxn .label-text {
  color: #4BFDB1;
  margin-bottom: 0;
}
.cid-t6yCi2xgxn .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-t6yCi2xgxn .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-t6yCi2xgxn .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-t6yCi2xgxn .mbr-text {
  color: #0079ae;
  opacity: 1.0;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-t6yCi2xgxn .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-t6yCi2xgxn .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6yCi2xgxn .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6yCi2xgxn .mbr-section-title,
.cid-t6yCi2xgxn .mbr-section-btn {
  color: #ffbb00;
}
.cid-t6yCi3v8K6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #0079ae;
  background: linear-gradient(180deg, #0079ae, #ffffff);
}
@media (max-width: 575px) {
  .cid-t6yCi3v8K6 .row {
    text-align: center!important;
  }
}
.cid-t6yCi3v8K6 .mbr-section-title {
  color: #ffffff;
}
.cid-t6yCi3v8K6 .opacity-text {
  opacity: 0.5;
  font-weight: inherit;
}
.cid-t6yCi3v8K6 .mbr-text {
  color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t6yCi3v8K6 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6yCi3v8K6 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6yCi3v8K6 .mbr-section-title,
.cid-t6yCi3v8K6 .mbr-section-btn {
  color: #ffffff;
}
.cid-tt0CS2eSAf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/slider-2-pic-eyedeas-international-bpo-philippines-1920x1280.webp");
}
.cid-tt0CS2eSAf .wrapper {
  padding: 70px 45px 70px 45px;
  background-color: #0671a1;
}
@media (max-width: 768px) {
  .cid-tt0CS2eSAf .wrapper {
    padding: 20px;
  }
}
.cid-tt0CS2eSAf .mbr-section-title {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tt0CS2eSAf .container {
    padding: 60px;
  }
}
.cid-tt0CS2eSAf .mbr-section-btn {
  width: 100%;
  display: inline-block;
}
.cid-tt0CS2eSAf .btn {
  display: block;
}
.cid-tt0CS2eSAf .mbr-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tt0CS2eSAf .ico-section {
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .cid-tt0CS2eSAf .ico-section {
    flex-wrap: wrap;
  }
}
.cid-tt0CS2eSAf .img {
  margin: 0 20px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tt0CS2eSAf .img img {
  object-fit: contain;
}
.cid-tt0CS2eSAf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt0CS2eSAf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6yCi6kYm0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-t6yCi6kYm0 img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-t6yCi6kYm0 .si {
  width: 100%;
}
.cid-t6yCi6kYm0 .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-t6yCi6kYm0 .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-t6yCi6kYm0 .subtitle {
  color: #ffffff;
}
.cid-t6yCi6kYm0 .text,
.cid-t6yCi6kYm0 .si {
  text-align: center;
}
.cid-t6yCi6kYm0 .copyright {
  padding-top: 120px;
}
.cid-txfrDOKC35.popup-builder {
  background-color: #ffffff;
}
.cid-txfrDOKC35.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txfrDOKC35.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txfrDOKC35 .modal-content,
.cid-txfrDOKC35 .modal-dialog {
  height: auto;
}
.cid-txfrDOKC35 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txfrDOKC35 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txfrDOKC35 .form-wrapper .mbr-form .form-group,
  .cid-txfrDOKC35 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txfrDOKC35 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txfrDOKC35 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txfrDOKC35 .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txfrDOKC35 .pt-0 {
  padding-top: 0 !important;
}
.cid-txfrDOKC35 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txfrDOKC35 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txfrDOKC35 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txfrDOKC35 .modal-open {
  overflow: hidden;
}
.cid-txfrDOKC35 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txfrDOKC35 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txfrDOKC35 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txfrDOKC35 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txfrDOKC35 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txfrDOKC35 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txfrDOKC35 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txfrDOKC35 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txfrDOKC35 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txfrDOKC35 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txfrDOKC35 .modal-backdrop.fade {
  opacity: 0;
}
.cid-txfrDOKC35 .modal-backdrop.show {
  opacity: .5;
}
.cid-txfrDOKC35 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txfrDOKC35 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOKC35 .modal-header {
    padding: 1rem;
  }
}
.cid-txfrDOKC35 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txfrDOKC35 .modal-header .close svg {
  fill: #353535;
}
.cid-txfrDOKC35 .modal-header .close:hover {
  opacity: 1;
}
.cid-txfrDOKC35 .modal-header .close:focus {
  outline: none;
}
.cid-txfrDOKC35 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txfrDOKC35 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txfrDOKC35 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOKC35 .modal-body {
    padding: 1rem;
  }
}
.cid-txfrDOKC35 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txfrDOKC35 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOKC35 .modal-footer {
    padding: 1rem;
  }
}
.cid-txfrDOKC35 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txfrDOKC35 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txfrDOKC35 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txfrDOKC35 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txfrDOKC35 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txfrDOKC35 .modal-lg,
  .cid-txfrDOKC35 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txfrDOKC35 .modal-xl {
    max-width: 1140px;
  }
}
.cid-txfrDOKC35 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txfrDOKC35 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txfrDOKC35 .form-group {
  margin-bottom: 1rem;
}
.cid-txfrDOKC35 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txfrDOKC35 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txfrDOKC35 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txfrDOKC35 .mbr-section-btn {
  margin: 0;
}
.cid-txfrDOKC35 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tt0CwUd7rn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/slider-2-pic-eyedeas-international-bpo-philippines-1920x1280.webp");
}
.cid-tt0CwUd7rn .wrapper {
  padding: 70px 45px 70px 45px;
  background-color: #0671a1;
}
@media (max-width: 768px) {
  .cid-tt0CwUd7rn .wrapper {
    padding: 20px;
  }
}
.cid-tt0CwUd7rn .mbr-section-title {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tt0CwUd7rn .container {
    padding: 60px;
  }
}
.cid-tt0CwUd7rn .mbr-section-btn {
  width: 100%;
  display: inline-block;
}
.cid-tt0CwUd7rn .btn {
  display: block;
}
.cid-tt0CwUd7rn .mbr-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tt0CwUd7rn .ico-section {
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .cid-tt0CwUd7rn .ico-section {
    flex-wrap: wrap;
  }
}
.cid-tt0CwUd7rn .img {
  margin: 0 20px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tt0CwUd7rn .img img {
  object-fit: contain;
}
.cid-tt0CwUd7rn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt0CwUd7rn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqfsQQoEXg {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/contact-header-7-1280x853.webp");
}
.cid-tqfsQQoEXg .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-tqfsQQoEXg .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-tqfsQQoEXg .row {
    text-align: center!important;
  }
}
.cid-tqfsQQoEXg .label-container {
  width: 100%;
}
.cid-tqfsQQoEXg .label-text {
  color: #4BFDB1;
  margin-bottom: 0;
}
.cid-tqfsQQoEXg .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-tqfsQQoEXg .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-tqfsQQoEXg .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-tqfsQQoEXg .mbr-text {
  color: #0079ae;
  opacity: 1.0;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-tqfsQQoEXg .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-tqfsQQoEXg .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tqfsQQoEXg .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tqfsQQoEXg .mbr-section-title,
.cid-tqfsQQoEXg .mbr-section-btn {
  color: #7bb6d0;
}
.cid-tqfsQReLWJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #0079ae;
  background: linear-gradient(180deg, #0079ae, #ffffff);
}
@media (max-width: 575px) {
  .cid-tqfsQReLWJ .row {
    text-align: center!important;
  }
}
.cid-tqfsQReLWJ .mbr-section-title {
  color: #ffffff;
}
.cid-tqfsQReLWJ .opacity-text {
  opacity: 0.5;
  font-weight: inherit;
}
.cid-tqfsQReLWJ .mbr-text {
  color: #ffffff;
}
@media (max-width: 575px) {
  .cid-tqfsQReLWJ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tqfsQReLWJ .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tqfuOi3wfL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tqfuOi3wfL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqfuOi3wfL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqfuOi3wfL .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tqfuOi3wfL .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tqfuOi3wfL .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-tqfuOi3wfL .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-tqfuOi3wfL .mbr-section-title {
    text-align: center;
  }
}
.cid-tqfuOi3wfL .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tqfuOi3wfL .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tqfuOi3wfL .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-tqfuOi3wfL .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 991px) {
  .cid-tqfuOi3wfL .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tqfuOi3wfL .item-wrapper {
    padding: 20px;
  }
}
.cid-tqfuOi3wfL .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-tqfuOi3wfL .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-tqfuOi3wfL .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-tqfuOi3wfL .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-tqfuOi3wfL .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-tqfuOi3wfL .item-right {
    flex-basis: 100%;
  }
}
.cid-tqfuOi3wfL .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tqfuOi3wfL .item-img {
    max-width: 250px;
  }
}
.cid-tqfuOi3wfL .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-tqfuOi3wfL .item-img:hover img {
  transform: scale(1.05);
}
.cid-tqfuOi3wfL .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-tqfuOi3wfL .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-tqfuOi3wfL .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-tqfuOi3wfL .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-tqfuOi3wfL .label-text {
  color: #86dbff;
  margin-bottom: 0;
}
.cid-tqfuOi3wfL .card-title {
  color: #e4952d;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-tqfuOi3wfL .card-title {
    margin-bottom: 10px;
  }
}
.cid-tqfuOi3wfL .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-tqfuOi3wfL .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tqfuOi3wfL .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
#custom-html-6v {
  /* Type valid CSS here */
}
#custom-html-6v div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6v p {
  font-size: 60px;
  color: #777;
}
.cid-tqfwBXWUdt.popup-builder {
  background-color: #ffffff;
}
.cid-tqfwBXWUdt.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqfwBXWUdt.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqfwBXWUdt .modal-content,
.cid-tqfwBXWUdt .modal-dialog {
  height: auto;
}
.cid-tqfwBXWUdt .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqfwBXWUdt .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqfwBXWUdt .form-wrapper .mbr-form .form-group,
  .cid-tqfwBXWUdt .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqfwBXWUdt .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqfwBXWUdt .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqfwBXWUdt .mbr-text {
  text-align: justify;
}
.cid-tqfwBXWUdt .pt-0 {
  padding-top: 0 !important;
}
.cid-tqfwBXWUdt .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqfwBXWUdt .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqfwBXWUdt .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqfwBXWUdt .modal-open {
  overflow: hidden;
}
.cid-tqfwBXWUdt .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqfwBXWUdt .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqfwBXWUdt .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqfwBXWUdt .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqfwBXWUdt .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqfwBXWUdt .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqfwBXWUdt .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqfwBXWUdt .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqfwBXWUdt .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqfwBXWUdt .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqfwBXWUdt .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqfwBXWUdt .modal-backdrop.show {
  opacity: .5;
}
.cid-tqfwBXWUdt .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqfwBXWUdt .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqfwBXWUdt .modal-header {
    padding: 1rem;
  }
}
.cid-tqfwBXWUdt .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqfwBXWUdt .modal-header .close svg {
  fill: #353535;
}
.cid-tqfwBXWUdt .modal-header .close:hover {
  opacity: 1;
}
.cid-tqfwBXWUdt .modal-header .close:focus {
  outline: none;
}
.cid-tqfwBXWUdt .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #e4952d;
}
.cid-tqfwBXWUdt .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqfwBXWUdt .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqfwBXWUdt .modal-body {
    padding: 1rem;
  }
}
.cid-tqfwBXWUdt .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqfwBXWUdt .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqfwBXWUdt .modal-footer {
    padding: 1rem;
  }
}
.cid-tqfwBXWUdt .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqfwBXWUdt .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqfwBXWUdt .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqfwBXWUdt .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqfwBXWUdt .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqfwBXWUdt .modal-lg,
  .cid-tqfwBXWUdt .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqfwBXWUdt .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqfwBXWUdt .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqfwBXWUdt .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqfwBXWUdt .form-group {
  margin-bottom: 1rem;
}
.cid-tqfwBXWUdt .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqfwBXWUdt .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqfwBXWUdt .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqfwBXWUdt .mbr-section-btn {
  margin: 0;
}
.cid-tqfwBXWUdt .mbr-section-btn .btn {
  margin: 0;
}
.cid-tqfsQVqvQy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-tqfsQVqvQy img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-tqfsQVqvQy .si {
  width: 100%;
}
.cid-tqfsQVqvQy .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-tqfsQVqvQy .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-tqfsQVqvQy .subtitle {
  color: #ffffff;
}
.cid-tqfsQVqvQy .text,
.cid-tqfsQVqvQy .si {
  text-align: center;
}
.cid-tqfsQVqvQy .copyright {
  padding-top: 120px;
}
.cid-txfrDOKInK.popup-builder {
  background-color: #ffffff;
}
.cid-txfrDOKInK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txfrDOKInK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txfrDOKInK .modal-content,
.cid-txfrDOKInK .modal-dialog {
  height: auto;
}
.cid-txfrDOKInK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txfrDOKInK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txfrDOKInK .form-wrapper .mbr-form .form-group,
  .cid-txfrDOKInK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txfrDOKInK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txfrDOKInK .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txfrDOKInK .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txfrDOKInK .pt-0 {
  padding-top: 0 !important;
}
.cid-txfrDOKInK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txfrDOKInK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txfrDOKInK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txfrDOKInK .modal-open {
  overflow: hidden;
}
.cid-txfrDOKInK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txfrDOKInK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txfrDOKInK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txfrDOKInK .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txfrDOKInK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txfrDOKInK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txfrDOKInK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txfrDOKInK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txfrDOKInK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txfrDOKInK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txfrDOKInK .modal-backdrop.fade {
  opacity: 0;
}
.cid-txfrDOKInK .modal-backdrop.show {
  opacity: .5;
}
.cid-txfrDOKInK .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txfrDOKInK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOKInK .modal-header {
    padding: 1rem;
  }
}
.cid-txfrDOKInK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txfrDOKInK .modal-header .close svg {
  fill: #353535;
}
.cid-txfrDOKInK .modal-header .close:hover {
  opacity: 1;
}
.cid-txfrDOKInK .modal-header .close:focus {
  outline: none;
}
.cid-txfrDOKInK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txfrDOKInK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txfrDOKInK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOKInK .modal-body {
    padding: 1rem;
  }
}
.cid-txfrDOKInK .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txfrDOKInK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOKInK .modal-footer {
    padding: 1rem;
  }
}
.cid-txfrDOKInK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txfrDOKInK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txfrDOKInK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txfrDOKInK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txfrDOKInK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txfrDOKInK .modal-lg,
  .cid-txfrDOKInK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txfrDOKInK .modal-xl {
    max-width: 1140px;
  }
}
.cid-txfrDOKInK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txfrDOKInK .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txfrDOKInK .form-group {
  margin-bottom: 1rem;
}
.cid-txfrDOKInK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txfrDOKInK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txfrDOKInK .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txfrDOKInK .mbr-section-btn {
  margin: 0;
}
.cid-txfrDOKInK .mbr-section-btn .btn {
  margin: 0;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-tsIezfpnz5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/slider-2-pic-eyedeas-international-bpo-philippines-1920x1280.webp");
}
.cid-tsIezfpnz5 .wrapper {
  padding: 70px 45px 70px 45px;
  background-color: #0671a1;
}
@media (max-width: 768px) {
  .cid-tsIezfpnz5 .wrapper {
    padding: 20px;
  }
}
.cid-tsIezfpnz5 .mbr-section-title {
  flex: 1 1 auto;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsIezfpnz5 .container {
    padding: 60px;
  }
}
.cid-tsIezfpnz5 .mbr-section-btn {
  width: 100%;
  display: inline-block;
}
.cid-tsIezfpnz5 .btn {
  display: block;
}
.cid-tsIezfpnz5 .mbr-text {
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tsIezfpnz5 .ico-section {
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .cid-tsIezfpnz5 .ico-section {
    flex-wrap: wrap;
  }
}
.cid-tsIezfpnz5 .img {
  margin: 0 20px;
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tsIezfpnz5 .img img {
  object-fit: contain;
}
.cid-tsIezfpnz5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsIezfpnz5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsq0xaMG2k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-tsq0xaMG2k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsq0xaMG2k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsq0xaMG2k .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-tsq0xaMG2k .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-tsq0xaMG2k .container {
    max-width: 540px;
  }
}
.cid-tsq0xaMG2k .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tsq0xaMG2k .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-tsq0xaMG2k .mbr-section-title {
  color: #b3f8f9;
}
.cid-tsq0xaMG2k .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
.cid-tsq0xaMG2k .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-tsq0xaMG2k .mbr-section-btn {
  margin-top: 25px;
}
.cid-tsIkwJuLTK {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-tsIkwJuLTK .mbr-media {
  position: relative;
}
.cid-tsIkwJuLTK .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-tsIkwJuLTK .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tsIkwJuLTK .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tsIkwJuLTK .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tsIkwJuLTK .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tsIkwJuLTK .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tsIkwJuLTK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsIkwJuLTK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsIkwJuLTK .mbr-section-title {
  color: #0671a1;
}
.cid-tsIkwJuLTK .mbr-section-subtitle {
  text-align: left;
  line-height: 25px;
}
.cid-tqHVtCFjny {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqHVtCFjny .row {
  align-items: center;
}
.cid-tqHVtCFjny .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tqHVtCFjny .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tqHVtCFjny .header-text {
    margin-bottom: 20px;
  }
}
.cid-tqHVtCFjny .mbr-section-title {
  width: 100%;
  color: #0671a1;
  margin-bottom: 8px;
}
.cid-tqHVtCFjny .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-trobW2G5Y7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-trobW2G5Y7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-trobW2G5Y7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trobW2G5Y7 .row {
  justify-content: center;
}
.cid-trobW2G5Y7 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-trobW2G5Y7 .row {
    padding: 0 12px;
  }
}
.cid-trobW2G5Y7 .item-wrap {
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-trobW2G5Y7 .card {
    margin-bottom: 3rem;
  }
}
.cid-trobW2G5Y7 .card:first-child {
  padding-right: 24px;
}
@media (max-width: 992px) {
  .cid-trobW2G5Y7 .card:first-child {
    padding: 0 12px;
  }
}
.cid-trobW2G5Y7 .card:nth-child(2) {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-trobW2G5Y7 .card:nth-child(2) {
    padding: 0 12px;
  }
}
.cid-trobW2G5Y7 .card:last-child {
  padding-left: 24px;
}
@media (max-width: 992px) {
  .cid-trobW2G5Y7 .card:last-child {
    padding: 0 12px;
  }
}
.cid-trobW2G5Y7 .card .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-trobW2G5Y7 .card .mbr-section-title {
    margin-bottom: 2rem;
  }
}
.cid-trobW2G5Y7 .card .mbr-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-trobW2G5Y7 .mbr-section-title {
  color: #ffca39;
}
.cid-trobW2G5Y7 .mbr-text {
  color: #ffffff;
}
.cid-ttyYsvkTHk {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1387.webp");
}
.cid-ttyYsvkTHk .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-ttyYsvkTHk .row {
    text-align: center!important;
  }
}
.cid-ttyYsvkTHk .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-ttyYsvkTHk .mbr-section-title {
    text-align: center;
  }
}
.cid-ttyYsvkTHk .mbr-text {
  color: #575252;
  margin-top: 20px;
  text-align: center;
}
.cid-ttyYsvkTHk .mbr-text a:hover {
  text-decoration: underline;
}
.cid-ttyYsvkTHk .mbr-section-btn {
  margin-top: 20px;
}
.cid-ttyYsvkTHk .mbr-section-btn .btn {
  border-radius: 50px;
}
@media (max-width: 575px) {
  .cid-ttyYsvkTHk .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-ttyYsvkTHk .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-ttyYsvkTHk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttyYsvkTHk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttyYsvkTHk .mbr-section-title,
.cid-ttyYsvkTHk .mbr-section-btn {
  color: #0671a1;
}
.cid-ttyVnh5VYz.popup-builder {
  background-color: #ffffff;
}
.cid-ttyVnh5VYz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ttyVnh5VYz.popup-builder .modal-dialog {
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-ttyVnh5VYz .modal-content,
.cid-ttyVnh5VYz .modal-dialog {
  height: auto;
}
.cid-ttyVnh5VYz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ttyVnh5VYz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ttyVnh5VYz .form-wrapper .mbr-form .form-group,
  .cid-ttyVnh5VYz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ttyVnh5VYz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ttyVnh5VYz .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ttyVnh5VYz .mbr-text {
  text-align: center;
}
.cid-ttyVnh5VYz .pt-0 {
  padding-top: 0 !important;
}
.cid-ttyVnh5VYz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ttyVnh5VYz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ttyVnh5VYz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ttyVnh5VYz .modal-open {
  overflow: hidden;
}
.cid-ttyVnh5VYz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ttyVnh5VYz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ttyVnh5VYz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ttyVnh5VYz .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ttyVnh5VYz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ttyVnh5VYz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ttyVnh5VYz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ttyVnh5VYz .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ttyVnh5VYz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ttyVnh5VYz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ttyVnh5VYz .modal-backdrop.fade {
  opacity: 0;
}
.cid-ttyVnh5VYz .modal-backdrop.show {
  opacity: .5;
}
.cid-ttyVnh5VYz .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ttyVnh5VYz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ttyVnh5VYz .modal-header {
    padding: 1rem;
  }
}
.cid-ttyVnh5VYz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ttyVnh5VYz .modal-header .close svg {
  fill: #353535;
}
.cid-ttyVnh5VYz .modal-header .close:hover {
  opacity: 1;
}
.cid-ttyVnh5VYz .modal-header .close:focus {
  outline: none;
}
.cid-ttyVnh5VYz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ttyVnh5VYz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ttyVnh5VYz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttyVnh5VYz .modal-body {
    padding: 1rem;
  }
}
.cid-ttyVnh5VYz .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ttyVnh5VYz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttyVnh5VYz .modal-footer {
    padding: 1rem;
  }
}
.cid-ttyVnh5VYz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ttyVnh5VYz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ttyVnh5VYz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ttyVnh5VYz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ttyVnh5VYz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ttyVnh5VYz .modal-lg,
  .cid-ttyVnh5VYz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ttyVnh5VYz .modal-xl {
    max-width: 1140px;
  }
}
.cid-ttyVnh5VYz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ttyVnh5VYz .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ttyVnh5VYz .form-group {
  margin-bottom: 1rem;
}
.cid-ttyVnh5VYz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ttyVnh5VYz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ttyVnh5VYz .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ttyVnh5VYz .mbr-section-btn {
  margin: 0;
}
.cid-ttyVnh5VYz .mbr-section-btn .btn {
  margin: 0;
}
.cid-tsMe26BKis {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsMe26BKis .row {
  align-items: center;
}
.cid-tsMe26BKis .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tsMe26BKis .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tsMe26BKis .header-text {
    margin-bottom: 20px;
  }
}
.cid-tsMe26BKis .mbr-section-title {
  width: 100%;
  color: #0671a1;
  margin-bottom: 8px;
}
.cid-tsMe26BKis .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tqHVtEbUiE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tqHVtEbUiE img {
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.cid-tqHVtEbUiE .img-wrapper {
  margin-bottom: 1.8rem;
  transition: all 0.3s ease-in-out;
}
.cid-tqHVtEbUiE .card .img-wrapper {
  overflow: hidden;
}
.cid-tqHVtEbUiE .card:hover {
  cursor: pointer;
}
.cid-tqHVtEbUiE .card:hover img {
  transform: scale(1.05);
}
.cid-tqHVtEbUiE .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
.cid-tqHVtEbUiE .mbr-section-title {
  transition: all 0.5s ease-in-out;
  color: #0671a1;
}
.cid-tqHVtEbUiE .mbr-section-title:hover {
  color: #ad0c15;
}
.cid-tqHVtEbUiE .mbr-section-date {
  color: #999999;
}
.cid-tqHVtEbUiE .mbr-section-text {
  color: #242424;
}
.cid-trofg8I97q {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-trofg8I97q img {
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.cid-trofg8I97q .img-wrapper {
  margin-bottom: 1.8rem;
  transition: all 0.3s ease-in-out;
}
.cid-trofg8I97q .card .img-wrapper {
  overflow: hidden;
}
.cid-trofg8I97q .card:hover {
  cursor: pointer;
}
.cid-trofg8I97q .card:hover img {
  transform: scale(1.05);
}
.cid-trofg8I97q .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
.cid-trofg8I97q .mbr-section-title {
  transition: all 0.5s ease-in-out;
  color: #0671a1;
}
.cid-trofg8I97q .mbr-section-title:hover {
  color: #ad0c15;
}
.cid-trofg8I97q .mbr-section-date {
  color: #999999;
}
.cid-trofg8I97q .mbr-section-text {
  color: #242424;
}
.cid-ttz6cTnkhu {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #edecec;
}
.cid-ttz6cTnkhu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttz6cTnkhu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttz6cTnkhu .row {
  justify-content: left;
}
.cid-ttz6cTnkhu .content-container {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  padding: 40px 30px;
  background-color: #ffffff;
  border: 2px solid #39485d;
  position: relative;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-ttz6cTnkhu .content-container {
    flex-wrap: wrap;
  }
}
.cid-ttz6cTnkhu .text-item {
  width: 50%;
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .cid-ttz6cTnkhu .text-item {
    width: 100%;
  }
}
.cid-ttz6cTnkhu .btn-item {
  width: 50%;
  position: relative;
  z-index: 11;
  padding-left: 40px;
  padding-left: 0;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .cid-ttz6cTnkhu .btn-item {
    width: 100%;
    padding: 0 !important;
    margin-top: 20px;
  }
}
.cid-ttz6cTnkhu .mbr-section-title {
  color: #2B2B2B;
}
@media (max-width: 991px) {
  .cid-ttz6cTnkhu .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ttz6cTnkhu .mbr-section-subtitle {
  color: #2B2B2B;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-ttz6cTnkhu .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-ttz6cTnkhu .mbr-section-btn {
  text-align: left;
}
.cid-ttz6cTnkhu .mbr-section-btn .btn {
  min-width: auto !important;
}
@media (max-width: 991px) {
  .cid-ttz6cTnkhu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ttz6cTnkhu .circle-blur {
  position: absolute;
  top: 40%;
  left: 40%;
  bottom: auto;
  display: block;
  width: 500px;
  height: 500px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(80deg, #ffbb00, #efad7f);
  opacity: .9;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 991px) {
  .cid-ttz6cTnkhu .circle-blur {
    display: none !important;
  }
}
.cid-ttz4YLKYBm.popup-builder {
  background-color: #ffffff;
}
.cid-ttz4YLKYBm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ttz4YLKYBm.popup-builder .modal-dialog {
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-ttz4YLKYBm .modal-content,
.cid-ttz4YLKYBm .modal-dialog {
  height: auto;
}
.cid-ttz4YLKYBm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ttz4YLKYBm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ttz4YLKYBm .form-wrapper .mbr-form .form-group,
  .cid-ttz4YLKYBm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ttz4YLKYBm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ttz4YLKYBm .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ttz4YLKYBm .mbr-text {
  text-align: center;
}
.cid-ttz4YLKYBm .pt-0 {
  padding-top: 0 !important;
}
.cid-ttz4YLKYBm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ttz4YLKYBm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ttz4YLKYBm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ttz4YLKYBm .modal-open {
  overflow: hidden;
}
.cid-ttz4YLKYBm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ttz4YLKYBm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ttz4YLKYBm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ttz4YLKYBm .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ttz4YLKYBm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ttz4YLKYBm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ttz4YLKYBm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ttz4YLKYBm .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ttz4YLKYBm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ttz4YLKYBm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ttz4YLKYBm .modal-backdrop.fade {
  opacity: 0;
}
.cid-ttz4YLKYBm .modal-backdrop.show {
  opacity: .5;
}
.cid-ttz4YLKYBm .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ttz4YLKYBm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ttz4YLKYBm .modal-header {
    padding: 1rem;
  }
}
.cid-ttz4YLKYBm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ttz4YLKYBm .modal-header .close svg {
  fill: #353535;
}
.cid-ttz4YLKYBm .modal-header .close:hover {
  opacity: 1;
}
.cid-ttz4YLKYBm .modal-header .close:focus {
  outline: none;
}
.cid-ttz4YLKYBm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ttz4YLKYBm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ttz4YLKYBm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttz4YLKYBm .modal-body {
    padding: 1rem;
  }
}
.cid-ttz4YLKYBm .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ttz4YLKYBm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttz4YLKYBm .modal-footer {
    padding: 1rem;
  }
}
.cid-ttz4YLKYBm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ttz4YLKYBm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ttz4YLKYBm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ttz4YLKYBm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ttz4YLKYBm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ttz4YLKYBm .modal-lg,
  .cid-ttz4YLKYBm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ttz4YLKYBm .modal-xl {
    max-width: 1140px;
  }
}
.cid-ttz4YLKYBm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ttz4YLKYBm .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ttz4YLKYBm .form-group {
  margin-bottom: 1rem;
}
.cid-ttz4YLKYBm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ttz4YLKYBm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ttz4YLKYBm .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ttz4YLKYBm .mbr-section-btn {
  margin: 0;
}
.cid-ttz4YLKYBm .mbr-section-btn .btn {
  margin: 0;
}
.cid-tsYVbGtPuO .divider-top {
  position: relative;
  padding: 2.5em;
  background: #ffffff;
}
.cid-tsYVbGtPuO .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #181817;
}
.cid-tsYVbGtPuO .divider-top::before,
.cid-tsYVbGtPuO .divider-bottom::before,
.cid-tsYVbGtPuO .divider-top::after,
.cid-tsYVbGtPuO .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-tsYVbGtPuO .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-tsYVbGtPuO .divider-triangles::before {
  top: -50px;
}
.cid-tsYVbGtPuO .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-tsYVbGtPuO .divider-halfcircle::before {
  top: -50px;
}
.cid-tsYVbGtPuO .divider-multitriangles::before,
.cid-tsYVbGtPuO .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-tsYVbGtPuO .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;
}
.cid-tsYV28Ls3c {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tsYV28Ls3c .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tsYV28Ls3c .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tsYV28Ls3c img {
  width: 160px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-tsYV28Ls3c .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tsYV28Ls3c .card-wrapper:hover {
  background: transparent;
}
.cid-tsYV28Ls3c .card-title,
.cid-tsYV28Ls3c .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tsYV28Ls3c .main-title,
.cid-tsYV28Ls3c .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tsYV28Ls3c .card-text {
  color: #bbbbbb;
}
.cid-tsYV28Ls3c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYV28Ls3c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsZyAaOk9i {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-tsZyAaOk9i .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tsZyAaOk9i .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tsZyAaOk9i img {
  width: 160px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-tsZyAaOk9i .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tsZyAaOk9i .card-wrapper:hover {
  background: transparent;
}
.cid-tsZyAaOk9i .card-title,
.cid-tsZyAaOk9i .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tsZyAaOk9i .main-title,
.cid-tsZyAaOk9i .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tsZyAaOk9i .card-text {
  color: #bbbbbb;
}
.cid-tsZyAaOk9i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsZyAaOk9i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tspWD7H5VP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tspWD7H5VP .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tspWD7H5VP .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-tspWD7H5VP .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-tspWD7H5VP .img-bg-container {
    padding: 1rem;
  }
}
.cid-tspWD7H5VP .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/features12.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-tspWD7H5VP .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-tspWD7H5VP .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-tspWD7H5VP .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
}
.cid-tspWD7H5VP .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-tspWD7H5VP .mbr-section-btn {
  margin-top: 1rem;
}
.cid-tqHVtFTyuE {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/header-band-5-1280x400.webp");
}
.cid-tqHVtFTyuE .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-tqHVtFTyuE .row {
    text-align: center!important;
  }
}
.cid-tqHVtFTyuE .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-tqHVtFTyuE .mbr-section-title {
    text-align: center;
  }
}
.cid-tqHVtFTyuE .mbr-text {
  color: #000000;
  margin-top: 20px;
}
.cid-tqHVtFTyuE .mbr-text a:hover {
  text-decoration: underline;
}
.cid-tqHVtFTyuE .mbr-section-btn {
  margin-top: 20px;
}
.cid-tqHVtFTyuE .mbr-section-btn .btn {
  border-radius: 50px;
}
@media (max-width: 575px) {
  .cid-tqHVtFTyuE .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tqHVtFTyuE .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tqHVtFTyuE .mbr-section-title,
.cid-tqHVtFTyuE .mbr-section-btn {
  color: #0079ae;
}
.cid-tqHVtHqjqU {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqHVtHqjqU .row {
  flex-direction: row-reverse;
}
.cid-tqHVtHqjqU .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tqHVtHqjqU .row {
    padding-bottom: 40px;
  }
}
.cid-tqHVtHqjqU .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-tqHVtHqjqU .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-tqHVtHqjqU .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tqHVtHqjqU .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tqHVtHqjqU .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tqHVtHqjqU .text-container {
    text-align: center!important;
  }
}
.cid-tqHVtHqjqU .mbr-section-title {
  color: #0079ae;
}
.cid-tqHVtHqjqU .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-tqHVtHqjqU .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-tqHVtHqjqU .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tqHVtHqjqU .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tqHVtHqjqU .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-tqHVtHqjqU .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-tqHVtHqjqU .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-tqHVtHqjqU .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tqHVtHqjqU .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tqHVtHqjqU .col-video .mbr-media img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-tqHVtHqjqU .col-video .mbr-media img {
    height: auto;
  }
}
.cid-tqHVtHqjqU .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tqHVtHqjqU .mbr-media {
  position: relative;
}
.cid-tqHVtHqjqU .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tqHVtHqjqU .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tqHVtHqjqU .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tqHVtHqjqU .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tqHVtHqjqU .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tqHVtHqjqU .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tqHVtHqjqU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tqHVtHqjqU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tqHVtHqjqU .mbr-section-subtitle,
.cid-tqHVtHqjqU .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tqHVtQHW0V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-tqHVtQHW0V img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-tqHVtQHW0V .si {
  width: 100%;
}
.cid-tqHVtQHW0V .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-tqHVtQHW0V .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-tqHVtQHW0V .subtitle {
  color: #ffffff;
}
.cid-tqHVtQHW0V .text,
.cid-tqHVtQHW0V .si {
  text-align: center;
}
.cid-tqHVtQHW0V .copyright {
  padding-top: 120px;
}
.cid-txfrDOLBSt.popup-builder {
  background-color: #ffffff;
}
.cid-txfrDOLBSt.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txfrDOLBSt.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txfrDOLBSt .modal-content,
.cid-txfrDOLBSt .modal-dialog {
  height: auto;
}
.cid-txfrDOLBSt .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txfrDOLBSt .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txfrDOLBSt .form-wrapper .mbr-form .form-group,
  .cid-txfrDOLBSt .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txfrDOLBSt .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txfrDOLBSt .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txfrDOLBSt .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txfrDOLBSt .pt-0 {
  padding-top: 0 !important;
}
.cid-txfrDOLBSt .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txfrDOLBSt .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txfrDOLBSt .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txfrDOLBSt .modal-open {
  overflow: hidden;
}
.cid-txfrDOLBSt .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txfrDOLBSt .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txfrDOLBSt .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txfrDOLBSt .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txfrDOLBSt .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txfrDOLBSt .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txfrDOLBSt .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txfrDOLBSt .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txfrDOLBSt .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txfrDOLBSt .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txfrDOLBSt .modal-backdrop.fade {
  opacity: 0;
}
.cid-txfrDOLBSt .modal-backdrop.show {
  opacity: .5;
}
.cid-txfrDOLBSt .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txfrDOLBSt .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOLBSt .modal-header {
    padding: 1rem;
  }
}
.cid-txfrDOLBSt .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txfrDOLBSt .modal-header .close svg {
  fill: #353535;
}
.cid-txfrDOLBSt .modal-header .close:hover {
  opacity: 1;
}
.cid-txfrDOLBSt .modal-header .close:focus {
  outline: none;
}
.cid-txfrDOLBSt .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txfrDOLBSt .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txfrDOLBSt .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOLBSt .modal-body {
    padding: 1rem;
  }
}
.cid-txfrDOLBSt .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txfrDOLBSt .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOLBSt .modal-footer {
    padding: 1rem;
  }
}
.cid-txfrDOLBSt .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txfrDOLBSt .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txfrDOLBSt .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txfrDOLBSt .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txfrDOLBSt .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txfrDOLBSt .modal-lg,
  .cid-txfrDOLBSt .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txfrDOLBSt .modal-xl {
    max-width: 1140px;
  }
}
.cid-txfrDOLBSt .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txfrDOLBSt .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txfrDOLBSt .form-group {
  margin-bottom: 1rem;
}
.cid-txfrDOLBSt .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txfrDOLBSt .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txfrDOLBSt .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txfrDOLBSt .mbr-section-btn {
  margin: 0;
}
.cid-txfrDOLBSt .mbr-section-btn .btn {
  margin: 0;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
.cid-txfmCOSvD2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-txfmCOSvD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txfmCOSvD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txfmCOSvD2 .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-txfmCOSvD2 .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-txfmCOSvD2 .row {
  align-items: center;
}
.cid-txfmCOSvD2 img {
  border-radius: 2rem;
}
.cid-txfmCOSvD2 .image-wrapper {
  background: #0079ae;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-txfmCOSvD2 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txfmCOSvD2 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txfmCOSvD2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txfmCOSvD2 .mbr-section-title {
  color: #2b1c50;
}
.cid-txfmCOSvD2 .mbr-text,
.cid-txfmCOSvD2 .mbr-section-btn {
  color: #3d2e7c;
}
.cid-tx1OLrsD5X {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tx1OLrsD5X .row {
  align-items: center;
}
.cid-tx1OLrsD5X .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tx1OLrsD5X .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tx1OLrsD5X .header-text {
    margin-bottom: 20px;
  }
}
.cid-tx1OLrsD5X .mbr-section-title {
  width: 100%;
  color: #39485d;
  margin-bottom: 8px;
}
.cid-tx1OLrsD5X .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tx1OLrsD5X .mbr-text,
.cid-tx1OLrsD5X .mbr-section-btn {
  text-align: justify;
}
.cid-tx20oN0Sb9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-tx20oN0Sb9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx20oN0Sb9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx20oN0Sb9 .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-tx20oN0Sb9 .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tx20oN0Sb9 .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tx20oN0Sb9 .mbr-section-title {
  color: #0079ae;
  width: 80%;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tx20oN0Sb9 .mbr-section-title {
    width: 100%;
  }
}
.cid-tx20oN0Sb9 .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tx20oN0Sb9 .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-tx20oN0Sb9 .lists-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-tx20oN0Sb9 .lists-col {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 !important;
  }
}
.cid-tx20oN0Sb9 .col-list {
  width: 46%;
}
@media (max-width: 767px) {
  .cid-tx20oN0Sb9 .col-list {
    width: 100%;
    margin: 4rem 0;
  }
}
.cid-tx20oN0Sb9 .list-title {
  color: #0079ae;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 2px solid currentColor;
}
@media (max-width: 991px) {
  .cid-tx20oN0Sb9 .list-title {
    padding-bottom: 20px;
  }
}
.cid-tx20oN0Sb9 .list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding-left: 0;
  text-align: left;
}
.cid-tx20oN0Sb9 li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  margin-bottom: 0;
}
.cid-tx20oN0Sb9 ul li::before {
  position: absolute;
  left: 3;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #0628b4;
  font-weight: bold;
  font-size: 1.6rem;
  width: 1.6rem;
}
.cid-tx1ZKkIha9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tx1ZKkIha9 .title-section {
  margin-bottom: 4.5rem;
  padding: 0 90px;
}
@media (max-width: 992px) {
  .cid-tx1ZKkIha9 .title-section {
    padding: 0 20px;
    margin-bottom: 2rem;
  }
}
.cid-tx1ZKkIha9 .card,
.cid-tx1ZKkIha9 .btn {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: 0.2s linear;
}
.cid-tx1ZKkIha9 .card:hover,
.cid-tx1ZKkIha9 .btn:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.cid-tx1ZKkIha9 .card {
  background-color: white;
}
.cid-tx1ZKkIha9 .card-img-top {
  border-radius: 20px 20px 0 0;
  width: 100%;
  height: auto;
}
.cid-tx1ZKkIha9 .list {
  margin-bottom: 18px;
}
.cid-tx1ZKkIha9 .card-body {
  padding-top: 18px;
  padding-bottom: 20px;
}
.cid-tx1ZKkIha9 .btn {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tx1ZKkIha9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx1ZKkIha9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx1ZKkIha9 .mbr-section-title {
  color: #0079ae;
}
.cid-txiYBf4ceu.popup-builder {
  background-color: #ffffff;
}
.cid-txiYBf4ceu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txiYBf4ceu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txiYBf4ceu .modal-content,
.cid-txiYBf4ceu .modal-dialog {
  height: auto;
}
.cid-txiYBf4ceu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txiYBf4ceu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txiYBf4ceu .form-wrapper .mbr-form .form-group,
  .cid-txiYBf4ceu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txiYBf4ceu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txiYBf4ceu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txiYBf4ceu .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txiYBf4ceu .pt-0 {
  padding-top: 0 !important;
}
.cid-txiYBf4ceu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txiYBf4ceu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txiYBf4ceu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txiYBf4ceu .modal-open {
  overflow: hidden;
}
.cid-txiYBf4ceu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txiYBf4ceu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txiYBf4ceu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txiYBf4ceu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txiYBf4ceu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txiYBf4ceu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txiYBf4ceu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txiYBf4ceu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txiYBf4ceu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txiYBf4ceu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txiYBf4ceu .modal-backdrop.fade {
  opacity: 0;
}
.cid-txiYBf4ceu .modal-backdrop.show {
  opacity: .5;
}
.cid-txiYBf4ceu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txiYBf4ceu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txiYBf4ceu .modal-header {
    padding: 1rem;
  }
}
.cid-txiYBf4ceu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txiYBf4ceu .modal-header .close svg {
  fill: #353535;
}
.cid-txiYBf4ceu .modal-header .close:hover {
  opacity: 1;
}
.cid-txiYBf4ceu .modal-header .close:focus {
  outline: none;
}
.cid-txiYBf4ceu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txiYBf4ceu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txiYBf4ceu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txiYBf4ceu .modal-body {
    padding: 1rem;
  }
}
.cid-txiYBf4ceu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txiYBf4ceu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txiYBf4ceu .modal-footer {
    padding: 1rem;
  }
}
.cid-txiYBf4ceu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txiYBf4ceu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txiYBf4ceu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txiYBf4ceu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txiYBf4ceu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txiYBf4ceu .modal-lg,
  .cid-txiYBf4ceu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txiYBf4ceu .modal-xl {
    max-width: 1140px;
  }
}
.cid-txiYBf4ceu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txiYBf4ceu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txiYBf4ceu .form-group {
  margin-bottom: 1rem;
}
.cid-txiYBf4ceu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txiYBf4ceu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txiYBf4ceu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txiYBf4ceu .mbr-section-btn {
  margin: 0;
}
.cid-txiYBf4ceu .mbr-section-btn .btn {
  margin: 0;
}
.cid-txj4RjjRXR.popup-builder {
  background-color: #ffffff;
}
.cid-txj4RjjRXR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txj4RjjRXR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txj4RjjRXR .modal-content,
.cid-txj4RjjRXR .modal-dialog {
  height: auto;
}
.cid-txj4RjjRXR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txj4RjjRXR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txj4RjjRXR .form-wrapper .mbr-form .form-group,
  .cid-txj4RjjRXR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txj4RjjRXR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txj4RjjRXR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txj4RjjRXR .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txj4RjjRXR .pt-0 {
  padding-top: 0 !important;
}
.cid-txj4RjjRXR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txj4RjjRXR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txj4RjjRXR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txj4RjjRXR .modal-open {
  overflow: hidden;
}
.cid-txj4RjjRXR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txj4RjjRXR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txj4RjjRXR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txj4RjjRXR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txj4RjjRXR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txj4RjjRXR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txj4RjjRXR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txj4RjjRXR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txj4RjjRXR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txj4RjjRXR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txj4RjjRXR .modal-backdrop.fade {
  opacity: 0;
}
.cid-txj4RjjRXR .modal-backdrop.show {
  opacity: .5;
}
.cid-txj4RjjRXR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txj4RjjRXR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txj4RjjRXR .modal-header {
    padding: 1rem;
  }
}
.cid-txj4RjjRXR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txj4RjjRXR .modal-header .close svg {
  fill: #353535;
}
.cid-txj4RjjRXR .modal-header .close:hover {
  opacity: 1;
}
.cid-txj4RjjRXR .modal-header .close:focus {
  outline: none;
}
.cid-txj4RjjRXR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txj4RjjRXR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txj4RjjRXR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txj4RjjRXR .modal-body {
    padding: 1rem;
  }
}
.cid-txj4RjjRXR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txj4RjjRXR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txj4RjjRXR .modal-footer {
    padding: 1rem;
  }
}
.cid-txj4RjjRXR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txj4RjjRXR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txj4RjjRXR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txj4RjjRXR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txj4RjjRXR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txj4RjjRXR .modal-lg,
  .cid-txj4RjjRXR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txj4RjjRXR .modal-xl {
    max-width: 1140px;
  }
}
.cid-txj4RjjRXR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txj4RjjRXR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txj4RjjRXR .form-group {
  margin-bottom: 1rem;
}
.cid-txj4RjjRXR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txj4RjjRXR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txj4RjjRXR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txj4RjjRXR .mbr-section-btn {
  margin: 0;
}
.cid-txj4RjjRXR .mbr-section-btn .btn {
  margin: 0;
}
.cid-txj7cFVDwE.popup-builder {
  background-color: #ffffff;
}
.cid-txj7cFVDwE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txj7cFVDwE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txj7cFVDwE .modal-content,
.cid-txj7cFVDwE .modal-dialog {
  height: auto;
}
.cid-txj7cFVDwE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txj7cFVDwE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txj7cFVDwE .form-wrapper .mbr-form .form-group,
  .cid-txj7cFVDwE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txj7cFVDwE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txj7cFVDwE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txj7cFVDwE .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txj7cFVDwE .pt-0 {
  padding-top: 0 !important;
}
.cid-txj7cFVDwE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txj7cFVDwE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txj7cFVDwE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txj7cFVDwE .modal-open {
  overflow: hidden;
}
.cid-txj7cFVDwE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txj7cFVDwE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txj7cFVDwE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txj7cFVDwE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txj7cFVDwE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txj7cFVDwE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txj7cFVDwE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txj7cFVDwE .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txj7cFVDwE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txj7cFVDwE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txj7cFVDwE .modal-backdrop.fade {
  opacity: 0;
}
.cid-txj7cFVDwE .modal-backdrop.show {
  opacity: .5;
}
.cid-txj7cFVDwE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txj7cFVDwE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txj7cFVDwE .modal-header {
    padding: 1rem;
  }
}
.cid-txj7cFVDwE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txj7cFVDwE .modal-header .close svg {
  fill: #353535;
}
.cid-txj7cFVDwE .modal-header .close:hover {
  opacity: 1;
}
.cid-txj7cFVDwE .modal-header .close:focus {
  outline: none;
}
.cid-txj7cFVDwE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txj7cFVDwE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txj7cFVDwE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txj7cFVDwE .modal-body {
    padding: 1rem;
  }
}
.cid-txj7cFVDwE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txj7cFVDwE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txj7cFVDwE .modal-footer {
    padding: 1rem;
  }
}
.cid-txj7cFVDwE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txj7cFVDwE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txj7cFVDwE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txj7cFVDwE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txj7cFVDwE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txj7cFVDwE .modal-lg,
  .cid-txj7cFVDwE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txj7cFVDwE .modal-xl {
    max-width: 1140px;
  }
}
.cid-txj7cFVDwE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txj7cFVDwE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txj7cFVDwE .form-group {
  margin-bottom: 1rem;
}
.cid-txj7cFVDwE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txj7cFVDwE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txj7cFVDwE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txj7cFVDwE .mbr-section-btn {
  margin: 0;
}
.cid-txj7cFVDwE .mbr-section-btn .btn {
  margin: 0;
}
.cid-txj8oCo6TP.popup-builder {
  background-color: #ffffff;
}
.cid-txj8oCo6TP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txj8oCo6TP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txj8oCo6TP .modal-content,
.cid-txj8oCo6TP .modal-dialog {
  height: auto;
}
.cid-txj8oCo6TP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txj8oCo6TP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txj8oCo6TP .form-wrapper .mbr-form .form-group,
  .cid-txj8oCo6TP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txj8oCo6TP .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txj8oCo6TP .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txj8oCo6TP .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txj8oCo6TP .pt-0 {
  padding-top: 0 !important;
}
.cid-txj8oCo6TP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txj8oCo6TP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txj8oCo6TP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txj8oCo6TP .modal-open {
  overflow: hidden;
}
.cid-txj8oCo6TP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txj8oCo6TP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txj8oCo6TP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txj8oCo6TP .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txj8oCo6TP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txj8oCo6TP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txj8oCo6TP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txj8oCo6TP .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txj8oCo6TP .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txj8oCo6TP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txj8oCo6TP .modal-backdrop.fade {
  opacity: 0;
}
.cid-txj8oCo6TP .modal-backdrop.show {
  opacity: .5;
}
.cid-txj8oCo6TP .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txj8oCo6TP .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txj8oCo6TP .modal-header {
    padding: 1rem;
  }
}
.cid-txj8oCo6TP .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txj8oCo6TP .modal-header .close svg {
  fill: #353535;
}
.cid-txj8oCo6TP .modal-header .close:hover {
  opacity: 1;
}
.cid-txj8oCo6TP .modal-header .close:focus {
  outline: none;
}
.cid-txj8oCo6TP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txj8oCo6TP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txj8oCo6TP .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txj8oCo6TP .modal-body {
    padding: 1rem;
  }
}
.cid-txj8oCo6TP .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txj8oCo6TP .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txj8oCo6TP .modal-footer {
    padding: 1rem;
  }
}
.cid-txj8oCo6TP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txj8oCo6TP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txj8oCo6TP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txj8oCo6TP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txj8oCo6TP .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txj8oCo6TP .modal-lg,
  .cid-txj8oCo6TP .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txj8oCo6TP .modal-xl {
    max-width: 1140px;
  }
}
.cid-txj8oCo6TP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txj8oCo6TP .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txj8oCo6TP .form-group {
  margin-bottom: 1rem;
}
.cid-txj8oCo6TP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txj8oCo6TP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txj8oCo6TP .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txj8oCo6TP .mbr-section-btn {
  margin: 0;
}
.cid-txj8oCo6TP .mbr-section-btn .btn {
  margin: 0;
}
.cid-txj9OtbhqA.popup-builder {
  background-color: #ffffff;
}
.cid-txj9OtbhqA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txj9OtbhqA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txj9OtbhqA .modal-content,
.cid-txj9OtbhqA .modal-dialog {
  height: auto;
}
.cid-txj9OtbhqA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txj9OtbhqA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txj9OtbhqA .form-wrapper .mbr-form .form-group,
  .cid-txj9OtbhqA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txj9OtbhqA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txj9OtbhqA .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txj9OtbhqA .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txj9OtbhqA .pt-0 {
  padding-top: 0 !important;
}
.cid-txj9OtbhqA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txj9OtbhqA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txj9OtbhqA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txj9OtbhqA .modal-open {
  overflow: hidden;
}
.cid-txj9OtbhqA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txj9OtbhqA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txj9OtbhqA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txj9OtbhqA .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txj9OtbhqA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txj9OtbhqA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txj9OtbhqA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txj9OtbhqA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txj9OtbhqA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txj9OtbhqA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txj9OtbhqA .modal-backdrop.fade {
  opacity: 0;
}
.cid-txj9OtbhqA .modal-backdrop.show {
  opacity: .5;
}
.cid-txj9OtbhqA .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txj9OtbhqA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txj9OtbhqA .modal-header {
    padding: 1rem;
  }
}
.cid-txj9OtbhqA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txj9OtbhqA .modal-header .close svg {
  fill: #353535;
}
.cid-txj9OtbhqA .modal-header .close:hover {
  opacity: 1;
}
.cid-txj9OtbhqA .modal-header .close:focus {
  outline: none;
}
.cid-txj9OtbhqA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txj9OtbhqA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txj9OtbhqA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txj9OtbhqA .modal-body {
    padding: 1rem;
  }
}
.cid-txj9OtbhqA .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txj9OtbhqA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txj9OtbhqA .modal-footer {
    padding: 1rem;
  }
}
.cid-txj9OtbhqA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txj9OtbhqA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txj9OtbhqA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txj9OtbhqA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txj9OtbhqA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txj9OtbhqA .modal-lg,
  .cid-txj9OtbhqA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txj9OtbhqA .modal-xl {
    max-width: 1140px;
  }
}
.cid-txj9OtbhqA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txj9OtbhqA .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txj9OtbhqA .form-group {
  margin-bottom: 1rem;
}
.cid-txj9OtbhqA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txj9OtbhqA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txj9OtbhqA .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txj9OtbhqA .mbr-section-btn {
  margin: 0;
}
.cid-txj9OtbhqA .mbr-section-btn .btn {
  margin: 0;
}
.cid-tx1OLFDrSW {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/header-band-5-1280x400.webp");
}
.cid-tx1OLFDrSW .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-tx1OLFDrSW .row {
    text-align: center!important;
  }
}
.cid-tx1OLFDrSW .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-tx1OLFDrSW .mbr-section-title {
    text-align: center;
  }
}
.cid-tx1OLFDrSW .mbr-text {
  color: #000000;
  margin-top: 20px;
}
.cid-tx1OLFDrSW .mbr-text a:hover {
  text-decoration: underline;
}
.cid-tx1OLFDrSW .mbr-section-btn {
  margin-top: 20px;
}
.cid-tx1OLFDrSW .mbr-section-btn .btn {
  border-radius: 50px;
}
@media (max-width: 575px) {
  .cid-tx1OLFDrSW .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tx1OLFDrSW .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tx1OLFDrSW .mbr-section-title,
.cid-tx1OLFDrSW .mbr-section-btn {
  color: #0079ae;
}
.cid-tx1OLGEjLI {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tx1OLGEjLI .row {
  flex-direction: row-reverse;
}
.cid-tx1OLGEjLI .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tx1OLGEjLI .row {
    padding-bottom: 40px;
  }
}
.cid-tx1OLGEjLI .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-tx1OLGEjLI .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-tx1OLGEjLI .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tx1OLGEjLI .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tx1OLGEjLI .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tx1OLGEjLI .text-container {
    text-align: center!important;
  }
}
.cid-tx1OLGEjLI .mbr-section-title {
  color: #0079ae;
}
.cid-tx1OLGEjLI .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-tx1OLGEjLI .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-tx1OLGEjLI .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tx1OLGEjLI .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tx1OLGEjLI .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-tx1OLGEjLI .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-tx1OLGEjLI .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-tx1OLGEjLI .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tx1OLGEjLI .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tx1OLGEjLI .col-video .mbr-media img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-tx1OLGEjLI .col-video .mbr-media img {
    height: auto;
  }
}
.cid-tx1OLGEjLI .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tx1OLGEjLI .mbr-media {
  position: relative;
}
.cid-tx1OLGEjLI .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tx1OLGEjLI .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tx1OLGEjLI .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tx1OLGEjLI .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tx1OLGEjLI .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tx1OLGEjLI .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tx1OLGEjLI .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tx1OLGEjLI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tx1OLGEjLI .mbr-section-subtitle,
.cid-tx1OLGEjLI .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tx1OLHMcv0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0079ae;
}
.cid-tx1OLHMcv0 img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-tx1OLHMcv0 .si {
  width: 100%;
}
.cid-tx1OLHMcv0 .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-tx1OLHMcv0 .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #ffffff;
}
.cid-tx1OLHMcv0 .subtitle {
  color: #ffffff;
}
.cid-tx1OLHMcv0 .text,
.cid-tx1OLHMcv0 .si {
  text-align: center;
}
.cid-tx1OLHMcv0 .copyright {
  padding-top: 120px;
}
.cid-txfrDOLfOp.popup-builder {
  background-color: #ffffff;
}
.cid-txfrDOLfOp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txfrDOLfOp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txfrDOLfOp .modal-content,
.cid-txfrDOLfOp .modal-dialog {
  height: auto;
}
.cid-txfrDOLfOp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txfrDOLfOp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txfrDOLfOp .form-wrapper .mbr-form .form-group,
  .cid-txfrDOLfOp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txfrDOLfOp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txfrDOLfOp .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txfrDOLfOp .mbr-text {
  text-align: justify;
  line-height: 1.5;
}
.cid-txfrDOLfOp .pt-0 {
  padding-top: 0 !important;
}
.cid-txfrDOLfOp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txfrDOLfOp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txfrDOLfOp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txfrDOLfOp .modal-open {
  overflow: hidden;
}
.cid-txfrDOLfOp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txfrDOLfOp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txfrDOLfOp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txfrDOLfOp .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txfrDOLfOp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txfrDOLfOp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txfrDOLfOp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txfrDOLfOp .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txfrDOLfOp .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txfrDOLfOp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txfrDOLfOp .modal-backdrop.fade {
  opacity: 0;
}
.cid-txfrDOLfOp .modal-backdrop.show {
  opacity: .5;
}
.cid-txfrDOLfOp .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txfrDOLfOp .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOLfOp .modal-header {
    padding: 1rem;
  }
}
.cid-txfrDOLfOp .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txfrDOLfOp .modal-header .close svg {
  fill: #353535;
}
.cid-txfrDOLfOp .modal-header .close:hover {
  opacity: 1;
}
.cid-txfrDOLfOp .modal-header .close:focus {
  outline: none;
}
.cid-txfrDOLfOp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #c69100;
}
.cid-txfrDOLfOp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txfrDOLfOp .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOLfOp .modal-body {
    padding: 1rem;
  }
}
.cid-txfrDOLfOp .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txfrDOLfOp .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txfrDOLfOp .modal-footer {
    padding: 1rem;
  }
}
.cid-txfrDOLfOp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txfrDOLfOp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txfrDOLfOp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txfrDOLfOp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txfrDOLfOp .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txfrDOLfOp .modal-lg,
  .cid-txfrDOLfOp .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txfrDOLfOp .modal-xl {
    max-width: 1140px;
  }
}
.cid-txfrDOLfOp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txfrDOLfOp .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txfrDOLfOp .form-group {
  margin-bottom: 1rem;
}
.cid-txfrDOLfOp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txfrDOLfOp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txfrDOLfOp .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txfrDOLfOp .mbr-section-btn {
  margin: 0;
}
.cid-txfrDOLfOp .mbr-section-btn .btn {
  margin: 0;
}
.cid-tMCBc3wruV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tMCBc3wruV nav.navbar {
  position: fixed;
}
.cid-tMCBc3wruV .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-tMCBc3wruV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCBc3wruV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMCBc3wruV .dropdown-item:hover,
.cid-tMCBc3wruV .dropdown-item:focus {
  background: #ffbb00 !important;
  color: white !important;
}
.cid-tMCBc3wruV .dropdown-item:hover span {
  color: white;
}
.cid-tMCBc3wruV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCBc3wruV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCBc3wruV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCBc3wruV .nav-link {
  position: relative;
}
.cid-tMCBc3wruV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .container {
    flex-wrap: nowrap;
  }
}
.cid-tMCBc3wruV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown-menu,
.cid-tMCBc3wruV .navbar.opened {
  background: #0079ae !important;
}
.cid-tMCBc3wruV .nav-item:focus,
.cid-tMCBc3wruV .nav-link:focus {
  outline: none;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCBc3wruV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCBc3wruV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCBc3wruV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCBc3wruV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCBc3wruV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCBc3wruV .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCBc3wruV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar.collapsed {
  justify-content: center;
}
.cid-tMCBc3wruV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCBc3wruV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCBc3wruV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCBc3wruV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCBc3wruV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCBc3wruV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCBc3wruV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCBc3wruV .navbar .navbar-logo img {
    height: 1rem !important;
  }
  .cid-tMCBc3wruV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCBc3wruV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCBc3wruV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCBc3wruV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCBc3wruV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCBc3wruV .navbar.navbar-short {
  min-height: 80px;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-logo img {
  height: 1rem !important;
}
.cid-tMCBc3wruV .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tMCBc3wruV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCBc3wruV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCBc3wruV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .navbar-brand {
    margin-right: 14px;
  }
}
.cid-tMCBc3wruV .dropdown-item.active,
.cid-tMCBc3wruV .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCBc3wruV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCBc3wruV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0079ae;
}
.cid-tMCBc3wruV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCBc3wruV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCBc3wruV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCBc3wruV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCBc3wruV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCBc3wruV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCBc3wruV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCBc3wruV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMCBc3wruV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCBc3wruV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .icons-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCBc3wruV .navbar {
    height: 80px;
  }
  .cid-tMCBc3wruV .navbar.opened {
    height: auto;
  }
  .cid-tMCBc3wruV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCBc3wruV .nav-item {
  opacity: 0.7;
  background: transparent;
  border-radius: 12px;
  transition: 0.5s all;
  color: #ffffff;
}
.cid-tMCBc3wruV .nav-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.cid-tMCBc3wruV .nav-item .nav-link {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    margin-left: auto;
    max-width: 30%;
  }
}
@media (max-width: 575px) {
  .cid-tMCBc3wruV .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tMCBc3wruV .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tMCBc3wruV .mbr-section-btn .btn {
  padding: 12px 22px;
  min-height: 40px;
}
