body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #08579f !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #17add9 !important;
}
.bg-warning {
  background-color: #2062a1 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #08579f !important;
  border-color: #08579f !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #042f56 !important;
  border-color: #042f56 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #042f56 !important;
  border-color: #042f56 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #0e8f33 !important;
  border-color: #0e8f33 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #07491a !important;
  border-color: #07491a !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #07491a !important;
  border-color: #07491a !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #17add9 !important;
  border-color: #17add9 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #107694 !important;
  border-color: #107694 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #107694 !important;
  border-color: #107694 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #2062a1 !important;
  border-color: #2062a1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #133b61 !important;
  border-color: #133b61 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #133b61 !important;
  border-color: #133b61 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #03223e !important;
  color: #03223e !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #08579f !important;
  border-color: #08579f !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #08579f !important;
  border-color: #08579f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #053212 !important;
  color: #053212 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #0e8f33 !important;
  border-color: #0e8f33 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0e8f33 !important;
  border-color: #0e8f33 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #0d637d !important;
  color: #0d637d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #17add9 !important;
  border-color: #17add9 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #17add9 !important;
  border-color: #17add9 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #0f2e4c !important;
  color: #0f2e4c !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #2062a1 !important;
  border-color: #2062a1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #2062a1 !important;
  border-color: #2062a1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #08579f !important;
}
.text-secondary {
  color: #0e8f33 !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #17add9 !important;
}
.text-warning {
  color: #2062a1 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #03223e !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #053212 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #0d637d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #0f2e4c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #17add9;
}
.alert-warning {
  background-color: #2062a1;
}
.alert-danger {
  background-color: #000000;
}
.mbr-section-btn a.btn {
  border-radius: 100px;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #08579f;
  border-color: #08579f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #08579f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3298f5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c3edf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #61a2e0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #08579f;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #08579f;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #08579f;
}
.btn-social + .btn {
  margin-left: .1rem;
}
@media (min-width: 768px) {
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #08579f;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #08579f;
  border-bottom-color: #08579f;
}
.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: #08579f !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: #0e8f33 !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%;
}
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='%2308579f' %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;
}
.cid-ts3jGhy7Ss {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ts3jGhy7Ss nav.navbar {
  position: fixed;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ts3jGhy7Ss .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ts3jGhy7Ss .dropdown-item:hover,
.cid-ts3jGhy7Ss .dropdown-item:focus {
  background: #08579f !important;
  color: white !important;
}
.cid-ts3jGhy7Ss .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ts3jGhy7Ss .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ts3jGhy7Ss .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ts3jGhy7Ss .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ts3jGhy7Ss .nav-link {
  position: relative;
}
.cid-ts3jGhy7Ss .container {
  display: flex;
  margin: auto;
}
.cid-ts3jGhy7Ss .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ts3jGhy7Ss .dropdown-menu,
.cid-ts3jGhy7Ss .navbar.opened {
  background: #ffffff !important;
}
.cid-ts3jGhy7Ss .nav-item:focus,
.cid-ts3jGhy7Ss .nav-link:focus {
  outline: none;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ts3jGhy7Ss .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ts3jGhy7Ss .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ts3jGhy7Ss .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-ts3jGhy7Ss .navbar.opened {
  transition: all 0.3s;
}
.cid-ts3jGhy7Ss .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ts3jGhy7Ss .navbar .navbar-logo img {
  width: auto;
}
.cid-ts3jGhy7Ss .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ts3jGhy7Ss .navbar.collapsed {
  justify-content: center;
}
.cid-ts3jGhy7Ss .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ts3jGhy7Ss .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ts3jGhy7Ss .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ts3jGhy7Ss .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ts3jGhy7Ss .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ts3jGhy7Ss .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ts3jGhy7Ss .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ts3jGhy7Ss .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ts3jGhy7Ss .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ts3jGhy7Ss .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ts3jGhy7Ss .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ts3jGhy7Ss .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ts3jGhy7Ss .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ts3jGhy7Ss .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ts3jGhy7Ss .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ts3jGhy7Ss .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ts3jGhy7Ss .navbar.navbar-short {
  min-height: 60px;
}
.cid-ts3jGhy7Ss .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ts3jGhy7Ss .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ts3jGhy7Ss .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ts3jGhy7Ss .dropdown-item.active,
.cid-ts3jGhy7Ss .dropdown-item:active {
  background-color: transparent;
}
.cid-ts3jGhy7Ss .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ts3jGhy7Ss .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ts3jGhy7Ss .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ts3jGhy7Ss .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ts3jGhy7Ss .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ts3jGhy7Ss .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ts3jGhy7Ss ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ts3jGhy7Ss .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ts3jGhy7Ss button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ts3jGhy7Ss a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar {
    height: 70px;
  }
  .cid-ts3jGhy7Ss .navbar.opened {
    height: auto;
  }
  .cid-ts3jGhy7Ss .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s5Rvc2h05m {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1350.png");
}
.cid-s5Rvc2h05m .mbr-overlay {
  background: #d1e3f3;
  background: linear-gradient(90deg, #d1e3f3, #0071bd);
}
.cid-s5Rvc2h05m .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-s5Rvc2h05m .mbr-section-subtitle,
.cid-s5Rvc2h05m .mbr-section-btn {
  color: #ffffff;
}
.cid-s5Rvc2h05m H1 {
  color: #ffffff;
}
.cid-tMgmonyiuZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tMgmonyiuZ .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tMgmonyiuZ .mbr-section-title {
  margin: 0;
}
.cid-tMgmonyiuZ .card-img {
  text-align: center;
}
.cid-tMgmonyiuZ .mbr-section-subtitle,
.cid-tMgmonyiuZ .mbr-text {
  color: #8d97ad;
}
.cid-tMgmonyiuZ .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tMgmonyiuZ .card-img,
  .cid-tMgmonyiuZ .mbr-text,
  .cid-tMgmonyiuZ .mbr-card-title,
  .cid-tMgmonyiuZ .mbr-section-subtitle,
  .cid-tMgmonyiuZ .mbr-section-title,
  .cid-tMgmonyiuZ .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tMgmonyiuZ .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tMgmonyiuZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMgmonyiuZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMgmonyiuZ .mbr-text {
  color: #444444;
}
.cid-ts2WE96TFR {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ts2WE96TFR .mbr-section-subtitle {
  color: #8d97ad;
  text-align: center;
}
.cid-ts2WE96TFR .mbr-section-title {
  text-align: center;
}
.cid-ts2Uj2Odcc {
  padding-top: 3rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-ts2Uj2Odcc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts2Uj2Odcc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts2Uj2Odcc .row {
  justify-content: center;
}
.cid-ts2Uj2Odcc .item {
  margin-bottom: 40px;
  padding: 0 32px !important;
}
@media (max-width: 992px) {
  .cid-ts2Uj2Odcc .item {
    padding: 0 12px !important;
  }
}
.cid-ts2Uj2Odcc .link-wrapper {
  display: block;
}
.cid-ts2Uj2Odcc .link-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-ts2Uj2Odcc .link-wrapper:hover .mbr-date:last-child {
  opacity: .7;
}
.cid-ts2Uj2Odcc .link-wrapper:hover .mbr-section-title {
  opacity: .7;
}
.cid-ts2Uj2Odcc .link-wrapper .image-wrapper {
  overflow: hidden;
  margin-bottom: 32px;
}
.cid-ts2Uj2Odcc .link-wrapper .image-wrapper img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-ts2Uj2Odcc .link-wrapper .date-container {
  margin-bottom: 24px;
}
.cid-ts2Uj2Odcc .link-wrapper .date-container .date-wrapper {
  display: inline-flex;
}
.cid-ts2Uj2Odcc .link-wrapper .date-container .date-wrapper .mbr-date {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-ts2Uj2Odcc .link-wrapper .date-container .date-wrapper .mbr-dot {
  margin: 0 10px;
  opacity: .3;
}
.cid-ts2Uj2Odcc .link-wrapper .mbr-section-title {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-ts2Uj2Odcc .mbr-section-title {
  color: #181818;
}
.cid-ts2Uj2Odcc .mbr-date,
.cid-ts2Uj2Odcc .mbr-dot {
  color: #181818;
}
.cid-ts2Uj2Odcc .mbr-section-title,
.cid-ts2Uj2Odcc .date-container {
  text-align: center;
}
.cid-trTXvp43g6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-trTXvp43g6 p {
  text-align: center;
}
.cid-trTXvp43g6 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-trTXvp43g6 .social-list a:focus {
  text-decoration: none;
}
.cid-trTXvp43g6 .text-copyright {
  width: 100%;
  color: #e8edee;
}
.cid-trTXvp43g6 .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-trTXvp43g6 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-trTXvp43g6 .logo-footer {
  line-height: normal;
}
.cid-trTXvp43g6 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-trTXvp43g6 .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-trTXvp43g6 .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-ts3jGhy7Ss {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ts3jGhy7Ss nav.navbar {
  position: fixed;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ts3jGhy7Ss .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ts3jGhy7Ss .dropdown-item:hover,
.cid-ts3jGhy7Ss .dropdown-item:focus {
  background: #08579f !important;
  color: white !important;
}
.cid-ts3jGhy7Ss .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ts3jGhy7Ss .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ts3jGhy7Ss .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ts3jGhy7Ss .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ts3jGhy7Ss .nav-link {
  position: relative;
}
.cid-ts3jGhy7Ss .container {
  display: flex;
  margin: auto;
}
.cid-ts3jGhy7Ss .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ts3jGhy7Ss .dropdown-menu,
.cid-ts3jGhy7Ss .navbar.opened {
  background: #ffffff !important;
}
.cid-ts3jGhy7Ss .nav-item:focus,
.cid-ts3jGhy7Ss .nav-link:focus {
  outline: none;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ts3jGhy7Ss .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ts3jGhy7Ss .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ts3jGhy7Ss .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-ts3jGhy7Ss .navbar.opened {
  transition: all 0.3s;
}
.cid-ts3jGhy7Ss .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ts3jGhy7Ss .navbar .navbar-logo img {
  width: auto;
}
.cid-ts3jGhy7Ss .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ts3jGhy7Ss .navbar.collapsed {
  justify-content: center;
}
.cid-ts3jGhy7Ss .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ts3jGhy7Ss .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ts3jGhy7Ss .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ts3jGhy7Ss .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ts3jGhy7Ss .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ts3jGhy7Ss .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ts3jGhy7Ss .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ts3jGhy7Ss .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ts3jGhy7Ss .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ts3jGhy7Ss .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ts3jGhy7Ss .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ts3jGhy7Ss .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ts3jGhy7Ss .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ts3jGhy7Ss .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ts3jGhy7Ss .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ts3jGhy7Ss .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ts3jGhy7Ss .navbar.navbar-short {
  min-height: 60px;
}
.cid-ts3jGhy7Ss .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ts3jGhy7Ss .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ts3jGhy7Ss .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ts3jGhy7Ss .dropdown-item.active,
.cid-ts3jGhy7Ss .dropdown-item:active {
  background-color: transparent;
}
.cid-ts3jGhy7Ss .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ts3jGhy7Ss .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ts3jGhy7Ss .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ts3jGhy7Ss .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ts3jGhy7Ss .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ts3jGhy7Ss .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ts3jGhy7Ss ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ts3jGhy7Ss .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ts3jGhy7Ss button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ts3jGhy7Ss a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar {
    height: 70px;
  }
  .cid-ts3jGhy7Ss .navbar.opened {
    height: auto;
  }
  .cid-ts3jGhy7Ss .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ts3Z7tRq4T {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1080.png");
}
.cid-ts3Z7tRq4T .mbr-overlay {
  background: #17add9;
  background: linear-gradient(90deg, #17add9, #550d5d);
}
.cid-ts3Z7tRq4T .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-ts3Z7tRq4T H1 {
  color: #ffffff;
}
.cid-s5VtJe9EfM {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s5VtJe9EfM .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-s5VtJe9EfM .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-s5VtJe9EfM .form-control:focus,
.cid-s5VtJe9EfM .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-s5VtJe9EfM .form-group {
  margin-bottom: 1rem;
}
.cid-s5VtJe9EfM input::-webkit-input-placeholder,
.cid-s5VtJe9EfM textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-s5VtJe9EfM input:-moz-placeholder,
.cid-s5VtJe9EfM textarea:-moz-placeholder {
  color: #656565;
}
.cid-s5VtJe9EfM .jq-selectbox li,
.cid-s5VtJe9EfM .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-s5VtJe9EfM .jq-selectbox li:hover,
.cid-s5VtJe9EfM .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-s5VtJe9EfM .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-s5VtJe9EfM .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-s5VtJe9EfM .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-s5VtJe9EfM .text-block {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s5VtJe9EfM a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-s5VtJe9EfM .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s5VtJe9EfM .input-group-btn {
  display: block;
}
.cid-s5VtJe9EfM textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-s5VtJe9EfM .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-s5VtJe9EfM .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-s5VtJe9EfM .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s5VtJe9EfM h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-s5VtJe9EfM .block-content {
    padding: 0;
  }
  .cid-s5VtJe9EfM .form-block {
    padding: 1rem;
  }
}
.cid-trXv1aYiYn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-trXv1aYiYn p {
  text-align: center;
}
.cid-trXv1aYiYn .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-trXv1aYiYn .social-list a:focus {
  text-decoration: none;
}
.cid-trXv1aYiYn .text-copyright {
  width: 100%;
  color: #e8edee;
}
.cid-trXv1aYiYn .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-trXv1aYiYn .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-trXv1aYiYn .logo-footer {
  line-height: normal;
}
.cid-trXv1aYiYn .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-trXv1aYiYn .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-trXv1aYiYn .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-ts3jGhy7Ss {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ts3jGhy7Ss nav.navbar {
  position: fixed;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ts3jGhy7Ss .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ts3jGhy7Ss .dropdown-item:hover,
.cid-ts3jGhy7Ss .dropdown-item:focus {
  background: #08579f !important;
  color: white !important;
}
.cid-ts3jGhy7Ss .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ts3jGhy7Ss .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ts3jGhy7Ss .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ts3jGhy7Ss .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ts3jGhy7Ss .nav-link {
  position: relative;
}
.cid-ts3jGhy7Ss .container {
  display: flex;
  margin: auto;
}
.cid-ts3jGhy7Ss .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ts3jGhy7Ss .dropdown-menu,
.cid-ts3jGhy7Ss .navbar.opened {
  background: #ffffff !important;
}
.cid-ts3jGhy7Ss .nav-item:focus,
.cid-ts3jGhy7Ss .nav-link:focus {
  outline: none;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ts3jGhy7Ss .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ts3jGhy7Ss .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ts3jGhy7Ss .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ts3jGhy7Ss .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-ts3jGhy7Ss .navbar.opened {
  transition: all 0.3s;
}
.cid-ts3jGhy7Ss .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ts3jGhy7Ss .navbar .navbar-logo img {
  width: auto;
}
.cid-ts3jGhy7Ss .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ts3jGhy7Ss .navbar.collapsed {
  justify-content: center;
}
.cid-ts3jGhy7Ss .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ts3jGhy7Ss .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ts3jGhy7Ss .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ts3jGhy7Ss .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ts3jGhy7Ss .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ts3jGhy7Ss .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ts3jGhy7Ss .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ts3jGhy7Ss .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ts3jGhy7Ss .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ts3jGhy7Ss .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ts3jGhy7Ss .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ts3jGhy7Ss .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ts3jGhy7Ss .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ts3jGhy7Ss .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ts3jGhy7Ss .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ts3jGhy7Ss .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ts3jGhy7Ss .navbar.navbar-short {
  min-height: 60px;
}
.cid-ts3jGhy7Ss .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ts3jGhy7Ss .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ts3jGhy7Ss .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ts3jGhy7Ss .dropdown-item.active,
.cid-ts3jGhy7Ss .dropdown-item:active {
  background-color: transparent;
}
.cid-ts3jGhy7Ss .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ts3jGhy7Ss .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ts3jGhy7Ss .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ts3jGhy7Ss .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ts3jGhy7Ss .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ts3jGhy7Ss .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ts3jGhy7Ss ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ts3jGhy7Ss .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ts3jGhy7Ss button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ts3jGhy7Ss button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ts3jGhy7Ss nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ts3jGhy7Ss .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ts3jGhy7Ss a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ts3jGhy7Ss .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-ts3jGhy7Ss .navbar {
    height: 70px;
  }
  .cid-ts3jGhy7Ss .navbar.opened {
    height: auto;
  }
  .cid-ts3jGhy7Ss .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ts3Z3eH4BH {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1080.png");
}
.cid-ts3Z3eH4BH .mbr-overlay {
  background: #17add9;
  background: linear-gradient(90deg, #17add9, #550d5d);
}
.cid-ts3Z3eH4BH .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-ts3Z3eH4BH H1 {
  color: #ffffff;
}
.cid-tI6QBCDTaA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f4f8fa;
}
.cid-tI6QBCDTaA .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #84858a;
}
.cid-tI6QBCDTaA .plan {
  word-break: break-word;
  background-color: #ffffff;
  padding: 60px 30px 70px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tI6QBCDTaA .plan {
    margin-bottom: 30px;
  }
}
@media (max-width: 425px) {
  .cid-tI6QBCDTaA .plan {
    padding: 30px 15px 40px;
  }
}
.cid-tI6QBCDTaA .plan .plan-header {
  margin-bottom: 39px;
}
.cid-tI6QBCDTaA .plan .plan-header .plan-title {
  margin-bottom: 22px;
}
.cid-tI6QBCDTaA .plan .plan-header .price {
  margin: 0;
  color: #20232a;
}
.cid-tI6QBCDTaA .plan .plan-header .price-term {
  margin: 16px 0 0 0;
}
.cid-tI6QBCDTaA .plan .plan-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-tI6QBCDTaA .plan .list-group li {
  padding: 8px 0 0 0;
  border: none;
}
.cid-tI6QBCDTaA .plan .list-group li:first-child {
  padding: 0;
}
.cid-tI6QBCDTaA .plan .list-group li::after {
  transform: translateY(-50%);
  content: "✓";
  color: #9c49a5;
  font-size: 14px;
  margin-left: 12px;
}
.cid-tI6QBCDTaA .plan:hover .price {
  color: #9c49a5;
}
.cid-tI6QBCDTaA .plan:hover .btn {
  color: #ffffff !important;
  background: #9c49a5 !important;
  border: none;
}
.cid-tI6QBCDTaA .mbr-section-btn {
  margin-top: 29px;
}
.cid-tI6QBCDTaA .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  background: transparent !important;
  color: #20232a !important;
  border-color: #20232a !important;
}
.cid-tI6QBCDTaA .btn:hover {
  box-shadow: none;
  color: #ffffff !important;
  background: #9c49a5 !important;
  border: none;
}
.cid-tI6QBCDTaA .mbr-section-subtitle {
  margin-bottom: 22px;
  color: #FF4712;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tI6QBCDTaA .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-tI6QBCDTaA .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
  text-align: center;
}
.cid-tI6QBCDTaA .mbr-text {
  margin: 13.5px 0 0 0;
  color: #84858a;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tI6QBCDTaA .mbr-text {
    margin-top: 10px;
  }
}
.cid-tI6QBCDTaA .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tI6QBCDTaA .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tI6QBCDTaA .plan-title {
  color: #3b7cb7;
}
.cid-tI6QBCDTaA .price-term {
  color: #9c49a5;
}
.cid-tI6RXeXJ3M {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background: #f4f8fa;
}
.cid-tI6RXeXJ3M .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #84858a;
}
.cid-tI6RXeXJ3M .plan {
  word-break: break-word;
  background-color: #ffffff;
  padding: 60px 30px 70px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tI6RXeXJ3M .plan {
    margin-bottom: 30px;
  }
}
@media (max-width: 425px) {
  .cid-tI6RXeXJ3M .plan {
    padding: 30px 15px 40px;
  }
}
.cid-tI6RXeXJ3M .plan .plan-header {
  margin-bottom: 39px;
}
.cid-tI6RXeXJ3M .plan .plan-header .plan-title {
  margin-bottom: 22px;
}
.cid-tI6RXeXJ3M .plan .plan-header .price {
  margin: 0;
  color: #20232a;
}
.cid-tI6RXeXJ3M .plan .plan-header .price-term {
  margin: 16px 0 0 0;
}
.cid-tI6RXeXJ3M .plan .plan-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-tI6RXeXJ3M .plan .list-group li {
  padding: 8px 0 0 0;
  border: none;
}
.cid-tI6RXeXJ3M .plan .list-group li:first-child {
  padding: 0;
}
.cid-tI6RXeXJ3M .plan .list-group li::after {
  transform: translateY(-50%);
  content: "✓";
  color: #9c49a5;
  font-size: 14px;
  margin-left: 12px;
}
.cid-tI6RXeXJ3M .plan:hover .price {
  color: #9c49a5;
}
.cid-tI6RXeXJ3M .plan:hover .btn {
  color: #ffffff !important;
  background: #9c49a5 !important;
  border: none;
}
.cid-tI6RXeXJ3M .mbr-section-btn {
  margin-top: 29px;
}
.cid-tI6RXeXJ3M .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  background: transparent !important;
  color: #20232a !important;
  border-color: #20232a !important;
}
.cid-tI6RXeXJ3M .btn:hover {
  box-shadow: none;
  color: #ffffff !important;
  background: #9c49a5 !important;
  border: none;
}
.cid-tI6RXeXJ3M .mbr-section-subtitle {
  margin-bottom: 22px;
  color: #FF4712;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tI6RXeXJ3M .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-tI6RXeXJ3M .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
  text-align: center;
}
.cid-tI6RXeXJ3M .mbr-text {
  margin: 13.5px 0 0 0;
  color: #3b7cb7;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tI6RXeXJ3M .mbr-text {
    margin-top: 10px;
  }
}
.cid-tI6RXeXJ3M .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tI6RXeXJ3M .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tI6RXeXJ3M .plan-title {
  color: #3b7cb7;
}
.cid-tI6RXeXJ3M .price-term {
  color: #9c49a5;
}
.cid-tI6Vy68Roe {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background: #f4f8fa;
}
.cid-tI6Vy68Roe .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #84858a;
}
.cid-tI6Vy68Roe .plan {
  word-break: break-word;
  background-color: #ffffff;
  padding: 60px 30px 70px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tI6Vy68Roe .plan {
    margin-bottom: 30px;
  }
}
@media (max-width: 425px) {
  .cid-tI6Vy68Roe .plan {
    padding: 30px 15px 40px;
  }
}
.cid-tI6Vy68Roe .plan .plan-header {
  margin-bottom: 39px;
}
.cid-tI6Vy68Roe .plan .plan-header .plan-title {
  margin-bottom: 22px;
}
.cid-tI6Vy68Roe .plan .plan-header .price {
  margin: 0;
  color: #20232a;
}
.cid-tI6Vy68Roe .plan .plan-header .price-term {
  margin: 16px 0 0 0;
}
.cid-tI6Vy68Roe .plan .plan-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-tI6Vy68Roe .plan .list-group li {
  padding: 8px 0 0 0;
  border: none;
}
.cid-tI6Vy68Roe .plan .list-group li:first-child {
  padding: 0;
}
.cid-tI6Vy68Roe .plan .list-group li::after {
  transform: translateY(-50%);
  content: "✓";
  color: #9c49a5;
  font-size: 14px;
  margin-left: 12px;
}
.cid-tI6Vy68Roe .plan:hover .price {
  color: #9c49a5;
}
.cid-tI6Vy68Roe .plan:hover .btn {
  color: #ffffff !important;
  background: #9c49a5 !important;
  border: none;
}
.cid-tI6Vy68Roe .mbr-section-btn {
  margin-top: 29px;
}
.cid-tI6Vy68Roe .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  background: transparent !important;
  color: #20232a !important;
  border-color: #20232a !important;
}
.cid-tI6Vy68Roe .btn:hover {
  box-shadow: none;
  color: #ffffff !important;
  background: #9c49a5 !important;
  border: none;
}
.cid-tI6Vy68Roe .mbr-section-subtitle {
  margin-bottom: 22px;
  color: #FF4712;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tI6Vy68Roe .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-tI6Vy68Roe .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
  text-align: center;
}
.cid-tI6Vy68Roe .mbr-text {
  margin: 13.5px 0 0 0;
  color: #3b7cb7;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tI6Vy68Roe .mbr-text {
    margin-top: 10px;
  }
}
.cid-tI6Vy68Roe .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tI6Vy68Roe .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tI6Vy68Roe .plan-title {
  color: #3b7cb7;
}
.cid-tI6Vy68Roe .price-term {
  color: #9c49a5;
}
.cid-trXxVJtqAq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-trXxVJtqAq p {
  text-align: center;
}
.cid-trXxVJtqAq .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-trXxVJtqAq .social-list a:focus {
  text-decoration: none;
}
.cid-trXxVJtqAq .text-copyright {
  width: 100%;
  color: #e8edee;
}
.cid-trXxVJtqAq .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-trXxVJtqAq .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-trXxVJtqAq .logo-footer {
  line-height: normal;
}
.cid-trXxVJtqAq .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-trXxVJtqAq .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-trXxVJtqAq .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
