* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

a,
button {
  cursor: pointer;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1720px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 978px;
  }
}

#cursor {
  z-index: 99;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  backdrop-filter: invert(100%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

#cursor.text-active {
  width: 100px;
  height: 100px;
  transition: width 0.2s, height 0.2s;
}

#cursor.click-active {
  width: 1px;
  height: 1px;
  opacity: 0;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

@media (max-width: 1200px) {
  #cursor {
    display: none !important;
  }
}


.header {
  background: linear-gradient(to bottom, #1B1B1B, transparent);
  /* background: rgba(27, 27, 27, 0.75); */
  /* border-bottom: 1px solid rgba(73, 73, 73, 0.75); */
  padding: 32px 0;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
}

.header-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@keyframes headerBtn {
  0% {
    opacity: 0.5;
  }

  25% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    border-color: #D66F50;
    margin: 6px;
  }

  100% {
    opacity: 1;
    border-color: #D66F50;
    margin: 0px;
  }
}

@keyframes reverseHeaderBtn {
  0% {
    opacity: 1;
    border-color: #D66F50;
    margin: 0px;
  }

  25% {
    opacity: 1;
    border-color: #D66F50;
    margin: 6px;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.header__btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border: 2px solid rgba(150, 150, 150, 0.15);
  margin-right: 20px;
  cursor: pointer;
  transition: 0.2s;
}

.header__btn::before {
  position: absolute;
  bottom: -2px;
  left: -2px;
  content: ' ';
  width: 11px;
  height: 11px;
  border: 1px solid #969696;
  border-right: none;
  border-top: none;
  transition: 0.2s;
}

.header__btn::after {
  position: absolute;
  top: -2px;
  right: -2px;
  content: ' ';
  width: 11px;
  height: 11px;
  border: 1px solid #969696;
  border-left: none;
  border-bottom: none;
  transition: 0.2s;
}

.header__btn::after,
.header__btn::before {
  animation: reverseHeaderBtn 0.75s 0s;
  transition: 0.2s;
}

.header__btn:hover::after,
.header__btn:hover::before {
  animation: headerBtn 0.75s 0s forwards 1;
  transition: 0.2s;
}

.header__line {
  width: 16px;
  height: 2px;
  background-color: #fff;
}

.header__line:first-child {
  margin-bottom: 4px;
}

.header__line.active {
  position: absolute;
  top: 18px;
  left: 11px;
}

.header__line.left {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__line.right {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__company {
  font-weight: 400;
  font-size: 16px;
  color: #B8B8B8;
}

.header__logo {
  height: 50px;
}

.header__logo-link {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.header-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__link {
  margin-right: 42px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header__link.vk {
  margin: 0;
}

.header__img {
  height: 16px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}

.header__img:hover {
  filter: brightness(1) invert(0);
  transition: filter 0.2s;
}

.header__img.vk {
  height: 10px;
}

.menu {
  background-color: #1B1B1B;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  display: none;
  z-index: 5;
}

.menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* padding: 0 12px; */
  padding-top: 32px;
}

.menu .header-contacts {
  padding-bottom: 86px;
}

.menu-list {
  margin-top: 120px;
  margin-bottom: 180px;
}

.menu-list__item {
  font-weight: 400;
  font-size: 32px;
  line-height: 140%;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.menu-list__link {
  color: inherit;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  -webkit-transition: border-color 0.2s, color 0.2s;
  transition: border-color 0.2s, color 0.2s;
}

.menu-list__link::before {
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  content: ' ';
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #fff;
  width: 20px;
  height: 1px;
  transition: opacity 0.2s, left 0.5s;
}

.menu-list__link:hover {
  position: relative;
  color: #D66F50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: border-color 0.2s, color 0.2s;
  transition: border-color 0.2s, color 0.2s;
}

.menu-list__link:hover::before {
  opacity: 1;
  transition: opacity 0.2s, left 0.5s;
  left: calc(100% - 20px);
}

.menu-frames {
  position: fixed;
  height: 100vh;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  right: 0;
  width: 60%;
}

.menu-frame {
  overflow: hidden;
  position: relative;
  height: 100%;
  margin-right: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.menu-frame::after {
  position: absolute;
  content: '';
  display: inline-block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(84.95%, rgba(27, 27, 27, 0)), to(#1B1B1B));
  background: linear-gradient(180deg, rgba(27, 27, 27, 0) 84.95%, #1B1B1B 100%);
}

.menu-frame.left {
  width: 60%;
}

.menu-frame.right {
  width: 40%;
}

.menu-frame.right img {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.menu-frame__img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  transition: 2s;
}

.menu-frame:hover .menu-frame__img {
  transform: scale(1.1);
  transition: 2s;
}

.menu-frame.right:hover img {
  transform: scale(-1.1, 1.1);
}

.menu-frame__link {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 60px;
  margin-left: 60px;
  margin-right: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@keyframes arrowsAnimation {
  0% {
    opacity: 1;
    margin-left: 0;
  }

  25% {
    opacity: 0;
    margin-left: 10px;
  }

  50% {
    margin-left: -20px;
    opacity: 0;
    border-color: #D66F50;
  }

  75% {
    margin-left: -10px;
    opacity: 0.5;
    border-color: #D66F50;
  }

  100% {
    margin-left: 0;
    opacity: 1;
    border-color: #D66F50;
  }
}

.menu-frame__arrow {
  position: relative;
  margin-left: 16px;
  display: inline-block;
  height: 26px;
  width: 38px;
  background-image: url(../img/double-arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.menu-frame__arrow::before {
  position: absolute;
  top: 9px;
  left: 7px;
  content: ' ';
  height: 9px;
  width: 9px;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: 3;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.menu-frame__arrow::after {
  position: absolute;
  top: 9px;
  left: 25px;
  content: ' ';
  height: 9px;
  width: 9px;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.menu-frame:hover .menu-frame__arrow::before,
.menu-frame:hover .menu-frame__arrow::after {
  animation: arrowsAnimation 0.5s 0s 1 forwards;
}

@media (max-width: 1220px) {
  .menu-frames {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__company {
    display: none;
  }

  .header__logo {
    height: 40px;
  }

  .header__logo-link {
    position: static;
    -webkit-transform: unset;
    transform: unset;
  }

  .header__btn {
    margin-right: 28px;
  }

  .menu-list__item {
    font-size: 28px;
  }
  .header {
    padding-bottom: 60px;
  }
}

@media (max-width: 425px) {
  .header-contacts {
    display: none;
  }

  .header {
    padding-bottom: 40px;
  }

  .header-contacts.active {
    display: inline-block;
  }

  .header__logo-link {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }

  .menu-list__item {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .menu-wrap {
    padding: 0;
    padding-right: 24px;
    padding-left: 24px;
    padding-top: 32px;
    margin: 0;
  }

  .menu-list,
  .menu .header-contacts {
    padding-left: 90px;
  }
}

@media (max-width: 576px) {
  .menu-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }

  .menu-list,
  .menu .header-contacts {
    padding-left: 0;
  }

  .menu-list {
    margin-bottom: 80px;
    margin-top: 50px;
  }

  .menu .header-contacts {
    padding-bottom: 48px;
  }

  .menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
}

.footer {
  background-color: #1B1B1B;
  border-top: 1px solid rgba(73, 73, 73, 0.5);
  padding: 32px 0;
}

.footer-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__rights {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #B8B8B8;
  margin-right: 24px;
}

.footer__policy {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #D66F50;
}

.footer__made {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.footer__made-link {
  color: #D66F50;
}

.footer__logo {
  height: 50px;
}

.footer__logo-link {
  margin-right: 58px;
}

@media (max-width: 991px) {
  .footer {
    border: none;
  }

  .footer-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__logo {
    margin: 0;
  }

  .footer__logo-link {
    margin-right: 0;
    margin-bottom: 34px;
  }

  .footer__rights {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .footer__policy {
    margin-bottom: 12px;
  }
}

@media (max-width: 425px) {
  .footer__rights {
    text-align: center;
  }
}

/*# sourceMappingURL=header.css.map */