@charset "UTF-8";
i {
  color: transparent;
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("IBM Plex Sans"), local("IBM Plex Sans"), url(../fonts/IBMPlexSans-Regular.d77342fd.ttf) format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("IBM Plex Sans"), local("IBM Plex Sans"), url(../fonts/IBMPlexSans-Medium.56fb541c.ttf) format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("IBM Plex Sans"), local("IBM Plex Sans"), url(../fonts/IBMPlexSans-SemiBold.f2e690b5.ttf) format("truetype");
}
:root {
  --font: "IBM Plex Sans", Arial, sans-serif;
  --font-heading: "IBM Plex Sans", Arial, sans-serif;
  --init: transparent;
  --transition: .3s ease-in;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

p {
  margin: 0;
}

.btn {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  background: transparent;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

/*---------------------------------ПАЛИТРА------------------------------------*/
.btn_primary {
  background: rgba(245, 128, 37, 0.1);
  box-shadow: inset 0 0 20px rgba(245, 128, 37, 0.8);
  color: #FF913C;
}

.btn_secondary {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/*---------------------------------РАЗМЕРЫ------------------------------------*/
.btn_medium {
  padding: 24px;
  font-size: 16px;
}
@media all and (max-width: 820px) {
  .btn_medium {
    padding: 12px;
  }
}

.btn_small {
  padding: 12px;
  font-size: 16px;
}
@media all and (max-width: 820px) {
  .btn_small {
    padding: 5px;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1em;
  margin: 0;
  color: #FFFFFF;
}

h5, h6, p {
  font-family: var(--font);
  line-height: 150%;
  margin: 0;
  color: #FFFFFF;
}

h1 {
  font-weight: 500;
  font-size: 50px;
}
@media all and (max-width: 820px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-weight: 500;
  font-size: 30px;
}

h3 {
  font-weight: 500;
  font-size: 26px;
}
@media all and (max-width: 820px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-weight: 600;
  font-size: 20px;
}

h5 {
  font-weight: 600;
  font-size: 16px;
}

h6 {
  font-weight: 600;
  font-size: 14px;
}

p.body1 {
  font-weight: 400;
  font-size: 24px;
}
@media all and (max-width: 820px) {
  p.body1 {
    font-size: 16px;
  }
}

p.body2 {
  font-weight: 400;
  font-size: 18px;
}
@media all and (max-width: 820px) {
  p.body2 {
    font-size: 14px;
  }
}

p.caption {
  font-weight: 400;
  font-size: 12px;
}

body {
  background-color: #2B224F;
}

/*# sourceMappingURL=app.bd08f75c.css.map*/