@import "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";

/* src/styles.scss */
:root {
  --root-bg: white;
  --root-color: #243136;
  --accent-color: #d10101;
  --success-color: #37b130;
  --error-color: #ee0000;
  --secondary-color: #5c5c5c;
  --divider-color: #626262;
  --font-family-base:
    "Inter",
    "system-ui",
    "sans-serif";
  --font-family-title:
    "Bebas Neue Cyrillic",
    "system-ui",
    "sans-serif";
}
@font-face {
  font-family: "Bebas Neue Cyrillic";
  src: url(/fonts/bebas-neue/BebasNeueCyrillic.eot);
  src:
    local("Bebas Neue Cyrillic"),
    local("BebasNeueCyrillic"),
    url(/fonts/bebas-neue/BebasNeueCyrillic.eot?#iefix) format("embedded-opentype"),
    url(/fonts/bebas-neue/BebasNeueCyrillic.woff2) format("woff2"),
    url(/fonts/bebas-neue/BebasNeueCyrillic.woff) format("woff"),
    url(/fonts/bebas-neue/BebasNeueCyrillic.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 16px;
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 11px;
  }
}
@media screen and (max-width: 1140px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 8px;
  }
}
@media screen and (max-width: 868px) {
  html {
    font-size: 7px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
  font-family: var(--font-family-base);
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* > * {
  box-sizing: inherit;
}
body {
  box-sizing: border-box;
  background: var(--root-bg);
  color: var(--root-color);
}
body._grabbing {
  cursor: grabbing;
}
body ::-webkit-scrollbar {
  background-color: var(--theme-scrollbar-bg);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 899px) {
  body ::-webkit-scrollbar {
    width: 0;
  }
}
body ::-webkit-scrollbar-track {
  background-color: var(--theme-scrollbar-bg);
  border-radius: 1rem;
}
body ::-webkit-scrollbar-thumb {
  background-color: var(--theme-scrollbar-thumb);
  border-radius: 1rem;
}
@media screen and (max-width: 899px) {
  body ::-webkit-scrollbar-thumb {
    width: 0;
  }
}
body ::-webkit-scrollbar-button {
  display: none;
}
button {
  font-family: inherit;
  font-size: inherit;
}
input {
  font-family: inherit;
  font-size: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 100%;
}
p {
  margin-top: 0;
}
h1 {
  font-size: 8rem;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
h2 {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}
.layout-image {
  flex: 1 1 auto;
  display: flex;
  position: relative;
  padding-right: 50vw;
}
@media screen and (max-width: 768px) {
  .layout-image {
    flex-direction: column;
    padding: 0;
  }
}
.layout-image__content {
  flex: 1 1 auto;
  padding-top: 3.125rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .layout-image__content {
    padding: 0 1rem;
  }
}
.layout-image__image {
  flex: 0 0 auto;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 50vw;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .layout-image__image {
    flex: 2 1 auto;
    max-height: 50vh;
    height: auto;
    width: 100%;
    position: relative;
    top: unset;
    right: unset;
  }
}
.layout-image__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}
@media screen and (max-width: 768px) {
  .layout-image__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: top center;
  }
}
.header {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-right: 2rem;
  height: 4.25rem;
}
@media screen and (max-width: 768px) {
  .header {
    height: 2.5rem;
    margin-bottom: 2rem;
    padding: 0;
    flex-direction: row-reverse;
  }
}
.header__arrows {
  margin-left: auto;
  width: 14.5rem;
}
@media screen and (max-width: 768px) {
  .header__arrows {
    width: 6.25rem;
    margin-left: unset;
    margin-right: auto;
  }
}
.title-chvron {
  width: 14rem;
}
@media screen and (max-width: 768px) {
  .title-chvron {
    width: 6.25rem;
  }
}
.title-bordered-left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.title-bordered-left::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 1.875rem;
  background: var(--error-color);
  flex: 0 0 auto;
}
img {
  display: block;
}
@media screen and (min-width: 769px) {
  ._mobile {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  ._desktop {
    display: none !important;
  }
}
.form-control {
  font-family: inherit;
  font-size: 1.25rem;
  border-radius: 1rem;
  height: 3.75rem;
  padding: 0 1rem;
  border: 1px solid var(--root-color);
  color: var(--root-color);
}
@media screen and (max-width: 768px) {
  .form-control {
    font-size: 1rem;
    height: 3.125rem;
  }
}
.form-control::placeholder {
  color: #464646;
  font-style: italic;
}
.form-control.ng-invalid.ng-touched {
  border-color: var(--error-color);
}
.form-error {
  margin-top: 0.5rem;
  padding-left: 1rem;
  font-size: 0.75rem;
  color: var(--error-color);
}
.btn-flat {
  appearance: none;
  cursor: pointer;
  height: 3.75rem;
  font-size: 1.25rem;
  font-family: inherit;
  line-height: normal;
  border-radius: 1rem;
  border: none;
  font-style: italic;
  text-transform: uppercase;
  display: block;
  padding: 0 2.75rem;
}
@media screen and (max-width: 768px) {
  .btn-flat {
    font-size: 1rem;
    height: 3.125rem;
  }
}
.btn-flat._accent {
  background: var(--accent-color);
  color: white;
}
.btn-flat:hover {
  opacity: 0.75;
}
.btn-outline {
  appearance: none;
  cursor: pointer;
  height: 3.75rem;
  font-size: 1.25rem;
  font-family: inherit;
  line-height: normal;
  border-radius: 1rem;
  border: 1px solid;
  font-style: italic;
  display: block;
  background: none;
  padding: 0 2.75rem;
}
@media screen and (max-width: 768px) {
  .btn-outline {
    font-size: 1rem;
    height: 3.125rem;
  }
}
.btn-outline._accent {
  border-color: var(--error-color);
  color: var(--root-color);
}
.btn-outline:hover {
  opacity: 0.75;
}
.btn-link {
  appearance: none;
  cursor: pointer;
  height: 3.75rem;
  font-size: 1.25rem;
  font-family: inherit;
  line-height: normal;
  border-radius: 1rem;
  border: none;
  font-style: italic;
  display: block;
  background: none;
  padding: 0 1.25rem;
  color: var(--root-color);
}
@media screen and (max-width: 768px) {
  .btn-link {
    font-size: 1rem;
    height: 3.125rem;
  }
}
.btn-link:hover {
  opacity: 0.75;
}
button._loading {
  animation: button-loading 1s infinite ease-in-out;
  pointer-events: none;
}
@keyframes button-loading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.link {
  color: var(--root-color);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .link {
    font-size: 1rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
