@import url(../fonts/euclid/stylesheet.css);
* {
  box-sizing: border-box;
  outline: none;
}
html {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex: auto;
  flex-direction: column;
  font-family: 'Euclid Circular A', sans-serif;
  background: #071827 url(../img/dots.png);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}
img {
  border: 0;
}
h1,
.h1 {
  margin: 0 0 128px;
  padding: 0;
  font-weight: 500;
  font-size: 96px;
  line-height: 96px;
}
h2,
.h2 {
  margin: 0 0 64px;
  padding: 0;
  font-weight: 500;
  font-size: 66px;
  line-height: 64px;
  text-transform: uppercase;
}
h2.mb-big,
.h2.mb-big {
  margin-bottom: 160px;
}
h3,
.h3 {
  margin: 0 0 38px;
  padding: 0;
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  text-transform: uppercase;
}
h3.no-margin-top,
.h3.no-margin-top {
  margin-top: 0;
}
h4,
.h4 {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: #c79b46;
}
input,
textarea,
a,
button {
  outline: none;
}
a {
  color: #c79b46;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #c79b46;
  text-decoration: none;
}
.clr {
  clear: both;
}
.col {
  vertical-align: top;
  display: inline-block;
}
.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
.wrapper--with-top {
  margin-top: 100vh;
  background: #071827 url(../img/dots.png);
}
.wrapper--with-top .page--inner {
  padding-top: 0;
}
.wrapper--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.wrapper--fixed .sun-outer {
  background: url(../img/circles.svg) no-repeat center / contain;
  width: 1500px;
  height: 1500px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -48%;
}
main {
  flex: auto;
}
.orange {
  color: #c79b46;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 990;
  transition: all 0.3s ease;
}
header > div {
  display: flex;
  align-items: center;
}
header > div.flex {
  display: flex;
  justify-content: space-between;
}
header .phrase {
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  margin-left: 22px;
}
header.active {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #071827;
  box-shadow: 0 8px 40px rgba(11, 31, 48, 0.05);
}
header.active .menu-item:before {
  top: 50px;
}
header .logo {
  width: 74px;
  height: 32px;
}
header.hidden {
  transform: translateY(-100%);
}
.menu {
  display: flex;
  margin: 0 54px 0 92px;
}
.menu-item {
  color: #fff;
  display: block;
  margin-left: 24px;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}
.menu-item:before {
  content: "";
  position: absolute;
  height: 2px;
  background: #c79b46;
  top: 150%;
  transform: scaleX(0);
  width: 100%;
  z-index: 1;
  left: 0;
  transform-origin: top right;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-item:hover,
.menu-item.active {
  color: #c79b46;
  text-decoration: none;
  transition: all 1s ease;
}
.menu-item:hover:before,
.menu-item.active:before {
  transform: scaleX(1);
  transform-origin: top left;
}
.menu-item.active:before {
  transition: all 0.3s ease;
}
.logo {
  width: 432px;
  background: no-repeat center / contain;
  height: 186px;
  display: inline-block;
}
.logo img,
.logo svg {
  height: 100%;
}
.phrase {
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.link {
  text-decoration: none;
  color: #fff;
}
.link:hover {
  text-decoration: none;
  color: #c79b46;
}
.mail {
  line-height: 0;
}
.hamburger {
  margin-left: 24px;
}
.icon {
  display: inline-block;
  background: no-repeat center;
  transition: all 0.3s ease;
}
.icon--mail {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #c79b46;
  background-image: url(../img/icon_mail.svg);
  background-size: 16px auto;
}
.icon--mail:hover {
  background-color: #c79b46;
}
.icon--menu {
  width: 32px;
  height: 32px;
  background-size: contain;
}
.icon--menu img,
.icon--menu svg {
  width: 100%;
  height: 100%;
}
.icon--menu img path,
.icon--menu svg path {
  fill: #c79b46;
}
.icon--close {
  width: 32px;
  height: 32px;
  background-image: url(../img/icon_close.svg);
  background-size: contain;
}
.icon--refresh {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #c79b46;
  background-image: url(../img/icon_refresh.svg);
  background-size: 32px auto;
}
.icon--arrow {
  width: 32px;
  height: 24px;
  background-image: url(../img/icon_arrow_right_white.svg);
  background-size: 32px auto;
}
.icon--calendar {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon_calendar.svg);
  background-size: cover;
}
.icon--transparent {
  background-color: transparent;
}
.dn {
  display: none;
}
.right {
  text-align: right;
}
footer {
  padding: 96px 0 48px;
  position: relative;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #c79b46;
  text-decoration: none;
}
footer .content {
  display: flex;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}
footer .figure-outer {
  overflow: hidden;
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 190px;
  transform: translateX(-80%);
}
footer .figure-outer .figure {
  position: relative;
  transform: translateX(-50%);
}
footer.hidden {
  transform: translateY(100%);
}
.text-right {
  text-align: right;
}
.copyrights {
  width: 280px;
}
.copyrights__sub {
  color: #778899;
}
.content {
  margin: 0 auto;
  padding: 0 136px;
}
.glow {
  background: no-repeat center / contain;
  position: absolute;
  width: 1004px;
  height: 1004px;
}
.glow--1 {
  right: -326px;
  top: 100px;
}
.glow--2 {
  left: -556px;
  top: -50px;
}
.glow--3 {
  right: -882px;
  top: -590px;
}
.glow--4 {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}
.glow--5 {
  right: -326px;
  top: -278px;
}
.glow--6 {
  left: -724px;
  bottom: -510px;
}
.glow--7 {
  left: -556px;
  bottom: -510px;
}
.glow--8 {
  left: -556px;
  top: 250px;
}
.glow--9 {
  transform: translateX(50%);
  right: 0;
  top: 0;
}
.glow--10 {
  left: -668px;
  top: 350px;
}
.glow--12 {
  right: -882px;
  top: 1600px;
}
.glow--13 {
  left: -421px;
  top: -400px;
}
.glow--14 {
  left: -556px;
  bottom: 28px;
}
.glow--md {
  width: 1172px;
  height: 1172px;
}
.glow--big {
  width: 1644px;
  height: 1644px;
}
.glow--blue {
  background-image: url(../img/glow1.svg);
}
.glow--red {
  background-image: url(../img/glow2.svg);
}
.glow--violet {
  background-image: url(../img/glow3.svg);
}
.rock {
  background: no-repeat center / contain;
  position: absolute;
  line-height: 0;
  width: 1200px;
  height: 750px;
  z-index: -1;
}
.rock lottie-player,
.rock img {
  width: 100%;
  height: 100%;
}
.rock--1 {
  right: -625px;
  top: 1000px;
}
.rock--2 {
  right: -625px;
  top: 50px;
}
.rock--3 {
  left: -760px;
  top: -150px;
}
.rock--4 {
  left: -625px;
  top: 380px;
}
.rock--5 {
  left: -625px;
  top: -250px;
}
.rock--6 {
  right: -775px;
  top: 80px;
}
.rock--7 {
  left: -680px;
  top: 430px;
}
.rock--8 {
  right: -680px;
  top: 500px;
}
.rock--9 {
  left: -864px;
  bottom: 0;
}
.rock--10 {
  right: -760px;
  bottom: -112px;
}
.rock-inner {
  background: no-repeat center / contain;
  width: 100%;
  height: 100%;
}
.page {
  position: relative;
}
.page__voile {
  z-index: 99;
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #071827;
}
.page--inner {
  padding-top: 224px;
  z-index: 20;
}
.page--fix-height {
  min-height: 950px;
}
.page--partners {
  padding-top: 224px;
  z-index: 20;
}
.page--mt {
  margin-top: 210px;
}
.page--mb {
  margin-bottom: 128px;
}
.page--faq {
  padding-top: 128px;
  padding-bottom: 64px;
  border-top: 1px solid #c79b46;
}
.page--faq h3 {
  text-align: center;
}
.page--faq-pb {
  padding-bottom: 240px;
}
.page--form {
  padding: 128px 0;
  border-top: 1px solid #c79b46;
}
.page--form h3 {
  text-align: center;
  margin-bottom: 96px;
}
.page--1 {
  padding: 584px 0 0 0;
}
.page--1 .phrase {
  position: absolute;
  top: 224px;
  left: 0;
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  text-transform: uppercase;
}
.page--1 .mission {
  margin-left: auto;
  position: absolute;
  left: 808px;
  top: 656px;
}
.page--1 .logo {
  position: absolute;
  top: 168px;
  right: 0;
}
.page--2 {
  padding: 450px 0 200px;
}
.page--2 .text {
  text-align: center;
  font-weight: 500;
  font-size: 34px;
  line-height: 48px;
}
.page--5 {
  padding-top: 160px;
}
.page--5 .block {
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 32px;
  width: 432px;
}
.page--5 .block--2 {
  width: 320px;
}
.page--6 {
  padding-top: 150px;
  z-index: 11;
}
.page--6 .block {
  font-size: 16px;
  line-height: 24px;
  width: 620px;
}
.page--7 {
  padding: 0 0 88px;
  z-index: 10;
}
.page--7 h3 {
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
}
.page--project-top {
  height: 100vh;
  background: no-repeat center / cover;
  width: 100vw;
  left: 0;
  position: fixed;
  top: 0;
  display: flex;
  align-items: flex-end;
}
.page--project-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 31, 48, 0) 0%, rgba(11, 31, 48, 0.3) 100%), linear-gradient(0deg, rgba(11, 31, 48, 0.3), rgba(11, 31, 48, 0.3));
}
.page--project-top .content {
  padding-bottom: 80px;
  position: relative;
  width: 100%;
}
.mission {
  width: 432px;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
}
.mission__title {
  color: #c79b46;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 32px;
}
.next-arrow {
  position: absolute;
  top: 712px;
  left: 0;
  background: url(../img/icon_arrow_white.svg) no-repeat center / 24px auto;
  z-index: 3;
  cursor: pointer;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.next-arrow:hover {
  border-color: #c79b46;
}
.next-arrow:after {
  content: "ВНИЗ";
  position: absolute;
  transform: rotate(-90deg);
  bottom: 150%;
  left: 25%;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.next-arrow--no-text:after {
  opacity: 0;
}
.next-arrow--disabled {
  opacity: 0;
  cursor: default;
}
.prev-arrow {
  position: absolute;
  top: 612px;
  left: 0;
  background: url(../img/icon_arrow_white.svg) no-repeat center / 24px auto;
  z-index: 3;
  cursor: pointer;
  transform: rotate(180deg);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.prev-arrow:hover {
  border-color: #c79b46;
}
.prev-arrow--disabled {
  opacity: 0;
  cursor: default;
}
.url {
  color: #c79b46;
  text-decoration: none;
  transition: all 0.3s ease;
}
.url img,
.url svg {
  width: 16px;
  vertical-align: baseline;
}
.url img path,
.url svg path {
  fill: #c79b46;
  transition: all 0.3s ease;
}
.url:hover {
  color: #fff;
  text-decoration: none;
}
.url:hover img path,
.url:hover svg path {
  fill: #fff;
}
.ul {
  padding: 0;
  margin: 0;
}
.ul li {
  list-style-type: none;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.ul--2 {
  margin-bottom: 72px;
}
.ul--2 li {
  font-weight: normal;
  text-transform: none;
  padding-left: 32px;
  position: relative;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 24px;
}
.ul--2 li:before {
  content: "—";
  position: absolute;
  top: 0;
  left: 0;
}
.projects {
  margin: 82px 0 148px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.projects--inner {
  margin-bottom: 40px;
  margin-top: 80px;
}
.projects-include {
  position: relative;
  z-index: 18;
}
.projects-include h3 {
  text-align: center;
}
.projects-include + .page--7 {
  margin-top: 154px;
}
.projects-section {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 80px;
  margin-bottom: 96px;
  margin-top: 80px;
}
.projects-section__col {
  width: 380px;
  margin-right: 48px;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
}
.projects-section__title {
  margin-bottom: 32px;
}
.projects-section__more:after {
  content: "";
  display: inline-block;
  background: url(../img/icon_arrow_right.svg) no-repeat center / contain;
  width: 32px;
  height: 32px;
  vertical-align: bottom;
  margin-left: 16px;
  transition: all 0.3s ease;
}
.projects-section__more:hover:after {
  margin-left: 32px;
}
.projects-section__content {
  font-size: 22px;
  line-height: 32px;
}
.projects-section-after {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
}
.count {
  display: inline-block;
  vertical-align: middle;
  background: #c79b46;
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  padding: 8px 20px;
  border-radius: 100px;
  margin: 0 16px;
}
.project {
  width: 430px;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 80px;
}
.project--big {
  width: 870px;
}
.project__img {
  width: 100%;
  height: 432px;
  background: no-repeat center / cover;
  display: inline-block;
  line-height: 0;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.project__img:hover .project__pic {
  transform: scale(1.1);
}
.project__pic {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
  transition: all 1s ease;
}
.project__partner {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
  top: 24px;
  left: 24px;
  background: #fff no-repeat center / 48px auto;
}
.project__partner--2 {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}
.project__partner--2 img {
  max-height: 35px;
  max-width: 160px;
}
.project__content {
  color: #778899;
}
.project__title {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 32px;
  transition: all 0.3s ease;
}
.project__title:hover {
  text-decoration: none;
  color: #c79b46;
}
.project__tags {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
}
.project__tags .tag {
  margin-right: 8px;
}
.project:hover .project__title {
  color: #c79b46;
}
.project-detail {
  margin-bottom: 96px;
}
.project-detail-top {
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
}
.project-detail-top__title {
  font-size: 44px;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.project-detail-top__title--no-margin {
  margin-bottom: 0!important;
}
.project-detail-top__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-detail-top__logo img,
.project-detail-top__logo svg {
  height: 40px;
}
.project-detail-top__year {
  padding: 8px 16px;
  background: #c79b46;
  text-transform: uppercase;
}
.project-detail-top__year a {
  color: #fff;
  text-decoration: none;
}
.project-detail-top__year a:hover {
  color: #c79b46;
  text-decoration: none;
}
.project-detail-top__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}
.project-detail-top--mobile {
  display: none;
}
.project-detail-top--simple {
  color: #0B1F30;
  border-bottom: 1px solid #B8C4C6;
  padding-bottom: 80px;
}
.project-detail-top--simple .project-detail-top__year a {
  color: #0B1F30;
}
.project-detail-top--simple .project-detail-top__year a:hover {
  color: #c79b46;
}
.project-detail-header {
  padding: 96px 0;
  border-bottom: 1px solid #c79b46;
  display: flex;
  justify-content: space-between;
}
.project-detail-header__text {
  width: 768px;
  font-size: 22px;
  line-height: 32px;
}
.project-detail-header__link {
  text-transform: uppercase;
  text-align: right;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: #8BA0B6;
}
.project-detail-header__logo {
  margin-top: 16px;
  text-align: right;
}
.project-detail-header__logo img,
.project-detail-header__logo svg {
  max-height: 40px;
}
.project-detail__content {
  margin-top: 96px;
  padding: 0 224px;
  font-size: 22px;
  line-height: 32px;
}
.project-detail__content h3 {
  margin-top: 96px;
}
.project-detail__content hr {
  width: 1328px;
  margin-left: -224px;
  border: 0;
  height: 1px;
  background: #c79b46;
  margin-top: 96px;
}
.project-detail__content .quote,
.project-detail__content .results {
  margin: 128px -224px;
}
.project-detail__content .ol,
.project-detail__content .ul {
  margin: 48px 0;
}
.project-detail .tags {
  margin: 48px 0 0;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 128px;
}
.tags--mb-small {
  margin-bottom: 48px;
}
.tags .tag {
  margin: 0 8px 8px 0;
}
.tags--2 {
  margin-top: -96px;
}
.tag {
  margin-top: 8px;
  color: #fff;
  display: inline-block;
  border-radius: 16px;
  font-size: 12px;
  line-height: 16px;
  padding: 8px 12px;
  background: #4F5B66;
  text-transform: none;
}
.tag:hover,
.tag.active {
  text-decoration: none;
  background: #c79b46;
  color: #fff;
}
.tag--big {
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  border-radius: 20px;
}
.tag--dark {
  background: #182A3A;
}
p {
  margin: 0;
}
p + p {
  margin-top: 25px;
}
.form {
  width: 880px;
  margin: 0 auto;
  text-align: left;
}
.form__row {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.form__row--btns {
  align-items: center;
}
.form__row--flex {
  display: flex;
}
.form__col {
  width: 49%;
  position: relative;
}
.form__error {
  display: none;
  position: absolute;
  top: 100%;
  color: #E7517E;
  font-size: 12px;
  line-height: 16px;
}
.form__name {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  color: #8BA0B6;
}
.form__title {
  font-weight: 500;
  font-size: 34px;
  line-height: 48px;
  margin-bottom: 48px;
}
.form__block {
  padding-bottom: 24px;
}
.form input[type=text],
.form textarea,
.form select {
  width: 100%;
  font-family: 'Euclid Circular A', sans-serif;
  background: #0B1F30;
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #1F2F3C;
  padding: 12px 16px;
  color: #fff;
  transition: all 0.3s ease;
}
.form input[type=text]::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder,
.form select::-webkit-input-placeholder {
  color: #fff;
}
.form input[type=text]:-ms-input-placeholder,
.form textarea:-ms-input-placeholder,
.form select:-ms-input-placeholder {
  color: #fff;
}
.form input[type=text]::-ms-input-placeholder,
.form textarea::-ms-input-placeholder,
.form select::-ms-input-placeholder {
  color: #fff;
}
.form input[type=text]::placeholder,
.form textarea::placeholder,
.form select::placeholder {
  color: #fff;
}
.form input[type=text]:focus,
.form textarea:focus,
.form select:focus {
  border-bottom-color: #c79b46;
}
.form textarea {
  height: 140px;
}
.form--error {
  color: #E7517E;
}
.form--error input[type=text],
.form--error textarea {
  color: #E7517E;
  border-bottom-color: #E7517E;
}
.form--error .form__error {
  display: block;
}
.form--error .checkbox-container .checkbox-checkmark {
  background: #E7517E;
}
.form--2 .form__row:not(.form__row--flex) {
  display: block;
}
.form--2 input[type=text],
.form--2 textarea,
.form--2 select {
  background: #fff;
  font-size: 22px;
  line-height: 32px;
  color: #0B1F30;
}
.form--2 input[type=text]::-webkit-input-placeholder,
.form--2 textarea::-webkit-input-placeholder,
.form--2 select::-webkit-input-placeholder {
  color: #8BA0B6;
}
.form--2 input[type=text]:-ms-input-placeholder,
.form--2 textarea:-ms-input-placeholder,
.form--2 select:-ms-input-placeholder {
  color: #8BA0B6;
}
.form--2 input[type=text]::-ms-input-placeholder,
.form--2 textarea::-ms-input-placeholder,
.form--2 select::-ms-input-placeholder {
  color: #8BA0B6;
}
.form--2 input[type=text]::placeholder,
.form--2 textarea::placeholder,
.form--2 select::placeholder {
  color: #8BA0B6;
}
.checkbox-block {
  padding-left: 40px;
  font-size: 12px;
  line-height: 16px;
}
.checkbox-block .checkbox-container {
  float: left;
  margin-left: -40px;
}
.checkbox-block a {
  color: #c79b46;
}
.checkbox-block a:hover {
  color: #c79b46;
  text-decoration: none;
}
.btn {
  cursor: pointer;
  border: none;
  background: #c79b46;
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  font-family: 'Euclid Circular A', sans-serif;
  min-width: 320px;
  height: 56px;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.btn:hover {
  color: #fff;
  background: #a78033;
}
.btn-sm {
  min-width: auto;
  height: 30px;
  padding-top: 0!important;
  padding-bottom: 0!important;
}
.btn--green {
  background: #37D49C;
}
.btn--green:hover {
  color: #fff;
  background: #26b280;
}
.btn--fixed {
  min-width: auto;
  width: 300px;
}
.btn--border {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.btn--border:hover {
  background: #fff;
  color: #c79b46;
}
.popup__outer {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}
.popup__content {
  padding: 112px 128px 128px 136px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.popup__list {
  padding: 155px 136px 112px 112px;
  width: 680px;
}
.popup__title {
  font-weight: 500;
  font-size: 54px;
  line-height: 64px;
  margin-bottom: 64px;
  text-transform: uppercase;
}
.popup__num {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 8px;
}
.popup__text {
  font-size: 22px;
  line-height: 32px;
}
.popup__item {
  font-weight: 500;
  width: 320px;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #fff;
}
.popup__item:hover {
  text-decoration: underline;
  color: #fff;
}
.popup__pages {
  position: absolute;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  left: 136px;
  bottom: 56px;
}
.popup__pages span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #fff;
  opacity: 0.3;
  margin: 0 8px;
}
.popup__nav {
  position: fixed;
  width: 96px;
  justify-content: space-between;
  right: 136px;
  bottom: 56px;
  display: flex;
}
.popup__arrow {
  display: inline-block;
  background: url(../img/icon_arrow_right_white.svg) no-repeat center / contain;
  width: 32px;
  height: 24px;
  cursor: pointer;
}
.popup__arrow--prev {
  transform: scaleX(-1);
}
.popup__btns {
  margin-top: 76px;
  display: flex;
  justify-content: space-between;
}
.fancybox-slide--html .fancybox-close-small {
  background: url(../img/icon_close-white.svg) no-repeat center / contain;
  width: 32px;
  height: 32px;
  padding: 0;
  top: 40px;
  right: 40px;
}
.fancybox-slide--html .fancybox-close-small svg {
  display: none;
}
.fancybox-slide--html {
  padding: 0;
}
.fancybox-content {
  width: 100%;
  padding: 0;
  background: #c79b46;
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 100%;
}
.fancybox-content .flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
.fancybox-content.popup--form {
  background: #071827;
  padding: 7%;
}
.float {
  z-index: 19;
  position: absolute;
  right: 0;
  top: 190px;
}
.center {
  text-align: center;
}
.sphere {
  display: inline-block;
  background: url(../img/spheres/01.png) no-repeat center / contain;
}
.sphere--1 {
  width: 40px;
  height: 41px;
}
.sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 1000px;
  height: 1000px;
  line-height: 0;
}
.sun img,
.sun lottie-player {
  width: 100%;
  opacity: 0.8;
  height: 100%;
}
.sun-outer {
  position: absolute;
  z-index: -1;
  top: -330px;
  right: -30px;
  width: 1000px;
  height: 1000px;
}
.marquee {
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
}
.marquee > div {
  display: inline-block;
  width: 100%;
}
.marquee--2 > div {
  animation: marquee 60s linear infinite;
}
.marquee-outer {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  height: 190px;
}
.marquee2 {
  opacity: 0;
  transform: translateX(-100%);
}
.marquee2.show {
  opacity: 1;
}
@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.word {
  display: inline-block;
  height: 190px;
  margin: 0 60px;
}
.word img,
.word svg {
  height: 100%;
}
.accordion {
  width: 768px;
  position: relative;
  border-bottom: 1px solid #1F2F3C;
}
.accordion--2 {
  width: 896px;
  border-bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 128px;
}
.accordion--2 .accordion-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.accordion--3 {
  width: 880px;
  margin: 0 auto 64px;
  border-bottom: none;
}
.accordion--3 .accordion-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.accordion-item {
  padding: 64px 0 64px 64px;
  border-top: 1px solid #1F2F3C;
}
.accordion-item__title {
  font-weight: 500;
  font-size: 54px;
  line-height: 64px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.accordion-item__title:hover .accordion-item__arrow {
  opacity: 1;
}
.accordion-item__title:hover .accordion-item__num {
  opacity: 0;
}
.accordion-item__num {
  font-size: 22px;
  line-height: 32px;
  position: absolute;
  top: 8px;
  left: -64px;
  color: #c79b46;
  transition: all 0.3s ease;
}
.accordion-item__arrow {
  opacity: 0;
  display: inline-block;
  background: url(../img/icon_arrow_right.svg) no-repeat center / contain;
  width: 32px;
  height: 24px;
  position: absolute;
  top: 8px;
  left: -64px;
  transition: all 0.3s ease;
}
.accordion-item__text {
  font-size: 16px;
  display: block;
  line-height: 24px;
  margin-top: 16px;
  color: #8BA0B6;
  transition: all 0.3s ease;
}
.accordion-item:hover .accordion-item__text {
  color: #fff;
}
.accordion-item--simple {
  padding-left: 0;
}
.accordion-item--simple .accordion-item__title {
  font-size: 44px;
  line-height: 48px;
}
.accordion-item--simple .accordion-item__text {
  font-size: 22px;
  line-height: 32px;
  margin-top: 48px;
}
.accordion--list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: none;
}
.accordion--list .accordion-item {
  width: 48%;
}
.accordion-menu {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.accordion-menu-item {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}
.accordion-menu-item:hover,
.accordion-menu-item.active {
  color: #c79b46;
}
.accordion .tags {
  margin: 16px 0 0;
}
.service-head {
  border-bottom: 2px solid #c79b46;
  padding-bottom: 64px;
  font-size: 22px;
  line-height: 32px;
  padding-left: 64px;
  position: relative;
}
.service-head:before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/icon-star.svg) no-repeat center / contain;
  width: 22px;
  height: 22px;
  top: 13px;
  left: 0;
}
.service-head__title {
  font-weight: 500;
  font-size: 54px;
  line-height: 64px;
  margin-bottom: 16px;
  text-transform: uppercase;
  display: block;
  color: #fff;
}
.service-head__title:hover {
  color: #c79b46;
}
.service-detail {
  display: flex;
  justify-content: flex-end;
}
.service-detail .service-detail__text {
  width: 768px;
  font-size: 22px;
  line-height: 32px;
}
.figure {
  position: absolute;
}
.figure img {
  width: 100%;
}
.figure--1 {
  top: 51px;
  left: 336px;
  width: 216px;
  height: 215px;
}
.figure--2 {
  top: 426px;
  left: -144px;
  width: 448px;
  height: 446px;
}
.figure--3 {
  top: 48px;
  right: -340px;
  width: 645px;
  height: 710px;
}
.rennab {
  height: 895px;
  background: url(../img/philgood/sphere.png) no-repeat center / contain;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-top: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.rennab__logo {
  background: url(../img/philgood.svg) no-repeat center / contain;
  width: 440px;
  height: 115px;
  position: relative;
  z-index: 2;
}
.rennab__text {
  font-size: 22px;
  line-height: 32px;
  width: 656px;
  margin: 60px 0;
  text-align: center;
  color: #0B1F30;
  position: relative;
  z-index: 2;
}
.rennab__btn {
  position: relative;
  z-index: 2;
}
.showMobile {
  display: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px #071827 inset;
}
.filter {
  margin-bottom: 70px;
  position: relative;
}
.filter__row {
  padding-top: 32px;
  margin-bottom: 24px;
}
.filter__row--flex {
  border: none;
  display: flex;
  justify-content: space-between;
}
.filter__row--align-center {
  align-items: center;
}
.filter__row:first-child {
  padding-top: 0;
  border-top: 0;
}
.filter__row--mobile {
  display: none;
}
.filter--h1 {
  margin-bottom: 128px;
}
.filter--h1 .h1,
.filter--h1 h1 {
  margin-bottom: 0;
}
.filter-items {
  display: flex;
  margin-bottom: -8px;
  flex-wrap: wrap;
}
.filter-item {
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 20px;
  background: #182A3A;
  margin: 0 8px 8px 0;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s ease;
}
.filter-item > span {
  display: flex;
  height: 40px;
  align-items: center;
  padding: 0 16px;
}
.filter-item:hover {
  color: #c79b46;
}
.filter-item:hover svg path {
  fill: #c79b46;
}
.filter-item.active {
  background: #37D49C;
  color: #fff;
}
.filter-item.open .filter-item-choose {
  display: block;
}
.filter-item--calendar {
  margin: 0;
}
.filter-item--calendar > span {
  padding-right: 55px;
  position: relative;
  z-index: 2;
}
.filter-item--calendar .icon {
  margin-left: 16px;
}
.filter-item--calendar img,
.filter-item--calendar svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: -1;
}
.filter-item--calendar img path,
.filter-item--calendar svg path {
  fill: #c79b46;
  transition: all 0.3s ease;
}
.filter-item--calendar input {
  font-size: 18px;
  line-height: 28px;
  font-family: 'Euclid Circular A', sans-serif;
  color: #fff;
  width: 240px;
  padding: 0 48px 0 0;
  border: none;
  background: transparent;
  margin-right: -55px;
}
.filter-item-choose {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  z-index: 5;
  color: #0B1F30;
  box-shadow: 0 8px 40px rgba(11, 31, 48, 0.05);
  background: #fff;
  overflow: hidden;
  border-radius: 4px;
}
.filter-item-choose__title {
  padding: 16px;
}
.filter-item-choose__list {
  display: flex;
  flex-wrap: wrap;
  width: 216px;
  border-top: 1px solid #f5f5f5;
  justify-content: space-between;
}
.filter-item-choose__item {
  padding: 16px 0;
  text-align: center;
  width: 33.33%;
  border: 1px solid #f5f5f5;
  border-top: none;
  border-left: none;
}
.filter-item-choose__item:hover {
  color: #c79b46;
}
.filter-item-choose__item.active {
  background: #37D49C;
  color: #fff;
}
.daterangepicker {
  background: #182A3A;
  border-color: #0B1F30;
}
.daterangepicker .calendar-table {
  background: #182A3A;
  border-color: #0B1F30;
}
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  border-color: #fff;
}
.daterangepicker:after {
  border-bottom-color: #182A3A;
}
.daterangepicker:before {
  border-bottom-color: #0B1F30;
}
.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #c79b46;
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
}
.daterangepicker.show-calendar .drp-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.daterangepicker .drp-buttons .btn {
  line-height: 26px;
  height: 32px;
  width: auto;
  min-width: auto;
}
.more {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  padding-bottom: 100px;
  color: #c79b46;
}
.more__text {
  margin-top: 15px;
}
.more.active .icon--refresh {
  animation: rotating 2s linear infinite;
}
.text-uppercase {
  text-transform: uppercase;
}
.ol {
  margin: 0;
  padding: 0;
  counter-reset: my-awesome-counter;
  list-style: none;
}
.ol li {
  counter-increment: my-awesome-counter;
  position: relative;
  margin-left: 64px;
  min-height: 48px;
}
.ol li:before {
  content: "0" counter(my-awesome-counter);
  position: absolute;
  left: -64px;
  top: -5px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  border-radius: 50%;
  background: #c79b46;
  justify-content: center;
}
.ol li + li {
  margin-top: 24px;
}
.ol li.digits2:before {
  content: counter(my-awesome-counter);
}
.ol--simple {
  margin: 32px 0;
}
.ol--simple li {
  padding-left: 48px;
}
.ol--simple li:before {
  font-size: 22px;
  line-height: 32px;
  width: 48px;
  height: auto;
  background: transparent;
  color: #0B1F30;
  top: 0;
  display: block;
}
.ol--lines li {
  margin-left: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.ol--lines li:before {
  top: 15px;
  left: -72px;
}
.ol--lines li + li {
  margin-top: 0;
}
.img {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  padding: 0 136px;
  margin-top: 96px;
  margin-bottom: 96px;
}
.img img {
  width: 100%;
  z-index: 2;
}
.img__voile {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #071827;
}
.img__voile:not(.animation-finished):after,
.img__voile:not(.animated):after {
  opacity: 0;
}
.slider-outer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-top: 96px;
  margin-bottom: 64px;
  z-index: 2;
}
.slider-outer .tns-controls {
  margin: 50px auto 0;
  width: 880px;
  display: flex;
  justify-content: flex-end;
}
.slider-outer .tns-controls [data-controls="next"],
.slider-outer .tns-controls [data-controls="prev"] {
  display: inline-block;
  border: none;
  background: url(../img/icon_arrow_right.svg) no-repeat center / contain;
  width: 24px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-outer .tns-controls [data-controls="next"]:disabled,
.slider-outer .tns-controls [data-controls="prev"]:disabled {
  opacity: 0.4;
}
.slider-outer .tns-controls [data-controls="prev"] {
  transform: rotate(180deg);
  margin-right: 32px;
}
.slider-outer--2 {
  margin-top: 160px;
}
.slider-outer--2 .slider-item {
  padding: 8px;
}
.slider-outer--2 .tns-controls {
  margin: 50px 0 0 136px;
}
.slider-item {
  padding: 0 64px;
  width: 880px;
}
.slider-item__pic {
  margin-bottom: 8px;
  width: 100%;
  height: 496px;
  background: no-repeat center / cover;
}
.slider-item__pic--img {
  height: auto;
  line-height: 0;
}
.slider-item__pic--img img {
  width: 100%;
}
.slider-item__text {
  color: #778899;
  font-size: 16px;
  line-height: 20px;
}
.slider-controls {
  display: flex;
  margin-top: -92px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  width: 880px;
  font-size: 16px;
  line-height: 24px;
}
.slider-controls__all {
  margin-left: 40px;
  position: relative;
}
.slider-controls__all:before {
  content: "";
  position: absolute;
  background: #182A3A;
  height: 2px;
  width: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  right: 4px;
}
.slider-controls--2 {
  margin-top: -28px;
  margin-left: 136px;
}
.similar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 128px;
  margin-top: 64px;
  position: relative;
}
.similar h4,
.similar .h4 {
  text-align: center;
}
.quote {
  padding: 48px 0;
  margin-top: 128px;
  position: relative;
  border-top: 1px solid #c79b46;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.quote__text {
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  text-transform: uppercase;
  color: #c79b46;
  margin-bottom: 48px;
}
.quote__text:before {
  background: url(../img/icon-quote.svg) no-repeat left top / contain;
  content: "";
  width: 450px;
  height: 32px;
  display: inline-block;
}
.quote__name {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
}
.quote__prof {
  font-size: 16px;
  line-height: 24px;
  color: #778899;
}
.quote__ava {
  display: inline-block;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 256px;
  transform: translateY(-50%);
}
.quote--2 {
  border-top: 0;
}
.quote--2:before {
  content: "";
  position: absolute;
  width: 240px;
  height: 1px;
  background: #c79b46;
  top: 0;
  left: 0;
}
.quote--2:after {
  content: "";
  position: absolute;
  width: 864px;
  height: 1px;
  background: #c79b46;
  top: 0;
  right: 0;
}
.results {
  margin: 128px 0;
  position: relative;
}
.results-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.result {
  width: 430px;
  margin: 64px 0 0 0;
  padding-top: 48px;
  border-top: 2px solid #fff;
}
.result__title {
  font-weight: 500;
  font-size: 96px;
  line-height: 96px;
  color: #fff;
}
.result__text {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  color: #c79b46;
}
.result--empty {
  border-top: none;
}
.blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 64px;
}
.blog-item {
  width: 430px;
  position: relative;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
}
.blog-item__pic {
  height: 280px;
  width: 100%;
  background: no-repeat center / cover;
  margin-bottom: 24px;
  overflow: hidden;
}
.blog-item__pic:hover .blog-item__img {
  transform: scale(1.1);
}
.blog-item__img {
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
  transition: all 0.3s ease;
}
.blog-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.blog-item__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #c79b46;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.blog-item__title {
  font-size: 22px;
  line-height: 32px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.blog-item__title:hover {
  color: #c79b46;
  text-decoration: none;
}
.blog-item__section {
  font-size: 16px;
  line-height: 24px;
  color: #778899;
  margin-top: 40px;
}
.blog-item__logo {
  position: absolute;
  bottom: 32px;
  right: 48px;
}
.blog-item__logo img {
  max-width: 200px;
  max-height: 40px;
}
.blog-item--empty {
  background: transparent;
}
.blog-item:hover .blog-item__title {
  color: #c79b46;
}
.video {
  width: 100%;
  height: 496px;
  background: no-repeat center / cover;
  margin: 96px 0;
  position: relative;
  display: block;
}
.video__btn {
  width: 56px;
  height: 56px;
  background: #c79b46 url(../img/play.svg) no-repeat center / 16px auto;
  border-radius: 50%;
  margin-right: 16px;
  transition: all 0.3s ease;
}
.video__play {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
}
.video-text {
  font-size: 12px;
  line-height: 16px;
  color: #778899;
  margin-top: -86px;
  margin-bottom: 96px;
}
.video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(11, 31, 48, 0), rgba(11, 31, 48, 0.5) 100%);
}
.video:hover .video__btn {
  background-color: #c79b46;
}
.center {
  text-align: center;
}
.about-section {
  margin-bottom: 240px;
  position: relative;
}
.about-section.results {
  margin-top: -64px;
}
.about h4,
.about .h4 {
  text-align: center;
}
.about .block {
  position: relative;
}
.about .block--1 {
  margin-bottom: 240px;
}
.about .block--1 h3,
.about .block--1 .h3 {
  text-align: center;
}
.about .block--2 .block__content {
  margin-left: 448px;
  width: 768px;
}
.about .text {
  font-size: 22px;
  line-height: 32px;
}
.about .members {
  margin-bottom: -48px;
}
.hr {
  border: none;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 48px 0;
}
.hr--orange {
  background: #c79b46;
}
.values {
  display: flex;
  justify-content: center;
  margin: 30px -20px 0;
  flex-wrap: wrap;
}
.value {
  text-align: center;
  width: 320px;
  margin: 50px 8px 0;
}
.value__title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  color: #c79b46;
}
.value__text {
  padding: 0 16px;
  font-size: 16px;
  line-height: 24px;
}
.members {
  display: flex;
  justify-content: center;
  margin: 64px -20px 0;
  flex-wrap: wrap;
}
.member {
  text-align: center;
  width: 320px;
  margin: 0 8px 48px;
}
.member__pic {
  border-radius: 50%;
  height: 320px;
  width: 100%;
  margin-bottom: 32px;
  background: no-repeat center / cover;
}
.member__name {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
}
.member__prof {
  font-size: 16px;
  line-height: 24px;
  color: #4F5B66;
}
.contacts-block {
  display: flex;
  justify-content: space-between;
}
.contacts-block__col {
  font-weight: 500;
  width: 768px;
  font-size: 44px;
  line-height: 48px;
  text-transform: uppercase;
  margin-top: -40px;
}
.contacts-block__row {
  margin-top: 40px;
}
.contacts-block__how {
  width: 432px;
  font-size: 16px;
  line-height: 20px;
}
.contacts-block__title {
  color: #c79b46;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.gray {
  color: #4F5B66;
}
.map {
  height: 552px;
  width: 100%;
}
.map-block {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  padding-left: 136px;
  margin-bottom: 128px;
  margin-top: 128px;
}
.partners {
  height: 100%;
  position: fixed;
}
.partners .text {
  width: 768px;
  text-align: center;
  margin: -32px auto 0;
  font-size: 22px;
  line-height: 32px;
}
.partners .next-arrow {
  top: auto;
  bottom: 112px;
  left: 136px;
  z-index: 3;
}
.partners .next-arrow:after {
  display: none;
}
.partners .prev-arrow {
  top: auto;
  bottom: 200px;
  left: 136px;
  z-index: 4;
}
.partners .sun {
  width: 700px;
  height: 700px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25%;
  transition: all 1s ease;
}
.partners footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
}
.partners--step2 .sun {
  width: 66px;
  height: 66px;
  top: 70%;
}
.partners--step3 .section--start {
  top: -18%;
}
.partners--step4 .section--start {
  transform: translateY(-100%) translateX(-50%);
}
.partners--last .sun {
  width: 700px;
  height: 700px;
  top: 0;
}
.planet {
  position: absolute;
  transition: all 1s ease;
}
.planet__rock {
  line-height: 0;
  width: 100%;
}
.planet__rock img {
  width: 100%;
}
.planet__title {
  font-weight: 500;
  font-size: 12px;
  margin-bottom: -20px;
  line-height: 14px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  bottom: 100%;
  color: #c79b46;
  transition: all 1s ease;
}
.planet__title:before {
  content: "";
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 1s ease;
}
.planet__companies--4 .company--1 {
  margin-left: -22.16666667%;
  margin-top: -13.66666667%;
}
.planet__companies--4 .company--2 {
  margin-left: -1.41666667%;
  margin-top: -5.08333333%;
}
.planet__companies--4 .company--3 {
  margin-left: -15.25%;
  margin-top: 1.75%;
}
.planet__companies--4 .company--4 {
  margin-left: 6%;
  margin-top: 13.08333333%;
}
.planet__companies--3 .company--1 {
  margin-left: -19.41666667%;
  margin-top: -8.5%;
}
.planet__companies--3 .company--2 {
  margin-left: 11.25%;
  margin-top: -3.16666667%;
}
.planet__companies--3 .company--3 {
  margin-left: -3.83333333%;
  margin-top: 8.33333333%;
}
.planet__companies--2 .company--1 {
  margin-left: 4%;
  margin-top: -6.91666667%;
}
.planet__companies--2 .company--2 {
  margin-left: -13.16666667%;
  margin-top: 4.33333333%;
}
.planet__companies--6 .company--1 {
  margin-left: 7.08333333%;
  margin-top: -15.83333333%;
}
.planet__companies--6 .company--2 {
  margin-left: -19.41666667%;
  margin-top: -13.91666667%;
}
.planet__companies--6 .company--3 {
  margin-left: -1.41666667%;
  margin-top: -3.16666667%;
}
.planet__companies--6 .company--4 {
  margin-left: -18.16666667%;
  margin-top: 2.91666667%;
}
.planet__companies--6 .company--5 {
  margin-left: 10.41666667%;
  margin-top: 4.33333333%;
}
.planet__companies--6 .company--6 {
  margin-left: -5.33333333%;
  margin-top: 14.75%;
}
.planet__companies--11 .company--1 {
  margin-left: 2%;
  margin-top: -20.5%;
}
.planet__companies--11 .company--2 {
  margin-left: -18.66666667%;
  margin-top: -16.41666667%;
}
.planet__companies--11 .company--3 {
  margin-left: 15.16666667%;
  margin-top: -15.16666667%;
}
.planet__companies--11 .company--4 {
  margin-left: 12.5%;
  margin-top: -5.58333333%;
}
.planet__companies--11 .company--5 {
  margin-left: -23.25%;
  margin-top: -3.83333333%;
}
.planet__companies--11 .company--6 {
  margin-left: -5.41666667%;
  margin-top: -3.08333333%;
}
.planet__companies--11 .company--7 {
  margin-left: 15.41666667%;
  margin-top: 2.5%;
}
.planet__companies--11 .company--8 {
  margin-left: -22.5%;
  margin-top: 5%;
}
.planet__companies--11 .company--9 {
  margin-left: -4.58333333%;
  margin-top: 8.91666667%;
}
.planet__companies--11 .company--10 {
  margin-left: 5.83333333%;
  margin-top: 13.66666667%;
}
.planet__companies--11 .company--11 {
  margin-left: -16.08333333%;
  margin-top: 17.75%;
}
.planet__companies--12 .company--1 {
  margin-left: -6.08333333%;
  margin-top: -20.5%;
}
.planet__companies--12 .company--2 {
  margin-left: -19.41666667%;
  margin-top: -16.83333333%;
}
.planet__companies--12 .company--3 {
  margin-left: 15.16666667%;
  margin-top: -15.5%;
}
.planet__companies--12 .company--4 {
  margin-left: -25%;
  margin-top: -8.75%;
}
.planet__companies--12 .company--5 {
  margin-left: -4.08333333%;
  margin-top: -6.25%;
}
.planet__companies--12 .company--6 {
  margin-left: 12.5%;
  margin-top: -6.33333333%;
}
.planet__companies--12 .company--7 {
  margin-left: -21.66666667%;
  margin-top: 1.08333333%;
}
.planet__companies--12 .company--8 {
  margin-left: 15.25%;
  margin-top: 1.66666667%;
}
.planet__companies--12 .company--9 {
  margin-left: -7.5%;
  margin-top: 3.75%;
}
.planet__companies--12 .company--10 {
  margin-left: 12.5%;
  margin-top: 9.16666667%;
}
.planet__companies--12 .company--11 {
  margin-left: -19.66666667%;
  margin-top: 15%;
}
.planet__companies--12 .company--12 {
  margin-left: 1.25%;
  margin-top: 16.25%;
}
.planet--down {
  top: 110%;
  width: 564px;
  height: 368px;
}
.planet--down.planet--left {
  left: 232px;
}
.planet--down.planet--right {
  right: 232px;
}
.planet--small {
  top: 69%;
  width: 564px;
  height: 368px;
}
.planet--small.planet--left {
  left: 232px;
}
.planet--small.planet--right {
  right: 232px;
}
.planet--small .planet__title {
  font-size: 7px;
  line-height: 8px;
}
.planet--small .planet__title:before {
  height: 33px;
}
.planet--small .company {
  font-size: 7px;
  line-height: 8px;
}
.planet--small .company:before {
  height: 8px;
  width: 8px;
}
.planet--normal {
  top: 20%;
  width: 1016px;
  height: 635px;
}
.planet--normal.planet--left {
  left: -128px;
}
.planet--normal.planet--right {
  right: -128px;
}
.planet--big {
  top: -80%;
  width: 1653px;
  height: 1033px;
}
.planet--big.planet--left {
  left: -719px;
}
.planet--big.planet--right {
  right: -719px;
}
.planet--big .company {
  font-size: 19px;
  line-height: 22px;
}
.planet--big .company:before {
  height: 22px;
  width: 22px;
}
.planet--up {
  transform: translateY(-100%);
  top: -80%;
  width: 1653px;
  height: 1033px;
}
.planet--up.planet--left {
  left: -719px;
}
.planet--up.planet--right {
  right: -719px;
}
.section {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  transition: all 1s ease;
}
.section--start {
  top: 25%;
}
.company {
  position: absolute;
  left: 50%;
  top: 50%;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  line-height: 16px;
  text-transform: uppercase;
  padding-left: 24px;
  z-index: 2;
  transition: all 1s ease;
}
.company:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: all 1s ease;
}
.company-popup {
  visibility: hidden;
  padding: 32px 24px;
  width: 300px;
  position: absolute;
  z-index: -999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 100px rgba(0, 0, 0, 0.5);
  color: #0B1F30;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  text-transform: none;
}
.company-popup.active {
  visibility: visible;
  z-index: 999;
}
.company-popup__close {
  cursor: pointer;
  background: url(../img/icon_close.svg) no-repeat center / contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.company-popup__logo {
  margin-bottom: 24px;
}
.company-popup__logo img {
  max-height: 112px;
}
.company-popup__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
}
.company-popup__sub {
  font-size: 12px;
  line-height: 16px;
}
.company-popup__text {
  margin-top: 32px;
  font-size: 12px;
  line-height: 16px;
  color: #4F5B66;
}
.menu2 {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  background: #071827;
  z-index: 990;
  display: block;
  color: #fff;
  transition: all 0.3s ease;
}
.menu2__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu2 .logo path {
  fill: #fff;
}
.menu2 .phone {
  display: none;
}
.menu2 .link {
  color: #fff;
}
.menu2 .link:hover {
  color: #c79b46;
}
.menu2 .menu {
  flex-direction: column;
}
.menu2 .menu-item {
  font-weight: 500;
  color: #fff;
}
.menu2 .menu-item:before {
  background: #fff;
  top: 150%;
  transform: none;
}
.menu2 .menu-item:hover {
  color: #c79b46;
}
.menu2 .menu-item:hover:before {
  transform: none;
}
.vacancies-head {
  padding-left: 448px;
  padding-bottom: 128px;
  border-bottom: 1px solid #c79b46;
  margin-bottom: 128px;
}
.vacancies-head__text {
  font-size: 22px;
  line-height: 32px;
}
.vacancy {
  width: 880px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 32px;
  padding-bottom: 128px;
}
.vacancy ul + h3,
.vacancy p + h3,
.vacancy div + h3 {
  margin-top: 72px;
}
.faq {
  padding: 0 112px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.faq:after {
  content: "";
  position: absolute;
  top: 55px;
  right: 0;
  width: 32px;
  height: 32px;
  background: url(../img/icon_close-white.svg) no-repeat center / contain;
  transform: rotate(45deg);
  z-index: -1;
  transition: all 0.3s ease;
}
.faq:last-child {
  border-bottom: none;
}
.faq__question {
  padding: 48px 112px 48px 0;
  margin-right: -112px;
  font-weight: 500;
  font-size: 34px;
  line-height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq__answer {
  display: none;
  font-size: 22px;
  line-height: 32px;
  color: #8BA0B6;
  margin-top: -16px;
  padding-bottom: 48px;
}
.faq:hover:after {
  background-image: url(../img/icon_close.svg);
}
.faq:hover .faq__question {
  color: #c79b46;
}
.faq.active:after {
  transform: none;
}
.faq-block {
  width: 880px;
  margin: 0 auto;
}
.back {
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 80px;
  padding-left: 48px;
  position: relative;
}
.back:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(-1);
  background: url(../img/icon_arrow_right.svg) no-repeat center / contain;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}
.back:hover:after {
  left: -10px;
}
.social {
  display: flex;
}
.social-icon {
  width: 40px;
  height: 40px;
  line-height: 0;
  margin: 0 4px;
  display: inline-block;
}
.social-icon img,
.social-icon svg {
  width: 100%;
}
.social-icon img circle,
.social-icon svg circle,
.social-icon img path,
.social-icon svg path {
  transition: all 0.3s ease;
}
.social-icon:hover img circle,
.social-icon:hover svg circle {
  fill: #fff;
  stroke: #fff;
  opacity: 1;
}
.social-icon:hover img path,
.social-icon:hover svg path {
  fill: #4F5B66;
}
.social-icon--color img circle,
.social-icon--color svg circle {
  fill: #c79b46;
  stroke: #c79b46;
  opacity: 1;
}
.social-icon--color img path,
.social-icon--color svg path {
  fill: #fff;
}
.social-icon--color:hover img circle,
.social-icon--color:hover svg circle {
  fill: #fff;
  stroke: #fff;
  opacity: 1;
}
.social-icon--color:hover img path,
.social-icon--color:hover svg path {
  fill: #4F5B66;
}
.social--float {
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 40px;
  z-index: 99;
  transform: translateY(-50%);
}
.social--float .social-icon {
  margin: 4px 0;
}
.social--float .social-icon img circle,
.social--float .social-icon svg circle {
  fill: #c79b46;
  stroke: #c79b46;
  opacity: 1;
}
.social--float .social-icon img path,
.social--float .social-icon svg path {
  fill: #fff;
}
.social--float .social-icon:hover img circle,
.social--float .social-icon:hover svg circle {
  fill: #fff;
  stroke: #fff;
  opacity: 1;
}
.social--float .social-icon:hover img path,
.social--float .social-icon:hover svg path {
  fill: #4F5B66;
}
.not-found {
  padding-left: 360px;
  position: relative;
}
.not-found__title {
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  text-transform: uppercase;
}
.not-found__404 {
  position: absolute;
  transform: rotate(-90deg);
  top: 30px;
  left: 100px;
  font-weight: 500;
  font-size: 96px;
  line-height: 96px;
  color: #c79b46;
}
.not-found .logo {
  width: 92px;
  height: 40px;
  margin-bottom: 32px;
}
.not-found .text {
  margin-top: 180px;
}
body {
  font-size: 1vw;
  line-height: 1.5vw;
}
h1,
.h1 {
  margin: 0 0 8vw;
  font-size: 6vw;
  line-height: 6vw;
}
h2,
.h2 {
  margin: 0 0 4vw;
  font-size: 4.125vw;
  line-height: 4vw;
}
h2.mb-big,
.h2.mb-big {
  margin-bottom: 10vw;
}
h3,
.h3 {
  margin: 0 0 2.375vw;
  font-size: 2.75vw;
  line-height: 3vw;
}
h3.no-margin-top,
.h3.no-margin-top {
  margin-top: 0;
}
h4,
.h4 {
  font-size: 1.375vw;
  line-height: 2vw;
  margin: 0 0 1.5vw;
}
header {
  padding: 1.875vw 2.5vw;
}
header .phrase {
  font-size: 0.625vw;
  line-height: 1vw;
  margin-left: 1.375vw;
}
header.active {
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
  box-shadow: 0 0.5vw 2.5vw rgba(11, 31, 48, 0.05);
}
header.active .menu-item:before {
  top: 3.125vw;
}
header .logo {
  width: 4.625vw;
  height: 2vw;
}
.menu {
  margin: 0 3.375vw 0 5.75vw;
}
.menu-item {
  margin-left: 1.5vw;
  font-size: 1vw;
  line-height: 1.5vw;
}
.logo {
  width: 27vw;
  height: 11.625vw;
}
.phrase {
  font-size: 1.375vw;
  line-height: 2vw;
}
.hamburger {
  margin-left: 1.5vw;
}
.icon--mail {
  width: 2.5vw;
  height: 2.5vw;
  background-size: 1vw auto;
}
.icon--menu {
  width: 2vw;
  height: 2vw;
}
.icon--close {
  width: 2vw;
  height: 2vw;
}
.icon--refresh {
  width: 4vw;
  height: 4vw;
  background-size: 2vw auto;
}
.icon--arrow {
  width: 2vw;
  height: 1.5vw;
  background-size: 2vw auto;
}
.icon--calendar {
  width: 1vw;
  height: 1vw;
}
footer {
  padding: 6vw 0 3vw;
  font-size: 0.75vw;
  line-height: 1vw;
}
footer .figure-outer {
  height: 11.875vw;
}
.copyrights {
  width: 17.5vw;
}
.content {
  padding: 0 8.5vw;
}
.glow {
  width: 62.75vw;
  height: 62.75vw;
}
.glow--md {
  width: 73.25vw;
  height: 73.25vw;
}
.glow--big {
  width: 102.75vw;
  height: 102.75vw;
}
.glow--1 {
  right: -20.375vw;
  top: 6.25vw;
}
.glow--2 {
  left: -34.75vw;
  top: -3.125vw;
}
.glow--3 {
  right: -55.125vw;
  top: -36.875vw;
}
.glow--5 {
  right: -20.375vw;
  top: -17.375vw;
}
.glow--6 {
  left: -45.25vw;
  bottom: -31.875vw;
}
.glow--7 {
  left: -34.75vw;
  bottom: -31.875vw;
}
.glow--8 {
  left: -34.75vw;
  top: 15.625vw;
}
.glow--10 {
  left: -41.75vw;
  top: 21.875vw;
}
.glow--11 {
  right: -55.125vw;
  top: 100vw;
}
.glow--12 {
  right: -55.125vw;
  top: 100vw;
}
.glow--13 {
  left: -26.3125vw;
  top: -25vw;
}
.glow--14 {
  left: -34.75vw;
  bottom: 1.75vw;
}
.rock {
  width: 75vw;
  height: 46.875vw;
}
.rock--1 {
  right: -39.0625vw;
  top: 62.5vw;
}
.rock--2 {
  right: -39.0625vw;
  top: 3.125vw;
}
.rock--3 {
  left: -47.5vw;
  top: -9.375vw;
}
.rock--4 {
  left: -39.0625vw;
  top: 23.75vw;
}
.rock--5 {
  left: -39.0625vw;
  top: -15.625vw;
}
.rock--6 {
  right: -48.4375vw;
  top: 5vw;
}
.rock--7 {
  left: -42.5vw;
  top: 26.875vw;
}
.rock--8 {
  right: -42.5vw;
  top: 31.25vw;
}
.rock--9 {
  left: -54vw;
  bottom: 0;
}
.rock--10 {
  right: -47.5vw;
  bottom: -7vw;
}
.page--inner {
  padding-top: 14vw;
}
.page--mb {
  margin-bottom: 8vw;
}
.page--fix-height {
  min-height: 59.375vw;
}
.page--partners {
  padding-top: 14vw;
}
.page--form {
  padding: 8vw 0;
}
.page--form h3 {
  margin-bottom: 6vw;
}
.page--mt {
  margin-top: 13.125vw;
}
.page--faq {
  padding-top: 8vw;
  padding-bottom: 4vw;
}
.page--faq-pb {
  padding-bottom: 15vw;
}
.page--1 {
  padding: 36.5vw 0 0 0;
}
.page--1 .phrase {
  top: 14vw;
  font-size: 2.75vw;
  line-height: 3vw;
}
.page--1 .mission {
  left: 50.5vw;
  top: 41vw;
}
.page--1 .logo {
  top: 10.5vw;
}
.page--2 {
  padding: 28.125vw 0 12.5vw;
}
.page--2 .text {
  font-size: 2.125vw;
  line-height: 3vw;
}
.page--5 {
  padding-top: 10vw;
}
.page--5 .block {
  font-size: 1.375vw;
  line-height: 2vw;
  width: 27vw;
}
.page--5 .block--2 {
  width: 20vw;
}
.page--6 {
  padding-top: 9.375vw;
}
.page--6 .block {
  font-size: 1vw;
  line-height: 1.5vw;
  width: 38.75vw;
}
.page--7 {
  padding: 0 0 5.5vw;
}
.page--7 h3 {
  margin-bottom: 3.75vw;
}
.page--project .content {
  padding-bottom: 5vw;
}
.mission {
  width: 27vw;
  font-size: 1.375vw;
  line-height: 2vw;
}
.mission__title {
  margin-bottom: 0.5vw;
  font-size: 1.375vw;
  line-height: 2vw;
}
.next-arrow {
  top: 44.5vw;
  background-size: 1.5vw auto;
  width: 4.5vw;
  height: 4.5vw;
}
.next-arrow:after {
  font-size: 0.875vw;
  line-height: 1vw;
}
.prev-arrow {
  top: 38.25vw;
  background-size: 1.5vw auto;
  width: 4.5vw;
  height: 4.5vw;
}
.url img,
.url svg {
  width: 1vw;
}
.ul li {
  margin-bottom: 0.9375vw;
  font-size: 0.875vw;
  line-height: 1vw;
}
.ul--2 {
  margin-bottom: 4.5vw;
}
.ul--2 li {
  padding-left: 2vw;
  font-size: 1.375vw;
  line-height: 2vw;
  margin-bottom: 1.5vw;
}
.projects {
  margin: 5.125vw 0 9.25vw;
}
.projects--inner {
  margin-bottom: 2.5vw;
  margin-top: 5vw;
}
.projects-include + .page--7 {
  margin-top: 9.625vw;
}
.projects-section {
  padding-bottom: 5vw;
  margin-bottom: 6vw;
  margin-top: 5vw;
}
.projects-section__col {
  width: 23.75vw;
  margin-right: 3vw;
  font-size: 1.375vw;
  line-height: 2vw;
}
.projects-section__title {
  margin-bottom: 2vw;
}
.projects-section__more:after {
  width: 2vw;
  height: 2vw;
  margin-left: 1vw;
}
.projects-section__more:hover:after {
  margin-left: 2vw;
}
.projects-section__content {
  font-size: 1.375vw;
  line-height: 2vw;
}
.projects-section-after {
  font-size: 1.375vw;
  line-height: 2vw;
}
.count {
  font-size: 1.375vw;
  line-height: 2vw;
  padding: 0.5vw 1.25vw;
  border-radius: 6.25vw;
  margin: 0 1vw;
}
.project {
  width: 26.875vw;
  font-size: 1vw;
  line-height: 1.5vw;
  margin-bottom: 5vw;
}
.project--big {
  width: 54.375vw;
}
.project__img {
  height: 27vw;
  margin-bottom: 1vw;
}
.project__partner {
  width: 5vw;
  height: 5vw;
  top: 1.5vw;
  left: 1.5vw;
  background-size: 3vw auto;
}
.project__partner--2 {
  width: auto;
  height: auto;
}
.project__partner--2 img {
  max-height: 2.1875vw;
  max-width: 10vw;
}
.project__title {
  margin-bottom: 0.5vw;
  font-size: 1.375vw;
  line-height: 2vw;
}
.project__tags {
  margin-top: 2vw;
}
.project__tags .tag {
  margin-right: 0.5vw;
}
.project-detail {
  margin-bottom: 6vw;
}
.project-detail-top {
  font-size: 1.375vw;
  line-height: 2vw;
}
.project-detail-top__title {
  font-size: 2.75vw;
  line-height: 3vw;
  margin-bottom: 2vw;
}
.project-detail-top__title--no-margin {
  margin-bottom: 0 !important;
}
.project-detail-top__logo img,
.project-detail-top__logo svg {
  height: 2.5vw;
}
.project-detail-top__year {
  padding: 0.5vw 1vw;
}
.project-detail-top__date {
  font-size: 0.875vw;
  line-height: 1vw;
}
.project-detail-top--simple {
  padding-bottom: 5vw;
}
.project-detail-header {
  padding: 6vw 0;
}
.project-detail-header__text {
  width: 48vw;
  font-size: 1.375vw;
  line-height: 2vw;
}
.project-detail-header__link {
  font-size: 1.375vw;
  line-height: 2vw;
}
.project-detail-header__logo {
  margin-top: 1vw;
}
.project-detail-header__logo img,
.project-detail-header__logo svg {
  max-height: 2.5vw;
}
.project-detail__content {
  margin-top: 6vw;
  padding: 0 14vw;
  font-size: 1.375vw;
  line-height: 2vw;
}
.project-detail__content h3 {
  margin-top: 6vw;
}
.project-detail__content hr {
  width: 83vw;
  margin-left: -14vw;
  margin-top: 6vw;
}
.project-detail__content .quote,
.project-detail__content .results {
  margin: 8vw -14vw;
}
.project-detail__content .ol,
.project-detail__content .ul {
  margin: 3vw 0;
}
.project-detail .tags {
  margin: 3vw 0 0;
}
.tags {
  margin-bottom: 8vw;
}
.tags--mb-small {
  margin-bottom: 3vw;
}
.tags .tag {
  margin: 0 0.5vw 0.5vw 0;
}
.tags--2 {
  margin-top: -6vw;
}
.tag {
  margin-top: 0.5vw;
  border-radius: 1vw;
  font-size: 0.75vw;
  line-height: 1vw;
  padding: 0.5vw 0.75vw;
}
.tag--big {
  font-size: 1vw;
  line-height: 1.5vw;
  padding: 0.5vw 1vw;
  border-radius: 1.25vw;
}
p {
  margin: 0;
}
p + p {
  margin-top: 1.5625vw;
}
.form {
  width: 55vw;
}
.form__row {
  margin-bottom: 2.1875vw;
}
.form__error {
  font-size: 0.75vw;
  line-height: 1vw;
}
.form__name {
  font-size: 1vw;
  line-height: 1.5vw;
  margin-bottom: 1vw;
}
.form__title {
  font-size: 2.125vw;
  line-height: 3vw;
  margin-bottom: 3vw;
}
.form__block {
  padding-bottom: 1.5vw;
}
.form input[type=text],
.form textarea,
.form select {
  font-size: 1vw;
  line-height: 1.5vw;
  padding: 0.75vw 1vw;
}
.form textarea {
  height: 8.75vw;
}
.form--2 input[type=text],
.form--2 textarea,
.form--2 select {
  font-size: 1.375vw;
  line-height: 2vw;
}
.checkbox-block {
  padding-left: 2.5vw;
  font-size: 0.75vw;
  line-height: 1vw;
}
.checkbox-block .checkbox-container {
  margin-left: -2.5vw;
}
.btn {
  font-size: 1.375vw;
  line-height: 2vw;
  min-width: 20vw;
  height: 3.5vw;
}
.btn-sm {
  min-width: auto;
  height: 1.875vw;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.btn--fixed {
  min-width: auto;
  width: 18.75vw;
}
.popup__content {
  padding: 7vw 8vw 8vw 8.5vw;
}
.popup__list {
  padding: 9.6875vw 8.5vw 7vw 7vw;
  width: 42.5vw;
}
.popup__title {
  font-size: 3.375vw;
  line-height: 4vw;
  margin-bottom: 4vw;
}
.popup__num {
  font-size: 1.375vw;
  line-height: 2vw;
  margin-bottom: 0.5vw;
}
.popup__text {
  font-size: 1.375vw;
  line-height: 2vw;
}
.popup__item {
  width: 20vw;
  font-size: 0.875vw;
  line-height: 1vw;
  margin-bottom: 1.5vw;
}
.popup__pages {
  font-size: 1vw;
  line-height: 1.5vw;
  left: 8.5vw;
  bottom: 3.5vw;
}
.popup__pages span {
  width: 1.5vw;
  height: 0.125vw;
  margin: 0 0.5vw;
}
.popup__nav {
  width: 6vw;
  right: 8.5vw;
  bottom: 3.5vw;
}
.popup__arrow {
  width: 2vw;
  height: 1.5vw;
}
.popup__btns {
  margin-top: 4.75vw;
}
.fancybox-slide--html .fancybox-close-small {
  width: 2vw;
  height: 2vw;
  top: 2.5vw;
  right: 2.5vw;
}
.float {
  top: 11.875vw;
}
.sphere--1 {
  width: 2.5vw;
  height: 2.5625vw;
}
.sun {
  width: 62.5vw;
  height: 62.5vw;
}
.sun-outer {
  top: -20.625vw;
  right: -1.875vw;
  width: 62.5vw;
  height: 62.5vw;
}
.marquee-outer {
  height: 11.875vw;
}
.wrapper--fixed .sun-outer {
  width: 93.75vw;
  height: 93.75vw;
}
.word {
  height: 11.875vw;
  margin: 0 3.75vw;
}
.accordion {
  width: 48vw;
}
.accordion--2 {
  width: 56vw;
  padding-right: 8vw;
}
.accordion--3 {
  width: 55vw;
  margin: 0 auto 4vw;
}
.accordion-item {
  padding: 4vw 0 4vw 4vw;
}
.accordion-item__title {
  font-size: 3.375vw;
  line-height: 4vw;
}
.accordion-item__num {
  font-size: 1.375vw;
  line-height: 2vw;
  top: 0.5vw;
  left: -4vw;
}
.accordion-item__arrow {
  width: 2vw;
  height: 1.5vw;
  top: 0.5vw;
  left: -4vw;
}
.accordion-item__text {
  font-size: 1vw;
  line-height: 1.5vw;
  margin-top: 1vw;
}
.accordion-item--simple {
  padding-left: 0;
}
.accordion-item--simple .accordion-item__title {
  font-size: 2.75vw;
  line-height: 3vw;
}
.accordion-item--simple .accordion-item__text {
  font-size: 1.375vw;
  line-height: 2vw;
  margin-top: 3vw;
}
.accordion-menu-item {
  margin-bottom: 0.75vw;
  font-size: 1vw;
  line-height: 1.5vw;
}
.accordion--list {
  width: 100%;
}
.accordion .tags {
  margin: 1vw 0 0;
}
.service-head {
  padding-bottom: 4vw;
  font-size: 1.375vw;
  line-height: 2vw;
  padding-left: 4vw;
}
.service-head:before {
  width: 1.375vw;
  height: 1.375vw;
  top: 0.8125vw;
}
.service-head__title {
  font-size: 3.375vw;
  line-height: 4vw;
  margin-bottom: 1vw;
}
.service-detail .service-detail__text {
  width: 48vw;
  font-size: 1.375vw;
  line-height: 2vw;
}
.figure--1 {
  top: 3.1875vw;
  left: 21vw;
  width: 13.5vw;
  height: 13.4375vw;
}
.figure--2 {
  top: 26.625vw;
  left: -9vw;
  width: 28vw;
  height: 27.875vw;
}
.figure--3 {
  top: 3vw;
  right: -21.25vw;
  width: 40.3125vw;
  height: 44.375vw;
}
.rennab {
  height: 55.9375vw;
  margin-top: 9vw;
}
.rennab__logo {
  width: 27.5vw;
  height: 7.1875vw;
}
.rennab__text {
  font-size: 1.375vw;
  line-height: 2vw;
  width: 41vw;
  margin: 3.75vw 0;
}
.filter {
  margin-bottom: 4.375vw;
}
.filter__row {
  padding-top: 2vw;
  margin-bottom: 1.5vw;
}
.filter__row:first-child {
  padding-top: 0;
  border-top: 0;
}
.filter--h1 {
  margin-bottom: 8vw;
}
.filter--h1 .h1,
.filter--h1 h1 {
  margin-bottom: 0;
}
.filter-items {
  margin-bottom: -0.5vw;
}
.filter-item {
  font-size: 1vw;
  line-height: 1.5vw;
  border-radius: 1.25vw;
  margin: 0 0.5vw 0.5vw 0;
}
.filter-item > span {
  height: 2.5vw;
  padding: 0 1vw;
}
.filter-item--calendar > span {
  padding-right: 3.4375vw;
}
.filter-item--calendar .icon {
  margin-left: 1vw;
}
.filter-item--calendar img,
.filter-item--calendar svg {
  width: 1vw;
  height: 1vw;
  right: 1vw;
}
.filter-item--calendar input {
  font-size: 1.125vw;
  line-height: 1.75vw;
  width: 15vw;
  padding: 0 3vw 0 0;
  margin-right: -3.4375vw;
}
.filter-item-choose {
  margin-top: 0.5vw;
  box-shadow: 0 0.5vw 2.5vw rgba(11, 31, 48, 0.05);
  border-radius: 0.25vw;
}
.filter-item-choose__title {
  padding: 1vw;
}
.filter-item-choose__list {
  width: 13.5vw;
}
.filter-item-choose__item {
  padding: 1vw 0;
}
.daterangepicker .drp-buttons .btn {
  line-height: 1.625vw;
}
.more {
  font-size: 1.375vw;
  line-height: 2vw;
  padding-bottom: 6.25vw;
}
.more__text {
  margin-top: 0.9375vw;
}
.ol li {
  margin-left: 4vw;
  min-height: 3vw;
}
.ol li:before {
  left: -4vw;
  top: -0.3125vw;
  width: 3vw;
  height: 3vw;
  font-size: 1vw;
  line-height: 1.5vw;
}
.ol li + li {
  margin-top: 1.5vw;
}
.ol--simple {
  margin: 2vw 0;
}
.ol--simple li {
  padding-left: 3vw;
}
.ol--simple li:before {
  font-size: 1.375vw;
  line-height: 2vw;
  width: 3vw;
}
.ol--lines li {
  margin-left: 4.5vw;
  padding: 1.5vw 0;
}
.ol--lines li:before {
  top: 0.9375vw;
  left: -4.5vw;
}
.img {
  padding: 0 8.5vw;
  margin-top: 6vw;
  margin-bottom: 6vw;
}
.slider-outer {
  margin-top: 6vw;
  margin-bottom: 4vw;
}
.slider-outer .tns-controls {
  margin: 3.125vw auto 0;
  width: 55vw;
}
.slider-outer .tns-controls [data-controls="next"],
.slider-outer .tns-controls [data-controls="prev"] {
  width: 1.5vw;
  height: 2vw;
}
.slider-outer .tns-controls [data-controls="prev"] {
  margin-right: 2vw;
}
.slider-outer--2 {
  margin-top: 10vw;
}
.slider-outer--2 .slider-item {
  padding: 0.5vw;
}
.slider-outer--2 .tns-controls {
  margin: 3.125vw 0 0 8.5vw;
}
.slider-item {
  padding: 0 4vw;
  width: 55vw;
}
.slider-item__pic {
  margin-bottom: 0.5vw;
  height: 31vw;
}
.slider-item__pic--img {
  height: auto;
}
.slider-item__text {
  font-size: 1vw;
  line-height: 1.25vw;
}
.slider-controls {
  margin-top: -5.75vw;
  margin-bottom: 4vw;
  width: 55vw;
  font-size: 1vw;
  line-height: 1.5vw;
}
.slider-controls__all {
  margin-left: 2.5vw;
}
.slider-controls__all:before {
  width: 1.5vw;
  right: 0.25vw;
}
.slider-controls--2 {
  margin-top: -1.75vw;
  margin-left: 8.5vw;
}
.similar {
  padding-top: 8vw;
  margin-top: 4vw;
}
.quote {
  padding: 3vw 0;
  margin-top: 8vw;
}
.quote__text {
  font-size: 2.75vw;
  line-height: 3vw;
  margin-bottom: 3vw;
}
.quote__text:before {
  width: 28.125vw;
  height: 2vw;
}
.quote__name {
  font-size: 1.375vw;
  line-height: 2vw;
}
.quote__prof {
  font-size: 1vw;
  line-height: 1.5vw;
}
.quote__ava {
  width: 11vw;
  height: 11vw;
  left: 16vw;
}
.quote--2 {
  border-top: 0;
}
.quote--2:before {
  width: 15vw;
}
.quote--2:after {
  width: 54vw;
}
.results {
  margin: 8vw 0;
}
.result {
  width: 26.875vw;
  margin: 4vw 0 0 0;
  padding-top: 3vw;
}
.result__title {
  font-size: 6vw;
  line-height: 6vw;
}
.result__text {
  font-size: 1.375vw;
  line-height: 2vw;
}
.blog {
  margin-bottom: 1.5vw;
  margin-top: 4vw;
}
.blog-item {
  width: 26.875vw;
  margin-bottom: 3.5vw;
}
.blog-item__pic {
  height: 17.5vw;
  margin-bottom: 1.5vw;
}
.blog-item__date {
  font-size: 0.875vw;
  line-height: 1vw;
  margin-bottom: 1vw;
}
.blog-item__title {
  font-size: 1.375vw;
  line-height: 2vw;
}
.blog-item__section {
  font-size: 1vw;
  line-height: 1.5vw;
  margin-top: 2.5vw;
}
.blog-item__logo {
  bottom: 2vw;
  right: 3vw;
}
.blog-item__logo img {
  max-width: 12.5vw;
  max-height: 2.5vw;
}
.video {
  height: 31vw;
  margin: 6vw 0;
}
.video__btn {
  width: 3.5vw;
  height: 3.5vw;
  background-size: 1vw auto;
  margin-right: 1vw;
}
.video__play {
  bottom: 3vw;
  left: 3vw;
  font-size: 0.875vw;
  line-height: 1vw;
}
.video-text {
  font-size: 0.75vw;
  line-height: 1vw;
  margin-top: -5.375vw;
  margin-bottom: 6vw;
}
.about-section {
  margin-bottom: 15vw;
}
.about-section.results {
  margin-top: -4vw;
}
.about .block--1 {
  margin-bottom: 15vw;
}
.about .block--2 .block__content {
  margin-left: 28vw;
  width: 48vw;
}
.about .text {
  font-size: 1.375vw;
  line-height: 2vw;
}
.about .members {
  margin-bottom: -3vw;
}
.hr {
  margin: 3vw 0;
}
.values {
  margin: 1.875vw -1.25vw 0;
}
.value {
  width: 20vw;
  margin: 3.125vw 0.5vw 0;
}
.value__title {
  margin-bottom: 0.5vw;
  font-size: 1.375vw;
  line-height: 2vw;
}
.value__text {
  padding: 0 1vw;
  font-size: 1vw;
  line-height: 1.5vw;
}
.members {
  margin: 4vw -1.25vw 0;
}
.member {
  width: 20vw;
  margin: 0 0.5vw 3vw;
}
.member__pic {
  height: 20vw;
  margin-bottom: 2vw;
}
.member__name {
  font-size: 1.375vw;
  line-height: 2vw;
}
.member__prof {
  font-size: 1vw;
  line-height: 1.5vw;
}
.contacts-block__col {
  width: 48vw;
  font-size: 2.75vw;
  line-height: 3vw;
  margin-top: -2.5vw;
}
.contacts-block__row {
  margin-top: 2.5vw;
}
.contacts-block__how {
  width: 27vw;
  font-size: 1vw;
  line-height: 1.25vw;
}
.contacts-block__title {
  margin-bottom: 1.5vw;
}
.map {
  height: 34.5vw;
}
.map-block {
  padding-left: 8.5vw;
  margin-bottom: 8vw;
  margin-top: 8vw;
}
.partners .text {
  width: 48vw;
  margin: -2vw auto 0;
  font-size: 1.375vw;
  line-height: 2vw;
}
.partners .next-arrow {
  top: auto;
  bottom: 7vw;
  left: 8.5vw;
}
.partners .prev-arrow {
  top: auto;
  bottom: 12.5vw;
  left: 8.5vw;
}
.partners .sun {
  width: 43.75vw;
  height: 43.75vw;
}
.partners--step2 .sun {
  width: 4.125vw;
  height: 4.125vw;
}
.partners--last .sun {
  width: 43.75vw;
  height: 43.75vw;
  top: 0;
}
.planet__title {
  font-size: 0.75vw;
  line-height: 0.875vw;
  margin-bottom: -1.25vw;
}
.planet__title:before {
  height: 2.1875vw;
}
.planet--down {
  width: 35.25vw;
  height: 23vw;
}
.planet--down.planet--left {
  left: 14.5vw;
}
.planet--down.planet--right {
  right: 14.5vw;
}
.planet--small {
  width: 35.25vw;
  height: 23vw;
}
.planet--small.planet--left {
  left: 14.5vw;
}
.planet--small.planet--right {
  right: 14.5vw;
}
.planet--small .planet__title {
  font-size: 0.4375vw;
  line-height: 0.5vw;
}
.planet--small .planet__title:before {
  height: 2.0625vw;
}
.planet--small .company {
  font-size: 0.4375vw;
  line-height: 0.5vw;
}
.planet--small .company:before {
  height: 0.5vw;
  width: 0.5vw;
}
.planet--normal {
  width: 63.5vw;
  height: 39.6875vw;
}
.planet--normal.planet--left {
  left: -8vw;
}
.planet--normal.planet--right {
  right: -8vw;
}
.planet--big {
  width: 103.3125vw;
  height: 64.5625vw;
}
.planet--big.planet--left {
  left: -44.9375vw;
}
.planet--big.planet--right {
  right: -44.9375vw;
}
.planet--big .company {
  font-size: 1.1875vw;
  line-height: 1.375vw;
}
.planet--big .company:before {
  height: 1.375vw;
  width: 1.375vw;
}
.planet--up {
  width: 103.3125vw;
  height: 64.5625vw;
}
.planet--up.planet--left {
  left: -44.9375vw;
}
.planet--up.planet--right {
  right: -44.9375vw;
}
.company {
  font-size: 0.875vw;
  line-height: 1vw;
  padding-left: 1.5vw;
}
.company:before {
  width: 1vw;
  height: 1vw;
}
.company-popup {
  padding: 2vw 1.5vw;
  width: 18.75vw;
  box-shadow: 0 0.5vw 6.25vw rgba(0, 0, 0, 0.5);
}
.company-popup__close {
  width: 1vw;
  height: 1vw;
  top: 1vw;
  right: 1vw;
}
.company-popup__logo {
  margin-bottom: 1.5vw;
}
.company-popup__logo img {
  max-height: 7vw;
}
.company-popup__title {
  font-size: 1.375vw;
  line-height: 2vw;
}
.company-popup__sub {
  font-size: 0.75vw;
  line-height: 1vw;
}
.company-popup__text {
  margin-top: 2vw;
  font-size: 0.75vw;
  line-height: 1vw;
}
.vacancies-head {
  padding-left: 28vw;
  padding-bottom: 8vw;
  margin-bottom: 8vw;
}
.vacancies-head__text {
  font-size: 1.375vw;
  line-height: 2vw;
}
.vacancy {
  width: 55vw;
  font-size: 1.375vw;
  line-height: 2vw;
  padding-bottom: 8vw;
}
.vacancy ul + h3,
.vacancy p + h3,
.vacancy div + h3 {
  margin-top: 4.5vw;
}
.faq {
  padding: 0 7vw 0 0;
}
.faq:after {
  top: 3.4375vw;
  right: 0;
  width: 2vw;
  height: 2vw;
}
.faq__question {
  padding: 3vw 7vw 3vw 0;
  margin-right: -7vw;
  font-size: 2.125vw;
  line-height: 3vw;
}
.faq__answer {
  font-size: 1.375vw;
  line-height: 2vw;
  margin-top: -1vw;
  padding-bottom: 3vw;
}
.faq-block {
  width: 55vw;
}
.back {
  font-size: 1.375vw;
  line-height: 2vw;
  margin-bottom: 5vw;
  padding-left: 3vw;
}
.back:after {
  width: 2vw;
  height: 2vw;
}
.back:hover:after {
  left: -0.625vw;
}
.social-icon {
  width: 2.5vw;
  height: 2.5vw;
  margin: 0 0.25vw;
}
.social-float {
  left: 2.5vw;
}
.social-float .social-icon {
  margin: 0.25vw 0;
}
.not-found {
  padding-left: 22.5vw;
}
.not-found__title {
  font-size: 2.75vw;
  line-height: 3vw;
}
.not-found__404 {
  top: 1.875vw;
  left: 6.25vw;
  font-size: 6vw;
  line-height: 6vw;
}
.not-found .logo {
  width: 5.75vw;
  height: 2.5vw;
  margin-bottom: 2vw;
}
.not-found .text {
  margin-top: 11.25vw;
}
/*
xs 0 - 575 mobile
sm 576 - 768 ipad
md 769 - 991 ipad
lg 992 - 1199 ipad
xl 1200 + desktop
 */
@media only screen and (max-width: 575px) {
  .showDesktop {
    display: none!important;
  }
  .showMobile {
    display: initial;
  }
  body {
    background-size: 300% auto;
    background-repeat: repeat-y;
    font-size: 18px;
    line-height: 28px;
  }
  body.open {
    overflow: hidden;
  }
  body.open .menu2 {
    top: 0;
  }
  .hamburger {
    margin-left: 24px;
    display: inline-block;
  }
  .hamburger-outer {
    line-height: 0;
  }
  .content {
    width: 320px;
    padding: 0 24px;
  }
  .icon--mail {
    width: 40px;
    height: 40px;
    background-size: 16px auto;
  }
  .icon--close,
  .icon--menu {
    width: 32px;
    height: 32px;
  }
  .icon--refresh {
    width: 64px;
    height: 64px;
    background-size: 32px auto;
  }
  .icon--phone {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #c79b46;
    background-size: 16px auto;
    background-image: url(../img/icon_call_small.svg);
  }
  header {
    padding: 16px 24px;
  }
  header .phrase {
    font-size: 18px;
    line-height: 28px;
  }
  header.active {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header .logo {
    position: relative;
    top: auto;
    left: 0;
    transform: none;
    width: 74px;
    height: 32px;
  }
  header .phone {
    margin-right: 16px;
    line-height: 0;
  }
  header .flex {
    align-items: center;
  }
  .header--white:not(.active) svg path {
    fill: #fff;
  }
  .logo {
    width: 74px;
    height: 32px;
  }
  h1,
  .h1 {
    margin: 0 0 48px;
    font-size: 34px;
    line-height: 40px;
  }
  h2,
  .h2 {
    margin: 0 0 32px;
    font-size: 30px;
    line-height: 36px;
  }
  h2.mb-big,
  .h2.mb-big {
    margin-bottom: 48px;
  }
  h3,
  .h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  h3--big,
  .h3--big {
    font-size: 26px;
  }
  h4,
  .h4 {
    font-size: 20px;
    line-height: 32px;
    margin: 0 0 24px;
  }
  .next-arrow {
    display: none;
  }
  .sphere-outer {
    width: 735px;
    height: 735px;
    top: -8px;
    left: -105px;
  }
  .sphere-outer--2 {
    width: 400px;
    height: 400px;
    background: none;
    top: auto;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
  .page--inner {
    padding-top: 88px;
  }
  .page--fix-height {
    min-height: auto;
  }
  .page--mt {
    margin-top: 64px;
  }
  .page--mb {
    margin-bottom: 64px;
  }
  .page--project-top {
    height: 55vw;
  }
  .page--faq {
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .page--faq-pb {
    padding-bottom: 64px;
  }
  .page--form {
    padding: 48px 0 0;
  }
  .page--form h3 {
    margin-bottom: 32px;
  }
  .page--1 {
    padding: 88px 0 0 0;
  }
  .page--1 .phrase {
    position: relative;
    top: auto;
    font-size: 22px;
    line-height: 32px;
  }
  .page--1 .phrase--2 {
    font-size: 18px;
    line-height: 28px;
    color: #778899;
    text-transform: none;
    margin-bottom: 32px;
  }
  .page--1 .mission {
    top: auto;
    position: relative;
    margin-top: 160px;
    left: auto;
  }
  .page--2 {
    padding: 80px 0 64px;
  }
  .page--2 .text {
    font-size: 20px;
    line-height: 24px;
  }
  .page--5 {
    padding-top: 64px;
  }
  .page--5 .block {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    padding: 0;
    margin-bottom: 48px;
    width: 100%;
  }
  .page--5 h3,
  .page--5 .h3 {
    color: #c79b46;
  }
  .page--6 {
    padding-top: 80px;
  }
  .page--6 .block {
    font-size: 18px;
    line-height: 24px;
    padding: 0;
    width: 100%;
  }
  .page--6 h3,
  .page--6 .h3 {
    color: #c79b46;
  }
  .page--7 {
    padding: 0;
  }
  .page--7 h3 {
    margin-bottom: 32px;
  }
  .wrapper--with-top {
    margin-top: 55vw;
  }
  .wrapper--with-top .page--inner {
    padding-top: 0;
  }
  .wrapper--fixed .sun-outer {
    width: 735px;
    height: 735px;
    right: -320px;
  }
  .mission {
    width: 100%;
    font-size: 20px;
    line-height: 32px;
  }
  .mission br {
    display: none;
  }
  .mission__title {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 32px;
  }
  .marquee-outer {
    height: 84px;
  }
  .word {
    height: 84px;
    margin: 0 25px;
  }
  .accordion {
    width: 100%;
  }
  .accordion-item {
    padding: 24px 0;
  }
  .accordion-item__title {
    font-size: 28px;
    line-height: 32px;
  }
  .accordion-item__num {
    font-size: 20px;
    line-height: 32px;
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 8px;
  }
  .accordion-item__arrow {
    width: 32px;
    height: 24px;
    top: 0;
    left: 0;
  }
  .accordion-item__text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
  }
  .accordion-item--simple .accordion-item__title {
    font-size: 22px;
    line-height: 32px;
  }
  .accordion-item--simple .accordion-item__text {
    font-size: 22px;
    line-height: 32px;
    margin-top: 16px;
  }
  .accordion--list .accordion-item {
    width: 100%;
  }
  .accordion--2 {
    width: 100%;
    border-right: none;
    padding-right: 0;
  }
  .accordion--2 .accordion-item {
    padding: 48px 0;
  }
  .accordion--2 .accordion-item:last-child {
    padding-bottom: 0;
  }
  .accordion--3 .accordion-item__title {
    font-size: 26px;
  }
  .accordion .tags {
    margin: 8px 0 0;
  }
  .projects {
    margin: 64px 0;
  }
  .projects--inner {
    margin: 48px 0;
  }
  .projects-section {
    padding-bottom: 48px;
    margin-bottom: 48px;
    margin-top: 32px;
    display: block;
  }
  .projects-section__col {
    width: 100%;
    margin-right: 0;
    font-size: 22px;
    line-height: 32px;
  }
  .projects-section__title {
    margin-bottom: 16px;
  }
  .projects-section__more {
    font-size: 22px;
    display: block;
    line-height: 32px;
    text-transform: uppercase;
    margin-top: 32px;
  }
  .projects-section__more:after {
    width: 32px;
    height: 32px;
    margin-left: 16px;
  }
  .projects-section__more:hover:after {
    margin-left: 32px;
  }
  .projects-section__content {
    font-size: 18px;
    line-height: 24px;
  }
  .projects-section-after {
    font-size: 20px;
    line-height: 32px;
  }
  .project {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 48px;
  }
  .project__img {
    height: 272px;
    margin-bottom: 16px;
  }
  .project__partner {
    width: 80px;
    height: 80px;
    top: 16px;
    left: 16px;
    background-size: 48px auto;
  }
  .project__partner--2 {
    width: auto;
    height: auto;
  }
  .project__partner--2 img {
    max-height: 35px;
    max-width: 160px;
  }
  .project__title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 24px;
  }
  .project__tags {
    margin-top: 8px;
  }
  .project__tags .tag {
    margin-right: 8px;
  }
  .project-detail {
    margin-bottom: 32px;
  }
  .project-detail-top {
    font-size: 22px;
    line-height: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 32px;
  }
  .project-detail-top__title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .project-detail-top__flex {
    display: block;
  }
  .project-detail-top__logo {
    margin-bottom: 16px;
  }
  .project-detail-top__logo img,
  .project-detail-top__logo svg {
    height: 40px;
  }
  .project-detail-top__year {
    display: inline;
    padding: 6px 10px;
  }
  .project-detail-top__date {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 0;
  }
  .project-detail-top--mobile {
    display: block;
    padding-top: 24px;
  }
  .project-detail-header {
    padding: 32px 0;
    display: block;
  }
  .project-detail-header__text {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .project-detail-header__link {
    text-align: left;
    font-size: 22px;
    line-height: 32px;
    margin-top: 16px;
  }
  .project-detail-header__link span {
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
    overflow: hidden;
    max-width: 91%;
    display: inline-block;
  }
  .project-detail-header__logo {
    margin-top: 8px;
    text-align: left;
  }
  .project-detail-header__logo img,
  .project-detail-header__logo svg {
    max-height: 40px;
  }
  .project-detail__content {
    margin-top: 32px;
    padding: 0;
    font-size: 18px;
    line-height: 24px;
  }
  .project-detail__content h3 {
    margin-top: 32px;
  }
  .project-detail__content hr {
    width: 100%;
    margin-left: 0;
    margin-top: 32px;
  }
  .project-detail__content .quote,
  .project-detail__content .results {
    margin: 48px 0;
  }
  .project-detail__content .ol,
  .project-detail__content .ul {
    margin: 32px 0;
  }
  .project-detail .tags {
    margin-top: 32px;
  }
  .form {
    width: 100%;
  }
  .form__row {
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .form__row--btns {
    display: block;
  }
  .form__row--btns > div {
    margin-bottom: 28px;
  }
  .form__col {
    width: 100%;
  }
  .form__col + .form__col {
    margin-top: 24px;
  }
  .form__error {
    font-size: 12px;
    line-height: 16px;
  }
  .form__name {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .form__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .form__block {
    padding-bottom: 16px;
  }
  .form input[type=text],
  .form textarea,
  .form select {
    font-size: 16px;
    line-height: 24px;
    padding: 11px 16px;
  }
  .form textarea {
    height: 140px;
  }
  .form--2 input[type=text],
  .form--2 textarea,
  .form--2 select {
    font-size: 18px;
    line-height: 24px;
  }
  .form--2 textarea {
    height: 96px;
  }
  .btn {
    font-size: 22px;
    line-height: 32px;
    min-width: 100%;
    height: 56px;
  }
  footer {
    padding: 0 0 32px;
    margin-top: 64px;
    font-size: 12px;
    line-height: 16px;
  }
  footer .content {
    display: block;
  }
  footer .content > div {
    width: 100%;
    margin-bottom: 16px;
  }
  footer .text-right {
    text-align: left;
  }
  .footer__span {
    margin-right: 24px;
  }
  .copyrights {
    width: 100%;
    margin-top: 32px;
  }
  .copyrights__sub {
    margin-top: 10px;
  }
  .checkbox-block {
    padding-left: 40px;
    font-size: 12px;
    line-height: 16px;
  }
  .checkbox-block .checkbox-container {
    margin-left: -40px;
  }
  .popup__outer {
    display: block;
    height: auto;
  }
  .popup__content {
    padding: 100px 24px 32px;
  }
  .popup__list {
    padding: 80px 24px 104px;
    width: 100%;
  }
  .popup__title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 32px;
  }
  .popup__num {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 8px;
  }
  .popup__text {
    font-size: 18px;
    line-height: 24px;
  }
  .popup__item {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 24px;
  }
  .popup__pages {
    font-size: 16px;
    line-height: 24px;
    left: 24px;
    bottom: 32px;
  }
  .popup__pages span {
    width: 24px;
    height: 2px;
    margin: 0 8px;
  }
  .popup__nav {
    width: 96px;
    left: 24px;
    right: auto;
    top: 24px;
    bottom: auto;
  }
  .popup__arrow {
    width: 32px;
    height: 24px;
  }
  .popup__btns {
    margin-top: 32px;
    display: block;
  }
  .popup__btns .btn {
    margin-top: 16px;
  }
  .fancybox-slide--html .fancybox-close-small {
    width: 32px;
    height: 32px;
    top: 24px;
    right: 24px;
  }
  .fancybox-content {
    height: auto;
    min-height: 100%;
  }
  .rennab {
    height: auto;
    align-items: stretch;
    background-size: auto 100%;
    margin-top: 100px;
    padding: 120px 24px;
  }
  .rennab__logo {
    width: 100%;
    height: 72px;
  }
  .rennab__text {
    font-size: 18px;
    line-height: 24px;
    margin: 16px 0 32px;
    width: 100%;
  }
  .rennab:after {
    background-image: url(../img/pic/102.jpg);
  }
  .menu2 {
    padding: 0 24px 24px;
  }
  .menu2__logo {
    padding: 12px 24px;
    margin: 0 -24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .menu2 .phone {
    margin: 24px 0;
  }
  .menu2__copyright {
    font-size: 12px;
    margin-top: 64px;
    line-height: 16px;
  }
  .menu2__copyright > div {
    margin-top: 8px;
  }
  .menu2 .phone {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
  }
  .menu2 .hamburger {
    margin-left: 0;
    line-height: 0;
  }
  .menu2 .social-icon {
    margin: 0 4px;
  }
  .menu2 .menu {
    margin: 0;
  }
  .menu2 .menu-item {
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    text-transform: uppercase;
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .menu2 .menu-item:before {
    display: none;
  }
  .sun {
    width: 376px;
    height: 376px;
  }
  .sun-outer {
    top: 50px;
    right: -200px;
    width: 376px;
    height: 376px;
  }
  .tags {
    margin-bottom: 32px;
  }
  .tags--mb-small {
    margin-bottom: 24px;
  }
  .tags .tag {
    margin: 0 8px 8px 0;
  }
  .tags--row {
    white-space: nowrap;
    overflow-y: auto;
    display: flex;
    flex-wrap: nowrap;
    width: 100vw;
    margin-left: -24px;
    padding: 0 24px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .tags--row .tag {
    margin-bottom: 0;
  }
  .tags--2 {
    margin-top: -32px;
  }
  .tag {
    margin-top: 8px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 16px;
    padding: 8px 12px;
  }
  .tag--big {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    border-radius: 20px;
  }
  .figure--1 {
    top: 0;
    left: -45px;
    width: 127px;
    height: 126px;
  }
  .figure--2 {
    top: 550px;
    left: 10px;
  }
  .figure--3 {
    top: 500px;
    right: -50px;
  }
  .about-section {
    margin-bottom: 64px;
  }
  .about-section.results {
    margin-top: -24px;
  }
  .about .block--1 {
    margin-bottom: 64px;
  }
  .about .block--2 .block__content {
    margin-left: 0;
    width: 100%;
  }
  .about .text {
    font-size: 22px;
    line-height: 32px;
  }
  .about .members {
    margin-bottom: 0;
  }
  .about h3,
  .about .h3 {
    margin-bottom: 32px;
  }
  p + p {
    margin-top: 25px;
  }
  .hr {
    margin: 32px 0;
  }
  .results {
    margin: 64px 0;
  }
  .result {
    width: 100%;
    margin: 24px 0 0 0;
    padding-top: 24px;
    border-top-width: 2px;
  }
  .result__title {
    font-size: 34px;
    line-height: 40px;
  }
  .result__text {
    font-size: 20px;
    line-height: 32px;
  }
  .result--empty {
    display: none;
  }
  .values {
    margin: 0 0 0 0;
    display: block;
  }
  .value {
    width: 100%;
    margin: 0 0 32px;
  }
  .value__title {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 32px;
  }
  .value__text {
    padding: 0;
    font-size: 16px;
    line-height: 24px;
  }
  .members {
    margin: 0;
    display: block;
  }
  .member {
    text-align: center;
    width: 100%;
    margin: 0 0 24px;
  }
  .member__pic {
    border-radius: 50%;
    height: 184px;
    width: 184px;
    margin: 0  auto 16px;
  }
  .member__name {
    font-size: 20px;
    line-height: 32px;
  }
  .member__prof {
    font-size: 16px;
    line-height: 24px;
  }
  .service-head {
    border-bottom-width: 2px;
    font-size: 18px;
    line-height: 24px;
    padding: 48px 0 32px 0;
  }
  .service-head:before {
    width: 22px;
    height: 22px;
    top: 13px;
    left: 0;
  }
  .service-head__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .service-detail .service-detail__text {
    width: 100%;
    font-size: 22px;
    line-height: 32px;
  }
  .quote {
    padding: 48px 0;
    margin-top: 64px;
  }
  .quote__text {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .quote__text:before {
    width: 100%;
    height: 32px;
    margin-bottom: 24px;
  }
  .quote__name {
    font-size: 20px;
    line-height: 32px;
  }
  .quote__prof {
    font-size: 16px;
    line-height: 24px;
  }
  .quote__ava {
    width: 96px;
    height: 96px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .quote--2 {
    border-top: 0;
    margin-top: 88px;
  }
  .quote--2:before {
    width: 72px;
  }
  .quote--2:after {
    width: 72px;
  }
  .ol li {
    margin-left: 0;
    min-height: 48px;
    padding: 56px 0 0;
  }
  .ol li:before {
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
  }
  .ol li + li {
    margin-top: 24px;
  }
  .ol--simple {
    margin: 16px 0;
  }
  .ol--simple li {
    padding-left: 48px;
  }
  .ol--simple li:before {
    font-size: 16px;
    line-height: 24px;
    width: 48px;
    height: auto;
  }
  .ol--lines li {
    margin-left: 0;
    padding: 72px 0 24px;
    font-size: 20px;
    line-height: 32px;
  }
  .ol--lines li:before {
    top: 16px;
    left: 0;
  }
  .ol--lines li + li {
    margin-top: 0;
  }
  .ol--lines li:last-child {
    border-bottom: none;
  }
  .similar {
    padding-top: 48px;
    margin-top: 48px;
  }
  .more {
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 0;
    margin: -48px 0 64px;
  }
  .more__text {
    margin-top: 16px;
  }
  .filter {
    margin-bottom: 32px;
  }
  .filter__row {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .filter__row:first-child {
    padding-top: 0;
  }
  .filter__row--mobile {
    display: block;
  }
  .filter__fix {
    display: inline-block;
    width: 16px;
  }
  .filter-items {
    flex-wrap: nowrap;
    margin-bottom: 0;
    width: 100vw;
    margin-left: -24px;
    padding: 0 24px;
    overflow-x: auto;
  }
  .filter-items::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
  }
  .filter-items::-webkit-scrollbar-thumb {
    background: transparent;
  }
  .filter-item {
    font-size: 16px;
    line-height: 24px;
    border-radius: 100px;
    margin: 0 8px 0 0;
  }
  .filter-item > span {
    height: 40px;
    padding: 0 16px;
  }
  .filter-item--calendar {
    margin: 0;
  }
  .filter-item--calendar > span {
    padding-right: 55px;
  }
  .filter-item--calendar .icon {
    margin-left: 16px;
  }
  .filter-item--calendar img,
  .filter-item--calendar svg {
    width: 16px;
    height: 16px;
    right: 16px;
  }
  .filter-item--calendar input {
    font-size: 18px;
    line-height: 28px;
    width: 245px;
    padding: 0 48px 0 0;
    margin-right: -55px;
  }
  .filter-item-choose {
    right: auto;
    left: 0;
    margin-top: 8px;
    box-shadow: 0 8px 40px rgba(11, 31, 48, 0.05);
    border-radius: 4px;
  }
  .filter-item-choose__title {
    padding: 16px;
  }
  .filter-item-choose__list {
    width: 216px;
  }
  .filter-item-choose__item {
    padding: 16px 0;
  }
  .count {
    font-size: 20px;
    line-height: 32px;
    padding: 8px 20px;
    border-radius: 100px;
    margin: 8px 0 0 0;
  }
  .url img,
  .url svg {
    width: 16px;
  }
  .img {
    padding: 0;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .slider-outer {
    margin-top: 32px;
    margin-bottom: 48px;
  }
  .slider-outer .tns-controls {
    margin: 24px auto 0;
    padding: 0 24px;
    width: 100%;
  }
  .slider-outer .tns-controls [data-controls="next"],
  .slider-outer .tns-controls [data-controls="prev"] {
    width: 24px;
    height: 32px;
  }
  .slider-outer .tns-controls [data-controls="next"] {
    margin-left: 32px;
  }
  .slider-item {
    padding: 0;
  }
  .slider-item__pic {
    margin-bottom: 8px;
    width: 320px;
    height: 184px;
  }
  .slider-item__pic--img {
    height: auto;
  }
  .slider-item__text {
    font-size: 12px;
    line-height: 16px;
    padding: 0 24px;
    width: 315px;
  }
  .slider-controls {
    margin-top: -75px;
    margin-bottom: 48px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  .slider-controls__all {
    margin-left: 40px;
  }
  .slider-controls__all:before {
    width: 24px;
    right: 4px;
  }
  .blog {
    display: block;
    padding-bottom: 32px;
  }
  .blog-item {
    width: 100%;
    margin-bottom: 48px;
  }
  .blog-item__pic {
    height: 176px;
    margin-bottom: 16px;
  }
  .blog-item__content {
    display: block;
  }
  .blog-item__date {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
  }
  .blog-item__title {
    font-size: 22px;
    line-height: 32px;
  }
  .blog-item__section {
    font-size: 16px;
    line-height: 24px;
    margin-top: 32px;
  }
  .blog-item__logo {
    bottom: 24px;
    right: 24px;
  }
  .blog-item__logo img {
    max-width: 150px;
    max-height: 32px;
  }
  .blog-item--empty {
    display: none;
  }
  .video {
    height: 184px;
    width: 100vw;
    margin: 32px 0 32px -24px;
  }
  .video__btn {
    width: 56px;
    height: 56px;
    background-size: 16px auto;
    margin-right: 16px;
  }
  .video__play {
    bottom: 24px;
    left: 24px;
    font-size: 14px;
    line-height: 16px;
  }
  .video-text {
    font-size: 12px;
    line-height: 16px;
    margin-top: -22px;
    margin-bottom: 32px;
  }
  .contacts-block {
    display: block;
  }
  .contacts-block__col {
    width: 100%;
    font-size: 22px;
    line-height: 32px;
    margin-top: 0;
  }
  .contacts-block__row {
    margin-top: 16px;
  }
  .contacts-block__how {
    width: 100%;
    margin-top: 32px;
    font-size: 12px;
    line-height: 16px;
  }
  .contacts-block__title {
    color: #c79b46;
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .map {
    height: 320px;
    width: 100%;
  }
  .map-block {
    padding-left: 0;
    margin-bottom: 48px;
    margin-top: 48px;
  }
  .partners .text {
    width: 100%;
    padding: 0 24px;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
  }
  .partners .next-arrow {
    top: auto;
    bottom: 24px;
    left: auto;
    right: 50%;
    transform: translateX(50%);
    display: block;
  }
  .partners .next-arrow:after {
    font-size: 14px;
    line-height: 16px;
  }
  .partners .prev-arrow {
    left: auto;
    top: auto;
    bottom: 112px;
    right: 24px;
  }
  .partners .next-arrow,
  .partners .prev-arrow {
    width: 72px;
    height: 72px;
    background-size: 20px auto;
  }
  .partners .sun {
    width: 300px;
    height: 300px;
    top: 40%;
  }
  .partners--step2 .next-arrow {
    right: 24px;
    transform: none;
  }
  .partners--step2 .sun {
    width: 150px;
    height: 150px;
    top: 30%;
  }
  .partners--step2 .section--start {
    top: -20%;
  }
  .partners--step3 .sun {
    width: 66px;
    height: 66px;
    top: 10%;
  }
  .partners--step3 .section--start {
    transform: translateY(-100%) translateX(-50%);
  }
  .partners--last .sun {
    width: 300px;
    height: 300px;
    top: 10%;
  }
  .partners--last .prev-arrow {
    bottom: 260px;
  }
  .planet {
    right: auto!important;
    left: 50%!important;
    transform: translateX(-50%);
  }
  .planet__title {
    font-size: 7px;
    line-height: 8px;
  }
  .planet__title:before {
    height: 30px;
  }
  .planet--down {
    top: 110%;
    width: 370px;
    height: 230px;
  }
  .planet--small {
    top: 85%;
    width: 370px;
    height: 230px;
  }
  .planet--small .planet__title {
    font-size: 4px;
    line-height: 5px;
  }
  .planet--small .planet__title:before {
    height: 20px;
  }
  .planet--small .company {
    font-size: 4px;
    line-height: 5px;
  }
  .planet--small .company:before {
    height: 5px;
    width: 5px;
  }
  .planet--normal {
    top: 20%;
    width: 500px;
    height: 311px;
  }
  .planet--big {
    top: -90%;
    width: 896px;
    height: 560px;
  }
  .planet--big .company {
    font-size: 13px;
    line-height: 15px;
    padding-left: 20px;
  }
  .planet--big .company:before {
    height: 15px;
    width: 15px;
  }
  .planet--up {
    transform: translate(-50%, -100%);
    top: -90%;
    width: 896px;
    height: 560px;
  }
  .section--start {
    top: 88px;
  }
  .company {
    font-size: 7px;
    line-height: 8px;
    padding-left: 12px;
  }
  .company:before {
    width: 8px;
    height: 8px;
  }
  .company-popup {
    padding: 32px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
  }
  .company-popup__close {
    width: 32px;
    height: 32px;
    top: 24px;
    right: 24px;
  }
  .company-popup__logo {
    margin-bottom: 32px;
  }
  .company-popup__logo img {
    max-height: 112px;
  }
  .company-popup__title {
    font-size: 20px;
    line-height: 32px;
  }
  .company-popup__sub {
    font-size: 12px;
    line-height: 16px;
  }
  .company-popup__text {
    margin-top: 24px;
    font-size: 12px;
    line-height: 16px;
  }
  .vacancies-head {
    padding-left: 0;
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
  .vacancies-head__text {
    font-size: 18px;
    line-height: 24px;
  }
  .faq {
    padding: 0 32px 0 0;
  }
  .faq:after {
    top: 38px;
    right: 0;
    width: 14px;
    height: 14px;
  }
  .faq__question {
    padding: 32px 32px 32px 0;
    margin-right: -32px;
    font-size: 20px;
    line-height: 24px;
  }
  .faq__answer {
    font-size: 18px;
    line-height: 24px;
    margin-top: -16px;
    padding-bottom: 32px;
  }
  .faq-block {
    width: 100%;
  }
  .vacancy {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 56px;
  }
  .vacancy ul + h3,
  .vacancy p + h3,
  .vacancy div + h3 {
    margin-top: 32px;
  }
  .ul--2 {
    margin-bottom: 32px;
  }
  .ul--2 li {
    padding-left: 32px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .back {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 24px;
    padding-left: 48px;
  }
  .back:after {
    width: 32px;
    height: 32px;
  }
  .back:hover:after {
    left: -10px;
  }
  .social--float {
    display: none;
  }
  .social-icon {
    width: 40px;
    height: 40px;
    margin: 0 8px 0 0;
  }
  .not-found {
    padding: 24px;
    height: 100%;
  }
  .not-found__title {
    font-size: 22px;
    line-height: 32px;
  }
  .not-found__404 {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 32px;
  }
  .not-found__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .not-found .logo {
    width: 92px;
    height: 40px;
    margin-bottom: 32px;
  }
  .not-found .text {
    margin-top: 30px;
  }
  body {
    font-size: 5.625vw;
    line-height: 8.75vw;
  }
  .hamburger {
    margin-left: 7.5vw;
  }
  .content {
    width: 100vw;
    padding: 0 7.5vw;
  }
  .icon--mail {
    width: 12.5vw;
    height: 12.5vw;
    background-size: 5vw auto;
  }
  .icon--close,
  .icon--menu {
    width: 10vw;
    height: 10vw;
  }
  .icon--refresh {
    width: 20vw;
    height: 20vw;
    background-size: 10vw auto;
  }
  .icon--phone {
    width: 12.5vw;
    height: 12.5vw;
    background-size: 5vw auto;
  }
  header {
    padding: 5vw 7.5vw;
  }
  header .phrase {
    font-size: 5.625vw;
    line-height: 8.75vw;
  }
  header.active {
    padding-top: 3.75vw;
    padding-bottom: 3.75vw;
  }
  header .logo {
    width: 23.125vw;
    height: 10vw;
  }
  header .phone {
    margin-right: 5vw;
  }
  .logo {
    width: 23.125vw;
    height: 10vw;
  }
  h1,
  .h1 {
    margin: 0 0 15vw;
    font-size: 10.625vw;
    line-height: 12.5vw;
  }
  h2,
  .h2 {
    margin: 0 0 10vw;
    font-size: 9.375vw;
    line-height: 11.25vw;
  }
  h2.mb-big,
  .h2.mb-big {
    margin-bottom: 15vw;
  }
  h3,
  .h3 {
    font-size: 6.875vw;
    line-height: 10vw;
    margin-bottom: 5vw;
  }
  h3--big,
  .h3--big {
    font-size: 8.125vw;
  }
  h4,
  .h4 {
    font-size: 6.25vw;
    line-height: 10vw;
    margin: 0 0 7.5vw;
  }
  .sphere-outer {
    width: 229.6875vw;
    height: 229.6875vw;
    top: -2.5vw;
    left: -32.8125vw;
  }
  .sphere-outer--2 {
    width: 125vw;
    height: 125vw;
    top: auto;
    bottom: -7.8125vw;
    left: 50%;
  }
  .page--inner {
    padding-top: 27.5vw;
  }
  .page--mt {
    margin-top: 20vw;
  }
  .page--mb {
    margin-bottom: 20vw;
  }
  .page--faq {
    padding-top: 15vw;
    padding-bottom: 10vw;
  }
  .page--faq-pb {
    padding-bottom: 20vw;
  }
  .page--form {
    padding: 15vw 0 0;
  }
  .page--form h3 {
    margin-bottom: 10vw;
  }
  .page--1 {
    padding: 27.5vw 0 0 0;
  }
  .page--1 .phrase {
    font-size: 6.875vw;
    line-height: 10vw;
  }
  .page--1 .phrase--2 {
    font-size: 5.625vw;
    line-height: 8.75vw;
    margin-bottom: 10vw;
  }
  .page--1 .mission {
    margin-top: 50vw;
  }
  .page--2 {
    padding: 25vw 0 20vw;
  }
  .page--2 .text {
    font-size: 6.25vw;
    line-height: 7.5vw;
  }
  .page--5 {
    padding-top: 20vw;
  }
  .page--5 .block {
    font-size: 5.625vw;
    line-height: 7.5vw;
    margin-bottom: 15vw;
  }
  .page--6 {
    padding-top: 25vw;
  }
  .page--6 .block {
    font-size: 5.625vw;
    line-height: 7.5vw;
  }
  .page--7 {
    padding: 0;
  }
  .page--7 h3 {
    margin-bottom: 10vw;
  }
  .wrapper--with-top .page--inner {
    padding-top: 0;
  }
  .mission {
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .mission__title {
    margin-bottom: 2.5vw;
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .marquee-outer {
    height: 26.25vw;
  }
  .word {
    height: 26.25vw;
    margin: 0 7.8125vw;
  }
  .accordion-item {
    padding: 7.5vw 0;
  }
  .accordion-item__title {
    font-size: 8.75vw;
    line-height: 10vw;
  }
  .accordion-item__num {
    font-size: 6.25vw;
    line-height: 10vw;
    margin-bottom: 2.5vw;
  }
  .accordion-item__arrow {
    width: 10vw;
    height: 7.5vw;
  }
  .accordion-item__text {
    font-size: 5vw;
    line-height: 7.5vw;
    margin-top: 2.5vw;
  }
  .accordion-item--simple .accordion-item__title {
    font-size: 6.875vw;
    line-height: 10vw;
  }
  .accordion-item--simple .accordion-item__text {
    font-size: 6.875vw;
    line-height: 10vw;
    margin-top: 5vw;
  }
  .accordion--2 {
    padding-right: 0;
  }
  .accordion--2 .accordion-item {
    padding: 15vw 0;
  }
  .accordion--2 .accordion-item:last-child {
    padding-bottom: 0;
  }
  .accordion--3 .accordion-item__title {
    font-size: 8.125vw;
  }
  .accordion .tags {
    margin: 2.5vw 0 0;
  }
  .projects {
    margin: 20vw 0;
  }
  .projects--inner {
    margin: 15vw 0;
  }
  .projects-section {
    padding-bottom: 15vw;
    margin-bottom: 15vw;
    margin-top: 10vw;
  }
  .projects-section__col {
    font-size: 6.875vw;
    line-height: 10vw;
  }
  .projects-section__title {
    margin-bottom: 5vw;
  }
  .projects-section__more {
    font-size: 6.875vw;
    line-height: 10vw;
    margin-top: 10vw;
  }
  .projects-section__more:after {
    width: 10vw;
    height: 10vw;
    margin-left: 5vw;
  }
  .projects-section__more:hover:after {
    margin-left: 10vw;
  }
  .projects-section__content {
    font-size: 5.625vw;
    line-height: 7.5vw;
  }
  .projects-section-after {
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .project {
    font-size: 5vw;
    line-height: 7.5vw;
    margin-bottom: 15vw;
  }
  .project__img {
    height: 85vw;
    margin-bottom: 5vw;
  }
  .project__partner {
    width: 25vw;
    height: 25vw;
    top: 5vw;
    left: 5vw;
    background-size: 15vw auto;
  }
  .project__partner--2 {
    width: auto;
    height: auto;
  }
  .project__partner--2 img {
    max-height: 10.9375vw;
    max-width: 50vw;
  }
  .project__title {
    margin-bottom: 2.5vw;
    font-size: 5.625vw;
    line-height: 7.5vw;
  }
  .project__tags {
    margin-top: 2.5vw;
  }
  .project__tags .tag {
    margin-right: 2.5vw;
  }
  .project-detail {
    margin-bottom: 10vw;
  }
  .project-detail-top {
    font-size: 6.875vw;
    line-height: 10vw;
    padding-bottom: 10vw;
  }
  .project-detail-top__title {
    font-size: 6.875vw;
    line-height: 10vw;
    margin-bottom: 7.5vw;
  }
  .project-detail-top__logo {
    margin-bottom: 5vw;
  }
  .project-detail-top__logo img,
  .project-detail-top__logo svg {
    height: 12.5vw;
  }
  .project-detail-top__date {
    font-size: 4.375vw;
    line-height: 5vw;
    margin-bottom: 0;
  }
  .project-detail-top__year {
    padding: 1.875vw 3.125vw;
  }
  .project-detail-top--mobile {
    padding-top: 7.5vw;
  }
  .project-detail-header {
    padding: 10vw 0;
  }
  .project-detail-header__text {
    font-size: 5.625vw;
    line-height: 7.5vw;
    margin-bottom: 7.5vw;
  }
  .project-detail-header__link {
    font-size: 6.875vw;
    line-height: 10vw;
    margin-top: 5vw;
  }
  .project-detail-header__logo {
    margin-top: 2.5vw;
  }
  .project-detail-header__logo img,
  .project-detail-header__logo svg {
    max-height: 12.5vw;
  }
  .project-detail__content {
    margin-top: 10vw;
    font-size: 5.625vw;
    line-height: 7.5vw;
  }
  .project-detail__content h3 {
    margin-top: 10vw;
  }
  .project-detail__content hr {
    margin-top: 10vw;
  }
  .project-detail__content .quote,
  .project-detail__content .results {
    margin: 15vw 0;
  }
  .project-detail__content .ol,
  .project-detail__content .ul {
    margin: 10vw 0;
  }
  .project-detail .tags {
    margin-top: 10vw;
  }
  .form__row {
    margin-bottom: 7.5vw;
  }
  .form__row--btns > div {
    margin-bottom: 8.75vw;
  }
  .form__col + .form__col {
    margin-top: 7.5vw;
  }
  .form__name {
    font-size: 5vw;
    line-height: 7.5vw;
    margin-bottom: 2.5vw;
  }
  .form__title {
    font-size: 6.25vw;
    line-height: 7.5vw;
    margin-bottom: 7.5vw;
  }
  .form__block {
    padding-bottom: 5vw;
  }
  .form__error {
    font-size: 3.75vw;
    line-height: 5vw;
  }
  .form input[type=text],
  .form textarea,
  .form select {
    font-size: 5vw;
    line-height: 7.5vw;
    padding: 3.4375vw 5vw;
  }
  .form textarea {
    height: 43.75vw;
  }
  .form--2 input[type=text],
  .form--2 textarea,
  .form--2 select {
    font-size: 5.625vw;
    line-height: 7.5vw;
  }
  .form--2 textarea {
    height: 30vw;
  }
  .btn {
    font-size: 6.875vw;
    line-height: 10vw;
    height: 17.5vw;
  }
  footer {
    padding: 0 0 10vw;
    margin-top: 20vw;
    font-size: 3.75vw;
    line-height: 5vw;
  }
  footer .content > div {
    margin-bottom: 5vw;
  }
  .footer__span {
    margin-right: 7.5vw;
  }
  .copyrights {
    margin-top: 10vw;
  }
  .copyrights__sub {
    margin-top: 3.125vw;
  }
  .checkbox-block {
    padding-left: 12.5vw;
    font-size: 3.75vw;
    line-height: 5vw;
  }
  .checkbox-block .checkbox-container {
    margin-left: -12.5vw;
  }
  .popup__content {
    padding: 31.25vw 7.5vw 10vw;
  }
  .popup__list {
    padding: 25vw 7.5vw 32.5vw;
  }
  .popup__title {
    font-size: 8.75vw;
    line-height: 10vw;
    margin-bottom: 10vw;
  }
  .popup__num {
    font-size: 6.25vw;
    line-height: 10vw;
    margin-bottom: 2.5vw;
  }
  .popup__text {
    font-size: 5.625vw;
    line-height: 7.5vw;
  }
  .popup__item {
    font-size: 4.375vw;
    line-height: 5vw;
    margin-bottom: 7.5vw;
  }
  .popup__pages {
    font-size: 5vw;
    line-height: 7.5vw;
    left: 7.5vw;
    bottom: 10vw;
  }
  .popup__pages span {
    width: 7.5vw;
    height: 0.625vw;
    margin: 0 2.5vw;
  }
  .popup__nav {
    width: 30vw;
    left: 7.5vw;
    right: auto;
    top: 7.5vw;
    bottom: auto;
  }
  .popup__arrow {
    width: 10vw;
    height: 7.5vw;
  }
  .popup__btns {
    margin-top: 10vw;
  }
  .popup__btns .btn {
    margin-top: 5vw;
  }
  .fancybox-slide--html .fancybox-close-small {
    width: 10vw;
    height: 10vw;
    top: 7.5vw;
    right: 7.5vw;
  }
  .rennab {
    margin-top: 31.25vw;
    padding: 37.5vw 7.5vw;
  }
  .rennab__logo {
    height: 22.5vw;
  }
  .rennab__text {
    font-size: 5.625vw;
    line-height: 7.5vw;
    margin: 5vw 0 10vw;
  }
  .menu2 {
    padding: 0 7.5vw 7.5vw;
  }
  .menu2__logo {
    padding: 3.75vw 7.5vw;
    margin: 0 -7.5vw;
  }
  .menu2 .social-icon {
    margin: 0 1.25vw;
  }
  .menu2 .phone {
    margin: 7.5vw 0;
  }
  .menu2__copyright {
    font-size: 3.75vw;
    margin-top: 20vw;
    line-height: 5vw;
  }
  .menu2__copyright > div {
    margin-top: 2.5vw;
  }
  .menu2 .phone {
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .menu2 .menu-item {
    font-size: 6.875vw;
    line-height: 10vw;
    padding: 2.5vw 0;
  }
  .sun {
    width: 117.5vw;
    height: 117.5vw;
  }
  .sun-outer {
    top: 15.625vw;
    right: -62.5vw;
    width: 117.5vw;
    height: 117.5vw;
  }
  .tags {
    margin-bottom: 10vw;
  }
  .tags--mb-small {
    margin-bottom: 7.5vw;
  }
  .tags .tag {
    margin: 0 2.5vw 2.5vw 0;
  }
  .tags--row {
    margin-left: -7.5vw;
    padding: 0 7.5vw;
    margin-bottom: 5vw;
    padding-bottom: 5vw;
  }
  .tags--2 {
    margin-top: -10vw;
  }
  .tag {
    margin-top: 2.5vw;
    border-radius: 5vw;
    font-size: 3.75vw;
    line-height: 5vw;
    padding: 2.5vw 3.75vw;
  }
  .tag--big {
    font-size: 5vw;
    line-height: 7.5vw;
    padding: 2.5vw 5vw;
    border-radius: 6.25vw;
  }
  .figure--1 {
    top: 0;
    left: -14.0625vw;
    width: 39.6875vw;
    height: 39.375vw;
  }
  .figure--2 {
    top: 171.875vw;
    left: 3.125vw;
  }
  .figure--3 {
    top: 156.25vw;
    right: -15.625vw;
  }
  .about-section {
    margin-bottom: 20vw;
  }
  .about-section.results {
    margin-top: -7.5vw;
  }
  .about .block--1 {
    margin-bottom: 20vw;
  }
  .about .text {
    font-size: 6.875vw;
    line-height: 10vw;
  }
  .about h3,
  .about .h3 {
    margin-bottom: 10vw;
  }
  p + p {
    margin-top: 7.8125vw;
  }
  .hr {
    margin: 10vw 0;
  }
  .results {
    margin: 20vw 0;
  }
  .result {
    margin: 7.5vw 0 0 0;
    padding-top: 7.5vw;
    border-top-width: 0.625vw;
  }
  .result__title {
    font-size: 10.625vw;
    line-height: 12.5vw;
  }
  .result__text {
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .value {
    margin: 0 0 10vw;
  }
  .value__title {
    margin-bottom: 2.5vw;
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .value__text {
    font-size: 5vw;
    line-height: 7.5vw;
  }
  .member {
    margin: 0 0 7.5vw;
  }
  .member__pic {
    height: 57.5vw;
    width: 57.5vw;
    margin: 0 auto 5vw;
  }
  .member__name {
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .member__prof {
    font-size: 5vw;
    line-height: 7.5vw;
  }
  .service-head {
    font-size: 5.625vw;
    line-height: 7.5vw;
    padding: 15vw 0 10vw 0;
  }
  .service-head:before {
    width: 6.875vw;
    height: 6.875vw;
    top: 4.0625vw;
    left: 0;
  }
  .service-head__title {
    font-size: 8.125vw;
    line-height: 10vw;
    margin-bottom: 5vw;
  }
  .service-detail .service-detail__text {
    font-size: 6.875vw;
    line-height: 10vw;
  }
  .quote {
    padding: 15vw 0;
    margin-top: 20vw;
  }
  .quote__text {
    font-size: 6.875vw;
    line-height: 10vw;
    margin-bottom: 7.5vw;
  }
  .quote__text:before {
    height: 10vw;
    margin-bottom: 7.5vw;
  }
  .quote__name {
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .quote__prof {
    font-size: 5vw;
    line-height: 7.5vw;
  }
  .quote__ava {
    width: 30vw;
    height: 30vw;
  }
  .quote--2 {
    margin-top: 27.5vw;
  }
  .quote--2:before {
    width: 22.5vw;
  }
  .quote--2:after {
    width: 22.5vw;
  }
  .ol li {
    min-height: 15vw;
    padding: 17.5vw 0 0;
  }
  .ol li:before {
    left: 0;
    top: 0;
    width: 15vw;
    height: 15vw;
    font-size: 5vw;
    line-height: 7.5vw;
  }
  .ol li + li {
    margin-top: 7.5vw;
  }
  .ol--simple {
    margin: 5vw 0;
  }
  .ol--simple li {
    padding-left: 15vw;
  }
  .ol--simple li:before {
    font-size: 5vw;
    line-height: 7.5vw;
    width: 15vw;
    height: auto;
  }
  .ol--lines li {
    margin-left: 0;
    padding: 22.5vw 0 7.5vw;
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .ol--lines li:before {
    top: 5vw;
    left: 0;
  }
  .ol--lines li + li {
    margin-top: 0;
  }
  .similar {
    padding-top: 15vw;
    margin-top: 15vw;
  }
  .more {
    font-size: 6.875vw;
    line-height: 10vw;
    margin: -15vw 0 20vw;
  }
  .more__text {
    margin-top: 5vw;
  }
  .filter {
    margin-bottom: 10vw;
  }
  .filter__row {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  .filter__row:first-child {
    padding-top: 0;
  }
  .filter__fix {
    width: 5vw;
  }
  .filter-items {
    margin-left: -7.5vw;
    padding: 0 7.5vw;
  }
  .filter-item {
    font-size: 5vw;
    line-height: 7.5vw;
    border-radius: 31.25vw;
    margin: 0 2.5vw 0 0;
  }
  .filter-item > span {
    height: 12.5vw;
    padding: 0 5vw;
  }
  .filter-item--calendar {
    margin: 0;
  }
  .filter-item--calendar > span {
    padding-right: 17.1875vw;
  }
  .filter-item--calendar .icon {
    margin-left: 5vw;
  }
  .filter-item--calendar img,
  .filter-item--calendar svg {
    width: 5vw;
    height: 5vw;
    right: 5vw;
  }
  .filter-item--calendar input {
    font-size: 5.625vw;
    line-height: 8.75vw;
    width: 76.5625vw;
    padding: 0 15vw 0 0;
    margin-right: -17.1875vw;
  }
  .filter-item-choose {
    right: auto;
    left: 0;
    margin-top: 2.5vw;
    box-shadow: 0 2.5vw 12.5vw rgba(11, 31, 48, 0.05);
    border-radius: 1.25vw;
  }
  .filter-item-choose__title {
    padding: 5vw;
  }
  .filter-item-choose__list {
    width: 67.5vw;
  }
  .filter-item-choose__item {
    padding: 5vw 0;
  }
  .count {
    font-size: 6.25vw;
    line-height: 10vw;
    padding: 2.5vw 6.25vw;
    border-radius: 31.25vw;
    margin: 2.5vw 0 0 0;
  }
  .url img,
  .url svg {
    width: 5vw;
  }
  .img {
    padding: 0;
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
  .slider-outer {
    margin-top: 10vw;
    margin-bottom: 15vw;
  }
  .slider-outer .tns-controls {
    margin: 7.5vw auto 0;
    padding: 0 7.5vw;
  }
  .slider-outer .tns-controls [data-controls="next"],
  .slider-outer .tns-controls [data-controls="prev"] {
    width: 7.5vw;
    height: 10vw;
  }
  .slider-outer .tns-controls [data-controls="next"] {
    margin-left: 10vw;
  }
  .slider-item {
    padding: 0;
  }
  .slider-item__pic {
    margin-bottom: 2.5vw;
    width: 100vw;
    height: 57.5vw;
  }
  .slider-item__pic--img {
    height: auto;
  }
  .slider-item__text {
    font-size: 3.75vw;
    line-height: 5vw;
    padding: 0 7.5vw;
    width: 98.4375vw;
  }
  .slider-controls {
    margin-top: -23.4375vw;
    margin-bottom: 15vw;
    font-size: 5vw;
    line-height: 7.5vw;
  }
  .slider-controls__all {
    margin-left: 12.5vw;
  }
  .slider-controls__all:before {
    width: 7.5vw;
    right: 1.25vw;
  }
  .blog {
    padding-bottom: 10vw;
  }
  .blog-item {
    margin-bottom: 15vw;
  }
  .blog-item__pic {
    height: 55vw;
    margin-bottom: 5vw;
  }
  .blog-item__date {
    font-size: 4.375vw;
    line-height: 5vw;
    margin-bottom: 2.5vw;
  }
  .blog-item__title {
    font-size: 6.875vw;
    line-height: 10vw;
  }
  .blog-item__section {
    font-size: 5vw;
    line-height: 7.5vw;
    margin-top: 10vw;
  }
  .blog-item__logo {
    bottom: 7.5vw;
    right: 7.5vw;
  }
  .blog-item__logo img {
    max-width: 46.875vw;
    max-height: 10vw;
  }
  .video {
    height: 57.5vw;
    margin: 10vw 0 10vw -7.5vw;
  }
  .video__btn {
    width: 17.5vw;
    height: 17.5vw;
    background-size: 5vw auto;
    margin-right: 5vw;
  }
  .video__play {
    bottom: 7.5vw;
    left: 7.5vw;
    font-size: 4.375vw;
    line-height: 5vw;
  }
  .video-text {
    font-size: 3.75vw;
    line-height: 5vw;
    margin-top: -6.875vw;
    margin-bottom: 10vw;
  }
  .contacts-block__col {
    font-size: 6.875vw;
    line-height: 10vw;
  }
  .contacts-block__row {
    margin-top: 5vw;
  }
  .contacts-block__how {
    margin-top: 10vw;
    font-size: 3.75vw;
    line-height: 5vw;
  }
  .contacts-block__title {
    margin-bottom: 7.5vw;
  }
  .map {
    height: 100vw;
    width: 100%;
  }
  .map-block {
    padding-left: 0;
    margin-bottom: 15vw;
    margin-top: 15vw;
  }
  .partners .text {
    padding: 0 7.5vw;
    font-size: 5.625vw;
    line-height: 7.5vw;
  }
  .partners .next-arrow {
    left: auto;
    right: 50%;
    top: auto;
    bottom: 7.5vw;
  }
  .partners .next-arrow:after {
    font-size: 4.375vw;
    line-height: 5vw;
  }
  .partners .prev-arrow {
    left: auto;
    top: auto;
    bottom: 35vw;
    right: 7.5vw;
  }
  .partners .next-arrow,
  .partners .prev-arrow {
    width: 22.5vw;
    height: 22.5vw;
    background-size: 6.25vw auto;
  }
  .partners .sun {
    width: 93.75vw;
    height: 93.75vw;
  }
  .partners--step2 .sun {
    width: 46.875vw;
    height: 46.875vw;
  }
  .partners--step2 .next-arrow {
    right: 7.5vw;
  }
  .partners--step3 .sun {
    width: 20.625vw;
    height: 20.625vw;
  }
  .partners--last .sun {
    width: 93.75vw;
    height: 93.75vw;
  }
  .partners--last .prev-arrow {
    bottom: 81.25vw;
  }
  .planet__title {
    font-size: 2.1875vw;
    line-height: 2.5vw;
  }
  .planet__title:before {
    height: 9.375vw;
  }
  .planet--down {
    width: 115.625vw;
    height: 71.875vw;
  }
  .planet--small {
    width: 115.625vw;
    height: 71.875vw;
  }
  .planet--small .planet__title {
    font-size: 1.25vw;
    line-height: 1.5625vw;
  }
  .planet--small .planet__title:before {
    height: 6.25vw;
  }
  .planet--small .company {
    font-size: 1.25vw;
    line-height: 1.5625vw;
  }
  .planet--small .company:before {
    height: 1.5625vw;
    width: 1.5625vw;
  }
  .planet--normal {
    top: 20%;
    width: 156.25vw;
    height: 97.1875vw;
  }
  .planet--big {
    width: 280vw;
    height: 175vw;
  }
  .planet--big .company {
    font-size: 4.0625vw;
    line-height: 4.6875vw;
    padding-left: 6.25vw;
  }
  .planet--big .company:before {
    height: 4.6875vw;
    width: 4.6875vw;
  }
  .planet--up {
    width: 280vw;
    height: 175vw;
  }
  .section--start {
    top: 27.5vw;
  }
  .company {
    font-size: 2.1875vw;
    line-height: 2.5vw;
    padding-left: 3.75vw;
  }
  .company:before {
    width: 2.5vw;
    height: 2.5vw;
  }
  .company-popup {
    padding: 10vw;
  }
  .company-popup__close {
    width: 10vw;
    height: 10vw;
    top: 7.5vw;
    right: 7.5vw;
  }
  .company-popup__logo {
    margin-bottom: 10vw;
  }
  .company-popup__logo img {
    max-height: 35vw;
  }
  .company-popup__title {
    font-size: 6.25vw;
    line-height: 10vw;
  }
  .company-popup__sub {
    font-size: 3.75vw;
    line-height: 5vw;
  }
  .company-popup__text {
    margin-top: 7.5vw;
    font-size: 3.75vw;
    line-height: 5vw;
  }
  .vacancies-head {
    padding-left: 0;
    padding-bottom: 15vw;
    margin-bottom: 15vw;
  }
  .vacancies-head__text {
    font-size: 5.625vw;
    line-height: 7.5vw;
  }
  .faq {
    padding: 0 10vw 0 0;
  }
  .faq:after {
    top: 11.875vw;
    right: 0;
    width: 4.375vw;
    height: 4.375vw;
  }
  .faq__question {
    padding: 10vw 10vw 10vw 0;
    margin-right: -10vw;
    font-size: 6.25vw;
    line-height: 7.5vw;
  }
  .faq__answer {
    font-size: 5.625vw;
    line-height: 7.5vw;
    margin-top: -5vw;
    padding-bottom: 10vw;
  }
  .vacancy {
    font-size: 5.625vw;
    line-height: 7.5vw;
    padding-bottom: 17.5vw;
  }
  .vacancy ul + h3,
  .vacancy p + h3,
  .vacancy div + h3 {
    margin-top: 10vw;
  }
  .ul--2 {
    margin-bottom: 10vw;
  }
  .ul--2 li {
    padding-left: 10vw;
    font-size: 5.625vw;
    line-height: 7.5vw;
    margin-bottom: 5vw;
  }
  .back {
    font-size: 6.875vw;
    line-height: 10vw;
    margin-bottom: 7.5vw;
    padding-left: 15vw;
  }
  .back:after {
    width: 10vw;
    height: 10vw;
  }
  .back:hover:after {
    left: -3.125vw;
  }
  .social-icon {
    width: 12.5vw;
    height: 12.5vw;
    margin: 0 2.5vw 0 0;
  }
  .wrapper--fixed .sun-outer {
    width: 229.6875vw;
    height: 229.6875vw;
    right: -100vw;
  }
  .not-found {
    padding: 7.5vw;
  }
  .not-found__title {
    font-size: 6.875vw;
    line-height: 10vw;
  }
  .not-found__404 {
    font-size: 10.625vw;
    line-height: 12.5vw;
    margin-bottom: 10vw;
  }
  .not-found .logo {
    width: 28.75vw;
    height: 12.5vw;
    margin-bottom: 10vw;
  }
  .not-found .text {
    margin-top: 9.375vw;
  }
}
/*# sourceMappingURL=style.css.map */