* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
}
*::after, *::before {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

img {
  display: block;
}

input {
  border: none;
  padding: 0;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  cursor: pointer;
}
button::-ms-clear, button::-ms-reveal,
input::-ms-clear,
input::-ms-reveal,
textarea::-ms-clear,
textarea::-ms-reveal,
select::-ms-clear,
select::-ms-reveal {
  display: none;
}
button::-moz-focus-inner, button::-moz-focus-outer,
input::-moz-focus-inner,
input::-moz-focus-outer,
textarea::-moz-focus-inner,
textarea::-moz-focus-outer,
select::-moz-focus-inner,
select::-moz-focus-outer {
  border: 0;
}

svg {
  pointer-events: none;
  display: block;
  height: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  outline: 0;
  cursor: pointer;
  color: initial;
}

:root {
  --app-height: 100%;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  position: relative;
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container {
    width: 100%;
    max-width: 688px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (min-width: 1800px) {
  .container {
    width: 100%;
    max-width: 1768px;
    margin: 0 auto;
  }
}

.link {
  color: #0088cc;
  text-decoration: none;
}
.link:hover {
  color: rgb(44, 145, 212);
}

p,
.text {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  p,
  .text {
    font-size: 18px;
    line-height: 1.6;
  }
}

.button {
  color: #ffffff;
  line-height: 1;
  font-weight: 700;
  border-radius: 100px;
  background-color: #2481cc;
  background-position: center center;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
  text-transform: uppercase;
  height: 60px;
  min-width: 180px;
}
.button svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 768px) {
  .button {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1024px) {
  .button:hover {
    background-color: #1a8ad5;
    background-image: none;
  }
}
.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  top: 0;
  left: -100px;
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% {
    left: -100px;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.block-go {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  flex-grow: 1;
  padding: 40px 20px 110px;
  background-image: linear-gradient(0.083turn, rgb(124, 166, 138) 0%, rgb(147, 181, 137) 100%);
  position: relative;
  z-index: 1;
}
.block-go::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(./img/svg/pattern.svg);
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: overlay;
}
.block-go::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: overlay;
  border-radius: 0px 0px 0px 0px;
  background-image: linear-gradient(0.389turn, rgba(216, 218, 187, 0.7) 0%, rgba(216, 218, 187, 0) 39%, rgba(207, 212, 149, 0) 66%, rgba(207, 212, 149, 0.7) 100%);
  background-attachment: fixed;
  border-color: transparent;
  border-style: solid;
}
.block-go__content {
  border-radius: 18px;
  background-color: #ffffff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .block-go__content {
    width: 620px;
    padding: 40px 40px 20px;
  }
}
@media (min-width: 1280px) {
  .block-go__content {
    width: 760px;
    padding: 40px 40px 20px;
  }
}
.block-go.block-go2 .button {
  visibility: visible;
  animation: unset;
  position: relative;
}
.block-go__title {
  color: #26282d;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  text-align: left;
  align-self: flex-start;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .block-go__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.block-go__img {
  border-radius: 100%;
  overflow: hidden;
  max-width: 300px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .block-go__img {
    max-width: 300px;
  }
}
@media (min-width: 1280px) {
  .block-go__img {
    max-width: 360px;
  }
}
.block-go__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.block-go__buttons {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.block-go__buttons::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  width: 100%;
  height: 40px;
  background: linear-gradient(0deg, #fff 10%, rgba(255, 255, 255, 0) 100%);
}
.block-go .button {
  margin: 0 auto;
}
.block-go .text {
  margin-bottom: 40px;
}
.block-go__bottom .image {
  width: 186px;
  height: 32px;
}
.block-go__bottom .image svg {
  width: 100%;
  height: 100%;
}
.block-go__info {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  opacity: 0.8;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.block-go__info p {
  color: #7d7f81;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
  opacity: 0.4;
}
.block-go__link {
  color: rgb(36, 129, 204);
}
@media (min-width: 1280px) {
  .block-go__link:hover {
    text-decoration: underline;
  }
}

@keyframes blink {
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dnone {
  99% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}
@keyframes layer {
  100% {
    left: 0%;
  }
}
@keyframes dflex {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}