*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background: #141414;
}

img {
  display: block;
  max-width: 100%;
}

picture {
  display: block;
}

#spriteSVG {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.content {
  position: relative;
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.content__box {
  border: 1px solid #fff;
  border-top: none;
}
.content__box--bottomNo {
  border-bottom: none;
}

.logo[data-go] {
  cursor: pointer;
}
.logo span {
  display: none;
}
.logo svg {
  width: 36px;
  height: 50px;
  fill: #fff;
  display: block;
}

.button {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  border: none;
  background: #E11F1F;
  padding: 12px 30px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.button__ico {
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: 14px;
}
.button__ico:before {
  position: absolute;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.button__ico:after {
  position: absolute;
  content: "";
  width: 18px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  transition: transform 0.25s;
}
.button:hover .button__ico:before {
  transform: translate(-50%, -50%) rotateZ(135deg);
}
.button:hover .button__ico:after {
  transform: translate(-50%, -50%) rotateZ(90deg);
}

.title {
  font-family: "Holtwood One SC", serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-left: -0.03em;
  text-align: center;
}

.redColor {
  color: #ED0C0C;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0);
  transition: background-color 0.25s;
  z-index: 1000;
}
.navigation.scrolls {
  background: rgba(20, 20, 20, 0.9);
}
.navigation__box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 25px 10px 26px;
}
.navigation__logo {
  position: relative;
  z-index: 3;
}
.navigation__burg {
  position: relative;
  width: 30px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  outline: none;
  z-index: 2;
}
.navigation__burg:before, .navigation__burg:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  left: 0;
  top: 50%;
  background: #fff;
  transition: transform 0.25s;
}
.navigation__burg:before {
  transform: translateY(-50%) translate3d(0, -10px, 0);
}
.navigation__burg:after {
  transform: translateY(-50%) translate3d(0, 10px, 0);
}
.navigation__burg span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  top: 50%;
  left: 0;
  overflow: hidden;
  transform: translateY(-50%);
  transition: opacity 0.25s;
  opacity: 1;
}
.open .navigation__burg:before {
  transform: translateY(-50%) rotate3d(0, 0, 1, 45deg);
}
.open .navigation__burg:after {
  transform: translateY(-50%) rotate3d(0, 0, 1, -45deg);
}
.open .navigation__burg span {
  opacity: 0;
}
.navigation__nav {
  position: fixed;
  background: #141414;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.25s;
  padding: 90px 0 50px;
  z-index: 2;
}
.open .navigation__nav {
  transform: translateY(0);
}
.navigation__item {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 5px;
  cursor: pointer;
}
.navigation__item:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  right: 0;
  top: 12px;
  background: #f80000;
  transition: width 0.25s;
}
.off .navigation__item:after {
  transition: none;
}
.navigation__item:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 0;
  bottom: 10px;
  background: #f80000;
  transition: width 0.25s;
}
.off .navigation__item:before {
  transition: none;
}
.navigation__item:hover:before, .navigation__item:hover:after {
  width: 100%;
}
[data-action=us] .navigation__item[data-go=us]:before, [data-action=power] .navigation__item[data-go=power]:before, [data-action=mission] .navigation__item[data-go=mission]:before, [data-action=contacts] .navigation__item[data-go=contacts]:before {
  width: 100%;
}

.home__box {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  padding: 140px 10px 120px;
}
.home__img {
  width: 200px;
}
.home__title {
  margin-top: 20px;
  text-align: center;
  font-family: "Krona One", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.25;
}
.home__subtitle {
  margin-top: 22px;
  text-align: center;
  line-height: 1.3;
}
.home__subtitle span {
  display: block;
  margin-top: 7px;
}
.home__button {
  padding-top: 45px;
}

.us__title {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
}
.us__img {
  position: relative;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  padding: 0 10px;
  border-bottom: 1px solid #fff;
}
.us__img img {
  opacity: 0.7;
}
.us__ico {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  margin-left: 40px;
  transform: translateY(-15px);
}
.us__ico svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.us__text {
  position: relative;
  line-height: 1.3;
  padding: 15px 10px;
  border-bottom: 1px solid #fff;
}
.us__text p:not(:first-child) {
  margin-top: 16px;
}
.us__text b {
  color: #ED0C0C;
  text-transform: uppercase;
}
.us__decor {
  height: 100px;
  position: relative;
}
.us__decor:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 60%;
  bottom: 0;
  background: #ED0C0C;
  border-right: 1px solid #fff;
}

.power__title {
  position: relative;
  padding: 20px 10px;
  border-bottom: 1px solid #fff;
}
.power__box {
  background: #1D1D1D;
}
.power__item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
}
.power__subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 10px;
}
.power__text {
  font-size: 14px;
  line-height: 1.5;
  padding: 20px 10px 0;
}
.power__ico {
  position: relative;
  padding: 20px;
  display: table;
}
.power__ico--box {
  padding: 0;
}
.power__ico svg {
  display: block;
  width: 62px;
  height: 62px;
  fill: #fff;
}
.power__ico--right {
  margin-left: auto;
  border-left: 1px solid #fff;
}
.power__ico--left {
  border-right: 1px solid #fff;
}
.power__decor {
  position: relative;
  height: 100px;
  border: none;
}
.power__decor:before {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  right: 0;
  width: 103px;
  background: #ED0C0C;
  border-left: 1px solid #fff;
}

.mission__img {
  padding: 20px 10px 0;
  position: relative;
  border-bottom: 1px solid #fff;
}
.mission__img img {
  opacity: 0.7;
}
.mission__item {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  border-bottom: 1px solid #fff;
}
.mission__ico {
  padding: 20px;
}
.mission__ico svg {
  width: 64px;
  height: 64px;
  fill: #fff;
  display: block;
}
.mission__box {
  padding: 20px;
  border-left: 1px solid #fff;
}
.mission__subtitle {
  font-family: "Holtwood One SC", serif;
  text-transform: uppercase;
  color: #ED0C0C;
}
.mission__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.2;
}
.mission__text > span {
  display: block;
  margin-top: 5px;
}
.mission__text--last {
  margin-top: 15px !important;
}
.mission__decor {
  position: relative;
  height: 100px;
}
.mission__decor:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: #ED0C0C;
  border-right: 1px solid #fff;
}

.contacts__title {
  position: relative;
  padding: 20px 10px;
  line-height: 1.2;
  border-bottom: 1px solid #fff;
}
.contacts__subtitle {
  font-size: 14px;
  text-align: center;
  line-height: 1.25;
  padding: 20px 10px 0;
}
.contacts__box {
  background: #1D1D1D;
}

.form {
  position: relative;
  padding: 0 20px 30px;
}
.form__item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  border-bottom: 1px solid #727272;
}
.form__item span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
}
.form__item input,
.form__item textarea {
  display: block;
  flex: 1;
  border: none;
  background: none;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 10px;
}
.form__item textarea {
  min-width: 100%;
  max-width: 100%;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
}
.form__button {
  margin-top: 30px;
}

.footer {
  padding: 30px 0;
}
.footer .content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 21px;
}
.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 27px;
}
.footer__box {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-around;
}
.footer a {
  position: relative;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}
.footer a span {
  position: relative;
  z-index: 2;
}
.footer a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 0;
  bottom: -2px;
  background: #f80000;
  transition: width 0.25s;
  z-index: 1;
}
.footer a:hover:before {
  width: 100%;
}

.goTop span {
  position: relative;
  font-weight: 700;
  text-align: right;
  padding-left: 20px;
  cursor: pointer;
  transition: color 0.25s;
}
.goTop span:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 3px;
  left: 0;
  transform: rotateZ(-45deg);
  transition: transform 0.25s, border-color 0.25s;
}
.goTop span:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 19px;
  background: #fff;
  left: 5px;
  top: 4px;
  transition: transform 0.25s, height 0.25s, background-color 0.25s;
}
.goTop span:hover {
  color: #ED0C0C;
}
.goTop span:hover:before {
  transform: translateY(-3px) rotateZ(-45deg);
  border-color: #ED0C0C;
}
.goTop span:hover:after {
  transform: translateY(-3px);
  height: 22px;
  background: #ED0C0C;
}

.modal {
  top: -100%;
  left: -100%;
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: opacity 0.25s;
}
.modalOpen .modal {
  top: 0;
  left: 0;
  opacity: 1;
}
.modalClose .modal {
  top: 0;
  left: 0;
  opacity: 0;
}
.modal__shadow {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.9);
  z-index: 1;
  cursor: pointer;
}
.modalOpen .modal__shadow, .modalClose .modal__shadow {
  position: fixed;
}
.modal__wrap {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 450px;
  max-height: calc(100% - 30px);
  height: initial;
  background: #1D1D1D;
  border-radius: 8px;
  overflow-y: auto;
}
.modal__box {
  padding: 20px;
}
.modal__text {
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.modal__close:before, .modal__close:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  background: #E6E6E6;
  opacity: 1;
  transition: background 0.25s;
}
.modal__close:after {
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.modal__close:hover:before, .modal__close:hover:after {
  background: #5e5e5e;
}

.policy {
  position: relative;
  padding: 45px 0;
}
.policy .content {
  position: relative;
  z-index: 2;
}
.policy__box {
  background: #1D1D1D;
  border-radius: 20px;
  padding: 20px 30px;
  width: 90%;
  min-width: 300px;
  max-width: 800px;
  margin: 0 auto;
}
.policy h3, .policy h4 {
  font-weight: 500;
  line-height: 1.1;
}
.policy h3:before, .policy h4:before {
  content: counters(item, ".") ".";
  counter-increment: item;
  font-weight: 500;
  color: #E11F1F;
  margin-right: 10px;
}
.policy h1 {
  font-size: 36px;
  font-weight: 700;
}
.policy h2 {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}
.policy h3 {
  margin-top: 25px;
  font-size: 24px;
}
.policy h4 {
  margin-top: 15px;
  font-size: 20px;
}
.policy p, .policy ul li {
  margin-top: 15px;
  line-height: 1.25;
}
.policy ol > li {
  display: block;
}
.policy ol {
  counter-reset: item;
}
.policy ul, .policy ol ol {
  padding-left: 20px;
}
.policy ul {
  list-style-type: disc;
}
.policy ul li::marker {
  color: #E11F1F;
}
.policy a {
  color: #E11F1F;
}
.policy a:hover {
  text-decoration: none;
}

.links {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 180px;
  align-content: space-between;
  min-height: 46px;
  margin-top: 15px;
}
.links a {
  font-size: 12px;
  padding: 5px;
  margin: 0;
}

[data-animation=left] {
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
[data-animation=left].__anim-show {
  transform: translateX(0);
  opacity: 1;
}

[data-animation=right] {
  transform: translateX(100%);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
[data-animation=right].__anim-show {
  transform: translateX(0);
  opacity: 1;
}

[data-animation=top] {
  transform: translateY(-100%);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
[data-animation=top].__anim-show {
  transform: translateY(0);
  opacity: 1;
}

[data-animation=down] {
  transform: translateY(100%);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
[data-animation=down].__anim-show {
  transform: translateY(0);
  opacity: 1;
}

[data-animation=scale] {
  transform: scale(0.5);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
[data-animation=scale].__anim-show {
  transform: scale(1);
  opacity: 1;
}

.__anim__box {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.__anim__symbol {
  display: inline-block;
  transform: scale(0);
  transition: transform 0.25s;
}
.__anim-show .__anim__symbol {
  transform: scale(1);
}
.__anim__text {
  display: inline-block;
  transform: translateY(110%) rotate(0.15deg);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}
.__anim-show .__anim__text {
  transform: translateY(0) rotate(0);
}
