body {
  font-family: Finlandica;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.9rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.625rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.32rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.03rem;
    font-size: calc( 1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #dd7a17 !important;
}
.bg-success {
  background-color: #8fff32 !important;
}
.bg-info {
  background-color: #c4cfde !important;
}
.bg-warning {
  background-color: #ec1722 !important;
}
.bg-danger {
  background-color: #c4cfde !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #dd7a17 !important;
  border-color: #dd7a17 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8e4f0f !important;
  border-color: #8e4f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8e4f0f !important;
  border-color: #8e4f0f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6b67ce !important;
  border-color: #6b67ce !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #3b36a8 !important;
  border-color: #3b36a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3b36a8 !important;
  border-color: #3b36a8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
  color: #3a4e69 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #3a4e69 !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
}
.btn-success,
.btn-success:active {
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
  color: #173200 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #63da00 !important;
  border-color: #63da00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #173200 !important;
  background-color: #63da00 !important;
  border-color: #63da00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ec1722 !important;
  border-color: #ec1722 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9f0d15 !important;
  border-color: #9f0d15 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9f0d15 !important;
  border-color: #9f0d15 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
  color: #3a4e69 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #3a4e69 !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
}
.btn-white,
.btn-white:active {
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
  color: #3a4e69 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #3a4e69 !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
}
.btn-black,
.btn-black:active {
  background-color: #212428 !important;
  border-color: #212428 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dd7a17;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #8e4f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #dd7a17 !important;
  border-color: #dd7a17 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6b67ce;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3b36a8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6b67ce !important;
  border-color: #6b67ce !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c4cfde;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #8ca2bf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #3a4e69 !important;
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8fff32;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #63da00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #173200 !important;
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ec1722;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #9f0d15 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ec1722 !important;
  border-color: #ec1722 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c4cfde;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #8ca2bf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #3a4e69 !important;
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212428;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #212428 !important;
  border-color: #212428 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c4cfde;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #8ca2bf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #3a4e69 !important;
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
}
.text-primary {
  color: #dd7a17 !important;
}
.text-secondary {
  color: #6b67ce !important;
}
.text-success {
  color: #8fff32 !important;
}
.text-info {
  color: #c4cfde !important;
}
.text-warning {
  color: #ec1722 !important;
}
.text-danger {
  color: #c4cfde !important;
}
.text-white {
  color: #C4CFDE !important;
}
.text-black {
  color: #212428 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #81470d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #37329d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5ccb00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #839ab9 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #910c13 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #839ab9 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #839ab9 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #dd7a17;
}
.nav-tabs .nav-link:not(.active) {
  color: #212428;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #c4cfde;
}
.alert-warning {
  background-color: #ec1722;
}
.alert-danger {
  background-color: #c4cfde;
}
.mbr-gallery-filter li.active .btn {
  background-color: #dd7a17;
  border-color: #dd7a17;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #dd7a17;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f9e0c7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fefffe;
}
.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: #fbd4d6;
}
.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: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #dd7a17 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #dd7a17;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #dd7a17;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #dd7a17;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #dd7a17;
  border-bottom-color: #dd7a17;
}
.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: #dd7a17 !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: #6b67ce !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23dd7a17' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .3s;
  transition: 0.3s;
}
a:hover {
  background-image: none !important;
}
.container-fluid {
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e !important;
  transform-style: preserve-3d;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-section-btn .btn {
  position: relative;
  transition: 0.4s all !important;
  border: none !important;
  align-items: baseline;
}
.custom-section-btn .btn-black {
  color: #dd7a17 !important;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
}
.custom-section-btn .btn-black:hover {
  color: #dd7a17 !important;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  transform: translateY(-5px);
}
.custom-section-btn .btn-white {
  color: #dd7a17 !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}
.custom-section-btn .btn-white:hover {
  color: #dd7a17 !important;
  background: #FFFFFF !important;
  transform: translateY(-5px);
}
.cid-uR8Zal9HWV .navbar-dropdown {
  position: relative !important;
}
.cid-uR8Zal9HWV .navbar-dropdown {
  position: absolute !important;
}
.cid-uR8Zal9HWV .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-uR8Zal9HWV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uR8Zal9HWV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uR8Zal9HWV .dropdown-item:hover,
.cid-uR8Zal9HWV .dropdown-item:focus {
  background: #dd7a17 !important;
  color: white !important;
}
.cid-uR8Zal9HWV .dropdown-item:hover span {
  color: white;
}
.cid-uR8Zal9HWV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR8Zal9HWV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR8Zal9HWV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR8Zal9HWV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR8Zal9HWV .nav-link {
  position: relative;
}
.cid-uR8Zal9HWV .container {
  display: flex;
  justify-content: flex-start;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uR8Zal9HWV .container {
    flex-wrap: nowrap;
  }
}
.cid-uR8Zal9HWV .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR8Zal9HWV .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-uR8Zal9HWV .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-uR8Zal9HWV .navbar-nav .nav-item .nav-link:hover,
.cid-uR8Zal9HWV .navbar-nav .nav-item .nav-link:focus,
.cid-uR8Zal9HWV .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uR8Zal9HWV .dropdown-menu,
.cid-uR8Zal9HWV .navbar.opened {
  background: #212428 !important;
}
.cid-uR8Zal9HWV .nav-item:focus,
.cid-uR8Zal9HWV .nav-link:focus {
  outline: none;
}
.cid-uR8Zal9HWV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR8Zal9HWV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR8Zal9HWV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR8Zal9HWV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR8Zal9HWV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR8Zal9HWV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR8Zal9HWV .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  padding: 0 !important;
  box-shadow: none !important;
  background: #212428;
  background: rgba(33, 36, 40, 0);
}
.cid-uR8Zal9HWV .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uR8Zal9HWV .navbar.opened {
  transition: all 0.3s;
}
.cid-uR8Zal9HWV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR8Zal9HWV .navbar .navbar-logo img {
  width: auto;
}
.cid-uR8Zal9HWV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR8Zal9HWV .navbar.collapsed {
  justify-content: center;
}
.cid-uR8Zal9HWV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR8Zal9HWV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR8Zal9HWV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uR8Zal9HWV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR8Zal9HWV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR8Zal9HWV .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-uR8Zal9HWV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR8Zal9HWV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR8Zal9HWV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR8Zal9HWV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR8Zal9HWV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR8Zal9HWV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR8Zal9HWV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR8Zal9HWV .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-uR8Zal9HWV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR8Zal9HWV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR8Zal9HWV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR8Zal9HWV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uR8Zal9HWV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR8Zal9HWV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uR8Zal9HWV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uR8Zal9HWV .navbar.navbar-short {
  min-height: 90px;
}
.cid-uR8Zal9HWV .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-uR8Zal9HWV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-uR8Zal9HWV .navbar {
    min-height: 80px;
  }
}
.cid-uR8Zal9HWV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uR8Zal9HWV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR8Zal9HWV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uR8Zal9HWV .navbar-brand {
    min-height: 69px;
  }
}
.cid-uR8Zal9HWV .dropdown-item.active,
.cid-uR8Zal9HWV .dropdown-item:active {
  background-color: transparent;
}
.cid-uR8Zal9HWV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR8Zal9HWV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR8Zal9HWV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR8Zal9HWV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212428;
}
.cid-uR8Zal9HWV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR8Zal9HWV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR8Zal9HWV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR8Zal9HWV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uR8Zal9HWV button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uR8Zal9HWV button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uR8Zal9HWV button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uR8Zal9HWV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uR8Zal9HWV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uR8Zal9HWV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uR8Zal9HWV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uR8Zal9HWV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR8Zal9HWV nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR8Zal9HWV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR8Zal9HWV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR8Zal9HWV nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR8Zal9HWV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR8Zal9HWV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR8Zal9HWV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR8Zal9HWV .navbar {
    height: 70px;
  }
  .cid-uR8Zal9HWV .navbar.opened {
    height: auto;
  }
  .cid-uR8Zal9HWV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR8Zal9HWV .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #212428;
  background: rgba(33, 36, 40, 0);
}
@media (max-width: 575px) {
  .cid-uR8Zal9HWV .navbar-short {
    min-height: 70px;
  }
}
.cid-uR8Zal9HWV .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uR8Zal9HWV .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uR8Zal9HWV .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uR8Zal9HWV .container-fluid {
    padding: 0 3px;
  }
}
.cid-uR8Zal9HWV .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uR8Zal9HWV .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uR8Zal9HWV .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-uR8Zal9HWV .container-fluid {
    flex-wrap: wrap;
  }
  .cid-uR8Zal9HWV button.navbar-toggler {
    display: flex;
  }
  .cid-uR8Zal9HWV .navbar-brand {
    width: auto !important;
  }
  .cid-uR8Zal9HWV .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-uR8Zal9HWV .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-uR8Zal9HWV .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-uR8Zal9HWV .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-uR8Zal9HWV .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-uR8Zal9HWV .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-uR8Zal9HWV .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 21px no-repeat;
  background-size: 38px;
  border: none;
  border-radius: 12px;
  box-shadow: 0px 0px 4px 1px #777;
  bottom: 20px;
  cursor: pointer;
  height: 52px;
  position: fixed;
  right: 20px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 5em;
  z-index: 999999;
}
.cid-uR8Zal9HWV a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: normal;
}
.cid-uR8Zal9HWV [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 12px 8px;
  text-decoration: none;
  font-size: 1.9em;
  color: #fff;
  background-color: #25a332;
}
.cid-uR8Zal9HWV [aria-label]:hover::after {
  display: block;
}
.cid-uRxr5GPQOD {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/6436987-3293275-2000x1333.jpg");
}
.cid-uRxr5GPQOD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRxr5GPQOD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRxr5GPQOD .container {
  border: 1px solid #222;
  border-radius: 15px;
  background-color: #111;
}
@media (max-width: 992px) {
  .cid-uRxr5GPQOD .container {
    padding: 0 16px;
  }
}
.cid-uRxr5GPQOD .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uRxr5GPQOD .content-wrapper {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uRxr5GPQOD .content-wrapper .mbr-section-title {
    margin-top: 20px;
  }
}
.cid-uRxr5GPQOD .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-uRxr5GPQOD .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uRxr5GPQOD .image-wrapper {
  margin-left: 32px;
  margin-left: 0;
  margin-right: 32px;
}
@media (max-width: 992px) {
  .cid-uRxr5GPQOD .image-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uRxr5GPQOD .image-wrapper {
    margin-right: 0;
  }
}
.cid-uRxr5GPQOD .image-wrapper img {
  height: 660px;
  object-fit: cover;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .cid-uRxr5GPQOD .image-wrapper img {
    height: 350px;
  }
}
.cid-uRxr5GPQOD .mbr-section-title {
  color: #ffffff;
}
.cid-uRxr5GPQOD .mbr-text {
  color: #ffffff;
}
.cid-uRxr5GPQOD .mbr-section-title,
.cid-uRxr5GPQOD .mbr-section-btn {
  color: #ffffff;
}
.cid-uRxr5GPQOD .mbr-text,
.cid-uRxr5GPQOD .text-wrapper {
  color: #c4cfde;
}
.cid-uRxEgUqg8C {
  padding-top: 7rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: #13171f;
}
.cid-uRxEgUqg8C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRxEgUqg8C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRxEgUqg8C .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-uRxEgUqg8C .mbr-section-title {
  color: #dd7a17;
}
.cid-uRxEgUqg8C .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uRxEgUqg8C .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uRxEgUqg8C .card-row {
  align-items: stretch;
}
.cid-uRxEgUqg8C .card {
  margin-top: 30px;
}
.cid-uRxEgUqg8C .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 42px 35px 42px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #000000, #000000);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #13171f;
}
@media (max-width: 1199px) {
  .cid-uRxEgUqg8C .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-uRxEgUqg8C .card-wrapper {
    padding: 20px;
  }
}
.cid-uRxEgUqg8C .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-uRxEgUqg8C .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-uRxEgUqg8C .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-uRxEgUqg8C .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-uRxEgUqg8C .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #000000, #000000);
  opacity: 0;
  transition: .5s all;
}
.cid-uRxEgUqg8C .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-uRxEgUqg8C .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-uRxEgUqg8C .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #dd7a17;
}
.cid-uRxEgUqg8C .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-uRxEgUqg8C .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-uRN6kohGBg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uRN6kohGBg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRN6kohGBg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRN6kohGBg .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uRN6kohGBg .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uRN6kohGBg .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uRN6kohGBg .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uRN6kohGBg .container {
    padding: 0 16px;
  }
}
.cid-uRN6kohGBg .row {
  padding: 60px 64px;
  background-color: #000000;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-uRN6kohGBg .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-uRN6kohGBg .row {
    padding: 25px 9px;
  }
}
.cid-uRN6kohGBg .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.cid-uRN6kohGBg .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRN6kohGBg .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uRN6kohGBg .box {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uRN6kohGBg .box {
    width: 100%;
  }
}
.cid-uRN6kohGBg .box .mbr-media {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uRN6kohGBg .box .mbr-media {
    height: 350px;
  }
}
.cid-uRN6kohGBg .box .mbr-media img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  margin-left: 4px;
}
.cid-uRN6kohGBg .box .mbr-media .mbr-iconfont {
  font-size: 18px;
  color: #b86008;
  transition: all 0.3s ease-in-out;
}
.cid-uRN6kohGBg .mbr-media {
  position: relative;
}
.cid-uRN6kohGBg .mbr-media img {
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-uRN6kohGBg a:hover {
  background-image: none !important;
}
.cid-uRN6kohGBg .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background-color: #ffffff;
  border: 1px solid #b86008;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.cid-uRN6kohGBg .icon-wrap:hover,
.cid-uRN6kohGBg .icon-wrap:focus {
  cursor: pointer;
}
.cid-uRN6kohGBg .icon-wrap:hover .mbr-iconfont,
.cid-uRN6kohGBg .icon-wrap:focus .mbr-iconfont {
  transform: scale(1.2);
}
.cid-uRN6kohGBg .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-uRN6kohGBg .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uRN6kohGBg .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uRN6kohGBg .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uRN6kohGBg .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uRN6kohGBg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uRN6kohGBg .mbr-section-title {
  color: #ffffff;
}
.cid-uRN6kohGBg .mbr-section-subtitle {
  color: #c4cfde;
}
.cid-uRCt6ZVXmi {
  padding-top: 4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #13171f;
}
@media (max-width: 992px) {
  .cid-uRCt6ZVXmi .container {
    padding: 0 20px;
  }
}
.cid-uRCt6ZVXmi .row {
  margin: 0;
  padding: 60px 16px 60px;
  background-color: #13171f;
  border-radius: 20px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uRCt6ZVXmi .row {
    padding: 46px 4px 46px;
  }
}
.cid-uRCt6ZVXmi .row .card {
  justify-content: flex-end;
}
.cid-uRCt6ZVXmi .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uRCt6ZVXmi .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRCt6ZVXmi .mbr-section-btn {
  margin-bottom: 22px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uRCt6ZVXmi .mbr-section-btn {
    text-align: left;
  }
}
.cid-uRCt6ZVXmi .tags-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uRCt6ZVXmi .tags-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uRCt6ZVXmi .tags-wrapper .list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRCt6ZVXmi .tags-wrapper .list .item-wrap {
  margin: 0 32px 32px 0;
}
.cid-uRCt6ZVXmi .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 314px;
  max-width: 314px;
}
@media (max-width: 767px) {
  .cid-uRCt6ZVXmi .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uRCt6ZVXmi .embla__slide .slide-content {
  width: 100%;
}
.cid-uRCt6ZVXmi .embla__slide .slide-content .item-wrapper {
  background: #000;
  overflow: hidden;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}
.cid-uRCt6ZVXmi .embla__slide .slide-content .item-wrapper .item-img {
  display: none;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .cid-uRCt6ZVXmi .embla__slide .slide-content .item-wrapper .item-img {
    margin-bottom: 20px;
  }
}
.cid-uRCt6ZVXmi .embla__slide .slide-content .item-wrapper .item-img img {
  height: 360px;
  border-radius: 20px !important;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uRCt6ZVXmi .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-uRCt6ZVXmi .embla__slide .slide-content .item-wrapper .item-content {
  z-index: 1;
  position: relative;
}
.cid-uRCt6ZVXmi .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 5px;
}
.cid-uRCt6ZVXmi .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uRCt6ZVXmi .embla__button--next,
.cid-uRCt6ZVXmi .embla__button--prev {
  display: flex;
}
.cid-uRCt6ZVXmi .embla__button {
  bottom: 0;
  width: 48px;
  height: 48px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent !important;
  color: #c4cfde !important;
  border: 2px solid #c4cfde !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .6 !important;
}
@media (max-width: 768px) {
  .cid-uRCt6ZVXmi .embla__button {
    bottom: 0;
  }
}
.cid-uRCt6ZVXmi .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uRCt6ZVXmi .embla__button:hover {
  opacity: 1 !important;
}
.cid-uRCt6ZVXmi .embla__button.embla__button--prev {
  left: 30px;
}
.cid-uRCt6ZVXmi .embla__button.embla__button--next {
  right: 30px;
}
.cid-uRCt6ZVXmi .embla {
  position: relative;
  width: 100%;
  padding-bottom: 80px;
}
.cid-uRCt6ZVXmi .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uRCt6ZVXmi .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uRCt6ZVXmi .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uRCt6ZVXmi .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uRCt6ZVXmi .mbr-desc {
  color: #dd7a17;
}
.cid-uRCt6ZVXmi .mbr-section-title {
  color: #ffffff;
}
.cid-uRCt6ZVXmi .list {
  color: #616161;
}
.cid-uRCt6ZVXmi .item-name {
  color: #dd7a17;
  text-align: center;
}
.cid-uRCt6ZVXmi .item-role {
  color: #ffffff;
  text-align: center;
}
.cid-uRCt6ZVXmi .list,
.cid-uRCt6ZVXmi .item-wrap,
.cid-uRCt6ZVXmi .tags-wrapper {
  color: #dd7a17;
}
.cid-uRNlctpFJ5 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffa245;
}
.cid-uRNlctpFJ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRNlctpFJ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-uRNlctpFJ5 h4 {
    margin-top: -30px;
  }
}
.cid-uRNlctpFJ5 .btn-secondary {
  color: #dd7a17 !important;
}
.cid-uRNlctpFJ5 .mbr-section-btn {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .cid-uRNlctpFJ5 .mbr-section-btn {
    margin-top: 2rem;
  }
}
.cid-uRNlctpFJ5 .mbr-section-title {
  color: #625673;
  text-align: center;
}
.cid-uRNlctpFJ5 .mbr-section-subtitle {
  color: #dfcefd;
  text-align: center;
}
.cid-uRNlctpFJ5 .btn {
  padding: 2rem 3rem;
  color: #6b67ce;
}
.cid-uRNlctpFJ5 .btn:hover,
.cid-uRNlctpFJ5 .btn:focus {
  background: #6b67ce !important;
  color: #dd7a17 !important;
}
.cid-uRIF2qV75z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uRIF2qV75z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRIF2qV75z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRIF2qV75z .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uRIF2qV75z .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uRIF2qV75z .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uRIF2qV75z .head-container {
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uRIF2qV75z {
    overflow: hidden;
  }
}
.cid-uRIF2qV75z .section-head {
  position: sticky;
  top: 160px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uRIF2qV75z .section-head {
    position: static;
    margin-bottom: 60px;
  }
}
.cid-uRIF2qV75z .mbr-section-title {
  color: #dd7a17;
}
.cid-uRIF2qV75z .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uRIF2qV75z .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uRIF2qV75z .tabs-main-container {
  width: calc(100% - 10px);
  margin-left: 10px;
}
@media (max-width: 991px) {
  .cid-uRIF2qV75z .tabs-main-container {
    margin-left: 0;
    width: 100%;
  }
}
.cid-uRIF2qV75z .tabs-main-wrap {
  width: 100%;
}
.cid-uRIF2qV75z .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 10px;
  border: none !important;
  background: transparent;
  background: linear-gradient(145deg, #16181c, #23272b);
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
.cid-uRIF2qV75z .nav-tabs .nav-item.open .nav-link:focus,
.cid-uRIF2qV75z .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uRIF2qV75z .nav-item {
  display: flex;
  align-items: center;
  flex-basis: 33.33%;
  margin: 0;
  flex-grow: 1;
  transition: all .4s;
}
@media (max-width: 575px) {
  .cid-uRIF2qV75z .nav-item {
    flex-basis: 100%;
  }
}
.cid-uRIF2qV75z .nav-tabs .nav-link {
  width: 100%;
  text-align: center;
  display: block;
  padding: 26px 10px;
  border-radius: 6px;
  transition: all .4s;
  background: transparent;
  border: none;
}
.cid-uRIF2qV75z .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-uRIF2qV75z .nav-tabs .nav-link:hover,
.cid-uRIF2qV75z .nav-tabs .nav-link:focus {
  background: transparent;
  color: #dd7a17;
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
.cid-uRIF2qV75z .nav-tabs .nav-link.active {
  background: transparent;
  color: #dd7a17;
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
.cid-uRIF2qV75z .tab-content {
  padding: 55px 50px 60px;
}
@media (max-width: 991px) {
  .cid-uRIF2qV75z .tab-content {
    padding: 55px 30px 30px;
  }
}
@media (max-width: 575px) {
  .cid-uRIF2qV75z .tab-content {
    padding: 55px 25px 25px;
  }
}
.cid-uRIF2qV75z .pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uRIF2qV75z .pricing-header {
    padding-bottom: 40px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-uRIF2qV75z .pricing-header {
    padding-bottom: 25px;
  }
}
.cid-uRIF2qV75z .card-text-wrap {
  margin-right: auto;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-uRIF2qV75z .card-text-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.cid-uRIF2qV75z .card-title {
  color: #dd7a17;
  margin-bottom: 9px;
}
.cid-uRIF2qV75z .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uRIF2qV75z .card-text-label {
  padding: 9px 25px;
  border-radius: 6px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uRIF2qV75z .card-text-label {
    margin-left: 0;
  }
}
.cid-uRIF2qV75z .card-label {
  color: #FF014E;
  margin-bottom: 0;
}
.cid-uRIF2qV75z .pricing-body {
  width: 100%;
}
.cid-uRIF2qV75z .mbr-text {
  color: #878e99;
  max-width: 84%;
}
.cid-uRIF2qV75z .list-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .cid-uRIF2qV75z .list-container {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.cid-uRIF2qV75z .list-container-left,
.cid-uRIF2qV75z .list-container-right {
  max-width: 48%;
  min-width: 35%;
  width: fit-content;
}
@media (max-width: 575px) {
  .cid-uRIF2qV75z .list-container-left,
  .cid-uRIF2qV75z .list-container-right {
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
  }
}
.cid-uRIF2qV75z .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .cid-uRIF2qV75z .list-item:last-child {
    margin-bottom: 0;
  }
}
.cid-uRIF2qV75z .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 5px;
}
.cid-uRIF2qV75z .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #c4cfde;
}
.cid-uRIF2qV75z .list-item-text {
  color: #C4CFDE;
  width: fit-content;
}
.cid-uRIF2qV75z .pricing-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-uRIF2qV75z .pricing-footer {
    padding-top: 10px;
  }
}
.cid-uRIF2qV75z .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
}
.cid-uRIF2qV75z .mbr-section-btn .btn {
  flex-grow: 1;
}
@media (max-width: 575px) {
  .cid-uRIF2qV75z .mbr-section-btn {
    width: auto;
  }
  .cid-uRIF2qV75z .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-uRIF2qV75z .comment-text {
  color: #9ca5b1;
  margin-top: 15px;
}
.cid-uRGLqUjQj7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRGLqUjQj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRGLqUjQj7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRGLqUjQj7 .mbr-section-head {
  padding-bottom: 30px;
  width: 100%;
}
.cid-uRGLqUjQj7 .mbr-section-title {
  color: #dd7a17;
}
.cid-uRGLqUjQj7 .mbr-section-subtitle {
  color: #191b1f;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uRGLqUjQj7 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uRGLqUjQj7 .card {
  margin-top: 35px;
}
.cid-uRGLqUjQj7 .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none !important;
  padding: 0;
}
.cid-uRGLqUjQj7 .panel-title {
  position: relative;
  padding: 10px 0 20px;
  transition: .4s all;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uRGLqUjQj7 .panel-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(145deg, #c4cfde 0%, #c4cfde 100%);
  display: none !important;
}
.cid-uRGLqUjQj7 .panel-title[aria-expanded="true"]:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(145deg, #6b67ce 0%, #fc636b 100%);
}
.cid-uRGLqUjQj7 .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
}
.cid-uRGLqUjQj7 .mbr-iconfont {
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  color: #c4cfde;
  margin-left: 1rem;
}
.cid-uRGLqUjQj7 .panel-group {
  border: none;
}
.cid-uRGLqUjQj7 .panel-body {
  padding: 20px 0 0;
}
.cid-uRGLqUjQj7 .panel-text {
  color: #878e99;
}
.cid-uRGLqUjQj7 .panel-title-edit {
  color: #212428;
}
.cid-uRGLqUjQj7 .sign {
  width: 24px;
  height: 24px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cid-uRGLqUjQj7 .panel-text,
.cid-uRGLqUjQj7 .mbr-section-btn {
  color: #23272b;
}
.cid-uRAI3mUyPS {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRAI3mUyPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRAI3mUyPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRAI3mUyPS .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uRAI3mUyPS .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uRAI3mUyPS .container {
    padding: 0 20px;
  }
}
.cid-uRAI3mUyPS .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uRAI3mUyPS .row {
    padding: 50px 16px;
  }
}
.cid-uRAI3mUyPS .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #434a51;
  filter: blur(120px);
}
.cid-uRAI3mUyPS .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #53300d;
  filter: blur(150px);
}
.cid-uRAI3mUyPS .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #181a25;
  opacity: 1;
}
.cid-uRAI3mUyPS .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uRAI3mUyPS .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uRAI3mUyPS .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uRAI3mUyPS .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uRAI3mUyPS .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  opacity: .5;
}
.cid-uRAI3mUyPS .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRAI3mUyPS .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uRAI3mUyPS .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRAI3mUyPS .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-uRAI3mUyPS .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-uRAI3mUyPS .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-uRAI3mUyPS .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-uRAI3mUyPS .mbr-desc {
  color: #ffffff;
}
.cid-uRAI3mUyPS .mbr-section-title {
  color: #ffffff;
}
.cid-uRAI3mUyPS .mbr-text {
  color: #c4cfde;
}
.cid-uRGOCdcdVv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uRGOCdcdVv .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-uRGOCdcdVv .copyright-container {
  padding: 40px 0;
}
.cid-uRGOCdcdVv .mbr-text {
  color: #878e99;
}
