.btn {
  border-width: 2px;
}
.btn {
  border-radius: 80px;
}
body {
  font-family: 'Space Grotesk', sans-serif;
}
.display-1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .opacity-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .opacity-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .opacity-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .opacity-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .opacity-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.5rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #fedb01 !important;
}
.bg-info {
  background-color: #3f69ff !important;
}
.bg-warning {
  background-color: #c5a900 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #3f69ff !important;
  border-color: #3f69ff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0033e7 !important;
  border-color: #0033e7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0033e7 !important;
  border-color: #0033e7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #fedb01 !important;
  border-color: #fedb01 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #a89101 !important;
  border-color: #a89101 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #a89101 !important;
  border-color: #a89101 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c5a900 !important;
  border-color: #c5a900 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #6e5f00 !important;
  border-color: #6e5f00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #6e5f00 !important;
  border-color: #6e5f00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #3f69ff;
  color: #3f69ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0033e7 !important;
  background-color: transparent !important;
  border-color: #0033e7 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3f69ff !important;
  border-color: #3f69ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #fedb01;
  color: #fedb01;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #a89101 !important;
  background-color: transparent !important;
  border-color: #a89101 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #fedb01 !important;
  border-color: #fedb01 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #c5a900;
  color: #c5a900;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #6e5f00 !important;
  background-color: transparent !important;
  border-color: #6e5f00 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c5a900 !important;
  border-color: #c5a900 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  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: #000000 !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #fedb01 !important;
}
.text-info {
  color: #3f69ff !important;
}
.text-warning {
  color: #c5a900 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #988301 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #002fd8 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #5f5100 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #333333;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.3s;
  /*position: relative;
        background-image: linear-gradient(currentColor 50%, currentColor 50%);
        background-size: 10000px 2px;
        background-repeat: no-repeat;
        background-position: 0 1.2em;*/
  text-decoration: underline;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #3f69ff;
}
.alert-warning {
  background-color: #c5a900;
}
.alert-danger {
  background-color: #ffffff;
}
.opacity-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.opacity-gallery-filter li a {
  border-radius: 100px !important;
}
.opacity-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.opacity-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.opacity-plan-header.bg-primary .opacity-plan-subtitle,
.opacity-plan-header.bg-primary .opacity-plan-price-desc {
  color: #b3b3b3;
}
.opacity-plan-header.bg-success .opacity-plan-subtitle,
.opacity-plan-header.bg-success .opacity-plan-price-desc {
  color: #fff8cc;
}
.opacity-plan-header.bg-info .opacity-plan-subtitle,
.opacity-plan-header.bg-info .opacity-plan-price-desc {
  color: #ffffff;
}
.opacity-plan-header.bg-warning .opacity-plan-subtitle,
.opacity-plan-header.bg-warning .opacity-plan-price-desc {
  color: #ffe545;
}
.opacity-plan-header.bg-danger .opacity-plan-subtitle,
.opacity-plan-header.bg-danger .opacity-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .opacity-iconfont {
  font-size: 1.5rem;
}
.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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .opacity-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.opacity-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.opacity-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.opacity-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.opacity-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !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='%23000000' %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;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1220px;
}
a {
  transition: color 300ms ease !important;
  font-weight: 400 !important;
}
.btn,
.btn-lg {
  box-shadow: none !important;
}
body {
  line-height: 1.667em;
  line-height: 30px;
}
.btn,
.btn-lg {
  margin-top: 0;
  margin-bottom: 0;
}
span.btn {
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
span.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn {
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  position: relative !important;
}
.FTtX0-uPdqn7COUc .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.FTtX0-uPdqn7COUc .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.FTtX0-uPdqn7COUc .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .FTtX0-uPdqn7COUc .container {
    padding: 0 1rem;
  }
}
.FTtX0-uPdqn7COUc .menu-tite {
  background: #000000;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffe33a;
}
.FTtX0-uPdqn7COUc .nav-link {
  position: relative;
}
.FTtX0-uPdqn7COUc .nav-link:hover {
  color: #3f69ff !important;
}
.FTtX0-uPdqn7COUc .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.opened {
  transition: all 0.3s;
}
.FTtX0-uPdqn7COUc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.FTtX0-uPdqn7COUc .navbar .navbar-logo img {
  width: auto;
}
.FTtX0-uPdqn7COUc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar.collapsed {
  justify-content: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.FTtX0-uPdqn7COUc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .FTtX0-uPdqn7COUc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.FTtX0-uPdqn7COUc .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%;
}
.FTtX0-uPdqn7COUc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .FTtX0-uPdqn7COUc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .FTtX0-uPdqn7COUc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .FTtX0-uPdqn7COUc .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%;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .FTtX0-uPdqn7COUc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.FTtX0-uPdqn7COUc .navbar.navbar-short {
  min-height: 60px;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.FTtX0-uPdqn7COUc .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;
}
.FTtX0-uPdqn7COUc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.FTtX0-uPdqn7COUc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.FTtX0-uPdqn7COUc .dropdown-item:hover,
.FTtX0-uPdqn7COUc .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.FTtX0-uPdqn7COUc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.FTtX0-uPdqn7COUc .dropdown-menu,
.FTtX0-uPdqn7COUc .navbar.opened {
  background: #ffffff !important;
}
.FTtX0-uPdqn7COUc .nav-item:focus,
.FTtX0-uPdqn7COUc .nav-link:focus {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-logo a {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown-item.active,
.FTtX0-uPdqn7COUc .dropdown-item:active {
  background-color: transparent;
}
.FTtX0-uPdqn7COUc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.FTtX0-uPdqn7COUc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.FTtX0-uPdqn7COUc ul.navbar-nav {
  flex-wrap: wrap;
}
.FTtX0-uPdqn7COUc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.FTtX0-uPdqn7COUc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  padding: 0 1rem;
}
.FTtX0-uPdqn7COUc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FTtX0-uPdqn7COUc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .FTtX0-uPdqn7COUc .navbar {
    height: 70px;
  }
  .FTtX0-uPdqn7COUc .navbar.opened {
    height: auto;
  }
  .FTtX0-uPdqn7COUc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.FTtX0-uPdqINSHKy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.FTtX0-uPdqINSHKy .row {
  align-items: center;
  justify-content: space-between;
}
.FTtX0-uPdqINSHKy .opacity-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  color: #000000;
}
.FTtX0-uPdqINSHKy .opacity-text {
  color: #8c8c95;
  margin-bottom: 32px;
}
.FTtX0-uPdqINSHKy .opacity-section-btn {
  width: auto;
  display: block;
}
.FTtX0-uPdqINSHKy ul {
  padding-inline-start: 20px;
  margin-bottom: 28px;
}
.FTtX0-uPdqINSHKy li::marker {
  color: #fedb01;
  width: 10px;
}
.FTtX0-uPdqINSHKy li {
  margin-bottom: 7px;
  color: #14142b;
}
.FTtX0-uPdqINSHKy img {
  width: 90%;
}
.FTtX0-uPdqINSHKy .gray {
  background-color: #ffe33a;
  width: 80%;
  height: 430px;
  margin: auto;
  position: relative;
}
.FTtX0-uPdqINSHKy .b {
  max-width: 598px;
}
.FTtX0-uPdqINSHKy .first {
  position: absolute;
  top: -10%;
  right: 25%;
}
.FTtX0-uPdqINSHKy .second {
  position: absolute;
  bottom: -10%;
  left: 25%;
}
@media (max-width: 992px) {
  .FTtX0-uPdqINSHKy .t {
    padding-top: 90px;
  }
  .FTtX0-uPdqINSHKy .b {
    max-width: initial;
  }
  .FTtX0-uPdqINSHKy .gray {
    width: 50%;
  }
}
@media (max-width: 750px) {
  .FTtX0-uPdqINSHKy .gray {
    height: 330px;
  }
}
@media (max-width: 630px) {
  .FTtX0-uPdqINSHKy .gray {
    height: 230px;
  }
}
@media (max-width: 450px) {
  .FTtX0-uPdqINSHKy .gray {
    height: 200px;
    width: 70%;
  }
}
.FTtX0-uPdqINSHKy .btn {
  margin-top: 20px;
}
.FTtX0-uPdqINSHKy .row {
  flex-direction: row-reverse;
}
.FTtX0-uPdqINSHKy .t {
  max-width: 542px;
}
.FTtX0-uPdqINSHKy .opacity-text,
.FTtX0-uPdqINSHKy .button-align,
.FTtX0-uPdqINSHKy .list {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdsJJgmxt {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffe33a;
}
.FTtX0-uPdsJJgmxt .row {
  padding: 0 110px;
  position: relative;
}
.FTtX0-uPdsJJgmxt .row::before {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  display: block;
  width: 45%;
  height: 140%;
  background-color: #ffffff;
  border-radius: 0 0 100% 0;
}
@media (max-width: 992px) {
  .FTtX0-uPdsJJgmxt .row::before {
    display: none;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPdsJJgmxt .row {
    padding: 0 12px;
  }
}
.FTtX0-uPdsJJgmxt .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPdsJJgmxt .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPdsJJgmxt .image {
  position: relative;
}
.FTtX0-uPdsJJgmxt .image::before {
  content: '';
  display: block;
  background-color: #ffffff;
  position: absolute;
  top: -4rem;
  left: 6rem;
  width: 100px;
  height: 100px;
  z-index: 2;
}
@media (max-width: 992px) {
  .FTtX0-uPdsJJgmxt .image::before {
    display: none;
  }
}
.FTtX0-uPdsJJgmxt .image::after {
  content: '';
  display: block;
  background-color: #ffe33a;
  position: absolute;
  top: -2.7rem;
  left: 7.3rem;
  width: 60px;
  height: 60px;
  border-radius: 0 100% 0 0;
  z-index: 3;
}
@media (max-width: 992px) {
  .FTtX0-uPdsJJgmxt .image::after {
    display: none;
  }
}
.FTtX0-uPdsJJgmxt .image-wrapper {
  position: relative;
  padding-right: 85px;
}
@media (max-width: 992px) {
  .FTtX0-uPdsJJgmxt .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
.FTtX0-uPdsJJgmxt .image-wrapper img {
  max-width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 0 0 0 75%;
  z-index: 1;
  position: relative;
}
.FTtX0-uPdsJJgmxt .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  right: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #ffffff;
}
@media (max-width: 992px) {
  .FTtX0-uPdsJJgmxt .image-wrapper::before {
    display: none;
  }
}
.FTtX0-uPdsJJgmxt .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  right: 3rem;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .FTtX0-uPdsJJgmxt .image-wrapper::after {
    display: none;
  }
}
.FTtX0-uPdsJJgmxt .text-wrapper {
  padding-left: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .FTtX0-uPdsJJgmxt .text-wrapper {
    padding: 0;
  }
}
.FTtX0-uPdsJJgmxt .text-wrapper .opacity-section-title {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .FTtX0-uPdsJJgmxt .text-wrapper .opacity-section-title {
    margin: 10px 0;
  }
}
.FTtX0-uPdsJJgmxt .text-wrapper .opacity-text {
  margin-bottom: 0;
}
.FTtX0-uPdsJJgmxt .opacity-section-title {
  color: #c5a900;
  text-align: center;
}
.FTtX0-uPdsJJgmxt .opacity-text {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdIbtzk2F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.FTtX0-uPdIbtzk2F .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPdIbtzk2F .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPdIbtzk2F .underline {
  text-decoration: underline;
}
.FTtX0-uPdIbtzk2F .items {
  background: #ffe33a;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .FTtX0-uPdIbtzk2F .items {
    padding: 3rem 1rem;
  }
}
.FTtX0-uPdIbtzk2F .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.FTtX0-uPdIbtzk2F .text-primary {
  background: #fedb01;
}
.FTtX0-uPdIbtzk2F .noborder {
  border-bottom: 0;
}
.FTtX0-uPdIbtzk2F b,
.FTtX0-uPdIbtzk2F strong,
.FTtX0-uPdIbtzk2F a {
  font-weight: 900;
}
.FTtX0-uPdIbtzk2F .opacity-section-title {
  color: #17003b;
}
.FTtX0-uPdIbtzk2F .opacity-section-subtitle {
  color: #c5a900;
  text-align: center;
}
.FTtX0-uPdIbtzk2F .opacity-item-title {
  text-align: center;
  color: #17003b;
}
.FTtX0-uPdIbtzk2F .opacity-item-text {
  text-align: center;
  color: #000000;
}
.FTtX0-uPdIbtzk2F .opacity-item-title,
.FTtX0-uPdIbtzk2F .card {
  color: #17003b;
}
.FTtX0-uPdIbtzk2F .opacity-text {
  color: #000000;
  text-align: center;
}
.FTtX0-uPevN6pL3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPevN6pL3H .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container {
    padding: 0 26px;
  }
}
.FTtX0-uPevN6pL3H .row {
  justify-content: center;
}
.FTtX0-uPevN6pL3H .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
    width: 100%;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #dcd4cb;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .opacity-iconfont {
  margin-right: 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont,
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a .opacity-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.FTtX0-uPevN6pL3H .opacity-copy {
  margin-bottom: 0;
  color: #ffe33a;
  text-align: center;
}
.FTtX0-uPevN6pL3H .opacity-section-title {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .opacity-text {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list,
.FTtX0-uPevN6pL3H .nav-wrapper,
.FTtX0-uPevN6pL3H .social-wrapper {
  text-align: right;
}
.FTtX0-uPevN6pL3H .opacity-section-title,
.FTtX0-uPevN6pL3H .logo-wrapper {
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  position: relative !important;
}
.FTtX0-uPdqn7COUc .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.FTtX0-uPdqn7COUc .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.FTtX0-uPdqn7COUc .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .FTtX0-uPdqn7COUc .container {
    padding: 0 1rem;
  }
}
.FTtX0-uPdqn7COUc .menu-tite {
  background: #000000;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffe33a;
}
.FTtX0-uPdqn7COUc .nav-link {
  position: relative;
}
.FTtX0-uPdqn7COUc .nav-link:hover {
  color: #3f69ff !important;
}
.FTtX0-uPdqn7COUc .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.opened {
  transition: all 0.3s;
}
.FTtX0-uPdqn7COUc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.FTtX0-uPdqn7COUc .navbar .navbar-logo img {
  width: auto;
}
.FTtX0-uPdqn7COUc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar.collapsed {
  justify-content: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.FTtX0-uPdqn7COUc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .FTtX0-uPdqn7COUc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.FTtX0-uPdqn7COUc .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%;
}
.FTtX0-uPdqn7COUc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .FTtX0-uPdqn7COUc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .FTtX0-uPdqn7COUc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .FTtX0-uPdqn7COUc .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%;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .FTtX0-uPdqn7COUc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.FTtX0-uPdqn7COUc .navbar.navbar-short {
  min-height: 60px;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.FTtX0-uPdqn7COUc .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;
}
.FTtX0-uPdqn7COUc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.FTtX0-uPdqn7COUc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.FTtX0-uPdqn7COUc .dropdown-item:hover,
.FTtX0-uPdqn7COUc .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.FTtX0-uPdqn7COUc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.FTtX0-uPdqn7COUc .dropdown-menu,
.FTtX0-uPdqn7COUc .navbar.opened {
  background: #ffffff !important;
}
.FTtX0-uPdqn7COUc .nav-item:focus,
.FTtX0-uPdqn7COUc .nav-link:focus {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-logo a {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown-item.active,
.FTtX0-uPdqn7COUc .dropdown-item:active {
  background-color: transparent;
}
.FTtX0-uPdqn7COUc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.FTtX0-uPdqn7COUc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.FTtX0-uPdqn7COUc ul.navbar-nav {
  flex-wrap: wrap;
}
.FTtX0-uPdqn7COUc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.FTtX0-uPdqn7COUc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  padding: 0 1rem;
}
.FTtX0-uPdqn7COUc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FTtX0-uPdqn7COUc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .FTtX0-uPdqn7COUc .navbar {
    height: 70px;
  }
  .FTtX0-uPdqn7COUc .navbar.opened {
    height: auto;
  }
  .FTtX0-uPdqn7COUc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.FTtX0-uPdJBoHjv8 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  overflow: hidden;
  background-color: #ffffff;
}
.FTtX0-uPdJBoHjv8 .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPdJBoHjv8 .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPdJBoHjv8 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .FTtX0-uPdJBoHjv8 .container {
    padding: 0 12px;
  }
}
.FTtX0-uPdJBoHjv8 .title-wrapper .opacity-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .FTtX0-uPdJBoHjv8 .title-wrapper .opacity-section-title {
    margin-bottom: 24px;
  }
}
.FTtX0-uPdJBoHjv8 .title-wrapper .opacity-section-title span {
  padding: 6px 12px;
  background-color: #ffe33a;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .FTtX0-uPdJBoHjv8 .title-wrapper .opacity-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.FTtX0-uPdJBoHjv8 .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.FTtX0-uPdJBoHjv8 .image-wrapper img {
  position: absolute;
  top: 0;
  width: 850px;
  height: 850px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .FTtX0-uPdJBoHjv8 .image-wrapper img {
    width: 550px;
    height: 550px;
  }
}
@media (max-width: 768px) {
  .FTtX0-uPdJBoHjv8 .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
.FTtX0-uPdJBoHjv8 .image-wrapper .card-wrapper {
  position: relative;
  max-width: 40%;
  margin-top: 16rem;
  padding: 24px;
  border-radius: 32px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffe33a;
}
@media (max-width: 992px) {
  .FTtX0-uPdJBoHjv8 .image-wrapper .card-wrapper {
    max-width: 100%;
    border-radius: 24px;
    margin-top: 10rem;
  }
}
.FTtX0-uPdJBoHjv8 .image-wrapper .card-wrapper .opacity-text {
  margin-bottom: 24px;
}
.FTtX0-uPdJBoHjv8 .opacity-section-title {
  color: #222222;
  text-align: center;
}
.FTtX0-uPdJBoHjv8 .opacity-text {
  color: #222222;
}
.FTtX0-uPdJBoHjv8 .opacity-text,
.FTtX0-uPdJBoHjv8 .opacity-section-btn {
  text-align: center;
}
.FTtX0-uPdX8UNPuP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe33a;
}
.FTtX0-uPdX8UNPuP .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPdX8UNPuP .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPdX8UNPuP .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPdX8UNPuP .content-wrapper {
    margin-bottom: 32px;
  }
}
.FTtX0-uPdX8UNPuP .content-wrapper .opacity-desc {
  margin-bottom: 8px;
}
.FTtX0-uPdX8UNPuP .content-wrapper .opacity-section-title {
  margin-bottom: 0;
}
.FTtX0-uPdX8UNPuP .content-wrapper .opacity-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.FTtX0-uPdX8UNPuP .items-wrapper {
  justify-content: center;
  margin: 0 -8px;
}
.FTtX0-uPdX8UNPuP .item {
  padding: 0 8px;
  margin-bottom: 16px;
}
.FTtX0-uPdX8UNPuP .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 100%;
}
@media (max-width: 992px) {
  .FTtX0-uPdX8UNPuP .item .item-wrapper {
    padding: 20px 16px;
  }
}
.FTtX0-uPdX8UNPuP .item .item-wrapper .card-box .title-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .FTtX0-uPdX8UNPuP .item .item-wrapper .card-box .title-wrap {
    display: block;
    margin-bottom: 24px;
  }
}
.FTtX0-uPdX8UNPuP .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .FTtX0-uPdX8UNPuP .item .item-wrapper .card-box .title-wrap .item-title {
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPdX8UNPuP .item .item-wrapper .card-box .title-wrap .icon-wrapper {
    margin-bottom: 16px;
  }
}
.FTtX0-uPdX8UNPuP .item .item-wrapper .card-box .title-wrap .icon-wrapper .opacity-iconfont {
  display: inline-flex;
  font-size: 56px;
  background: linear-gradient(230deg, #c5a900, #ffe85f);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.FTtX0-uPdX8UNPuP .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.FTtX0-uPdX8UNPuP .item .card_1 {
  background: linear-gradient(315deg, #ffffff, #ffffff);
}
.FTtX0-uPdX8UNPuP .item .card_2 {
  background: linear-gradient(315deg, #ffffff, #ffffff);
}
.FTtX0-uPdX8UNPuP .item .card_3 {
  background: linear-gradient(315deg, #ffffff, #ffffff);
}
.FTtX0-uPdX8UNPuP .btn-wrapper {
  margin-top: -6%;
}
.FTtX0-uPdX8UNPuP .opacity-desc {
  color: #272b2e;
  text-align: center;
}
.FTtX0-uPdX8UNPuP .opacity-section-title {
  color: #272b2e;
  text-align: center;
}
.FTtX0-uPdX8UNPuP .item-title {
  color: #c5a900;
  text-align: center;
}
.FTtX0-uPdX8UNPuP .item-text {
  color: #ffffff;
}
.FTtX0-uPdX8UNPuP .item-text,
.FTtX0-uPdX8UNPuP .icon-wrapper {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdXcvK4lR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.FTtX0-uPdXcvK4lR .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPdXcvK4lR .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPdXcvK4lR .title-wrapper .opacity-section-title {
  margin-bottom: 64px;
}
.FTtX0-uPdXcvK4lR .title-wrapper .opacity-section-title span {
  color: #ff8576;
}
@media (max-width: 992px) {
  .FTtX0-uPdXcvK4lR .title-wrapper .opacity-section-title {
    margin-bottom: 46px;
  }
}
.FTtX0-uPdXcvK4lR .item {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .FTtX0-uPdXcvK4lR .item {
    margin-bottom: 16px;
  }
}
.FTtX0-uPdXcvK4lR .item:last-child {
  margin-bottom: 0;
}
.FTtX0-uPdXcvK4lR .item:hover .item-wrapper .item-img img,
.FTtX0-uPdXcvK4lR .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.FTtX0-uPdXcvK4lR .item .item-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .FTtX0-uPdXcvK4lR .item .item-wrapper {
    display: block;
    height: auto;
  }
}
.FTtX0-uPdXcvK4lR .item .item-wrapper .item-content {
  width: 40%;
  padding: 64px;
}
@media (max-width: 992px) {
  .FTtX0-uPdXcvK4lR .item .item-wrapper .item-content {
    padding: 46px 22px;
    width: 100%;
  }
}
.FTtX0-uPdXcvK4lR .item .item-wrapper .item-content .item-title_1,
.FTtX0-uPdXcvK4lR .item .item-wrapper .item-content .item-title_2 {
  margin-bottom: 16px;
}
.FTtX0-uPdXcvK4lR .item .item-wrapper .item-content .item-text_1,
.FTtX0-uPdXcvK4lR .item .item-wrapper .item-content .item-text_2 {
  margin-bottom: 16px;
}
.FTtX0-uPdXcvK4lR .item .item-wrapper .item-content .opacity-section-btn .btn {
  margin-bottom: 0;
}
.FTtX0-uPdXcvK4lR .item .item-wrapper .item-img {
  width: 60%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 992px) {
  .FTtX0-uPdXcvK4lR .item .item-wrapper .item-img {
    width: 100%;
  }
}
.FTtX0-uPdXcvK4lR .item .item-wrapper .item-img img {
  height: 100%;
  border-radius: 0 !important;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .FTtX0-uPdXcvK4lR .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.FTtX0-uPdXcvK4lR .item .card_1 {
  background-color: #ffe33a;
}
.FTtX0-uPdXcvK4lR .item .card_2 {
  background-color: #ffe33a;
}
.FTtX0-uPdXcvK4lR .opacity-section-title {
  color: #212529;
}
.FTtX0-uPdXcvK4lR .item-title_1 {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdXcvK4lR .item-title_2 {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdXcvK4lR .item-text_1 {
  color: #f5a11b;
}
.FTtX0-uPdXcvK4lR .item-text_2 {
  color: #ff543d;
}
.FTtX0-uPdXcvK4lR .item-text_1,
.FTtX0-uPdXcvK4lR .opacity-section-btn {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdXcvK4lR .item-text_2,
.FTtX0-uPdXcvK4lR .opacity-section-btn {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdXjw3lBG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe33a;
}
.FTtX0-uPdXjw3lBG .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPdXjw3lBG .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPdXjw3lBG .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .FTtX0-uPdXjw3lBG .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .FTtX0-uPdXjw3lBG .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .FTtX0-uPdXjw3lBG .card-wrapper {
    padding: 4rem;
  }
}
.FTtX0-uPdXjw3lBG .opacity-text,
.FTtX0-uPdXjw3lBG .opacity-section-btn {
  color: #000000;
}
.FTtX0-uPdXjw3lBG .card-title,
.FTtX0-uPdXjw3lBG .card-box {
  text-align: center;
  color: #c5a900;
}
.FTtX0-uPdYDGuvPH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.FTtX0-uPdYDGuvPH .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPdYDGuvPH .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPdYDGuvPH .title-wrapper .opacity-section-title {
  margin-bottom: 64px;
}
.FTtX0-uPdYDGuvPH .title-wrapper .opacity-section-title span {
  color: #ff8576;
}
@media (max-width: 992px) {
  .FTtX0-uPdYDGuvPH .title-wrapper .opacity-section-title {
    margin-bottom: 46px;
  }
}
.FTtX0-uPdYDGuvPH .item {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .FTtX0-uPdYDGuvPH .item {
    margin-bottom: 16px;
  }
}
.FTtX0-uPdYDGuvPH .item:last-child {
  margin-bottom: 0;
}
.FTtX0-uPdYDGuvPH .item:hover .item-wrapper .item-img img,
.FTtX0-uPdYDGuvPH .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.FTtX0-uPdYDGuvPH .item .item-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .FTtX0-uPdYDGuvPH .item .item-wrapper {
    display: block;
    height: auto;
  }
}
.FTtX0-uPdYDGuvPH .item .item-wrapper .item-content {
  width: 40%;
  padding: 64px;
}
@media (max-width: 992px) {
  .FTtX0-uPdYDGuvPH .item .item-wrapper .item-content {
    padding: 46px 22px;
    width: 100%;
  }
}
.FTtX0-uPdYDGuvPH .item .item-wrapper .item-content .item-title_1,
.FTtX0-uPdYDGuvPH .item .item-wrapper .item-content .item-title_2 {
  margin-bottom: 16px;
}
.FTtX0-uPdYDGuvPH .item .item-wrapper .item-content .item-text_1,
.FTtX0-uPdYDGuvPH .item .item-wrapper .item-content .item-text_2 {
  margin-bottom: 16px;
}
.FTtX0-uPdYDGuvPH .item .item-wrapper .item-content .opacity-section-btn .btn {
  margin-bottom: 0;
}
.FTtX0-uPdYDGuvPH .item .item-wrapper .item-img {
  width: 60%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 992px) {
  .FTtX0-uPdYDGuvPH .item .item-wrapper .item-img {
    width: 100%;
  }
}
.FTtX0-uPdYDGuvPH .item .item-wrapper .item-img img {
  height: 100%;
  border-radius: 0 !important;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .FTtX0-uPdYDGuvPH .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.FTtX0-uPdYDGuvPH .item .card_1 {
  background-color: #ffe33a;
}
.FTtX0-uPdYDGuvPH .item .card_2 {
  background-color: #ffe33a;
}
.FTtX0-uPdYDGuvPH .opacity-section-title {
  color: #212529;
}
.FTtX0-uPdYDGuvPH .item-title_1 {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdYDGuvPH .item-title_2 {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdYDGuvPH .item-text_1 {
  color: #f5a11b;
}
.FTtX0-uPdYDGuvPH .item-text_2 {
  color: #ff543d;
}
.FTtX0-uPdYDGuvPH .item-text_1,
.FTtX0-uPdYDGuvPH .opacity-section-btn {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdYDGuvPH .item-text_2,
.FTtX0-uPdYDGuvPH .opacity-section-btn {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdYCu0Zhs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe33a;
}
.FTtX0-uPdYCu0Zhs .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPdYCu0Zhs .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPdYCu0Zhs .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPdYCu0Zhs .content-wrapper {
    margin-bottom: 32px;
  }
}
.FTtX0-uPdYCu0Zhs .content-wrapper .opacity-desc {
  margin-bottom: 8px;
}
.FTtX0-uPdYCu0Zhs .content-wrapper .opacity-section-title {
  margin-bottom: 0;
}
.FTtX0-uPdYCu0Zhs .content-wrapper .opacity-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.FTtX0-uPdYCu0Zhs .items-wrapper {
  justify-content: center;
  margin: 0 -8px;
}
.FTtX0-uPdYCu0Zhs .item {
  padding: 0 8px;
  margin-bottom: 16px;
}
.FTtX0-uPdYCu0Zhs .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 100%;
}
@media (max-width: 992px) {
  .FTtX0-uPdYCu0Zhs .item .item-wrapper {
    padding: 20px 16px;
  }
}
.FTtX0-uPdYCu0Zhs .item .item-wrapper .card-box .title-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .FTtX0-uPdYCu0Zhs .item .item-wrapper .card-box .title-wrap {
    display: block;
    margin-bottom: 24px;
  }
}
.FTtX0-uPdYCu0Zhs .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .FTtX0-uPdYCu0Zhs .item .item-wrapper .card-box .title-wrap .item-title {
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPdYCu0Zhs .item .item-wrapper .card-box .title-wrap .icon-wrapper {
    margin-bottom: 16px;
  }
}
.FTtX0-uPdYCu0Zhs .item .item-wrapper .card-box .title-wrap .icon-wrapper .opacity-iconfont {
  display: inline-flex;
  font-size: 56px;
  background: linear-gradient(230deg, #c5a900, #ffe85f);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.FTtX0-uPdYCu0Zhs .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.FTtX0-uPdYCu0Zhs .item .card_1 {
  background: linear-gradient(315deg, #ffffff, #ffffff);
}
.FTtX0-uPdYCu0Zhs .item .card_2 {
  background: linear-gradient(315deg, #ffffff, #ffffff);
}
.FTtX0-uPdYCu0Zhs .item .card_3 {
  background: linear-gradient(315deg, #ffffff, #ffffff);
}
.FTtX0-uPdYCu0Zhs .btn-wrapper {
  margin-top: -6%;
}
.FTtX0-uPdYCu0Zhs .opacity-desc {
  color: #272b2e;
  text-align: center;
}
.FTtX0-uPdYCu0Zhs .opacity-section-title {
  color: #272b2e;
  text-align: center;
}
.FTtX0-uPdYCu0Zhs .item-title {
  color: #c5a900;
  text-align: center;
}
.FTtX0-uPdYCu0Zhs .item-text {
  color: #ffffff;
}
.FTtX0-uPdYCu0Zhs .item-text,
.FTtX0-uPdYCu0Zhs .icon-wrapper {
  color: #000000;
  text-align: center;
}
.FTtX0-uPdYGLCqOF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.FTtX0-uPdYGLCqOF .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPdYGLCqOF .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPdYGLCqOF .card-wrapper {
  background: #ffe33a;
}
@media (max-width: 767px) {
  .FTtX0-uPdYGLCqOF .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .FTtX0-uPdYGLCqOF .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .FTtX0-uPdYGLCqOF .card-wrapper {
    padding: 4rem;
  }
}
.FTtX0-uPdYGLCqOF .opacity-text,
.FTtX0-uPdYGLCqOF .opacity-section-btn {
  color: #000000;
}
.FTtX0-uPdYGLCqOF .card-title,
.FTtX0-uPdYGLCqOF .card-box {
  text-align: center;
  color: #000000;
}
.FTtX0-uPevN6pL3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPevN6pL3H .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container {
    padding: 0 26px;
  }
}
.FTtX0-uPevN6pL3H .row {
  justify-content: center;
}
.FTtX0-uPevN6pL3H .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
    width: 100%;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #dcd4cb;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .opacity-iconfont {
  margin-right: 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont,
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a .opacity-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.FTtX0-uPevN6pL3H .opacity-copy {
  margin-bottom: 0;
  color: #ffe33a;
  text-align: center;
}
.FTtX0-uPevN6pL3H .opacity-section-title {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .opacity-text {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list,
.FTtX0-uPevN6pL3H .nav-wrapper,
.FTtX0-uPevN6pL3H .social-wrapper {
  text-align: right;
}
.FTtX0-uPevN6pL3H .opacity-section-title,
.FTtX0-uPevN6pL3H .logo-wrapper {
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  position: relative !important;
}
.FTtX0-uPdqn7COUc .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.FTtX0-uPdqn7COUc .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.FTtX0-uPdqn7COUc .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .FTtX0-uPdqn7COUc .container {
    padding: 0 1rem;
  }
}
.FTtX0-uPdqn7COUc .menu-tite {
  background: #000000;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffe33a;
}
.FTtX0-uPdqn7COUc .nav-link {
  position: relative;
}
.FTtX0-uPdqn7COUc .nav-link:hover {
  color: #3f69ff !important;
}
.FTtX0-uPdqn7COUc .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.opened {
  transition: all 0.3s;
}
.FTtX0-uPdqn7COUc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.FTtX0-uPdqn7COUc .navbar .navbar-logo img {
  width: auto;
}
.FTtX0-uPdqn7COUc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar.collapsed {
  justify-content: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.FTtX0-uPdqn7COUc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .FTtX0-uPdqn7COUc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.FTtX0-uPdqn7COUc .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%;
}
.FTtX0-uPdqn7COUc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .FTtX0-uPdqn7COUc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .FTtX0-uPdqn7COUc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .FTtX0-uPdqn7COUc .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%;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .FTtX0-uPdqn7COUc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.FTtX0-uPdqn7COUc .navbar.navbar-short {
  min-height: 60px;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.FTtX0-uPdqn7COUc .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;
}
.FTtX0-uPdqn7COUc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.FTtX0-uPdqn7COUc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.FTtX0-uPdqn7COUc .dropdown-item:hover,
.FTtX0-uPdqn7COUc .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.FTtX0-uPdqn7COUc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.FTtX0-uPdqn7COUc .dropdown-menu,
.FTtX0-uPdqn7COUc .navbar.opened {
  background: #ffffff !important;
}
.FTtX0-uPdqn7COUc .nav-item:focus,
.FTtX0-uPdqn7COUc .nav-link:focus {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-logo a {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown-item.active,
.FTtX0-uPdqn7COUc .dropdown-item:active {
  background-color: transparent;
}
.FTtX0-uPdqn7COUc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.FTtX0-uPdqn7COUc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.FTtX0-uPdqn7COUc ul.navbar-nav {
  flex-wrap: wrap;
}
.FTtX0-uPdqn7COUc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.FTtX0-uPdqn7COUc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  padding: 0 1rem;
}
.FTtX0-uPdqn7COUc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FTtX0-uPdqn7COUc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .FTtX0-uPdqn7COUc .navbar {
    height: 70px;
  }
  .FTtX0-uPdqn7COUc .navbar.opened {
    height: auto;
  }
  .FTtX0-uPdqn7COUc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.FTtX0-uPeudbpTl5 {
  background-color: #ffe33a;
}
@media (max-width: 991px) {
  .FTtX0-uPeudbpTl5 .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .FTtX0-uPeudbpTl5 .image-wrapper {
    width: 49%;
  }
}
.FTtX0-uPeudbpTl5 .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .FTtX0-uPeudbpTl5 .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .FTtX0-uPeudbpTl5 .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .FTtX0-uPeudbpTl5 .text-wrapper p {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .FTtX0-uPeudbpTl5 .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .FTtX0-uPeudbpTl5 .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
    width: 100%;
  }
  .FTtX0-uPeudbpTl5 .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
    width: 100%;
  }
}
.FTtX0-uPeudbpTl5 .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
  top: 1rem;
}
.FTtX0-uPeudbpTl5 .item-btn:hover {
  opacity: 0.8;
}
.FTtX0-uPeudbpTl5 .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.FTtX0-uPeudbpTl5 .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .FTtX0-uPeudbpTl5 .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
    display: none;
  }
  .FTtX0-uPeudbpTl5 .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .FTtX0-uPeudbpTl5 .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .FTtX0-uPeudbpTl5 .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .FTtX0-uPeudbpTl5 .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPeudbpTl5 .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .FTtX0-uPeudbpTl5 .opacity-section-title {
    letter-spacing: -1px;
  }
}
.FTtX0-uPeudbpTl5 .opacity-section-title a {
  color: #9b9ba5;
}
.FTtX0-uPeudbpTl5 P {
  color: #000000;
}
.FTtX0-uPeudbpTl5 .opacity-section-subtitle {
  color: #9b9ba5;
}
.FTtX0-uPeudbpTl5 .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPeudbpTl5 .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPeudbpTl5 .opacity-section-title {
  text-align: center;
}
.FTtX0-uPe1ntX4LE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.FTtX0-uPe1ntX4LE .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe1ntX4LE .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe1ntX4LE .opacity-description {
  text-align: left;
}
.FTtX0-uPe1ntX4LE .item-wrapper {
  background: #ffe33a;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .FTtX0-uPe1ntX4LE .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .FTtX0-uPe1ntX4LE .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
.FTtX0-uPe1ntX4LE .card-title,
.FTtX0-uPe1ntX4LE .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe1ntX4LE .card-text {
  color: #000000;
}
.FTtX0-uPe1ntX4LE .opacity-section-title {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe1ntX4LE .opacity-number {
  color: #9fe870;
}
.FTtX0-uPe1ntX4LE .opacity-text,
.FTtX0-uPe1ntX4LE .opacity-section-btn {
  text-align: center;
}
.FTtX0-uPe1ntX4LE .card-text,
.FTtX0-uPe1ntX4LE .item .opacity-section-btn {
  text-align: center;
}
.FTtX0-uPe1ntX4LE .opacity-section-btn {
  margin-top: 1rem;
}
.FTtX0-uPe1ntX4LE .image-wrapper {
  margin-bottom: 0rem;
  padding: 0rem;
}
@media (max-width: 767px) {
  .FTtX0-uPe1ntX4LE .image-wrapper {
    padding: 0rem 0rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .FTtX0-uPe1ntX4LE .image-wrapper {
    padding: 0rem 0rem;
    margin-bottom: 0rem;
  }
}
.FTtX0-uPe1ntX4LE .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.FTtX0-uPe1ntX4LE .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .FTtX0-uPe1ntX4LE .item-mb {
    margin-bottom: 1rem;
  }
}
.FTtX0-uPe1ntX4LE .card-title {
  text-align: left;
}
.FTtX0-uPe1ntX4LE .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.FTtX0-uPe1ntX4LE .item-content .item-footer {
  margin-top: auto;
}
.FTtX0-uPe1z20BSg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffe33a;
}
.FTtX0-uPe1z20BSg .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe1z20BSg .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe1z20BSg .row-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .FTtX0-uPe1z20BSg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.FTtX0-uPe1z20BSg .row {
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .FTtX0-uPe1z20BSg .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .FTtX0-uPe1z20BSg .text-wrapper {
    padding: 0 2rem;
  }
}
.FTtX0-uPe1z20BSg .opacity-section-title {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe1z20BSg .opacity-text,
.FTtX0-uPe1z20BSg .opacity-section-btn {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe1z20BSg img {
  width: 100%;
  height: 100%;
}
.FTtX0-uPe1GqJyi5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.FTtX0-uPe1GqJyi5 .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe1GqJyi5 .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe1GqJyi5 .opacity-description {
  text-align: left;
}
.FTtX0-uPe1GqJyi5 .item-wrapper {
  background: #ffe33a;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .FTtX0-uPe1GqJyi5 .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .FTtX0-uPe1GqJyi5 .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
.FTtX0-uPe1GqJyi5 .card-title,
.FTtX0-uPe1GqJyi5 .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe1GqJyi5 .card-text {
  color: #000000;
}
.FTtX0-uPe1GqJyi5 .opacity-section-title {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe1GqJyi5 .opacity-number {
  color: #9fe870;
}
.FTtX0-uPe1GqJyi5 .opacity-text,
.FTtX0-uPe1GqJyi5 .opacity-section-btn {
  text-align: center;
}
.FTtX0-uPe1GqJyi5 .card-text,
.FTtX0-uPe1GqJyi5 .item .opacity-section-btn {
  text-align: center;
}
.FTtX0-uPe1GqJyi5 .opacity-section-btn {
  margin-top: 1rem;
}
.FTtX0-uPe1GqJyi5 .image-wrapper {
  margin-bottom: 0rem;
  padding: 0rem;
}
@media (max-width: 767px) {
  .FTtX0-uPe1GqJyi5 .image-wrapper {
    padding: 0rem 0rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .FTtX0-uPe1GqJyi5 .image-wrapper {
    padding: 0rem 0rem;
    margin-bottom: 0rem;
  }
}
.FTtX0-uPe1GqJyi5 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.FTtX0-uPe1GqJyi5 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .FTtX0-uPe1GqJyi5 .item-mb {
    margin-bottom: 1rem;
  }
}
.FTtX0-uPe1GqJyi5 .card-title {
  text-align: left;
}
.FTtX0-uPe1GqJyi5 .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.FTtX0-uPe1GqJyi5 .item-content .item-footer {
  margin-top: auto;
}
.FTtX0-uPe1J9GysK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffe33a;
}
.FTtX0-uPe1J9GysK .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe1J9GysK .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe1J9GysK .row-reverse {
  flex-direction: row-reverse;
}
.FTtX0-uPe1J9GysK .row {
  flex-direction: row-reverse;
}
.FTtX0-uPe1J9GysK .row-reverse {
  flex-direction: row;
}
@media (max-width: 991px) {
  .FTtX0-uPe1J9GysK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.FTtX0-uPe1J9GysK .row {
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .FTtX0-uPe1J9GysK .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .FTtX0-uPe1J9GysK .text-wrapper {
    padding: 0 2rem;
  }
}
.FTtX0-uPe1J9GysK .opacity-section-title {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe1J9GysK .opacity-text,
.FTtX0-uPe1J9GysK .opacity-section-btn {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe1J9GysK img {
  width: 100%;
  height: 100%;
}
.FTtX0-uPevN6pL3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPevN6pL3H .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container {
    padding: 0 26px;
  }
}
.FTtX0-uPevN6pL3H .row {
  justify-content: center;
}
.FTtX0-uPevN6pL3H .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
    width: 100%;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #dcd4cb;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .opacity-iconfont {
  margin-right: 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont,
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a .opacity-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.FTtX0-uPevN6pL3H .opacity-copy {
  margin-bottom: 0;
  color: #ffe33a;
  text-align: center;
}
.FTtX0-uPevN6pL3H .opacity-section-title {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .opacity-text {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list,
.FTtX0-uPevN6pL3H .nav-wrapper,
.FTtX0-uPevN6pL3H .social-wrapper {
  text-align: right;
}
.FTtX0-uPevN6pL3H .opacity-section-title,
.FTtX0-uPevN6pL3H .logo-wrapper {
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  position: relative !important;
}
.FTtX0-uPdqn7COUc .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.FTtX0-uPdqn7COUc .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.FTtX0-uPdqn7COUc .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .FTtX0-uPdqn7COUc .container {
    padding: 0 1rem;
  }
}
.FTtX0-uPdqn7COUc .menu-tite {
  background: #000000;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffe33a;
}
.FTtX0-uPdqn7COUc .nav-link {
  position: relative;
}
.FTtX0-uPdqn7COUc .nav-link:hover {
  color: #3f69ff !important;
}
.FTtX0-uPdqn7COUc .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.opened {
  transition: all 0.3s;
}
.FTtX0-uPdqn7COUc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.FTtX0-uPdqn7COUc .navbar .navbar-logo img {
  width: auto;
}
.FTtX0-uPdqn7COUc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar.collapsed {
  justify-content: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.FTtX0-uPdqn7COUc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .FTtX0-uPdqn7COUc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.FTtX0-uPdqn7COUc .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%;
}
.FTtX0-uPdqn7COUc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .FTtX0-uPdqn7COUc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .FTtX0-uPdqn7COUc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .FTtX0-uPdqn7COUc .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%;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .FTtX0-uPdqn7COUc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.FTtX0-uPdqn7COUc .navbar.navbar-short {
  min-height: 60px;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.FTtX0-uPdqn7COUc .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;
}
.FTtX0-uPdqn7COUc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.FTtX0-uPdqn7COUc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.FTtX0-uPdqn7COUc .dropdown-item:hover,
.FTtX0-uPdqn7COUc .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.FTtX0-uPdqn7COUc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.FTtX0-uPdqn7COUc .dropdown-menu,
.FTtX0-uPdqn7COUc .navbar.opened {
  background: #ffffff !important;
}
.FTtX0-uPdqn7COUc .nav-item:focus,
.FTtX0-uPdqn7COUc .nav-link:focus {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-logo a {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown-item.active,
.FTtX0-uPdqn7COUc .dropdown-item:active {
  background-color: transparent;
}
.FTtX0-uPdqn7COUc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.FTtX0-uPdqn7COUc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.FTtX0-uPdqn7COUc ul.navbar-nav {
  flex-wrap: wrap;
}
.FTtX0-uPdqn7COUc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.FTtX0-uPdqn7COUc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  padding: 0 1rem;
}
.FTtX0-uPdqn7COUc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FTtX0-uPdqn7COUc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .FTtX0-uPdqn7COUc .navbar {
    height: 70px;
  }
  .FTtX0-uPdqn7COUc .navbar.opened {
    height: auto;
  }
  .FTtX0-uPdqn7COUc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.FTtX0-uPe27zzIAg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffe33a);
}
@media (max-width: 1400px) {
  .FTtX0-uPe27zzIAg .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .FTtX0-uPe27zzIAg .row {
    text-align: center!important;
  }
}
.FTtX0-uPe27zzIAg .content-container {
  width: 100%;
  padding: 3.5rem 2.5rem;
  border-radius: 2rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffe964);
  background: linear-gradient(90deg, #ffffff, #ffe964) !important;
}
@media (max-width: 767px) {
  .FTtX0-uPe27zzIAg .content-container {
    padding: 1rem 0rem;
    padding-top: 2rem;
  }
}
.FTtX0-uPe27zzIAg img {
  border-radius: 2rem;
  height: 100%;
  object-fit: cover;
}
.FTtX0-uPe27zzIAg .opacity-section-title {
  color: #ffffff;
}
@media (max-width: 575px) {
  .FTtX0-uPe27zzIAg .opacity-section-title {
    text-align: center;
  }
}
.FTtX0-uPe27zzIAg .opacity-text {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe27zzIAg .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe27zzIAg .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe27zzIAg .opacity-section-title,
.FTtX0-uPe27zzIAg .opacity-section-btn {
  color: #000000;
  text-align: center;
}
.FTtX0-uPevN6pL3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPevN6pL3H .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container {
    padding: 0 26px;
  }
}
.FTtX0-uPevN6pL3H .row {
  justify-content: center;
}
.FTtX0-uPevN6pL3H .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
    width: 100%;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #dcd4cb;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .opacity-iconfont {
  margin-right: 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont,
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a .opacity-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.FTtX0-uPevN6pL3H .opacity-copy {
  margin-bottom: 0;
  color: #ffe33a;
  text-align: center;
}
.FTtX0-uPevN6pL3H .opacity-section-title {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .opacity-text {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list,
.FTtX0-uPevN6pL3H .nav-wrapper,
.FTtX0-uPevN6pL3H .social-wrapper {
  text-align: right;
}
.FTtX0-uPevN6pL3H .opacity-section-title,
.FTtX0-uPevN6pL3H .logo-wrapper {
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  position: relative !important;
}
.FTtX0-uPdqn7COUc .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.FTtX0-uPdqn7COUc .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.FTtX0-uPdqn7COUc .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .FTtX0-uPdqn7COUc .container {
    padding: 0 1rem;
  }
}
.FTtX0-uPdqn7COUc .menu-tite {
  background: #000000;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffe33a;
}
.FTtX0-uPdqn7COUc .nav-link {
  position: relative;
}
.FTtX0-uPdqn7COUc .nav-link:hover {
  color: #3f69ff !important;
}
.FTtX0-uPdqn7COUc .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.opened {
  transition: all 0.3s;
}
.FTtX0-uPdqn7COUc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.FTtX0-uPdqn7COUc .navbar .navbar-logo img {
  width: auto;
}
.FTtX0-uPdqn7COUc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar.collapsed {
  justify-content: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.FTtX0-uPdqn7COUc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .FTtX0-uPdqn7COUc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.FTtX0-uPdqn7COUc .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%;
}
.FTtX0-uPdqn7COUc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .FTtX0-uPdqn7COUc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .FTtX0-uPdqn7COUc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .FTtX0-uPdqn7COUc .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%;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .FTtX0-uPdqn7COUc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.FTtX0-uPdqn7COUc .navbar.navbar-short {
  min-height: 60px;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.FTtX0-uPdqn7COUc .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;
}
.FTtX0-uPdqn7COUc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.FTtX0-uPdqn7COUc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.FTtX0-uPdqn7COUc .dropdown-item:hover,
.FTtX0-uPdqn7COUc .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.FTtX0-uPdqn7COUc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.FTtX0-uPdqn7COUc .dropdown-menu,
.FTtX0-uPdqn7COUc .navbar.opened {
  background: #ffffff !important;
}
.FTtX0-uPdqn7COUc .nav-item:focus,
.FTtX0-uPdqn7COUc .nav-link:focus {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-logo a {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown-item.active,
.FTtX0-uPdqn7COUc .dropdown-item:active {
  background-color: transparent;
}
.FTtX0-uPdqn7COUc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.FTtX0-uPdqn7COUc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.FTtX0-uPdqn7COUc ul.navbar-nav {
  flex-wrap: wrap;
}
.FTtX0-uPdqn7COUc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.FTtX0-uPdqn7COUc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  padding: 0 1rem;
}
.FTtX0-uPdqn7COUc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FTtX0-uPdqn7COUc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .FTtX0-uPdqn7COUc .navbar {
    height: 70px;
  }
  .FTtX0-uPdqn7COUc .navbar.opened {
    height: auto;
  }
  .FTtX0-uPdqn7COUc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.FTtX0-uPe2qvhYDX {
  background-color: #ffffff;
}
.FTtX0-uPe2qvhYDX .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe2qvhYDX .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe2qvhYDX .row {
  justify-content: center;
}
.FTtX0-uPe2qvhYDX .form-wrapper {
  background-color: #ffe33a;
  padding: 20px 50px 50px;
  box-shadow: 0 19px 45px 0 #0000001a;
}
@media (max-width: 992px) {
  .FTtX0-uPe2qvhYDX .form-wrapper {
    padding: 20px;
  }
}
.FTtX0-uPe2qvhYDX .form-wrapper .line-wrap {
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .FTtX0-uPe2qvhYDX .form-wrapper .line-wrap {
    height: 4px;
    margin-bottom: 20px;
  }
}
.FTtX0-uPe2qvhYDX .form-wrapper .opacity-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .FTtX0-uPe2qvhYDX .form-wrapper .opacity-section-title {
    margin-bottom: 20px;
  }
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row {
  margin: 0;
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
  padding: 0;
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group .form-control {
  background-color: #ffffff;
  padding: 27px 32px;
  font-weight: 400;
  box-shadow: none;
  border: none !important;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group .form-control {
    padding: 12px 16px;
  }
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  opacity: .3;
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group .form-control:hover,
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
@media (max-width: 992px) {
  .FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group textarea {
    padding: 24px 16px;
  }
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .opacity-section-btn {
  width: 100%;
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 992px) {
  .FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .opacity-section-btn {
    margin-top: 0;
  }
}
.FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .opacity-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPe2qvhYDX .form-wrapper .form-wrap .dragArea.row .opacity-section-btn .btn {
    margin-top: 0;
  }
}
.FTtX0-uPe2qvhYDX .opacity-section-title {
  color: #000000;
  text-align: center;
}
.FTtX0-uPe2qvhYDX label {
  color: #000c3f;
}
.FTtX0-uPevN6pL3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPevN6pL3H .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container {
    padding: 0 26px;
  }
}
.FTtX0-uPevN6pL3H .row {
  justify-content: center;
}
.FTtX0-uPevN6pL3H .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
    width: 100%;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #dcd4cb;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .opacity-iconfont {
  margin-right: 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont,
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a .opacity-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.FTtX0-uPevN6pL3H .opacity-copy {
  margin-bottom: 0;
  color: #ffe33a;
  text-align: center;
}
.FTtX0-uPevN6pL3H .opacity-section-title {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .opacity-text {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list,
.FTtX0-uPevN6pL3H .nav-wrapper,
.FTtX0-uPevN6pL3H .social-wrapper {
  text-align: right;
}
.FTtX0-uPevN6pL3H .opacity-section-title,
.FTtX0-uPevN6pL3H .logo-wrapper {
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  position: relative !important;
}
.FTtX0-uPdqn7COUc .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.FTtX0-uPdqn7COUc .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .FTtX0-uPdqn7COUc .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.FTtX0-uPdqn7COUc .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .FTtX0-uPdqn7COUc .container {
    padding: 0 1rem;
  }
}
.FTtX0-uPdqn7COUc .menu-tite {
  background: #000000;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffe33a;
}
.FTtX0-uPdqn7COUc .nav-link {
  position: relative;
}
.FTtX0-uPdqn7COUc .nav-link:hover {
  color: #3f69ff !important;
}
.FTtX0-uPdqn7COUc .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.opened {
  transition: all 0.3s;
}
.FTtX0-uPdqn7COUc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.FTtX0-uPdqn7COUc .navbar .navbar-logo img {
  width: auto;
}
.FTtX0-uPdqn7COUc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar.collapsed {
  justify-content: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.FTtX0-uPdqn7COUc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .FTtX0-uPdqn7COUc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.FTtX0-uPdqn7COUc .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%;
}
.FTtX0-uPdqn7COUc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.FTtX0-uPdqn7COUc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .FTtX0-uPdqn7COUc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .FTtX0-uPdqn7COUc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .FTtX0-uPdqn7COUc .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%;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .FTtX0-uPdqn7COUc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .FTtX0-uPdqn7COUc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .FTtX0-uPdqn7COUc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.FTtX0-uPdqn7COUc .navbar.navbar-short {
  min-height: 60px;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.FTtX0-uPdqn7COUc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.FTtX0-uPdqn7COUc .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;
}
.FTtX0-uPdqn7COUc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.FTtX0-uPdqn7COUc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.FTtX0-uPdqn7COUc .dropdown-item:hover,
.FTtX0-uPdqn7COUc .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.FTtX0-uPdqn7COUc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.FTtX0-uPdqn7COUc .dropdown-menu,
.FTtX0-uPdqn7COUc .navbar.opened {
  background: #ffffff !important;
}
.FTtX0-uPdqn7COUc .nav-item:focus,
.FTtX0-uPdqn7COUc .nav-link:focus {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.FTtX0-uPdqn7COUc .dropdown .dropdown-menu .dropdown-item .opacity-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.FTtX0-uPdqn7COUc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.FTtX0-uPdqn7COUc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.FTtX0-uPdqn7COUc .navbar-brand .navbar-logo a {
  outline: none;
}
.FTtX0-uPdqn7COUc .dropdown-item.active,
.FTtX0-uPdqn7COUc .dropdown-item:active {
  background-color: transparent;
}
.FTtX0-uPdqn7COUc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.FTtX0-uPdqn7COUc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.FTtX0-uPdqn7COUc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.FTtX0-uPdqn7COUc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.FTtX0-uPdqn7COUc ul.navbar-nav {
  flex-wrap: wrap;
}
.FTtX0-uPdqn7COUc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.FTtX0-uPdqn7COUc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPdqn7COUc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.FTtX0-uPdqn7COUc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPdqn7COUc .navbar-dropdown {
  padding: 0 1rem;
}
.FTtX0-uPdqn7COUc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FTtX0-uPdqn7COUc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .FTtX0-uPdqn7COUc .navbar {
    height: 70px;
  }
  .FTtX0-uPdqn7COUc .navbar.opened {
    height: auto;
  }
  .FTtX0-uPdqn7COUc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.FTtX0-uPe3SwsZdV {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.FTtX0-uPe3SwsZdV .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe3SwsZdV .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPe3SwsZdV .display-1 {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe3SwsZdV .display-1 {
    font-size: 2.4rem;
  }
}
.FTtX0-uPe3SwsZdV a {
  font-weight: bold;
}
.FTtX0-uPe3SwsZdV .opacity-section-title {
  text-align: center;
  color: #151515;
  background: #ffe33a;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe3SwsZdV .opacity-section-title {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe3SwsZdV .opacity-section-title {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe3SwsZdV .opacity-text {
  text-align: center;
  color: #151515;
  background: #151515;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe3SwsZdV .opacity-text {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe3SwsZdV .opacity-text {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe3SwsZdV .opacity-section-subtitle {
  text-align: center;
  color: #af9fff;
  background: #151515;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe3SwsZdV .opacity-section-subtitle {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe3SwsZdV .opacity-section-subtitle {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe3SwsZdV .opacity-text,
.FTtX0-uPe3SwsZdV .opacity-section-btn {
  text-align: center;
  color: #af9fff;
}
.FTtX0-uPe41rusYA {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.FTtX0-uPe41rusYA .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe41rusYA .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe41rusYA .opacity-text,
.FTtX0-uPe41rusYA .opacity-section-btn {
  text-align: left;
}
.FTtX0-uPevN6pL3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPevN6pL3H .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container {
    padding: 0 26px;
  }
}
.FTtX0-uPevN6pL3H .row {
  justify-content: center;
}
.FTtX0-uPevN6pL3H .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
    width: 100%;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #dcd4cb;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .opacity-iconfont {
  margin-right: 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont,
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a .opacity-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.FTtX0-uPevN6pL3H .opacity-copy {
  margin-bottom: 0;
  color: #ffe33a;
  text-align: center;
}
.FTtX0-uPevN6pL3H .opacity-section-title {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .opacity-text {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list,
.FTtX0-uPevN6pL3H .nav-wrapper,
.FTtX0-uPevN6pL3H .social-wrapper {
  text-align: right;
}
.FTtX0-uPevN6pL3H .opacity-section-title,
.FTtX0-uPevN6pL3H .logo-wrapper {
  text-align: center;
}
.FTtX0-uPe4p5vDBQ .navbar-dropdown {
  position: relative !important;
}
.FTtX0-uPe4p5vDBQ .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .FTtX0-uPe4p5vDBQ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.FTtX0-uPe4p5vDBQ .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4p5vDBQ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.FTtX0-uPe4p5vDBQ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .FTtX0-uPe4p5vDBQ .container {
    padding: 0 1rem;
  }
}
.FTtX0-uPe4p5vDBQ .menu-tite {
  background: #000000;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffe33a;
}
.FTtX0-uPe4p5vDBQ .nav-link {
  position: relative;
}
.FTtX0-uPe4p5vDBQ .nav-link:hover {
  color: #3f69ff !important;
}
.FTtX0-uPe4p5vDBQ .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.FTtX0-uPe4p5vDBQ .navbar.opened {
  transition: all 0.3s;
}
.FTtX0-uPe4p5vDBQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.FTtX0-uPe4p5vDBQ .navbar .navbar-logo img {
  width: auto;
}
.FTtX0-uPe4p5vDBQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.FTtX0-uPe4p5vDBQ .navbar.collapsed {
  justify-content: center;
}
.FTtX0-uPe4p5vDBQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.FTtX0-uPe4p5vDBQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .FTtX0-uPe4p5vDBQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.FTtX0-uPe4p5vDBQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.FTtX0-uPe4p5vDBQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.FTtX0-uPe4p5vDBQ .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%;
}
.FTtX0-uPe4p5vDBQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.FTtX0-uPe4p5vDBQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.FTtX0-uPe4p5vDBQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .FTtX0-uPe4p5vDBQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .FTtX0-uPe4p5vDBQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .FTtX0-uPe4p5vDBQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .FTtX0-uPe4p5vDBQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .FTtX0-uPe4p5vDBQ .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%;
  }
  .FTtX0-uPe4p5vDBQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .FTtX0-uPe4p5vDBQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .FTtX0-uPe4p5vDBQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .FTtX0-uPe4p5vDBQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .FTtX0-uPe4p5vDBQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .FTtX0-uPe4p5vDBQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.FTtX0-uPe4p5vDBQ .navbar.navbar-short {
  min-height: 60px;
}
.FTtX0-uPe4p5vDBQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.FTtX0-uPe4p5vDBQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.FTtX0-uPe4p5vDBQ .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;
}
.FTtX0-uPe4p5vDBQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.FTtX0-uPe4p5vDBQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.FTtX0-uPe4p5vDBQ .dropdown-item:hover,
.FTtX0-uPe4p5vDBQ .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.FTtX0-uPe4p5vDBQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.FTtX0-uPe4p5vDBQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.FTtX0-uPe4p5vDBQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.FTtX0-uPe4p5vDBQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.FTtX0-uPe4p5vDBQ .dropdown-menu,
.FTtX0-uPe4p5vDBQ .navbar.opened {
  background: #ffffff !important;
}
.FTtX0-uPe4p5vDBQ .nav-item:focus,
.FTtX0-uPe4p5vDBQ .nav-link:focus {
  outline: none;
}
.FTtX0-uPe4p5vDBQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPe4p5vDBQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.FTtX0-uPe4p5vDBQ .dropdown .dropdown-menu .dropdown-item .opacity-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.FTtX0-uPe4p5vDBQ .dropdown .dropdown-menu .dropdown-item .opacity-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPe4p5vDBQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.FTtX0-uPe4p5vDBQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.FTtX0-uPe4p5vDBQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.FTtX0-uPe4p5vDBQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.FTtX0-uPe4p5vDBQ .navbar-brand .navbar-logo a {
  outline: none;
}
.FTtX0-uPe4p5vDBQ .dropdown-item.active,
.FTtX0-uPe4p5vDBQ .dropdown-item:active {
  background-color: transparent;
}
.FTtX0-uPe4p5vDBQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.FTtX0-uPe4p5vDBQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.FTtX0-uPe4p5vDBQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.FTtX0-uPe4p5vDBQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.FTtX0-uPe4p5vDBQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.FTtX0-uPe4p5vDBQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.FTtX0-uPe4p5vDBQ ul.navbar-nav {
  flex-wrap: wrap;
}
.FTtX0-uPe4p5vDBQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.FTtX0-uPe4p5vDBQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.FTtX0-uPe4p5vDBQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.FTtX0-uPe4p5vDBQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.FTtX0-uPe4p5vDBQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPe4p5vDBQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPe4p5vDBQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.FTtX0-uPe4p5vDBQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPe4p5vDBQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.FTtX0-uPe4p5vDBQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.FTtX0-uPe4p5vDBQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPe4p5vDBQ .navbar-dropdown {
  padding: 0 1rem;
}
.FTtX0-uPe4p5vDBQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FTtX0-uPe4p5vDBQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .FTtX0-uPe4p5vDBQ .navbar {
    height: 70px;
  }
  .FTtX0-uPe4p5vDBQ .navbar.opened {
    height: auto;
  }
  .FTtX0-uPe4p5vDBQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.FTtX0-uPe4p6yHAd {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.FTtX0-uPe4p6yHAd .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe4p6yHAd .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPe4p6yHAd .display-1 {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4p6yHAd .display-1 {
    font-size: 2.4rem;
  }
}
.FTtX0-uPe4p6yHAd a {
  font-weight: bold;
}
.FTtX0-uPe4p6yHAd .opacity-section-title {
  text-align: center;
  color: #151515;
  background: #ffe33a;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4p6yHAd .opacity-section-title {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4p6yHAd .opacity-section-title {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe4p6yHAd .opacity-text {
  text-align: center;
  color: #151515;
  background: #151515;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4p6yHAd .opacity-text {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4p6yHAd .opacity-text {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe4p6yHAd .opacity-section-subtitle {
  text-align: center;
  color: #af9fff;
  background: #151515;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4p6yHAd .opacity-section-subtitle {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4p6yHAd .opacity-section-subtitle {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe4p6yHAd .opacity-text,
.FTtX0-uPe4p6yHAd .opacity-section-btn {
  text-align: center;
  color: #af9fff;
}
.FTtX0-uPe4p7ukoJ {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.FTtX0-uPe4p7ukoJ .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe4p7ukoJ .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe4p7ukoJ .opacity-text,
.FTtX0-uPe4p7ukoJ .opacity-section-btn {
  text-align: left;
}
.FTtX0-uPevN6pL3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPevN6pL3H .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container {
    padding: 0 26px;
  }
}
.FTtX0-uPevN6pL3H .row {
  justify-content: center;
}
.FTtX0-uPevN6pL3H .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
    width: 100%;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #dcd4cb;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .opacity-iconfont {
  margin-right: 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont,
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a .opacity-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.FTtX0-uPevN6pL3H .opacity-copy {
  margin-bottom: 0;
  color: #ffe33a;
  text-align: center;
}
.FTtX0-uPevN6pL3H .opacity-section-title {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .opacity-text {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list,
.FTtX0-uPevN6pL3H .nav-wrapper,
.FTtX0-uPevN6pL3H .social-wrapper {
  text-align: right;
}
.FTtX0-uPevN6pL3H .opacity-section-title,
.FTtX0-uPevN6pL3H .logo-wrapper {
  text-align: center;
}
.FTtX0-uPe4ruzuqP .navbar-dropdown {
  position: relative !important;
}
.FTtX0-uPe4ruzuqP .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .FTtX0-uPe4ruzuqP .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.FTtX0-uPe4ruzuqP .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4ruzuqP .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.FTtX0-uPe4ruzuqP .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .FTtX0-uPe4ruzuqP .container {
    padding: 0 1rem;
  }
}
.FTtX0-uPe4ruzuqP .menu-tite {
  background: #000000;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffe33a;
}
.FTtX0-uPe4ruzuqP .nav-link {
  position: relative;
}
.FTtX0-uPe4ruzuqP .nav-link:hover {
  color: #3f69ff !important;
}
.FTtX0-uPe4ruzuqP .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.FTtX0-uPe4ruzuqP .navbar.opened {
  transition: all 0.3s;
}
.FTtX0-uPe4ruzuqP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.FTtX0-uPe4ruzuqP .navbar .navbar-logo img {
  width: auto;
}
.FTtX0-uPe4ruzuqP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.FTtX0-uPe4ruzuqP .navbar.collapsed {
  justify-content: center;
}
.FTtX0-uPe4ruzuqP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.FTtX0-uPe4ruzuqP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .FTtX0-uPe4ruzuqP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.FTtX0-uPe4ruzuqP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.FTtX0-uPe4ruzuqP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.FTtX0-uPe4ruzuqP .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%;
}
.FTtX0-uPe4ruzuqP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.FTtX0-uPe4ruzuqP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.FTtX0-uPe4ruzuqP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .FTtX0-uPe4ruzuqP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .FTtX0-uPe4ruzuqP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .FTtX0-uPe4ruzuqP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .FTtX0-uPe4ruzuqP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .FTtX0-uPe4ruzuqP .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%;
  }
  .FTtX0-uPe4ruzuqP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .FTtX0-uPe4ruzuqP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .FTtX0-uPe4ruzuqP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .FTtX0-uPe4ruzuqP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .FTtX0-uPe4ruzuqP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .FTtX0-uPe4ruzuqP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.FTtX0-uPe4ruzuqP .navbar.navbar-short {
  min-height: 60px;
}
.FTtX0-uPe4ruzuqP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.FTtX0-uPe4ruzuqP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.FTtX0-uPe4ruzuqP .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;
}
.FTtX0-uPe4ruzuqP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.FTtX0-uPe4ruzuqP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.FTtX0-uPe4ruzuqP .dropdown-item:hover,
.FTtX0-uPe4ruzuqP .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.FTtX0-uPe4ruzuqP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.FTtX0-uPe4ruzuqP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.FTtX0-uPe4ruzuqP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.FTtX0-uPe4ruzuqP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.FTtX0-uPe4ruzuqP .dropdown-menu,
.FTtX0-uPe4ruzuqP .navbar.opened {
  background: #ffffff !important;
}
.FTtX0-uPe4ruzuqP .nav-item:focus,
.FTtX0-uPe4ruzuqP .nav-link:focus {
  outline: none;
}
.FTtX0-uPe4ruzuqP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPe4ruzuqP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.FTtX0-uPe4ruzuqP .dropdown .dropdown-menu .dropdown-item .opacity-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.FTtX0-uPe4ruzuqP .dropdown .dropdown-menu .dropdown-item .opacity-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPe4ruzuqP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.FTtX0-uPe4ruzuqP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.FTtX0-uPe4ruzuqP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.FTtX0-uPe4ruzuqP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.FTtX0-uPe4ruzuqP .navbar-brand .navbar-logo a {
  outline: none;
}
.FTtX0-uPe4ruzuqP .dropdown-item.active,
.FTtX0-uPe4ruzuqP .dropdown-item:active {
  background-color: transparent;
}
.FTtX0-uPe4ruzuqP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.FTtX0-uPe4ruzuqP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.FTtX0-uPe4ruzuqP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.FTtX0-uPe4ruzuqP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.FTtX0-uPe4ruzuqP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.FTtX0-uPe4ruzuqP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.FTtX0-uPe4ruzuqP ul.navbar-nav {
  flex-wrap: wrap;
}
.FTtX0-uPe4ruzuqP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.FTtX0-uPe4ruzuqP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.FTtX0-uPe4ruzuqP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.FTtX0-uPe4ruzuqP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.FTtX0-uPe4ruzuqP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPe4ruzuqP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPe4ruzuqP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.FTtX0-uPe4ruzuqP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPe4ruzuqP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.FTtX0-uPe4ruzuqP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.FTtX0-uPe4ruzuqP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPe4ruzuqP .navbar-dropdown {
  padding: 0 1rem;
}
.FTtX0-uPe4ruzuqP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FTtX0-uPe4ruzuqP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .FTtX0-uPe4ruzuqP .navbar {
    height: 70px;
  }
  .FTtX0-uPe4ruzuqP .navbar.opened {
    height: auto;
  }
  .FTtX0-uPe4ruzuqP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.FTtX0-uPe4rvFdQk {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.FTtX0-uPe4rvFdQk .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe4rvFdQk .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPe4rvFdQk .display-1 {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4rvFdQk .display-1 {
    font-size: 2.4rem;
  }
}
.FTtX0-uPe4rvFdQk a {
  font-weight: bold;
}
.FTtX0-uPe4rvFdQk .opacity-section-title {
  text-align: center;
  color: #151515;
  background: #ffe33a;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4rvFdQk .opacity-section-title {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4rvFdQk .opacity-section-title {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe4rvFdQk .opacity-text {
  text-align: center;
  color: #151515;
  background: #151515;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4rvFdQk .opacity-text {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4rvFdQk .opacity-text {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe4rvFdQk .opacity-section-subtitle {
  text-align: center;
  color: #af9fff;
  background: #151515;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4rvFdQk .opacity-section-subtitle {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4rvFdQk .opacity-section-subtitle {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe4rvFdQk .opacity-text,
.FTtX0-uPe4rvFdQk .opacity-section-btn {
  text-align: center;
  color: #af9fff;
}
.FTtX0-uPe4rwcnNk {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.FTtX0-uPe4rwcnNk .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe4rwcnNk .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe4rwcnNk .opacity-text,
.FTtX0-uPe4rwcnNk .opacity-section-btn {
  text-align: left;
}
.FTtX0-uPevN6pL3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPevN6pL3H .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container {
    padding: 0 26px;
  }
}
.FTtX0-uPevN6pL3H .row {
  justify-content: center;
}
.FTtX0-uPevN6pL3H .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
    width: 100%;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #dcd4cb;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .opacity-iconfont {
  margin-right: 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont,
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a .opacity-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.FTtX0-uPevN6pL3H .opacity-copy {
  margin-bottom: 0;
  color: #ffe33a;
  text-align: center;
}
.FTtX0-uPevN6pL3H .opacity-section-title {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .opacity-text {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list,
.FTtX0-uPevN6pL3H .nav-wrapper,
.FTtX0-uPevN6pL3H .social-wrapper {
  text-align: right;
}
.FTtX0-uPevN6pL3H .opacity-section-title,
.FTtX0-uPevN6pL3H .logo-wrapper {
  text-align: center;
}
.FTtX0-uPe4svefZM .navbar-dropdown {
  position: relative !important;
}
.FTtX0-uPe4svefZM .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .FTtX0-uPe4svefZM .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.FTtX0-uPe4svefZM .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4svefZM .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.FTtX0-uPe4svefZM .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .FTtX0-uPe4svefZM .container {
    padding: 0 1rem;
  }
}
.FTtX0-uPe4svefZM .menu-tite {
  background: #000000;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffe33a;
}
.FTtX0-uPe4svefZM .nav-link {
  position: relative;
}
.FTtX0-uPe4svefZM .nav-link:hover {
  color: #3f69ff !important;
}
.FTtX0-uPe4svefZM .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.FTtX0-uPe4svefZM .navbar.opened {
  transition: all 0.3s;
}
.FTtX0-uPe4svefZM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.FTtX0-uPe4svefZM .navbar .navbar-logo img {
  width: auto;
}
.FTtX0-uPe4svefZM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.FTtX0-uPe4svefZM .navbar.collapsed {
  justify-content: center;
}
.FTtX0-uPe4svefZM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.FTtX0-uPe4svefZM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .FTtX0-uPe4svefZM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.FTtX0-uPe4svefZM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.FTtX0-uPe4svefZM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.FTtX0-uPe4svefZM .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%;
}
.FTtX0-uPe4svefZM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.FTtX0-uPe4svefZM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.FTtX0-uPe4svefZM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .FTtX0-uPe4svefZM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .FTtX0-uPe4svefZM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .FTtX0-uPe4svefZM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .FTtX0-uPe4svefZM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .FTtX0-uPe4svefZM .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%;
  }
  .FTtX0-uPe4svefZM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .FTtX0-uPe4svefZM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .FTtX0-uPe4svefZM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .FTtX0-uPe4svefZM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .FTtX0-uPe4svefZM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .FTtX0-uPe4svefZM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.FTtX0-uPe4svefZM .navbar.navbar-short {
  min-height: 60px;
}
.FTtX0-uPe4svefZM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.FTtX0-uPe4svefZM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.FTtX0-uPe4svefZM .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;
}
.FTtX0-uPe4svefZM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.FTtX0-uPe4svefZM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.FTtX0-uPe4svefZM .dropdown-item:hover,
.FTtX0-uPe4svefZM .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.FTtX0-uPe4svefZM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.FTtX0-uPe4svefZM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.FTtX0-uPe4svefZM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.FTtX0-uPe4svefZM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.FTtX0-uPe4svefZM .dropdown-menu,
.FTtX0-uPe4svefZM .navbar.opened {
  background: #ffffff !important;
}
.FTtX0-uPe4svefZM .nav-item:focus,
.FTtX0-uPe4svefZM .nav-link:focus {
  outline: none;
}
.FTtX0-uPe4svefZM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPe4svefZM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.FTtX0-uPe4svefZM .dropdown .dropdown-menu .dropdown-item .opacity-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.FTtX0-uPe4svefZM .dropdown .dropdown-menu .dropdown-item .opacity-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.FTtX0-uPe4svefZM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.FTtX0-uPe4svefZM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.FTtX0-uPe4svefZM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.FTtX0-uPe4svefZM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.FTtX0-uPe4svefZM .navbar-brand .navbar-logo a {
  outline: none;
}
.FTtX0-uPe4svefZM .dropdown-item.active,
.FTtX0-uPe4svefZM .dropdown-item:active {
  background-color: transparent;
}
.FTtX0-uPe4svefZM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.FTtX0-uPe4svefZM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.FTtX0-uPe4svefZM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.FTtX0-uPe4svefZM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.FTtX0-uPe4svefZM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.FTtX0-uPe4svefZM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.FTtX0-uPe4svefZM ul.navbar-nav {
  flex-wrap: wrap;
}
.FTtX0-uPe4svefZM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.FTtX0-uPe4svefZM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.FTtX0-uPe4svefZM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.FTtX0-uPe4svefZM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.FTtX0-uPe4svefZM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPe4svefZM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.FTtX0-uPe4svefZM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.FTtX0-uPe4svefZM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPe4svefZM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.FTtX0-uPe4svefZM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.FTtX0-uPe4svefZM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.FTtX0-uPe4svefZM .navbar-dropdown {
  padding: 0 1rem;
}
.FTtX0-uPe4svefZM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FTtX0-uPe4svefZM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .FTtX0-uPe4svefZM .navbar {
    height: 70px;
  }
  .FTtX0-uPe4svefZM .navbar.opened {
    height: auto;
  }
  .FTtX0-uPe4svefZM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.FTtX0-uPe4sweeWx {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.FTtX0-uPe4sweeWx .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe4sweeWx .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPe4sweeWx .display-1 {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4sweeWx .display-1 {
    font-size: 2.4rem;
  }
}
.FTtX0-uPe4sweeWx a {
  font-weight: bold;
}
.FTtX0-uPe4sweeWx .opacity-section-title {
  text-align: center;
  color: #151515;
  background: #ffe33a;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4sweeWx .opacity-section-title {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4sweeWx .opacity-section-title {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe4sweeWx .opacity-text {
  text-align: center;
  color: #151515;
  background: #151515;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4sweeWx .opacity-text {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4sweeWx .opacity-text {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe4sweeWx .opacity-section-subtitle {
  text-align: center;
  color: #af9fff;
  background: #151515;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
  padding-bottom: 2rem;
  border-radius: 6rem;
}
@media (max-width: 992px) {
  .FTtX0-uPe4sweeWx .opacity-section-subtitle {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .FTtX0-uPe4sweeWx .opacity-section-subtitle {
    padding-top: 1.6rem;
  }
}
.FTtX0-uPe4sweeWx .opacity-text,
.FTtX0-uPe4sweeWx .opacity-section-btn {
  text-align: center;
  color: #af9fff;
}
.FTtX0-uPe4sx9oOa {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.FTtX0-uPe4sx9oOa .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPe4sx9oOa .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPe4sx9oOa .opacity-text,
.FTtX0-uPe4sx9oOa .opacity-section-btn {
  text-align: left;
}
.FTtX0-uPevN6pL3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image.disabled {
  display: none;
}
.FTtX0-uPevN6pL3H .opacity-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.FTtX0-uPevN6pL3H .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .container {
    padding: 0 26px;
  }
}
.FTtX0-uPevN6pL3H .row {
  justify-content: center;
}
.FTtX0-uPevN6pL3H .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .opacity-section-title {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .title-wrapper .text-wrapper .opacity-text {
    width: 100%;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #dcd4cb;
}
.FTtX0-uPevN6pL3H .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .FTtX0-uPevN6pL3H .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .opacity-iconfont {
  margin-right: 0;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont,
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .opacity-iconfont {
  color: #54595f;
}
.FTtX0-uPevN6pL3H .content-wrapper .social-wrapper .social-wrap .soc-item a .opacity-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.FTtX0-uPevN6pL3H .opacity-copy {
  margin-bottom: 0;
  color: #ffe33a;
  text-align: center;
}
.FTtX0-uPevN6pL3H .opacity-section-title {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .opacity-text {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list {
  color: #ffffff;
}
.FTtX0-uPevN6pL3H .list,
.FTtX0-uPevN6pL3H .nav-wrapper,
.FTtX0-uPevN6pL3H .social-wrapper {
  text-align: right;
}
.FTtX0-uPevN6pL3H .opacity-section-title,
.FTtX0-uPevN6pL3H .logo-wrapper {
  text-align: center;
}

/* 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 bounceIn {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0.7);
  }
  50% {
    opacity: 1;
    transform: translateY(-10%) scale(1.05);
  }
  70% {
    transform: translateY(5%) scale(0.95);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes bounceOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-10%) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateY(100%) scale(0.7);
  }
}

.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: bounceIn 0.8s ease-out forwards;
  transition: all 0.3s ease-in-out;
}

.cookie-banner.hide {
  animation: bounceOut 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);
  transform: scale(1);
}

#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 bounceLeft {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-20px); }
    100% { transform: translateX(0); }
}

.navbar-brand {
    animation: bounceLeft 1s ease-in-out 1 forwards;
}
/* endlogoanimations */

/* mainanimations */
/* Style 12: blur filter */
a, button, .btn {
  transition: filter 0.2s ease;
}
a:active, button:active, .btn:active {
  filter: blur(2px);
}
/* endmainanimations */
.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100vh;
  background: url("../../../assets/images/neutralword3884.jpg") center / cover no-repeat;
}

.quiz-form {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.quiz-title {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
  color: #555;
}
.quiz-form select,
.quiz-form input[type="number"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bbb;
  font-size: 15px;
  box-sizing: border-box;
}

.quiz-button {
  background: linear-gradient(to right, #deff38, #ffff00);
  color: #000;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.quiz-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}