@charset "UTF-8";
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, :before, :after {
  box-sizing: inherit;
  flex: 0 1 auto;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font: normal normal 16px/normal Supermolot, sans-serif;
  color: #3C3C3C;
}

header, footer {
  flex: 0 0 auto;
}

main {
  flex-grow: 1;
}

img,
iframe,
video {
  max-width: 100%;
  user-select: none;
}

a img {
  border: none;
}

a {
  color: inherit;
  text-underline-position: under;
}

p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}

*:focus {
  outline: none;
}

*:invalid {
  box-shadow: none;
}

/*элементы форм */
input, textarea, button, select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: none;
  overflow: auto;
}

[type=search] {
  appearance: textfield;
}
[type=search]::-webkit-search-decoration, [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-results-button, [type=search]::-webkit-search-results-decoration {
  display: none;
}

label {
  user-select: none;
}

/*кнопки */
button,
[type=submit],
[type=reset],
[type=image] {
  cursor: pointer;
}

.btn {
  display: inline-block;
  vertical-align: top;
  appearance: none;
  cursor: pointer;
  max-width: 100%;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  text-align: center;
  text-shadow: none;
}

/*заголовки */
h1, h2, h3, h4, h5, h6 {
  margin: 1em 0;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 50px;
  line-height: 1;
  margin: 0.8em 0;
}

h3 {
  font-size: 18px;
  line-height: 1;
}
h3 strong {
  font-size: 3.3333333333em;
}

/*списки */
ul, ol {
  margin: 0 0 1em;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

/*таблицы */
/*контейнеры */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/*ШАПКА */
.logo {
  display: flex;
  align-items: center;
  width: fit-content;
  color: #4D4D4F;
  fill: #4D4D4F;
  text-decoration: none;
}
.logo__image {
  width: 210px;
  height: auto;
}
.logo__image--full-width {
  width: 100%;
}
.logo__text {
  line-height: 1.1;
  font-size: 9.5px;
  padding: 5px 0 0 12px;
}
.logo__text--hidden {
  display: none;
}

.menu-btn {
  display: none;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  margin: 0 0 0 auto;
  position: relative;
}
.menu-btn:before, .menu-btn:after {
  content: "";
  display: block;
  border-top: 4px solid;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}
.menu-btn:before {
  border-bottom: 4px solid;
  height: 27px;
}
.menu-btn--active:before {
  transform: translateY(-50%) rotate(-45deg);
  border-width: 2px;
  height: 4px;
}
.menu-btn--active:after {
  transform: translateY(-50%) rotate(45deg);
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.header--index {
  display: none;
}
.header__inner {
  padding: 28.5px 0 33.5px;
  display: flex;
  align-items: center;
  background: linear-gradient(to left, #418856, #293878) no-repeat center bottom/auto 5px;
}
.header__logo {
  width: 165px;
  flex: 0 0 auto;
  margin: 0 20px 0 0;
}
.header__menu {
  font: normal 500 16px/normal Roboto, sans-serif;
  margin-left: auto;
}
.header__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header__nav > li {
  position: relative;
}
.header__nav > li > a {
  display: block;
  text-decoration: none;
  padding: 10px 20px;
}
.header__nav > li > a.active {
  color: #189655;
}
.header__nav > li > a:not(:only-child):after {
  content: "";
  font-family: fontAwesome;
  font-weight: 400;
  margin-left: 0.7em;
  transition: all 0.3s ease;
}
.header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}
.header__nav ul a.active {
  opacity: 0.5;
}
.header__contacts {
  display: none;
}

/*ОСНОВНОЕ СОДЕРЖИМОЕ */
.app {
  width: 100%;
}
.app__slide {
  position: relative;
  padding: var(--h-height) 0 0;
}
.app__img {
  display: block;
  width: 100%;
}

.intro {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 100px 0;
  position: relative;
  background: linear-gradient(64.3deg, #418856, #293878);
}
.intro.slick-slide {
  display: flex;
}
.intro:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../img/grid.svg) no-repeat center/cover;
  opacity: 0.4;
}
.intro__video-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}
.intro__wrapper {
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
}
.intro__text {
  max-width: 620px;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
}
.intro__text h3 {
  margin: 2.7777777778em 0 2.2222222222em;
}
.intro__text h3:first-child {
  margin-top: 0;
}
.intro__text h3:last-child {
  margin-bottom: 0;
}
.intro__link {
  display: block;
  width: fit-content;
  padding: 0 1.5em 0 0;
  position: relative;
  font-weight: bold;
  font-size: 16px;
}
.intro__link:after {
  content: "";
  font-family: fontAwesome;
  position: absolute;
  right: 0;
  font-weight: 400;
}
.intro__sidebar {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: auto;
  z-index: 2;
  width: calc(50% - 140px);
  padding: 155px 20px 50px 70px;
}
.intro__logo {
  margin: 0 0 50px;
}
.intro__logo:last-child {
  margin-bottom: 0;
}
.intro__nav {
  font: normal 500 20px/normal Roboto, sans-serif;
  margin: 0 0 20px;
}
.intro__nav:last-child {
  margin-bottom: 0;
}
.intro__nav a {
  display: block;
  width: fit-content;
  text-decoration: none;
}
.intro__nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.intro__nav > ul > li {
  margin: 0 0 0.45em;
}
.intro__nav > ul > li:last-child {
  margin-bottom: 0;
}
.intro__nav > ul > li > a:not(:only-child):after {
  content: "";
  display: inline-block;
  font-family: fontAwesome;
  font-weight: 400;
  margin-left: 0.5em;
  color: #189655;
  transition: all 0.2s ease;
}
.intro__nav > ul > li > a:not(:only-child).open:after {
  transform: scaleY(-1);
}
.intro__nav > ul > li > a:not(:only-child).active {
  color: #189655;
}
.intro__nav > ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 0.5em 0 0.5em 1.5em;
  font-size: 18px;
  display: none;
}
.intro__nav > ul ul > li {
  margin: 0 0 0.5em;
}
.intro__nav > ul ul > li:last-child {
  margin-bottom: 0;
}
.intro__back-link {
  display: block;
  width: fit-content;
  margin: auto 0 0 auto;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.contact {
  display: flex;
  align-items: flex-start;
  margin: 0 0 40px;
}
.contact:last-child {
  margin-bottom: 0;
}
.contact__key {
  font-weight: bold;
  text-transform: uppercase;
  width: 150px;
  padding: 0 40px 0 0;
}
.contact__value {
  width: calc(100% - 150px);
}
.contact__value a {
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

/*ПОДВАЛ */
.footer {
  background: linear-gradient(150deg, #418856, #293878);
  color: #fff;
  padding: 55px 0 40px;
}
.footer--index {
  display: none;
}
.footer__logo {
  fill: currentColor;
  color: inherit;
}
.footer__topline {
  display: flex;
  align-items: flex-start;
  margin: 0 0 25px;
}
.footer__topline:last-child {
  margin-bottom: 0;
}
.footer__logo {
  width: 142px;
  flex: 0 0 auto;
  margin: 0 35px 0 0;
}
.footer__column {
  flex: 1 1 auto;
  margin: 0 35px;
}
.footer__social {
  flex: 0 0 auto;
  margin: 0 0 0 35px;
  font-size: 20px;
  user-select: none;
}
.footer__social > a {
  text-decoration: none;
  margin: 0 0.75em 0 0;
}
.footer__social > a:last-child {
  margin-right: 0;
}
.footer__back-link {
  display: block;
  width: fit-content;
  font-size: 14px;
  margin-left: auto;
  text-decoration: none;
}

/*АДАПТИВ */
@media(min-width: 992px) {
  a:hover {
    text-decoration: none;
  }

  .header__nav a {
    transition: all 0.3s ease;
  }
  .header__nav > li:hover > a {
    color: #189655;
  }
  .header__nav > li:hover > ul {
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav > li > ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #189655;
    padding: 20px;
    width: 220px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .header__nav > li > ul > li {
    margin: 0 0 0.5em;
  }
  .header__nav > li > ul > li:last-child {
    margin-bottom: 0;
  }
  .header__nav > li > ul > li > a {
    text-decoration: none;
  }
  .header__nav > li > ul > li > a:hover {
    opacity: 0.5;
  }

  .intro__nav a {
    transition: all 0.3s ease;
  }
  .intro__nav a:hover {
    color: #189655;
  }
  .intro__back-link {
    transition: all 0.3s ease;
  }
  .intro__back-link:hover {
    color: #189655;
  }

  .footer__back-link, .footer__contact a, .footer__social a {
    transition: all 0.2s ease;
  }
  .footer__back-link:hover, .footer__contact a:hover, .footer__social a:hover {
    color: #189655;
  }
}
@media(max-width:1199px) {
  .wrapper {
    max-width: 992px;
    padding: 0 15px;
  }

  .header__logo {
    width: 120px;
  }
  .header__nav {
    font-size: 14px;
  }
  .header__nav > li > a {
    padding: 0 15px;
  }

  .intro__text {
    max-width: 540px;
  }
  .intro__sidebar {
    width: calc(50% - 90px);
    padding: 130px 20px 40px 30px;
  }

  .contact {
    display: block;
    margin: 0 0 25px;
  }
  .contact:last-child {
    margin-bottom: 0;
  }
  .contact__key {
    width: auto;
    margin: 0 0 1em;
  }
  .contact__key:last-child {
    margin-bottom: 0;
  }
  .contact__value {
    width: auto;
    font-size: 13px;
  }

  .footer {
    padding: 30px 0;
  }
  .footer--index {
    background: #fff;
    color: inherit;
  }
  .footer__topline {
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
  }
  .footer__logo {
    width: 140px;
    margin: 0 25px 0 0;
  }
  .footer__column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    order: 1;
    width: 100%;
    margin: 25px 0 0;
  }
  .footer__column:first-child {
    margin-top: 0;
  }
  .footer__contact {
    width: calc(50% - 30px);
  }
  .footer__social {
    margin: 0 0 0 auto;
    text-align: right;
  }
  .footer--index .footer__social a {
    background: linear-gradient(to right, #46945B, #2A3F8E);
    color: transparent;
    -webkit-background-clip: text;
  }
  .footer__bottomline {
    display: none;
  }
}
@media(max-width:991px) {
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  h1 {
    font-size: 35px;
  }

  .menu-btn {
    display: inline-block;
  }

  .logo__image {
    width: 100px;
  }
  .logo__text {
    display: block;
    font-size: 6px;
    padding: 1px 0 0 10px;
  }

  .header {
    display: block;
    padding: 15px 0;
    border-bottom: 5px solid black;
    border-image: linear-gradient(to left, #418856, #293878);
    border-image-slice: 1;
  }
  .header--index {
    border-bottom: none;
  }
  .header__inner {
    background: none;
    padding: 0;
  }
  .header__logo {
    width: auto;
  }
  .header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--h-height));
    overflow: auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    opacity: 1;
    transition: transform 0.25s ease;
    transform-origin: center top;
    transform: perspective(100vh) rotateX(-90deg);
  }
  .header__menu--open {
    transform: perspective(100vh) rotateX(0deg);
  }
  .header__nav {
    display: block;
    font-size: inherit;
    text-align: center;
    margin: auto 0 auto;
  }
  .header__nav > li > a {
    display: inline-block;
    vertical-align: top;
    padding: 0.5em;
  }
  .header__nav > li > a:not(:only-child):after {
    display: inline-block;
  }
  .header__nav > li > a.open:after {
    transform: scaleY(-1);
  }
  .header__nav ul {
    animation: fadeIn 0.5s ease;
    font-size: 13px;
    margin: 0 0 8px;
  }
  .header__nav ul.open {
    display: block;
  }
  .header__nav ul > li > a {
    display: inline-block;
    vertical-align: top;
    padding: 4px 10px;
    text-decoration: none;
  }
  .header__contacts {
    display: block;
    font: normal normal 13px/normal Supermolot, sans-serif;
    width: min-content;
    text-align: center;
    margin: 30px auto 0;
  }
  .header__contacts a {
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
  }

  .intro__sidebar {
    display: none;
  }

  .app__wrapper {
    padding: 0;
  }

  .footer {
    display: block;
  }
}
@media(max-width: 480px) {
  .footer__column {
    display: block;
  }
  .footer__contact {
    width: auto;
  }
}
