@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  font: inherit;
  box-sizing: border-box;
}

.footer .lang {
  display: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

html {
  background-color: #000;
  font-family: "Inter", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-focus-ring-color: rgba(255, 255, 255, 0);
  cursor: default;
}

body {
  font-size: 100%;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

a {
  background: transparent;
}

*:focus,
*:active,
*:hover {
  outline: none;
}

hr {
  box-sizing: content-box;
  height: 0;
}

ol,
ul {
  list-style: none;
}

pre {
  -moz-tab-size: 4;
  tab-size: 4;
  white-space: pre-wrap;
}

q {
  quotes: "“" "”" "‘" "’";
}

img {
  border: none;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button {
  overflow: visible;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: none;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

button,
input,
select[multiple],
textarea {
  background-image: none;
}

input,
select,
textarea {
  border-radius: 0;
  box-shadow: none;
}

input,
textarea {
  resize: none;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

[placeholder]:focus::-moz-placeholder {
  color: transparent;
}

[placeholder]:focus:-ms-input-placeholder {
  color: transparent;
}

[placeholder]:focus::placeholder {
  color: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.btn {
  display: inline-block;
  height: auto;
  background-color: #4285f4;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  border: none;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 22px;
}
.btn strong {
  font-weight: 700;
}
.btn:hover {
  background-color: #f7931a;
}
.btn:active {
  background-color: #d6d6d6;
}
.btn_contact {
  min-width: 300px;
}
.btn_contact span {
  display: inline-block;
  position: relative;
  padding-left: 35px;
}
.btn_contact span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  width: 20px;
  height: 17px;
  background-image: url("../images/mail-icon.svg");
  background-size: 20px 17px;
}

html, body {
  overflow-x: hidden;
}

.description {
  display: block;
}

.socials {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.socials__btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #D6D6D6;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  transition: all 0.3s;
  padding: 7px;
}
.socials__btn--tg {
  padding-left: 4px;
}
.socials__btn.android {
  padding-left: 11px;
}
.socials__btn.android:before {
  content: "";
  background: url("../images/google-play.png") no-repeat center/contain;
  display: block;
  width: 22px;
  height: 22px;
}
.socials__btn.ios {
  padding: 9px;
}
.socials__btn.ios:before {
  content: "";
  background: url("../images/appstore.svg") no-repeat center/contain;
  display: block;
  width: 22px;
  height: 22px;
}
.socials__btn svg path {
  transition: all 0.3s;
}
.socials__btn:hover {
  background-color: #4285F4;
  border-color: #4285F4;
}
.socials__btn:hover svg path {
  fill: #fff;
}
.socials__btn:active {
  background-color: #D6D6D6;
  border-color: #D6D6D6;
}
.socials__btn:not(:last-child) {
  margin-right: 10px;
}

.mobile-link,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-right: 5px;
  padding: 0 20px;
  text-decoration: none;
  min-width: 180px;
  border: 1px solid #d6d6d6;
  border-radius: 40px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: bold;
  color: #4285f4;
  font-size: 14px;
  transition: all 0.2s;
}
.mobile-link b,
.more-link b {
  color: #000;
}
.mobile-link:hover,
.more-link:hover {
  border-color: #4285f4;
  background-color: #4285f4;
  color: #fff;
}
.mobile-link:hover svg path,
.more-link:hover svg path {
  fill: #fff;
}
.mobile-link:active,
.more-link:active {
  background: #D6D6D6;
}
.mobile-link svg,
.more-link svg {
  display: block;
  margin-left: 12px;
}
@media (max-width: 768px) {
  .mobile-link,
  .more-link {
    margin-bottom: 10px;
  }
}

.mobile-link {
  min-width: 150px;
  text-align: center;
  margin-right: 5px;
  border-radius: 20px;
  border: 1px solid #CECECE;
}
.mobile-link span::after {
  display: none;
}
.mobile-link span::before {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 20px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.mobile-link.android span::before {
  background-image: url(../images/google-play.png);
}
.mobile-link.ios span::before {
  background-image: url(../images/appstore.svg);
}
.mobile-link:hover {
  background-color: #4285f4;
  border-color: #4285f4;
  color: #fff;
}
.mobile-link:active {
  background-color: #d6d6d6;
  border-color: #d6d6d6;
}
@media (max-width: 360px) {
  .mobile-link {
    margin-bottom: 10px;
  }
}

.first {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding-top: 50px;
  border-bottom: 8px solid #F71A39;
}
.first .title {
  margin: 90px auto 20px;
  font-size: 64px;
  line-height: 80px;
  max-width: 1100px;
}
.first__img {
  position: relative;
  bottom: -2px;
}
.first__text {
  margin: 0 auto 40px;
  max-width: 1000px;
  width: 100%;
}
.first__text p {
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  color: #494949;
}
.first .lang {
  position: absolute;
  top: 44px;
  right: 40px;
}
.first .lang.opened .lang__list {
  display: block;
}
@media only screen and (max-width: 767px) {
  .first .lang {
    top: auto;
    bottom: 50px;
    right: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .first {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
  }
  .first .title {
    margin-bottom: 50px;
  }
}

.promo-top {
  padding: 130px 0px 181px;
  position: relative;
  background: url("../images/top-promo-img.svg") no-repeat top/100% 100%, #fff;
}
@media (max-width: 768px) {
  .promo-top {
    background: url("../images/top-promo-img-mobile.svg") no-repeat top/100% 100%, #fff;
  }
}
.promo-top__text {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 40px;
  font-weight: normal;
  text-align: center;
  color: #FFFFFF;
  line-height: 54px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.promo-top__text--mob {
  display: none;
}
.promo-top__bkg {
  position: absolute;
  max-height: 470px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}

.footer {
  display: block;
  background-color: #000;
  padding-top: 50px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 14px;
}
.footer__logo {
  display: block;
  margin-bottom: 20px;
}
.footer__logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.footer__copyright {
  display: block;
  font-size: 12px;
  line-height: 15px;
  color: #757575;
}
.footer__menu {
  margin-bottom: 50px;
}
.footer__menu span {
  color: #B2B2B2;
  margin: 0 6px;
  font-size: 14px;
  line-height: 17px;
}

.company {
  display: block;
  color: #fff;
  margin-bottom: 26px;
}
.company__name {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 22px;
}
.company__address {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 17px;
}
.company__phone {
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 17px;
}

.link {
  color: #4285f4;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}
.link:hover {
  color: #f7931a;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 43px;
  margin: 0 auto;
  background-color: #fff;
}
.header .lang {
  position: absolute;
  top: 44px;
  right: 40px;
}

.content {
  display: block;
  width: 100%;
  background-color: #fff;
  min-height: calc(100vh - 460px);
  padding-top: 50px;
  padding-bottom: 80px;
}

.title {
  display: block;
  font-size: 5vw;
  color: #000;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .title {
    font-size: 40px;
    line-height: 1.2;
  }
}

.scroll {
  display: block;
  width: 41px;
  height: 33px;
  background-image: url("../images/scroll-icon.svg");
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

p.terms {
  margin-bottom: 70px;
}

.main {
  position: relative;
  z-index: 10;
}

.promo {
  display: block;
  padding: 146px 90px 196px;
  background-color: #fff;
  color: #fff;
  position: relative;
  z-index: 10;
  background: url("../images/promo-bkg.svg") no-repeat top/100% 100%, #fff;
}
@media (max-width: 768px) {
  .promo {
    background: url("../images/promo-bkg-mobile.svg") no-repeat top/100% 100%, #fff;
  }
}
.promo__bottom {
  position: absolute;
  top: 0px;
  max-height: 450px;
  width: 100%;
  left: 0;
  right: 0;
}
.promo .wrapper {
  max-width: 1100px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.promo .wrapper .subtitle {
  font-size: 40px;
  line-height: 54px;
  font-weight: bold;
}

.contact {
  display: block;
  background-color: #fff;
  padding-top: 50px;
}
.contact__arrow {
  margin-bottom: 60px;
}
.contact__arrow svg {
  max-width: 55px;
  height: auto;
}
.contact .subtitle {
  margin-bottom: 30px;
  font-weight: bold;
}
.contact .btn {
  margin-bottom: 15px;
  border-radius: 6px;
}
.contact .wrapper {
  max-width: 1140px;
  text-align: center;
}
.contact__bottom {
  margin: 80px 0 -3px;
}

.logo {
  display: block;
}
.logo img {
  display: block;
  max-width: 100%;
}

.menu {
  display: block;
  margin-right: 20px;
  padding-top: 10px;
}
.menu__item {
  display: block;
}
.menu__item a {
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  text-decoration: none;
  white-space: nowrap;
}
.menu__item a:hover {
  color: #f7931a;
}
@media only screen and (max-width: 480px) {
  .menu__item {
    text-align: center;
    justify-content: center;
  }
}
.menu__item + .menu__item {
  margin-top: 18px;
}
.menu__label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  color: #757575;
  margin-bottom: 18px;
}

.page {
  font-family: "Inter", sans-serif;
  background-color: #000;
  min-width: 320px;
}
@media only screen and (max-width: 768px) {
  .page_index {
    padding-top: 0;
  }
}
.page_contacts .header, .page_contacts .content {
  background: #F7F7F7;
}
.page_contacts .content, .page_second .content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_contacts .content .wrapper, .page_second .content .wrapper {
  margin-left: 0;
  margin-right: 0;
}

.text {
  display: block;
  max-width: 840px;
  padding-left: 20px;
  padding-right: 20px;
}
.text h1 {
  font-size: 48px;
  line-height: 53px;
  margin-bottom: 27px;
}
.text p {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #494949;
  margin-bottom: 15px;
  text-align: justify;
}
@media only screen and (max-width: 600px) {
  .text p {
    font-size: 14px;
    line-height: 20px;
  }
}
.text p + h2 {
  margin-top: 25px;
}
.text h2 {
  display: block;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 20px;
  color: #1f232c;
}
@media only screen and (max-width: 600px) {
  .text h2 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
  }
}
.text strong,
.text b {
  font-weight: bold;
}
.text ul {
  color: #494952;
  margin-bottom: 20px;
  list-style-type: circle;
  list-style-position: outside;
  padding-left: 20px;
}
.text ol {
  color: #494952;
  margin-bottom: 20px;
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 20px;
}
.text li {
  margin-bottom: 10px;
  line-height: 24px;
}
.text a {
  color: #4285f4;
  text-decoration: none;
}
.text a:hover {
  color: #f7931a;
}

.card {
  display: block;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  max-width: 450px;
}
.card__header {
  display: block;
  margin-bottom: 15px;
}
.card__header h2 {
  display: block;
  font-size: 32px;
  line-height: 24px;
  color: #000;
  font-weight: bold;
}
.card__body p {
  color: #494949;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 30px;
}
.card__footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px;
}
.card--second {
  text-align: center;
}
.card--second svg {
  margin-bottom: 30px;
}
.card--second .title {
  text-align: center;
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 10px;
  padding: 0;
}
.card--second .btn {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 17px;
  padding-bottom: 17px;
  border-radius: 6px;
  background-color: #4285f4;
}
.card--second .btn:hover {
  color: #fff;
}
.card--second .card__footer {
  padding: 0;
}

/*
* Modificators
*/
.card_form {
  width: 100%;
  max-width: 450px;
  margin-left: 0;
  margin-right: 0;
  background-color: #fff;
  padding: 40px 30px 20px;
  height: auto;
}
.card_form.card--second {
  max-width: 500px;
  padding: 40px 30px 30px;
}
.card_form .form {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.card_form h1 {
  display: block;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 24px;
  font-weight: bold;
  color: #000;
}
.card_form > p {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #494949;
  margin-bottom: 40px;
  width: 100%;
}

.card_success {
  margin-left: auto;
  margin-right: auto;
  padding: 30px 30px 10px;
  width: 100%;
  max-width: 450px;
}
.card_success .card__body {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card_success .card__body h2 {
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #000;
}

.card_error {
  text-align: center;
  max-width: 550px;
  padding: 40px 30px 30px;
  margin: 0 auto;
}
.card_error .card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 290px;
}
.card_error .icon {
  margin-bottom: 20px;
}
.card_error .error-label {
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}
.card_error .error-title {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.1px;
  font-weight: bold;
  margin-bottom: 40px;
}
.card_error .btn {
  margin-top: auto;
  width: 220px;
  text-align: center;
}

.form__input {
  display: block;
  margin-bottom: 25px;
}
.form__input input {
  width: 100%;
  height: 50px;
  color: #000;
  font-size: 16px;
  border: none;
  outline: none;
  border-bottom: 1px solid #d6d6d6;
}
.form__input input:focus {
  border-color: #4285f4;
}
.form__input input.error {
  border-color: red;
}
.form__input input::placeholder {
  color: #757575;
}
.form__textarea {
  display: block;
  margin-bottom: 25px;
}
.form__textarea textarea {
  width: 100%;
  color: #000;
  font-size: 16px;
  line-height: 1.25;
  border: none;
  outline: none;
  border: 1px solid #d6d6d6;
  padding: 15px;
  height: 128px;
  border-radius: 6px;
}
.form__textarea textarea:focus {
  border-color: #4285f4;
}
.form__textarea textarea.error {
  border-color: red;
}
.form__textarea textarea::placeholder {
  color: #757575;
}
.form__recapcha {
  display: block;
  margin-bottom: 10px;
}
.form__recapcha .g-recaptcha {
  display: flex;
  justify-content: center;
}
.form input[type=submit] {
  min-width: 200px;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  border: none;
  outline: none;
  background-color: #4285f4;
  color: #fff;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.form input[type=submit]:hover {
  background-color: #f7931a;
}
.form__row {
  display: flex;
  justify-content: space-between;
}
.form__row .form__input {
  width: 100%;
}
.form__row .form__input + .form__input {
  margin-left: 20px;
}
.form__footer {
  text-align: right;
  padding-top: 20px;
}

.notification {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  padding: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 70px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  font-size: 22px;
  line-height: 24px;
  color: #fff;
  transform: translateY(-110%);
  transition: transform 0.5s;
  z-index: 200;
}
.notification p {
  font-size: 14px;
}
.notification_success {
  background-color: rgba(26, 194, 42, 0.8);
}
.notification_error {
  background-color: rgba(247, 66, 73, 0.8);
}
.notification.active {
  transform: translateY(0);
}

.error-label {
  display: block;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #f7931a;
}

.popup {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: scroll;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.popup_transparent {
  background-color: transparent;
}
.popup_alert .popup__handler {
  padding-top: 30px;
}
.popup_alert .popup__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
}
.popup_alert h2 {
  font-size: 24px;
  display: block;
  color: #000;
  line-height: 24px;
}

.popup.active {
  display: block;
}

@media only screen and (max-width: 500px) {
  .popup {
    padding: 0;
    height: 100%;
  }
}
.popup:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

@media only screen and (max-width: 500px) {
  .popup:before {
    display: none;
  }
}
.popup__handler {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  width: 100%;
  max-width: 450px;
  margin: 80px auto;
}

@media only screen and (max-width: 500px) {
  .popup__handler {
    display: block;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    max-width: none;
    border-radius: 0;
  }
}
.popup__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 24px;
  line-height: 24px;
  position: relative;
}

.popup__header img {
  display: block;
  margin-right: 10px;
}

.popup__body {
  padding: 0 30px;
  font-size: 14px;
  line-height: 16px;
  color: #494949;
  max-height: 350px;
  overflow-y: scroll;
}

.popup__body p {
  margin-bottom: 20px;
}

.popup__body ul {
  margin-bottom: 20px;
}

.popup__body li {
  margin-bottom: 10px;
}

.popup__body b,
.popup__body strong {
  font-weight: 700;
}

@media only screen and (max-width: 500px) {
  .popup__body {
    padding: 30px 20px;
  }
}
.popup__footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px 30px;
}

.popup__label {
  display: block;
  color: #f7931a;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 20px;
  font-weight: bold;
}

.errorlist {
  color: #ec1b1b;
  font-size: 12px;
  line-height: 14px;
  margin-top: 5px;
}

.popup_attention {
  z-index: 9999;
}

.popup_attention .popup__body {
  padding-top: 50px;
}

.popup_attention .popup__body h3 {
  font-size: 24px;
  line-height: 27px;
  margin-bottom: 10px;
  color: #000;
}

.popup_attention .popup__footer {
  padding-top: 60px;
  padding-bottom: 25px;
}

.input-row {
  margin-top: 22px;
}
.input-row input {
  border: none;
  padding: 0px;
  outline: none;
  border-radius: 0px;
  font-size: 16px;
  color: #000;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid #c9c9d0;
  font-family: "Inter", sans-serif;
}
.input-row input.error {
  border-color: red;
}
.input-row input:focus {
  border-color: #4285f4;
}
.input-row textarea {
  font-size: 16px;
  color: #000;
  width: 100%;
  padding-bottom: 14px;
  border: none;
  border-bottom: 1px solid #c9c9d0;
  font-family: "Inter", sans-serif;
  outline: none;
  height: 33px;
}
.input-row textarea.error {
  border-color: red;
}
.input-row textarea:focus {
  border-color: #4285f4;
}

.subtitle {
  display: block;
  font-size: 40px;
  line-height: 54px;
  font-weight: 400;
  color: #000;
}
.subtitle_white {
  color: #fff;
}

.subtitle_white {
  color: #fff;
}

.wrapper {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

::-moz-selection {
  background-color: #F71A39;
  color: #fff;
}

::selection {
  background-color: #F71A39;
  color: #fff;
}

.lang {
  display: block;
  width: 70px;
  position: relative;
  z-index: 100;
  text-align: left;
  flex-shrink: 0;
}
.lang__current {
  display: block;
  width: 100%;
  height: 30px;
  position: relative;
  line-height: 30px;
  padding-left: 30px;
  background: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  border: 1px solid #d6d6d6;
  color: #323232;
  cursor: default;
  text-transform: uppercase;
  overflow: hidden;
}
.lang__current:hover {
  color: #3e82f7;
}
.lang__current img {
  display: block;
  position: absolute;
  top: 9px;
  left: 9px;
  width: 16px;
  height: 11px;
}
.lang__current:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 13px;
  right: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #d0d0d0;
}
.lang__list {
  display: none;
  list-style-type: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  background: #ffffff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  position: absolute;
  width: 100%;
  margin-top: 5px;
}
.lang__item {
  display: block;
  width: 100%;
  height: 28px;
  padding-left: 9px;
  line-height: 28px;
  color: #323232;
  font-size: 13px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}
.lang__item img {
  margin-right: 6px;
  width: 16px;
  height: 11px;
  vertical-align: middle;
}
.lang__item:hover {
  color: #fff;
  background-color: #3e82f7;
}
.lang.active .lang__current:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 12px;
  right: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: none;
  border-bottom: 4px solid #d0d0d0;
}
.lang.active .lang__list {
  display: block;
}

.note {
  display: block;
  text-align: center;
  color: #757575;
  font-size: 11px;
  line-height: 12px;
}

.products {
  display: block;
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 20px;
  position: relative;
  z-index: 10;
}
.products .wrapper {
  max-width: 1040px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 40px;
}
.products__title {
  display: block;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}
.products__subtitle {
  display: block;
  font-weight: bold;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 15px;
}
.products__subtitle a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}
.products__subtitle a:hover {
  color: #4285f4;
}
.products__subtitle:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 15px;
}
.products__list {
  counter-reset: why;
}
.products__text {
  font-size: 18px;
  line-height: 28px;
  color: #494949;
}
.products__text p {
  margin-bottom: 20px;
}
.products__text p a {
  color: #4285F4;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: bold;
}
.products__text p a:hover {
  color: #F7931A;
}
.products__img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 460px;
  height: 320px;
  flex-shrink: 0;
  position: relative;
  background-color: #fff;
  margin-right: 90px;
}
.products__img-border:before, .products__img-border:after {
  content: "";
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-radius: 6px;
  z-index: 2;
}
.products__img-border:after {
  top: -15px;
  left: -15px;
  background-color: #F7F7F7;
  z-index: 1;
}
.products__img img {
  display: block;
  position: relative;
  z-index: 3;
}
.products__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  counter-increment: why;
  margin-bottom: 50px;
}
.products__item:before {
  content: counter(why);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 36px;
  line-height: 44px;
  color: #000;
  border-bottom: 2px solid #F71A39;
  width: 75px;
  font-weight: bold;
  text-align: center;
  animation-name: fadeIn;
  animation-delay: 2s;
}
.products__item:nth-child(even) .products__row {
  flex-direction: row-reverse;
}
.products__item:nth-child(even) .products__img {
  margin-right: 20px;
  margin-left: 70px;
}
.products__item_browser .products__img img {
  margin-left: auto;
}
.products__item_browser .products__subtitle:before {
  background-image: url("../images/cryptotab-icon.svg");
}
.products__item_ctpro .products__img img {
  margin: auto auto 1px auto;
  width: 420px;
  height: 305px;
}
.products__item_ctpro .products__subtitle:before {
  background-image: url("../images/ct-pro-icon.svg");
}
.products__item_ctlite .products__img img {
  margin: auto auto 1px auto;
  width: 420px;
  height: 305px;
}
.products__item_ctlite .products__subtitle:before {
  background-image: url("../images/ct-lite-icon.svg");
}
.products__item_ctfarm .products__img img {
  margin-bottom: -3px;
  width: 450px;
  height: 314px;
}
.products__item_ctfarm .products__subtitle:before {
  background-image: url("../images/ctfarm-icon.svg");
}
.products__item_start .products__img img {
  margin-left: auto;
}
.products__item_start .products__subtitle:before {
  background-image: url("../images/ct-start-icon.svg");
}
.products__item_mobile .products__img img {
  margin: auto auto 1px auto;
}
.products__item_mobile .products__subtitle:before {
  background-image: url("../images/cryptotab-icon.svg");
}
.products__item_search .products__img img {
  margin: auto 1px 1px auto;
}
.products__item_search .products__subtitle:before {
  background-image: url("../images/cryptosearch-icon.svg");
}
.products__item_wallet .products__img img {
  margin: auto auto 1px auto;
}
.products__item_wallet .products__subtitle:before {
  background-image: url("../images/icon-nc-wallet.svg");
}
.products__item_ctaccess .products__img img {
  margin: auto;
}
.products__item_ctaccess .products__subtitle:before {
  background-image: url("../images/icon-ct-access.svg");
}
.products__item_ctags .products__img img {
  margin: auto auto 1px auto;
}
.products__item_ctags .products__subtitle:before {
  background-image: url("../images/icon-ctags.svg");
}
.products__item_memestab .products__img img {
  margin: auto 1px 1px auto;
}
.products__item_memestab .products__subtitle:before {
  background-image: url("../images/icon-memestab.svg");
}
.products__item_collect .products__img img {
  margin: auto 1px 1px auto;
}
.products__item_collect .products__subtitle:before {
  background-image: url("../images/icon-collect.svg");
}
.products__item_eggs .products__img img {
  margin: auto 1px 1px auto;
}
.products__item_eggs .products__subtitle:before {
  background-image: url("../images/icon-eggs.svg");
}
.products__item_upcoming .products__img img {
  margin: auto;
}
.products__item_upcoming .products__subtitle:before {
  background-image: url("../images/icon-upcoming.svg");
}
.products__item_vpn .products__img img {
  margin: auto auto 1px auto;
}
.products__item_vpn .products__subtitle:before {
  background-image: url("../images/ct-vpn-icon.svg");
}
.products__item_click .products__img img {
  margin: auto 1px 1px auto;
}
.products__item_click .products__subtitle:before {
  background-image: url("../images/cbclick-icon.svg");
}
.products__item_cttabs .products__img img {
  margin: auto auto auto auto;
  width: 448px;
  height: 288px;
}
.products__item_cttabs .products__subtitle:before {
  background-image: url("../images/ct-tabs-icon.svg");
}
.products__row {
  display: flex;
  max-width: 1050px;
}
.products__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  width: 100%;
}

.page_ru .promo-top__bkg {
  max-height: 530px;
}

@media (max-width: 1150px) {
  .promo {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 800px) {
  .socials {
    justify-content: center;
  }
  .first {
    padding: 30px 20px 0px;
  }
  .first .logo,
  .first .logo-animated--dark {
    max-width: 100%;
  }
  .first .title {
    margin: 50px 0 15px;
    font-size: 36px;
    line-height: 48px;
  }
  .first__text p {
    font-size: 16px;
    line-height: 155%;
  }
  .first__img {
    width: 100vw;
    position: relative;
  }
  .promo-top {
    padding: 70px 20px 90px;
    font-size: 26px;
    line-height: 40px;
  }
  .promo-top__bkg {
    max-height: 380px;
  }
  .promo-top__text {
    font-size: 26px;
    line-height: 40px;
    display: none;
  }
  .promo-top__text--mob {
    display: block;
  }
  .page_ru .promo-top__bkg {
    max-height: none;
  }
  .page_ru .promo-top__text {
    font-size: 21px;
  }
  .page_et .promo-top__text {
    font-size: 22px;
  }
  .footer .lang {
    display: block;
    margin: 0 auto 60px;
  }
  .footer .lang__current {
    background: #282828;
    border: 1px solid #757575;
    color: #fff;
  }
  .products__item {
    padding-top: 40px;
  }
  .products__item_upcoming .products__img img {
    width: 149px;
    height: auto;
  }
  .products__item_ctaccess .products__img img {
    width: 236px;
    height: auto;
  }
  .products__item_cttabs .products__img img {
    width: 314px;
    height: auto;
  }
  .products__item_vpn .mobile-link {
    min-width: 140px;
  }
  .products__item_vpn .products__img img {
    width: 326px;
    height: auto;
  }
  .products__item_click .mobile-link {
    min-width: 140px;
  }
  .products__item_wallet .products__img img, .products__item_click .products__img img {
    width: 322px;
    height: auto;
  }
  .products__item_ctfarm .products__img img, .products__item_start .products__img img, .products__item_ctags .products__img img, .products__item_memestab .products__img img, .products__item_eggs .products__img img, .products__item_collect .products__img img {
    height: auto;
    width: 316px;
  }
  .products__item_ctpro .products__img img, .products__item_ctlite .products__img img {
    width: 296.21px;
    height: 215.11px;
  }
  .page_et .products__item_vpn .more-link, .page_et .products__item_vpn .mobile-link, .page_et .products__item_click .more-link, .page_et .products__item_click .mobile-link {
    padding: 0;
  }
  .products {
    padding-top: 60px;
  }
  .products__subtitle:before {
    margin: 0 auto 10px;
  }
  .products__subtitle {
    font-size: 24px;
    line-height: 155%;
    margin-bottom: 10px;
  }
  .products__text p {
    font-size: 15px;
    line-height: 155%;
  }
  .products .wrapper {
    margin-bottom: 50px;
  }
  .products__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .products__text {
    font-size: 16px;
    line-height: 155%;
    margin: 0;
  }
  .products__item:before {
    width: 50px;
    font-size: 32px;
    line-height: 39px;
  }
  .promo {
    padding: 80px 0 100px;
  }
  .promo .wrapper .subtitle {
    font-size: 26px;
    line-height: 40px;
  }
  .promo__bottom {
    max-height: 290px;
  }
  .lang {
    display: none;
  }
  .contact {
    padding-top: 40px;
  }
  .contact__arrow {
    margin-bottom: 40px;
  }
  .contact .subtitle {
    font-size: 26px;
    margin-bottom: 40px;
    line-height: 40px;
  }
  .products__img {
    width: 324.42px;
    height: 225.68px;
    margin: 30px auto 0px !important;
  }
  .products__img-border:after {
    top: -10px;
    left: -10px;
  }
  .products__img {
    transform: translateX(5px);
  }
  .products__row,
  .products__item:nth-child(even) .products__row {
    flex-direction: column-reverse;
    text-align: center;
  }
  .products__item:nth-child(even) .products__img {
    margin-left: 0;
    margin-right: 0;
  }
  .why-speed {
    text-align: left;
    position: static;
  }
  .products__img_exp img {
    margin-right: 0;
  }
  .products__img_speed {
    padding-left: 0;
    padding-right: 0;
  }
  .products__label {
    top: -25px;
    left: 127px;
  }
}
@media (max-width: 600px) {
  .contact .btn {
    max-width: 100%;
    width: 100%;
  }
  .page_fr .promo-top__bkg {
    max-height: 470px;
  }
}
@media (max-width: 500px) {
  .page_de .promo-top__bkg, .page_es .promo-top__bkg, .page_it .promo-top__bkg {
    max-height: 450px;
  }
  .page_de .promo-top__text, .page_es .promo-top__text, .page_it .promo-top__text {
    font-size: 24px;
  }
  .page_pt .promo-top__bkg {
    max-height: 470px;
  }
  .page_pt .promo-top__text {
    font-size: 24px;
  }
}
@media (max-width: 457px) {
  .promo__bottom {
    max-height: 340px;
  }
}
.logo-animated--dark {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: 100%;
  height: 76px;
  text-decoration: none;
  color: #000;
}
@media (max-width: 768px) {
  .logo-animated--dark {
    height: auto;
    min-height: 56px;
    gap: 8px;
  }
}
.logo-animated__icon {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
}
@media (max-width: 768px) {
  .logo-animated__icon {
    width: 56px;
    height: 56px;
  }
}
.logo-animated__text {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .logo-animated__text {
    font-size: 18px;
  }
}
@media (max-width: 457px) {
  .logo-animated__text {
    font-size: 15px;
  }
}
.logo-animated__char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-46px);
  animation: logo-char-in 0.33s cubic-bezier(0.146, 1, 0.333, 0) forwards;
  animation-delay: calc(var(--i) * 42ms);
}
.logo-animated__char--space {
  width: 0.35em;
}
.logo-animated__tail {
  display: inline-block;
  margin-left: 0.15em;
  font-size: 0.58em;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: rotate(-91deg) scale(0);
  transform-origin: left bottom;
  animation: logo-tail-in 0.5s cubic-bezier(0.014, 1, 0.333, 0) 0.63s forwards;
}
@keyframes logo-char-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes logo-tail-in {
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

.page_about .header {
  display: none;
}
.page_about .content {
  padding-bottom: 0;
  padding-top: 43px;
}
.page_about .wrapper {
  padding: 0;
}
.page_about .text {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #494949;
  padding: 0;
}
.page_about .top {
  text-align: center;
  padding: 0 20px 80px;
  position: relative;
}
.page_about .top .lang {
  position: absolute;
  top: 0px;
  right: 40px;
}
.page_about .top__logo {
  margin: 0 auto 43px;
  display: block;
}
.page_about .top__logo svg {
  width: 107px !important;
  height: 107px !important;
}
.page_about .top .title {
  font-weight: bold;
  font-size: 64px;
  line-height: 80px;
  margin-bottom: 30px;
}
.page_about .baner {
  padding: 120px 20px 160px;
  background: url("../images/about-bkg.svg") no-repeat center/100% 100%;
  text-align: center;
}
.page_about .baner__text {
  color: #fff;
  font-size: 40px;
  line-height: 54px;
  max-width: 1100px;
  margin: 0 auto;
  font-weight: 700;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .page_about .baner {
    background: url("../images/about-bkg@2x.png") no-repeat center/100% 100%;
  }
}
.page_about .product {
  padding: 40px 20px 0;
  text-align: center;
}
@media (max-width: 770px) {
  .page_about .product {
    padding: 80px 20px 0;
  }
}
.page_about .product .btn {
  display: block;
  margin: 30px auto 50px;
  max-width: 300px;
  border-radius: 6px;
}
.page_about .product__img {
  margin-bottom: -2px;
}
@media (max-width: 770px) {
  .page_about .text {
    padding: 0;
    font-size: 16px;
    line-height: 155%;
  }
  .page_about .top__logo {
    width: 77px;
    height: 77px;
    margin-bottom: 23px;
  }
  .page_about .top__logo svg {
    width: 77px !important;
    height: 77px !important;
  }
  .page_about .top .title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 15px;
  }
  .page_about .baner {
    padding: 80px 20px 100px;
    background: url("../images/about-bkg-mob.png") no-repeat center/100% 300px;
  }
  .page_about .baner__text {
    font-size: 26px;
    line-height: 40px;
  }
}
@media (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 770px) and (min-resolution: 192dpi) {
  .page_about .baner {
    background: url("../images/about-bkg-mob@2x.png") no-repeat center/100% 300px;
  }
}
@media (max-width: 770px) {
  .page_about .product__img {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .page_about .product .btn {
    max-width: 100%;
    margin: 30px 0;
  }
}
@media (max-width: 415px) {
  .page_about .baner {
    background-size: 100% 380px;
  }
}

.product__arrow .arrow {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
  transform: rotate(180deg);
  max-width: 55px;
  width: 100%;
  margin: 40px auto;
}

.product__img-wrapper {
  border-bottom: 8px solid #F71A39;
  width: 100vw;
  margin-left: -20px;
}
@media (min-width: 771px) {
  .product__img-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}

.projects {
  padding-top: 48px;
}
.projects .text {
  max-width: 1000px;
  margin-bottom: 50px;
}
.projects__container {
  max-width: 777px;
  margin: 0px auto;
  padding-top: 94px;
  padding-bottom: 100px;
  position: relative;
  z-index: 5;
}
.projects__scheme {
  position: absolute;
  top: 0;
  left: 0;
  width: 397px;
  height: 100%;
}
@media (max-width: 820px) {
  .projects__scheme {
    width: auto;
    height: auto;
  }
}
.projects .arrow {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
  max-width: 55px;
  width: 100%;
  margin: 0 auto;
}
.projects .arrow-img {
  display: block;
  margin: 0 auto;
  padding-bottom: 20px;
}
.projects .project {
  max-width: 580px;
  width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
  align-items: flex-start;
  margin-top: 60px;
  margin-left: auto;
}
.projects .project__year {
  display: none;
}
.projects .project--arrow:after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  top: 29px;
  left: -62px;
  background-color: #D6D6D6;
}
.projects .project__banner {
  max-width: 580px;
  margin-top: 60px;
  margin-left: auto;
  background: #FFF5E9;
  border: 2px solid #F7931A;
  border-radius: 6px;
  padding: 7px 15px;
  font-size: 18px;
  line-height: 30px;
  color: #494949;
  position: relative;
  text-align: left;
}
.projects .project__banner--arrow:after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  top: calc(50% - 1px);
  left: -62px;
  background-color: #D6D6D6;
}
.projects .project__banner b {
  font-weight: bold;
}
.projects .project__banner a {
  text-decoration: none;
  color: #4285F4;
  font-weight: bold;
  transition: color 0.3s;
}
.projects .project__banner a:hover {
  color: #F7931A;
}
.projects .project__socials {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.projects .project__socials .social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D6D6D6;
  border-radius: 40px;
}
.projects .project__socials .social svg path {
  transition: all 0.3s;
}
.projects .project__socials .social:hover {
  background: #F7931A;
  border-color: #F7931A;
}
.projects .project__socials .social:hover svg path {
  fill: #fff;
}
.projects .project__socials .social:hover svg path[fill=white] {
  fill: #F7931A;
}
.projects .project__socials .social:active {
  background: #D6D6D6;
  border-color: #D6D6D6;
}
.projects .project__socials .social:active svg path[fill=white] {
  fill: #D6D6D6;
}
.projects .project__socials .social--tg svg {
  margin-left: -3px;
}
.projects .project__content {
  margin-left: 20px;
  width: 100%;
  padding-top: 10px;
  text-align: left;
}
.projects .project__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}
.projects .project__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #494949;
}
.projects .project__description a {
  text-decoration: none;
  color: #4285F4;
  font-weight: bold;
  transition: color 0.3s;
}
.projects .project__description a:hover {
  color: #F7931A;
}
.projects .project__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  row-gap: 10px;
  column-gap: 10px;
}
.projects .project__footer .btn img {
  margin-right: 10px;
}
.projects .project__footer .btn--outline {
  line-height: 40px;
  margin: 0;
  font-size: 14px !important;
  padding: 0 20px !important;
  width: max-content !important;
}
.projects .project .btn--outline {
  border: 1px solid #D6D6D6;
  background: transparent;
  color: #4285F4;
}
.projects .btn {
  max-width: 320px;
  width: 100%;
  text-decoration: none;
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  margin: 0 auto;
  outline: none;
  border: none;
  background: #4285F4;
  border-radius: 30px !important;
  line-height: 60px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s;
}
.projects .btn:disabled, .projects .btn--disabled {
  pointer-events: none;
  background: #D6D6D6;
}
.projects .btn svg {
  margin-right: 10px;
}
.projects .btn--right-icon svg {
  margin-left: 10px;
  margin-right: 0;
}
.projects .btn:hover {
  background: #F7931A;
}
.projects .btn:active {
  background: #494949;
}
.projects .btn--outline {
  border: 1px solid #D6D6D6;
  background: transparent;
  color: #4285F4;
}
.projects .btn--outline:hover {
  border-color: #4285F4;
  background: #4285F4;
  color: #fff;
}
.projects .btn--outline:hover svg path {
  fill: #fff;
}
.projects .btn--outline:active {
  background: #494949;
  border-color: #494949;
}

@media (max-width: 820px) {
  .projects {
    margin-bottom: 0;
  }
  .projects__scheme {
    position: static;
    display: block;
    margin: 0 auto;
  }
  .projects__container {
    max-width: none;
    text-align: center;
    padding-bottom: 0;
    padding-top: 0;
  }
  .projects .project, .projects .project__banner {
    max-width: none;
    margin-top: 30px;
    text-align: center;
  }
  .projects .project {
    display: block;
    position: relative;
    text-align: center;
    padding: 30px 10px;
    border: 2px solid #D6D6D6;
    border-radius: 6px;
  }
  .projects .project:not(:last-child):after {
    display: none;
  }
  .projects .project:not(:last-child):before {
    content: "";
    height: 32px;
    width: 2px;
    bottom: -32px;
    position: absolute;
    display: block;
    left: calc(50% - 1px);
    background-color: #D6D6D6;
  }
  .projects .project__year {
    display: block;
    padding: 10px 20px;
    border: 2px solid #D6D6D6;
    border-radius: 6px;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    max-width: 92px;
    margin: 30px auto 0px;
    position: relative;
  }
  .projects .project__year:first-of-type {
    margin-top: 0;
  }
  .projects .project__year:after {
    content: "";
    height: 32px;
    width: 2px;
    bottom: -32px;
    position: absolute;
    display: block;
    left: calc(50% - 1px);
    background-color: #D6D6D6;
  }
  .projects .project__banner {
    font-size: 14px;
    line-height: 22px;
    position: relative;
  }
  .projects .project__banner:after {
    display: none;
  }
  .projects .project__banner:before {
    content: "";
    height: 31px;
    width: 2px;
    bottom: -33px;
    position: absolute;
    display: block;
    left: calc(50% - 1px);
    background-color: #D6D6D6;
  }
  .projects .project__title {
    font-size: 24px;
    line-height: 32px;
  }
  .projects .project__description {
    font-size: 14px;
    line-height: 22px;
  }
  .projects .project__footer {
    flex-direction: column;
    column-gap: 0;
    row-gap: 20px;
  }
  .projects .project .btn {
    min-width: 150px;
  }
  .projects .project__content {
    margin: 0;
    text-align: center;
  }
  .projects .arrow {
    margin: 30px auto;
  }
}

/*# sourceMappingURL=style.css.map */
