@font-face {
  font-family: "Ubuntu";
  src: url("./fonts/Ubuntu/Ubuntu-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope/Manrope-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope/Manrope-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
* {
  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: "Ubuntu", 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;
  }
}

p,
.text {
  color: #4d566a;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.4;
  font-weight: 500;
  background-position: center center;
}

.button {
  color: #ffffff;
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.1;
  font-weight: 800;
  border-radius: 16px;
  background-color: #0080ff;
  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: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 220px;
  height: 60px;
  margin: 0 auto;
}
.button svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 1024px) {
  .button:hover {
    background-color: #0777e7;
    background-image: none;
  }
}

.block-go {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  flex-grow: 1;
  padding: 20px;
}
.block-go__content {
  border-radius: 24px;
  background-image: url("./img/bg-go.png");
  background-color: #ffffff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 20px 60px 0px rgba(77, 86, 106, 0.1);
  width: 100%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media (min-width: 768px) {
  .block-go__content {
    width: 560px;
    padding: 80px 50px;
    gap: 60px;
  }
}
.block-go__title {
  color: #26282d;
  font-size: 32px;
  font-family: "Ubuntu", Arial, sans-serif;
  line-height: 1.1;
  font-weight: 700;
  background-position: center center;
  text-align: center;
}
@media (min-width: 768px) {
  .block-go__title {
    font-size: 48px;
  }
}
.block-go__buttons {
  position: relative;
}
.block-go .text {
  text-align: center;
  margin-bottom: 6px;
}
.block-go__bottom .image {
  width: 186px;
  height: 32px;
}
.block-go__bottom .image svg {
  width: 100%;
  height: 100%;
}
.block-go__info p {
  color: #abb0ba;
  font-size: 14px;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}