body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'griffon-regular';
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'griffon-regular';
  font-size: 2rem;
}
.display-4 {
  font-family: 'griffon-regular';
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'griffon-regular';
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'griffon-regular';
  font-size: 1rem;
}
/* ---- 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.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((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.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger: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;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  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-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  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-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.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 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !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: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'griffon-regular';
  font-size: 1rem;
}
blockquote {
  border-color: #ffffff;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.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;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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: #ca4336 !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='%23ffffff' %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-sSNGIvOITp .navbar-dropdown {
  position: relative !important;
}
.cid-sSNGIvOITp .navbar-dropdown {
  position: absolute !important;
}
.cid-sSNGIvOITp .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-sSNGIvOITp .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sSNGIvOITp .dropdown-item:hover,
.cid-sSNGIvOITp .dropdown-item:focus {
  color: #ffffff !important;
}
.cid-sSNGIvOITp .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNGIvOITp .nav-link {
  position: relative;
  padding: 0;
}
.cid-sSNGIvOITp .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sSNGIvOITp .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNGIvOITp .dropdown-menu,
.cid-sSNGIvOITp .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNGIvOITp .nav-item:focus,
.cid-sSNGIvOITp .nav-link:focus {
  outline: none;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNGIvOITp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNGIvOITp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNGIvOITp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-sSNGIvOITp .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNGIvOITp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNGIvOITp .navbar .navbar-logo img {
  width: auto;
}
.cid-sSNGIvOITp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNGIvOITp .navbar.collapsed {
  justify-content: center;
}
.cid-sSNGIvOITp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNGIvOITp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNGIvOITp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNGIvOITp .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-sSNGIvOITp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNGIvOITp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNGIvOITp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNGIvOITp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNGIvOITp .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-sSNGIvOITp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSNGIvOITp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNGIvOITp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNGIvOITp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNGIvOITp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNGIvOITp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNGIvOITp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNGIvOITp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNGIvOITp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSNGIvOITp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNGIvOITp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSNGIvOITp .dropdown-item.active,
.cid-sSNGIvOITp .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNGIvOITp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNGIvOITp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNGIvOITp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNGIvOITp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNGIvOITp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNGIvOITp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNGIvOITp button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0c5b47;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNGIvOITp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sSNGIvOITp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNGIvOITp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSNGIvOITp .navbar {
    height: 70px;
  }
  .cid-sSNGIvOITp .navbar.opened {
    height: auto;
  }
  .cid-sSNGIvOITp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNGIvOITp .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sSNGIvOITp .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sSNGIvOITp a {
  display: inline;
  font-weight: bold;
}
.cid-sSNGIvOITp img {
  display: inline;
  padding-right: 10px;
}
.cid-sSNGIvOITp .dropdown-toggle:after {
  display: none;
}
.cid-sSNGIvOITp .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sSNGIvOITp .dropdown-item:hover {
  color: #fac769 !important;
}
@media (max-width: 990px) {
  .cid-sSNGIvOITp .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sSNwqxEIF4 {
  background-image: url("../../../assets/images/samson-zgjbiukp-a-unsplash-2000x1333.jpg");
}
.cid-sSNwqxEIF4 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sSNwqxEIF4 .mbr-text,
.cid-sSNwqxEIF4 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sSNGIvOITp .navbar-dropdown {
  position: relative !important;
}
.cid-sSNGIvOITp .navbar-dropdown {
  position: absolute !important;
}
.cid-sSNGIvOITp .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-sSNGIvOITp .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sSNGIvOITp .dropdown-item:hover,
.cid-sSNGIvOITp .dropdown-item:focus {
  color: #ffffff !important;
}
.cid-sSNGIvOITp .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNGIvOITp .nav-link {
  position: relative;
  padding: 0;
}
.cid-sSNGIvOITp .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sSNGIvOITp .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNGIvOITp .dropdown-menu,
.cid-sSNGIvOITp .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNGIvOITp .nav-item:focus,
.cid-sSNGIvOITp .nav-link:focus {
  outline: none;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNGIvOITp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNGIvOITp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNGIvOITp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-sSNGIvOITp .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNGIvOITp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNGIvOITp .navbar .navbar-logo img {
  width: auto;
}
.cid-sSNGIvOITp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNGIvOITp .navbar.collapsed {
  justify-content: center;
}
.cid-sSNGIvOITp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNGIvOITp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNGIvOITp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.9rem);
  }
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNGIvOITp .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-sSNGIvOITp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNGIvOITp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNGIvOITp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNGIvOITp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNGIvOITp .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-sSNGIvOITp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSNGIvOITp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNGIvOITp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNGIvOITp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNGIvOITp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNGIvOITp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNGIvOITp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNGIvOITp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNGIvOITp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSNGIvOITp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNGIvOITp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSNGIvOITp .dropdown-item.active,
.cid-sSNGIvOITp .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNGIvOITp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNGIvOITp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNGIvOITp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNGIvOITp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNGIvOITp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNGIvOITp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNGIvOITp button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3a3c48;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNGIvOITp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sSNGIvOITp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNGIvOITp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSNGIvOITp .navbar {
    height: 70px;
  }
  .cid-sSNGIvOITp .navbar.opened {
    height: auto;
  }
  .cid-sSNGIvOITp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNGIvOITp .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sSNGIvOITp .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sSNGIvOITp a {
  display: inline;
  font-weight: bold;
}
.cid-sSNGIvOITp img {
  display: inline;
  padding-right: 10px;
}
.cid-sSNGIvOITp .dropdown-toggle:after {
  display: none;
}
.cid-sSNGIvOITp .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sSNGIvOITp .dropdown-item:hover {
  color: #fac769 !important;
}
@media (max-width: 990px) {
  .cid-sSNGIvOITp .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sTDfE6th91 {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/marvin-meyer-syto3xs06fu-unsplash-2000x1333.jpg");
}
.cid-sTDfE6th91 .link-align {
  width: 100%;
}
.cid-sTDfE6th91 .link-wrap {
  display: inline-block;
}
.cid-sTDfE6th91 .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-sTDfE6th91 .wrap {
  transform: matrix3d(0.99863, -0.052336, 0, 0, 0.052336, 0.99863, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
.cid-sTDfE6th91 .wrap .mask {
  background: #3a3c48;
  background: linear-gradient(#3a3c48 0%, #54576c 69%, #686b83 100%);
  display: flex;
  z-index: 8;
  visibility: inherit;
  transition: none 0s ease 0s;
  text-align: inherit;
  line-height: 1.05;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 17px;
  white-space: nowrap;
  min-height: 88px;
  width: 100%;
  max-height: 100px;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, -0.275637, 0.961262, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
@media (max-width: 992px) {
  .cid-sTDfE6th91 .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-sTDfE6th91 .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-sTDfE6th91 .wrap .price {
  color: #365c9a;
}
@media (min-width: 992px) {
  .cid-sTDfE6th91 .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-sTDfE6th91 .mbr-text {
    text-align: right;
  }
}
.cid-sTDfE6th91 .wrap .mask .wrap-text .price {
  color: #ec6963;
}
.cid-sTDghCCjqf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background10.jpg");
}
.cid-sTDghCCjqf .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sTDghCCjqf .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTDghCCjqf .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 1rem;
}
.cid-sTDghCCjqf .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-sTDghCCjqf .card-text {
  margin-top: 2rem;
}
.cid-sTDghCCjqf .card-box {
  margin-bottom: 1rem;
}
.cid-sTDghCCjqf .num {
  color: #3a3c48;
}
@media (max-width: 767px) {
  .cid-sTDghCCjqf .num,
  .cid-sTDghCCjqf .card-title,
  .cid-sTDghCCjqf .mbr-text,
  .cid-sTDghCCjqf .mbr-title,
  .cid-sTDghCCjqf .mbr-section-subtitle,
  .cid-sTDghCCjqf .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sTDghCCjqf .content-column {
    margin-bottom: 2rem;
  }
}
.cid-sTDghCCjqf .mbr-title {
  text-align: left;
}
.cid-sTE3aE6ygK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x960.png");
}
.cid-sTE3aE6ygK .subtitle {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 600;
}
.cid-sTE3aE6ygK .sc__title {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
  padding-bottom: 0;
}
.cid-sTE3aE6ygK .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
}
.cid-sTDYGOZvXA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3a3c48;
}
.cid-sTDYGOZvXA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.3;
}
.cid-sTDYGOZvXA form .mbr-section-btn {
  text-align: left;
  width: auto;
}
.cid-sTDYGOZvXA form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sTDYGOZvXA form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sTDYGOZvXA .form-group {
  margin-bottom: 20px;
}
.cid-sTDYGOZvXA form .form-control {
  border-color: #FFFFFF !important;
  border-radius: 0;
  webkit-box-shadow: none;
  box-shadow: none;
  font-size: 1rem;
  color: #FFFFFF;
  background: transparent;
  font-weight: bold;
}
.cid-sTDYGOZvXA form .form-control:focus {
  border-color: #595959 !important;
}
.cid-sTDYGOZvXA .mbr-section-title {
  color: #FFFFFF;
}
.cid-sTDYGOZvXA .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .cid-sTDYGOZvXA .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-sTDYGOZvXA .form-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 32px;
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  max-width: 1180px;
  padding-right: 60px;
  padding-left: 60px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-sTDYGOZvXA .form-container {
    grid-template-columns: 100%;
  }
}
@media (max-width: 575px) {
  .cid-sTDYGOZvXA .form-container {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.cid-sTDYGOZvXA form .row {
  margin: 0;
}
.cid-sTDYGOZvXA .dragArea {
  padding: 40px 30px;
  border: 1px solid #595959;
}
.cid-sTDYGOZvXA .form-control,
.cid-sTDYGOZvXA form .btn {
  min-height: 64px;
}
.cid-sTDYGOZvXA .form-textarea {
  min-height: 104px;
  padding: 31px 24px;
}
.cid-sTDSD06NIn {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/headway-5qgiuubxkwm-unsplash-2000x1333.jpg");
}
.cid-sTDSD06NIn .link-align {
  width: 100%;
}
.cid-sTDSD06NIn .link-wrap {
  display: inline-block;
}
.cid-sTDSD06NIn .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-sTDSD06NIn .wrap {
  transform: matrix3d(0.99863, -0.052336, 0, 0, 0.052336, 0.99863, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
.cid-sTDSD06NIn .wrap .mask {
  background: #3a3c48;
  background: linear-gradient(#3a3c48 0%, #54576c 69%, #686b83 100%);
  display: flex;
  z-index: 8;
  visibility: inherit;
  transition: none 0s ease 0s;
  text-align: inherit;
  line-height: 1.05;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 17px;
  white-space: nowrap;
  min-height: 88px;
  width: 100%;
  max-height: 100px;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, -0.275637, 0.961262, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
@media (max-width: 992px) {
  .cid-sTDSD06NIn .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-sTDSD06NIn .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-sTDSD06NIn .wrap .price {
  color: #365c9a;
}
@media (min-width: 992px) {
  .cid-sTDSD06NIn .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-sTDSD06NIn .mbr-text {
    text-align: right;
  }
}
.cid-sTDSD06NIn .wrap .mask .wrap-text .price {
  color: #4e84c2;
}
.cid-sTDWTF4bFm {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (min-width: 1500px) {
  .cid-sTDWTF4bFm .container {
    max-width: 1400px;
  }
}
@media (min-width: 767px) {
  .cid-sTDWTF4bFm .container-fluid {
    padding: 0 3rem;
  }
}
.cid-sTDWTF4bFm .card1 {
  background: #fe6571;
}
.cid-sTDWTF4bFm .card2 {
  background: #ffcc00;
}
.cid-sTDWTF4bFm .card3 {
  background: #22a5e5;
}
.cid-sTDWTF4bFm .card4 {
  background: #f2eae2;
}
.cid-sTDWTF4bFm .card5 {
  background: #fe6571;
}
.cid-sTDWTF4bFm .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #3a3c48;
  margin-bottom: 2rem;
}
.cid-sTDWTF4bFm .card-wrapper {
  padding: 3rem 2rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .cid-sTDWTF4bFm .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sTDWTF4bFm .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-sTDWTF4bFm .col-lg-3 {
    max-width: 20%;
  }
}
.cid-sTDWTF4bFm .mbr-section-title {
  color: #ffffff;
}
.cid-sTDWTF4bFm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sTDWTF4bFm .card-title,
.cid-sTDWTF4bFm .iconfont-wrapper {
  color: #3a3c48;
  text-align: center;
}
.cid-sTDWTF4bFm .card-text {
  color: #082c4e;
}
.cid-sTDVT3vhLv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3a3c48;
}
.cid-sTDVT3vhLv .contact-border {
  border-bottom: 2px solid #ffffff;
}
.cid-sTDVT3vhLv .contact-decoration {
  color: #54576c;
  font-size: 150px;
  line-height: 180px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #babbbd, -1px 0 0 #babbbd, 1px 0 0 #babbbd, 0 -1px 0 #babbbd;
  text-align: center;
}
.cid-sTDVT3vhLv .contact-border {
  padding: 80px 0;
}
.cid-sTDVT3vhLv .contact-button {
  width: 430px;
  height: 74px;
  margin-top: 16px;
}
@media (max-width: 991px) {
  .cid-sTDVT3vhLv .contact-decoration {
    font-size: 90px;
    line-height: 150px;
  }
}
@media (max-width: 768px) {
  .cid-sTDVT3vhLv .contact-decoration {
    font-size: 68px;
    line-height: 90px;
  }
  .cid-sTDVT3vhLv .contact-button {
    width: 330px;
    height: 74px;
  }
  .cid-sTDVT3vhLv .contact-border {
    padding: 60px 0;
  }
}
@media (max-width: 425px) {
  .cid-sTDVT3vhLv .contact-decoration {
    font-size: 40px;
    line-height: 70px;
  }
  .cid-sTDVT3vhLv .contact-button {
    width: 250px;
    height: 64px;
  }
  .cid-sTDVT3vhLv .contact-border {
    padding: 40px 0;
  }
}
@media (max-width: 375px) {
  .cid-sTDVT3vhLv .contact-decoration {
    font-size: 35px;
  }
}
@media (max-width: 320px) {
  .cid-sTDVT3vhLv .contact-decoration {
    font-size: 28px;
  }
  .cid-sTDVT3vhLv .contact-button {
    width: 220px;
    height: 60px;
  }
  .cid-sTDVT3vhLv .contact-container {
    padding: 20px 0;
  }
}
.cid-sTDVT3vhLv .mbr-text {
  color: #464646;
}
.cid-sTDVT3vhLv .mbr-section-title {
  color: #ffffff;
}
.cid-sTE43hQN3o {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #3a3c48;
}
.cid-sTE43hQN3o a.nav-link:after {
  background-color: #ffffff;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-sTE43hQN3o a.nav-link:hover:after {
  opacity: 1;
  width: auto;
}
.cid-sTE43hQN3o a.nav-link:hover {
  color: #ffffff !important;
}
.cid-sTE43hQN3o .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-sTE43hQN3o .nav-link {
  font-weight: 600 !important;
}
@media (max-width: 540px) {
  .cid-sTE43hQN3o .navbar-nav {
    display: flex;
    flex-direction: column;
  }
  .cid-sTE43hQN3o .mbr-fonts-style {
    display: inline;
    width: auto;
    margin-top: 15px;
    text-align: center;
  }
  .cid-sTE43hQN3o .nav-link {
    display: inline;
    width: auto;
  }
}
.cid-sTE43hQN3o .inner {
  position: relative;
  display: inline-block;
  padding: 0em 0.8em !important;
}
.cid-sSNGIvOITp .navbar-dropdown {
  position: relative !important;
}
.cid-sSNGIvOITp .navbar-dropdown {
  position: absolute !important;
}
.cid-sSNGIvOITp .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-sSNGIvOITp .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sSNGIvOITp .dropdown-item:hover,
.cid-sSNGIvOITp .dropdown-item:focus {
  color: #ffffff !important;
}
.cid-sSNGIvOITp .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNGIvOITp .nav-link {
  position: relative;
  padding: 0;
}
.cid-sSNGIvOITp .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sSNGIvOITp .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNGIvOITp .dropdown-menu,
.cid-sSNGIvOITp .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNGIvOITp .nav-item:focus,
.cid-sSNGIvOITp .nav-link:focus {
  outline: none;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNGIvOITp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNGIvOITp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNGIvOITp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-sSNGIvOITp .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNGIvOITp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNGIvOITp .navbar .navbar-logo img {
  width: auto;
}
.cid-sSNGIvOITp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNGIvOITp .navbar.collapsed {
  justify-content: center;
}
.cid-sSNGIvOITp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNGIvOITp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNGIvOITp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNGIvOITp .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-sSNGIvOITp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNGIvOITp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNGIvOITp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNGIvOITp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNGIvOITp .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-sSNGIvOITp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSNGIvOITp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNGIvOITp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNGIvOITp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNGIvOITp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNGIvOITp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNGIvOITp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNGIvOITp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNGIvOITp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSNGIvOITp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNGIvOITp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSNGIvOITp .dropdown-item.active,
.cid-sSNGIvOITp .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNGIvOITp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNGIvOITp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNGIvOITp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNGIvOITp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNGIvOITp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNGIvOITp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNGIvOITp button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0c5b47;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNGIvOITp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sSNGIvOITp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNGIvOITp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSNGIvOITp .navbar {
    height: 70px;
  }
  .cid-sSNGIvOITp .navbar.opened {
    height: auto;
  }
  .cid-sSNGIvOITp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNGIvOITp .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sSNGIvOITp .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sSNGIvOITp a {
  display: inline;
  font-weight: bold;
}
.cid-sSNGIvOITp img {
  display: inline;
  padding-right: 10px;
}
.cid-sSNGIvOITp .dropdown-toggle:after {
  display: none;
}
.cid-sSNGIvOITp .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sSNGIvOITp .dropdown-item:hover {
  color: #fac769 !important;
}
@media (max-width: 990px) {
  .cid-sSNGIvOITp .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sSO7dQjOFJ {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #3a3c48;
}
.cid-sSO7dQjOFJ .mbr-section-title {
  color: #202020;
}
.cid-sSO7dQjOFJ .mbr-text {
  margin: 25px 0;
  color: #ffffff;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-sSO7dQjOFJ .content_box {
  position: relative;
}
.cid-sSO7dQjOFJ .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-sSO7dQjOFJ .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-sSNSU8goG3 {
  padding-top: 195px;
  background-image: url("../../../assets/images/christina-wocintechchat-com-sjo-vsskn9s-unsplash-2000x1335.jpg");
}
.cid-sSNSU8goG3 .text-content {
  padding-bottom: 60px;
}
.cid-sSNSU8goG3 .content-container .btn-bgr {
  z-index: 0;
}
.cid-sSNSU8goG3 .box-item-text {
  color: #cccccc;
}
.cid-sSNSU8goG3 .box-item {
  padding: 2.5rem;
}
.cid-sSNSU8goG3 .box-item:first-child {
  background-color: #54576c;
}
.cid-sSNSU8goG3 .box-item:nth-child(2) {
  background-color: #686b83;
}
.cid-sSNSU8goG3 .box-item:last-child {
  background-color: #54576c;
}
.cid-sSNSU8goG3 .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sSNSU8goG3 .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sSNSU8goG3 .box-list li:last-child {
  border-bottom: none;
}
.cid-sSNSU8goG3 .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sSNSU8goG3 .mbr-iconfont {
  color: #ffffff;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-sSNSU8goG3 .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-sSNSU8goG3 .mbr-section-subtitle,
  .cid-sSNSU8goG3 .mbr-section-title,
  .cid-sSNSU8goG3 .mbr-text,
  .cid-sSNSU8goG3 .mbr-section-btn,
  .cid-sSNSU8goG3 .icon-block-top,
  .cid-sSNSU8goG3 .box-item-title,
  .cid-sSNSU8goG3 .box-item-text {
    text-align: center !important;
  }
}
.cid-sSNSU8goG3 .mbr-section-title {
  color: #ffffff;
}
.cid-sSNSU8goG3 .mbr-text,
.cid-sSNSU8goG3 .mbr-section-btn {
  color: #232323;
}
.cid-sSNSU8goG3 .mbr-section-subtitle {
  color: #767676;
}
.cid-sSNSU8goG3 .icon-block-top,
.cid-sSNSU8goG3 .box-item-title {
  color: #ffffff;
}
.cid-sSNGIvOITp .navbar-dropdown {
  position: relative !important;
}
.cid-sSNGIvOITp .navbar-dropdown {
  position: absolute !important;
}
.cid-sSNGIvOITp .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-sSNGIvOITp .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sSNGIvOITp .dropdown-item:hover,
.cid-sSNGIvOITp .dropdown-item:focus {
  color: #ffffff !important;
}
.cid-sSNGIvOITp .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNGIvOITp .nav-link {
  position: relative;
  padding: 0;
}
.cid-sSNGIvOITp .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sSNGIvOITp .iconfont-wrapper {
  color: #0c5b47 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNGIvOITp .dropdown-menu,
.cid-sSNGIvOITp .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNGIvOITp .nav-item:focus,
.cid-sSNGIvOITp .nav-link:focus {
  outline: none;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNGIvOITp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNGIvOITp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNGIvOITp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNGIvOITp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-sSNGIvOITp .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNGIvOITp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNGIvOITp .navbar .navbar-logo img {
  width: auto;
}
.cid-sSNGIvOITp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNGIvOITp .navbar.collapsed {
  justify-content: center;
}
.cid-sSNGIvOITp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNGIvOITp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNGIvOITp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNGIvOITp .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-sSNGIvOITp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNGIvOITp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNGIvOITp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNGIvOITp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNGIvOITp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNGIvOITp .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-sSNGIvOITp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSNGIvOITp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNGIvOITp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNGIvOITp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNGIvOITp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNGIvOITp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNGIvOITp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNGIvOITp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNGIvOITp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNGIvOITp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSNGIvOITp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNGIvOITp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSNGIvOITp .dropdown-item.active,
.cid-sSNGIvOITp .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNGIvOITp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNGIvOITp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNGIvOITp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNGIvOITp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNGIvOITp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNGIvOITp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNGIvOITp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNGIvOITp button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0c5b47;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNGIvOITp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNGIvOITp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNGIvOITp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sSNGIvOITp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNGIvOITp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSNGIvOITp .navbar {
    height: 70px;
  }
  .cid-sSNGIvOITp .navbar.opened {
    height: auto;
  }
  .cid-sSNGIvOITp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNGIvOITp .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sSNGIvOITp .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sSNGIvOITp a {
  display: inline;
  font-weight: bold;
}
.cid-sSNGIvOITp img {
  display: inline;
  padding-right: 10px;
}
.cid-sSNGIvOITp .dropdown-toggle:after {
  display: none;
}
.cid-sSNGIvOITp .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sSNGIvOITp .dropdown-item:hover {
  color: #fac769 !important;
}
@media (max-width: 990px) {
  .cid-sSNGIvOITp .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sTEf0wvW1L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1439.jpg");
}
.cid-sTEf0wvW1L h2,
.cid-sTEf0wvW1L h3,
.cid-sTEf0wvW1L h4,
.cid-sTEf0wvW1L p {
  margin: 0;
}
.cid-sTEf0wvW1L .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-sTEf0wvW1L .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-sTEf0wvW1L .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sTEf0wvW1L .mbr-section-title {
  color: #ffffff;
  margin-bottom: 22px;
}
.cid-sTEf0wvW1L .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-sTEf0wvW1L .mbr-text {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-sTCIqaxws6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpeg");
}
.cid-sTCIqaxws6 .mbr-section-subtitle {
  color: #767676;
}
.cid-sTCIqaxws6 .mbr-section-title {
  color: #ffffff;
}
.cid-sTEkoXXe5f {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1501.jpg");
}
.cid-sTEkoXXe5f h2,
.cid-sTEkoXXe5f h3,
.cid-sTEkoXXe5f h4,
.cid-sTEkoXXe5f p {
  margin: 0;
}
.cid-sTEkoXXe5f .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-sTEkoXXe5f .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-sTEkoXXe5f .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sTEkoXXe5f .mbr-section-title {
  color: #ffffff;
  margin-bottom: 22px;
}
.cid-sTEkoXXe5f .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-sTEkoXXe5f .mbr-text {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-sTEl7ZyJaw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/rupixen-com-q59hmzk38eq-unsplash-2000x1333.jpg");
}
.cid-sTEl7ZyJaw h2,
.cid-sTEl7ZyJaw h3,
.cid-sTEl7ZyJaw h4,
.cid-sTEl7ZyJaw p {
  margin: 0;
}
.cid-sTEl7ZyJaw .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-sTEl7ZyJaw .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-sTEl7ZyJaw .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sTEl7ZyJaw .mbr-section-title {
  color: #ffffff;
  margin-bottom: 22px;
}
.cid-sTEl7ZyJaw .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-sTEl7ZyJaw .mbr-text {
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-sUihwu33EY {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #686b83;
}
.cid-sUihwu33EY .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sUihwu33EY .mbr-section-title {
  padding-bottom: 2rem;
  text-align: center;
}
.cid-sUihwu33EY .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sUihwu33EY .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-sUihwu33EY .form-control {
  min-height: 2.7em;
  padding: 0 1.8rem;
  font-size: 18px;
  background-color: white;
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sUihwu33EY .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sUihwu33EY .form-control {
    margin-bottom: 10px;
  }
  .cid-sUihwu33EY .form-group {
    max-width: 300px;
  }
  .cid-sUihwu33EY .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sUihwu33EY .form-group,
.cid-sUihwu33EY .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sUihwu33EY .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sUihwu33EY .col + .input-group-btn .btn,
  .cid-sUihwu33EY .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sUihwu33EY .dragArea > *:nth-last-child(2).col,
  .cid-sUihwu33EY .dragArea > *:nth-last-child(2).col-auto,
  .cid-sUihwu33EY .col + .input-group-btn,
  .cid-sUihwu33EY .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sUihwu33EY .dragArea > *:nth-last-child(2).col input,
  .cid-sUihwu33EY .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sUihwu33EY .mbr-section-subtitle,
.cid-sUihwu33EY .mbr-section-btn {
  color: #efefef;
  text-align: center;
}
.cid-sSNPE3AoKy {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #3a3c48;
}
.cid-sSNPE3AoKy *:focus {
  outline: none;
}
.cid-sSNPE3AoKy .form-group {
  margin-bottom: 2rem;
}
.cid-sSNPE3AoKy .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #cccccc;
  color: #cccccc;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-sSNPE3AoKy .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-sSNPE3AoKy .form-control::-webkit-input-placeholder {
  color: #cccccc;
}
.cid-sSNPE3AoKy .form-control::-moz-placeholder {
  color: #cccccc;
}
.cid-sSNPE3AoKy .form-control:-ms-input-placeholder {
  color: #cccccc;
}
.cid-sSNPE3AoKy .form-control:-moz-placeholder {
  color: #cccccc;
}
.cid-sSNPE3AoKy input.form-control {
  padding: 1px 0;
}
.cid-sSNPE3AoKy .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-sSNPE3AoKy .soc-item .socicon {
  font-size: 1.5rem;
  color: #767676;
  opacity: 1;
}
.cid-sSNPE3AoKy .soc-item .socicon:hover {
  opacity: .5;
}
.cid-sSNPE3AoKy .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-sSNPE3AoKy .first-column,
  .cid-sSNPE3AoKy .form-1 {
    text-align: center;
  }
}
.cid-sSNPE3AoKy .form-title,
.cid-sSNPE3AoKy .btn-row {
  color: #ffffff;
}
.cid-sSNPE3AoKy .follow-title,
.cid-sSNPE3AoKy .social-list {
  color: #ffffff;
}
.cid-sSNPE3AoKy .contacts-title,
.cid-sSNPE3AoKy .contacts-block {
  color: #ffffff;
}
.cid-sSNPE3AoKy .address-title,
.cid-sSNPE3AoKy .address-block {
  color: #ffffff;
}
.cid-sTE4KUdTQw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #3a3c48;
}
.cid-sTE4KUdTQw a.nav-link:after {
  background-color: #ffffff;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-sTE4KUdTQw a.nav-link:hover:after {
  opacity: 1;
  width: auto;
}
.cid-sTE4KUdTQw a.nav-link:hover {
  color: #ffffff !important;
}
.cid-sTE4KUdTQw .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-sTE4KUdTQw .nav-link {
  font-weight: 600 !important;
}
@media (max-width: 540px) {
  .cid-sTE4KUdTQw .navbar-nav {
    display: flex;
    flex-direction: column;
  }
  .cid-sTE4KUdTQw .mbr-fonts-style {
    display: inline;
    width: auto;
    margin-top: 15px;
    text-align: center;
  }
  .cid-sTE4KUdTQw .nav-link {
    display: inline;
    width: auto;
  }
}
.cid-sTE4KUdTQw .inner {
  position: relative;
  display: inline-block;
  padding: 0em 0.8em !important;
}
