body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.25rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.13rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4125rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.63rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.0375rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.975rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.904rem;
    font-size: calc( 1.0454999999999999rem + (1.13 - 1.0454999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0454999999999999rem + (1.13 - 1.0454999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.304rem;
    font-size: calc( 1.2205rem + (1.63 - 1.2205) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.2205rem + (1.63 - 1.2205) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (1rem + (1 - 1) * ((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: #014979 !important;
}
.bg-success {
  background-color: #8cb976 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #9f6d2a !important;
}
.bg-danger {
  background-color: #73460b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #014979 !important;
  border-color: #014979 !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: #001523 !important;
  border-color: #001523 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #001523 !important;
  border-color: #001523 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8cb976 !important;
  border-color: #8cb976 !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: #608f49 !important;
  border-color: #608f49 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #608f49 !important;
  border-color: #608f49 !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: #8cb976 !important;
  border-color: #8cb976 !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: #608f49 !important;
  border-color: #608f49 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #608f49 !important;
  border-color: #608f49 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a3e18 !important;
  border-color: #5a3e18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a3e18 !important;
  border-color: #5a3e18 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73460b !important;
  border-color: #73460b !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: #241603 !important;
  border-color: #241603 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #241603 !important;
  border-color: #241603 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !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: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #014979;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #001523 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #014979 !important;
  border-color: #014979 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8cb976;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #608f49 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8cb976 !important;
  border-color: #8cb976 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8cb976;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #608f49 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8cb976 !important;
  border-color: #8cb976 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9f6d2a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5a3e18 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #73460b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #241603 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #73460b !important;
  border-color: #73460b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #222222;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9f7f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.text-primary {
  color: #014979 !important;
}
.text-secondary {
  color: #8cb976 !important;
}
.text-success {
  color: #8cb976 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #9f6d2a !important;
}
.text-danger {
  color: #73460b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000c14 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #598544 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #598544 !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: #4e3615 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #160d02 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d3c4b5 !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: #014979;
}
.nav-tabs .nav-link:not(.active) {
  color: #222222;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #9f6d2a;
}
.alert-danger {
  background-color: #73460b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #014979;
  border-color: #014979;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #014979;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0295f7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d3e4ca;
}
.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: #d9ac6f;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e78d16;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.13rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.4125rem;
}
.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: #014979 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.13rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.4125rem;
}
blockquote {
  border-color: #014979;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #014979;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #014979;
}
.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: #014979;
  border-bottom-color: #014979;
}
.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: #014979 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #8cb976 !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='%23014979' %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;
}
.container {
  max-width: 1302px;
}
.btn {
  padding: 12px 24px;
  border-radius: 0;
  letter-spacing: 3px;
}
.btn-big {
  padding: 20px 40px !important;
}
.btn-scale {
  transition: 0.3s all;
}
.btn-scale:hover {
  transform: scale(0.9);
}
.cid-tdsOGAACG0 {
  z-index: 1000;
  width: 100%;
}
.cid-tdsOGAACG0 nav.navbar {
  position: fixed;
}
.cid-tdsOGAACG0 .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-tdsOGAACG0 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tdsOGAACG0 .dropdown-item:hover,
.cid-tdsOGAACG0 .dropdown-item:focus {
  color: #014979 !important;
}
.cid-tdsOGAACG0 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tdsOGAACG0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdsOGAACG0 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tdsOGAACG0 .container {
  display: flex;
  margin: auto;
}
.cid-tdsOGAACG0 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdsOGAACG0 .dropdown-menu,
.cid-tdsOGAACG0 .navbar.opened {
  background: #ffffff !important;
}
.cid-tdsOGAACG0 .nav-item:focus,
.cid-tdsOGAACG0 .nav-link:focus {
  outline: none;
}
.cid-tdsOGAACG0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdsOGAACG0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdsOGAACG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdsOGAACG0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdsOGAACG0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdsOGAACG0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdsOGAACG0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-tdsOGAACG0 .navbar.opened {
  transition: all 0.3s;
}
.cid-tdsOGAACG0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdsOGAACG0 .navbar .navbar-logo img {
  width: auto;
}
.cid-tdsOGAACG0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdsOGAACG0 .navbar.collapsed {
  justify-content: center;
}
.cid-tdsOGAACG0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdsOGAACG0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdsOGAACG0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tdsOGAACG0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdsOGAACG0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdsOGAACG0 .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-tdsOGAACG0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdsOGAACG0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdsOGAACG0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdsOGAACG0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdsOGAACG0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdsOGAACG0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdsOGAACG0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdsOGAACG0 .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-tdsOGAACG0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdsOGAACG0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdsOGAACG0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdsOGAACG0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdsOGAACG0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdsOGAACG0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tdsOGAACG0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdsOGAACG0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdsOGAACG0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdsOGAACG0 .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-tdsOGAACG0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdsOGAACG0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdsOGAACG0 .dropdown-item.active,
.cid-tdsOGAACG0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tdsOGAACG0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdsOGAACG0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdsOGAACG0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdsOGAACG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdsOGAACG0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdsOGAACG0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdsOGAACG0 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tdsOGAACG0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdsOGAACG0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tdsOGAACG0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #014979;
}
.cid-tdsOGAACG0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdsOGAACG0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdsOGAACG0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdsOGAACG0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdsOGAACG0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdsOGAACG0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdsOGAACG0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdsOGAACG0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdsOGAACG0 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tdsOGAACG0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdsOGAACG0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdsOGAACG0 .navbar {
    height: 70px;
  }
  .cid-tdsOGAACG0 .navbar.opened {
    height: auto;
  }
  .cid-tdsOGAACG0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdsOGAACG0 a {
  display: inline;
}
.cid-tdsOGAACG0 img {
  display: inline;
  padding-right: 10px;
}
.cid-tdsOGAACG0 .dropdown-toggle:after {
  display: none;
}
.cid-tdsOGAACG0 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tdsOGAACG0 .dropdown-item:hover {
  color: #47b5ed !important;
}
@media (max-width: 990px) {
  .cid-tdsOGAACG0 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tdsOGAACG0 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tdsOGAACG0 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tdsOGAACG0 .nav-item {
  margin-right: 32px;
}
.cid-tdsOGAACG0 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tdsOGAACG0 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tdsOGAACG0 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tdsOGAACG0 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tdsOGAACG0 .navbar-nav {
  margin: auto;
}
.cid-tdsOGAACG0 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tdsOGAACG0 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tdsOGAACG0 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tdsOGAACG0 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tdsOGAACG0 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tdsOGAACG0 .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-tdsOGAACG0 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tdsOGAACG0 .dropdown-item:focus {
  color: #47b5ed !important;
}
@media (max-width: 945px) {
  .cid-tdsOGAACG0 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tdsOGAACG0 .top {
    margin-top: 25px;
  }
}
.cid-tdsOGAACG0 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tdsOGAACG0 .container,
  .cid-tdsOGAACG0 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tdsOGAACG0 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tdsOGAACG0 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tdsOGAACG0 .icons-menu {
    min-width: initial !important;
  }
  .cid-tdsOGAACG0 a.btn {
    margin-top: 10px;
  }
}
.cid-tdsOGAACG0 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tdsRbZXxfj {
  background-image: url("../../../assets/images/mbr-1-1920x1277.jpg");
}
.cid-tdsRbZXxfj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdsRbZXxfj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdsTyPQ101 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tdsTyPQ101 .iconfont-wrapper > .mbr-iconfont {
  font-size: 77px;
  color: #ffffff;
}
.cid-tdsTyPQ101 .iconfont-wrapper {
  margin-bottom: 15px;
}
.cid-tdsTyPQ101 .card {
  padding: 40px 70px 40px 30px;
  min-height: 330px;
  padding-right: 48px;
  margin-top: 50px;
  background-color: #75dbcd;
  width: 31%;
  border-radius: 20px;
}
.cid-tdsTyPQ101 .row {
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tdsTyPQ101 .card-text {
  color: #ffffff;
}
.cid-tdsTyPQ101 .card-title {
  margin-bottom: 15px;
}
.cid-tdsTyPQ101 .custom-link::after {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
}
.cid-tdsTyPQ101 .link:hover .custom-link {
  color: #75dbcd !important;
}
.cid-tdsTyPQ101 .card-title,
.cid-tdsTyPQ101 .iconfont-wrapper {
  color: #ffffff;
}
.cid-tdsTyPQ101 .c1 {
  background-color: #8cb976;
}
.cid-tdsTyPQ101 .c2 {
  background-color: #014979;
}
.cid-tdsTyPQ101 .c3 {
  background-color: #8cb976;
}
.cid-tdsTyPQ101 .c4 {
  background-color: #014979;
}
.cid-tdsTyPQ101 .c5 {
  background-color: #8cb976;
}
.cid-tdsTyPQ101 .c6 {
  background-color: #014979;
}
.cid-tdsTyPQ101 .card:nth-child(1) {
  margin-top: 0px;
}
.cid-tdsTyPQ101 .card:nth-child(2) {
  margin-top: 0px;
}
.cid-tdsTyPQ101 .card:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 770px) {
  .cid-tdsTyPQ101 .card:nth-child(3) {
    margin-top: 30px;
  }
  .cid-tdsTyPQ101 .card {
    width: 48%;
  }
}
@media (max-width: 520px) {
  .cid-tdsTyPQ101 .card:nth-child(2) {
    margin-top: 30px;
  }
  .cid-tdsTyPQ101 .card {
    padding-right: 15px;
    width: 100%;
  }
}
.cid-tdsTyPQ101 .card-text,
.cid-tdsTyPQ101 .link {
  color: #ffffff;
}
.cid-tdsXrU3y1A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f8f8;
}
.cid-tdsXrU3y1A .container {
  max-width: 1500px;
}
.cid-tdsXrU3y1A .row {
  background: #014979;
}
.cid-tdsXrU3y1A .img-col {
  padding: 0;
}
.cid-tdsXrU3y1A .title-col {
  padding: 4rem 6rem;
}
.cid-tdsXrU3y1A img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tdsXrU3y1A h2 {
  padding: 0;
  margin: 0;
}
.cid-tdsXrU3y1A .text-wrap {
  margin: auto;
}
.cid-tdsXrU3y1A .mbr-text {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-tdsXrU3y1A .row {
    margin: 2rem;
  }
  .cid-tdsXrU3y1A .title-col {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tdsXrU3y1A .row {
    margin: 0rem;
  }
  .cid-tdsXrU3y1A .title-col {
    padding: 2rem 1rem;
  }
}
.cid-tdsZyLkKlx {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tdsZyLkKlx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-tdsZyLkKlx .text-content .mbr-subtitle {
  color: #8cb976;
}
.cid-tdsZyLkKlx .text-content .mbr-section-title {
  color: #014979;
}
.cid-tdsZyLkKlx .text-content .mbr-text {
  color: #47b5ed;
}
.cid-tdsZyLkKlx .text-content .list-block {
  margin-top: 16px;
  padding-bottom: 16px;
}
.cid-tdsZyLkKlx .text-content .list-block .card-img {
  width: auto;
}
.cid-tdsZyLkKlx .text-content .list-block .card-img span {
  color: #8cb976;
  font-size: 1.5rem;
}
.cid-tdsZyLkKlx .text-content .list-block .list-item-title {
  color: #014979;
  transition: all .3s linear 0s;
}
.cid-tdsZyLkKlx .text-content .list-block .list-item-title:hover {
  color: #279e64;
}
.cid-tdsZyLkKlx .text-content .list-block .list-item-text {
  padding-top: 10px;
  color: #47b5ed;
  margin-bottom: 0;
}
.cid-tdsZyLkKlx .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-tdsZyLkKlx .text-content .social {
  font-size: 1.2rem;
}
.cid-tdsZyLkKlx .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  transition: 0.3s all;
  color: #13287d;
}
.cid-tdsZyLkKlx .text-content .social span:hover {
  color: #279e64;
  transition: 0.3s all;
}
.cid-tdsZyLkKlx .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
}
.cid-tdsZyLkKlx .list-block {
  position: relative;
}
.cid-tdsZyLkKlx .list-block h4,
.cid-tdsZyLkKlx .list-block p {
  padding-left: 2.625rem;
}
.cid-tdsZyLkKlx .card-img {
  display: block;
}
.cid-tdsZyLkKlx input,
.cid-tdsZyLkKlx textarea {
  border-radius: 3px;
  min-height: 3rem;
  padding: 13px 20px !important;
  font-size: 13px;
  color: #8cb976;
  height: 60px;
}
.cid-tdsZyLkKlx .form-control,
.cid-tdsZyLkKlx .field-input {
  padding: 13px 20px !important;
  background-color: #ffffff;
  border-color: #dcdfe2 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tdsZyLkKlx .form-control:hover,
.cid-tdsZyLkKlx .field-input:hover,
.cid-tdsZyLkKlx .form-control:focus,
.cid-tdsZyLkKlx .field-input:focus {
  background-color: #ffffff;
  border-color: #279e64 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tdsZyLkKlx .form-control:focus,
.cid-tdsZyLkKlx .field-input:focus {
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.15);
}
.cid-tdsZyLkKlx input::-webkit-input-placeholder,
.cid-tdsZyLkKlx textarea::-webkit-input-placeholder {
  color: #6d7a8c;
}
.cid-tdsZyLkKlx input:-moz-placeholder,
.cid-tdsZyLkKlx textarea:-moz-placeholder {
  color: #6d7a8c;
}
.cid-tdsZyLkKlx .jq-selectbox li,
.cid-tdsZyLkKlx .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tdsZyLkKlx .jq-selectbox li:hover,
.cid-tdsZyLkKlx .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-tdsZyLkKlx .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff !important;
}
.cid-tdsZyLkKlx .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff !important;
}
.cid-tdsZyLkKlx .mbr-form {
  max-width: 550px;
}
.cid-tdsZyLkKlx .mbr-form .content-title {
  color: #014979;
  margin-bottom: 20px;
}
.cid-tdsZyLkKlx .mbr-form .content-subtitle {
  color: #47b5ed;
}
.cid-tdsZyLkKlx .mbr-form textarea {
  min-height: 100px;
  height: 194px;
}
.cid-tdsZyLkKlx .mbr-form .btn {
  justify-content: space-between;
  border-radius: 30px;
  border-color: #014979;
  color: #014979;
  padding: 18px 42px;
  margin: 0 !important;
  margin-top: 7px !important;
}
.cid-tdsZyLkKlx .mbr-form .btn-success:hover {
  background-color: #8cb976 !important;
  border-color: #8cb976 !important;
  color: #fff !important;
}
@media (max-width: 991px) {
  .cid-tdsZyLkKlx .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-tdsZyLkKlx .mbr-section-title,
  .cid-tdsZyLkKlx .content-title,
  .cid-tdsZyLkKlx .mbr-section-btn {
    text-align: left;
  }
}
.cid-tdsZyLkKlx .text-content .mbr-subtitle {
  color: #014979;
}
.cid-tdsZyLkKlx .text-content .mbr-section-title {
  color: #8cb976;
}
