.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !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: #e43f3f !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tCYhWiQxbY {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-tCYhWiQxbY .carousel {
  width: 100%;
}
.cid-tCYhWiQxbY .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tCYhWiQxbY .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tCYhWiQxbY .carousel-caption {
  bottom: 40px;
}
.cid-tCYhWiQxbY .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tCYhWiQxbY .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tCYhWiQxbY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tCYhWiQxbY .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tCYhWiQxbY .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tCYhWiQxbY .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tCYhWiQxbY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tCYhWiQxbY .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tCYhWiQxbY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCYhWiQxbY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tCYhWiQxbY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tCYhWiQxbY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tCYhWiQxbY .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tCYhWiQxbY .carousel-indicators li.active,
.cid-tCYhWiQxbY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tCYhWiQxbY .carousel-indicators li::after,
.cid-tCYhWiQxbY .carousel-indicators li::before {
  content: none;
}
.cid-tCYhWiQxbY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tCYhWiQxbY .carousel-indicators {
    display: none !important;
  }
}
.cid-tCWaHLxnUx {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tCWaHLxnUx .mbr-section-title {
  color: #08375e;
}
.cid-tCWaHLxnUx .mbr-section-subtitle {
  color: #08375e;
}
.cid-tD03L4MQcm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-tD0MJn7xER {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tD0MJn7xER .mbr-section-title {
  color: #08375e;
}
.cid-tD0z7PkSTo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tD0z7PkSTo .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tD0z7PkSTo .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tD0z7PkSTo .mbr-section-title {
  color: #ffffff;
}
.cid-tD0z7PkSTo .mbr-text {
  color: #ffffff;
}
.cid-tD0z7PkSTo .position {
  color: #ffffff;
}
.cid-tD0z7PkSTo .name {
  color: #ff8a8a;
}
.cid-urmwWWzb4K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urmwWWzb4K .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urmwWWzb4K .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urmwWWzb4K .mbr-text {
  color: #ffffff;
}
.cid-urmwWWzb4K .name {
  color: #ff8a8a;
}
.cid-urmwWWzb4K .position {
  color: #ffffff;
}
.cid-tD0FoEz9y8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tD0FoEz9y8 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tD0FoEz9y8 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tD0FoEz9y8 .mbr-text {
  color: #ffffff;
}
.cid-tD0FoEz9y8 .name {
  color: #ff8a8a;
}
.cid-tD0FoEz9y8 .position {
  color: #ffffff;
}
.cid-urmwYfOPo8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urmwYfOPo8 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urmwYfOPo8 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urmwYfOPo8 .mbr-text {
  color: #ffffff;
}
.cid-urmwYfOPo8 .name {
  color: #ff8a8a;
}
.cid-urmwYfOPo8 .position {
  color: #ffffff;
}
.cid-tCWaeEwoSB {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ff5f5f;
}
.cid-tCWaeEwoSB .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tCWaeEwoSB .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tCWaeEwoSB .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tCWaeEwoSB .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tCWaeEwoSB .mbr-text {
  text-align: center;
}
.cid-tCWaeEwoSB .card-title {
  color: #08375e;
}
.cid-tCWaeEwoSB .mbr-section-title {
  color: #232323;
}
.cid-ur9lec3VAe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #143056;
}
.cid-ur9lec3VAe .google-map {
  height: 30rem;
  position: relative;
}
.cid-ur9lec3VAe .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ur9lec3VAe .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ur9lec3VAe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ur9lec3VAe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tCZFFvKe2i {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tCZFFvKe2i .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tCZFFvKe2i .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tCZFFvKe2i .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tCZFFvKe2i .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tCZFFvKe2i .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tCZFFvKe2i .bg-instagram:hover {
  background: #bd005c;
}
.cid-tCZFFvKe2i .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tCZFFvKe2i .bg-youtube:hover {
  background: #cc0000;
}
.cid-tCZFFvKe2i .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tCZFFvKe2i [class^="socicon-"]:before,
.cid-tCZFFvKe2i [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tD0UP4UyMD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #143056;
}
.cid-tD0UP4UyMD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tCW8Y6QJwk {
  z-index: 1000;
  width: 100%;
}
.cid-tCW8Y6QJwk nav.navbar {
  position: fixed;
}
.cid-tCW8Y6QJwk .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-tCW8Y6QJwk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCW8Y6QJwk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCW8Y6QJwk .dropdown-item:hover,
.cid-tCW8Y6QJwk .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tCW8Y6QJwk .dropdown-item:hover span {
  color: white;
}
.cid-tCW8Y6QJwk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCW8Y6QJwk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCW8Y6QJwk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCW8Y6QJwk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCW8Y6QJwk .nav-link {
  position: relative;
}
.cid-tCW8Y6QJwk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCW8Y6QJwk .container {
    flex-wrap: nowrap;
  }
}
.cid-tCW8Y6QJwk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCW8Y6QJwk .dropdown-menu,
.cid-tCW8Y6QJwk .navbar.opened {
  background: #08375e !important;
}
.cid-tCW8Y6QJwk .nav-item:focus,
.cid-tCW8Y6QJwk .nav-link:focus {
  outline: none;
}
.cid-tCW8Y6QJwk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCW8Y6QJwk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCW8Y6QJwk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCW8Y6QJwk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCW8Y6QJwk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCW8Y6QJwk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCW8Y6QJwk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #08375e;
}
.cid-tCW8Y6QJwk .navbar.opened {
  transition: all 0.3s;
}
.cid-tCW8Y6QJwk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCW8Y6QJwk .navbar .navbar-logo img {
  width: auto;
}
.cid-tCW8Y6QJwk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCW8Y6QJwk .navbar.collapsed {
  justify-content: center;
}
.cid-tCW8Y6QJwk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCW8Y6QJwk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCW8Y6QJwk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tCW8Y6QJwk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCW8Y6QJwk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCW8Y6QJwk .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-tCW8Y6QJwk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCW8Y6QJwk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCW8Y6QJwk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCW8Y6QJwk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCW8Y6QJwk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCW8Y6QJwk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCW8Y6QJwk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCW8Y6QJwk .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-tCW8Y6QJwk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCW8Y6QJwk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCW8Y6QJwk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCW8Y6QJwk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCW8Y6QJwk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCW8Y6QJwk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCW8Y6QJwk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCW8Y6QJwk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCW8Y6QJwk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCW8Y6QJwk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCW8Y6QJwk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCW8Y6QJwk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCW8Y6QJwk .dropdown-item.active,
.cid-tCW8Y6QJwk .dropdown-item:active {
  background-color: transparent;
}
.cid-tCW8Y6QJwk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCW8Y6QJwk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCW8Y6QJwk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCW8Y6QJwk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08375e;
}
.cid-tCW8Y6QJwk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCW8Y6QJwk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCW8Y6QJwk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCW8Y6QJwk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCW8Y6QJwk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCW8Y6QJwk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tCW8Y6QJwk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCW8Y6QJwk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCW8Y6QJwk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCW8Y6QJwk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCW8Y6QJwk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCW8Y6QJwk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCW8Y6QJwk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCW8Y6QJwk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCW8Y6QJwk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCW8Y6QJwk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCW8Y6QJwk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCW8Y6QJwk .navbar {
    height: 70px;
  }
  .cid-tCW8Y6QJwk .navbar.opened {
    height: auto;
  }
  .cid-tCW8Y6QJwk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE452Kcpxg {
  padding-top: 9rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tE452Kcpxg .mbr-section-title {
  color: #08375e;
}
.cid-tE452Kcpxg .mbr-section-subtitle {
  text-align: center;
  color: #08375e;
}
.cid-tE452LsA2l {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tE452LsA2l .mbr-section-title {
  color: #ffffff;
}
.cid-tE4g3Khe3D {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tE4g3Khe3D .container {
    max-width: 1400px;
  }
}
.cid-tE4g3Khe3D .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE4g3Khe3D .card-wrapper {
  margin-top: 3rem;
}
.cid-tE4g3Khe3D .row {
  justify-content: center;
}
.cid-tE4g3Khe3D .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tE4g3Khe3D .card-title,
.cid-tE4g3Khe3D .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tE452OzPN2 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tE452OzPN2 .container {
    max-width: 1400px;
  }
}
.cid-tE452OzPN2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE452OzPN2 .card-wrapper {
  margin-top: 3rem;
}
.cid-tE452OzPN2 .row {
  justify-content: center;
}
.cid-tE452OzPN2 .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tE452OzPN2 .card-title,
.cid-tE452OzPN2 .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tE452PtFsT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE452PtFsT .mbr-section-title {
  color: #08375e;
}
.cid-tE452Q2bKJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tE452Q2bKJ .container {
    max-width: 1400px;
  }
}
.cid-tE452Q2bKJ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE452Q2bKJ .card-wrapper {
  margin-top: 3rem;
}
.cid-tE452Q2bKJ .row {
  justify-content: center;
}
.cid-tE452Q2bKJ .card-text {
  text-align: left;
  color: #08375e;
}
.cid-tE452Q2bKJ .card-title,
.cid-tE452Q2bKJ .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tE452R4bv0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tE452R4bv0 .container {
    max-width: 1400px;
  }
}
.cid-tE452R4bv0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE452R4bv0 .card-wrapper {
  margin-top: 3rem;
}
.cid-tE452R4bv0 .row {
  justify-content: center;
}
.cid-tE452R4bv0 .card-title,
.cid-tE452R4bv0 .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tE452R4bv0 .card-text {
  color: #08375e;
  text-align: left;
}
.cid-tE452SeIhV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tE452SeIhV .mbr-section-title {
  color: #ffffff;
}
.cid-tE452Tbz81 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tE452Tbz81 .container {
    max-width: 1400px;
  }
}
.cid-tE452Tbz81 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE452Tbz81 .card-wrapper {
  margin-top: 3rem;
}
.cid-tE452Tbz81 .row {
  justify-content: center;
}
.cid-tE452Tbz81 .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tE452Tbz81 .card-title,
.cid-tE452Tbz81 .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tE452U62Se {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE452U62Se .mbr-section-title {
  color: #08375e;
}
.cid-tE452UNI02 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tE452UNI02 .container {
    max-width: 1400px;
  }
}
.cid-tE452UNI02 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE452UNI02 .card-wrapper {
  margin-top: 3rem;
}
.cid-tE452UNI02 .row {
  justify-content: center;
}
.cid-tE452UNI02 .card-title,
.cid-tE452UNI02 .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tE452UNI02 .card-text {
  color: #08375e;
  text-align: left;
}
.cid-tE452VIqrI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tE452VIqrI .mbr-section-title {
  color: #ffffff;
}
.cid-tE452WkDnK {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tE452WkDnK .container {
    max-width: 1400px;
  }
}
.cid-tE452WkDnK .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE452WkDnK .card-wrapper {
  margin-top: 3rem;
}
.cid-tE452WkDnK .row {
  justify-content: center;
}
.cid-tE452WkDnK .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tE452WkDnK .card-title,
.cid-tE452WkDnK .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tE452XilLG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE452XilLG .mbr-section-title {
  color: #08375e;
}
.cid-tE452XZKAm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tE452XZKAm .container {
    max-width: 1400px;
  }
}
.cid-tE452XZKAm .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE452XZKAm .card-wrapper {
  margin-top: 3rem;
}
.cid-tE452XZKAm .row {
  justify-content: center;
}
.cid-tE452XZKAm .card-title,
.cid-tE452XZKAm .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tE452XZKAm .card-text {
  color: #08375e;
  text-align: left;
}
.cid-tE4S1RWis7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tE4S1RWis7 .card-wrapper {
  background: #08375e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tE4S1RWis7 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tE4S1RWis7 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tE4S1RWis7 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tE4S1RWis7 .mbr-text,
.cid-tE4S1RWis7 .mbr-section-btn {
  color: #ffb18a;
  text-align: center;
}
.cid-tE4S1RWis7 .card-title,
.cid-tE4S1RWis7 .card-box {
  text-align: center;
}
.cid-tE452YS14i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
@media (max-width: 991px) {
  .cid-tE452YS14i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tE452YS14i .row {
  flex-direction: row-reverse;
}
.cid-tE452YS14i img {
  width: 100%;
}
.cid-tE452ZAdXI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE452ZAdXI .mbr-section-title {
  color: #08375e;
}
.cid-tE452ZAdXI .mbr-section-subtitle {
  color: #08375e;
}
.cid-tE4530npL0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE4530npL0 .mbr-section-subtitle {
  color: #08375e;
}
.cid-tE45312jHu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-tE4531Raen {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tE4531Raen .mbr-section-title {
  color: #08375e;
}
.cid-tE4532C2aY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tE4532C2aY .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tE4532C2aY .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tE4532C2aY .mbr-section-title {
  color: #ffffff;
}
.cid-tE4532C2aY .mbr-text {
  color: #ffffff;
}
.cid-tE4532C2aY .position {
  color: #ffffff;
}
.cid-tE4532C2aY .name {
  color: #ff8a8a;
}
.cid-urq4sOj1hu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urq4sOj1hu .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urq4sOj1hu .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urq4sOj1hu .mbr-text {
  color: #ffffff;
}
.cid-urq4sOj1hu .name {
  color: #ff8a8a;
}
.cid-urq4sOj1hu .position {
  color: #ffffff;
}
.cid-urq4ui0NHq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urq4ui0NHq .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urq4ui0NHq .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urq4ui0NHq .mbr-text {
  color: #ffffff;
}
.cid-urq4ui0NHq .name {
  color: #ff8a8a;
}
.cid-urq4ui0NHq .position {
  color: #ffffff;
}
.cid-urq4wdcMx7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urq4wdcMx7 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urq4wdcMx7 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urq4wdcMx7 .mbr-text {
  color: #ffffff;
}
.cid-urq4wdcMx7 .name {
  color: #ff8a8a;
}
.cid-urq4wdcMx7 .position {
  color: #ffffff;
}
.cid-tE4534ex5Y {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ff5f5f;
}
.cid-tE4534ex5Y .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE4534ex5Y .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tE4534ex5Y .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tE4534ex5Y .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tE4534ex5Y .mbr-text {
  text-align: center;
}
.cid-tE4534ex5Y .card-title {
  color: #08375e;
}
.cid-tE4534ex5Y .mbr-section-title {
  color: #232323;
}
.cid-urnGDw4GaY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #143056;
}
.cid-urnGDw4GaY .google-map {
  height: 30rem;
  position: relative;
}
.cid-urnGDw4GaY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-urnGDw4GaY .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-urnGDw4GaY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-urnGDw4GaY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tE45350kXJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tE45350kXJ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tE45350kXJ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tE45350kXJ .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tE45350kXJ .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tE45350kXJ .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tE45350kXJ .bg-instagram:hover {
  background: #bd005c;
}
.cid-tE45350kXJ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tE45350kXJ .bg-youtube:hover {
  background: #cc0000;
}
.cid-tE45350kXJ .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tE45350kXJ [class^="socicon-"]:before,
.cid-tE45350kXJ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tE45365WwQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #143056;
}
.cid-tE45365WwQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tE4536NqTw {
  z-index: 1000;
  width: 100%;
}
.cid-tE4536NqTw nav.navbar {
  position: fixed;
}
.cid-tE4536NqTw .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-tE4536NqTw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tE4536NqTw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tE4536NqTw .dropdown-item:hover,
.cid-tE4536NqTw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tE4536NqTw .dropdown-item:hover span {
  color: white;
}
.cid-tE4536NqTw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tE4536NqTw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tE4536NqTw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tE4536NqTw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tE4536NqTw .nav-link {
  position: relative;
}
.cid-tE4536NqTw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tE4536NqTw .container {
    flex-wrap: nowrap;
  }
}
.cid-tE4536NqTw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tE4536NqTw .dropdown-menu,
.cid-tE4536NqTw .navbar.opened {
  background: #08375e !important;
}
.cid-tE4536NqTw .nav-item:focus,
.cid-tE4536NqTw .nav-link:focus {
  outline: none;
}
.cid-tE4536NqTw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tE4536NqTw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tE4536NqTw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tE4536NqTw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tE4536NqTw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tE4536NqTw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tE4536NqTw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #08375e;
}
.cid-tE4536NqTw .navbar.opened {
  transition: all 0.3s;
}
.cid-tE4536NqTw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tE4536NqTw .navbar .navbar-logo img {
  width: auto;
}
.cid-tE4536NqTw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tE4536NqTw .navbar.collapsed {
  justify-content: center;
}
.cid-tE4536NqTw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tE4536NqTw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tE4536NqTw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tE4536NqTw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tE4536NqTw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tE4536NqTw .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-tE4536NqTw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tE4536NqTw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tE4536NqTw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tE4536NqTw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tE4536NqTw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tE4536NqTw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tE4536NqTw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tE4536NqTw .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-tE4536NqTw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tE4536NqTw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tE4536NqTw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tE4536NqTw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tE4536NqTw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tE4536NqTw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tE4536NqTw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tE4536NqTw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tE4536NqTw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tE4536NqTw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tE4536NqTw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tE4536NqTw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tE4536NqTw .dropdown-item.active,
.cid-tE4536NqTw .dropdown-item:active {
  background-color: transparent;
}
.cid-tE4536NqTw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tE4536NqTw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tE4536NqTw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tE4536NqTw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08375e;
}
.cid-tE4536NqTw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tE4536NqTw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tE4536NqTw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tE4536NqTw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tE4536NqTw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tE4536NqTw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tE4536NqTw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tE4536NqTw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE4536NqTw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE4536NqTw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tE4536NqTw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE4536NqTw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tE4536NqTw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tE4536NqTw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE4536NqTw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tE4536NqTw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tE4536NqTw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tE4536NqTw .navbar {
    height: 70px;
  }
  .cid-tE4536NqTw .navbar.opened {
    height: auto;
  }
  .cid-tE4536NqTw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD108BIkO4 {
  padding-top: 9rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tD108BIkO4 .mbr-section-title {
  color: #08375e;
}
.cid-tD108BIkO4 .mbr-section-subtitle {
  text-align: center;
  color: #08375e;
}
.cid-tD14Po2cyx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tD14Po2cyx .mbr-section-title {
  color: #ffffff;
}
.cid-tD14zrx6nr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tD14zrx6nr .mbr-section-subtitle {
  color: #ffb18a;
}
.cid-tD14zrx6nr .mbr-text {
  color: #ffffff;
}
.cid-tD14zrx6nr .mbr-section-title {
  color: #ff9966;
}
.cid-tD1b0m5VVc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #08375e;
}
.cid-tD1b0m5VVc .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tD1b0m5VVc .mbr-text {
  color: #ffb18a;
}
.cid-tD6JAj7n6E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tD6JAj7n6E .container {
    max-width: 1400px;
  }
}
.cid-tD6JAj7n6E .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tD6JAj7n6E .card-wrapper {
  margin-top: 3rem;
}
.cid-tD6JAj7n6E .row {
  justify-content: center;
}
.cid-tD6JAj7n6E .card-title,
.cid-tD6JAj7n6E .iconfont-wrapper {
  color: #ff9966;
}
.cid-tD6JAj7n6E .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-tD6zcnWDvF {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tD6zcnWDvF .container {
    max-width: 1400px;
  }
}
.cid-tD6zcnWDvF .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tD6zcnWDvF .card-wrapper {
  margin-top: 3rem;
}
.cid-tD6zcnWDvF .row {
  justify-content: center;
}
.cid-tD6zcnWDvF .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tD6zcnWDvF .card-title,
.cid-tD6zcnWDvF .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tD6TNVupB4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tD6TNVupB4 .mbr-section-title {
  color: #08375e;
}
.cid-tD6TgFuAoj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tD6TgFuAoj .container {
    max-width: 1400px;
  }
}
.cid-tD6TgFuAoj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tD6TgFuAoj .card-wrapper {
  margin-top: 3rem;
}
.cid-tD6TgFuAoj .row {
  justify-content: center;
}
.cid-tD6TgFuAoj .card-text {
  text-align: left;
  color: #08375e;
}
.cid-tD6TgFuAoj .card-title,
.cid-tD6TgFuAoj .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tD6ThNKNAb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tD6ThNKNAb .container {
    max-width: 1400px;
  }
}
.cid-tD6ThNKNAb .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tD6ThNKNAb .card-wrapper {
  margin-top: 3rem;
}
.cid-tD6ThNKNAb .row {
  justify-content: center;
}
.cid-tD6ThNKNAb .card-title,
.cid-tD6ThNKNAb .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tD6ThNKNAb .card-text {
  color: #08375e;
  text-align: left;
}
.cid-tD7jjsvHp7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tD7jjsvHp7 .mbr-section-title {
  color: #ffffff;
}
.cid-tD7jlNH8Hz {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tD7jlNH8Hz .container {
    max-width: 1400px;
  }
}
.cid-tD7jlNH8Hz .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tD7jlNH8Hz .card-wrapper {
  margin-top: 3rem;
}
.cid-tD7jlNH8Hz .row {
  justify-content: center;
}
.cid-tD7jlNH8Hz .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tD7jlNH8Hz .card-title,
.cid-tD7jlNH8Hz .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tD7j60elq9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tD7j60elq9 .mbr-section-title {
  color: #08375e;
}
.cid-tD7j7gu6KN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tD7j7gu6KN .container {
    max-width: 1400px;
  }
}
.cid-tD7j7gu6KN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tD7j7gu6KN .card-wrapper {
  margin-top: 3rem;
}
.cid-tD7j7gu6KN .row {
  justify-content: center;
}
.cid-tD7j7gu6KN .card-title,
.cid-tD7j7gu6KN .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tD7j7gu6KN .card-text {
  color: #08375e;
  text-align: left;
}
.cid-tD7oNnO8C7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tD7oNnO8C7 .mbr-section-title {
  color: #ffffff;
}
.cid-tD7oPpDqpd {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tD7oPpDqpd .container {
    max-width: 1400px;
  }
}
.cid-tD7oPpDqpd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tD7oPpDqpd .card-wrapper {
  margin-top: 3rem;
}
.cid-tD7oPpDqpd .row {
  justify-content: center;
}
.cid-tD7oPpDqpd .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tD7oPpDqpd .card-title,
.cid-tD7oPpDqpd .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tD7r3YlmJJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tD7r3YlmJJ .mbr-section-title {
  color: #08375e;
}
.cid-tD7r2LTRpZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tD7r2LTRpZ .container {
    max-width: 1400px;
  }
}
.cid-tD7r2LTRpZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tD7r2LTRpZ .card-wrapper {
  margin-top: 3rem;
}
.cid-tD7r2LTRpZ .row {
  justify-content: center;
}
.cid-tD7r2LTRpZ .card-title,
.cid-tD7r2LTRpZ .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tD7r2LTRpZ .card-text {
  color: #08375e;
  text-align: left;
}
.cid-tD6u2DUvKh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
@media (max-width: 991px) {
  .cid-tD6u2DUvKh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD6u2DUvKh .row {
  flex-direction: row-reverse;
}
.cid-tD6u2DUvKh img {
  width: 100%;
}
.cid-tD6wM0P3gy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tD6wM0P3gy .mbr-section-title {
  color: #08375e;
}
.cid-tD6wM0P3gy .mbr-section-subtitle {
  color: #08375e;
}
.cid-tD6xahYnAv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tD6xahYnAv .mbr-section-subtitle {
  color: #08375e;
}
.cid-tD0XkXbg0o {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-tD0XkXzEqV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tD0XkXzEqV .mbr-section-title {
  color: #08375e;
}
.cid-tD0XkYeeAN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tD0XkYeeAN .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tD0XkYeeAN .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tD0XkYeeAN .mbr-section-title {
  color: #ffffff;
}
.cid-tD0XkYeeAN .mbr-text {
  color: #ffffff;
}
.cid-tD0XkYeeAN .position {
  color: #ffffff;
}
.cid-tD0XkYeeAN .name {
  color: #ff8a8a;
}
.cid-tD0XkYQrjO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tD0XkYQrjO .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tD0XkYQrjO .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tD0XkYQrjO .mbr-text {
  color: #ffffff;
}
.cid-tD0XkYQrjO .name {
  color: #ff8a8a;
}
.cid-tD0XkYQrjO .position {
  color: #ffffff;
}
.cid-tD0XkZtryc {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ff5f5f;
}
.cid-tD0XkZtryc .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tD0XkZtryc .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tD0XkZtryc .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tD0XkZtryc .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tD0XkZtryc .mbr-text {
  text-align: center;
}
.cid-tD0XkZtryc .card-title {
  color: #08375e;
}
.cid-tD0XkZtryc .mbr-section-title {
  color: #232323;
}
.cid-tD0Xl085Em {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tD0Xl085Em .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tD0Xl085Em .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tD0Xl085Em .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tD0Xl085Em .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tD0Xl085Em .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tD0Xl085Em .bg-instagram:hover {
  background: #bd005c;
}
.cid-tD0Xl085Em .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tD0Xl085Em .bg-youtube:hover {
  background: #cc0000;
}
.cid-tD0Xl085Em .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tD0Xl085Em [class^="socicon-"]:before,
.cid-tD0Xl085Em [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tD0Xl0Unhz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #143056;
}
.cid-tD0Xl0Unhz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tD0Xl1qY8g {
  z-index: 1000;
  width: 100%;
}
.cid-tD0Xl1qY8g nav.navbar {
  position: fixed;
}
.cid-tD0Xl1qY8g .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-tD0Xl1qY8g .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tD0Xl1qY8g .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tD0Xl1qY8g .dropdown-item:hover,
.cid-tD0Xl1qY8g .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tD0Xl1qY8g .dropdown-item:hover span {
  color: white;
}
.cid-tD0Xl1qY8g .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD0Xl1qY8g .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD0Xl1qY8g .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD0Xl1qY8g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD0Xl1qY8g .nav-link {
  position: relative;
}
.cid-tD0Xl1qY8g .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tD0Xl1qY8g .container {
    flex-wrap: nowrap;
  }
}
.cid-tD0Xl1qY8g .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD0Xl1qY8g .dropdown-menu,
.cid-tD0Xl1qY8g .navbar.opened {
  background: #08375e !important;
}
.cid-tD0Xl1qY8g .nav-item:focus,
.cid-tD0Xl1qY8g .nav-link:focus {
  outline: none;
}
.cid-tD0Xl1qY8g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD0Xl1qY8g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD0Xl1qY8g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD0Xl1qY8g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD0Xl1qY8g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD0Xl1qY8g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD0Xl1qY8g .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #08375e;
}
.cid-tD0Xl1qY8g .navbar.opened {
  transition: all 0.3s;
}
.cid-tD0Xl1qY8g .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tD0Xl1qY8g .navbar .navbar-logo img {
  width: auto;
}
.cid-tD0Xl1qY8g .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD0Xl1qY8g .navbar.collapsed {
  justify-content: center;
}
.cid-tD0Xl1qY8g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD0Xl1qY8g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tD0Xl1qY8g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tD0Xl1qY8g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD0Xl1qY8g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD0Xl1qY8g .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-tD0Xl1qY8g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD0Xl1qY8g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD0Xl1qY8g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD0Xl1qY8g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD0Xl1qY8g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD0Xl1qY8g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD0Xl1qY8g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD0Xl1qY8g .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-tD0Xl1qY8g .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD0Xl1qY8g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD0Xl1qY8g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD0Xl1qY8g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD0Xl1qY8g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD0Xl1qY8g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tD0Xl1qY8g .navbar.navbar-short {
  min-height: 60px;
}
.cid-tD0Xl1qY8g .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD0Xl1qY8g .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tD0Xl1qY8g .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tD0Xl1qY8g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD0Xl1qY8g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD0Xl1qY8g .dropdown-item.active,
.cid-tD0Xl1qY8g .dropdown-item:active {
  background-color: transparent;
}
.cid-tD0Xl1qY8g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD0Xl1qY8g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD0Xl1qY8g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD0Xl1qY8g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08375e;
}
.cid-tD0Xl1qY8g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD0Xl1qY8g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD0Xl1qY8g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD0Xl1qY8g .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD0Xl1qY8g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD0Xl1qY8g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tD0Xl1qY8g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD0Xl1qY8g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD0Xl1qY8g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD0Xl1qY8g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD0Xl1qY8g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD0Xl1qY8g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD0Xl1qY8g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD0Xl1qY8g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD0Xl1qY8g .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD0Xl1qY8g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD0Xl1qY8g .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tD0Xl1qY8g .navbar {
    height: 70px;
  }
  .cid-tD0Xl1qY8g .navbar.opened {
    height: auto;
  }
  .cid-tD0Xl1qY8g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE44HpaKBV {
  padding-top: 9rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tE44HpaKBV .mbr-section-title {
  color: #08375e;
}
.cid-tE44HpaKBV .mbr-section-subtitle {
  text-align: center;
  color: #08375e;
}
.cid-tE44HpBn3M {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tE44HpBn3M .mbr-section-title {
  color: #ffffff;
}
.cid-tE44HqXiZp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tE44HqXiZp .container {
    max-width: 1400px;
  }
}
.cid-tE44HqXiZp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE44HqXiZp .card-wrapper {
  margin-top: 3rem;
}
.cid-tE44HqXiZp .row {
  justify-content: center;
}
.cid-tE44HqXiZp .card-title,
.cid-tE44HqXiZp .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tE44HqXiZp .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-tE44Hs1KL8 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tE44Hs1KL8 .container {
    max-width: 1400px;
  }
}
.cid-tE44Hs1KL8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE44Hs1KL8 .card-wrapper {
  margin-top: 3rem;
}
.cid-tE44Hs1KL8 .row {
  justify-content: center;
}
.cid-tE44Hs1KL8 .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tE44Hs1KL8 .card-title,
.cid-tE44Hs1KL8 .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tE44HsM1Tj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE44HsM1Tj .mbr-section-title {
  color: #08375e;
}
.cid-tE44Ht8izf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tE44Ht8izf .container {
    max-width: 1400px;
  }
}
.cid-tE44Ht8izf .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE44Ht8izf .card-wrapper {
  margin-top: 3rem;
}
.cid-tE44Ht8izf .row {
  justify-content: center;
}
.cid-tE44Ht8izf .card-text {
  text-align: left;
  color: #08375e;
}
.cid-tE44Ht8izf .card-title,
.cid-tE44Ht8izf .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tE44HtGrzj {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tE44HtGrzj .container {
    max-width: 1400px;
  }
}
.cid-tE44HtGrzj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE44HtGrzj .card-wrapper {
  margin-top: 3rem;
}
.cid-tE44HtGrzj .row {
  justify-content: center;
}
.cid-tE44HtGrzj .card-title,
.cid-tE44HtGrzj .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tE44HtGrzj .card-text {
  color: #08375e;
  text-align: left;
}
.cid-tE44HueLcy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tE44HueLcy .mbr-section-title {
  color: #ffffff;
}
.cid-tE44HuF4wj {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tE44HuF4wj .container {
    max-width: 1400px;
  }
}
.cid-tE44HuF4wj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE44HuF4wj .card-wrapper {
  margin-top: 3rem;
}
.cid-tE44HuF4wj .row {
  justify-content: center;
}
.cid-tE44HuF4wj .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tE44HuF4wj .card-title,
.cid-tE44HuF4wj .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tE44HvfYKP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE44HvfYKP .mbr-section-title {
  color: #08375e;
}
.cid-tE44HvM4Mf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tE44HvM4Mf .container {
    max-width: 1400px;
  }
}
.cid-tE44HvM4Mf .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE44HvM4Mf .card-wrapper {
  margin-top: 3rem;
}
.cid-tE44HvM4Mf .row {
  justify-content: center;
}
.cid-tE44HvM4Mf .card-title,
.cid-tE44HvM4Mf .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tE44HvM4Mf .card-text {
  color: #08375e;
  text-align: left;
}
.cid-tE44Hwmu5Q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tE44Hwmu5Q .mbr-section-title {
  color: #ffffff;
}
.cid-tE44HwOf2A {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #08375e;
}
@media (min-width: 1500px) {
  .cid-tE44HwOf2A .container {
    max-width: 1400px;
  }
}
.cid-tE44HwOf2A .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE44HwOf2A .card-wrapper {
  margin-top: 3rem;
}
.cid-tE44HwOf2A .row {
  justify-content: center;
}
.cid-tE44HwOf2A .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-tE44HwOf2A .card-title,
.cid-tE44HwOf2A .iconfont-wrapper {
  color: #ff9966;
  text-align: left;
}
.cid-tE44HxxEtS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE44HxxEtS .mbr-section-title {
  color: #08375e;
}
.cid-tE44Hy2IcO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
@media (min-width: 1500px) {
  .cid-tE44Hy2IcO .container {
    max-width: 1400px;
  }
}
.cid-tE44Hy2IcO .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE44Hy2IcO .card-wrapper {
  margin-top: 3rem;
}
.cid-tE44Hy2IcO .row {
  justify-content: center;
}
.cid-tE44Hy2IcO .card-title,
.cid-tE44Hy2IcO .iconfont-wrapper {
  color: #4c4545;
  text-align: left;
}
.cid-tE44Hy2IcO .card-text {
  color: #08375e;
  text-align: left;
}
.cid-tE7XhAEicl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tE7XhAEicl .mbr-section-title {
  color: #ffffff;
}
.cid-tE7WEDOVaK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tE7WEDOVaK .card-wrapper {
  background: #08375e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tE7WEDOVaK .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tE7WEDOVaK .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tE7WEDOVaK .card-wrapper {
    padding: 4rem;
  }
}
.cid-tE7WEDOVaK .mbr-text,
.cid-tE7WEDOVaK .mbr-section-btn {
  color: #ffb18a;
  text-align: center;
}
.cid-tE7WEDOVaK .card-title,
.cid-tE7WEDOVaK .card-box {
  text-align: center;
}
.cid-tE44HyGKgI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
@media (max-width: 991px) {
  .cid-tE44HyGKgI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tE44HyGKgI .row {
  flex-direction: row-reverse;
}
.cid-tE44HyGKgI img {
  width: 100%;
}
.cid-tE44Hz7ulm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE44Hz7ulm .mbr-section-title {
  color: #08375e;
}
.cid-tE44Hz7ulm .mbr-section-subtitle {
  color: #08375e;
}
.cid-tE44Hzyrle {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tE44Hzyrle .mbr-section-subtitle {
  color: #08375e;
}
.cid-tE44HA5ohu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-tE44HAzFFz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tE44HAzFFz .mbr-section-title {
  color: #08375e;
}
.cid-tE44HBk8e5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-tE44HBk8e5 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tE44HBk8e5 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tE44HBk8e5 .mbr-section-title {
  color: #ffffff;
}
.cid-tE44HBk8e5 .mbr-text {
  color: #ffffff;
}
.cid-tE44HBk8e5 .position {
  color: #ffffff;
}
.cid-tE44HBk8e5 .name {
  color: #ff8a8a;
}
.cid-urq4HGxcGw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urq4HGxcGw .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urq4HGxcGw .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urq4HGxcGw .mbr-text {
  color: #ffffff;
}
.cid-urq4HGxcGw .name {
  color: #ff8a8a;
}
.cid-urq4HGxcGw .position {
  color: #ffffff;
}
.cid-urq4IZvvOO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urq4IZvvOO .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urq4IZvvOO .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urq4IZvvOO .mbr-text {
  color: #ffffff;
}
.cid-urq4IZvvOO .name {
  color: #ff8a8a;
}
.cid-urq4IZvvOO .position {
  color: #ffffff;
}
.cid-urq4KkivlY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urq4KkivlY .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urq4KkivlY .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urq4KkivlY .mbr-text {
  color: #ffffff;
}
.cid-urq4KkivlY .name {
  color: #ff8a8a;
}
.cid-urq4KkivlY .position {
  color: #ffffff;
}
.cid-tE44HDt4xV {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ff5f5f;
}
.cid-tE44HDt4xV .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tE44HDt4xV .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tE44HDt4xV .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tE44HDt4xV .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tE44HDt4xV .mbr-text {
  text-align: center;
}
.cid-tE44HDt4xV .card-title {
  color: #08375e;
}
.cid-tE44HDt4xV .mbr-section-title {
  color: #232323;
}
.cid-ur74wqWeSe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #143056;
}
.cid-ur74wqWeSe .google-map {
  height: 30rem;
  position: relative;
}
.cid-ur74wqWeSe .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ur74wqWeSe .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ur74wqWeSe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ur74wqWeSe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tE44HE8wEX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-tE44HE8wEX .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tE44HE8wEX .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tE44HE8wEX .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tE44HE8wEX .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tE44HE8wEX .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tE44HE8wEX .bg-instagram:hover {
  background: #bd005c;
}
.cid-tE44HE8wEX .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tE44HE8wEX .bg-youtube:hover {
  background: #cc0000;
}
.cid-tE44HE8wEX .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tE44HE8wEX [class^="socicon-"]:before,
.cid-tE44HE8wEX [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tE44HEXM4U {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #143056;
}
.cid-tE44HEXM4U .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tE44HFyBYk {
  z-index: 1000;
  width: 100%;
}
.cid-tE44HFyBYk nav.navbar {
  position: fixed;
}
.cid-tE44HFyBYk .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-tE44HFyBYk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tE44HFyBYk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tE44HFyBYk .dropdown-item:hover,
.cid-tE44HFyBYk .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tE44HFyBYk .dropdown-item:hover span {
  color: white;
}
.cid-tE44HFyBYk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tE44HFyBYk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tE44HFyBYk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tE44HFyBYk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tE44HFyBYk .nav-link {
  position: relative;
}
.cid-tE44HFyBYk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tE44HFyBYk .container {
    flex-wrap: nowrap;
  }
}
.cid-tE44HFyBYk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tE44HFyBYk .dropdown-menu,
.cid-tE44HFyBYk .navbar.opened {
  background: #08375e !important;
}
.cid-tE44HFyBYk .nav-item:focus,
.cid-tE44HFyBYk .nav-link:focus {
  outline: none;
}
.cid-tE44HFyBYk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tE44HFyBYk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tE44HFyBYk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tE44HFyBYk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tE44HFyBYk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tE44HFyBYk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tE44HFyBYk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #08375e;
}
.cid-tE44HFyBYk .navbar.opened {
  transition: all 0.3s;
}
.cid-tE44HFyBYk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tE44HFyBYk .navbar .navbar-logo img {
  width: auto;
}
.cid-tE44HFyBYk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tE44HFyBYk .navbar.collapsed {
  justify-content: center;
}
.cid-tE44HFyBYk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tE44HFyBYk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tE44HFyBYk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tE44HFyBYk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tE44HFyBYk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tE44HFyBYk .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-tE44HFyBYk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tE44HFyBYk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tE44HFyBYk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tE44HFyBYk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tE44HFyBYk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tE44HFyBYk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tE44HFyBYk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tE44HFyBYk .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-tE44HFyBYk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tE44HFyBYk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tE44HFyBYk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tE44HFyBYk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tE44HFyBYk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tE44HFyBYk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tE44HFyBYk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tE44HFyBYk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tE44HFyBYk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tE44HFyBYk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tE44HFyBYk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tE44HFyBYk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tE44HFyBYk .dropdown-item.active,
.cid-tE44HFyBYk .dropdown-item:active {
  background-color: transparent;
}
.cid-tE44HFyBYk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tE44HFyBYk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tE44HFyBYk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tE44HFyBYk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08375e;
}
.cid-tE44HFyBYk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tE44HFyBYk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tE44HFyBYk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tE44HFyBYk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tE44HFyBYk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tE44HFyBYk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tE44HFyBYk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tE44HFyBYk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE44HFyBYk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE44HFyBYk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tE44HFyBYk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE44HFyBYk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tE44HFyBYk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tE44HFyBYk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE44HFyBYk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tE44HFyBYk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tE44HFyBYk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tE44HFyBYk .navbar {
    height: 70px;
  }
  .cid-tE44HFyBYk .navbar.opened {
    height: auto;
  }
  .cid-tE44HFyBYk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urmHH26iQ1 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-urmHH26iQ1 .mbr-section-title {
  color: #143056;
}
.cid-urmHH26iQ1 .mbr-section-subtitle {
  color: #143056;
}
.cid-urmGWgt9cP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #143056;
}
.cid-urmGWgt9cP .item {
  padding-bottom: 2rem;
}
.cid-urmGWgt9cP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-urmGWgt9cP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-urmGWgt9cP .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-urmGWgt9cP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urmGWgt9cP .carousel-control,
.cid-urmGWgt9cP .close {
  background: #1b1b1b;
}
.cid-urmGWgt9cP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urmGWgt9cP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urmGWgt9cP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urmGWgt9cP .carousel-control-next span {
  margin-left: 5px;
}
.cid-urmGWgt9cP .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-urmGWgt9cP .close::before {
  content: '\e91a';
}
.cid-urmGWgt9cP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urmGWgt9cP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-urmGWgt9cP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmGWgt9cP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urmGWgt9cP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urmGWgt9cP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urmGWgt9cP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-urmGWgt9cP .carousel-indicators li.active,
.cid-urmGWgt9cP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urmGWgt9cP .carousel-indicators li::after,
.cid-urmGWgt9cP .carousel-indicators li::before {
  content: none;
}
.cid-urmGWgt9cP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urmGWgt9cP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urmGWgt9cP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urmGWgt9cP .carousel-indicators {
    display: none;
  }
}
.cid-urmGWgt9cP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urmGWgt9cP .carousel-inner > .active {
  display: block;
}
.cid-urmGWgt9cP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmGWgt9cP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urmGWgt9cP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urmGWgt9cP .carousel-control,
  .cid-urmGWgt9cP .carousel-indicators,
  .cid-urmGWgt9cP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urmGWgt9cP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urmGWgt9cP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urmGWgt9cP .carousel-indicators .active,
.cid-urmGWgt9cP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urmGWgt9cP .carousel-indicators .active {
  background: #fff;
}
.cid-urmGWgt9cP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urmGWgt9cP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urmGWgt9cP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urmGWgt9cP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urmGWgt9cP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urmGWgt9cP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urmGWgt9cP .carousel {
  width: 100%;
}
.cid-urmGWgt9cP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urmGWgt9cP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urmGWgt9cP .modal.fade .modal-dialog,
.cid-urmGWgt9cP .modal.in .modal-dialog {
  transform: none;
}
.cid-urmGWgt9cP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urmGWgt9cP H6 {
  text-align: center;
}
.cid-urmLG9ftoV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff5f5f;
}
.cid-urmLG9ftoV .item {
  padding-bottom: 2rem;
}
.cid-urmLG9ftoV .item-wrapper {
  position: relative;
}
.cid-urmLG9ftoV .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-urmLG9ftoV .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urmLG9ftoV .carousel-control,
.cid-urmLG9ftoV .close {
  background: #1b1b1b;
}
.cid-urmLG9ftoV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urmLG9ftoV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urmLG9ftoV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urmLG9ftoV .carousel-control-next span {
  margin-left: 5px;
}
.cid-urmLG9ftoV .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-urmLG9ftoV .close::before {
  content: '\e91a';
}
.cid-urmLG9ftoV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urmLG9ftoV .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-urmLG9ftoV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmLG9ftoV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urmLG9ftoV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urmLG9ftoV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urmLG9ftoV .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-urmLG9ftoV .carousel-indicators li.active,
.cid-urmLG9ftoV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urmLG9ftoV .carousel-indicators li::after,
.cid-urmLG9ftoV .carousel-indicators li::before {
  content: none;
}
.cid-urmLG9ftoV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urmLG9ftoV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urmLG9ftoV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urmLG9ftoV .carousel-indicators {
    display: none;
  }
}
.cid-urmLG9ftoV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urmLG9ftoV .carousel-inner > .active {
  display: block;
}
.cid-urmLG9ftoV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmLG9ftoV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urmLG9ftoV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urmLG9ftoV .carousel-control,
  .cid-urmLG9ftoV .carousel-indicators,
  .cid-urmLG9ftoV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urmLG9ftoV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urmLG9ftoV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urmLG9ftoV .carousel-indicators .active,
.cid-urmLG9ftoV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urmLG9ftoV .carousel-indicators .active {
  background: #fff;
}
.cid-urmLG9ftoV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urmLG9ftoV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urmLG9ftoV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urmLG9ftoV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urmLG9ftoV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urmLG9ftoV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urmLG9ftoV .carousel {
  width: 100%;
}
.cid-urmLG9ftoV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urmLG9ftoV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urmLG9ftoV .modal.fade .modal-dialog,
.cid-urmLG9ftoV .modal.in .modal-dialog {
  transform: none;
}
.cid-urmLG9ftoV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urmLG9ftoV H6 {
  text-align: center;
}
.cid-urmLHKUUME {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #143056;
}
.cid-urmLHKUUME .item {
  padding-bottom: 2rem;
}
.cid-urmLHKUUME .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-urmLHKUUME .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-urmLHKUUME .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-urmLHKUUME .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urmLHKUUME .carousel-control,
.cid-urmLHKUUME .close {
  background: #1b1b1b;
}
.cid-urmLHKUUME .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urmLHKUUME .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urmLHKUUME .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urmLHKUUME .carousel-control-next span {
  margin-left: 5px;
}
.cid-urmLHKUUME .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-urmLHKUUME .close::before {
  content: '\e91a';
}
.cid-urmLHKUUME .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urmLHKUUME .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-urmLHKUUME .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmLHKUUME .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urmLHKUUME .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urmLHKUUME .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urmLHKUUME .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-urmLHKUUME .carousel-indicators li.active,
.cid-urmLHKUUME .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urmLHKUUME .carousel-indicators li::after,
.cid-urmLHKUUME .carousel-indicators li::before {
  content: none;
}
.cid-urmLHKUUME .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urmLHKUUME .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urmLHKUUME .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urmLHKUUME .carousel-indicators {
    display: none;
  }
}
.cid-urmLHKUUME .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urmLHKUUME .carousel-inner > .active {
  display: block;
}
.cid-urmLHKUUME .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmLHKUUME .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urmLHKUUME .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urmLHKUUME .carousel-control,
  .cid-urmLHKUUME .carousel-indicators,
  .cid-urmLHKUUME .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urmLHKUUME .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urmLHKUUME .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urmLHKUUME .carousel-indicators .active,
.cid-urmLHKUUME .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urmLHKUUME .carousel-indicators .active {
  background: #fff;
}
.cid-urmLHKUUME .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urmLHKUUME .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urmLHKUUME .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urmLHKUUME .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urmLHKUUME .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urmLHKUUME .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urmLHKUUME .carousel {
  width: 100%;
}
.cid-urmLHKUUME .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urmLHKUUME .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urmLHKUUME .modal.fade .modal-dialog,
.cid-urmLHKUUME .modal.in .modal-dialog {
  transform: none;
}
.cid-urmLHKUUME .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urmLHKUUME H6 {
  text-align: center;
}
.cid-urmQqW08zV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff5f5f;
}
.cid-urmQqW08zV .item {
  padding-bottom: 2rem;
}
.cid-urmQqW08zV .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-urmQqW08zV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-urmQqW08zV .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-urmQqW08zV .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urmQqW08zV .carousel-control,
.cid-urmQqW08zV .close {
  background: #1b1b1b;
}
.cid-urmQqW08zV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urmQqW08zV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urmQqW08zV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urmQqW08zV .carousel-control-next span {
  margin-left: 5px;
}
.cid-urmQqW08zV .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-urmQqW08zV .close::before {
  content: '\e91a';
}
.cid-urmQqW08zV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urmQqW08zV .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-urmQqW08zV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmQqW08zV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urmQqW08zV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urmQqW08zV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urmQqW08zV .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-urmQqW08zV .carousel-indicators li.active,
.cid-urmQqW08zV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urmQqW08zV .carousel-indicators li::after,
.cid-urmQqW08zV .carousel-indicators li::before {
  content: none;
}
.cid-urmQqW08zV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urmQqW08zV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urmQqW08zV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urmQqW08zV .carousel-indicators {
    display: none;
  }
}
.cid-urmQqW08zV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urmQqW08zV .carousel-inner > .active {
  display: block;
}
.cid-urmQqW08zV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmQqW08zV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urmQqW08zV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urmQqW08zV .carousel-control,
  .cid-urmQqW08zV .carousel-indicators,
  .cid-urmQqW08zV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urmQqW08zV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urmQqW08zV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urmQqW08zV .carousel-indicators .active,
.cid-urmQqW08zV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urmQqW08zV .carousel-indicators .active {
  background: #fff;
}
.cid-urmQqW08zV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urmQqW08zV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urmQqW08zV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urmQqW08zV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urmQqW08zV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urmQqW08zV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urmQqW08zV .carousel {
  width: 100%;
}
.cid-urmQqW08zV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urmQqW08zV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urmQqW08zV .modal.fade .modal-dialog,
.cid-urmQqW08zV .modal.in .modal-dialog {
  transform: none;
}
.cid-urmQqW08zV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urmQqW08zV H6 {
  text-align: center;
}
.cid-urmRAmVoDw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #143056;
}
.cid-urmRAmVoDw .item {
  padding-bottom: 2rem;
}
.cid-urmRAmVoDw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-urmRAmVoDw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-urmRAmVoDw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-urmRAmVoDw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urmRAmVoDw .carousel-control,
.cid-urmRAmVoDw .close {
  background: #1b1b1b;
}
.cid-urmRAmVoDw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urmRAmVoDw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urmRAmVoDw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urmRAmVoDw .carousel-control-next span {
  margin-left: 5px;
}
.cid-urmRAmVoDw .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-urmRAmVoDw .close::before {
  content: '\e91a';
}
.cid-urmRAmVoDw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urmRAmVoDw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-urmRAmVoDw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmRAmVoDw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urmRAmVoDw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urmRAmVoDw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urmRAmVoDw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-urmRAmVoDw .carousel-indicators li.active,
.cid-urmRAmVoDw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urmRAmVoDw .carousel-indicators li::after,
.cid-urmRAmVoDw .carousel-indicators li::before {
  content: none;
}
.cid-urmRAmVoDw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urmRAmVoDw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urmRAmVoDw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urmRAmVoDw .carousel-indicators {
    display: none;
  }
}
.cid-urmRAmVoDw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urmRAmVoDw .carousel-inner > .active {
  display: block;
}
.cid-urmRAmVoDw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urmRAmVoDw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urmRAmVoDw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urmRAmVoDw .carousel-control,
  .cid-urmRAmVoDw .carousel-indicators,
  .cid-urmRAmVoDw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urmRAmVoDw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urmRAmVoDw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urmRAmVoDw .carousel-indicators .active,
.cid-urmRAmVoDw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urmRAmVoDw .carousel-indicators .active {
  background: #fff;
}
.cid-urmRAmVoDw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urmRAmVoDw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urmRAmVoDw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urmRAmVoDw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urmRAmVoDw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urmRAmVoDw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urmRAmVoDw .carousel {
  width: 100%;
}
.cid-urmRAmVoDw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urmRAmVoDw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urmRAmVoDw .modal.fade .modal-dialog,
.cid-urmRAmVoDw .modal.in .modal-dialog {
  transform: none;
}
.cid-urmRAmVoDw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urmRAmVoDw H6 {
  text-align: center;
}
.cid-urmDal7oxT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-urmDalLLZk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-urmDalLLZk .mbr-section-title {
  color: #08375e;
}
.cid-urmDamD9Ug {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urmDamD9Ug .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urmDamD9Ug .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urmDamD9Ug .mbr-section-title {
  color: #ffffff;
}
.cid-urmDamD9Ug .mbr-text {
  color: #ffffff;
}
.cid-urmDamD9Ug .position {
  color: #ffffff;
}
.cid-urmDamD9Ug .name {
  color: #ff8a8a;
}
.cid-urmDanzKzQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urmDanzKzQ .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urmDanzKzQ .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urmDanzKzQ .mbr-text {
  color: #ffffff;
}
.cid-urmDanzKzQ .name {
  color: #ff8a8a;
}
.cid-urmDanzKzQ .position {
  color: #ffffff;
}
.cid-urmDaosCX3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urmDaosCX3 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urmDaosCX3 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urmDaosCX3 .mbr-text {
  color: #ffffff;
}
.cid-urmDaosCX3 .name {
  color: #ff8a8a;
}
.cid-urmDaosCX3 .position {
  color: #ffffff;
}
.cid-urmDapgZLJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #08375e;
}
.cid-urmDapgZLJ .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-urmDapgZLJ .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-urmDapgZLJ .mbr-text {
  color: #ffffff;
}
.cid-urmDapgZLJ .name {
  color: #ff8a8a;
}
.cid-urmDapgZLJ .position {
  color: #ffffff;
}
.cid-urmDapYnXb {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ff5f5f;
}
.cid-urmDapYnXb .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-urmDapYnXb .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-urmDapYnXb .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-urmDapYnXb .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-urmDapYnXb .mbr-text {
  text-align: center;
}
.cid-urmDapYnXb .card-title {
  color: #08375e;
}
.cid-urmDapYnXb .mbr-section-title {
  color: #232323;
}
.cid-urmDaqQcP1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #143056;
}
.cid-urmDaqQcP1 .google-map {
  height: 30rem;
  position: relative;
}
.cid-urmDaqQcP1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-urmDaqQcP1 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-urmDaqQcP1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-urmDaqQcP1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-urmDaAuOA8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/phone-geometry-polygon-art-hd-wallpaper-preview.jpg");
}
.cid-urmDaAuOA8 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-urmDaAuOA8 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-urmDaAuOA8 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-urmDaAuOA8 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-urmDaAuOA8 .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-urmDaAuOA8 .bg-instagram:hover {
  background: #bd005c;
}
.cid-urmDaAuOA8 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-urmDaAuOA8 .bg-youtube:hover {
  background: #cc0000;
}
.cid-urmDaAuOA8 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-urmDaAuOA8 [class^="socicon-"]:before,
.cid-urmDaAuOA8 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-urmDaBI0DI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #143056;
}
.cid-urmDaBI0DI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-urmDaCyAzf {
  z-index: 1000;
  width: 100%;
}
.cid-urmDaCyAzf nav.navbar {
  position: fixed;
}
.cid-urmDaCyAzf .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-urmDaCyAzf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urmDaCyAzf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urmDaCyAzf .dropdown-item:hover,
.cid-urmDaCyAzf .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-urmDaCyAzf .dropdown-item:hover span {
  color: white;
}
.cid-urmDaCyAzf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urmDaCyAzf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urmDaCyAzf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urmDaCyAzf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urmDaCyAzf .nav-link {
  position: relative;
}
.cid-urmDaCyAzf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-urmDaCyAzf .container {
    flex-wrap: nowrap;
  }
}
.cid-urmDaCyAzf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urmDaCyAzf .dropdown-menu,
.cid-urmDaCyAzf .navbar.opened {
  background: #08375e !important;
}
.cid-urmDaCyAzf .nav-item:focus,
.cid-urmDaCyAzf .nav-link:focus {
  outline: none;
}
.cid-urmDaCyAzf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urmDaCyAzf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urmDaCyAzf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urmDaCyAzf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urmDaCyAzf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urmDaCyAzf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urmDaCyAzf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #08375e;
}
.cid-urmDaCyAzf .navbar.opened {
  transition: all 0.3s;
}
.cid-urmDaCyAzf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urmDaCyAzf .navbar .navbar-logo img {
  width: auto;
}
.cid-urmDaCyAzf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urmDaCyAzf .navbar.collapsed {
  justify-content: center;
}
.cid-urmDaCyAzf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urmDaCyAzf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urmDaCyAzf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-urmDaCyAzf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urmDaCyAzf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urmDaCyAzf .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-urmDaCyAzf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urmDaCyAzf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urmDaCyAzf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urmDaCyAzf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urmDaCyAzf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urmDaCyAzf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urmDaCyAzf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urmDaCyAzf .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-urmDaCyAzf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urmDaCyAzf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urmDaCyAzf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urmDaCyAzf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urmDaCyAzf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urmDaCyAzf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urmDaCyAzf .navbar.navbar-short {
  min-height: 60px;
}
.cid-urmDaCyAzf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urmDaCyAzf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urmDaCyAzf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urmDaCyAzf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urmDaCyAzf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urmDaCyAzf .dropdown-item.active,
.cid-urmDaCyAzf .dropdown-item:active {
  background-color: transparent;
}
.cid-urmDaCyAzf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urmDaCyAzf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urmDaCyAzf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urmDaCyAzf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08375e;
}
.cid-urmDaCyAzf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urmDaCyAzf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urmDaCyAzf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urmDaCyAzf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urmDaCyAzf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urmDaCyAzf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-urmDaCyAzf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urmDaCyAzf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urmDaCyAzf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urmDaCyAzf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urmDaCyAzf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urmDaCyAzf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urmDaCyAzf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urmDaCyAzf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urmDaCyAzf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urmDaCyAzf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urmDaCyAzf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urmDaCyAzf .navbar {
    height: 70px;
  }
  .cid-urmDaCyAzf .navbar.opened {
    height: auto;
  }
  .cid-urmDaCyAzf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
