.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);
  }
}
.guides-header-wrapper {
  height: 360px;
  color: #fff;
  background-color: #040505;
  display: flex;
  align-items: center;
}

.guides-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guides-header h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 56px;
  line-height: 56px;
  letter-spacing: -2px;
  font-family: ExtraBold;
  margin-bottom: 40px;
}

.guides-header p {
  width: 610px;
  text-align: center;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
}

.guide-content {
  padding-top: 112px;
  padding-bottom: 168px;
  display: grid;
  grid-template-columns: 354px 354px 354px;
  justify-content: space-between;
  grid-row-gap: 50px;
}

.guide-content__item {
  width: 354px;
  height: 500px;
  display: block;
  border: 2px solid #ebebeb;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
}

.guide-content__item:hover .guide-content__item-description {
  transform: scale(1);
}

.guide-content__item img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.guide-content__item-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: rgba(4, 5, 5, 0.85);
  padding: 48px 40px 48px 40px;
  color: #ffffff;
  transform: scale(0);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.guide-content__item-description h3 {
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  font-family: ExtraBold;
}

.guide-content__item-description p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  max-height: 248px;
  overflow: hidden;
}

.golden-link_arrow {
  bottom: 48px;
  position: absolute;
  transition: 0.4s;
  color: #ffd400;
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-family: ExtraBold;
  cursor: pointer;
}

.golden-link_arrow div {
  position: relative;
  top: 2px;
  left: 6px;
  display: inline-block;
  width: 14px;
  height: 14px;
}

.golden-link_arrow svg {
  display: block;
  position: absolute;
  top: 3px;
  right: -14px;
  margin-top: -7px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.golden-link_arrow div:before {
  content: "";
  display: block;
  position: absolute;
  top: 3.2px;
  right: -5px;
  height: 4px;
  width: 11px;
  background-color: #ffd400;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.golden-link_arrow:hover div:before {
  transform: scaleX(1.5);
}

.golden-link_arrow:hover div svg:first-of-type {
  transform: translateX(4px) !important;
}

.golden-link_arrow svg path {
  transition: 0.4s;
}

@media screen and (max-width: 1250px) {
  .guide-content {
    grid-template-columns: 354px 354px;
  }
}

@media screen and (max-width: 760px) {
  .guides-header-wrapper {
    height: 300px;
  }

  .guides-header h1 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -1px;
  }

  .guides-header p {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .guide-content {
    padding-top: 95px;
    padding-bottom: 128px;
  }

  .guide-content__item {
    width: 335px;
    height: 476px;
  }

  .guide-content__item-description h3 {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .guide-content {
    grid-template-columns: 335px;
    justify-content: center;
  }
}


