body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
}
/* ---- 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: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: #ca4336 !important;
}
.bg-success {
  background-color: #4289a7 !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !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: #4289a7 !important;
  border-color: #4289a7 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !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: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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: #7a2820;
  color: #7a2820 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !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: #254d5e;
  color: #254d5e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4289a7;
  border-color: #4289a7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4289a7 !important;
  border-color: #4289a7 !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: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #ca4336 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #4289a7 !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #7a2820 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #254d5e !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: #72a1ac !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: #4289a7;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.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: #ca4336;
  border-color: #ca4336;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ca4336;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f5dad7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #94c1d5;
}
.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: 'Rubik', sans-serif;
  font-size: 1.2rem;
}
blockquote {
  border-color: #ca4336;
}
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: #ca4336;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ca4336;
  border-bottom-color: #ca4336;
}
.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: #ca4336 !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='%23ca4336' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-v59bvL9rpQ {
  z-index: 1000;
  width: 100%;
}
.cid-v59bvL9rpQ nav.navbar {
  position: fixed;
}
.cid-v59bvL9rpQ .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-v59bvL9rpQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v59bvL9rpQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v59bvL9rpQ .dropdown-item:hover,
.cid-v59bvL9rpQ .dropdown-item:focus {
  background: #ca4336 !important;
  color: white !important;
}
.cid-v59bvL9rpQ .dropdown-item:hover span {
  color: white;
}
.cid-v59bvL9rpQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v59bvL9rpQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v59bvL9rpQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v59bvL9rpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v59bvL9rpQ .nav-link {
  position: relative;
}
.cid-v59bvL9rpQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v59bvL9rpQ .container {
    flex-wrap: nowrap;
  }
}
.cid-v59bvL9rpQ .navbar-nav {
  margin: 0 auto;
}
.cid-v59bvL9rpQ .dropdown-menu,
.cid-v59bvL9rpQ .navbar.opened {
  background: #ffffff !important;
}
.cid-v59bvL9rpQ .nav-item:focus,
.cid-v59bvL9rpQ .nav-link:focus {
  outline: none;
}
.cid-v59bvL9rpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v59bvL9rpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v59bvL9rpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v59bvL9rpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v59bvL9rpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v59bvL9rpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v59bvL9rpQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
}
.cid-v59bvL9rpQ .navbar.opened {
  transition: all 0.3s;
}
.cid-v59bvL9rpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v59bvL9rpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-v59bvL9rpQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v59bvL9rpQ .navbar.collapsed {
  justify-content: center;
}
.cid-v59bvL9rpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v59bvL9rpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v59bvL9rpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v59bvL9rpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v59bvL9rpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v59bvL9rpQ .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-v59bvL9rpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v59bvL9rpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-v59bvL9rpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v59bvL9rpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v59bvL9rpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v59bvL9rpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v59bvL9rpQ .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-v59bvL9rpQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v59bvL9rpQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v59bvL9rpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v59bvL9rpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v59bvL9rpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v59bvL9rpQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v59bvL9rpQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v59bvL9rpQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v59bvL9rpQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v59bvL9rpQ .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v59bvL9rpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v59bvL9rpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v59bvL9rpQ .dropdown-item.active,
.cid-v59bvL9rpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-v59bvL9rpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v59bvL9rpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v59bvL9rpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v59bvL9rpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v59bvL9rpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v59bvL9rpQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v59bvL9rpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v59bvL9rpQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v59bvL9rpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v59bvL9rpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-v59bvL9rpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v59bvL9rpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59bvL9rpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59bvL9rpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v59bvL9rpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59bvL9rpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v59bvL9rpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v59bvL9rpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59bvL9rpQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v59bvL9rpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v59bvL9rpQ .navbar {
    height: 70px;
  }
  .cid-v59bvL9rpQ .navbar.opened {
    height: auto;
  }
  .cid-v59bvL9rpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v59bvL9rpQ .container,
.cid-v59bvL9rpQ .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-v59bvL9rpQ .container:before,
  .cid-v59bvL9rpQ .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-v59bvL9rpQ .navbar-short {
  background-color: #ffffff !important;
}
.cid-v59bvL9rpQ .navbar-short .container,
.cid-v59bvL9rpQ .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-v59bvL9rpQ .navbar-short .container:before,
.cid-v59bvL9rpQ .navbar-short .container-fluid:before {
  display: none;
}
.cid-v59bvL9rpQ .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-v59bvL9rpQ .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-v59bvL9rpQ .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-v59bvL9rpQ .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-v59bvL9rpQ .navbar {
    overflow: hidden;
  }
  .cid-v59bvL9rpQ .container,
  .cid-v59bvL9rpQ .container-fluid {
    min-height: 85px;
  }
  .cid-v59bvL9rpQ .navbar-brand {
    min-height: 85px;
  }
  .cid-v59bvL9rpQ .navbar-short .container,
  .cid-v59bvL9rpQ .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-v59bvL9rpQ .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-v59bvL9rpQ .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-v59bvL9rpQ .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-v59bvL9rpQ .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-v59bvL9rpQ .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-v59bvL9rpQ .mbr-section-btn {
    text-align: left;
  }
  .cid-v59bvL9rpQ .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-v59bvL9rpQ .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-v58TMRBMdC {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #fac769 30%, #fac769 100%);
}
.cid-v58TMRBMdC .animated-element {
  color: #efefef;
}
.cid-v58TMRBMdC .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v58TMRBMdC .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-v58TMRBMdC .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v58TMRBMdC .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-v58TMRBMdC {
    background: #fac769;
  }
  .cid-v58TMRBMdC .img-block {
    padding-bottom: 2rem;
  }
}
.cid-v58TMRBMdC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v58TMRBMdC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v58TMRBMdC .mbr-section-title {
  color: #000000;
}
.cid-v58TMRBMdC .mbr-text,
.cid-v58TMRBMdC .mbr-section-btn {
  color: #000000;
}
.cid-v59cutnQIf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59cutnQIf .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v59cutnQIf .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v59cutnQIf .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #fac769;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v59cutnQIf .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-v59cutnQIf .mbr-text {
  color: #000000;
}
.cid-qIjLmYAeqy {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-v59aSvfLat {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v59aSvfLat .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59aSvfLat .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59aSvfLat .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-v59aSvfLat .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-v59aSvfLat .row {
  align-items: center;
}
.cid-v59aSvfLat img {
  border-radius: 2rem;
}
.cid-v59aSvfLat .image-wrapper {
  background: #fac769;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-v59aSvfLat .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v59aSvfLat .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v59aSvfLat .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v59aSvfLat .mbr-section-title {
  color: #000000;
}
.cid-v59aSvfLat .mbr-text,
.cid-v59aSvfLat .mbr-section-btn {
  color: #000000;
}
.cid-qIjMfqP1Ii {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #fac769;
}
.cid-qIjMfqP1Ii .mbr-section-subtitle {
  color: #000000;
}
.cid-qIjMfqP1Ii .mbr-section-title {
  color: #000000;
}
.cid-qIjES4e5vV {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qIjES4e5vV .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qIjES4e5vV .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #fac769;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qIjES4e5vV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-qIjES4e5vV .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-qIjES4e5vV .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qIjES4e5vV .img-text {
  color: #000000;
}
.cid-qIjES4e5vV .mbr-card-text,
.cid-qIjES4e5vV .mbr-section-btn {
  color: #ffffff;
}
.cid-qIjES4e5vV .mbr-title {
  color: #000000;
}
.cid-v59cn1nVup {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59cn1nVup .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59cn1nVup .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59cn1nVup .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v59cn1nVup .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v59cn1nVup .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v59cn1nVup .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v59cn1nVup .container {
    padding: 0 16px;
  }
}
.cid-v59cn1nVup .row {
  justify-content: center;
}
.cid-v59cn1nVup .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v59cn1nVup .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v59cn1nVup .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-v59cn1nVup .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-v59cn1nVup .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-v59cn1nVup .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-v59cn1nVup .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-v59cn1nVup .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v59cn1nVup .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v59cn1nVup .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v59cn1nVup .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-v59cn1nVup .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v59cn1nVup .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-v59cn1nVup .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v59cn1nVup .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v59cn1nVup .panel-title {
  color: #000000;
}
.cid-v59cn1nVup .panel-text {
  color: #000000;
}
.cid-v4YdRK2s1b {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v4YdRK2s1b .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v4YdRK2s1b .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v4YdRK2s1b .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v4YdRK2s1b .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v4YdRK2s1b .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-v4YdRK2s1b .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-v4YdRK2s1b .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-v4YdRK2s1b .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v4YdRK2s1b .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v4YdRK2s1b .wrapp {
    padding: 1rem;
  }
}
.cid-v4YdRK2s1b H3 {
  color: #000000;
}
.cid-v4YdRK2s1b .mbr-text,
.cid-v4YdRK2s1b .mbr-section-btn {
  color: #000000;
}
.cid-v59axtj0kE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59axtj0kE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59axtj0kE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59axtj0kE .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-v59axtj0kE .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-v59axtj0kE .container {
    padding: 0 25px;
  }
}
.cid-v59axtj0kE .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v59axtj0kE .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-v59axtj0kE .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v59axtj0kE .image-wrapper img {
    height: 350px;
  }
}
.cid-v59axtj0kE .content-wrapper {
  margin-left: 40px;
}
@media (max-width: 992px) {
  .cid-v59axtj0kE .content-wrapper {
    margin: 0;
  }
}
.cid-v59axtj0kE .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #a0ffc2;
  padding: 2px 4px 0;
}
.cid-v59axtj0kE .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v59axtj0kE .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v59axtj0kE .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-v59axtj0kE .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-v59axtj0kE .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v59axtj0kE .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v59axtj0kE .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-v59axtj0kE .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-v59axtj0kE .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-v59axtj0kE .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-v59axtj0kE .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v59axtj0kE .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v59axtj0kE .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-v59axtj0kE .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-v59axtj0kE .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-v59axtj0kE .mbr-section-title {
  color: #2f2e30;
}
.cid-v59axtj0kE .mbr-desc {
  color: #2f2e30;
}
.cid-v59axtj0kE .mbr-text {
  color: #000000;
}
.cid-v59axtj0kE .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-v59axtj0kE .list {
  color: #2f2e30;
}
.cid-v59axtj0kE .mbr-section-title,
.cid-v59axtj0kE .mbr-section-btn {
  color: #000000;
}
.cid-v58YYc2ycL {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #fac769;
}
.cid-v58YYc2ycL .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v58YYc2ycL .row-element,
.cid-v58YYc2ycL .image-element {
  padding: 0;
}
.cid-v58YYc2ycL .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v58YYc2ycL .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v58YYc2ycL .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v58YYc2ycL .text-content {
    padding: 2rem 1rem;
  }
  .cid-v58YYc2ycL .mbr-title,
  .cid-v58YYc2ycL .underline,
  .cid-v58YYc2ycL .mbr-text,
  .cid-v58YYc2ycL .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v58YYc2ycL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v58YYc2ycL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v58YYc2ycL .mbr-title {
  color: #000000;
}
.cid-v58YYc2ycL .mbr-text,
.cid-v58YYc2ycL .mbr-section-btn {
  color: #000000;
}
.cid-v58ZdlIUjM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/certificate-translation-service-1024x684.jpg");
}
.cid-v58ZdlIUjM .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v58ZdlIUjM .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-v58ZdlIUjM .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-v58ZdlIUjM .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-v58ZdlIUjM .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-v58ZdlIUjM .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-v58ZdlIUjM .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-v58ZdlIUjM .mbr-card-text {
  margin: 0;
}
.cid-v58ZdlIUjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v58ZdlIUjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v58ZdlIUjM .mbr-card-text,
.cid-v58ZdlIUjM .mbr-section-btn {
  color: #000000;
}
.cid-v58ZdlIUjM .mbr-section-title {
  color: #000000;
}
.cid-qIjGVVeB7i {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fac769;
}
.cid-qIjGVVeB7i .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-qIjGVVeB7i .mbr-section-btn,
  .cid-qIjGVVeB7i .mbr-section-subtitle,
  .cid-qIjGVVeB7i .mbr-section-title {
    text-align: center !important;
  }
}
.cid-qIjGVVeB7i .mbr-section-title {
  color: #000000;
}
.cid-qIjKmBgNqd {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-qIjKmBgNqd .mbr-section-subtitle {
  color: #000000;
}
.cid-qIjKmBgNqd .mbr-section-title {
  color: #000000;
}
.cid-qIjKkTKkO4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qIjKkTKkO4 .google-map {
  height: 25rem;
  position: relative;
}
.cid-qIjKkTKkO4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qIjKkTKkO4 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-qIjKkTKkO4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qIjKkTKkO4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v5907jHwEx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fac769;
}
.cid-v5907jHwEx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5907jHwEx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5907jHwEx .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v5907jHwEx .content-wrap {
    padding: 30px 20px;
  }
}
.cid-v5907jHwEx .content-wrap .row {
  justify-content: center;
}
.cid-v5907jHwEx .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v5907jHwEx .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v5907jHwEx .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v5907jHwEx .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-v5907jHwEx .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-v5907jHwEx .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5907jHwEx .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v5907jHwEx .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v5907jHwEx .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v5907jHwEx .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v5907jHwEx .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v5907jHwEx .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v5907jHwEx .nav-wrapper .list .item-wrap:hover,
.cid-v5907jHwEx .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v5907jHwEx .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v5907jHwEx .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v5907jHwEx .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v5907jHwEx .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v5907jHwEx .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v5907jHwEx .contacts-wrapper .list .item-wrap:hover,
.cid-v5907jHwEx .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v5907jHwEx .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v5907jHwEx .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v5907jHwEx .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v5907jHwEx .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v5907jHwEx .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v5907jHwEx .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v5907jHwEx .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v5907jHwEx .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-v5907jHwEx .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-v5907jHwEx .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-v5907jHwEx .mbr-section-title {
  color: #ed463f;
}
.cid-v5907jHwEx .mbr-section-subtitle {
  color: #000000;
}
.cid-v5907jHwEx .list {
  color: #404349;
}
.cid-v5907jHwEx .list,
.cid-v5907jHwEx .item-wrap {
  color: #000000;
}
.cid-v59UHfO27f {
  z-index: 1000;
  width: 100%;
}
.cid-v59UHfO27f nav.navbar {
  position: fixed;
}
.cid-v59UHfO27f .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-v59UHfO27f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v59UHfO27f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v59UHfO27f .dropdown-item:hover,
.cid-v59UHfO27f .dropdown-item:focus {
  background: #ca4336 !important;
  color: white !important;
}
.cid-v59UHfO27f .dropdown-item:hover span {
  color: white;
}
.cid-v59UHfO27f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v59UHfO27f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v59UHfO27f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v59UHfO27f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v59UHfO27f .nav-link {
  position: relative;
}
.cid-v59UHfO27f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v59UHfO27f .container {
    flex-wrap: nowrap;
  }
}
.cid-v59UHfO27f .navbar-nav {
  margin: 0 auto;
}
.cid-v59UHfO27f .dropdown-menu,
.cid-v59UHfO27f .navbar.opened {
  background: #ffffff !important;
}
.cid-v59UHfO27f .nav-item:focus,
.cid-v59UHfO27f .nav-link:focus {
  outline: none;
}
.cid-v59UHfO27f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v59UHfO27f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v59UHfO27f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v59UHfO27f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v59UHfO27f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v59UHfO27f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v59UHfO27f .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
}
.cid-v59UHfO27f .navbar.opened {
  transition: all 0.3s;
}
.cid-v59UHfO27f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v59UHfO27f .navbar .navbar-logo img {
  width: auto;
}
.cid-v59UHfO27f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v59UHfO27f .navbar.collapsed {
  justify-content: center;
}
.cid-v59UHfO27f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v59UHfO27f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v59UHfO27f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v59UHfO27f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v59UHfO27f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v59UHfO27f .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-v59UHfO27f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v59UHfO27f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-v59UHfO27f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v59UHfO27f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v59UHfO27f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v59UHfO27f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v59UHfO27f .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-v59UHfO27f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v59UHfO27f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v59UHfO27f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v59UHfO27f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v59UHfO27f .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v59UHfO27f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v59UHfO27f .navbar.navbar-short {
  min-height: 60px;
}
.cid-v59UHfO27f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v59UHfO27f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v59UHfO27f .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v59UHfO27f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v59UHfO27f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v59UHfO27f .dropdown-item.active,
.cid-v59UHfO27f .dropdown-item:active {
  background-color: transparent;
}
.cid-v59UHfO27f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v59UHfO27f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v59UHfO27f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v59UHfO27f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v59UHfO27f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v59UHfO27f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v59UHfO27f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v59UHfO27f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v59UHfO27f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v59UHfO27f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-v59UHfO27f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v59UHfO27f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59UHfO27f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59UHfO27f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v59UHfO27f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59UHfO27f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v59UHfO27f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v59UHfO27f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59UHfO27f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v59UHfO27f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v59UHfO27f .navbar {
    height: 70px;
  }
  .cid-v59UHfO27f .navbar.opened {
    height: auto;
  }
  .cid-v59UHfO27f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v59UHfO27f .container,
.cid-v59UHfO27f .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-v59UHfO27f .container:before,
  .cid-v59UHfO27f .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-v59UHfO27f .navbar-short {
  background-color: #ffffff !important;
}
.cid-v59UHfO27f .navbar-short .container,
.cid-v59UHfO27f .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-v59UHfO27f .navbar-short .container:before,
.cid-v59UHfO27f .navbar-short .container-fluid:before {
  display: none;
}
.cid-v59UHfO27f .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-v59UHfO27f .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-v59UHfO27f .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-v59UHfO27f .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-v59UHfO27f .navbar {
    overflow: hidden;
  }
  .cid-v59UHfO27f .container,
  .cid-v59UHfO27f .container-fluid {
    min-height: 85px;
  }
  .cid-v59UHfO27f .navbar-brand {
    min-height: 85px;
  }
  .cid-v59UHfO27f .navbar-short .container,
  .cid-v59UHfO27f .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-v59UHfO27f .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-v59UHfO27f .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-v59UHfO27f .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-v59UHfO27f .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-v59UHfO27f .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-v59UHfO27f .mbr-section-btn {
    text-align: left;
  }
  .cid-v59UHfO27f .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-v59UHfO27f .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-v59UHi4Yfa {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #fac769 30%, #fac769 100%);
}
.cid-v59UHi4Yfa .animated-element {
  color: #efefef;
}
.cid-v59UHi4Yfa .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v59UHi4Yfa .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-v59UHi4Yfa .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v59UHi4Yfa .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-v59UHi4Yfa {
    background: #fac769;
  }
  .cid-v59UHi4Yfa .img-block {
    padding-bottom: 2rem;
  }
}
.cid-v59UHi4Yfa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59UHi4Yfa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59UHi4Yfa .mbr-section-title {
  color: #000000;
}
.cid-v59UHi4Yfa .mbr-text,
.cid-v59UHi4Yfa .mbr-section-btn {
  color: #000000;
}
.cid-v59UHku4o7 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-v59UHBmImi {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-v59UHBmImi .google-map {
  height: 25rem;
  position: relative;
}
.cid-v59UHBmImi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v59UHBmImi .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v59UHBmImi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v59UHBmImi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v59UHCoB2P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fac769;
}
.cid-v59UHCoB2P .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59UHCoB2P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59UHCoB2P .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v59UHCoB2P .content-wrap {
    padding: 30px 20px;
  }
}
.cid-v59UHCoB2P .content-wrap .row {
  justify-content: center;
}
.cid-v59UHCoB2P .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59UHCoB2P .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59UHCoB2P .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v59UHCoB2P .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-v59UHCoB2P .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-v59UHCoB2P .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v59UHCoB2P .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59UHCoB2P .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59UHCoB2P .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59UHCoB2P .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59UHCoB2P .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59UHCoB2P .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59UHCoB2P .nav-wrapper .list .item-wrap:hover,
.cid-v59UHCoB2P .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59UHCoB2P .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59UHCoB2P .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59UHCoB2P .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59UHCoB2P .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59UHCoB2P .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59UHCoB2P .contacts-wrapper .list .item-wrap:hover,
.cid-v59UHCoB2P .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59UHCoB2P .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59UHCoB2P .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59UHCoB2P .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59UHCoB2P .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59UHCoB2P .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v59UHCoB2P .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v59UHCoB2P .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v59UHCoB2P .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-v59UHCoB2P .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-v59UHCoB2P .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-v59UHCoB2P .mbr-section-title {
  color: #ed463f;
}
.cid-v59UHCoB2P .mbr-section-subtitle {
  color: #000000;
}
.cid-v59UHCoB2P .list {
  color: #404349;
}
.cid-v59UHCoB2P .list,
.cid-v59UHCoB2P .item-wrap {
  color: #000000;
}
.cid-v59Vy4lbDu {
  z-index: 1000;
  width: 100%;
}
.cid-v59Vy4lbDu nav.navbar {
  position: fixed;
}
.cid-v59Vy4lbDu .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-v59Vy4lbDu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v59Vy4lbDu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v59Vy4lbDu .dropdown-item:hover,
.cid-v59Vy4lbDu .dropdown-item:focus {
  background: #ca4336 !important;
  color: white !important;
}
.cid-v59Vy4lbDu .dropdown-item:hover span {
  color: white;
}
.cid-v59Vy4lbDu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v59Vy4lbDu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v59Vy4lbDu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v59Vy4lbDu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v59Vy4lbDu .nav-link {
  position: relative;
}
.cid-v59Vy4lbDu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v59Vy4lbDu .container {
    flex-wrap: nowrap;
  }
}
.cid-v59Vy4lbDu .navbar-nav {
  margin: 0 auto;
}
.cid-v59Vy4lbDu .dropdown-menu,
.cid-v59Vy4lbDu .navbar.opened {
  background: #ffffff !important;
}
.cid-v59Vy4lbDu .nav-item:focus,
.cid-v59Vy4lbDu .nav-link:focus {
  outline: none;
}
.cid-v59Vy4lbDu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v59Vy4lbDu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v59Vy4lbDu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v59Vy4lbDu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v59Vy4lbDu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v59Vy4lbDu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v59Vy4lbDu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
}
.cid-v59Vy4lbDu .navbar.opened {
  transition: all 0.3s;
}
.cid-v59Vy4lbDu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v59Vy4lbDu .navbar .navbar-logo img {
  width: auto;
}
.cid-v59Vy4lbDu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v59Vy4lbDu .navbar.collapsed {
  justify-content: center;
}
.cid-v59Vy4lbDu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v59Vy4lbDu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v59Vy4lbDu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v59Vy4lbDu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v59Vy4lbDu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v59Vy4lbDu .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-v59Vy4lbDu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v59Vy4lbDu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-v59Vy4lbDu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v59Vy4lbDu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v59Vy4lbDu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v59Vy4lbDu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v59Vy4lbDu .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-v59Vy4lbDu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v59Vy4lbDu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v59Vy4lbDu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v59Vy4lbDu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v59Vy4lbDu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v59Vy4lbDu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v59Vy4lbDu .navbar.navbar-short {
  min-height: 60px;
}
.cid-v59Vy4lbDu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v59Vy4lbDu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v59Vy4lbDu .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v59Vy4lbDu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v59Vy4lbDu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v59Vy4lbDu .dropdown-item.active,
.cid-v59Vy4lbDu .dropdown-item:active {
  background-color: transparent;
}
.cid-v59Vy4lbDu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v59Vy4lbDu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v59Vy4lbDu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v59Vy4lbDu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v59Vy4lbDu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v59Vy4lbDu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v59Vy4lbDu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v59Vy4lbDu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v59Vy4lbDu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v59Vy4lbDu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-v59Vy4lbDu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v59Vy4lbDu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59Vy4lbDu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59Vy4lbDu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v59Vy4lbDu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59Vy4lbDu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v59Vy4lbDu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v59Vy4lbDu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59Vy4lbDu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v59Vy4lbDu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v59Vy4lbDu .navbar {
    height: 70px;
  }
  .cid-v59Vy4lbDu .navbar.opened {
    height: auto;
  }
  .cid-v59Vy4lbDu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v59Vy4lbDu .container,
.cid-v59Vy4lbDu .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-v59Vy4lbDu .container:before,
  .cid-v59Vy4lbDu .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-v59Vy4lbDu .navbar-short {
  background-color: #ffffff !important;
}
.cid-v59Vy4lbDu .navbar-short .container,
.cid-v59Vy4lbDu .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-v59Vy4lbDu .navbar-short .container:before,
.cid-v59Vy4lbDu .navbar-short .container-fluid:before {
  display: none;
}
.cid-v59Vy4lbDu .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-v59Vy4lbDu .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-v59Vy4lbDu .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-v59Vy4lbDu .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-v59Vy4lbDu .navbar {
    overflow: hidden;
  }
  .cid-v59Vy4lbDu .container,
  .cid-v59Vy4lbDu .container-fluid {
    min-height: 85px;
  }
  .cid-v59Vy4lbDu .navbar-brand {
    min-height: 85px;
  }
  .cid-v59Vy4lbDu .navbar-short .container,
  .cid-v59Vy4lbDu .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-v59Vy4lbDu .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-v59Vy4lbDu .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-v59Vy4lbDu .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-v59Vy4lbDu .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-v59Vy4lbDu .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-v59Vy4lbDu .mbr-section-btn {
    text-align: left;
  }
  .cid-v59Vy4lbDu .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-v59Vy4lbDu .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-v59Vy6tRmF {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #fac769 30%, #fac769 100%);
}
.cid-v59Vy6tRmF .animated-element {
  color: #efefef;
}
.cid-v59Vy6tRmF .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v59Vy6tRmF .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-v59Vy6tRmF .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v59Vy6tRmF .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-v59Vy6tRmF {
    background: #fac769;
  }
  .cid-v59Vy6tRmF .img-block {
    padding-bottom: 2rem;
  }
}
.cid-v59Vy6tRmF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59Vy6tRmF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59Vy6tRmF .mbr-section-title {
  color: #000000;
}
.cid-v59Vy6tRmF .mbr-text,
.cid-v59Vy6tRmF .mbr-section-btn {
  color: #000000;
}
.cid-v59Vy8ksWu {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-v59VyaqiOj {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-v59VyaqiOj .google-map {
  height: 25rem;
  position: relative;
}
.cid-v59VyaqiOj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v59VyaqiOj .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v59VyaqiOj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v59VyaqiOj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v59Vychcqy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fac769;
}
.cid-v59Vychcqy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59Vychcqy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59Vychcqy .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v59Vychcqy .content-wrap {
    padding: 30px 20px;
  }
}
.cid-v59Vychcqy .content-wrap .row {
  justify-content: center;
}
.cid-v59Vychcqy .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59Vychcqy .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59Vychcqy .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v59Vychcqy .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-v59Vychcqy .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-v59Vychcqy .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v59Vychcqy .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59Vychcqy .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59Vychcqy .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59Vychcqy .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59Vychcqy .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59Vychcqy .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59Vychcqy .nav-wrapper .list .item-wrap:hover,
.cid-v59Vychcqy .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59Vychcqy .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59Vychcqy .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59Vychcqy .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59Vychcqy .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59Vychcqy .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59Vychcqy .contacts-wrapper .list .item-wrap:hover,
.cid-v59Vychcqy .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59Vychcqy .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59Vychcqy .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59Vychcqy .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59Vychcqy .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59Vychcqy .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v59Vychcqy .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v59Vychcqy .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v59Vychcqy .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-v59Vychcqy .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-v59Vychcqy .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-v59Vychcqy .mbr-section-title {
  color: #ed463f;
}
.cid-v59Vychcqy .mbr-section-subtitle {
  color: #000000;
}
.cid-v59Vychcqy .list {
  color: #404349;
}
.cid-v59Vychcqy .list,
.cid-v59Vychcqy .item-wrap {
  color: #000000;
}
.cid-v59EWmVaF2 {
  z-index: 1000;
  width: 100%;
}
.cid-v59EWmVaF2 nav.navbar {
  position: fixed;
}
.cid-v59EWmVaF2 .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-v59EWmVaF2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v59EWmVaF2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v59EWmVaF2 .dropdown-item:hover,
.cid-v59EWmVaF2 .dropdown-item:focus {
  background: #ca4336 !important;
  color: white !important;
}
.cid-v59EWmVaF2 .dropdown-item:hover span {
  color: white;
}
.cid-v59EWmVaF2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v59EWmVaF2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v59EWmVaF2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v59EWmVaF2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v59EWmVaF2 .nav-link {
  position: relative;
}
.cid-v59EWmVaF2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v59EWmVaF2 .container {
    flex-wrap: nowrap;
  }
}
.cid-v59EWmVaF2 .navbar-nav {
  margin: 0 auto;
}
.cid-v59EWmVaF2 .dropdown-menu,
.cid-v59EWmVaF2 .navbar.opened {
  background: #ffffff !important;
}
.cid-v59EWmVaF2 .nav-item:focus,
.cid-v59EWmVaF2 .nav-link:focus {
  outline: none;
}
.cid-v59EWmVaF2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v59EWmVaF2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v59EWmVaF2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v59EWmVaF2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v59EWmVaF2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v59EWmVaF2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v59EWmVaF2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
}
.cid-v59EWmVaF2 .navbar.opened {
  transition: all 0.3s;
}
.cid-v59EWmVaF2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v59EWmVaF2 .navbar .navbar-logo img {
  width: auto;
}
.cid-v59EWmVaF2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v59EWmVaF2 .navbar.collapsed {
  justify-content: center;
}
.cid-v59EWmVaF2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v59EWmVaF2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v59EWmVaF2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v59EWmVaF2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v59EWmVaF2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v59EWmVaF2 .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-v59EWmVaF2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v59EWmVaF2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-v59EWmVaF2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v59EWmVaF2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v59EWmVaF2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v59EWmVaF2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v59EWmVaF2 .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-v59EWmVaF2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v59EWmVaF2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v59EWmVaF2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v59EWmVaF2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v59EWmVaF2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v59EWmVaF2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v59EWmVaF2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v59EWmVaF2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v59EWmVaF2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v59EWmVaF2 .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v59EWmVaF2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v59EWmVaF2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v59EWmVaF2 .dropdown-item.active,
.cid-v59EWmVaF2 .dropdown-item:active {
  background-color: transparent;
}
.cid-v59EWmVaF2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v59EWmVaF2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v59EWmVaF2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v59EWmVaF2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v59EWmVaF2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v59EWmVaF2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v59EWmVaF2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v59EWmVaF2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v59EWmVaF2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v59EWmVaF2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-v59EWmVaF2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v59EWmVaF2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59EWmVaF2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59EWmVaF2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v59EWmVaF2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59EWmVaF2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v59EWmVaF2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v59EWmVaF2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59EWmVaF2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v59EWmVaF2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v59EWmVaF2 .navbar {
    height: 70px;
  }
  .cid-v59EWmVaF2 .navbar.opened {
    height: auto;
  }
  .cid-v59EWmVaF2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v59EWmVaF2 .container,
.cid-v59EWmVaF2 .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-v59EWmVaF2 .container:before,
  .cid-v59EWmVaF2 .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-v59EWmVaF2 .navbar-short {
  background-color: #ffffff !important;
}
.cid-v59EWmVaF2 .navbar-short .container,
.cid-v59EWmVaF2 .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-v59EWmVaF2 .navbar-short .container:before,
.cid-v59EWmVaF2 .navbar-short .container-fluid:before {
  display: none;
}
.cid-v59EWmVaF2 .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-v59EWmVaF2 .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-v59EWmVaF2 .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-v59EWmVaF2 .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-v59EWmVaF2 .navbar {
    overflow: hidden;
  }
  .cid-v59EWmVaF2 .container,
  .cid-v59EWmVaF2 .container-fluid {
    min-height: 85px;
  }
  .cid-v59EWmVaF2 .navbar-brand {
    min-height: 85px;
  }
  .cid-v59EWmVaF2 .navbar-short .container,
  .cid-v59EWmVaF2 .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-v59EWmVaF2 .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-v59EWmVaF2 .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-v59EWmVaF2 .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-v59EWmVaF2 .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-v59EWmVaF2 .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-v59EWmVaF2 .mbr-section-btn {
    text-align: left;
  }
  .cid-v59EWmVaF2 .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-v59EWmVaF2 .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-v59EWohrKx {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #fac769 30%, #fac769 100%);
}
.cid-v59EWohrKx .animated-element {
  color: #efefef;
}
.cid-v59EWohrKx .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v59EWohrKx .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-v59EWohrKx .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v59EWohrKx .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-v59EWohrKx {
    background: #fac769;
  }
  .cid-v59EWohrKx .img-block {
    padding-bottom: 2rem;
  }
}
.cid-v59EWohrKx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59EWohrKx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59EWohrKx .mbr-section-title {
  color: #000000;
}
.cid-v59EWohrKx .mbr-text,
.cid-v59EWohrKx .mbr-section-btn {
  color: #000000;
}
.cid-v59EWoX5ql {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59EWoX5ql .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v59EWoX5ql .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v59EWoX5ql .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #fac769;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v59EWoX5ql .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-v59EWoX5ql .mbr-text {
  color: #000000;
}
.cid-v59EWpq55D {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-v59EWpRlyh {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-v59EWpRlyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59EWpRlyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59EWpRlyh .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-v59EWpRlyh .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-v59EWpRlyh .row {
  align-items: center;
}
.cid-v59EWpRlyh img {
  border-radius: 2rem;
}
.cid-v59EWpRlyh .image-wrapper {
  background: #fac769;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-v59EWpRlyh .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v59EWpRlyh .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v59EWpRlyh .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v59EWpRlyh .mbr-section-title {
  color: #000000;
}
.cid-v59EWpRlyh .mbr-text,
.cid-v59EWpRlyh .mbr-section-btn {
  color: #000000;
}
.cid-v59EWqr4SK {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #fac769;
}
.cid-v59EWqr4SK .mbr-section-subtitle {
  color: #000000;
}
.cid-v59EWqr4SK .mbr-section-title {
  color: #000000;
}
.cid-v59EWqTfFB {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v59EWqTfFB .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-v59EWqTfFB .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-v59EWqTfFB .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-v59EWqTfFB .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-v59EWqTfFB .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #fac769;
}
.cid-v59EWqTfFB .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-v59EWqTfFB .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-v59EWqTfFB .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-v59EWqTfFB .mbr-section-btn {
  padding-top: 1rem;
}
.cid-v59EWqTfFB .img-text {
  color: #000000;
}
.cid-v59EWqTfFB .mbr-card-text,
.cid-v59EWqTfFB .mbr-section-btn {
  color: #ffffff;
}
.cid-v59EWqTfFB .mbr-title {
  color: #000000;
}
.cid-v59EWrH9pR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59EWrH9pR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59EWrH9pR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59EWrH9pR .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v59EWrH9pR .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v59EWrH9pR .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v59EWrH9pR .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v59EWrH9pR .container {
    padding: 0 16px;
  }
}
.cid-v59EWrH9pR .row {
  justify-content: center;
}
.cid-v59EWrH9pR .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v59EWrH9pR .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v59EWrH9pR .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-v59EWrH9pR .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-v59EWrH9pR .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-v59EWrH9pR .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-v59EWrH9pR .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-v59EWrH9pR .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v59EWrH9pR .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v59EWrH9pR .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v59EWrH9pR .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-v59EWrH9pR .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v59EWrH9pR .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-v59EWrH9pR .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v59EWrH9pR .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v59EWrH9pR .panel-title {
  color: #000000;
}
.cid-v59EWrH9pR .panel-text {
  color: #000000;
}
.cid-v59EWsvKX0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v59EWsvKX0 .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v59EWsvKX0 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v59EWsvKX0 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v59EWsvKX0 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v59EWsvKX0 .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-v59EWsvKX0 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-v59EWsvKX0 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-v59EWsvKX0 .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v59EWsvKX0 .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v59EWsvKX0 .wrapp {
    padding: 1rem;
  }
}
.cid-v59EWsvKX0 H3 {
  color: #000000;
}
.cid-v59EWsvKX0 .mbr-text,
.cid-v59EWsvKX0 .mbr-section-btn {
  color: #000000;
}
.cid-v59EWt4loU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59EWt4loU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59EWt4loU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59EWt4loU .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-v59EWt4loU .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-v59EWt4loU .container {
    padding: 0 25px;
  }
}
.cid-v59EWt4loU .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v59EWt4loU .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-v59EWt4loU .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v59EWt4loU .image-wrapper img {
    height: 350px;
  }
}
.cid-v59EWt4loU .content-wrapper {
  margin-left: 40px;
}
@media (max-width: 992px) {
  .cid-v59EWt4loU .content-wrapper {
    margin: 0;
  }
}
.cid-v59EWt4loU .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #a0ffc2;
  padding: 2px 4px 0;
}
.cid-v59EWt4loU .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v59EWt4loU .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v59EWt4loU .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-v59EWt4loU .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-v59EWt4loU .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v59EWt4loU .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v59EWt4loU .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-v59EWt4loU .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-v59EWt4loU .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-v59EWt4loU .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-v59EWt4loU .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v59EWt4loU .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v59EWt4loU .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-v59EWt4loU .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-v59EWt4loU .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-v59EWt4loU .mbr-section-title {
  color: #2f2e30;
}
.cid-v59EWt4loU .mbr-desc {
  color: #2f2e30;
}
.cid-v59EWt4loU .mbr-text {
  color: #000000;
}
.cid-v59EWt4loU .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-v59EWt4loU .list {
  color: #2f2e30;
}
.cid-v59EWt4loU .mbr-section-title,
.cid-v59EWt4loU .mbr-section-btn {
  color: #000000;
}
.cid-v59EWtKa2y {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #fac769;
}
.cid-v59EWtKa2y .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v59EWtKa2y .row-element,
.cid-v59EWtKa2y .image-element {
  padding: 0;
}
.cid-v59EWtKa2y .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v59EWtKa2y .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v59EWtKa2y .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v59EWtKa2y .text-content {
    padding: 2rem 1rem;
  }
  .cid-v59EWtKa2y .mbr-title,
  .cid-v59EWtKa2y .underline,
  .cid-v59EWtKa2y .mbr-text,
  .cid-v59EWtKa2y .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v59EWtKa2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59EWtKa2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59EWtKa2y .mbr-title {
  color: #000000;
}
.cid-v59EWtKa2y .mbr-text,
.cid-v59EWtKa2y .mbr-section-btn {
  color: #000000;
}
.cid-v59EWujjvW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/certificate-translation-service-1024x684.jpg");
}
.cid-v59EWujjvW .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v59EWujjvW .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-v59EWujjvW .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-v59EWujjvW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-v59EWujjvW .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-v59EWujjvW .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-v59EWujjvW .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-v59EWujjvW .mbr-card-text {
  margin: 0;
}
.cid-v59EWujjvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59EWujjvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59EWujjvW .mbr-card-text,
.cid-v59EWujjvW .mbr-section-btn {
  color: #000000;
}
.cid-v59EWujjvW .mbr-section-title {
  color: #000000;
}
.cid-v59EWvbVWS {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fac769;
}
.cid-v59EWvbVWS .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-v59EWvbVWS .mbr-section-btn,
  .cid-v59EWvbVWS .mbr-section-subtitle,
  .cid-v59EWvbVWS .mbr-section-title {
    text-align: center !important;
  }
}
.cid-v59EWvbVWS .mbr-section-title {
  color: #000000;
}
.cid-v59EWvJtGh {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-v59EWvJtGh .mbr-section-subtitle {
  color: #000000;
}
.cid-v59EWvJtGh .mbr-section-title {
  color: #000000;
}
.cid-v59JG6lgfn {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #fac769;
}
.cid-v59JG6lgfn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59JG6lgfn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59JG6lgfn .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 2.5rem;
}
.cid-v59JG6lgfn .mbr-section-title {
  color: #000000;
}
.cid-v59JG6lgfn .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-v59JG6lgfn .panel-group {
  border: none;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-v59JG6lgfn .card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-v59JG6lgfn .card:not(:first-child) {
  border-top: 1px solid #bbbbbb;
}
.cid-v59JG6lgfn .mbr-iconfont {
  font-size: 10px !important;
  font-family: 'Moririse2' !important;
  color: #1f1d1a;
  margin-left: 1rem;
  padding: 17px;
  background-color: #fac769;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-v59JG6lgfn .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-v59JG6lgfn .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v59JG6lgfn .panel-title {
  padding: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-v59JG6lgfn .panel-title {
    padding: 20px !important;
  }
}
.cid-v59JG6lgfn .panel-title:hover {
  text-decoration-line: none !important;
}
.cid-v59JG6lgfn .panel-title:hover .panel-title-edit {
  text-decoration: underline !important;
}
.cid-v59JG6lgfn .panel-body {
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 767px) {
  .cid-v59JG6lgfn .panel-body {
    padding: 0 20px 20px 20px;
  }
}
.cid-v59JG6lgfn .panel-text {
  margin-bottom: 16px;
  color: #353535;
}
.cid-v59JG6lgfn .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v59JG6lgfn .panel-title-edit {
  color: #000000;
  padding-right: 12px;
}
.cid-v59EWwgdkF {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-v59EWwgdkF .google-map {
  height: 25rem;
  position: relative;
}
.cid-v59EWwgdkF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v59EWwgdkF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v59EWwgdkF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v59EWwgdkF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v59EWwMsUF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fac769;
}
.cid-v59EWwMsUF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59EWwMsUF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59EWwMsUF .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v59EWwMsUF .content-wrap {
    padding: 30px 20px;
  }
}
.cid-v59EWwMsUF .content-wrap .row {
  justify-content: center;
}
.cid-v59EWwMsUF .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59EWwMsUF .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59EWwMsUF .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v59EWwMsUF .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-v59EWwMsUF .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-v59EWwMsUF .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v59EWwMsUF .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59EWwMsUF .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59EWwMsUF .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59EWwMsUF .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59EWwMsUF .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59EWwMsUF .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59EWwMsUF .nav-wrapper .list .item-wrap:hover,
.cid-v59EWwMsUF .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59EWwMsUF .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59EWwMsUF .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59EWwMsUF .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59EWwMsUF .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59EWwMsUF .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59EWwMsUF .contacts-wrapper .list .item-wrap:hover,
.cid-v59EWwMsUF .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59EWwMsUF .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59EWwMsUF .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59EWwMsUF .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59EWwMsUF .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59EWwMsUF .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v59EWwMsUF .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v59EWwMsUF .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v59EWwMsUF .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-v59EWwMsUF .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-v59EWwMsUF .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-v59EWwMsUF .mbr-section-title {
  color: #ed463f;
}
.cid-v59EWwMsUF .mbr-section-subtitle {
  color: #000000;
}
.cid-v59EWwMsUF .list {
  color: #404349;
}
.cid-v59EWwMsUF .list,
.cid-v59EWwMsUF .item-wrap {
  color: #000000;
}
.cid-v59JXVUUDG {
  z-index: 1000;
  width: 100%;
}
.cid-v59JXVUUDG nav.navbar {
  position: fixed;
}
.cid-v59JXVUUDG .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-v59JXVUUDG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v59JXVUUDG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v59JXVUUDG .dropdown-item:hover,
.cid-v59JXVUUDG .dropdown-item:focus {
  background: #ca4336 !important;
  color: white !important;
}
.cid-v59JXVUUDG .dropdown-item:hover span {
  color: white;
}
.cid-v59JXVUUDG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v59JXVUUDG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v59JXVUUDG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v59JXVUUDG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v59JXVUUDG .nav-link {
  position: relative;
}
.cid-v59JXVUUDG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v59JXVUUDG .container {
    flex-wrap: nowrap;
  }
}
.cid-v59JXVUUDG .navbar-nav {
  margin: 0 auto;
}
.cid-v59JXVUUDG .dropdown-menu,
.cid-v59JXVUUDG .navbar.opened {
  background: #ffffff !important;
}
.cid-v59JXVUUDG .nav-item:focus,
.cid-v59JXVUUDG .nav-link:focus {
  outline: none;
}
.cid-v59JXVUUDG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v59JXVUUDG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v59JXVUUDG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v59JXVUUDG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v59JXVUUDG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v59JXVUUDG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v59JXVUUDG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
}
.cid-v59JXVUUDG .navbar.opened {
  transition: all 0.3s;
}
.cid-v59JXVUUDG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v59JXVUUDG .navbar .navbar-logo img {
  width: auto;
}
.cid-v59JXVUUDG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v59JXVUUDG .navbar.collapsed {
  justify-content: center;
}
.cid-v59JXVUUDG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v59JXVUUDG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v59JXVUUDG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v59JXVUUDG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v59JXVUUDG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v59JXVUUDG .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-v59JXVUUDG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v59JXVUUDG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-v59JXVUUDG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v59JXVUUDG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v59JXVUUDG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v59JXVUUDG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v59JXVUUDG .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-v59JXVUUDG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v59JXVUUDG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v59JXVUUDG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v59JXVUUDG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v59JXVUUDG .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v59JXVUUDG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v59JXVUUDG .navbar.navbar-short {
  min-height: 60px;
}
.cid-v59JXVUUDG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v59JXVUUDG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v59JXVUUDG .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v59JXVUUDG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v59JXVUUDG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v59JXVUUDG .dropdown-item.active,
.cid-v59JXVUUDG .dropdown-item:active {
  background-color: transparent;
}
.cid-v59JXVUUDG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v59JXVUUDG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v59JXVUUDG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v59JXVUUDG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v59JXVUUDG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v59JXVUUDG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v59JXVUUDG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v59JXVUUDG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v59JXVUUDG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v59JXVUUDG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-v59JXVUUDG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v59JXVUUDG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59JXVUUDG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59JXVUUDG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v59JXVUUDG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59JXVUUDG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v59JXVUUDG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v59JXVUUDG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59JXVUUDG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v59JXVUUDG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v59JXVUUDG .navbar {
    height: 70px;
  }
  .cid-v59JXVUUDG .navbar.opened {
    height: auto;
  }
  .cid-v59JXVUUDG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v59JXVUUDG .container,
.cid-v59JXVUUDG .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-v59JXVUUDG .container:before,
  .cid-v59JXVUUDG .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-v59JXVUUDG .navbar-short {
  background-color: #ffffff !important;
}
.cid-v59JXVUUDG .navbar-short .container,
.cid-v59JXVUUDG .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-v59JXVUUDG .navbar-short .container:before,
.cid-v59JXVUUDG .navbar-short .container-fluid:before {
  display: none;
}
.cid-v59JXVUUDG .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-v59JXVUUDG .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-v59JXVUUDG .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-v59JXVUUDG .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-v59JXVUUDG .navbar {
    overflow: hidden;
  }
  .cid-v59JXVUUDG .container,
  .cid-v59JXVUUDG .container-fluid {
    min-height: 85px;
  }
  .cid-v59JXVUUDG .navbar-brand {
    min-height: 85px;
  }
  .cid-v59JXVUUDG .navbar-short .container,
  .cid-v59JXVUUDG .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-v59JXVUUDG .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-v59JXVUUDG .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-v59JXVUUDG .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-v59JXVUUDG .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-v59JXVUUDG .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-v59JXVUUDG .mbr-section-btn {
    text-align: left;
  }
  .cid-v59JXVUUDG .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-v59JXVUUDG .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-v59JXY4THw {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #fac769 30%, #fac769 100%);
}
.cid-v59JXY4THw .animated-element {
  color: #efefef;
}
.cid-v59JXY4THw .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v59JXY4THw .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-v59JXY4THw .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v59JXY4THw .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-v59JXY4THw {
    background: #fac769;
  }
  .cid-v59JXY4THw .img-block {
    padding-bottom: 2rem;
  }
}
.cid-v59JXY4THw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59JXY4THw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59JXY4THw .mbr-section-title {
  color: #000000;
}
.cid-v59JXY4THw .mbr-text,
.cid-v59JXY4THw .mbr-section-btn {
  color: #000000;
}
.cid-v59JXYLMhx {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v59JXYLMhx .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v59JXYLMhx .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v59JXYLMhx .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #fac769;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v59JXYLMhx .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-v59JXYLMhx .mbr-text {
  color: #000000;
}
.cid-v59JXZv5qp {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-v59JY0almh {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-v59JY0almh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59JY0almh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59JY0almh .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-v59JY0almh .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-v59JY0almh .row {
  align-items: center;
}
.cid-v59JY0almh img {
  border-radius: 2rem;
}
.cid-v59JY0almh .image-wrapper {
  background: #fac769;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-v59JY0almh .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v59JY0almh .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v59JY0almh .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v59JY0almh .mbr-section-title {
  color: #000000;
}
.cid-v59JY0almh .mbr-text,
.cid-v59JY0almh .mbr-section-btn {
  color: #000000;
}
.cid-v59JY0MSDY {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #fac769;
}
.cid-v59JY0MSDY .mbr-section-subtitle {
  color: #000000;
}
.cid-v59JY0MSDY .mbr-section-title {
  color: #000000;
}
.cid-v59JY1y5uL {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v59JY1y5uL .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-v59JY1y5uL .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-v59JY1y5uL .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-v59JY1y5uL .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-v59JY1y5uL .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #fac769;
}
.cid-v59JY1y5uL .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-v59JY1y5uL .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-v59JY1y5uL .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-v59JY1y5uL .mbr-section-btn {
  padding-top: 1rem;
}
.cid-v59JY1y5uL .img-text {
  color: #000000;
}
.cid-v59JY1y5uL .mbr-card-text,
.cid-v59JY1y5uL .mbr-section-btn {
  color: #ffffff;
}
.cid-v59JY1y5uL .mbr-title {
  color: #000000;
}
.cid-v59JY2LSyi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59JY2LSyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59JY2LSyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59JY2LSyi .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v59JY2LSyi .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v59JY2LSyi .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v59JY2LSyi .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v59JY2LSyi .container {
    padding: 0 16px;
  }
}
.cid-v59JY2LSyi .row {
  justify-content: center;
}
.cid-v59JY2LSyi .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v59JY2LSyi .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v59JY2LSyi .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-v59JY2LSyi .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-v59JY2LSyi .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-v59JY2LSyi .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-v59JY2LSyi .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-v59JY2LSyi .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v59JY2LSyi .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v59JY2LSyi .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v59JY2LSyi .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-v59JY2LSyi .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v59JY2LSyi .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-v59JY2LSyi .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v59JY2LSyi .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v59JY2LSyi .panel-title {
  color: #000000;
}
.cid-v59JY2LSyi .panel-text {
  color: #000000;
}
.cid-v59JY3KFbi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v59JY3KFbi .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v59JY3KFbi .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v59JY3KFbi .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v59JY3KFbi .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v59JY3KFbi .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-v59JY3KFbi .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-v59JY3KFbi .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-v59JY3KFbi .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v59JY3KFbi .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v59JY3KFbi .wrapp {
    padding: 1rem;
  }
}
.cid-v59JY3KFbi H3 {
  color: #000000;
}
.cid-v59JY3KFbi .mbr-text,
.cid-v59JY3KFbi .mbr-section-btn {
  color: #000000;
}
.cid-v59JY4FOZk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59JY4FOZk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59JY4FOZk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59JY4FOZk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-v59JY4FOZk .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-v59JY4FOZk .container {
    padding: 0 25px;
  }
}
.cid-v59JY4FOZk .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v59JY4FOZk .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-v59JY4FOZk .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v59JY4FOZk .image-wrapper img {
    height: 350px;
  }
}
.cid-v59JY4FOZk .content-wrapper {
  margin-left: 40px;
}
@media (max-width: 992px) {
  .cid-v59JY4FOZk .content-wrapper {
    margin: 0;
  }
}
.cid-v59JY4FOZk .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #a0ffc2;
  padding: 2px 4px 0;
}
.cid-v59JY4FOZk .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v59JY4FOZk .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v59JY4FOZk .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-v59JY4FOZk .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-v59JY4FOZk .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v59JY4FOZk .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v59JY4FOZk .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-v59JY4FOZk .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-v59JY4FOZk .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-v59JY4FOZk .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-v59JY4FOZk .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v59JY4FOZk .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v59JY4FOZk .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-v59JY4FOZk .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-v59JY4FOZk .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-v59JY4FOZk .mbr-section-title {
  color: #2f2e30;
}
.cid-v59JY4FOZk .mbr-desc {
  color: #2f2e30;
}
.cid-v59JY4FOZk .mbr-text {
  color: #000000;
}
.cid-v59JY4FOZk .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-v59JY4FOZk .list {
  color: #2f2e30;
}
.cid-v59JY4FOZk .mbr-section-title,
.cid-v59JY4FOZk .mbr-section-btn {
  color: #000000;
}
.cid-v59JY5z3n5 {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #fac769;
}
.cid-v59JY5z3n5 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v59JY5z3n5 .row-element,
.cid-v59JY5z3n5 .image-element {
  padding: 0;
}
.cid-v59JY5z3n5 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v59JY5z3n5 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v59JY5z3n5 .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v59JY5z3n5 .text-content {
    padding: 2rem 1rem;
  }
  .cid-v59JY5z3n5 .mbr-title,
  .cid-v59JY5z3n5 .underline,
  .cid-v59JY5z3n5 .mbr-text,
  .cid-v59JY5z3n5 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v59JY5z3n5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59JY5z3n5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59JY5z3n5 .mbr-title {
  color: #000000;
}
.cid-v59JY5z3n5 .mbr-text,
.cid-v59JY5z3n5 .mbr-section-btn {
  color: #000000;
}
.cid-v59JY6fclH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/certificate-translation-service-1024x684.jpg");
}
.cid-v59JY6fclH .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v59JY6fclH .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-v59JY6fclH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-v59JY6fclH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-v59JY6fclH .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-v59JY6fclH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-v59JY6fclH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-v59JY6fclH .mbr-card-text {
  margin: 0;
}
.cid-v59JY6fclH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59JY6fclH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59JY6fclH .mbr-card-text,
.cid-v59JY6fclH .mbr-section-btn {
  color: #000000;
}
.cid-v59JY6fclH .mbr-section-title {
  color: #000000;
}
.cid-v59U8MA18T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59U8MA18T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59U8MA18T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v59U8MA18T .container {
    padding: 0 20px;
  }
}
.cid-v59U8MA18T .row {
  margin: 0;
}
.cid-v59U8MA18T .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v59U8MA18T .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v59U8MA18T .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v59U8MA18T .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v59U8MA18T .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v59U8MA18T .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v59U8MA18T .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v59JY7N6WO {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fac769;
}
.cid-v59JY7N6WO .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-v59JY7N6WO .mbr-section-btn,
  .cid-v59JY7N6WO .mbr-section-subtitle,
  .cid-v59JY7N6WO .mbr-section-title {
    text-align: center !important;
  }
}
.cid-v59JY7N6WO .mbr-section-title {
  color: #000000;
}
.cid-v59JY9YmWf {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-v59JY9YmWf .mbr-section-subtitle {
  color: #000000;
}
.cid-v59JY9YmWf .mbr-section-title {
  color: #000000;
}
.cid-v59JYcbUEX {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #fac769;
}
.cid-v59JYcbUEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59JYcbUEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59JYcbUEX .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 2.5rem;
}
.cid-v59JYcbUEX .mbr-section-title {
  color: #000000;
}
.cid-v59JYcbUEX .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-v59JYcbUEX .panel-group {
  border: none;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-v59JYcbUEX .card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-v59JYcbUEX .card:not(:first-child) {
  border-top: 1px solid #bbbbbb;
}
.cid-v59JYcbUEX .mbr-iconfont {
  font-size: 10px !important;
  font-family: 'Moririse2' !important;
  color: #1f1d1a;
  margin-left: 1rem;
  padding: 17px;
  background-color: #fac769;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-v59JYcbUEX .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-v59JYcbUEX .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v59JYcbUEX .panel-title {
  padding: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-v59JYcbUEX .panel-title {
    padding: 20px !important;
  }
}
.cid-v59JYcbUEX .panel-title:hover {
  text-decoration-line: none !important;
}
.cid-v59JYcbUEX .panel-title:hover .panel-title-edit {
  text-decoration: underline !important;
}
.cid-v59JYcbUEX .panel-body {
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 767px) {
  .cid-v59JYcbUEX .panel-body {
    padding: 0 20px 20px 20px;
  }
}
.cid-v59JYcbUEX .panel-text {
  margin-bottom: 16px;
  color: #353535;
}
.cid-v59JYcbUEX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v59JYcbUEX .panel-title-edit {
  color: #000000;
  padding-right: 12px;
}
.cid-v59JYeBt1g {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-v59JYeBt1g .google-map {
  height: 25rem;
  position: relative;
}
.cid-v59JYeBt1g .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v59JYeBt1g .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v59JYeBt1g .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v59JYeBt1g .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v59JYgTi7v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fac769;
}
.cid-v59JYgTi7v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59JYgTi7v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59JYgTi7v .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v59JYgTi7v .content-wrap {
    padding: 30px 20px;
  }
}
.cid-v59JYgTi7v .content-wrap .row {
  justify-content: center;
}
.cid-v59JYgTi7v .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59JYgTi7v .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59JYgTi7v .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v59JYgTi7v .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-v59JYgTi7v .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-v59JYgTi7v .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v59JYgTi7v .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59JYgTi7v .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59JYgTi7v .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59JYgTi7v .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59JYgTi7v .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59JYgTi7v .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59JYgTi7v .nav-wrapper .list .item-wrap:hover,
.cid-v59JYgTi7v .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59JYgTi7v .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59JYgTi7v .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59JYgTi7v .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59JYgTi7v .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59JYgTi7v .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59JYgTi7v .contacts-wrapper .list .item-wrap:hover,
.cid-v59JYgTi7v .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59JYgTi7v .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59JYgTi7v .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59JYgTi7v .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59JYgTi7v .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59JYgTi7v .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v59JYgTi7v .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v59JYgTi7v .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v59JYgTi7v .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-v59JYgTi7v .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-v59JYgTi7v .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-v59JYgTi7v .mbr-section-title {
  color: #ed463f;
}
.cid-v59JYgTi7v .mbr-section-subtitle {
  color: #000000;
}
.cid-v59JYgTi7v .list {
  color: #404349;
}
.cid-v59JYgTi7v .list,
.cid-v59JYgTi7v .item-wrap {
  color: #000000;
}
.cid-v59Qj31LK8 {
  z-index: 1000;
  width: 100%;
}
.cid-v59Qj31LK8 nav.navbar {
  position: fixed;
}
.cid-v59Qj31LK8 .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-v59Qj31LK8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v59Qj31LK8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v59Qj31LK8 .dropdown-item:hover,
.cid-v59Qj31LK8 .dropdown-item:focus {
  background: #ca4336 !important;
  color: white !important;
}
.cid-v59Qj31LK8 .dropdown-item:hover span {
  color: white;
}
.cid-v59Qj31LK8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v59Qj31LK8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v59Qj31LK8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v59Qj31LK8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v59Qj31LK8 .nav-link {
  position: relative;
}
.cid-v59Qj31LK8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v59Qj31LK8 .container {
    flex-wrap: nowrap;
  }
}
.cid-v59Qj31LK8 .navbar-nav {
  margin: 0 auto;
}
.cid-v59Qj31LK8 .dropdown-menu,
.cid-v59Qj31LK8 .navbar.opened {
  background: #ffffff !important;
}
.cid-v59Qj31LK8 .nav-item:focus,
.cid-v59Qj31LK8 .nav-link:focus {
  outline: none;
}
.cid-v59Qj31LK8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v59Qj31LK8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v59Qj31LK8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v59Qj31LK8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v59Qj31LK8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v59Qj31LK8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v59Qj31LK8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
}
.cid-v59Qj31LK8 .navbar.opened {
  transition: all 0.3s;
}
.cid-v59Qj31LK8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v59Qj31LK8 .navbar .navbar-logo img {
  width: auto;
}
.cid-v59Qj31LK8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v59Qj31LK8 .navbar.collapsed {
  justify-content: center;
}
.cid-v59Qj31LK8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v59Qj31LK8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v59Qj31LK8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v59Qj31LK8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v59Qj31LK8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v59Qj31LK8 .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-v59Qj31LK8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v59Qj31LK8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-v59Qj31LK8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v59Qj31LK8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v59Qj31LK8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v59Qj31LK8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v59Qj31LK8 .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-v59Qj31LK8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v59Qj31LK8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v59Qj31LK8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v59Qj31LK8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v59Qj31LK8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v59Qj31LK8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v59Qj31LK8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v59Qj31LK8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v59Qj31LK8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v59Qj31LK8 .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v59Qj31LK8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v59Qj31LK8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v59Qj31LK8 .dropdown-item.active,
.cid-v59Qj31LK8 .dropdown-item:active {
  background-color: transparent;
}
.cid-v59Qj31LK8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v59Qj31LK8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v59Qj31LK8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v59Qj31LK8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v59Qj31LK8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v59Qj31LK8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v59Qj31LK8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v59Qj31LK8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v59Qj31LK8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v59Qj31LK8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-v59Qj31LK8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v59Qj31LK8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59Qj31LK8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v59Qj31LK8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v59Qj31LK8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59Qj31LK8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v59Qj31LK8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v59Qj31LK8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v59Qj31LK8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v59Qj31LK8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v59Qj31LK8 .navbar {
    height: 70px;
  }
  .cid-v59Qj31LK8 .navbar.opened {
    height: auto;
  }
  .cid-v59Qj31LK8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v59Qj31LK8 .container,
.cid-v59Qj31LK8 .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-v59Qj31LK8 .container:before,
  .cid-v59Qj31LK8 .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-v59Qj31LK8 .navbar-short {
  background-color: #ffffff !important;
}
.cid-v59Qj31LK8 .navbar-short .container,
.cid-v59Qj31LK8 .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-v59Qj31LK8 .navbar-short .container:before,
.cid-v59Qj31LK8 .navbar-short .container-fluid:before {
  display: none;
}
.cid-v59Qj31LK8 .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-v59Qj31LK8 .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-v59Qj31LK8 .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-v59Qj31LK8 .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-v59Qj31LK8 .navbar {
    overflow: hidden;
  }
  .cid-v59Qj31LK8 .container,
  .cid-v59Qj31LK8 .container-fluid {
    min-height: 85px;
  }
  .cid-v59Qj31LK8 .navbar-brand {
    min-height: 85px;
  }
  .cid-v59Qj31LK8 .navbar-short .container,
  .cid-v59Qj31LK8 .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-v59Qj31LK8 .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-v59Qj31LK8 .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-v59Qj31LK8 .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-v59Qj31LK8 .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-v59Qj31LK8 .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-v59Qj31LK8 .mbr-section-btn {
    text-align: left;
  }
  .cid-v59Qj31LK8 .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-v59Qj31LK8 .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-v59Qj5mCoc {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #fac769 30%, #fac769 100%);
}
.cid-v59Qj5mCoc .animated-element {
  color: #efefef;
}
.cid-v59Qj5mCoc .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v59Qj5mCoc .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-v59Qj5mCoc .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v59Qj5mCoc .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-v59Qj5mCoc {
    background: #fac769;
  }
  .cid-v59Qj5mCoc .img-block {
    padding-bottom: 2rem;
  }
}
.cid-v59Qj5mCoc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59Qj5mCoc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59Qj5mCoc .mbr-section-title {
  color: #000000;
}
.cid-v59Qj5mCoc .mbr-text,
.cid-v59Qj5mCoc .mbr-section-btn {
  color: #000000;
}
.cid-v59Qj6ATSf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v59Qj6ATSf .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v59Qj6ATSf .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v59Qj6ATSf .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #fac769;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v59Qj6ATSf .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-v59Qj6ATSf .mbr-text {
  color: #000000;
}
.cid-v59Qj7pX1X {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-v59Qj8byYU {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-v59Qj8byYU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59Qj8byYU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59Qj8byYU .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-v59Qj8byYU .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-v59Qj8byYU .row {
  align-items: center;
}
.cid-v59Qj8byYU img {
  border-radius: 2rem;
}
.cid-v59Qj8byYU .image-wrapper {
  background: #fac769;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-v59Qj8byYU .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v59Qj8byYU .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v59Qj8byYU .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v59Qj8byYU .mbr-section-title {
  color: #000000;
}
.cid-v59Qj8byYU .mbr-text,
.cid-v59Qj8byYU .mbr-section-btn {
  color: #000000;
}
.cid-v59Qj95sU3 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #fac769;
}
.cid-v59Qj95sU3 .mbr-section-subtitle {
  color: #000000;
}
.cid-v59Qj95sU3 .mbr-section-title {
  color: #000000;
}
.cid-v59Qj9ReRF {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v59Qj9ReRF .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-v59Qj9ReRF .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-v59Qj9ReRF .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-v59Qj9ReRF .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-v59Qj9ReRF .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #fac769;
}
.cid-v59Qj9ReRF .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-v59Qj9ReRF .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-v59Qj9ReRF .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-v59Qj9ReRF .mbr-section-btn {
  padding-top: 1rem;
}
.cid-v59Qj9ReRF .img-text {
  color: #000000;
}
.cid-v59Qj9ReRF .mbr-card-text,
.cid-v59Qj9ReRF .mbr-section-btn {
  color: #ffffff;
}
.cid-v59Qj9ReRF .mbr-title {
  color: #000000;
}
.cid-v59QjbydBK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59QjbydBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59QjbydBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59QjbydBK .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v59QjbydBK .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v59QjbydBK .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v59QjbydBK .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v59QjbydBK .container {
    padding: 0 16px;
  }
}
.cid-v59QjbydBK .row {
  justify-content: center;
}
.cid-v59QjbydBK .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v59QjbydBK .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v59QjbydBK .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-v59QjbydBK .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-v59QjbydBK .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-v59QjbydBK .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-v59QjbydBK .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-v59QjbydBK .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v59QjbydBK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v59QjbydBK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v59QjbydBK .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-v59QjbydBK .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v59QjbydBK .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-v59QjbydBK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v59QjbydBK .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v59QjbydBK .panel-title {
  color: #000000;
}
.cid-v59QjbydBK .panel-text {
  color: #000000;
}
.cid-v59Qje8YYy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v59Qje8YYy .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v59Qje8YYy .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v59Qje8YYy .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v59Qje8YYy .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v59Qje8YYy .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-v59Qje8YYy .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-v59Qje8YYy .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-v59Qje8YYy .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v59Qje8YYy .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v59Qje8YYy .wrapp {
    padding: 1rem;
  }
}
.cid-v59Qje8YYy H3 {
  color: #000000;
}
.cid-v59Qje8YYy .mbr-text,
.cid-v59Qje8YYy .mbr-section-btn {
  color: #000000;
}
.cid-v59Qjgm270 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v59Qjgm270 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59Qjgm270 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59Qjgm270 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-v59Qjgm270 .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-v59Qjgm270 .container {
    padding: 0 25px;
  }
}
.cid-v59Qjgm270 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v59Qjgm270 .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-v59Qjgm270 .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v59Qjgm270 .image-wrapper img {
    height: 350px;
  }
}
.cid-v59Qjgm270 .content-wrapper {
  margin-left: 40px;
}
@media (max-width: 992px) {
  .cid-v59Qjgm270 .content-wrapper {
    margin: 0;
  }
}
.cid-v59Qjgm270 .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #a0ffc2;
  padding: 2px 4px 0;
}
.cid-v59Qjgm270 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v59Qjgm270 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v59Qjgm270 .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-v59Qjgm270 .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-v59Qjgm270 .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v59Qjgm270 .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v59Qjgm270 .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-v59Qjgm270 .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-v59Qjgm270 .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-v59Qjgm270 .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-v59Qjgm270 .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v59Qjgm270 .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v59Qjgm270 .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-v59Qjgm270 .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-v59Qjgm270 .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-v59Qjgm270 .mbr-section-title {
  color: #2f2e30;
}
.cid-v59Qjgm270 .mbr-desc {
  color: #2f2e30;
}
.cid-v59Qjgm270 .mbr-text {
  color: #000000;
}
.cid-v59Qjgm270 .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-v59Qjgm270 .list {
  color: #2f2e30;
}
.cid-v59Qjgm270 .mbr-section-title,
.cid-v59Qjgm270 .mbr-section-btn {
  color: #000000;
}
.cid-v59QjihNLy {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #fac769;
}
.cid-v59QjihNLy .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v59QjihNLy .row-element,
.cid-v59QjihNLy .image-element {
  padding: 0;
}
.cid-v59QjihNLy .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v59QjihNLy .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v59QjihNLy .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v59QjihNLy .text-content {
    padding: 2rem 1rem;
  }
  .cid-v59QjihNLy .mbr-title,
  .cid-v59QjihNLy .underline,
  .cid-v59QjihNLy .mbr-text,
  .cid-v59QjihNLy .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v59QjihNLy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59QjihNLy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59QjihNLy .mbr-title {
  color: #000000;
}
.cid-v59QjihNLy .mbr-text,
.cid-v59QjihNLy .mbr-section-btn {
  color: #000000;
}
.cid-v59QjkUZar {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/certificate-translation-service-1024x684.jpg");
}
.cid-v59QjkUZar .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v59QjkUZar .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-v59QjkUZar .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-v59QjkUZar .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-v59QjkUZar .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-v59QjkUZar .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-v59QjkUZar .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-v59QjkUZar .mbr-card-text {
  margin: 0;
}
.cid-v59QjkUZar .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59QjkUZar .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59QjkUZar .mbr-card-text,
.cid-v59QjkUZar .mbr-section-btn {
  color: #000000;
}
.cid-v59QjkUZar .mbr-section-title {
  color: #000000;
}
.cid-v59QjmXahF {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fac769;
}
.cid-v59QjmXahF .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-v59QjmXahF .mbr-section-btn,
  .cid-v59QjmXahF .mbr-section-subtitle,
  .cid-v59QjmXahF .mbr-section-title {
    text-align: center !important;
  }
}
.cid-v59QjmXahF .mbr-section-title {
  color: #000000;
}
.cid-v59QjofZV0 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-v59QjofZV0 .mbr-section-subtitle {
  color: #000000;
}
.cid-v59QjofZV0 .mbr-section-title {
  color: #000000;
}
.cid-v59QjqB0sv {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #fac769;
}
.cid-v59QjqB0sv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59QjqB0sv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59QjqB0sv .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 2.5rem;
}
.cid-v59QjqB0sv .mbr-section-title {
  color: #000000;
}
.cid-v59QjqB0sv .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-v59QjqB0sv .panel-group {
  border: none;
  padding: 0 !important;
  background-color: #ffffff;
}
.cid-v59QjqB0sv .card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-v59QjqB0sv .card:not(:first-child) {
  border-top: 1px solid #bbbbbb;
}
.cid-v59QjqB0sv .mbr-iconfont {
  font-size: 10px !important;
  font-family: 'Moririse2' !important;
  color: #1f1d1a;
  margin-left: 1rem;
  padding: 17px;
  background-color: #fac769;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-v59QjqB0sv .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-v59QjqB0sv .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v59QjqB0sv .panel-title {
  padding: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-v59QjqB0sv .panel-title {
    padding: 20px !important;
  }
}
.cid-v59QjqB0sv .panel-title:hover {
  text-decoration-line: none !important;
}
.cid-v59QjqB0sv .panel-title:hover .panel-title-edit {
  text-decoration: underline !important;
}
.cid-v59QjqB0sv .panel-body {
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 767px) {
  .cid-v59QjqB0sv .panel-body {
    padding: 0 20px 20px 20px;
  }
}
.cid-v59QjqB0sv .panel-text {
  margin-bottom: 16px;
  color: #353535;
}
.cid-v59QjqB0sv .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v59QjqB0sv .panel-title-edit {
  color: #000000;
  padding-right: 12px;
}
.cid-v59QjsQp3Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-v59QjsQp3Z .google-map {
  height: 25rem;
  position: relative;
}
.cid-v59QjsQp3Z .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v59QjsQp3Z .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v59QjsQp3Z .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v59QjsQp3Z .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v59QjuNdLN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fac769;
}
.cid-v59QjuNdLN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v59QjuNdLN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v59QjuNdLN .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v59QjuNdLN .content-wrap {
    padding: 30px 20px;
  }
}
.cid-v59QjuNdLN .content-wrap .row {
  justify-content: center;
}
.cid-v59QjuNdLN .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59QjuNdLN .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59QjuNdLN .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v59QjuNdLN .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-v59QjuNdLN .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-v59QjuNdLN .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v59QjuNdLN .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59QjuNdLN .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59QjuNdLN .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59QjuNdLN .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59QjuNdLN .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59QjuNdLN .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59QjuNdLN .nav-wrapper .list .item-wrap:hover,
.cid-v59QjuNdLN .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59QjuNdLN .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59QjuNdLN .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59QjuNdLN .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59QjuNdLN .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v59QjuNdLN .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v59QjuNdLN .contacts-wrapper .list .item-wrap:hover,
.cid-v59QjuNdLN .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-v59QjuNdLN .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v59QjuNdLN .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v59QjuNdLN .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v59QjuNdLN .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-v59QjuNdLN .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v59QjuNdLN .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v59QjuNdLN .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v59QjuNdLN .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-v59QjuNdLN .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-v59QjuNdLN .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-v59QjuNdLN .mbr-section-title {
  color: #ed463f;
}
.cid-v59QjuNdLN .mbr-section-subtitle {
  color: #000000;
}
.cid-v59QjuNdLN .list {
  color: #404349;
}
.cid-v59QjuNdLN .list,
.cid-v59QjuNdLN .item-wrap {
  color: #000000;
}
