/* Vars:
  ========================================================================== */
/* Mixins:
  ========================================================================== */
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
menu,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  outline: none;
  border: none;
}

button:focus {
  outline: none;
  border: none;
}

@font-face {
  font-family: 'Inter';
  src: url("./../fonts/Inter-Regular.eot");
  src: local("Inter Regular"), local("Inter-Regular"), url("./../fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("./../fonts/Inter-Regular.woff2") format("woff2"), url("./../fonts/Inter-Regular.woff") format("woff"), url("./../fonts/Inter-Regular.ttf") format("truetype"), url("./../fonts/Inter-Regular.svg#Inter-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url("./../fonts/Inter-Bold.eot");
  src: local("Inter Bold"), local("Inter-Bold"), url("./../fonts/Inter-Bold.eot?#iefix") format("embedded-opentype"), url("./../fonts/Inter-Bold.woff2") format("woff2"), url("./../fonts/Inter-Bold.woff") format("woff"), url("./../fonts/Inter-Bold.ttf") format("truetype"), url("./../fonts/Inter-Bold.svg#Inter-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url("./../fonts/Inter-Medium.eot");
  src: local("Inter Medium"), local("Inter-Medium"), url("./../fonts/Inter-Medium.eot?#iefix") format("embedded-opentype"), url("./../fonts/Inter-Medium.woff2") format("woff2"), url("./../fonts/Inter-Medium.woff") format("woff"), url("./../fonts/Inter-Medium.ttf") format("truetype"), url("./../fonts/Inter-Medium.svg#Inter-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url("./../fonts/Inter-Black.eot");
  src: local("Inter Black"), local("Inter-Black"), url("./../fonts/Inter-Black.eot?#iefix") format("embedded-opentype"), url("./../fonts/Inter-Black.woff2") format("woff2"), url("./../fonts/Inter-Black.woff") format("woff"), url("./../fonts/Inter-Black.ttf") format("truetype"), url("./../fonts/Inter-Black.svg#Inter-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  color: #0E0F1A;
  height: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (max-width: 1300px) {
  html {
    font-size: calc(0.0107 * 100vw + 1.81818px);
  }
}

@media (max-width: 576px) {
  html {
    font-size: calc(0.0155 * 100vw + 11.03876px);
  }
}

body {
  font-family: "Jost", sans-serif;
  background-color: #fff;
}

main {
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0.9375rem;
  max-width: 1300px;
}

.header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  font-weight: 600;
  font-size: 3.4375rem;
  line-height: 4.9375rem;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.header span {
  display: block;
  width: 20.125rem;
  -webkit-animation: fadeIn 2s;
          animation: fadeIn 2s;
}

.header .logo {
  width: 15.3125rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: fadeInLogo 1s;
          animation: fadeInLogo 1s;
}

.header .logo img {
  width: 100%;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInLogo {
  0% {
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes fadeInLogo {
  0% {
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.block-1 {
  margin-bottom: 5.3125rem;
}

.block-1 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-1 .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-weight: 500;
  font-size: 1.5625rem;
  line-height: 2.25rem;
  padding-bottom: 0.375rem;
  margin-bottom: 3.125rem;
}

.block-1 .label::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200vw;
  height: 0.0625rem;
  background-color: #0E0F1A;
}

.block-1 ul {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.8125rem;
  max-width: 38.125rem;
}

.block-1 ul li {
  position: relative;
  padding-left: 3.25rem;
}

.block-1 ul li::before {
  position: absolute;
  content: '';
  width: 1.25rem;
  height: 1.125rem;
  background: url(../img/dot.svg) center center no-repeat;
  background-size: 100% 100%;
  top: 0.25rem;
  left: 0;
}

.block-1 ul li:not(:last-child) {
  margin-bottom: 1.875rem;
}

.block-1 .img {
  width: 31.25rem;
}

.block-1 .img img {
  width: 100%;
}

.block-2 {
  margin-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
  padding: 1.5625rem 0 3.75rem;
}

.block-2 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.block-2 .img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30.5rem;
  height: 28.625rem;
}

.block-2 .img img {
  width: 100%;
  height: 100%;
}

.block-2 .content {
  max-width: 44.375rem;
  width: 100%;
}

.block-2 .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-weight: 500;
  font-size: 1.5625rem;
  line-height: 2.25rem;
  padding-bottom: 0.375rem;
  margin-bottom: 3.125rem;
}

.block-2 .label::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200vw;
  height: 0.0625rem;
  background-color: #0E0F1A;
}

.block-2 p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.8125rem;
  margin-bottom: 4.5625rem;
}

.block-2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-2 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  height: 5.1875rem;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 200%;
}

.block-2 ul li b {
  font-weight: 500;
  color: #1153D3;
}

.block-2 ul li:not(:first-child) {
  padding-left: 2.75rem;
}

.block-2 ul li:not(:last-child) {
  padding-right: 2.75rem;
}

.block-2 ul li:not(:last-child)::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 0.0625rem;
  background-color: #0E0F1A;
  right: 0;
  top: 0;
}

.block-3 {
  position: relative;
  z-index: 1;
}

.block-3 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-3 .label {
  font-weight: 500;
  font-size: 1.5625rem;
  line-height: 2.25rem;
  margin-bottom: 4rem;
}

.block-3 strong {
  display: block;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.8125rem;
  margin-bottom: 3.375rem;
}

.block-3 ol {
  list-style-type: none;
  counter-reset: item;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.8125rem;
}

.block-3 li {
  position: relative;
  padding-left: 3.125rem;
}

.block-3 li:not(:last-child) {
  margin-bottom: 1.875rem;
}

.block-3 li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0.0625rem solid #0E0F1A;
  border-radius: 100%;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-3 .img {
  width: 39.5rem;
}

.block-3 .img img {
  width: 100%;
}

.footer {
  padding-bottom: 3rem;
  margin-top: -11.4375rem;
  position: relative;
  z-index: 0;
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer .contacts {
  font-weight: 400;
  font-size: 1rem;
  line-height: 200%;
  opacity: 0.8;
}

.footer .contacts .label {
  margin-bottom: 2rem;
}

.footer .contacts a {
  -webkit-transition: color .3s;
  transition: color .3s;
}

.footer .contacts a:hover {
  color: #1153D3;
}

.footer .logo {
  margin-left: auto;
  margin-bottom: -3rem;
  width: 15.25rem;
  margin-right: 1.125rem;
}

.footer .logo img {
  width: 100%;
}

.footer .media {
  margin-left: auto;
}

.footer .media .label {
  font-weight: 400;
  font-size: 1rem;
  line-height: 200%;
  color: #0E0F1A;
  opacity: 0.8;
  margin-bottom: 1.125rem;
}

.footer .media .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 25rem;
}

.footer .media .wrapper a:not(:last-child) {
  margin-right: 0.975rem;
}

@media (max-width: 992px) {
  .header {
    height: 50rem;
  }
}

@media (max-width: 576px) {
  .header {
    height: 100vh;
  }
  .header .logo {
    width: 100%;
  }
  .header span {
    color: #fff;
  }
  .header .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .block-1 .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block-1 .img {
    margin-top: 2.5rem;
    width: 100%;
  }
  .block-1 ul li {
    padding-left: 1.5rem;
  }
  .block-2 .img {
    position: absolute;
    width: 100%;
  }
  .block-2 ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-2 ul li {
    width: 50%;
    padding: 0 !important;
  }
  .block-2 ul li::before {
    display: none;
  }
  .block-2 p {
    margin-bottom: 2.5rem;
  }
  .block-3 .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block-3 .img {
    width: 100%;
    margin-top: 2.5rem;
  }
  .footer {
    margin-top: 0;
    padding-top: 5rem;
  }
  .footer .logo {
    position: absolute;
    bottom: -4.5rem;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
  }
  .footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer .contacts {
    margin-bottom: 2.5rem;
  }
  .footer .contacts .label {
    margin-bottom: 1rem;
  }
  .footer .media {
    margin-right: auto;
  }
  .footer .media .wrapper {
    display: -ms-grid;
    display: grid;
    gap: 0.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .media .wrapper a {
    margin-right: 0 !important;
  }
}

#copy {
  position: relative;
}

#copy::after {
  content: "Copy";
  color: #0E0F1A;
  position: relative;
  font-weight: bold;
  opacity: 0;
  transition: opacity .3s;
}

#copy:hover::after {
  opacity: 1;
}

#copy.copy::after {
  opacity: 1;
  content: "Copied";
}
/*# sourceMappingURL=index.css.map */
