/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: > 0.1% and not dead
*/

:root {
  --banner-background-before-background: linear-gradient(0deg, var(--second-color) 0%, var(--second-color-opacity-60) 70%, var(--second-color) 100%);

  --banner-desc-max-width: 100%;
  --banner-desc-margin-top: 32px;

  --banner-button-margin-top: 56px;
}

.banner__cover.full {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

.background.banner__background:before {
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 0;
  right: 0;
  background: var(--banner-background-before-background);
  z-index: 1;
}

.content.banner__content {
  text-align: center;
  z-index: 1;
}

.title.banner__title {
  padding: 0 !important;
}

.desc.banner__desc {
  max-width: var(--banner-desc-max-width);
  margin: var(--banner-desc-margin-top) auto 0 auto;
}

.button.banner__button {
  margin: var(--banner-button-margin-top) auto 0 auto;
}



@media screen and (min-width: 1900px) {
  :root {
    --banner-desc-margin-top: 1.67vw;

    --banner-button-margin-top: 2.92vw;
  }
}



@media screen and (max-width: 600px) {
  :root {
    --banner-desc-max-width: 240px;
    --banner-desc-margin-top: 12px;

    --banner-button-margin-top: 32px;
  }
}



@media screen and (max-width: 370px) {
  :root {
    --banner-desc-max-width: 220px;
  }
}