.btn {
  border-width: 2px;
}
body {
  font-family: Anuphan;
}
.display-1 {
  font-family: 'Anuphan', sans-serif;
  font-size: 7.5rem;
  line-height: 1.1;
}
.display-1 > .theme-iconfont {
  font-size: 9.375rem;
}
.display-2 {
  font-family: 'Anuphan', sans-serif;
  font-size: 6rem;
  line-height: 1.1;
}
.display-2 > .theme-iconfont {
  font-size: 7.5rem;
}
.display-4 {
  font-family: 'Anuphan', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .theme-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Anuphan', sans-serif;
  font-size: 2.1rem;
  line-height: 1.5;
}
.display-5 > .theme-iconfont {
  font-size: 2.625rem;
}
.display-7 {
  font-family: 'Anuphan', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .theme-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.25rem;
    font-size: calc( 3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.68rem;
    font-size: calc( 1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  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: #ffffff !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #737373 !important;
  background-color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #cdfb0a !important;
  border-color: #cdfb0a !important;
  color: #050600 !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #000000 !important;
  background-color: #bce804 !important;
  border-color: #bce804 !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #050600 !important;
  background-color: #bce804 !important;
  border-color: #bce804 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #30aceb !important;
  border-color: #30aceb !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #30aceb !important;
  border-color: #30aceb !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #3a9eac !important;
  border-color: #3a9eac !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3a9eac !important;
  border-color: #3a9eac !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #473a00 !important;
  background-color: #ffdc47 !important;
  border-color: #ffdc47 !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffdc47 !important;
  border-color: #ffdc47 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff884c !important;
  border-color: #ff884c !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff884c !important;
  border-color: #ff884c !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #6e6e6e !important;
  background-color: #ededed !important;
  border-color: #ededed !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #ededed !important;
  border-color: #ededed !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #161616 !important;
  border-color: #161616 !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #161616 !important;
  border-color: #161616 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #cdfb0a;
  color: #cdfb0a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8bab03 !important;
  background-color: transparent !important;
  border-color: #8bab03 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #050600 !important;
  background-color: #cdfb0a !important;
  border-color: #cdfb0a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: #2a747e !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #cdfb0a !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #7f9c03 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.theme-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.theme-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.theme-plan-header.bg-primary .theme-plan-subtitle,
.theme-plan-header.bg-primary .theme-plan-price-desc {
  color: #ffffff;
}
.theme-plan-header.bg-success .theme-plan-subtitle,
.theme-plan-header.bg-success .theme-plan-price-desc {
  color: #a0d8df;
}
.theme-plan-header.bg-info .theme-plan-subtitle,
.theme-plan-header.bg-info .theme-plan-price-desc {
  color: #ffffff;
}
.theme-plan-header.bg-warning .theme-plan-subtitle,
.theme-plan-header.bg-warning .theme-plan-price-desc {
  color: #ffffff;
}
.theme-plan-header.bg-danger .theme-plan-subtitle,
.theme-plan-header.bg-danger .theme-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Anuphan', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .theme-iconfont {
  font-size: 1.375rem;
}
.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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Anuphan', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .theme-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #cdfb0a !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='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.IqszyFGh-uQYzPi9Zvk {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item:before {
  font-family: font2 !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;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-toggler {
    transform: scale(0.8);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-logo a {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .dropdown-item {
  padding: 14px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #2a2a2e;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-link {
  width: fit-content;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-caption {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-caption {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.IqszyFGh-uQYzPi9Zvk .container,
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #f2f2f5;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #2a2a2e;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper:hover {
  opacity: .6;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-item:focus,
.IqszyFGh-uQYzPi9Zvk .nav-link:focus {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.opened {
  transition: all 0.3s;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
  width: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed {
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.IqszyFGh-uQYzPi9Zvk .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%;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    min-height: 72px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .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%;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item.active,
.IqszyFGh-uQYzPi9Zvk .dropdown-item:active {
  background-color: transparent;
}
.IqszyFGh-uQYzPi9Zvk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2.5rem;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.IqszyFGh-uQYzPi9Zvk ul.navbar-nav {
  flex-wrap: wrap;
}
.IqszyFGh-uQYzPi9Zvk .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-buttons {
    text-align: left;
  }
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk .navbar-dropdown {
  padding: 0 1rem;
}
.IqszyFGh-uQYzPi9Zvk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper {
  padding-right: 12px;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 100%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    height: 70px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened {
    height: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn {
  margin: -0.6rem -0.6rem;
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
    width: auto !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    margin-right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #2a2a2e;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 0 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    padding: 1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .content-wrap {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .content-wrap {
    display: block;
  }
}
.IqszyFGh-uQYzXwV7aE {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYzXwV7aE .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYzXwV7aE .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYzXwV7aE img {
  border-radius: 2rem;
}
.IqszyFGh-uQYzXwV7aE .theme-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.IqszyFGh-uQYzXwV7aE .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #ffffff;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.IqszyFGh-uQYzXwV7aE .subtitle-wrap .theme-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #cdfb0a;
  font-size: 1.5rem;
}
.IqszyFGh-uQYzXwV7aE .theme-section-title {
  color: #ffffff;
  text-align: center;
}
.IqszyFGh-uQYzXwV7aE .theme-text,
.IqszyFGh-uQYzXwV7aE .theme-section-btn {
  color: #ffffff;
}
.IqszyFGh-uQYzXwV7aE .theme-section-subtitle,
.IqszyFGh-uQYzXwV7aE .align-wrapper {
  color: #04492e;
}
.IqszyFGh-uQYA6fDine {
  background-color: #f2f2f5;
}
.IqszyFGh-uQYA6fDine .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYA6fDine .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYA6fDine .content-wrapper .theme-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYA6fDine .content-wrapper .theme-label {
    margin-bottom: 15px;
  }
}
.IqszyFGh-uQYA6fDine .content-wrapper .theme-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYA6fDine .content-wrapper .theme-section-title {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uQYA6fDine .content-wrapper .text-wrapper .theme-text {
  margin-bottom: 30px;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYA6fDine .content-wrapper .text-wrapper .theme-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.IqszyFGh-uQYA6fDine .image-wrapper {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYA6fDine .image-wrapper {
    margin-top: 30px;
  }
}
.IqszyFGh-uQYA6fDine .image-wrapper img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYA6fDine .image-wrapper img {
    height: 300px;
  }
}
.IqszyFGh-uQYA6fDine .theme-label {
  color: #000000;
  text-align: center;
}
.IqszyFGh-uQYA6fDine .theme-section-title {
  color: #000000;
}
.IqszyFGh-uQYA6fDine .theme-text {
  color: #000000;
}
.IqszyFGh-uQYA6fDine .theme-section-title,
.IqszyFGh-uQYA6fDine .theme-section-btn {
  text-align: center;
}
.IqszyFGh-uQYA6fDine .theme-section-title,
.IqszyFGh-uQYA6fDine .theme-section-btn DIV {
  text-align: left;
}
.IqszyFGh-uQYAapMIPP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYAapMIPP .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYAapMIPP .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYAapMIPP .row {
  margin: 0 -8px;
}
.IqszyFGh-uQYAapMIPP .row .card {
  padding: 0 8px;
}
.IqszyFGh-uQYAapMIPP .card-wrapper {
  padding: 75px 64px;
  background-color: #f2f2f5;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYAapMIPP .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAapMIPP .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap {
  width: 100%;
}
.IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .theme-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .theme-section-title {
    margin-bottom: 24px;
  }
}
.IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .text-wrapper .theme-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .text-wrapper .theme-text {
    width: 100%;
  }
}
.IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .logo-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .logo-wrapper {
    margin-bottom: 24px;
  }
}
.IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
}
.IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .logo-wrapper .logo-wrap img {
  width: 45px;
  height: 45px;
  min-width: 45px;
  object-fit: cover;
  border-radius: 100% !important;
}
.IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .logo-wrapper .logo-wrap .theme-desc {
  padding: 0 20px;
  margin-bottom: 0;
}
.IqszyFGh-uQYAapMIPP .card-wrapper .card-wrap .theme-section-btn .btn {
  margin-bottom: 0;
}
.IqszyFGh-uQYAapMIPP .image-wrapper {
  height: 100%;
}
.IqszyFGh-uQYAapMIPP .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.IqszyFGh-uQYAapMIPP .theme-section-title {
  color: #2c2c26;
  text-align: center;
}
.IqszyFGh-uQYAapMIPP .theme-text,
.IqszyFGh-uQYAapMIPP .text-wrapper {
  color: #000000;
  text-align: center;
}
.IqszyFGh-uQYAapMIPP .logo-wrapper,
.IqszyFGh-uQYAapMIPP .theme-desc {
  text-align: center;
}
.IqszyFGh-uQYAapMIPP .theme-desc {
  color: #63635d;
}
.IqszyFGh-uQYAapMIPP .theme-section-title,
.IqszyFGh-uQYAapMIPP .theme-section-btn {
  text-align: center;
  color: #000000;
}
.IqszyFGh-uQYAu42MB6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f2f2f5;
}
.IqszyFGh-uQYAu42MB6 .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYAu42MB6 .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYAu42MB6 .row {
  justify-content: center;
}
.IqszyFGh-uQYAu42MB6 .card-wrapper {
  position: relative;
  padding: 80px 150px;
  background-color: #a8a3b4;
}
@media (max-width: 1600px) {
  .IqszyFGh-uQYAu42MB6 .card-wrapper {
    padding: 80px;
  }
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYAu42MB6 .card-wrapper {
    padding: 60px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAu42MB6 .card-wrapper {
    padding: 30px 20px;
  }
}
.IqszyFGh-uQYAu42MB6 .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 60%;
  height: 110%;
  border-radius: 100%;
  background-image: radial-gradient(#a8a3b4, transparent);
  filter: blur(100px);
}
.IqszyFGh-uQYAu42MB6 .card-wrapper .theme-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAu42MB6 .card-wrapper .theme-section-title {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uQYAu42MB6 .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.IqszyFGh-uQYAu42MB6 .card-wrapper .text-wrapper .theme-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAu42MB6 .card-wrapper .text-wrapper .theme-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.IqszyFGh-uQYAu42MB6 .card-wrapper .theme-section-btn {
  position: relative;
  z-index: 1;
}
.IqszyFGh-uQYAu42MB6 .theme-section-title {
  color: #000000;
}
.IqszyFGh-uQYAu42MB6 .theme-text,
.IqszyFGh-uQYAu42MB6 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.IqszyFGh-uQYAu42MB6 .theme-section-title,
.IqszyFGh-uQYAu42MB6 .theme-section-btn {
  text-align: center;
  color: #ffffff;
}
.IqszyFGh-uQYAnoILac {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYAnoILac .row {
  align-items: center;
  background-color: #f2f2f5;
  padding: 6.5rem;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 25px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAnoILac .row {
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  .IqszyFGh-uQYAnoILac .row {
    padding: 1rem;
  }
}
@media (max-width: 425px) {
  .IqszyFGh-uQYAnoILac .row {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .IqszyFGh-uQYAnoILac .image-wrapper {
    padding: 1rem;
  }
}
.IqszyFGh-uQYAnoILac .image-wrapper img {
  object-fit: cover;
  border-radius: 15px;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYAnoILac .text-wrapper {
    padding: 0 2rem;
  }
}
.IqszyFGh-uQYAnoILac .theme-section-title {
  margin-bottom: 3rem;
  color: #000000;
}
.IqszyFGh-uQYAnoILac .theme-text {
  margin-bottom: 1.5rem;
  color: #e082c5;
}
.IqszyFGh-uQYAnoILac .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.IqszyFGh-uQYAnoILac .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYAnoILac .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYAnoILac .theme-text,
.IqszyFGh-uQYAnoILac .theme-section-btn {
  color: #000000;
}
.IqszyFGh-uQYAhEeE1O {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #f2f2f5;
}
.IqszyFGh-uQYAhEeE1O .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYAhEeE1O .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYAhEeE1O .text-wrapper {
  padding: 5rem;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYAhEeE1O .text-wrapper {
    padding: 3rem 1rem;
  }
}
.IqszyFGh-uQYAhEeE1O .wrapper {
  background: #a8a3b4;
  border-radius: 2rem;
  overflow: hidden;
}
.IqszyFGh-uQYAhEeE1O .image-wrapper {
  padding: 0;
}
.IqszyFGh-uQYAhEeE1O .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.IqszyFGh-uQYAhEeE1O .theme-section-title {
  text-align: center;
  color: #ffffff;
}
.IqszyFGh-uQYAhEeE1O .theme-text,
.IqszyFGh-uQYAhEeE1O .theme-section-btn {
  color: #ffffff;
}
.IqszyFGh-uQYAxzfvM4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYAxzfvM4 .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYAxzfvM4 .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYAxzfvM4 .row {
  justify-content: space-between;
}
.IqszyFGh-uQYAxzfvM4 .title-wrapper .theme-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAxzfvM4 .title-wrapper .theme-section-title {
    margin-bottom: 50px;
  }
}
.IqszyFGh-uQYAxzfvM4 .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAxzfvM4 .item {
    margin-bottom: 50px;
  }
}
.IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content {
    display: block;
    text-align: center;
  }
}
.IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 50px;
  margin-left: 18px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .icon-wrapper {
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .icon-wrapper {
    margin: 0 18px 32px;
  }
}
.IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 3px solid #2a2a2e;
  transform: scale(1.4);
  pointer-events: none;
  transition: all .3s ease;
}
.IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .icon-wrapper:hover::before,
.IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .icon-wrapper:focus::before {
  transform: scale(1.5);
}
.IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .icon-wrapper .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 100%;
  background-color: #2a2a2e;
  font-size: 40px;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .icon-wrapper .theme-iconfont {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}
.IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
  transition: all .3s ease;
}
.IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .item-title:hover,
.IqszyFGh-uQYAxzfvM4 .item .item-wrapper .item-content .item-title:focus {
  color: #ffffff;
}
.IqszyFGh-uQYAxzfvM4 .theme-section-title {
  color: #ffffff;
  text-align: center;
}
.IqszyFGh-uQYAxzfvM4 .item-title {
  color: #000c3f;
}
.IqszyFGh-uQYAxzfvM4 .item-title,
.IqszyFGh-uQYAxzfvM4 .item-wrapper {
  color: #ffffff;
}
.IqszyFGh-uR0NxZiiFD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  transform: rotate(-45deg);
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uR0NxZiiFD .row {
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.IqszyFGh-uR0NxZiiFD .content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
    margin-bottom: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
    width: 100%;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
    margin-top: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .social-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap {
  display: inline-flex;
  flex-direction: column;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:hover .theme-iconfont,
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:focus .theme-iconfont {
  background-color: #ffffff;
  color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item .theme-soc {
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper .theme-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-text,
.IqszyFGh-uR0NxZiiFD .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-section-btn,
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-copy {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc,
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  color: #ffffff;
}
.IqszyFGh-uQYDXAE6rW {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.IqszyFGh-uQYDXAE6rW .dropdown-item:before {
  font-family: font2 !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;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYDXAE6rW .navbar-toggler {
    transform: scale(0.8);
  }
}
.IqszyFGh-uQYDXAE6rW .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.IqszyFGh-uQYDXAE6rW .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.IqszyFGh-uQYDXAE6rW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.IqszyFGh-uQYDXAE6rW .navbar-brand .navbar-logo a {
  outline: none;
}
.IqszyFGh-uQYDXAE6rW .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item::before {
    display: none;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item::after {
    display: none;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar-nav .dropdown-item {
  padding: 14px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #2a2a2e;
  border-radius: 4px !important;
}
.IqszyFGh-uQYDXAE6rW .nav-link {
  width: fit-content;
  position: relative;
}
.IqszyFGh-uQYDXAE6rW .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.IqszyFGh-uQYDXAE6rW .navbar-caption {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar-caption {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYDXAE6rW .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYDXAE6rW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.IqszyFGh-uQYDXAE6rW .container,
.IqszyFGh-uQYDXAE6rW .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #f2f2f5;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #2a2a2e;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .container,
  .IqszyFGh-uQYDXAE6rW .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYDXAE6rW .container,
  .IqszyFGh-uQYDXAE6rW .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.IqszyFGh-uQYDXAE6rW .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYDXAE6rW .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.IqszyFGh-uQYDXAE6rW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.IqszyFGh-uQYDXAE6rW .iconfont-wrapper:hover {
  opacity: .6;
}
.IqszyFGh-uQYDXAE6rW .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  border-radius: 4px !important;
}
.IqszyFGh-uQYDXAE6rW .nav-item:focus,
.IqszyFGh-uQYDXAE6rW .nav-link:focus {
  outline: none;
}
.IqszyFGh-uQYDXAE6rW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYDXAE6rW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.IqszyFGh-uQYDXAE6rW .dropdown .dropdown-menu .dropdown-item .theme-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.IqszyFGh-uQYDXAE6rW .dropdown .dropdown-menu .dropdown-item .theme-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYDXAE6rW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.IqszyFGh-uQYDXAE6rW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.IqszyFGh-uQYDXAE6rW .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.IqszyFGh-uQYDXAE6rW .navbar.opened {
  transition: all 0.3s;
}
.IqszyFGh-uQYDXAE6rW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.IqszyFGh-uQYDXAE6rW .navbar .navbar-logo img {
  width: auto;
}
.IqszyFGh-uQYDXAE6rW .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
.IqszyFGh-uQYDXAE6rW .navbar.collapsed {
  justify-content: center;
}
.IqszyFGh-uQYDXAE6rW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.IqszyFGh-uQYDXAE6rW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.IqszyFGh-uQYDXAE6rW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.IqszyFGh-uQYDXAE6rW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.IqszyFGh-uQYDXAE6rW .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%;
}
.IqszyFGh-uQYDXAE6rW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.IqszyFGh-uQYDXAE6rW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.IqszyFGh-uQYDXAE6rW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYDXAE6rW .navbar {
    min-height: 72px;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .IqszyFGh-uQYDXAE6rW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .IqszyFGh-uQYDXAE6rW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .IqszyFGh-uQYDXAE6rW .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%;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.IqszyFGh-uQYDXAE6rW .dropdown-item.active,
.IqszyFGh-uQYDXAE6rW .dropdown-item:active {
  background-color: transparent;
}
.IqszyFGh-uQYDXAE6rW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.IqszyFGh-uQYDXAE6rW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.IqszyFGh-uQYDXAE6rW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.IqszyFGh-uQYDXAE6rW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2.5rem;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.IqszyFGh-uQYDXAE6rW .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.IqszyFGh-uQYDXAE6rW ul.navbar-nav {
  flex-wrap: wrap;
}
.IqszyFGh-uQYDXAE6rW .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar-buttons {
    text-align: left;
  }
}
.IqszyFGh-uQYDXAE6rW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.IqszyFGh-uQYDXAE6rW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.IqszyFGh-uQYDXAE6rW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.IqszyFGh-uQYDXAE6rW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYDXAE6rW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYDXAE6rW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.IqszyFGh-uQYDXAE6rW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYDXAE6rW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYDXAE6rW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYDXAE6rW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYDXAE6rW .navbar-dropdown {
  padding: 0 1rem;
}
.IqszyFGh-uQYDXAE6rW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.IqszyFGh-uQYDXAE6rW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
.IqszyFGh-uQYDXAE6rW .icons-menu .iconfont-wrapper {
  padding-right: 12px;
}
.IqszyFGh-uQYDXAE6rW .icons-menu .iconfont-wrapper .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 100%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .IqszyFGh-uQYDXAE6rW .navbar {
    height: 70px;
  }
  .IqszyFGh-uQYDXAE6rW .navbar.opened {
    height: auto;
  }
  .IqszyFGh-uQYDXAE6rW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.IqszyFGh-uQYDXAE6rW .theme-section-btn {
  margin: -0.6rem -0.6rem;
}
.IqszyFGh-uQYDXAE6rW .theme-section-btn .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {
  .IqszyFGh-uQYDXAE6rW .theme-section-btn .btn {
    width: auto !important;
  }
}
.IqszyFGh-uQYDXAE6rW .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .IqszyFGh-uQYDXAE6rW .navbar-brand {
    margin-right: auto;
  }
  .IqszyFGh-uQYDXAE6rW .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #2a2a2e;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .IqszyFGh-uQYDXAE6rW .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 0 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .IqszyFGh-uQYDXAE6rW .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .IqszyFGh-uQYDXAE6rW .navbar-collapse {
    padding: 1rem;
  }
}
.IqszyFGh-uQYDXAE6rW .content-wrap {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXAE6rW .content-wrap {
    display: block;
  }
}
.IqszyFGh-uQYDXB7ix3 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #f2f2f5;
  flex-direction: column;
  justify-content: center;
}
.IqszyFGh-uQYDXB7ix3 .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYDXB7ix3 .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXB7ix3 .container {
    padding: 0 16px;
  }
}
.IqszyFGh-uQYDXB7ix3 .row {
  justify-content: center;
}
.IqszyFGh-uQYDXB7ix3 .desc-wrapper .theme-desc {
  margin-bottom: 32px;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-text {
    margin-bottom: 22px;
  }
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-primary:hover,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-secondary:hover,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-success:hover,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-info:hover,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-warning:hover,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-danger:hover,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-black:hover,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-white:hover,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-primary:focus,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-secondary:focus,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-success:focus,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-info:focus,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-warning:focus,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-danger:focus,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-black:focus,
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #cdfb0a !important;
  color: #47b5ed !important;
  border-color: #cdfb0a !important;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #cdfb0a !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #40b0bf !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #47b5ed !important;
  color: #cdfb0a !important;
  border-color: #47b5ed !important;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffe161 !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ff9966 !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.IqszyFGh-uQYDXB7ix3 .content-wrapper .theme-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.IqszyFGh-uQYDXB7ix3 .theme-desc {
  color: #000000;
}
.IqszyFGh-uQYDXB7ix3 .theme-section-title {
  color: #000000;
}
.IqszyFGh-uQYDXB7ix3 .theme-text {
  color: #000000;
}
.IqszyFGh-uQYDXB7ix3 .theme-section-btn {
  text-align: center;
}
.IqszyFGh-uQYDXB7ix3 .theme-section-title,
.IqszyFGh-uQYDXB7ix3 .theme-section-btn {
  text-align: center;
  color: #000000;
}
.IqszyFGh-uR0NxZiiFD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  transform: rotate(-45deg);
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uR0NxZiiFD .row {
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.IqszyFGh-uR0NxZiiFD .content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
    margin-bottom: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
    width: 100%;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
    margin-top: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .social-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap {
  display: inline-flex;
  flex-direction: column;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:hover .theme-iconfont,
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:focus .theme-iconfont {
  background-color: #ffffff;
  color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item .theme-soc {
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper .theme-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-text,
.IqszyFGh-uR0NxZiiFD .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-section-btn,
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-copy {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc,
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  color: #ffffff;
}
.IqszyFGh-uQYDXjpMUC {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.IqszyFGh-uQYDXjpMUC .dropdown-item:before {
  font-family: font2 !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;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYDXjpMUC .navbar-toggler {
    transform: scale(0.8);
  }
}
.IqszyFGh-uQYDXjpMUC .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.IqszyFGh-uQYDXjpMUC .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.IqszyFGh-uQYDXjpMUC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.IqszyFGh-uQYDXjpMUC .navbar-brand .navbar-logo a {
  outline: none;
}
.IqszyFGh-uQYDXjpMUC .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item::before {
    display: none;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item::after {
    display: none;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar-nav .dropdown-item {
  padding: 14px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #2a2a2e;
  border-radius: 4px !important;
}
.IqszyFGh-uQYDXjpMUC .nav-link {
  width: fit-content;
  position: relative;
}
.IqszyFGh-uQYDXjpMUC .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.IqszyFGh-uQYDXjpMUC .navbar-caption {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar-caption {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYDXjpMUC .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYDXjpMUC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.IqszyFGh-uQYDXjpMUC .container,
.IqszyFGh-uQYDXjpMUC .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #f2f2f5;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #2a2a2e;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .container,
  .IqszyFGh-uQYDXjpMUC .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYDXjpMUC .container,
  .IqszyFGh-uQYDXjpMUC .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.IqszyFGh-uQYDXjpMUC .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYDXjpMUC .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.IqszyFGh-uQYDXjpMUC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.IqszyFGh-uQYDXjpMUC .iconfont-wrapper:hover {
  opacity: .6;
}
.IqszyFGh-uQYDXjpMUC .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  border-radius: 4px !important;
}
.IqszyFGh-uQYDXjpMUC .nav-item:focus,
.IqszyFGh-uQYDXjpMUC .nav-link:focus {
  outline: none;
}
.IqszyFGh-uQYDXjpMUC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYDXjpMUC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.IqszyFGh-uQYDXjpMUC .dropdown .dropdown-menu .dropdown-item .theme-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.IqszyFGh-uQYDXjpMUC .dropdown .dropdown-menu .dropdown-item .theme-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYDXjpMUC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.IqszyFGh-uQYDXjpMUC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.IqszyFGh-uQYDXjpMUC .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.IqszyFGh-uQYDXjpMUC .navbar.opened {
  transition: all 0.3s;
}
.IqszyFGh-uQYDXjpMUC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.IqszyFGh-uQYDXjpMUC .navbar .navbar-logo img {
  width: auto;
}
.IqszyFGh-uQYDXjpMUC .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
.IqszyFGh-uQYDXjpMUC .navbar.collapsed {
  justify-content: center;
}
.IqszyFGh-uQYDXjpMUC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.IqszyFGh-uQYDXjpMUC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.IqszyFGh-uQYDXjpMUC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.IqszyFGh-uQYDXjpMUC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.IqszyFGh-uQYDXjpMUC .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%;
}
.IqszyFGh-uQYDXjpMUC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.IqszyFGh-uQYDXjpMUC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.IqszyFGh-uQYDXjpMUC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYDXjpMUC .navbar {
    min-height: 72px;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .IqszyFGh-uQYDXjpMUC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .IqszyFGh-uQYDXjpMUC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .IqszyFGh-uQYDXjpMUC .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%;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.IqszyFGh-uQYDXjpMUC .dropdown-item.active,
.IqszyFGh-uQYDXjpMUC .dropdown-item:active {
  background-color: transparent;
}
.IqszyFGh-uQYDXjpMUC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.IqszyFGh-uQYDXjpMUC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.IqszyFGh-uQYDXjpMUC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.IqszyFGh-uQYDXjpMUC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2.5rem;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.IqszyFGh-uQYDXjpMUC .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.IqszyFGh-uQYDXjpMUC ul.navbar-nav {
  flex-wrap: wrap;
}
.IqszyFGh-uQYDXjpMUC .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar-buttons {
    text-align: left;
  }
}
.IqszyFGh-uQYDXjpMUC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.IqszyFGh-uQYDXjpMUC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.IqszyFGh-uQYDXjpMUC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.IqszyFGh-uQYDXjpMUC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYDXjpMUC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYDXjpMUC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.IqszyFGh-uQYDXjpMUC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYDXjpMUC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYDXjpMUC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYDXjpMUC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYDXjpMUC .navbar-dropdown {
  padding: 0 1rem;
}
.IqszyFGh-uQYDXjpMUC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.IqszyFGh-uQYDXjpMUC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
.IqszyFGh-uQYDXjpMUC .icons-menu .iconfont-wrapper {
  padding-right: 12px;
}
.IqszyFGh-uQYDXjpMUC .icons-menu .iconfont-wrapper .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 100%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .IqszyFGh-uQYDXjpMUC .navbar {
    height: 70px;
  }
  .IqszyFGh-uQYDXjpMUC .navbar.opened {
    height: auto;
  }
  .IqszyFGh-uQYDXjpMUC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.IqszyFGh-uQYDXjpMUC .theme-section-btn {
  margin: -0.6rem -0.6rem;
}
.IqszyFGh-uQYDXjpMUC .theme-section-btn .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {
  .IqszyFGh-uQYDXjpMUC .theme-section-btn .btn {
    width: auto !important;
  }
}
.IqszyFGh-uQYDXjpMUC .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .IqszyFGh-uQYDXjpMUC .navbar-brand {
    margin-right: auto;
  }
  .IqszyFGh-uQYDXjpMUC .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #2a2a2e;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .IqszyFGh-uQYDXjpMUC .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 0 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .IqszyFGh-uQYDXjpMUC .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .IqszyFGh-uQYDXjpMUC .navbar-collapse {
    padding: 1rem;
  }
}
.IqszyFGh-uQYDXjpMUC .content-wrap {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjpMUC .content-wrap {
    display: block;
  }
}
.IqszyFGh-uQYDXjWCfk {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #f2f2f5;
  flex-direction: column;
  justify-content: center;
}
.IqszyFGh-uQYDXjWCfk .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYDXjWCfk .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjWCfk .container {
    padding: 0 16px;
  }
}
.IqszyFGh-uQYDXjWCfk .row {
  justify-content: center;
}
.IqszyFGh-uQYDXjWCfk .desc-wrapper .theme-desc {
  margin-bottom: 32px;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYDXjWCfk .content-wrapper .theme-text {
    margin-bottom: 22px;
  }
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-primary:hover,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-secondary:hover,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-success:hover,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-info:hover,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-warning:hover,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-danger:hover,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-black:hover,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-white:hover,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-primary:focus,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-secondary:focus,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-success:focus,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-info:focus,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-warning:focus,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-danger:focus,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-black:focus,
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #cdfb0a !important;
  color: #47b5ed !important;
  border-color: #cdfb0a !important;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #cdfb0a !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #40b0bf !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #47b5ed !important;
  color: #cdfb0a !important;
  border-color: #47b5ed !important;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffe161 !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ff9966 !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.IqszyFGh-uQYDXjWCfk .content-wrapper .theme-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.IqszyFGh-uQYDXjWCfk .theme-desc {
  color: #000000;
}
.IqszyFGh-uQYDXjWCfk .theme-section-title {
  color: #000000;
}
.IqszyFGh-uQYDXjWCfk .theme-text {
  color: #000000;
}
.IqszyFGh-uQYDXjWCfk .theme-section-btn {
  text-align: center;
}
.IqszyFGh-uQYDXjWCfk .theme-section-title,
.IqszyFGh-uQYDXjWCfk .theme-section-btn {
  text-align: center;
  color: #000000;
}
.IqszyFGh-uR0NxZiiFD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  transform: rotate(-45deg);
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uR0NxZiiFD .row {
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.IqszyFGh-uR0NxZiiFD .content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
    margin-bottom: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
    width: 100%;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
    margin-top: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .social-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap {
  display: inline-flex;
  flex-direction: column;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:hover .theme-iconfont,
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:focus .theme-iconfont {
  background-color: #ffffff;
  color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item .theme-soc {
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper .theme-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-text,
.IqszyFGh-uR0NxZiiFD .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-section-btn,
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-copy {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc,
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  color: #ffffff;
}
.IqszyFGh-uQYzPi9Zvk {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item:before {
  font-family: font2 !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;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-toggler {
    transform: scale(0.8);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-logo a {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .dropdown-item {
  padding: 14px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #2a2a2e;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-link {
  width: fit-content;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-caption {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-caption {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.IqszyFGh-uQYzPi9Zvk .container,
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #f2f2f5;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #2a2a2e;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper:hover {
  opacity: .6;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-item:focus,
.IqszyFGh-uQYzPi9Zvk .nav-link:focus {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.opened {
  transition: all 0.3s;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
  width: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed {
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.IqszyFGh-uQYzPi9Zvk .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%;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    min-height: 72px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .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%;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item.active,
.IqszyFGh-uQYzPi9Zvk .dropdown-item:active {
  background-color: transparent;
}
.IqszyFGh-uQYzPi9Zvk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2.5rem;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.IqszyFGh-uQYzPi9Zvk ul.navbar-nav {
  flex-wrap: wrap;
}
.IqszyFGh-uQYzPi9Zvk .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-buttons {
    text-align: left;
  }
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk .navbar-dropdown {
  padding: 0 1rem;
}
.IqszyFGh-uQYzPi9Zvk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper {
  padding-right: 12px;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 100%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    height: 70px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened {
    height: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn {
  margin: -0.6rem -0.6rem;
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
    width: auto !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    margin-right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #2a2a2e;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 0 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    padding: 1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .content-wrap {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .content-wrap {
    display: block;
  }
}
.IqszyFGh-uQYBYf9cEM {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #f2f2f5;
  flex-direction: column;
  justify-content: center;
}
.IqszyFGh-uQYBYf9cEM .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYBYf9cEM .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBYf9cEM .container {
    padding: 0 16px;
  }
}
.IqszyFGh-uQYBYf9cEM .row {
  justify-content: center;
}
.IqszyFGh-uQYBYf9cEM .desc-wrapper .theme-desc {
  margin-bottom: 32px;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBYf9cEM .content-wrapper .theme-text {
    margin-bottom: 22px;
  }
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-primary:hover,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-secondary:hover,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-success:hover,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-info:hover,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-warning:hover,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-danger:hover,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-black:hover,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-white:hover,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-primary:focus,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-secondary:focus,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-success:focus,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-info:focus,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-warning:focus,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-danger:focus,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-black:focus,
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #cdfb0a !important;
  color: #47b5ed !important;
  border-color: #cdfb0a !important;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #cdfb0a !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #40b0bf !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #47b5ed !important;
  color: #cdfb0a !important;
  border-color: #47b5ed !important;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffe161 !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ff9966 !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.IqszyFGh-uQYBYf9cEM .content-wrapper .theme-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.IqszyFGh-uQYBYf9cEM .theme-desc {
  color: #000000;
}
.IqszyFGh-uQYBYf9cEM .theme-section-title {
  color: #000000;
}
.IqszyFGh-uQYBYf9cEM .theme-text {
  color: #000000;
}
.IqszyFGh-uQYBYf9cEM .theme-section-btn {
  text-align: center;
}
.IqszyFGh-uQYBYf9cEM .theme-section-title,
.IqszyFGh-uQYBYf9cEM .theme-section-btn {
  text-align: center;
  color: #000000;
}
.IqszyFGh-uR0NxZiiFD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  transform: rotate(-45deg);
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uR0NxZiiFD .row {
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.IqszyFGh-uR0NxZiiFD .content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
    margin-bottom: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
    width: 100%;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
    margin-top: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .social-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap {
  display: inline-flex;
  flex-direction: column;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:hover .theme-iconfont,
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:focus .theme-iconfont {
  background-color: #ffffff;
  color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item .theme-soc {
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper .theme-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-text,
.IqszyFGh-uR0NxZiiFD .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-section-btn,
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-copy {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc,
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  color: #ffffff;
}
.IqszyFGh-uQYzPi9Zvk {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item:before {
  font-family: font2 !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;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-toggler {
    transform: scale(0.8);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-logo a {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .dropdown-item {
  padding: 14px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #2a2a2e;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-link {
  width: fit-content;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-caption {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-caption {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.IqszyFGh-uQYzPi9Zvk .container,
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #f2f2f5;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #2a2a2e;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper:hover {
  opacity: .6;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-item:focus,
.IqszyFGh-uQYzPi9Zvk .nav-link:focus {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.opened {
  transition: all 0.3s;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
  width: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed {
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.IqszyFGh-uQYzPi9Zvk .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%;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    min-height: 72px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .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%;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item.active,
.IqszyFGh-uQYzPi9Zvk .dropdown-item:active {
  background-color: transparent;
}
.IqszyFGh-uQYzPi9Zvk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2.5rem;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.IqszyFGh-uQYzPi9Zvk ul.navbar-nav {
  flex-wrap: wrap;
}
.IqszyFGh-uQYzPi9Zvk .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-buttons {
    text-align: left;
  }
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk .navbar-dropdown {
  padding: 0 1rem;
}
.IqszyFGh-uQYzPi9Zvk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper {
  padding-right: 12px;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 100%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    height: 70px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened {
    height: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn {
  margin: -0.6rem -0.6rem;
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
    width: auto !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    margin-right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #2a2a2e;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 0 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    padding: 1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .content-wrap {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .content-wrap {
    display: block;
  }
}
.IqszyFGh-uQYFUnjpli {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYFUnjpli .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYFUnjpli .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYFUnjpli .card-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 64px;
  background-image: linear-gradient(45deg, #f2f2f5 -10%, #f2f2f5 30%, #f2f2f5 80%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYFUnjpli .card-wrapper {
    display: block;
    padding: 16px;
  }
}
.IqszyFGh-uQYFUnjpli .card-wrapper .title-wrapper {
  width: 42%;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYFUnjpli .card-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.IqszyFGh-uQYFUnjpli .card-wrapper .title-wrapper .theme-title {
  margin-bottom: 16px;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .title-wrapper .theme-text {
  margin-bottom: 0;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper {
  width: 50%;
  background-color: #a8a3b4;
  padding: 45px 36px;
  margin-bottom: -6rem;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper {
    width: 100%;
    padding: 22px 16px;
    margin-bottom: 0;
  }
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row h5 {
  margin-bottom: 20px !important;
  background-image: linear-gradient(90deg, #000000, #000000 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group {
    margin-bottom: 16px;
  }
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group .form-control {
  padding: 10px 20px;
  border: 1px solid #a8a3b4 !important;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group .form-control:hover,
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #a8a3b4 !important;
  box-shadow: none;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  opacity: .5;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group textarea {
  min-height: 150px;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .theme-section-btn {
  width: 100%;
  padding: 0;
}
.IqszyFGh-uQYFUnjpli .card-wrapper .form-wrapper .dragArea.row .theme-section-btn .btn {
  margin: 0;
}
.IqszyFGh-uQYFUnjpli .theme-section-btn {
  text-align: right;
}
.IqszyFGh-uQYFUnjpli .theme-title {
  color: #000000;
  text-align: center;
}
.IqszyFGh-uQYFUnjpli .theme-text {
  color: #000000;
}
.IqszyFGh-uQYFUnjpli label {
  color: #ffffff;
}
.IqszyFGh-uQYFUnjpli H5 {
  color: #000000;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  transform: rotate(-45deg);
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uR0NxZiiFD .row {
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.IqszyFGh-uR0NxZiiFD .content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
    margin-bottom: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
    width: 100%;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
    margin-top: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .social-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap {
  display: inline-flex;
  flex-direction: column;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:hover .theme-iconfont,
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:focus .theme-iconfont {
  background-color: #ffffff;
  color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item .theme-soc {
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper .theme-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-text,
.IqszyFGh-uR0NxZiiFD .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-section-btn,
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-copy {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc,
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  color: #ffffff;
}
.IqszyFGh-uQYzPi9Zvk {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item:before {
  font-family: font2 !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;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-toggler {
    transform: scale(0.8);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-logo a {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .dropdown-item {
  padding: 14px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #2a2a2e;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-link {
  width: fit-content;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-caption {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-caption {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.IqszyFGh-uQYzPi9Zvk .container,
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #f2f2f5;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #2a2a2e;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper:hover {
  opacity: .6;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-item:focus,
.IqszyFGh-uQYzPi9Zvk .nav-link:focus {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.opened {
  transition: all 0.3s;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
  width: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed {
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.IqszyFGh-uQYzPi9Zvk .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%;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    min-height: 72px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .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%;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item.active,
.IqszyFGh-uQYzPi9Zvk .dropdown-item:active {
  background-color: transparent;
}
.IqszyFGh-uQYzPi9Zvk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2.5rem;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.IqszyFGh-uQYzPi9Zvk ul.navbar-nav {
  flex-wrap: wrap;
}
.IqszyFGh-uQYzPi9Zvk .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-buttons {
    text-align: left;
  }
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk .navbar-dropdown {
  padding: 0 1rem;
}
.IqszyFGh-uQYzPi9Zvk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper {
  padding-right: 12px;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 100%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    height: 70px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened {
    height: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn {
  margin: -0.6rem -0.6rem;
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
    width: auto !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    margin-right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #2a2a2e;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 0 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    padding: 1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .content-wrap {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .content-wrap {
    display: block;
  }
}
.IqszyFGh-uQYB5N5tHs {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYB5N5tHs img,
.IqszyFGh-uQYB5N5tHs .item-img {
  width: 100%;
}
.IqszyFGh-uQYB5N5tHs .item:focus,
.IqszyFGh-uQYB5N5tHs span:focus {
  outline: none;
}
.IqszyFGh-uQYB5N5tHs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.IqszyFGh-uQYB5N5tHs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f2f2f5;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYB5N5tHs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .IqszyFGh-uQYB5N5tHs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .IqszyFGh-uQYB5N5tHs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .IqszyFGh-uQYB5N5tHs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.IqszyFGh-uQYB5N5tHs .theme-section-btn {
  margin-top: auto !important;
}
.IqszyFGh-uQYB5N5tHs .theme-section-title {
  color: #ffffff;
}
.IqszyFGh-uQYB5N5tHs .theme-text,
.IqszyFGh-uQYB5N5tHs .theme-section-btn {
  text-align: left;
  color: #000000;
}
.IqszyFGh-uQYB5N5tHs .item-title {
  text-align: center;
  color: #000000;
}
.IqszyFGh-uQYB5N5tHs .item-subtitle {
  text-align: left;
}
.IqszyFGh-uQYB5N5tHs .theme-section-subtitle {
  color: #ffffff;
}
.IqszyFGh-uQYBmw5PJy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f5;
}
.IqszyFGh-uQYBmw5PJy blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYBmw5PJy .theme-section-title {
  text-align: center;
  color: #ffffff;
}
.IqszyFGh-uQYBmw5PJy .theme-text {
  color: #ffffff;
}
.IqszyFGh-uQYBeLNIKf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYBeLNIKf .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYBeLNIKf .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYBeLNIKf .items-wrapper {
  margin: 0 -50px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYBeLNIKf .items-wrapper {
    margin: 0 -22px;
  }
}
.IqszyFGh-uQYBeLNIKf .items-wrapper .item {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYBeLNIKf .items-wrapper .item {
    padding: 0 22px;
  }
}
.IqszyFGh-uQYBeLNIKf .label-wrapper .theme-label {
  margin-bottom: 22px;
}
.IqszyFGh-uQYBeLNIKf .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBeLNIKf .content-wrapper {
    display: block;
  }
}
.IqszyFGh-uQYBeLNIKf .content-wrapper .content-wrap .theme-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBeLNIKf .content-wrapper .content-wrap .theme-section-title {
    margin-bottom: 32px;
  }
}
.IqszyFGh-uQYBeLNIKf .content-wrapper .content-wrap .theme-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBeLNIKf .content-wrapper .content-wrap .theme-text {
    margin-bottom: 32px;
  }
}
.IqszyFGh-uQYBeLNIKf .content-wrapper .content-wrap .theme-section-btn .btn {
  margin-bottom: 0;
}
.IqszyFGh-uQYBeLNIKf .item {
  margin-bottom: 122px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBeLNIKf .item {
    margin-bottom: 32px;
  }
}
.IqszyFGh-uQYBeLNIKf .item .item-wrapper {
  height: 100%;
}
.IqszyFGh-uQYBeLNIKf .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBeLNIKf .item .item-wrapper .item-img {
    margin-bottom: 22px;
  }
}
.IqszyFGh-uQYBeLNIKf .item .item-wrapper .item-img img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBeLNIKf .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.IqszyFGh-uQYBeLNIKf .item .item-wrapper .item-content .item-name {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBeLNIKf .item .item-wrapper .item-content .item-name {
    margin-bottom: 16px;
  }
}
.IqszyFGh-uQYBeLNIKf .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.IqszyFGh-uQYBeLNIKf .item .item-wrapper .item-content .theme-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBeLNIKf .item .item-wrapper .item-content .theme-section-btn {
    margin-top: 22px;
  }
}
.IqszyFGh-uQYBeLNIKf .theme-label {
  color: #ffffff;
}
.IqszyFGh-uQYBeLNIKf .theme-section-title {
  color: #c10b02;
}
.IqszyFGh-uQYBeLNIKf .theme-text {
  color: #ffffff;
}
.IqszyFGh-uQYBeLNIKf .item-name {
  color: #ffffff;
  text-align: center;
}
.IqszyFGh-uQYBeLNIKf .item-text {
  color: #ffffff;
}
.IqszyFGh-uQYBeLNIKf .theme-section-title,
.IqszyFGh-uQYBeLNIKf .theme-section-btn {
  text-align: center;
  color: #ffffff;
}
.IqszyFGh-uQYBsEyACL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f5;
}
@media (max-width: 992px) and (max-width: 992px) {
  .IqszyFGh-uQYBsEyACL .container {
    padding: 0 24px;
  }
}
.IqszyFGh-uQYBsEyACL .card {
  justify-content: center;
}
.IqszyFGh-uQYBsEyACL .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBsEyACL .title-wrapper {
    padding: 0 24px 24px;
  }
}
.IqszyFGh-uQYBsEyACL .title-wrapper .theme-section-title {
  margin-bottom: 16px;
}
.IqszyFGh-uQYBsEyACL .title-wrapper .theme-desc {
  margin-bottom: 0;
}
.IqszyFGh-uQYBsEyACL .text-wrapper {
  border-top: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBsEyACL .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.IqszyFGh-uQYBsEyACL .text-wrapper .theme-text {
  width: 45%;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBsEyACL .text-wrapper .theme-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .IqszyFGh-uQYBsEyACL .text-wrapper .theme-text:last-child {
    margin-bottom: 0;
  }
}
.IqszyFGh-uQYBsEyACL .theme-section-title {
  color: #F9F6E0;
}
.IqszyFGh-uQYBsEyACL .theme-desc {
  color: #000000;
}
.IqszyFGh-uQYBsEyACL .theme-text {
  color: #000000;
}
.IqszyFGh-uQYBsEyACL .theme-section-btn {
  text-align: right;
}
.IqszyFGh-uQYBsEyACL .theme-section-title,
.IqszyFGh-uQYBsEyACL .theme-section-btn {
  color: #000000;
  text-align: center;
}
.IqszyFGh-uQYBvBEWC4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYBvBEWC4 .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYBvBEWC4 .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYBvBEWC4 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .IqszyFGh-uQYBvBEWC4 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .IqszyFGh-uQYBvBEWC4 .container {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBvBEWC4 .image-wrapper {
    margin-bottom: 50px;
  }
}
.IqszyFGh-uQYBvBEWC4 .image-wrapper img {
  height: 640px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBvBEWC4 .image-wrapper img {
    height: 300px;
  }
}
.IqszyFGh-uQYBvBEWC4 .title-wrapper {
  margin: 0 0 50px 70px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBvBEWC4 .title-wrapper {
    margin: 0 0 50px 0;
  }
}
.IqszyFGh-uQYBvBEWC4 .title-wrapper .theme-section-subtitle {
  margin-bottom: 18px;
}
.IqszyFGh-uQYBvBEWC4 .title-wrapper .theme-section-title {
  margin-bottom: 18px;
}
.IqszyFGh-uQYBvBEWC4 .title-wrapper .theme-text {
  margin-bottom: 0;
}
.IqszyFGh-uQYBvBEWC4 .cards-wrapper {
  margin: 0 0 0 70px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYBvBEWC4 .cards-wrapper {
    margin: 0;
  }
}
.IqszyFGh-uQYBvBEWC4 .cards-wrapper .cards-wrap {
  display: inline-flex;
}
@media (max-width: 768px) {
  .IqszyFGh-uQYBvBEWC4 .cards-wrapper .cards-wrap {
    display: block;
  }
}
.IqszyFGh-uQYBvBEWC4 .cards-wrapper .cards-wrap .card:first-child {
  margin-right: 18px;
}
@media (max-width: 768px) {
  .IqszyFGh-uQYBvBEWC4 .cards-wrapper .cards-wrap .card:first-child {
    margin-right: 0;
    margin-bottom: 18px;
  }
}
.IqszyFGh-uQYBvBEWC4 .cards-wrapper .cards-wrap .card .theme-card-title {
  margin-bottom: 18px;
}
.IqszyFGh-uQYBvBEWC4 .cards-wrapper .cards-wrap .card .theme-text {
  margin-bottom: 0;
}
.IqszyFGh-uQYBvBEWC4 .theme-section-title {
  color: #ffffff;
  text-align: center;
}
.IqszyFGh-uQYBvBEWC4 .theme-section-subtitle {
  color: #ffffff;
}
.IqszyFGh-uQYBvBEWC4 .theme-text {
  color: #ffffff;
  text-align: left;
}
.IqszyFGh-uQYBvBEWC4 .theme-card-title {
  color: #ffffff;
}
.IqszyFGh-uQYBvBEWC4 .theme-card-title,
.IqszyFGh-uQYBvBEWC4 .cards-wrapper {
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  transform: rotate(-45deg);
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uR0NxZiiFD .row {
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.IqszyFGh-uR0NxZiiFD .content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
    margin-bottom: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
    width: 100%;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
    margin-top: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .social-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap {
  display: inline-flex;
  flex-direction: column;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:hover .theme-iconfont,
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:focus .theme-iconfont {
  background-color: #ffffff;
  color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item .theme-soc {
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper .theme-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-text,
.IqszyFGh-uR0NxZiiFD .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-section-btn,
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-copy {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc,
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  color: #ffffff;
}
.IqszyFGh-uQYzPi9Zvk {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item:before {
  font-family: font2 !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;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-toggler {
    transform: scale(0.8);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 3;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-brand .navbar-logo a {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav {
  margin: auto;
  margin-left: 0;
  width: 45%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
  position: relative;
  padding: 2px 18px !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::before {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 5px !important;
  background-color: #ffffff;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item::after {
    display: none;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::before {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0!important;
  margin: 0 !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 10px 0 !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-nav .dropdown-item {
  padding: 14px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #2a2a2e;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-link {
  width: fit-content;
  position: relative;
}
.IqszyFGh-uQYzPi9Zvk .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar-caption {
  padding-left: .5rem;
  padding-right: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-caption {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.IqszyFGh-uQYzPi9Zvk .container,
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  display: flex;
  height: 90px;
  padding: 0.5rem 15px 0.5rem 32px;
  flex-wrap: nowrap;
  border: 2px solid #f2f2f5;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #2a2a2e;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    padding: 0.5rem 15px 0.5rem 15px;
    padding-right: 2rem;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .container,
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .container-fluid {
  margin-left: 44px;
  margin-right: 44px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .iconfont-wrapper:hover {
  opacity: .6;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  border-radius: 4px !important;
}
.IqszyFGh-uQYzPi9Zvk .nav-item:focus,
.IqszyFGh-uQYzPi9Zvk .nav-link:focus {
  outline: none;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.IqszyFGh-uQYzPi9Zvk .dropdown .dropdown-menu .dropdown-item .theme-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.opened {
  transition: all 0.3s;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
  width: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar .navbar-collapse {
  z-index: 1;
  justify-content: space-between;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed {
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.IqszyFGh-uQYzPi9Zvk .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%;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.IqszyFGh-uQYzPi9Zvk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    min-height: 72px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .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%;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.IqszyFGh-uQYzPi9Zvk .dropdown-item.active,
.IqszyFGh-uQYzPi9Zvk .dropdown-item:active {
  background-color: transparent;
}
.IqszyFGh-uQYzPi9Zvk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2.5rem;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.IqszyFGh-uQYzPi9Zvk ul.navbar-nav {
  flex-wrap: wrap;
}
.IqszyFGh-uQYzPi9Zvk .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-buttons {
    text-align: left;
  }
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.IqszyFGh-uQYzPi9Zvk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.IqszyFGh-uQYzPi9Zvk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.IqszyFGh-uQYzPi9Zvk .navbar-dropdown {
  padding: 0 1rem;
}
.IqszyFGh-uQYzPi9Zvk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper {
  padding-right: 12px;
}
.IqszyFGh-uQYzPi9Zvk .icons-menu .iconfont-wrapper .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 100%;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .IqszyFGh-uQYzPi9Zvk .navbar {
    height: 70px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar.opened {
    height: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn {
  margin: -0.6rem -0.6rem;
}
.IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
  white-space: nowrap;
  width: auto;
  min-height: 65px;
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .theme-section-btn .btn {
    width: auto !important;
  }
}
.IqszyFGh-uQYzPi9Zvk .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-brand {
    margin-right: auto;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #2a2a2e;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 0 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .IqszyFGh-uQYzPi9Zvk .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .IqszyFGh-uQYzPi9Zvk .navbar-collapse {
    padding: 1rem;
  }
}
.IqszyFGh-uQYzPi9Zvk .content-wrap {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYzPi9Zvk .content-wrap {
    display: block;
  }
}
.IqszyFGh-uQYAH92Fdv {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYAH92Fdv .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYAH92Fdv .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYAH92Fdv .card-wrapper {
  overflow: hidden;
  display: flex;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAH92Fdv .card-wrapper {
    display: block;
  }
}
.IqszyFGh-uQYAH92Fdv .card-wrapper .items-wrapper {
  width: 50%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAH92Fdv .card-wrapper .items-wrapper {
    width: 100%;
    padding: 20px;
    min-height: 350px;
  }
}
.IqszyFGh-uQYAH92Fdv .card-wrapper .items-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
.IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper {
  width: 50%;
  padding: 30px;
  background-color: #f2f2f5;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper {
    padding: 20px;
    width: 100%;
  }
}
.IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper .date-wrapper {
  margin-bottom: 160px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper .date-wrapper {
    margin-bottom: 20px;
  }
}
.IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper .date-wrapper .theme-date {
  margin-bottom: 0;
}
.IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper .title-wrapper .theme-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper .title-wrapper .theme-section-title {
    width: 100%;
  }
}
.IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper .text-wrapper .theme-text {
  display: inline-flex;
  width: 50%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper .text-wrapper .theme-text {
    width: 100%;
  }
}
.IqszyFGh-uQYAH92Fdv .card-wrapper .content-wrapper .theme-section-btn .btn {
  margin-bottom: 0;
}
.IqszyFGh-uQYAH92Fdv .theme-date {
  color: #000000;
}
.IqszyFGh-uQYAH92Fdv .theme-section-title {
  color: #f4f4f4;
}
.IqszyFGh-uQYAH92Fdv .theme-text {
  color: #d7d2d2;
}
.IqszyFGh-uQYAH92Fdv .theme-section-title,
.IqszyFGh-uQYAH92Fdv .theme-section-btn,
.IqszyFGh-uQYAH92Fdv .title-wrapper {
  color: #000000;
  text-align: center;
}
.IqszyFGh-uQYAH92Fdv .theme-text,
.IqszyFGh-uQYAH92Fdv .text-wrapper {
  color: #000000;
  text-align: center;
}
.IqszyFGh-uQYAQxtIPw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f5;
}
.IqszyFGh-uQYAQxtIPw .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYAQxtIPw .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .IqszyFGh-uQYAQxtIPw .container {
    padding: 0 16px;
  }
}
.IqszyFGh-uQYAQxtIPw .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.IqszyFGh-uQYAQxtIPw .content-wrapper .theme-section-title {
  margin-bottom: 50px;
}
.IqszyFGh-uQYAQxtIPw .content-wrapper .theme-text {
  margin-bottom: 0;
}
.IqszyFGh-uQYAQxtIPw .theme-section-title {
  color: #000000;
  text-align: center;
}
.IqszyFGh-uQYAQxtIPw .theme-text {
  color: #000000;
}
.IqszyFGh-uQYANCBptK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYANCBptK .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYANCBptK .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYANCBptK .row {
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYANCBptK .image-wrapper {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uQYANCBptK .image-wrapper img {
  height: 680px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYANCBptK .image-wrapper img {
    height: 350px;
  }
}
.IqszyFGh-uQYANCBptK .content-wrapper {
  padding-left: 54px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYANCBptK .content-wrapper {
    padding-left: 40px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYANCBptK .content-wrapper {
    padding-left: 0;
  }
}
.IqszyFGh-uQYANCBptK .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.IqszyFGh-uQYANCBptK .content-wrapper .label-wrapper .label-wrap .theme-label {
  margin-bottom: 0;
}
.IqszyFGh-uQYANCBptK .content-wrapper .label-wrapper .label-wrap .theme-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #ffffff;
}
.IqszyFGh-uQYANCBptK .content-wrapper .theme-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYANCBptK .content-wrapper .theme-section-title {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uQYANCBptK .content-wrapper .theme-text {
  margin-bottom: 30px;
}
.IqszyFGh-uQYANCBptK .theme-label,
.IqszyFGh-uQYANCBptK .label-wrapper {
  color: #ffffff;
}
.IqszyFGh-uQYANCBptK .theme-section-title {
  color: #fff7ee;
}
.IqszyFGh-uQYANCBptK .theme-text {
  color: #ffffff;
}
.IqszyFGh-uQYANCBptK .theme-section-title,
.IqszyFGh-uQYANCBptK .theme-section-btn {
  text-align: center;
  color: #ffffff;
}
.IqszyFGh-uQYAWHT9cN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f5;
  flex-direction: column;
  justify-content: center;
}
.IqszyFGh-uQYAWHT9cN .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYAWHT9cN .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAWHT9cN .container {
    padding: 0 16px;
  }
}
.IqszyFGh-uQYAWHT9cN .row {
  justify-content: center;
}
.IqszyFGh-uQYAWHT9cN .desc-wrapper .theme-desc {
  margin-bottom: 32px;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAWHT9cN .content-wrapper .theme-text {
    margin-bottom: 22px;
  }
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-primary:hover,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-secondary:hover,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-success:hover,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-info:hover,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-warning:hover,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-danger:hover,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-black:hover,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-white:hover,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-primary:focus,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-secondary:focus,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-success:focus,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-info:focus,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-warning:focus,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-danger:focus,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-black:focus,
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #cdfb0a !important;
  color: #47b5ed !important;
  border-color: #cdfb0a !important;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #cdfb0a !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #40b0bf !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #47b5ed !important;
  color: #cdfb0a !important;
  border-color: #47b5ed !important;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffe161 !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ff9966 !important;
  color: #47b5ed !important;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.IqszyFGh-uQYAWHT9cN .content-wrapper .theme-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.IqszyFGh-uQYAWHT9cN .theme-desc {
  color: #706cff;
}
.IqszyFGh-uQYAWHT9cN .theme-section-title {
  color: #000000;
}
.IqszyFGh-uQYAWHT9cN .theme-text {
  color: #000000;
}
.IqszyFGh-uQYAWHT9cN .theme-section-btn {
  text-align: center;
}
.IqszyFGh-uQYAWHT9cN .theme-section-title,
.IqszyFGh-uQYAWHT9cN .theme-section-btn {
  text-align: center;
}
.IqszyFGh-uQYAKSefAK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a8a3b4;
}
.IqszyFGh-uQYAKSefAK .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uQYAKSefAK .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uQYAKSefAK .label-wrapper .theme-label {
  margin-bottom: 22px;
}
.IqszyFGh-uQYAKSefAK .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 54px;
  border: 3px dashed #f2f2f5;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAKSefAK .card-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAKSefAK .card-wrapper {
    padding: 22px;
  }
}
.IqszyFGh-uQYAKSefAK .card-wrapper .content-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAKSefAK .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 32px;
  }
}
.IqszyFGh-uQYAKSefAK .card-wrapper .content-wrapper .theme-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAKSefAK .card-wrapper .content-wrapper .theme-section-title {
    margin-bottom: 22px;
  }
}
.IqszyFGh-uQYAKSefAK .card-wrapper .content-wrapper .theme-desc {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAKSefAK .card-wrapper .content-wrapper .theme-desc {
    margin-bottom: 22px;
  }
}
.IqszyFGh-uQYAKSefAK .card-wrapper .content-wrapper .text-wrapper .theme-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAKSefAK .card-wrapper .content-wrapper .text-wrapper .theme-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.IqszyFGh-uQYAKSefAK .card-wrapper .content-wrapper .theme-section-btn .btn {
  margin-bottom: 0;
}
.IqszyFGh-uQYAKSefAK .card-wrapper .image-wrapper {
  width: 48%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}
@media (max-width: 1440px) {
  .IqszyFGh-uQYAKSefAK .card-wrapper .image-wrapper {
    gap: 42px;
  }
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAKSefAK .card-wrapper .image-wrapper {
    width: 100%;
    gap: 22px;
    grid-template-columns: 1fr;
  }
}
.IqszyFGh-uQYAKSefAK .card-wrapper .image-wrapper .image-wrap img {
  height: 510px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .IqszyFGh-uQYAKSefAK .card-wrapper .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.IqszyFGh-uQYAKSefAK .theme-label {
  color: #ffffff;
}
.IqszyFGh-uQYAKSefAK .theme-section-title {
  color: #c10b02;
}
.IqszyFGh-uQYAKSefAK .theme-desc {
  color: #ffffff;
}
.IqszyFGh-uQYAKSefAK .theme-text {
  color: #4b4949;
}
.IqszyFGh-uQYAKSefAK .theme-section-title,
.IqszyFGh-uQYAKSefAK .theme-section-btn {
  text-align: center;
  color: #ffffff;
}
.IqszyFGh-uQYAKSefAK .theme-text,
.IqszyFGh-uQYAKSefAK .text-wrapper {
  color: #ffffff;
}
.IqszyFGh-uR0NxZiiFD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .decor-wrapper {
    top: -150px;
    right: -350px;
  }
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #a8a3b4;
  transform: rotate(-45deg);
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image.disabled {
  display: none;
}
.IqszyFGh-uR0NxZiiFD .theme-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.IqszyFGh-uR0NxZiiFD .row {
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .logo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
.IqszyFGh-uR0NxZiiFD .logo-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100% !important;
}
.IqszyFGh-uR0NxZiiFD .content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper {
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-title {
    margin-bottom: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .text-wrapper .theme-text {
    width: 100%;
  }
}
.IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .content-wrapper .theme-section-btn {
    margin-top: 20px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .IqszyFGh-uR0NxZiiFD .social-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap {
  display: inline-flex;
  flex-direction: column;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:hover .theme-iconfont,
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a:focus .theme-iconfont {
  background-color: #ffffff;
  color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item a .theme-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-color: #2a2a2e;
}
.IqszyFGh-uR0NxZiiFD .social-wrapper .social-wrap .soc-item .theme-soc {
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  background-color: #a8a3b4;
  pointer-events: none;
}
.IqszyFGh-uR0NxZiiFD .copy-wrapper .theme-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-text,
.IqszyFGh-uR0NxZiiFD .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-section-btn,
.IqszyFGh-uR0NxZiiFD .theme-section-title {
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc {
  color: #f1f5eb;
}
.IqszyFGh-uR0NxZiiFD .theme-copy {
  color: #f1f5eb;
  text-align: center;
}
.IqszyFGh-uR0NxZiiFD .theme-soc,
.IqszyFGh-uR0NxZiiFD .social-wrapper {
  color: #ffffff;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
@keyframes flipIn {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  50% {
    opacity: 1;
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
  }
}

@keyframes flipOut {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 600px;
  width: calc(100% - 32px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  animation: flipIn 0.8s ease-out forwards;
  transition: all 0.3s ease-in-out;
}

.cookie-banner.hide {
  animation: flipOut 0.6s ease-in-out forwards;
  pointer-events: none;
}

#cookieBanner button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
}

#cookieAcceptBtn {
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: white;
}

#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

#cookieRejectBtn {
  background: linear-gradient(145deg, #f8f9fa, #e0e0e0);
  color: #333;
  border: 1px solid #ccc;
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.2), inset -4px -4px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
    padding: 15px;
  }
  #cookieBanner button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    width: calc(100% - 16px);
    left: 8px;
    bottom: 16px;
    padding: 10px;
  }
  #cookieBanner button {
    padding: 8px;
    font-size: 12px;
  }
}

/* logoanimations */
@keyframes flicker {
    0% {
        opacity: 1;
    }
    20% {
        opacity: 0.3;
    }
    40% {
        opacity: 1;
    }
    60% {
        opacity: 0.5;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

.navbar-brand {
    animation: flicker 2s;
}
/* endlogoanimations */

/* mainanimations */
/* Style 26: rotate + scale */
a, button, .btn {
  transition: transform 0.2s ease;
}
a:active, button:active, .btn:active {
  transform: rotate(-5deg) scale(0.9);
}
/* endmainanimations */
