.input__error {
  opacity: 0;
  transition: 0.3s;
}

.input_text {
  position: relative;
  margin-bottom: 24px;
}

.input_text:after {
  content: '';
  display: block;
  position: absolute;
  top: 51px;
  right: 24px;
  width: 14px;
  height: 12px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEzLjc0NzUgMS42NjQzNkw1LjA0Mjg5IDExLjQ1N0wwLjI5Mjk2OSA2LjcwNzFMMS43MDcxOCA1LjI5Mjg5TDQuOTU3MjYgOC41NDI5N0wxMi4yNTI3IDAuMzM1NjMyTDEzLjc0NzUgMS42NjQzNloiIGZpbGw9IiMwMDA2RkYiLz48L3N2Zz4=);
}

.input_text-valid:after {
  z-index: 2;
  opacity: 1;
}

.input label {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.input_text input,
.input_text textarea {
  display: block;
  width: 100%;
  height: 56px;
  border: none;
  background-color: #F5F5F5;
  border-radius: 6px;
  padding: 0px 16px;
  font-size: 16px;
  font-family: Medium;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.input_text.input_text-valid input,
.input_text.input_text-valid textarea {
  padding-right: 58px;
}

.input_text textarea {
  height: 118px;
  padding: 18px 44px 16px 16px;
  resize: none;
}

.input_text textarea::-webkit-scrollbar {
  width: 4px;
}

.input_text textarea::-webkit-scrollbar-track {
  background: transparent;
}

.input_text textarea::-webkit-scrollbar-thumb {
  background-color: #E0E0E0;
}

.input_text textarea::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.input_text input:focus,
.input_text textarea:focus {
  background-color: #F0F5FF;
}

.input_text input::placeholder,
.input_text textarea::placeholder {
  color: #AAACAD;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.input_text input:focus::placeholder,
.input_text textarea:focus::placeholder {
  color: transparent !important;
}

.input_text.input_not-valid input,
.input_text.input_not-valid textarea {
  border: 1px solid #ED5567;
}


.input_text.input_not-valid .phones-list {
  background-color: #FFEBEB !important;
}

.phones-list__country-code {
  display: none !important;
}

.input_text .input__error,
.input_drad-and-drop .input__error {
  color: #FA5252;
  font-size: 14px;
  line-height: 20px;
  padding-top: 4px;
}

.input_not-valid .input__error,
.input_not-valid-hovered .input__error {
  opacity: 1;
}

.input_drad-and-drop .input__error {
  margin-top: 10px;
}

.input_drad-and-drop input[type="file"] {
  display: none;
}

.input_radio input {
  display: none;
}

.input_radio label {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  line-height: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.input_radio label:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #E5E5E5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.input_radio label:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0006FF;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.input_radio input:checked+label:before {
  border-color: #0006FF;
}

.input_radio input:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.radios-list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.radios-list .input+.input {
  margin-left: 24px;
}

.radios-list span {
  display: block;
  font-size: 16px;
  margin: 0px 24px;
  color: #C2C2C2;
}

.countries-select {
  position: relative;
  z-index: 3;
}

.countries-select input {
  display: none;
}

.countries-select__val {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  height: 56px;
  padding: 0px 50px 0px 16px;
  border-radius: 6px;
  background-color: #F5F5F5;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.countries-select.active .countries-select__val {
  border-radius: 6px 6px 0px 0px;
}

.countries-select__val:after {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  width: 12px;
  height: 7px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC4zNzUzMDUgMS43ODA4NUwxLjYyNDcgMC4yMTkxMTZMNiAzLjcxOTM2TDEwLjM3NTMgMC4yMTkxMTZMMTEuNjI0NyAxLjc4MDg1TDYgNi4yODA2MUwwLjM3NTMwNSAxLjc4MDg1WiIgZmlsbD0iIzAwMDZGRiIvPgo8L3N2Zz4K');
}

.countries-select.active .countries-select__val:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.countries-select__val span {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.countries-select__val span img {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border-radius: 50%;
  object-fit: cover;
}

.countries-select__val-text .mobile-text {
  display: none;
}

.countries-select__list-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 16px 15px 0px 15px;
  border: 1px solid #F5F5F5;
  border-top: none;
  border-radius: 0px 0px 6px 6px;
  box-shadow: 0px 8px 16px rgba(46, 47, 77, 0.05);
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.countries-select.active .countries-select__list-container {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.countries-select__list-container input {
  display: block;
  width: 100%;
  height: 32px;
  background-color: #F5F5F5;
  border-radius: 4px;
  padding: 0px 12px;
  border: none;
  font-family: Medium;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
}

.countries-select__list-container input::placeholder {
  color: #ADADAD;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.countries-select__list-container input:focus::placeholder {
  color: transparent;
}

.countries-select__hidden-list {
  display: none;
}

.countries-select__list {
  max-height: 148px;
  margin: 0px 1px;
  overflow: auto;
}

.countries-select__list::-webkit-scrollbar {
  width: 4px;
}

.countries-select__list::-webkit-scrollbar-track {
  background: #F5F5F5;
  margin-bottom: 16px;
}

.countries-select__list::-webkit-scrollbar-thumb {
  background-color: #E0E0E0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.countries-select__list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.countries-select__list li {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.countries-select__list li:hover {
  color: #999999;
}

.countries-select__list li.clear-text {
  color: #999999;
  cursor: default;
}

.countries-select__list li img {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border-radius: 50%;
  object-fit: cover;
}

.checkboxes-list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.checkboxes-list .input_checkbox {
  margin-right: 48px;
}

.checkboxes-list .input_checkbox:last-of-type {
  margin-right: 0;
}

.input_checkbox input {
  display: none;
}

.input_checkbox label {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  height: 20px;
  padding-left: 32px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.input_checkbox label:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #E5E5E5;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.input_checkbox input:checked+label:before {
  border-color: #0006FF;
  background-color: #0006FF;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEzLjc0NzQgMS42NjQzNkw1LjA0Mjc3IDExLjQ1N0wwLjI5Mjg0NyA2LjcwNzFMMS43MDcwNiA1LjI5Mjg5TDQuOTU3MTQgOC41NDI5N0wxMi4yNTI1IDAuMzM1NjMyTDEzLjc0NzQgMS42NjQzNloiIGZpbGw9IndoaXRlIi8+PC9zdmc+);
}

.phone-input {
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  background-color: #F5F5F5;
  border-radius: 6px;
  -webkit-transition: background-color 0.4s, border-radius 0.4s;
  transition: background-color 0.4s, border-radius 0.4s;
}

.phone-input.focus,
.phone-input.show-list {
  background-color: #F0F5FF;
}

.phone-input.show-list {
  border-radius: 6px 6px 0px 0px;
}

.phone-input::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 214px;
  border-radius: 6px 6px 8px 8px;
  box-shadow: 0px 4px 8px rgba(4, 5, 5, 0.08);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.phone-input.show-list::before {
  opacity: 1;
  pointer-events: auto;
}

.phone-input__side {
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  height: 56px;
  padding: 0px 15px 0px 16px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.phone-input__side::before {
  content: '';
  display: block;
  position: absolute;
  top: 11px;
  right: -1px;
  bottom: 11px;
  border-right: 1px solid #D6D6D6;
}

.phone-input__side img {
  display: block;
  width: 16px;
  min-width: 16px;
  margin-right: 8px;
}

.phone-input__side span {
  width: 20px;
  font-family: Medium;
  font-size: 14px;
  text-transform: uppercase;
}

.phone-input__side::after {
  content: '';
  display: block;
  width: 10px;
  min-width: 10px;
  height: 6px;
  margin-left: 9px;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNSA0TDkgMSIgc3Ryb2tlPSIjMDAwNkZGIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==');
}

.phone-input.show-list .phone-input__side::after {
  -webkit-transform: rotate(180deg) translateY(1px);
  transform: rotate(180deg) translateY(1px);
}

.phone-input input {
  position: relative;
  z-index: 1;
  border-radius: 0;
}

.input_not-valid .phone-input {
  background-color: #FFEBEB;
}

.phone-input input,
.input_not-valid.input_not-valid .phone-input input {
  background-color: transparent !important;
}

/* #FA5252 */
.iti--allow-dropdown {
  width: 100%;
}

.iti__flag-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 6px 6px 8px 8px;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}

.phone-input.show-list .iti__flag-container {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.iti__country-list {
  height: 158px;
  padding: 19px 16px;
  overflow: auto;
  scrollbar-color: #e0e0e0 #f5f5f5;
  scrollbar-width: thin;
  scrollbar-margin: 10px;
}

.iti__country-list::-webkit-scrollbar {
  width: 4px;
}

.iti__country-list::-webkit-scrollbar-thumb {
  background-color: #e0e0e0;
}

.iti__country-list::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.iti__country {
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  height: 16px;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.iti__country-list li+li {
  margin-top: 16px;
}

.iti__country[role="separator"] {
  height: 1px;
  background-color: #D6D6D6;
  pointer-events: none;
}

.iti__country img {
  display: block;
  width: 16px;
  min-width: 16px;
  margin-right: 12px;
}

.iti__country[aria-selected="true"]::after {
  content: '';
  display: block;
  position: absolute;
  right: 0px;
  width: 11px;
  height: 10px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMSAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEwLjc1OTMgMS42NTA3TDQuMDU2NTYgOS40NzA2MUwwLjI5Mjk2OSA1LjcwNzAyTDEuNzA3MTggNC4yOTI4MUwzLjk0MzU5IDYuNTI5MjJMOS4yNDA4MiAwLjM0OTEyMUwxMC43NTkzIDEuNjUwN1oiIGZpbGw9IiMwMDA2RkYiLz48L3N2Zz4=');
}

.form_disabled input[type="submit"],
.form_disabled .button {
  background-color: #CCCCCC;
  pointer-events: none;
}

.form_disabled .button_arrow .button__inner span {
  background-color: rgb(195, 195, 195);
}

@media screen and (min-width: 1000px) {

  .input_text input:hover,
  .countries-select__val:hover,
  .phone-input:hover {
    background-color: #F0F5FF;
  }

  .input_radio:hover label:before,
  .input_checkbox:hover label:before {
    border-color: #0006FF;
  }

  .input_on-dark-bg input:hover {
    background-color: #FAFAFA;
  }

  .iti__country:hover {
    color: #999999;
  }
}

@media screen and (max-width: 1250px) {
  .checkboxes-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
  }

  .checkboxes-list .input {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 760px) {
  .input_text {
    width: 100% !important;
  }

  .input_text input,
  .phone-input__side {
    height: 48px;
  }

  .input_text .input__error {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.2px;
  }

  .input_text:after {
    top: 47px;
    right: 15px;
  }

  .input_text textarea {
    padding-right: 16px;
  }

  .countries-select__val-text .pc-text {
    display: none;
  }

  .countries-select__val-text .mobile-text {
    display: block;
  }

  .countries-select__list-container input {
    height: 40px;
    padding-left: 48px;
    background-position: 15px center;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04IDJDNC42ODYyOSAyIDIgNC42ODYyOSAyIDhDMiAxMS4zMTM3IDQuNjg2MjkgMTQgOCAxNEMxMS4zMTM3IDE0IDE0IDExLjMxMzcgMTQgOEMxNCA0LjY4NjI5IDExLjMxMzcgMiA4IDJaTTAgOEMwIDMuNTgxNzIgMy41ODE3MiAwIDggMEMxMi40MTgzIDAgMTYgMy41ODE3MiAxNiA4QzE2IDEyLjQxODMgMTIuNDE4MyAxNiA4IDE2QzMuNTgxNzIgMTYgMCAxMi40MTgzIDAgOFoiIGZpbGw9IiNCOEI4QjgiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNy4yOTMgMTguNzA3MUwxMi4yOTMgMTMuNzA3MUwxMy43MDcyIDEyLjI5MjlMMTguNzA3MiAxNy4yOTI5TDE3LjI5MyAxOC43MDcxWiIgZmlsbD0iI0I4QjhCOCIvPgo8L3N2Zz4K');
  }

  .iti__country-list {
    height: 168px;
  }

  .iti__country-list li+li {
    margin-top: 14px;
  }

  .radios-list {
    display: block;
  }

  .radios-list .input {
    margin-bottom: 19px;
  }

  .radios-list .input+.input {
    margin-left: 0px;
  }

  .radios-list:last-child {
    margin-bottom: 0;
  }

  .radios-list span {
    display: none;
  }

  .checkboxes-list {
    display: block;
    margin: 0;
  }

  .checkboxes-list .input:last-child {
    margin-bottom: 0;
  }

  .input_checkbox label {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.2px;
  }
}

@media screen and (max-width: 760px) {

  .count-input .minus,
  .count-input .plus {
    width: 40px;
    height: 40px;
    border-radius: 1px 0px 0px 1px;
  }

  .count-input input {
    width: 38px;
  }
}

.countries-select__val a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  color: #040505;
}

.country-link {
  color: #040505;
}

.country-link:hover {
  color: #999999;
}

.all-block {
  display: flex;
}
.subscribe {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  width: 1200px;
  padding: 38px 38px 50px 38px;
  margin: 0px auto 168px auto;
  border-radius: 6px;
  border: 2px solid #040505;
}

.subscribe__left {
  width: 500px;
}

.subscribe__left img {
  display: block;
  margin-bottom: 16px;
}

.subscribe__left .caption {
  margin-bottom: 12px;
}

.subscribe .socials-list {
  margin-top: 25px;
}

.socials-list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: -0.2px;
}

.socials-list__list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin-left: 16px;
}

.socials-list__list li+li {
  margin-left: 4px;
}

.socials-list__list a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: #f5f5f5;
}

.socials-list__list a svg {
  display: block;
}

.socials-list__list a svg path {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.subscribe__right {
  width: 536px;
  padding-top: 7px;
}

.subscribe-form-wrapper {
  position: relative;
  margin-bottom: 0px;
}

.subscribe-form-wrapper-fin .subscribe-form {
  pointer-events: none;
  opacity: 0;
}

.subscribe-form-wrapper .subscribe-form {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.subscribe-form-thanks {
  position: absolute;
  top: 40px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  transition-delay: 0.4s;
}

.subscribe-form-wrapper-fin .subscribe-form-thanks {
  opacity: 1;
  pointer-events: auto;
}

.subscribe-form-thanks:before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #1f1f1f;
  margin-bottom: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAyMCAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOS4xMjEyIDEuOTk2NTFMNy4zOTc2NyAxNS4xODU1TDAuOTM5NDUzIDguNzI3MjlMMy4wNjA3NyA2LjYwNTk3TDcuMjY5MjIgMTAuODE0NEwxNi44NzkgMC4wMDM0MTc5N0wxOS4xMjEyIDEuOTk2NTFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
}

.subscribe-form-label {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.subscribe-form__inputs {
  display: flex;
  justify-content: space-between;
}

.subscribe-form__inputs .button {
  margin-top: 28px;
}

.input-email {
  display: flex;
  flex-direction: column;
  width: 405px;
  position: relative;
}

.input-email input {
  display: block;
  width: 100%;
  height: 56px;
  border: none;
  background-color: #f5f5f5;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 16px;
  font-family: Medium;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.subscribe-form__inputs input[type="submit"] {
  display: block;
  width: 123px;
  height: 56px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-family: Bold;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.input-email input::placeholder {
  color: #aaacad;
}

.subscribe-form__recaptcha {
  margin-top: 16px;
}

.links-container {
  margin-top: 24px;
  font-size: 12px;
  line-height: 20px;
  color: #999;
}

.subscribe .input_text {
  margin-bottom: 0;
}

@media screen and (max-width: 1250px) {
  .subscribe {
    width: 700px;
    display: block;
    padding-top: 44px;
    margin-bottom: 145px;
  }

  .subscribe__left {
    position: relative;
    width: auto;
    padding-left: 90px;
    margin-bottom: 12px;
  }

  .subscribe__left img {
    position: absolute;
    left: 0;
  }

  .subscribe .socials-list {
    display: block;
    margin: 30px 0px 25px -90px;
  }

  .subscribe .socials-list__list {
    margin: 10px 0px 0px 0px;
  }

  .subscribe__form .input {
    width: 475px;
  }

  .subscribe__right {
    width: auto;
  }

  .input-email {
    width: 475px;
  }
}

@media screen and (max-width: 760px) {
  .subscribe {
    width: auto;
    margin: 0px 20px 128px 20px;
    padding: 22px;
  }

  .subscribe__left {
    padding: 0;
    margin: 0px 0px 24px 0px;
  }

  .subscribe__left img {
    position: static;
  }

  .subscribe__left br {
    display: none;
  }

  .subscribe .socials-list {
    margin: 0;
  }

  .subscribe .socials-list p {
    display: none;
  }

  .subscribe .socials-list__list {
    margin: 24px 0px 0px 0px;
  }

  .socials-list__list li+li {
    margin-left: 8px;
  }

  .subscribe__right {
    padding: 0;
  }

  .subscribe-form__inputs {
    flex-direction: column;
  }

  .subscribe-form__inputs .button {
    margin-top: 0;
  }

  .input-email {
    width: 100%;
    margin-bottom: 0 !important;
  }

  .subscribe-form__inputs input[type="submit"] {
    width: 100%;
    margin-top: 16px;
  }

  .subscribe-form__recaptcha {
    width: 100%;
  }

  .subscribe-form__recaptcha img {
    width: 100%;
  }

  .links-container {
    font-size: 14px;
    line-height: 24px;
  }
}

@media screen and (max-width: 390px) {
  .g-recaptcha {
    transform-origin: left top;
    transform: scale(0.9);
  }
}

@media screen and (max-width: 360px) {
  .g-recaptcha {
    transform-origin: left top;
    transform: scale(0.8);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0309d0;
  border: none;
  font-size: 1px;
  color: transparent;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dark-bg .slick-arrow {
  background-color: #1463ff;
}

.slick-prev {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYuNzA2OTYgMTMuNzA3TC0wLjAwMDE1MDY4MSA2Ljk5OTkyTDYuNzA2OTYgMC4yOTI4MThMOC4xMjExNyAxLjcwNzAzTDMuODI4MjggNS45OTk5MkwxMy40MTQxIDUuOTk5OTJMMTMuNDE0MSA3Ljk5OTkyTDMuODI4MjggNy45OTk5Mkw4LjEyMTE3IDEyLjI5MjhMNi43MDY5NiAxMy43MDdaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==);
}

.slick-next {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYuNzA3MTEgMC4yOTI5NjlMMTMuNDE0MiA3LjAwMDA4TDYuNzA3MTEgMTMuNzA3Mkw1LjI5Mjg5IDEyLjI5M0w5LjU4NTc5IDguMDAwMDhIMFY2LjAwMDA4SDkuNTg1NzlMNS4yOTI4OSAxLjcwNzE4TDYuNzA3MTEgMC4yOTI5NjlaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==);
}

@media screen and (min-width: 1000px) {
  .slick-prev:hover,
  .slick-next:hover {
    background-color: #071e99;
  }

  .dark-bg .slick-prev:hover,
  .dark-bg .slick-next:hover {
    background-color: #0c3782;
  }
}

@media screen and (max-width: 1250px) {
  .slick-arrow {
    width: 48px;
    height: 48px;
  }

  .slick-prev {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjI5MjYxIDAuMTUwMTQ2TDAuNDQyNjUxIDYuMDAwMTFMNi4yOTI2MSAxMS44NTAxTDcuNzA2ODMgMTAuNDM1OUw0LjI3MTA4IDcuMDAwMTFIMTIuMTQyNlY1LjAwMDExSDQuMjcxMDhMNy43MDY4MyAxLjU2NDM2TDYuMjkyNjEgMC4xNTAxNDZaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
  }

  .slick-next {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjcwNzM5IDAuMTUwMTQ2TDEyLjU1NzMgNi4wMDAxMUw2LjcwNzM5IDExLjg1MDFMNS4yOTMxNyAxMC40MzU5TDguNzI4OTIgNy4wMDAxMUgwLjg1NzQyMlY1LjAwMDExSDguNzI4OTJMNS4yOTMxNyAxLjU2NDM2TDYuNzA3MzkgMC4xNTAxNDZaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
  }
}

/* related-articles */
.related-articles {
  margin-bottom: 168px;
}

.related-articles .caption_large {
  margin-bottom: 40px;
}

.related-articles__slider {
  margin: 0px -12px;
}

.related-articles .slick-track {
  margin: 0;
}

.related-articles__slider .slick-arrow {
  position: absolute;
  top: 72px;
}

.related-articles__slider .slick-prev {
  left: -12px;
}

.related-articles__slider .slick-next {
  right: -12px;
}

.related-articles__slider .slick-list {
  margin: 0px -12px;
  padding: 0px 12px;
}

.related-articles__slider .slick-slide {
  padding: 0px 12px;
}

.article-item {
  width: 384px;
}

.article-item__preview {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.article-item.hover .article-item__preview {
  opacity: 0.8;
}

.article-item__preview img {
  display: block;
  width: 100%;
  height: 200px;
  border-radius: 6px;
  object-fit: cover;
}

.article-item .categories-list {
  display: flex;
  margin-bottom: 8px;
}

.article-item .caption {
  margin-bottom: 24px;
}

.article-item .caption a {
  display: inline-block;
  color: #040505;
}

.article-item.hover .caption a {
  color: #0006ff;
}

.article-item__info {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin-left: 3px;
}

.article-item__info div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin-right: 25px;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  white-space: nowrap;
}

.article-item__info div img {
  display: block;
  max-width: 18px;
  margin-right: 10px;
}

@media screen and (max-width: 1250px) {
  .related-articles {
    margin-bottom: 120px;
  }

  .related-articles__slider .slick-list {
    margin: 0px -22px;
    padding: 0px 22px;
  }
}

@media screen and (max-width: 760px) {
  .related-articles {
    position: relative;
    margin-bottom: 80px;
  }

  .related-articles .caption_large {
    margin-bottom: 32px;
  }

  .related-articles__slider {
    position: static;
  }

  .related-articles__slider .slick-list {
    margin: 0px -8px;
    padding: 0px 8px;
  }

  .related-articles__slider .slick-arrow {
    top: -8px;
    width: 48px;
    height: 48px;
  }

  .related-articles__slider .slick-next {
    right: 20px;
  }

  .related-articles__slider .slick-prev {
    left: auto;
    right: 72px;
  }
}
.rocket-block {
  width: 100%;
  padding: 40px 0;
  background: #F1F3FF;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rocket-block img {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.rocket-block>div {
  max-width: 622px;
  text-align: center
}

.rocket-block-title {
  font-size: 26px;
  line-height: 32px;
  font-family: ExtraBold;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.rocket-block-description {
  font-size: 16px;
  line-height: 20px;
  color: #808080;
  margin-bottom: 32px;
}

.rocket-block .button_arrow {
  font-family: Bold;
}


@media screen and (max-width: 760px) {
  .rocket-block {
    padding: 28px 20px;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }

  .rocket-block img {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
  }

  .rocket-block-title {
    margin-bottom: 16px;
  }
}
.page-content .quote-block {
  padding: 40px 40px 40px 40px;
  border-radius: 12px;
  background-color: #F0FEEB;
}

.page-content .quote-block>img {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
}

.page-content .quote-block .quote-block-text {
  margin-bottom: 24px;
  /* font-size: 24px;
  line-height: 38px; */
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
}

.page-content .quote-block .signature-block {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-content .quote-block .signature-block>img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
}


@media screen and (max-width: 760px) {
  .page-content .quote-block {
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
    padding: 24px 20px 24px 20px;
    border-radius: 0;
  }

  .page-content .quote-block>img {
    margin-bottom: 16px;
  }

  .page-content .quote-block .signature-block {
    justify-content: flex-start;
  }

  .page-content .quote-block .signature-block>img {
    width: 40px;
    height: 40px;
  }
}
.page-content .important,
.page-content .important p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.page-content .important {
  position: relative;
  margin: 48px 0;
  padding: 40px 0;
  letter-spacing: -.5px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.page-content .important:before {
  content: "";
  display: block;
  width: 44px;
  height: 32px;
  position: absolute;
  left: 0;
  top: -16px;
  background: #fff;
}

.page-content .important:after {
  content: "";
  display: block;
  width: 22px;
  height: 32px;
  position: absolute;
  left: 0;
  top: -16px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAyMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjM3NSAxMy4xODc1SDEyLjYxNTlMMTkuMzEzOSAxLjQwMjU4QzE5LjQ3OTcgMS4xMTIzIDE5LjQ3ODcgMC43NTYxMDEgMTkuMzExMiAwLjQ2Njc5NkMxOS4xNDI4IDAuMTc3NzM0IDE4LjgzNDIgMCAxOC41IDBINy4yNUM2Ljg0NjQzIDAgNi40ODgyOCAwLjI1ODMgNi4zNjEwOCAwLjY0MDg2N0wwLjczNjA5OCAxNy41NzgzQzAuNjM5OTA3IDE3Ljg2NCAwLjY4ODQ5MSAxOC4xNzg5IDAuODY0MjcyIDE4LjQyMzNDMS4wNDEwMyAxOC42Njc5IDEuMzIzOTkgMTguODEyNCAxLjYyNTAxIDE4LjgxMjRIOS41NzgzNkw0LjUxMzY4IDMwLjY5MzVDNC4zMzIyOCAzMS4xMTU2IDQuNDg0MzggMzEuNjA3MyA0Ljg3MjU2IDMxLjg1MzRDNS4yNTQ0IDMyLjA5NzYgNS43NjczMyAzMi4wMzM0IDYuMDc1NDQgMzEuNjg1MkwyMS4wNzU0IDE0Ljc0NzhDMjEuMzIwOCAxNC40NzIxIDIxLjM4MTMgMTQuMDc3NCAyMS4yMzAyIDEzLjc0MTRDMjEuMDc5MSAxMy40MDQ1IDIwLjc0NDEgMTMuMTg3NSAyMC4zNzUgMTMuMTg3NVoiIGZpbGw9IiNGRkQ0MDAiLz4KPC9zdmc+Cg==);
}

@media screen and (max-width: 760px) {
  .page-content .important {
    padding: 32px 0;
  }
}
.page-content .button-contact-us {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.page-content .button-contact-us p {
  font-family: Bold;
  font-size: 16px;
  color: #fff;
}

@media screen and (max-width: 760px) {
  .page-content .button-contact-us {
    margin: 32px 0;
  }
}
.page-content .callout {
  font-family: ExtraBold;
  padding-left: 40px;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.5px;
  border-left: 8px solid #FFD400;
}


@media screen and (max-width: 760px) {
  .page-content .callout {
    padding-left: 32px;
    font-size: 24px;
    line-height: 28px;
    margin-left: -20px;
  }
}
/* checked & minus */

.page-content .unmarked-checked-list ul li,
.page-content .unmarked-minus-list ul li {
  padding-left: 40px;
}

.page-content .unmarked-checked-list ul li:before,
.page-content .unmarked-minus-list ul li:before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 4px;
  left: 0;
  width: 24px;
  height: 24px;
  min-height: 24px;
  min-width: 24px;
  max-width: 24px;
  max-height: 24px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.page-content .unmarked-checked-list ul li:before {
  background-color: #F0FEEB;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='9' viewBox='0 0 13 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9282 0.432031C12.4391 0.942969 12.4391 1.77734 11.9282 2.28828L5.92817 8.28828C5.41724 8.79922 4.58286 8.79922 4.07192 8.28828L1.07192 5.28828C0.560986 4.77734 0.560986 3.94297 1.07192 3.43203C1.58286 2.92109 2.41724 2.92109 2.92817 3.43203L5.00005 5.50391L10.0719 0.432031C10.5829 -0.0789063 11.4172 -0.0789063 11.9282 0.432031Z' fill='%237EC28B'/%3E%3C/svg%3E");
}

.page-content .unmarked-minus-list ul li:before {
  background-color: #FEEBEE;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='3' viewBox='0 0 11 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.25 1.36035C0.25 0.736914 0.751562 0.235352 1.375 0.235352H9.625C10.2484 0.235352 10.75 0.736914 10.75 1.36035C10.75 1.98379 10.2484 2.48535 9.625 2.48535H1.375C0.751562 2.48535 0.25 1.98379 0.25 1.36035Z' fill='%23E82A41'/%3E%3C/svg%3E");
}

.page-content .unmarked-checked-list ul li:after,
.page-content .unmarked-minus-list ul li:after {
  display: none;
}

.page-content li+li {
  margin-top: 24px;
}
/* small & big */

.learn-more {
  background: #F1F3FF;
  border-radius: 12px;
  display: flex;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.learn-more.learn-more-small {
  padding: 16px 32px 16px 40px;
  align-items: center;
  justify-content: space-between;
}

.learn-more.learn-more-big {
  padding: 24px 40px 24px 40px;
  flex-direction: column;
}

.learn-more__title {
  font-family: ExtraBold;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.5px;
  margin-right: 40px;
}

.learn-more__title span {
  font-size: 26px;
  margin-left: 12px;
}

.learn-more .button {
  overflow: hidden;
  height: 56px;
  width: fit-content;
  min-width: 200px;
  font-family: Bold;
  font-size: 16px;
  line-height: 20px;
}

.learn-more.learn-more-big .learn-more__title {
  margin-right: 0;
  margin-bottom: 8px;
}

.learn-more.learn-more-big .learn-more__description {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #808080;
}


@media screen and (max-width: 760px) {

  .learn-more.learn-more-big,
  .learn-more.learn-more-small {
    padding: 18px 28px 16px 28px;
  }

  .learn-more {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    width: 100vw;
    width: -webkit-fill-available;
  }

  .learn-more__title {
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    margin-right: 0;
    margin-bottom: 26px;
  }

  .learn-more__title span {
    font-size: 24px;
    line-height: 28px;
    margin-left: 8px;
  }
}
.color-block {
  padding: 40px 40px 40px 40px;
  border-radius: 12px;
}

.color-block-title {
  font-family: ExtraBold;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.color-block-icon {
  font-size: 32px;
  line-height: 32px;
}

.color-block .color-block-description {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.color-block .color-block-description p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 760px) {
  .color-block {
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    padding: 24px 20px 24px 20px;
  }

  .color-block-title {
    /* font-size: 24px;
    line-height: 28px; */
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
  }
}
.meetings-iframe-container {
  margin: 24px 0 -24px 0;
  max-height: 692px;
}

@media screen and (max-width: 671px) {
  .meetings-iframe-container {
    max-height: 580px;
    margin: 24px 0 54px 0;
  }
}
.typeform-quiz-wrapper {
  margin-top: 24px;
  margin-bottom: 24px;
}

.articles {
	background-color: #0006ff;
}

.announcements {
	background-color: #ff0000;
}

.cases {
	background-color: #00a4f7;
}

.events {
	background-color: #2fc9ce;
}

.integrations {
	background-color: #00ca50;
}

.updates {
	background-color: #ffd400;
}

.checklists {
	background-color: #a661fd;
}
.small-subscription-form {
  width: 216px;
  background: #F1F3FF;
  border-radius: 6px;
  padding: 24px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 24px;
}

.small-subscription-form .subscribe-hbspt-form>form>.hs_email>label>span,
.small-subscription-form .submitted-message {
  font-size: 18px;
  line-height: 28px;
  font-family: ExtraBold;
  letter-spacing: -0.5px;
}

.small-subscription-form .subscribe-hbspt-form .hs-form-required,
.small-subscription-form .subscribe-hbspt-form .hs_error_rollup {
  display: none;
}

.small-subscription-form .subscribe-hbspt-form .hs_recaptcha {
  position: relative;
  opacity: 0;
  width: 0;
  height: 0;
  z-index: -1;
}

.small-subscription-form .subscribe-hbspt-form .hs-error-msg {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -.2px;
  color: #fa5252;
}

.small-subscription-form .subscribe-hbspt-form .hs_submit {
  margin-top: 16px;
}

.small-subscription-form .submitted-message {
  text-align: center;
}

.small-subscription-form .subscribe-hbspt-form>form>.hs_email>.input {
  width: 100%;
  margin-bottom: 4px;
  margin-top: 12px;
}

.small-subscription-form .subscribe-hbspt-form>form>.hs_email>.input>input {
  background: #FFFFFF;
  background-color: #FFFFFF !important;
  height: 36px;
  font-size: 14px;
  line-height: 20px;
  font-family: Medium;
  padding: 0 16px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 6px;
  transition: background-color .4s;
  font-variant-ligatures: none;
}

.small-subscription-form .subscribe-hbspt-form>form>.hs_email>.input>input:-webkit-autofill,
.small-subscription-form .subscribe-hbspt-form>form>.hs_email>.input>input:-webkit-autofill:hover,
.small-subscription-form .subscribe-hbspt-form>form>.hs_email>.input>input:-webkit-autofill:focus,
.small-subscription-form .subscribe-hbspt-form>form>.hs_email>.input>input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset !important;
  background-color: #FFFFFF !important;
}

.small-subscription-form .subscribe-hbspt-form>form>.hs_email>.input>input.invalid.error {
  border: 1px solid #ed5567;
}

.small-subscription-form .subscribe-hbspt-form .hs-button {
  margin: 0;
  width: auto;
  font-size: 14px;
  line-height: 26px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 6px;
  color: #fff;
  background-color: #0006ff;
  font-family: Bold;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  user-select: none;
  width: 100%;
}

.small-subscription-form .subscribe-hbspt-form .hs-button:hover {
  background-color: #0309d0;
}

@media screen and (max-width: 1250px) {
  .small-subscription-form {
    display: none;
  }
}
.page {
  overflow: visible;
}

.article {
  padding-top: 25px;
  margin-bottom: 202px;
}

.article__preview img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.article__header {
  position: relative;
  z-index: 1;
}

.article__left-side {
  position: absolute;
  top: 6px;
  width: 168px;
  font-size: 16px;
  line-height: 24px;
}

.article__left-side p {
  margin-bottom: 43px;
}

.article__left-side {
  left: 0;
}

.article__right-side {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-align-items: flex-end;
  align-items: flex-end;
  right: 0;
}

.article__right-side .link {
  margin: 0px 0px 15px 0px;
}

.article__right-side p {
  text-align: left;
  margin-bottom: 48px;
}

.article__right-side-categories .category-item {
  margin-bottom: 8px;
}

.back-link-bottom,
.socials-list-bottom {
  display: none;
}

.article__preview {
  margin-bottom: 72px;
}

.article__content-container {
  position: relative;
}

.article__content {
  width: 720px;
  margin: auto;
}

.article__title {
  padding-top: 100px;
  margin-bottom: 24px;
  text-align: center;
}

.article__content h1:not(:first-of-type) {
  margin-top: 40px;
}

.article__editor h3 {
  font-family: ExtraBold;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -.5px;
  margin: 40px 0;
}

.article__info {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  margin-bottom: 24px;
  white-space: nowrap;
}

.article__info div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  margin-right: 26px;
}

.article__info div img {
  display: block;
  max-width: 18px;
  margin-right: 11px;
}

.article__info .article__info-user img {
  display: block;
  max-width: none;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 50%;
}

.article__editor p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  margin: 40px 0;
}

.article__editor p a,
.article__editor table a {
  color: #0006ff;
}

.article__editor h2 {
  font-family: ExtraBold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.5px;
  margin: 40px 0;
}

.article__editor h4 {
  font-family: ExtraBold;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  margin: 40px 0;
}

.article__editor blockquote {
  display: block;
  position: relative;
  padding: 88px 40px 36px;
  border: 2px solid #f0f0f0;
  border-radius: 6px;
  margin: 40px 0;
}

.article__editor blockquote p {
  font-style: Italic;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -.5px;
  margin: 0;
}

.article__editor blockquote p+p {
  margin-top: 15px;
}

.article__editor blockquote:before {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 38px;
  width: 38px;
  height: 32px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzOCAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIyLjM1MyAzMlYyNi4zODgxQzI0LjQwODggMjUuNjcxNiAyNi4xOTgyIDI0LjM1ODIgMjcuNzIxIDIyLjQ0NzhDMjkuMzIgMjAuNTM3MyAzMC4xMTk1IDE4LjIyODkgMzAuMTE5NSAxNS41MjI0SDIyLjM1M1YwSDM4LjAwMDFWMTQuMDg5NkMzOC4wMDAxIDE5LjE4NDEgMzYuNDM5MiAyMy4yODM2IDMzLjMxNzQgMjYuMzg4MUMzMC4yNzE3IDI5LjQxMjkgMjYuNjE2OSAzMS4yODM2IDIyLjM1MyAzMloiIGZpbGw9IiNGRkQ0MDAiLz4KPHBhdGggZD0iTTEuMjQ5MDdlLTA2IDMyVjI2LjM4ODFDMi4wNTU4MiAyNS42NzE2IDMuODQ1MTQgMjQuMzU4MiA1LjM2Nzk3IDIyLjQ0NzhDNi45NjY5NCAyMC41MzczIDcuNzY2NDIgMTguMjI4OSA3Ljc2NjQyIDE1LjUyMjRIMFYwSDE1LjY0NzFWMTQuMDg5NkMxNS42NDcxIDE5LjE4NDEgMTQuMDg2MiAyMy4yODM2IDEwLjk2NDQgMjYuMzg4MUM3LjkxODcxIDI5LjQxMjkgNC4yNjM5MiAzMS4yODM2IDEuMjQ5MDdlLTA2IDMyWiIgZmlsbD0iI0ZGRDQwMCIvPgo8L3N2Zz4K);
}

.article__editor strong {
  font-family: ExtraBold;
}

.article__editor ul,
.article__editor ol {
  margin: 40px 0;
  padding: 0;
  list-style: none;
}

.article__editor ol {
  list-style-type: none;
  counter-reset: list-counter;
}

.article__editor ol li {
  margin-left: 0;
  list-style-type: none !important;
  position: relative;
  padding-left: 44px;
}

.article__editor ol li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 4px;
  font-family: Bold;
  font-size: 14px;
  line-height: 14px;
  color: #0006FF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #E5E8FF;
  width: 24px;
  height: 24px;
}

.article__editor ul li {
  padding-left: 34px;
}

.article__editor li {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -.5px;
}

li {
  list-style-type: none;
}

.article__editor ul li:before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #E5E8FF;
}

.article__editor ul li:after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0020FF;
}

.article__editor p img {
  height: auto;
  display: block;
  border-radius: 6px;
  margin: 0 auto;
  max-width: 100%;
}

.article__editor p img.img-left {
  margin-left: 0;
}

.article__editor p img.img-right {
  margin-right: 0;
}

.article__editor .quote {
  position: relative;
  padding: 36px;
  margin: 48px 0;
}

.article__editor .quote:before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 0;
  border-left: 4px solid #ffd400;
  border-top: 4px solid #ffd400;
}

.article__editor .quote:after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 4px solid #ffd400;
  border-bottom: 4px solid #ffd400;
}

.article__editor .quote p {
  margin: 0;
}

.category-item {
  margin: 0 8px 8px 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  height: 24px;
  padding: 0px 8px !important;
  border-radius: 4px;
  font-family: Bold;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.1px;
  text-indent: 0.2px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: fit-content;
}

.article__editor table {
  width: 100%;
  border: none;
  border-spacing: 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article__editor table tr {
  height: 24px;
}

.article__editor table tr th,
.article__editor table tr td {
  height: 24px;
  width: 25%;
  text-align: center;
  border: 2px solid #f5f5f5;
  border-top: none;
  border-right: none;
  font-size: 14px;
  line-height: 20px;
  padding: 14px 15px;
}

.article__editor table th:last-of-type,
.article__editor table td:last-of-type {
  border-right: 2px solid #ebebeb;
}

.article__editor table tr:nth-of-type(odd) td,
.article__editor table tr th {
  background-color: #fafafa;
}

.socials-list-right {
  display: flex;
  flex-direction: column;
  width: 216px;
}

.socials-list-right p {
  margin: 0 0 4px 0;
  letter-spacing: 0;
  font-family: Bold;
  font-size: 16px;
  line-height: 26px;
}

.socials-list-right .socials-list__list {
  margin: 0;
}

.socials-list-right .socials-list__list>div+div {
  margin-left: 4px;
}

.right-banner {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 216px;
  background: #F1F3FF;
  border-radius: 6px;
  margin-bottom: 8px;
  padding: 24px 16px 24px 16px;
}

.right-banner-title {
  font-family: ExtraBold;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.right-banner-description {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.2px;
  color: #808080;
  margin-bottom: 24px;
}

.right-banner-button {
  padding: 6px 32px 6px 32px;
  width: 100%;
  border-radius: 6px;
  font-size: 14px;
  line-height: 26px;
  font-family: Bold;
}

.right-banner>svg,
.right-banner>img {
  position: absolute;
}

.right-banner>img:nth-child(1) {
  top: -24px;
  right: 0px;
}

.right-banner>svg:nth-child(2) {
  left: 5px;
  bottom: 4px;
}

.right-banner>svg:nth-child(3) {
  left: 12px;
  bottom: -24px;
}

.left-side {
  position: absolute;
  left: 0;
  top: 0;
  height: calc(100% + 24px);
}

.navigation-menu {
  position: sticky;
  top: 92px;
  width: 216px;
  display: inline-block;
  height: calc(100vh - 92px);
  max-height: 100%;
}

.navigation-content {
  cursor: pointer;
  font-family: Bold;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 12px;
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.navigation-content>div {
  margin-right: 8px;
}

.navigation-dropdown {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.navigation-dropdown.show {
  height: fit-content;
}

.navigation-dropdown>div {
  display: flex;
  align-items: center;
  margin-left: 20px;
  max-width: 190px;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease;
}

.navigation-dropdown>div:not(.viewed):hover {
  color: #0006FF;
}

.navigation-dropdown>.viewed {
  color: #040505;
}

.navigation-dropdown>div:not(:last-child) {
  margin-bottom: 12px;
}

.navigation-dropdown>div::before {
  content: '';
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFFFFF;
  position: relative;
  left: -20px;
  transition: background-color 0.3s ease;
}

.navigation-dropdown>.viewed::before {
  background-color: #0006FF;
}

.navigation-content .arrow {
  transition: transform 0.3s ease-in-out;
}

.navigation-content .arrow-down {
  transform: rotate(180deg);
}

#progress-bar {
  width: 0%;
  max-width: 100%;
  transition: width 0.25s;
  height: 4px;
  background-color: #FFD400;
  position: sticky;
  top: 68px;
  z-index: 99;
}

.signature-name-wrapper .signature-name {
  font-family: Bold;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
}

.signature-name-wrapper .signature-job-title {
  font-size: 14px;
  line-height: 20px
}

@media screen and (min-width: 1250px) {
  .article__content .article__title {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2px;
  }

  .article__content-container {
    position: relative;
    height: auto;
  }

  .sticky-wrapper-right-banner,
  .sticky-wrapper-right-socials {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }

  .sticky-wrapper-right-socials .socials-list-right {
    position: -webkit-sticky;
    position: sticky;
    top: 92px;
    z-index: 5;
  }

  .sticky-wrapper-right-banner .right-banner {
    position: -webkit-sticky;
    position: sticky;
    top: 92px;
  }

  .navigation-dropdown>div {
    margin-left: 12px;
  }

  .navigation-dropdown>div::before {
    left: -12px;
  }
}

@media screen and (max-width: 1250px) {
  body.block-scroll {
    overflow: hidden;
  }

  .navigation-dropdown.show {
    overflow-y: auto !important;
  }

  .article {
    margin-bottom: 145px;
  }

  .article__preview {
    margin-bottom: 40px;
  }

  .article__left-side,
  .article__right-side {
    position: static;
  }

  .article__content .socials-list {
    display: none;
  }

  .article__content-container .left-side {
    position: sticky;
    top: 68px;
    height: auto;
    background-color: #FFFFFF;
    z-index: 10;
  }

  .article__content-container .left-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc((100% - 100vw) / 2);
    height: 100%;
    width: 100vw;
    background-color: inherit;
    box-shadow: none;
    transition: box-shadow 0.3s ease;
  }

  .article__content-container .left-side.sticky::before {
    border-bottom: 1px solid #EBEBEB;
    box-shadow: 0px 0px 22px -6px rgba(5, 35, 107, 0.12);
  }

  .article__content-container .left-side .navigation-menu {
    position: relative;
    height: fit-content;
    top: auto;
    width: 100%;
  }

  .article__content-container .left-side .navigation-content {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 4px;
    height: 52px;
  }

  .article__content-container .left-side .navigation-content>div {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.5px;
  }

  .article__content-container .left-side .navigation-menu .navigation-dropdown>div {
    width: auto;
    max-width: none;
    font-size: 16px;
  }

  #progress-bar {
    top: 65px;
    z-index: 300;
  }
}

@media screen and (max-width: 1250px) and (min-width: 761px) {
  .right-banner {
    position: relative;
    width: auto;
    align-items: flex-start;
    padding: 24px 40px 24px 40px;
    text-align: left;
    border-radius: 12px;
  }

  .right-banner-title {
    font-size: 26px;
    line-height: 32px;
  }

  .right-banner-description {
    font-size: 18px;
    line-height: 28px;
  }

  .right-banner-button {
    width: auto;
    padding: 14px 32px 14px 32px;
  }

  .right-banner>img:nth-child(1) {
    right: 20px;
  }
}

@media screen and (max-width: 760px) {
  .right-banner {
    margin-left: -20px;
    margin-right: -20px;
    width: auto;
    border-radius: 0;
    padding: 24px 50px 24px 50px;
  }

  .right-banner-title {
    font-size: 24px;
  }

  .article {
    margin-bottom: 72px;
  }

  .article__preview {
    margin-bottom: 24px;
  }

  .article__title {
    text-align: left;
    padding-top: 48px;
  }

  .article__info {
    justify-content: left;
    -ms-justify-content: left;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .article__info-user {
    width: 100%;
    margin-bottom: 16px;
  }

  .article__preview img {
    height: 168px;
    object-fit: cover;
  }

  .article__left-side a {
    display: none;
  }

  .article__content {
    width: 100%;
  }

  .socials-list-bottom {
    display: block;
    margin: 64px 0 32px 0;
  }

  .back-link-bottom {
    display: block;
    margin-top: 64px;
    max-width: 330px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
  }

  .article__editor p {
    font-size: 18px;
    line-height: 28px;
    margin: 24px 0;
  }

  .article__editor h2 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 24px;
  }

  .article__editor h3 {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: -.5px;
    margin: 32px 0;
  }

  .socials-list-bottom .socials-list__list {
    margin-left: 0;
  }

  .article__editor blockquote {
    padding: 78px 22px 20px;
  }

  .article__editor blockquote:before {
    top: 24px;
    left: 24px;
  }

  .article__editor li {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -.5px;
  }

  .article__editor li+li {
    margin-top: 20px;
  }

  .article__editor .quote {
    position: relative;
    padding: 24px;
    margin: 40px 0;
  }

  .article__editor .quote:before {
    width: 29px;
    height: 29px;
    border-left-width: 3px;
    border-top-width: 3px;
  }

  .article__editor .quote:after {
    width: 29px;
    height: 29px;
    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .article__editor iframe {
    width: 100% !important;
  }

  .signature-name-wrapper .signature-name {
    font-size: 16px;
    line-height: 26px;
  }

  .signature-name-wrapper .signature-job-title {
    font-size: 12px;
  }

  .right-banner-button {
    width: 100%;
  }
}

.article__info-user a {
  display: contents;
  color: #999999;
  transition: color .2s;
}

.article__info-user a:hover {
  color: #0006ff;
}
