* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

html {
  height: auto;
}

body {
  line-height: 1.5;
  font-family: Arial, sans-serif;
  color: white;
  background-color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* cursor: url(../img/cursor.png?ver=3) 5 2, default !important; */
}

footer {
  margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

form {
  display: block;
  margin: 0;
  padding: 0;
}

:focus {
  outline: none;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  display: none;
}

main {
  overflow: hidden;
}

@font-face {
  font-family: "Body Grotesque Large Trial";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Body-Grotesque/Body-Grotesque-Large-Bold-trial.ttf")
    format("truetype");
}

@font-face {
  font-family: "Gotham Pro";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Gotham-Pro/gothampro.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf")
    format("truetype");
}

@font-face {
  font-family: "Artegra Sans Extended";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Artegra-Sans-Extended/ArtegraSansExRegular.ttf")
    format("truetype");
}

.main-page {
  background-image: url(../img/main-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}

.back-to-top {
  position: fixed;
  bottom: 2.6vw;
  right: 2.6vw;
  width: 2.45vw;
  height: 2.45vw;
  border-radius: 50%;
  background-image: url("../img/back-to-top.png");
  background-size: 100% 100%;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-0.16vw);
}

@media (max-width: 575.5px) {
  .back-to-top {
    bottom: 20vw;
    width: 6.45vw;
    height: 6.45vw;
  }
}

/*АНИМАЦИИ*/
@media (min-width: 575.5px) {
  .scroll-animate {
    opacity: 0;
    will-change: opacity, transform;
  }

  .slide-in-top {
    transform: translateY(-1.04vw);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .slide-in-right {
    transform: translateX(1.04vw);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .slide-in-left {
    transform: translateX(-1.04vw);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .slide-in-bottom {
    transform: translateY(1.04vw);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .fade-in {
    transform: translateY(0.78vw);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .scale {
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .scale-up {
    transform: scale(0.9);
    opacity: 1;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .slide-in-top.visible,
  .slide-in-right.visible,
  .slide-in-left.visible,
  .slide-in-bottom.visible,
  .fade-in.visible {
    opacity: 1;
    transform: translate(0) scale(1);
  }

  .scale.visible {
    opacity: 1;
    transform: scale(1);
  }

  .scale-up.visible {
    transform: scale(1);
  }
}

.main-arrow {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -0.52vw);
  }
}

#about .title.scroll-animate {
  transition-delay: 0.1s;
}

#about .subtitle.scroll-animate {
  transition-delay: 0.3s;
}

#about blockquote.scroll-animate {
  transition-delay: 0s;
}

#about .about-director.scroll-animate {
  transition-delay: 0.4s;
}

#purpose .top-row .title.scroll-animate {
  transition-delay: 0s;
}

#purpose .aim.scroll-animate {
  transition-delay: 0.2s;
}

#purpose .bottom-row.scroll-animate {
  transition-delay: 0.5s;
}

#purpose .mission.scroll-animate {
  transition-delay: 0.5s;
}

#directions .title.scroll-animate {
  transition-delay: 0.6s;
}

#directions .call-to-action__title.scroll-animate {
  transition-delay: 0s;
}

#directions .call-to-action__body.scroll-animate {
  transition-delay: 0.2s;
}

#directions .call-to-action__body span.scroll-animate {
  transition-delay: 0.6s;
}

/*КОНЕЦ АНИМАЦИЙ*/
#header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  padding: 1.5vw 3.65vw 1.5vw;
  background: black;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#header.visible {
  opacity: 1;
  visibility: visible;
}

#header.transparent-bg {
  background: transparent;
}

#header .header-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 4.69vw;
  width: 100%;
}

#header .header-link {
  font-family: Artegra Sans Extended;
  font-weight: 400;
  font-size: 1.04vw;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  white-space: nowrap;
}

#header .header-link:last-child {
  margin-left: auto;
}

#header .header-link.active {
  text-decoration: underline;
}
#header .header-link.idg-portal {
  font-size: 0.8vw;
  margin-left: 0;
  width: 12.13vw;
  height: 2.19vw;
  line-height: 0.8vw;
  border-radius: 2.6vw;
  background: rgba(101, 17, 20, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .search-form {
  width: 20.36vw;
  /*width: 30.36vw;*/
  position: relative;
  padding: 0;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

#header .search-form .search {
  width: 100%;
  border-radius: 1.04vw;
  border: 0.05vw solid #e0e0e0;
  background: #ffffffcc;
  padding: 0.52vw 5.1vw 0.52vw 0.99vw;
  color: black;
  font-size: 0.83vw;
  line-height: 1.04vw;
  font-family: Montserrat;
}

#header .search-form .search::placeholder {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: 100%;
  letter-spacing: 0;
  color: black;
}

#header .search-form .btn-search {
  background-image: url("../img/search-icon.png");
  background-size: contain;
  border: none;
  position: absolute;
  top: 0;
  right: 1.04vw;
  bottom: 0;
  margin: auto;
  width: 1.35vw;
  height: 1.35vw;
  padding: 0;
  background-repeat: no-repeat;
}
#header .toggle-button {
  display: none;
}

#sidebar {
  display: none;
}
@media (max-width: 575.5px) {
  #main-screen::before {
    display: none;
  }
  #header {
    opacity: 1;
    visibility: visible;
    padding: 0;
  }

  #header > .header-links {
    display: none;
  }
  #header .toggle-button {
    font-family: Artegra Sans Extended;
    font-weight: 500;
    font-size: 3.91vw;
    line-height: normal;
    letter-spacing: -0.02em;
    background: transparent;
    color: rgba(0, 0, 0, 1);
    border: none;
    display: flex;
    display: -ms-flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2.5vw;
    z-index: 3;
    padding: 0;
    position: fixed;
    top: 7.81vw;
    left: 7.81vw;
    height: 5.63vw;
  }

  #header .toggle-button:focus {
    outline: none;
  }

  #header .toggle-button img {
    height: 3.13vw;
    width: auto;
  }

  #header .toggle-button img:nth-of-type(2) {
    display: none;
  }

  #header .toggle-button.sidebar_open img:nth-of-type(2) {
    display: block;
  }

  #header .toggle-button.sidebar_open img:nth-of-type(1) {
    display: none;
  }
  #sidebar {
    position: fixed;
    height: -webkit-fill-available;
    height: 100%;
    top: 0;
    background: white;
    color: black;
    transition: left 0.3s ease;
    z-index: 2;
    display: flex;
    display: -ms-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 64.06vw;
    left: -64.06vw;
    padding: 20.94vw 0 9.38vw 7.81vw;
  }

  .sidebar.open {
    left: 0 !important;
  }

  #sidebar .header-links li:not(:last-child) {
    margin-bottom: 5vw;
  }

  #sidebar .header-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    column-gap: 4.69vw;
  }

  #sidebar .header-link {
    font-family: Artegra Sans Extended;
    font-weight: 400;
    font-style: Medium;
    font-size: 4.06vw;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 5.7vw;
    color: #81868b;
  }

  #header .header-link:last-child {
    margin-left: unset;
  }

  #sidebar .header-link li:not(:last-child) {
    margin-bottom: 4.06vw;
  }

  #sidebar a {
    color: rgba(171, 168, 156, 1);
    text-decoration: none;
    font-weight: 400;
  }

  #sidebar a.active {
    color: rgba(101, 17, 20, 1);
    text-decoration: underline;
  }

  #sidebar .social {
    font-family: Montserrat;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 3.44vw;
    line-height: 4.06vw;
    display: flex;
    display: -ms-flex;
    flex-direction: row-reverse;
    column-gap: 5vw;
    row-gap: 2.5vw;
    justify-content: flex-end;
    margin-top: auto;
  }

  #sidebar .social li {
    display: flex;
    display: -ms-flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1.56vw;
    margin-bottom: 0;
  }

  #sidebar .social li a {
    color: #651114;
  }

  #sidebar .social li img {
    height: 5vw;
    width: auto;
  }

  #sidebar .contacts {
    margin-top: 9.38vw;
    display: flex;
    display: -ms-flex;
    flex-direction: column;
    row-gap: 6.25vw;
    font-family: Gotham Pro;
    font-weight: 400;
    font-size: 3.2vw;
    line-height: 108%;
    letter-spacing: 0;
    color: #545454;
  }

  #sidebar .contacts li {
    display: flex;
    flex-direction: column;
    row-gap: 1.56vw;
    align-items: flex-start;
  }
  #sidebar .contacts li a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 3.43vw;
    line-height: 100%;
    letter-spacing: 0;
    color: #545454;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1.56vw;
  }
  #sidebar .contacts li img {
    width: 5.31vw;
    height: 5.31vw;
  }

  .sidebar-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000008a;
    z-index: 100;
    cursor: default;
  }

  .sidebar-open {
    pointer-events: none !important;
    position: relative;
  }

  .sidebar-open .toggle-button {
    pointer-events: auto !important;
    position: relative;
    z-index: 999;
  }

  .sidebar-open #sidebar,
  .sidebar-open #sidebar * {
    pointer-events: auto !important;
  }
}
#top-row {
  padding: 1.82vw 0 0;
}

#top-row .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#top-row .logo {
  display: inline-flex;
  width: 15.05vw;
  height: 3.44vw;
  background-image: url("../img/logo.png");
  background-size: 100% 100%;
}

@media (max-width: 575.5px) {
  #top-row {
    padding: 6.88vw 0 0;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  #top-row .logo {
    width: 46.25vw;
    height: 10vw;
  }
}

#main-screen {
  padding: 6.5vw 6.77vw 24.2vw;
  position: relative;
  background-image: url("../img/main-image.png?ver=2");
  background-size: 100% 100%;
}

#main-screen::before {
  position: absolute;
  content: "";
  width: 52.65vw;
  height: 34.58vw;
  bottom: 0;
  transform: translateX(50%);
  right: 50%;
  background-image: url(../img/main-men.png);
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}

#main-screen .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

#main-screen .title {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.03vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 1.56vw;
}

#main-screen .title span {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.44vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

#main-screen .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.6vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 0.83vw;
  line-height: 100%;
  letter-spacing: 0;
  width: 59.4vw;
}

#main-screen .menu > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#main-screen .menu .top-row {
  column-gap: 18.75vw;
  width: 100%;
}

#main-screen .menu .bottom-row {
  column-gap: 7.03vw;
  margin-left: 4.17vw;
}

#main-screen .menu-item {
  display: inline-flex;
  border-radius: 2.86vw;
  text-align: center;
  height: 2.29vw;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  font-family: Artegra Sans Extended;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  z-index: 1;
}

#main-screen .menu .top-row .menu-item {
  width: 7.08vw;
}

#main-screen .menu .menu-item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000080;
  z-index: -1;
  border-radius: 2.86vw;
  box-shadow: 0vw 0.21vw 0.21vw 0vw #00000040;
  backdrop-filter: blur(0.21vw);
}
#main-screen .menu .top-row .menu-item:after {
  position: absolute;
  content: "";
  width: 21.3vw;
  height: 16.56vw;
  top: -13.17vw;
  right: -1.35vw;
  background-image: url(../img/services-bg.png);
  background-size: 100% 100%;
  z-index: -2;
}

#main-screen .menu .bottom-row .menu-item {
  width: 13.85vw;
}

#main-screen .menu .bottom-row .menu-item:first-child:after {
  position: absolute;
  content: "";
  width: 42.39vw;
  height: 16.56vw;
  top: -0.94vw;
  right: -1.35vw;
  background-image: url(../img/team-bg.png);
  background-size: 100% 100%;
  z-index: -2;
}

#main-screen .menu .bottom-row .menu-item:last-child:after {
  position: absolute;
  content: "";
  width: 20vw;
  height: 15.26vw;
  top: -0.94vw;
  right: -1.51vw;
  background-image: url(../img/news-bg.png);
  background-size: 100% 100%;
  z-index: -2;
}
#main-screen button {
  font-family: Artegra Sans Extended;
  font-weight: 400;
  font-size: 0.96vw;
  line-height: 100%;
  letter-spacing: 0;
  padding: 0.74vw 3.13vw 0.83vw;
  /* background: #00000080; */
  border-radius: 3.65vw;
  width: 19.53vw;
  position: absolute;
  right: 0;
  /* backdrop-filter: blur(0.21vw); */
}
#main-screen a {
  display: contents;
}
#main-screen button.btn-view-cases {
  top: -4.39vw;
  transform: rotate(-1.71deg);
  width: 21.35vw;
  font-size: 1.12vw;
}

#main-screen button.btn-contact-us {
  bottom: 16.3vw;
  top: unset;
  transform: rotate(-2.7deg);
  right: 4.4vw;
  width: 16vw;
}
#main-screen button.btn-contact-us::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000080;
  z-index: -1;
  border-radius: 2.86vw;
  box-shadow: 0vw 0.21vw 0.21vw 0vw #00000040;
  backdrop-filter: blur(0.21vw);
}
#main-screen button.btn-contact-us::after {
  position: absolute;
  content: "";
  width: 21.3vw;
  height: 33.85vw;
  top: -1.35vw;
  left: -1.67vw;
  background-image: url(../img/contact-us-bg.png);
  background-size: 100% 100%;
  z-index: -2;
  transform: rotate(2.7deg);
}
#main-screen .menu-mobile {
  display: none;
}
@media (max-width: 575.5px) {
  #main-screen {
    padding: 29.69vw 4.69vw 18.94vw;
    background-image: url("../img/main-image-mobile.png");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    height: 100vh;
  }

  #main-screen .container {
    height: 100%;
    justify-content: space-between;
  }

  #main-screen .title {
    font-family: Gotham Pro;
    font-weight: 400;
    font-size: 3.13vw;
    line-height: 108%;
    letter-spacing: 0;
    text-align: center;
    row-gap: 6.25vw;
    max-width: 78.13vw;
  }

  #main-screen .title span {
    font-family: Body Grotesque Large Trial;
    font-weight: 700;
    font-size: 5.27vw;
    line-height: 108%;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
  }

  #main-screen .menu-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4.69vw;
    row-gap: 3.13vw;
  }

  #main-screen .menu-mobile-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Artegra Sans Extended;
    font-weight: 400;
    font-size: 3.2vw;
    line-height: normal;
    letter-spacing: 0;
    color: white;
    height: 8.75vw;
    border-radius: 10.94vw;
    padding-bottom: 0.63vw;
    width: fit-content;
    white-space: nowrap;
  }
  #main-screen .menu-mobile-item:nth-child(1) {
    margin-left: 6.25vw;
  }
  #main-screen .menu-mobile-item:nth-child(4) {
    margin-left: -6.25vw;
  }
  #main-screen .menu-mobile-item:nth-child(1),
  #main-screen .menu-mobile-item:nth-child(4) {
    background: #00000080;
    border: 0.17vw solid #ffffff;
    width: 43.75vw;
  }

  #main-screen .menu-mobile-item:nth-child(2),
  #main-screen .menu-mobile-item:nth-child(3) {
    background: #00000080;
    border: 0.17vw solid #ffffff;
    min-width: 26.56vw;
    padding: 0 4.69vw 0.63vw;
    border: 0.17vw solid #651114;
  }
  #main-screen .menu-mobile-item:nth-child(2) {
    background: #65111499;
  }

  #main-screen .menu {
    display: none;
  }
  #main-screen button.btn-view-cases {
    display: none;
  }
  #main-screen button.btn-contact-us {
    display: none;
  }
}

#about {
  display: flex;
  flex-direction: column;
  row-gap: 2.6vw;
  align-items: center;
  padding-top: 6.77vw;
  padding-bottom: 5.21vw;
  background-image: url(../img/about-bg.png);
  background-size: 100% 100%;
}

#about .top-row {
  display: flex;
  flex-direction: row;
  column-gap: 0.78vw;
  padding-left: 6.77vw;
}

#about .top-row .about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#about .top-row .title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: -2.86vw;
  position: relative;
}

#about .top-row .title:after {
  content: "";
  background-image: url(../img/title-bg.png);
  background-size: 100% 100%;
  position: absolute;
  top: 0vw;
  left: 60%;
  transform: translateX(-60%);
  width: 52.08vw;
  height: 12.55vw;
  z-index: 0;
}

#about .top-row .title span:first-of-type {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.25vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: rgba(193, 193, 193, 1);
  white-space: nowrap;
  z-index: 1;
}

#about .top-row .title span:last-of-type {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 4.56vw;
  line-height: 118%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0.19vw 0.19vw rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  z-index: 1;
}

#about .top-row .idg-team-img {
  width: 40.99vw;
  height: auto;
  margin-right: 3.39vw;
}

#about .top-row .about-right {
  margin-top: 1.82vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 2.08vw;
}

#about .top-row .subtitle {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: italic;
  font-size: 1.3vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  padding: 2.34vw 3.96vw 3.07vw 4.17vw;
  background-image: url(../img/main-subtitle-bg.png);
  background-size: 100% 100%;
  width: 100%;
}

#about .top-row .details {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.15vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  row-gap: 1.82vw;
  padding: 0 2.55vw;
}

#about .bottom-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-start;
}

#about .bottom-row blockquote {
  padding: 2.4vw 4.64vw 2.86vw 9.27vw;
  font-family: Montserrat;
  font-weight: 300;
  font-style: italic;
  font-size: 1.3vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  width: 60.68vw;
  max-width: 60.68vw;
  background-image: url(../img/main-quote-bg.png);
  background-size: 100% 100%;
}

#about .bottom-row .about-director {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  column-gap: 2.34vw;
}

#about .bottom-row .about-director img {
  width: 12.34vw;
  height: auto;
}

#about .bottom-row .about-director cite {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#about .bottom-row .about-director span:first-of-type {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.27vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  font-style: normal;
}

#about .bottom-row .about-director span:nth-child(2) {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.87vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  font-style: normal;
  margin-top: -0.26vw;
}

#about .bottom-row .about-director i {
  font-family: Montserrat;
  font-weight: 300;
  font-style: italic;
  font-size: 1.07vw;
  line-height: 108%;
  letter-spacing: 0;
}

@media (max-width: 575.5px) {
  #about {
    row-gap: 0;
    padding-top: 12.5vw;
    padding-bottom: 0;
    background-image: unset;
  }
  #about .top-row {
    display: contents;
  }

  #about .top-row .about-left {
    display: contents;
  }

  #about .top-row .title {
    margin-bottom: 1.56vw;
    order: 1;
  }

  #about .top-row .title:after {
    display: none;
  }

  #about .top-row .title span:first-of-type {
    font-size: 4.06vw;
  }

  #about .top-row .title span:last-of-type {
    font-size: 9.69vw;
  }

  #about .top-row .idg-team-img {
    width: 84.38vw;
    margin: auto;
    order: 3;
    margin-bottom: 7.81vw;
  }

  #about .top-row .about-right {
    display: contents;
  }

  #about .top-row .subtitle {
    font-size: 2.5vw;
    padding: 0;
    background-image: unset;
    order: 2;
    width: 75vw;
    text-align: center;
    margin: auto;
    margin-bottom: 7.81vw;
  }

  #about .top-row .details {
    font-size: 2.97vw;
    row-gap: 3vw;
    padding: 0 6.25vw;
    order: 4;
    margin-bottom: 4.69vw;
  }

  #about .bottom-row {
    flex-direction: column-reverse;
    order: 5;
    width: 100%;
    padding: 6.25vw 6.25vw 10.94vw;
    background: linear-gradient(180deg, #000000 0%, #651114 100%);
    align-items: flex-start;
    row-gap: 6.25vw;
    position: relative;
  }

  #about .bottom-row::after {
    content: "";
    width: 100%;
    height: 2.5vw;
    background: linear-gradient(90deg, #651114 0%, #000000 100%);
    position: absolute;
    bottom: 0;
  }

  #about .bottom-row blockquote {
    padding: 0;
    font-size: 2.97vw;
    background-image: unset;
    width: unset;
    max-width: unset;
  }

  #about .bottom-row .about-director {
    column-gap: 6.25vw;
  }

  #about .bottom-row .about-director img {
    width: 28.13vw;
  }

  #about .bottom-row .about-director span:first-of-type {
    font-size: 3.13vw;
  }

  #about .bottom-row .about-director span:nth-child(2) {
    font-size: 6.25vw;
  }

  #about .bottom-row .about-director i {
    font-size: 2.5vw;
  }
}

#purpose {
  display: flex;
  flex-direction: column;
  row-gap: 0.36vw;
  background-image: url(../img/purpose-bg.png);
  background-size: 100% 100%;
  padding: 2.86vw 3.13vw 2.08vw 4.17vw;
}

#purpose .top-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1.72vw;
}

#purpose .top-row .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.13vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  border: 0.07vw solid rgba(101, 17, 20, 1);
  background: rgba(217, 217, 217, 0.05);
  border-radius: 5.99vw;
  padding: 1.56vw 4.69vw 1.04vw 3.65vw;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 0.44vw 0.44vw 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5.49vw);
}

#purpose .top-row .title:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.51vw;
  height: 1.51vw;
  top: 0.78vw;
  right: 2.08vw;
}

#purpose .top-row .aim {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.15vw;
  line-height: 108%;
  letter-spacing: 0;
  color: white;
  margin-right: 10.42vw;
}

#purpose .bottom-row {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 4.17vw;
}

#purpose .bottom-row .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.13vw;
  line-height: 102%;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  color: white;
  margin-left: auto;
}

#purpose .bottom-row .mission {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.15vw;
  line-height: 108%;
  letter-spacing: 0;
  color: white;
}

@media (max-width: 575.5px) {
  #purpose {
    row-gap: 18.75vw;
    background-image: unset;
    padding: 14.06vw 6.25vw 9.38vw;
  }

  #purpose .top-row {
    flex-direction: column;
    row-gap: 6.25vw;
  }

  #purpose .top-row .title {
    font-size: 4.06vw;
    border-radius: 12.5vw;
    padding: 2.5vw 9.38vw 2.19vw;
    box-shadow: 0 0.86vw 0.86vw 0 #00000040;
    backdrop-filter: blur(10.72vw);
    border: 0.14vw solid #651114;
  }

  #purpose .top-row .title:before {
    width: 2.5vw;
    height: 2.5vw;
    top: 1.56vw;
    right: 4.69vw;
  }

  #purpose .top-row .aim {
    font-size: 2.97vw;
    margin-right: 0;
    text-align: center;
    max-width: 84.38vw;
  }

  #purpose .bottom-row {
    align-items: center;
    padding: 0;
    row-gap: 6.25vw;
  }

  #purpose .bottom-row .title {
    font-size: 4.06vw;
    text-align: center;
    margin: auto;
  }

  #purpose .bottom-row .mission {
    font-size: 2.97vw;
    text-align: center;
  }
}

#directions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.3vw 0 2.08vw;
  background-image: url(../img/directions-bg.png);
  background-size: 100% 100%;
  overflow: hidden;
  position: relative;
}

#directions .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.82vw;
  line-height: 102%;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6.25vw;
  position: relative;
}

#directions .main-arrow {
  position: absolute;
  width: 3.65vw;
  height: 3.65vw;
  transform: translateX(-50%);
  left: 50%;
  top: 5vw;
}

#directions .slider {
  width: 104.38vw;
  height: 31.25vw;
  border-radius: 0.52vw;
  overflow: hidden;
}

#directions .direction-list {
  width: 400%;
  height: 29.22vw;
  display: flex;
  position: relative;
}

#directions .direction-list input {
  display: none;
}

#directions #radio1:checked ~ .first {
  margin-left: 0;
}

#directions #radio2:checked ~ .first {
  margin-left: -25%;
}

#directions #radio3:checked ~ .first {
  margin-left: -50%;
}

#directions #radio4:checked ~ .first {
  margin-left: -75%;
}

#directions .directions__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1.56vw;
  margin-top: -1.04vw;
  bottom: 0.52vw;
  position: relative;
}

#directions .directions__nav label {
  display: block;
  width: 1.72vw;
  height: 0.57vw;
  border: none;
  background: transparent;
  border-radius: 3.54vw;
  opacity: 0.5;
  position: relative;
  cursor: pointer;
}

#directions .directions__nav label:hover {
  opacity: 1;
}

#directions .navigation-auto {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1.56vw;
  margin-top: 0.52vw;
  position: absolute;
  left: 11.1%;
  bottom: -1vw;
}

#directions #radio1:checked ~ .navigation-auto .auto-btn1 {
  background: white;
}

#directions #radio1:hover ~ .navigation-auto .auto-btn1 {
  opacity: 0.75;
  background: white;
}

#directions #radio2:checked ~ .navigation-auto .auto-btn2 {
  background: white;
}

#directions #radio2:hover ~ .navigation-auto .auto-btn2 {
  opacity: 0.75;
  background: white;
}

#directions #radio3:checked ~ .navigation-auto .auto-btn3 {
  background: white;
}

#directions #radio3:hover ~ .navigation-auto .auto-btn3 {
  opacity: 0.75;
  background: white;
}

#directions #radio4:checked ~ .navigation-auto .auto-btn4 {
  background: white;
}

#directions #radio4:hover ~ .navigation-auto .auto-btn4 {
  opacity: 0.75;
  background: white;
}

#directions .navigation-auto div {
  display: block;
  width: 1.72vw;
  height: 0.57vw;
  border: none;
  background: #651114;
  border-radius: 3.54vw;
  position: relative;
  transition: all 0.3s ease;
}

#directions .slider input:checked {
  opacity: 1;
  background: white;
}

#directions .direction-item {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 0.52vw;
  background-image: url(../img/direction-item-bg-1.png);
  background-size: 100% 100%;
  position: relative;
  width: 104.38vw;
  height: 29.22vw;
  transition: all 0.6s ease-in-out;
  display: flex;
  padding: 3.65vw 9.38vw 4.95vw;
}

#directions .direction-item:nth-child(even) {
  background-image: url(../img/direction-item-bg.png);
  background-size: 100% 100%;
}

#directions .direction-item .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

#directions .direction-item__title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.5vw;
  line-height: 105%;
  letter-spacing: 0;
  font-variant: small-caps;
  color: rgba(193, 193, 193, 0.88);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.47vw;
  white-space: nowrap;
  padding-top: 0.52vw;
  margin-bottom: 1.56vw;
}

#directions .direction-item__title span {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.44vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
}

#directions .direction-item__description {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.04vw;
  line-height: 108%;
  letter-spacing: 0;
  color: white;
  margin-bottom: 2.34vw;
}

#directions .direction-item__projects {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1.56vw;
}

#directions .project-item {
  height: 3.91vw;
  width: auto;
}

#directions .project-item.smetnoe {
  height: 2.19vw;
  width: auto;
}
#directions .project-item.smetnoe img {
  height: inherit;
  width: inherit;
}

#directions .project-item img {
  width: inherit;
  height: inherit;
}

#directions .direction-item .supervisor {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  position: relative;
  height: 100%;
}

#directions .direction-item .supervisor__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.3vw;
  position: absolute;
  right: 100%;
  width: 19.48vw;
  bottom: 2.08vw;
}

#directions .direction-item cite {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
}

#directions .direction-item cite span:first-of-type {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.32vw;
  line-height: 108%;
  letter-spacing: 0;
  font-style: normal;
}

#directions .direction-item cite span:nth-child(2) {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 0.76vw;
  line-height: 108%;
  letter-spacing: 0;
  font-style: normal;
  white-space: nowrap;
}

#directions .direction-item cite i {
  font-family: Montserrat;
  font-weight: 300;
  font-style: italic;
  font-size: 0.67vw;
  line-height: 108%;
  letter-spacing: 0;
  margin-top: 0.31vw;
}

#directions .direction-item blockquote {
  font-family: Montserrat;
  font-weight: 300;
  font-style: italic;
  font-size: 0.67vw;
  line-height: 108%;
  letter-spacing: 0;
}

#directions .supervisor__image {
  width: 14.64vw;
  height: auto;
}

#directions .supervisor__image img {
  width: 100%;
  height: 100%;
}

#directions .btn-view-more {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 0.83vw;
  line-height: 100%;
  letter-spacing: 0;
  padding: 0.73vw 1.93vw 0.57vw 1.04vw;
  color: white;
  background: rgba(217, 217, 217, 0.1);
  border: 0.03vw solid rgba(101, 17, 20, 1);
  border-radius: 2.81vw;
  position: absolute;
  content: "";
  transform: translateX(-50%);
  left: 50%;
  bottom: 4.95vw;
  cursor: pointer;
}

#directions .btn-view-more:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 0.73vw;
  height: 0.73vw;
  top: 0.36vw;
  right: 0.83vw;
}

#directions .call-to-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 2.6vw;
  row-gap: 1.56vw;
}

#directions .call-to-action__title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.04vw;
  line-height: 100%;
  letter-spacing: 0.003em;
  text-transform: uppercase;
}

#directions .call-to-action__body {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.04vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: white;
}

#directions .call-to-action__body span {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  font-family: Gotham Pro;
  font-weight: 600;
  font-size: 1.04vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(137, 174, 191, 1);
  position: relative;
  top: 0.1vw;
  column-gap: 0.16vw;
}

#directions .call-to-action__body img {
  width: 0.99vw;
  height: 0.99vw;
  position: relative;
  top: 0.025vw;
}

@media (max-width: 575.5px) {
  #directions {
    padding: 9.38vw 0 10.94vw;
    background-image: unset;
  }

  #directions .title {
    font-size: 4.06vw;
    text-align: center;
    margin-bottom: 12.5vw;
  }

  #directions .main-arrow {
    display: none;
  }

  #directions .slider {
    width: 100vw;
    height: 118.75vw;
    border-radius: 0;
  }

  #directions .direction-list {
    width: 425%;
    height: 109.38vw;
    column-gap: 6.25vw;
  }

  #directions .directions__nav {
    column-gap: 1.88vw;
    margin-top: 0;
    bottom: 1.88vw;
  }

  #directions .directions__nav label {
    width: 3.75vw;
    height: 1.25vw;
    border-radius: 7.81vw;
  }

  #directions .navigation-auto {
    column-gap: 1.88vw;
    margin-top: 0;
    bottom: -8.75vw;
    left: 9.35%;
  }

  #directions .navigation-auto div {
    width: 3.75vw;
    height: 1.25vw;
    border-radius: 7.81vw;
  }

  #directions .direction-item {
    flex-direction: column;
    row-gap: 0;
    background-image: unset;
    background: white;
    width: 100vw;
    height: 109.38vw;
    padding: 4.69vw 4.69vw 7.81vw 4.69vw;
    justify-content: flex-start;
    padding-right: 3.13vw;
  }

  #directions .direction-item:nth-child(even) {
    background-image: unset;
  }

  #directions .direction-item__title {
    font-size: 3.13vw;
    row-gap: 0.63vw;
    white-space: nowrap;
    padding-top: 0;
    margin-bottom: 3.13vw;
    order: 2;
  }

  #directions .direction-item__title span {
    font-size: 3.75vw;
    color: #651114;
  }

  #directions .direction-item__description {
    font-size: 2.97vw;
    color: #727272;
    margin-bottom: 0;
    order: 3;
  }

  #directions .direction-item__description br {
    display: none;
  }

  #directions .direction-item__projects {
    column-gap: 4.69vw;
    order: 1;
    height: 9.38vw;
    margin-bottom: 3.13vw;
  }

  #directions .project-item {
    height: 6.56vw;
    width: auto;
  }

  #directions .project-item.vetforum {
    height: 8.44vw !important;
  }
  #directions .project-item.pro-hair {
    height: 6.25vw !important;
  }
  #directions .project-item.vetkongress {
    height: 5.31vw !important;
  }
  #directions .project-item.locus {
    height: 6.25vw !important;
  }
  #directions .project-item.smetnoe {
    height: 4.06vw;
  }

  #directions .project-item.smetnoe img {
    filter: unset !important;
  }

  #directions .project-item img {
    filter: invert(1);
  }

  #directions .direction-item .left-side {
    height: fit-content;
  }

  #directions .direction-item .right-side {
    margin-top: auto;
  }
  #directions .direction-item .supervisor {
    flex-direction: row-reverse;
    align-items: flex-start;
    column-gap: 6.25vw;
    height: 32.81vw;
  }

  #directions .direction-item .supervisor__name {
    row-gap: 4.69vw;
    width: unset;
    bottom: unset;
    position: relative;
    right: unset;
  }

  #directions .direction-item cite {
    color: #727272;
  }

  #directions .direction-item cite span:first-of-type {
    font-size: 3.75vw;
  }

  #directions .direction-item cite span:nth-child(2) {
    font-size: 2.5vw;
  }

  #directions .direction-item cite i {
    font-size: 2.19vw;
    margin-top: 0.63vw;
  }

  #directions .direction-item blockquote {
    font-size: 2.19vw;
    color: #727272;
  }

  #directions .supervisor__image {
    width: 20.31vw;
  }

  #directions .btn-view-more {
    font-size: 3.13vw;
    padding: 2.5vw 7.81vw 2.19vw 3.13vw;
    color: white;
    background: #651114;
    border: 0.13vw solid #651114;
    border-radius: 10.94vw;
    position: relative;
    transform: unset;
    left: unset;
    bottom: unset;
    margin: 2.19vw auto 0;
  }

  #directions .btn-view-more:before {
    width: 2.66vw;
    height: 2.66vw;
    top: 1.25vw;
    right: 3.13vw;
  }

  #directions .call-to-action {
    margin-top: 9.38vw;
    row-gap: 9.38vw;
  }

  #directions .call-to-action__title {
    font-size: 3.13vw;
    line-height: normal;
    padding: 3.13vw 12.5vw;
    width: 100%;
    background: linear-gradient(90deg, #651114 0%, #000000 100%);
  }

  #directions .call-to-action__body {
    font-size: 2.81vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 6.25vw;
    padding: 0 9.38vw;
  }

  #directions .call-to-action__body br {
    display: none;
  }

  #directions .call-to-action__body span {
    font-size: 3.75vw;
    top: unset;
    column-gap: 3.13vw;
    color: white;
  }

  #directions .call-to-action__body img {
    width: 5.94vw;
    height: 5.94vw;
    top: unset;
    filter: brightness(10) grayscale(1);
  }
}

#footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  color: white;
  padding: 3.13vw 5.73vw;
  /* background-image: url(../img/footer-bg.png);
  background-size: 100% 100%; */
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.73vw;
  line-height: normal;
  letter-spacing: 0;
  background: black;
  margin-top: auto;
}
#footer div {
  width: 23vw;
}
#footer div:nth-of-type(2) {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .right {
  text-align: right;
}
@media (max-width: 575.5px) {
  #footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 3.13vw 4.69vw;
    font-size: 1.56vw;
    line-height: normal;
    letter-spacing: 0;
    background: black;
    row-gap: 4.69vw;
    column-gap: 3.13vw;
  }
  #footer div {
    width: unset;
  }
  #footer div:nth-of-type(2) {
    grid-column: span 2;
    order: 1;
    font-size: 2.19vw;
  }
  #footer .left {
    text-align: left;
    order: 2;
  }
  #footer .right {
    text-align: right;
    order: 3;
    width: 50vw;
  }
}

#team-page {
  padding-top: 7.6vw;
  background-image: url(../img/team/intro-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  position: relative;
}

#team-page::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #000000 0%, #651114 193.2%);
  z-index: -1;
}

#team-page .intro {
  display: flex;
  flex-direction: column;
  row-gap: 1.3vw;
  padding-right: 4.69vw;
  align-items: flex-end;
  text-align: right;
}

#team-page .intro__head {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.86vw;
  line-height: 102%;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
}
#team-page .intro__head span {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 4.6vw;
  line-height: 3.91vw;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  color: rgba(100, 26, 29, 1);
}
#team-page .intro__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 1.3vw;
}
#team-page .intro__body p {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.29vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: right;
  color: white;
}
#team-page .philosophy {
  display: flex;
  flex-direction: column;
  row-gap: 0.78vw;
  padding-bottom: 3.91vw;
}
#team-page .philosophy__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 7.03vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  width: fit-content;
  position: relative;
  padding-left: 3.65vw;
}
#team-page .philosophy__head:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.25vw;
  height: 1.25vw;
  top: -1.04vw;
  right: 9.9vw;
}
#team-page .philosophy__head span {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 3.46vw;
  line-height: 2.6vw;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  opacity: 0.5;
  margin-left: 11.98vw;
}
#team-page .philosophy__body {
  padding-left: 17.19vw;
  padding-bottom: 0.52vw;
  position: relative;
  font-family: Gotham Pro;
  font-weight: 700;
  font-size: 1.31vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
}
#team-page .philosophy__body:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16.09vw;
  height: 12.71vw;
  background-image: url(../img/team/philosophy__body-bg.png);
  background-size: 100% 100%;
}

#team-page .team {
  padding: 0 3.13vw;
  position: relative;
}
#team-page .team .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 7.81vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0.21vw 2.6vw rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 25vw;
  left: 3.13vw;
  z-index: 1;
}
#team-page .team .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.04vw;
  width: 100%;
  align-items: start;
}
#team-page .team .team-quote {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.29vw;
  line-height: 108%;
  letter-spacing: 0;
  color: white;
}
#team-page .team .team-approach {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.66vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  position: relative;
}
#team-page .team .team-department {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 3.94vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0.11vw 1.31vw rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
}
#team-page .item {
  width: 22.66vw;
  row-gap: 1.04vw;
  display: flex;
}
#team-page .item .team-member__image {
  position: relative;
  overflow: hidden;
}
#team-page .item .team-member__image:hover .team-member__image-description {
  top: 0;
}
#team-page .item .team-member__image-description {
  position: absolute;
  height: 100%;
  top: -100%;
  left: 0;
  right: 0;
  background: rgba(101, 17, 20, 1);
  padding: 1.04vw 0.52vw 1.3vw 1.04vw;
  display: flex;
  flex-direction: column;
  row-gap: 1.82vw;
  column-gap: 1.04vw;
  align-items: flex-start;
  justify-content: flex-end;
  transition: top 0.7s ease-in-out;
}
#team-page .team-member__image-description.wrap {
  flex-wrap: wrap;
}
#team-page .team-member__image-description.wrap .team-member__info {
  /*flex: 50%;*/
}
#team-page .item .team-member__image-description.flex-start {
  justify-content: flex-start;
}
#team-page .item .team-member__image-description.center {
  justify-content: center;
}
#team-page .team-member__image-description.padding {
  padding-top: 5.21vw;
}
#team-page .team-member__image-description.padding-bigger {
  padding-top: 9.38vw;
}
#team-page .item .team-member__info {
  display: flex;
  flex-direction: column;
  row-gap: 0.52vw;
  justify-content: flex-end;
}
#team-page .item .team-member__info.margin-bottom {
  margin-bottom: 10.42vw;
}
#team-page .item .team-member__name {
  display: flex;
  flex-direction: column;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.25vw;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
}
#team-page .item .team-member__name.smaller {
  font-size: 0.94vw;
}
#team-page .item .team-member__name span {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.34vw;
  line-height: 100%;
  letter-spacing: 0;
}
#team-page .item .team-member__name.smaller span {
  font-size: 1.56vw;
}
#team-page .item .team-member__job-title {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.94vw;
  line-height: 100%;
  letter-spacing: 0;
}
#team-page .team .item-1 {
  grid-column: 1 / span 1;
  grid-row: 1 / span 5;
  flex-direction: column;
}
#team-page .team .item-1 .team-member:nth-child(1) {
  margin-bottom: 13.28vw;
}
#team-page .team .item-2 {
  grid-column: 2 / span 1;
  grid-row: 1 / span 2;
  flex-direction: column;
  padding-top: 2.86vw;
}
#team-page .team .item-2 .team-quote {
  font-size: 1.45vw;
}

#team-page .team .item-3 {
  grid-column: 3 / span 2;
  grid-row: 1 / span 1;
  display: grid;
  grid-template-columns: repeat(2, 22.66vw);
  grid-template-rows: auto 1fr auto;
  grid-gap: 1.04vw;
  width: 100%;
}
#team-page .team .item-3__title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.86vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 2.34vw;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}
#team-page .team .item-3 .team-member {
  grid-column: 2 / span 1;
  grid-row: 1 / span 2;
  padding-top: 1.3vw;
}
#team-page .team .item-3 .team-member + .team-member {
  grid-column: 1 / span 1;
  grid-row: 2 / span 2;
  padding-top: 0;
}
#team-page .team .item-3 .team-quote {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
  white-space: nowrap;
  position: relative;
  bottom: 0.52vw;
  font-size: 2.28vw;
}
#team-page .team .item-4 {
  grid-column: 3 / span 2;
  grid-row: 2 / span 1;
  width: unset;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.56vw;
  position: relative;
}
#team-page .team .item-4 .team-approach {
  font-size: 1.48vw;
}
#team-page .team .item-5 {
  grid-column: 2 / span 2;
  grid-row: 3 / span 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1.04vw;
  width: unset;
  margin-top: -0.52vw;
}
#team-page .team .item-5 .team-approach {
  font-size: 1.38vw;
}
#team-page .team .item-6 {
  grid-column: 4 / span 1;
  grid-row: 3 / span 3;
  display: flex;
  flex-direction: column;
  margin-top: -6.77vw;
}
#team-page .team .item-7 {
  width: unset;
  grid-column: 2 / span 2;
  grid-row: 4 / span 1;
  display: flex;
  flex-direction: row;
  column-gap: 1.04vw;
}
#team-page .team .item-7 .team-member:first-child {
  width: 22.86vw;
  min-width: 22.86vw;
}
#team-page .team .item-7 .team-member:last-child {
  margin-top: 2.86vw;
}
#team-page .team .item-8 {
  grid-column: 2 / span 2;
  grid-row: 5 / span 1;
  display: grid;
  width: unset;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 7.29vw repeat(3, 1fr);
  column-gap: 1.04vw;
  margin-top: -3.39vw;
}
#team-page .team .item-8 .team-department {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
#team-page .team .item-8 .team-approach {
  grid-column: 2 / span 2;
  grid-row: 2 / span 2;
  font-size: 1.29vw;
}
#team-page .team .item-8 .team-member {
  grid-column: 1 / span 1;
  grid-row: 2 / span 2;
  width: 28.65vw;
  margin-top: 4.69vw;
  position: relative;
  z-index: 1;
}
#team-page .team .item-8 .team-quote {
  font-size: 2.79vw;
  grid-column: 1 / span 3;
  grid-row: 4 / span 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 9.9vw 0 4.69vw;
  text-align: right;
  margin-top: -3.54vw;
}
#team-page .team .item-8 .team-quote span {
  margin-right: auto;
}
#team-page .team .item-9 {
  grid-column: 1 / span 2;
  grid-row: 7 / span 1;
  width: unset;
  flex-direction: column;
  gap: 1.04vw;
  margin-top: -6.25vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#team-page .team .item-9 .team-member:nth-of-type(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 1;
}
#team-page .team .item-9 .team-member {
  grid-column: 1 / span 2;
  grid-row: 4 / span 1;
}
#team-page .team .item-9 .team-member:last-of-type {
  grid-column: 1 / span 2;
  grid-row: 5 / span 1;
  width: auto;
}
#team-page .team .item-9 .team-department {
  white-space: nowrap;
  grid-column: 1 / span 2;
  grid-row: 2 / span 1;
  position: relative;
  font-size: 4.18vw;
}
#team-page .team .item-9 .team-approach {
  margin-top: -1.04vw;
  grid-column: 1 / span 2;
  grid-row: 3 / span 1;
}
#team-page .team .item-9 .team-quote {
  grid-column: 1 / span 1;
  grid-row: 6 / span 1;
  text-align: left;
  font-size: 2.76vw;
  margin-top: 8.59vw;
}
#team-page .team .item-9 .team-quote p {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.66vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  text-align: left;
  margin-top: 1.56vw;
}
#team-page .team .item-10 {
  grid-column: 3 / span 2;
  grid-row: 7 / span 1;
  width: unset;
  flex-direction: column;
  gap: 1.04vw;
  margin-top: -7.55vw;
  display: grid;
  grid-template-columns: 19.01vw auto;
  align-items: center;
}
#team-page .team .item-10 .item-department {
  grid-column: 1 / span 2;
  grid-row: 1 / span 1;
}
#team-page .team .item-10 .team-member {
  grid-column: 1 / span 2;
  grid-row: 2 / span 1;
}
#team-page .team .item-10 .team-approach {
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
  font-size: 1.2vw;
  height: 100%;
}
#team-page .team .item-10 .team-approach + .team-member {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}
#team-page .team .item-10 .team-approach + .team-member + .team-member {
  grid-column: 1 / span 1;
  grid-row: 4 / span 1;
  width: 22.76vw;
}
#team-page
  .team
  .item-10
  .team-approach
  + .team-member
  + .team-member
  + .team-member {
  grid-column: 2 / span 1;
  grid-row: 4 / span 1;
  width: 22.65vw;
  position: relative;
  right: -3.64vw;
}
#team-page .team .item-10 .team-member:last-child {
  grid-column: 1 / span 2;
  grid-row: 5 / span 1;
}
#team-page .vacancies {
  padding: 4.17vw 3.65vw;
  text-align: center;
}
#team-page .vacancies__title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.09vw;
  line-height: normal;
  text-transform: uppercase;
  padding: 0 6.77vw 0 5.73vw;
  color: white;
  border: 0.07vw solid #651114;
  box-shadow: 0vw 0.43vw 0.43vw 0vw #00000040;
  backdrop-filter: blur(5.36vw);
  background: #d9d9d90d;
  height: 4.69vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 5.73vw;
  margin-bottom: 1.56vw;
  position: relative;
}
#team-page .vacancies__title::before {
  content: "";
  background-image: url(../img/menu-item-arrow.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.46vw;
  height: 1.46vw;
  top: 0.78vw;
  right: 4.17vw;
}
#team-page .vacancies__description {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#team-page .vacancies__description b {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: white;
  margin-bottom: 0.78vw;
}
#team-page .vacancies__description p {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: white;
  margin-bottom: 2.08vw;
}
#team-page .vacancies button {
  height: 3.33vw;
  box-shadow: 0vw 0.3vw 0.3vw 0vw #00000040;
  backdrop-filter: blur(3.8vw);
  padding: 0 3.65vw 0 2.6vw;
  background: transparent;
  color: white;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.21vw;
  line-height: normal;
  letter-spacing: 0;
  border-radius: 4.17vw;
  border: 0.05vw solid #651114;
  transition: all 0.3s ease;
}
#team-page .vacancies button:hover {
  background: #651114;
}
#team-page .vacancies button::before {
  content: "";
  background-image: url(../img/menu-item-arrow.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.04vw;
  height: 1.04vw;
  top: 0.52vw;
  right: 1.56vw;
}
#team-page #team-mobile {
  display: none;
}

@media (max-width: 575.5px) {
  #team-page #team-mobile {
    display: block;
  }
  #team-page .team {
    display: none;
  }
  #team-page {
    padding-top: 0;
    background-image: unset;
    background: black;
  }

  #team-page::before {
    display: none;
  }

  #team-page .intro {
    row-gap: 6.25vw;
    padding: 15.63vw 6.25vw 9.38vw;
    background: linear-gradient(0deg, #000000 0%, #651114 100%);
  }

  #team-page .intro__head {
    font-size: 3.94vw;
    text-transform: none;
    line-height: 150%;
    width: 71.88vw;
  }
  #team-page .intro__head span {
    font-size: 9.69vw;
    color: white;
    line-height: 150%;
    margin-bottom: -3.13vw;
  }
  #team-page .intro__body {
    row-gap: 2.97vw;
    padding-left: 6.25vw;
  }
  #team-page .intro__body p {
    font-size: 2.97vw;
  }
  #team-page .philosophy {
    row-gap: 4.69vw;
    padding: 3.13vw 7.81vw 10.94vw;
  }
  #team-page .philosophy__head {
    font-size: 9.69vw;
    padding-left: 0;
  }
  #team-page .philosophy__head:before {
    width: 1.72vw;
    height: 1.72vw;
    top: -1.25vw;
    right: 37.5vw;
  }
  #team-page .philosophy__head span {
    font-size: 3.94vw;
    margin-left: 0;
    line-height: 105%;
  }
  #team-page .philosophy__body {
    padding-left: 0;
    padding-bottom: 0;
    font-size: 2.97vw;
    width: 79.69vw;
  }
  #team-page .philosophy__body:before {
    display: none;
  }

  #team-page .philosophy__body br {
    display: none;
  }

  #team-page .team {
    padding: 0 4.69vw;
  }
  #team-page .team .title {
    font-size: 7.41vw;
    text-shadow: 0 0.37vw 4.56vw rgba(0, 0, 0, 0.8);
    top: 30vw;
    left: 4.69vw;
    line-height: 112%;
  }
  #team-page .team .title::before {
    position: absolute;
    content: "";
    width: 88.75vw;
    height: 35.63vw;
    top: -3.13vw;
    left: -12.5vw;
    background-image: url(../img/team/title-bg.png);
    background-repeat: no-repeat;
    background-size: 90% 90%;
    z-index: -1;
  }
  #team-page .team .grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25vw;
  }
  #team-page .team .team-quote {
    font-size: 2.94vw;
  }
  #team-page .team .team-approach {
    font-size: 2.5vw;
    white-space: normal;
    margin-right: -0.94vw;
  }
  #team-page .team .team-approach br {
    display: none;
  }
  #team-page .team .team-department {
    font-size: 4.06vw;
    text-shadow: 0 0.37vw 4.56vw rgba(0, 0, 0, 0.8);
  }
  #team-page .item {
    width: 29.38vw;
    row-gap: 1.25vw;
  }
  #team-page .item .team-member__image-description {
    padding: 2.19vw 1.56vw;
    row-gap: 3.75vw;
  }
  #team-page .item .team-member__image {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
  #team-page .item .team-member__image-description.center {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 3.75vw;
    padding-bottom: 9.38vw;
    justify-content: flex-start;
  }
  #team-page .team-member__image-description.padding {
    padding-top: 5.21vw;
  }
  #team-page .team-member__image-description.padding-bigger {
    padding-top: 9.38vw;
  }
  #team-page .team-member__image-description.padding-smaller {
    padding-top: 12.5vw;
  }
  #team-page .item .team-member__info {
    row-gap: 1.56vw;
  }
  #team-page .item .team-member__info.margin-bottom {
    margin-bottom: 0;
  }
  #team-page .item .team-member__name {
    font-size: 2.5vw;
    line-height: 2.81vw;
    flex-direction: column-reverse;
  }
  #team-page .item .team-member__name.smaller {
    font-size: 0.94vw;
  }
  #team-page .item .team-member__name span {
    font-size: 3.13vw;
    line-height: 100%;
  }
  #team-page .item .team-member__name.smaller span {
    font-size: 1.56vw;
  }
  #team-page .item .team-member__job-title {
    font-size: 2.03vw;
    line-height: 100%;
    font-style: italic;
    opacity: 0.5;
    white-space: nowrap;
  }
  #team-page .team .item-1 {
    grid-column: 1 / span 1;
    grid-row: 1 / span 5;
    flex-direction: column;
    padding-top: 3.13vw;
    text-align: center;
  }
  #team-page .team .item-1 .team-member:nth-child(1) {
    margin-bottom: 9.38vw;
  }
  #team-page .team .item-2 {
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;
    flex-direction: column;
    padding-top: 0;
  }
  #team-page .team .item-2 .team-quote {
    font-size: 2.94vw;
  }

  #team-page .team .item-3 {
    grid-column: 3 / span 1;
    grid-row: 1 / span 1;
    display: flex;
    flex-direction: column;
    width: 29.38vw;
    row-gap: 3.13vw;
  }
  #team-page .team .item-3__title {
    font-size: 4.06vw;
    margin-top: 4.69vw;
  }
  #team-page .team .item-3 .team-member {
    padding-top: 0;
  }
  #team-page .team .item-3 .team-member + .team-member {
    grid-column: 1 / span 1;
    grid-row: 2 / span 2;
    padding-top: 0;
  }
  #team-page .team .item-3 .team-quote {
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
    white-space: nowrap;
    position: relative;
    bottom: 0.52vw;
    font-size: 2.28vw;
  }
  #team-page .team .item-4 {
    grid-column: 1 / span 3;
    grid-row: 2 / span 1;
    flex-direction: row;
    column-gap: 1.25vw;
    align-items: center;
    margin-top: -2.5vw;
  }
  #team-page .team .item-4 .team-department {
    font-size: 4.06vw;
    position: absolute;
    bottom: -7.81vw;
  }
  #team-page .team .item-4 .team-department::before {
    position: absolute;
    content: "";
    width: 88.75vw;
    height: 48.13vw;
    top: -14.06vw;
    left: -12.5vw;
    background-image: url(../img/team/title-bg.png);
    background-repeat: no-repeat;
    background-size: 90% 90%;
    z-index: -1;
    opacity: 0.8;
  }
  #team-page .team .item-4 .team-member__image:first-child {
    width: 59.38vw;
  }
  #team-page .team .item-4 .team-member:nth-child(2) .team-member__image {
    width: 29.38vw;
  }
  #team-page .team .item-5 {
    grid-column: 1 / span 3;
    column-gap: 1.25vw;
    margin-top: 0;
  }
  #team-page .team .item-5 .team-member:nth-child(1) {
    margin-top: 1.25vw;
  }
  #team-page .team .item-5 .team-member:nth-child(2) .team-member__image {
    width: 45.94vw;
  }
  #team-page .team .item-5 .team-approach {
    font-size: 1.38vw;
  }
  #team-page .team .item-6 {
    grid-column: 1 / span 3;
    grid-row: 4 / span 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 1fr auto;
    margin-top: 0;
    width: 100%;
    column-gap: 1.25vw;
  }

  #team-page .team .item-6 .team-member__image {
    width: 29.38vw;
  }

  #team-page .team .item-6 .team-member__image img {
    width: 100%;
  }

  #team-page .team .item-6 .team-member:nth-child(1) {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
  }

  #team-page .team .item-6 .team-member:nth-of-type(5) {
    grid-column: 2 / span 1;
    grid-row: 2 / span 2;
  }
  #team-page .team .item-6 .team-member:nth-of-type(3) {
    grid-column: 3 / span 1;
    grid-row: 1 / span 2;
  }
  #team-page .team .item-6 .team-quote {
    padding: 3.13vw 1.25vw 5vw 0;
    text-align: right;
  }
  #team-page .team .item-6 .team-approach {
    margin-top: -3.13vw;
  }
  #team-page .team .item-6 .team-approach br {
    display: none;
  }
  #team-page .team .item-6 .team-department {
    margin-left: -3.13vw;
    position: relative;
    top: -4.06vw;
  }
  #team-page .team .item-6 .team-department::before {
    position: absolute;
    content: "";
    width: 88.75vw;
    height: 48.13vw;
    top: -14.06vw;
    left: -12.5vw;
    background-image: url(../img/team/title-bg.png);
    background-repeat: no-repeat;
    background-size: 90% 90%;
    z-index: -1;
    opacity: 0.8;
  }
  #team-page .team .item-7 {
    width: 100%;
    grid-column: 1 / span 3;
    grid-row: 5 / span 1;
    display: flex;
    flex-direction: row;
    column-gap: 1.25vw;
    margin-top: -2.5vw;
  }
  #team-page .team .item-7 .team-member:first-child {
    width: unset;
    min-width: unset;
  }
  #team-page .team .item-7 .team-member:last-child {
    margin-top: 2.86vw;
  }
  #team-page .team .item-7 .team-member:nth-child(1) .team-member__image {
    width: 29.38vw;
  }
  #team-page .team .item-8 {
    grid-column: 1 / span 3;
    grid-row: 6 / span 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    column-gap: 1.25vw;
    margin-top: -4.69vw;
  }
  #team-page .team .item-8 .team-member:first-child {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
    width: 29.69vw;
    margin-top: 0;
  }
  #team-page .team .item-8 .team-member:last-child {
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;
    width: 59.38vw;
    margin-top: 10.94vw;
  }
  #team-page .team .item-8 .team-quote {
    font-size: 2.94vw;
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    padding: 0;
    text-align: center;
    margin-top: 5.63vw;
    white-space: nowrap;
    align-items: center;
  }
  #team-page .team .item-9 {
    grid-column: 1 / span 3;
    grid-row: 7 / span 1;
    display: flex;
    flex-direction: column;
    gap: 1.25vw;
    margin-top: 0;
  }
  #team-page .team .item-9 .team-member:nth-of-type(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
  }
  #team-page .team .item-9 .row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    column-gap: 1.87vw;
    margin: 1.25vw 0;
  }

  #team-page .team .item-9 .bottom-row {
    flex-direction: row-reverse;
  }

  #team-page .team .item-9 .row .team-quote {
    font-size: 2.94vw;
    text-align: left;
    white-space: nowrap;
  }

   #team-page .team .item-9 .bottom-row .team-quote{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 0;
        row-gap: 17.5vw;
   }

  #team-page .team .item-9 .top-row .team-quote p {
    margin-right: 12vw;
  }

  #team-page .team .item-9 .row .team-quote p {
    font-size: 2.5vw;
  }
  #team-page .team .item-9 .team-member {
    grid-column: 1 / span 2;
    grid-row: 4 / span 1;
  }
  #team-page .team .item-9 .team-member:last-of-type {
    width: 100%;
  }
  #team-page .team .item-9 .team-department {
    white-space: nowrap;
    font-size: 4.06vw;
    text-align: right;
    padding: 1.25vw 0 0.94vw;
  }
  #team-page .team .item-9 > .team-department:nth-child(1) {
    position: relative;
    text-align: left;
    margin-bottom: -4.69vw;
  }
  #team-page .team .item-9 > .team-department:nth-child(1)::before {
    position: absolute;
    content: "";
    width: 88.75vw;
    height: 48.13vw;
    top: -14.06vw;
    left: -31.25vw;
    background-image: url(../img/team/title-bg.png);
    background-repeat: no-repeat;
    background-size: 90% 90%;
    z-index: -1;
    opacity: 0.8;
  }
  #team-page .team .item-9 .team-approach {
    margin-top: 0;
    grid-column: 1 / span 2;
    grid-row: 3 / span 1;
    white-space: nowrap;
    padding: 1.88vw 0;
  }
  #team-page .team .item-9 .team-approach br {
    display: block;
  }
  #team-page .team .item-9 .team-quote {
    grid-column: 1 / span 1;
    grid-row: 5 / span 1;
    text-align: right;
    font-size: 1.64vw;
  }
  #team-page .vacancies {
    padding: 10.94vw 7.81vw;
    text-align: center;
    background: linear-gradient(180deg, #000000 0%, #2e080a 100%);
  }
  #team-page .vacancies__title {
    font-size: 4.06vw;
    padding: 0 10.94vw;
    border: 0.14vw solid rgba(101, 17, 20, 1);
    box-shadow: 0 0.86vw 0.86vw 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(34.3658332824707px);
    height: 9.38vw;
    border-radius: 11.72vw;
    margin: 0 auto 7.81vw;
    background: rgba(217, 217, 217, 0.05);
  }
  #team-page .vacancies__title::before {
    width: 2.5vw;
    height: 2.5vw;
    top: 1.56vw;
    right: 4.69vw;
  }
  #team-page .vacancies__description b {
    font-size: 3.28vw;
    margin-bottom: 6.25vw;
  }
  #team-page .vacancies__description p {
    font-size: 2.97vw;
    margin-bottom: 6.25vw;
  }
  #team-page .vacancies button {
    height: 8.44vw;
    box-shadow: 0 0.76vw 0.76vw 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(30.486709594726562px);
    padding: 0 7.81vw 0 6.25vw;
    background: rgba(101, 17, 20, 1);
    font-size: 3.03vw;
    border-radius: 10.31vw;
    border: 0.05vw solid #651114;
  }
  #team-page .vacancies button::before {
    width: 2.5vw;
    height: 2.5vw;
    top: 1.56vw;
    right: 4.69vw;
  }
}
#services {
  padding-top: 7.6vw;
  background-image: url(../img/services/bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.86vw;
}
#services .top-row {
  padding-left: 3.65vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.6vw;
  width: 100%;
}
#services .top-row__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 2.86vw;
  justify-content: flex-start;
  width: 100%;
}
#services .top-row__head-title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.13vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  border: 0.07vw solid rgba(101, 17, 20, 1);
  background: rgba(217, 217, 217, 0.05);
  border-radius: 5.99vw;
  padding: 1.56vw 6.3vw 1.04vw 4.9vw;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 0.44vw 0.44vw 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5.49vw);
}
#services .top-row__head-title:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.51vw;
  height: 1.51vw;
  top: 0.78vw;
  right: 3vw;
}
#services .top-row__head-subtitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.44vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  position: relative;
}
#services .top-row__head-subtitle span {
  position: absolute;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.98vw;
  line-height: 108%;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  bottom: 0.42vw;
  right: 0;
}
#services .top-row__body {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  position: relative;
}
#services .top-row__body .main-arrow {
  position: absolute;
  width: 2.45vw;
  height: 2.45vw;
  transform: translateX(-50%);
  right: 50%;
  top: 6.5vw;
}
#services .bottom-row {
  width: 100%;
  padding: 0 4.68vw;
  margin-bottom: 11.84vw;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: justify;
  justify-content: space-between;
  column-gap: 1.04vw;
}
#services .bottom-row > a {
  position: relative;
  display: block;
  width: 21.9vw;
  height: 12.13vw;
  border-radius: 0.66vw;
  overflow: hidden;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 0.67vw;
  line-height: 0.89vw;
  letter-spacing: -0.02em;
}
#services .bottom-row > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#services .bottom-row > a > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: #00000085;
  backdrop-filter: blur(0.13vw);
  height: 1.6vw;
  padding: 0.36vw;
  text-align: center;
  transition: all 0.5s;
}
#services .bottom-row > a:hover > span {
  height: 100%;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.88vw;
  line-height: normal;
}

@media (max-width: 575.5px) {
  #services {
    padding-top: 20.31vw;
    background-image: unset;
    background: #000000;
    row-gap: 15.63vw;
  }
  #services .top-row {
    padding: 0;
    row-gap: 7.81vw;
  }
  #services .top-row__head {
    flex-direction: column-reverse;
    row-gap: 9.38vw;
    justify-content: center;
  }
  #services .top-row__head-title {
    font-size: 4.06vw;
    border: 0.14vw solid #651114;
    background: #651114;
    border-radius: 12.5vw;
    padding: 2.66vw 15.63vw 2.34vw;
    box-shadow: 0px 0.86vw 0.86vw 0 #00000040;
    backdrop-filter: blur(10.74vw);
    line-height: normal;
  }
  #services .top-row__head-title:before {
    width: 2.5vw;
    height: 2.5vw;
    top: 1.56vw;
    right: 9.38vw;
  }
  #services .top-row__head-subtitle {
    font-size: 5.31vw;
  }
  #services .top-row__head-subtitle span {
    font-size: 2.19vw;
    font-weight: 700;
    bottom: 1.25vw;
    right: -0.63vw;
  }
  #services .top-row__body {
    font-size: 2.97vw;
    font-weight: 700;
    padding: 0 6.25vw;
    display: flex;
    flex-direction: column;
    row-gap: 4.69vw;
  }
  #services .top-row__body br {
    display: none;
  }
  #services .bottom-row {
    padding: 0 9.38vw 12.5vw;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    row-gap: 10.94vw;
  }
  #services .bottom-row > a {
    width: 81.25vw;
    height: 45.31vw;
    border-radius: 0;
    font-size: 2.81vw;
  }

  #services .bottom-row > a:last-child {
    height: unset;
  }

  #services .bottom-row > a > span {
    background: #00000085;
    backdrop-filter: blur(0.85vw);
    height: 7.81vw;
    padding: 3.13vw 0 1.56vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #services .bottom-row > a:hover > span {
    font-size: 2.81vw;
    padding: 0;
  }
}
#events {
  padding-top: 8.33vw;
  background-image: url(../img/services/bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.6vw;
}
#events .top-row {
  width: 100%;
}
#events .top-row__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.46vw;
  justify-content: flex-start;
  width: 100%;
}
#events .top-row__head-title {
  margin-left: 3.8vw;
  width: 60.73%;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.09vw;
  line-height: 2.19vw;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  border: 0.05vw solid #651114;
  background: rgba(217, 217, 217, 0.05);
  border-radius: 5.88vw;
  padding: 1.32vw 7.6vw 1.24vw 5.3vw;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 0.44vw 0.44vw 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5.49vw);
}
#events .top-row__head-title:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.51vw;
  height: 1.51vw;
  top: 0.78vw;
  right: 5.77vw;
}
#events .top-row__head-subtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.1vw;
  line-height: 1.2vw;
  margin-bottom: 0.73vw;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  position: relative;
}
#events .top-row__head-subtitle span {
  position: absolute;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.98vw;
  line-height: 108%;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  bottom: 0.42vw;
  right: 0;
}
#events .top-row__body {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
}
#events .top-row__body .main-arrow {
  margin-top: 2.14vw;
  width: 2.48vw;
  height: 2.48vw;
  transform: translateX(-50%);
  margin-left: 2.48vw;
}
#events .top-row__body .main-arrow:first-of-type {
  display: block;
}
#events .top-row__body .main-arrow:last-of-type {
  display: none;
}
#events .bottom-row {
  width: 100%;
}
#events .events-row {
  display: -ms-flex;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: Gotham Pro;
  font-weight: 300;
  font-size: 1.06vw;
  line-height: 1.15vw;
}
#events .events-row + .events-row {
  margin-top: 3.18vw;
}
#events .events-row .events-text:first-child {
  padding-left: 6.56vw;
}
#events .events-row .events-text:last-child {
  padding-right: 6.56vw;
  text-align: right;
}
#events .events-row .event-title {
  position: relative;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.1vw;
  line-height: 1.2vw;
}
#events .events-row .event-title:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../img/services/events-arrow.png") center center no-repeat;
  background-size: contain;
  width: 1.56vw;
  height: 1.56vw;
}
#events .events-row .events-text:first-child .event-title {
  padding-left: 4.79vw;
  margin-bottom: 1.77vw;
}
#events .events-row .events-text:first-child .event-title:before {
  left: 1.98vw;
}
#events .events-row .events-text:last-child .event-title {
  padding-right: 2.45vw;
  margin-bottom: 1.3vw;
}
#events .events-row .events-text:last-child .event-title:before {
  right: 0;
  transform: rotate(180deg);
}
#events .events-row .block-title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.08vw;
  line-height: 2.24vw;
  text-transform: uppercase;
  margin-bottom: 1.46vw;
}
#events .events-row .events-image img {
  width: 44.27vw;
}
#events .events-row:not(:first-child) .events-image img {
  margin-top: -0.42vw;
}
#events .events-row:nth-child(3) .events-image img {
  margin-right: 1.72vw;
}
#events .event-center-row {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-top: 3.75vw;
  margin-bottom: 2.6vw;
}
#events .event-center-row .event-title {
  margin-bottom: 1.09vw;
}
#events .event-center-row .event-title:before {
  right: -2.93vw;
}
#events .events-join {
  position: relative;
  background: url("../img/services/events-join-back.png") center center
    no-repeat;
  background-size: 100% 100%;
  padding: 5vw 10.52vw 5.73vw 9.74vw;
  font-family: Gotham Pro;
  font-weight: 300;
  font-size: 1.06vw;
  line-height: 1.15vw;
  margin-bottom: 3.02vw;
}
#events .events-join .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.17vw;
  line-height: 2.34vw;
  text-transform: uppercase;
  margin-bottom: 0.52vw;
}
#events .events-join .description {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 0.87vw;
  line-height: 0.94vw;
  margin-top: 1.77vw;
}
#events .events-join button {
  position: absolute;
  top: 0;
  right: 10.52vw;
  bottom: 0.15vw;
  height: 3.34vw;
  margin: auto;
  display: inline-block;
  padding: 0.93vw 3.49vw 0.8vw 1.82vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.21vw;
  line-height: 1.61vw;
  background: #651114;
  border-radius: 4.15vw;
  box-shadow: 0 0.3vw 0.3vw 0 #00000040;
}
#events .events-join button:after {
  content: "";
  position: absolute;
  top: 0.5vw;
  right: 1.2vw;
  background: url("../img/services/events-arrow.png") center center no-repeat;
  background-size: contain;
  width: 1.04vw;
  height: 1.04vw;
}
#events #contactModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 100;
}
#events #contactModal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.5;
  background: black;
}
#events .events-row .events-image img:first-of-type {
  display: block;
}

#events .events-row .events-image img:last-of-type {
  display: none;
}
@media (max-width: 575.5px) {
  #events {
    padding-top: 0;
    background-image: unset;
    background: black;
    row-gap: 7.81vw;
  }
  #events .top-row__head {
    align-items: center;
    row-gap: 6.25vw;
    padding: 21.88vw 7.81vw 0 7.81vw;
    background: linear-gradient(0deg, #000000 0%, #651114 100%);
  }
  #events .top-row__head-title {
    margin-left: 0;
    width: unset;
    font-size: 5.19vw;
    line-height: normal;
    border: none;
    background: none;
    border-radius: 0;
    padding: 0;
    white-space: normal;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
  }
  #events .top-row__head-title:before {
    display: none;
  }
  #events .top-row__head-subtitle {
    font-size: 2.81vw;
    line-height: 108%;
    margin-bottom: 12.5vw;
  }
  #events .top-row__body {
    font-size: 2.97vw;
    padding: 0 9.38vw;
  }
  #events .top-row__body br {
    display: none;
  }
  #events .top-row__body .main-arrow {
    margin-top: 9.38vw;
    width: 6.88vw;
    height: 6.88vw;
    margin-left: 6.88vw;
  }
  #events .top-row__body .main-arrow:first-of-type {
    display: none;
  }
  #events .top-row__body .main-arrow:last-of-type {
    display: block;
  }
  #events .events-row {
    flex-direction: column;
    font-size: 2.97vw;
    line-height: 108%;
    row-gap: 9.38vw;
  }
  #events .events-row div:last-child br {
    display: none;
  }
  #events .events-row + .events-row {
    margin-top: 12.5vw;
    flex-direction: column-reverse;
  }
  #events .events-row + .events-row + .events-row {
    flex-direction: column;
  }
  #events .events-row .events-text:first-child {
    padding-left: 7.81vw;
    padding-right: 6.25vw;
  }
  #events .events-row .events-text:last-child {
    padding-right: 7.81vw;
    padding-left: 6.25vw;
  }
  #events .events-row .event-title {
    font-size: 2.97vw;
    line-height: 108%;
    color: rgba(193, 193, 193, 1);
  }
  #events .events-row .event-title:before {
    width: 2.81vw;
    height: 2.81vw;
  }
  #events .events-row .events-text:first-child .event-title {
    padding-left: 7.81vw;
    margin-bottom: 4.69vw;
  }
  #events .events-row .events-text:first-child .event-title:before {
    left: 1.88vw;
    top: 0;
    bottom: unset;
  }
  #events .events-row .events-text:last-child .event-title {
    padding-right: 4.69vw;
    margin-bottom: 4.69vw;
  }
  #events .events-row .block-title {
    font-size: 3.59vw;
    line-height: 110%;
    margin-bottom: 3.13vw;
  }
  #events .events-row .events-image img {
    width: 100%;
  }

  #events .events-row .events-image img:first-of-type {
    display: none;
  }

  #events .events-row .events-image img:last-of-type {
    display: block;
  }
  #events .events-row:not(:first-child) .events-image img {
    margin-top: 0;
  }
  #events .events-row:nth-child(3) .events-image img {
    margin-right: 0;
  }
  #events .event-center-row {
    display: none;
  }
  #events .events-join {
    padding: 12.5vw 0;
    font-size: 2.97vw;
    line-height: 108%;
    margin-bottom: 0;
    background: linear-gradient(180deg, #000000 0%, #2f090b 100%);
    text-align: center;
  }
  #events .events-join .title {
    font-size: 3.13vw;
    width: 100%;
    text-align: center;
    line-height: 108%;
    margin-bottom: 9.38vw;
    padding: 2.81vw 0 1.56vw;
    background: linear-gradient(90deg, #651114 0%, #000000 100%);
  }
  #events .events-join .description {
    text-align: center;
    max-width: 70.31vw;
    font-size: 2.97vw;
    line-height: 108%;
    margin: auto;
    margin-top: 6.25vw;
  }
  #events .events-join button {
    position: relative;
    top: unset;
    right: unset;
    bottom: unset;
    height: 8.44vw;
    padding: 2.5vw 5.63vw 1.88vw 4.06vw;
    font-size: 3.03vw;
    line-height: 100%;
    border-radius: 10.94vw;
    box-shadow: 0 0.76vw 0.76vw 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(9.53vw);
    margin-top: 9.38vw;
  }
  #events .events-join button:after {
    top: 1.56vw;
    right: 2.5vw;
    width: 2.19vw;
    height: 2.19vw;
  }
  #events #contactModal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    z-index: 100;
  }
  #events #contactModal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.5;
    background: black;
  }
}
#smetnoedelo {
  padding-top: 8.33vw;
  background-image: url(../img/services/bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.99vw;
}
#smetnoedelo .top-row {
  width: 100%;
}
#smetnoedelo .top-row__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.46vw;
  justify-content: flex-start;
  width: 100%;
}
#smetnoedelo .top-row__head-title {
  margin-left: 3.8vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.09vw;
  line-height: 2.19vw;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  border: 0.05vw solid #651114;
  background: rgba(217, 217, 217, 0.05);
  border-radius: 5.88vw;
  padding: 1.32vw 5.73vw 1.24vw 5.73vw;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 0.44vw 0.44vw 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5.49vw);
}
#smetnoedelo .top-row__head-title:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.53vw;
  height: 1.53vw;
  top: 0.71vw;
  right: 3.42vw;
}
#smetnoedelo .top-row__head-subtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.1vw;
  line-height: 1.2vw;
  margin-bottom: 0.73vw;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  position: relative;
}
#smetnoedelo .top-row__head-subtitle span {
  position: absolute;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.98vw;
  line-height: 108%;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  bottom: 0.42vw;
  right: 0;
}
#smetnoedelo .top-row__body {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
}
#smetnoedelo .top-row__body .main-arrow {
  margin-top: 0.83vw;
  width: 2.45vw;
  height: 2.45vw;
  margin-left: 2.45vw;
  transform: translateX(-50%);
}
#smetnoedelo .bottom-row {
  width: 100%;
}
#smetnoedelo .bottom-row .smetnoedelo-line {
  display: flex;
  width: 100%;
}
#smetnoedelo .smetnoedelo-block {
  position: relative;
  background: url("../img/services/smetnoedelo-back.png") center center
    no-repeat;
  background-size: cover;
  padding: 3.96vw 3.59vw 2.45vw 3.44vw;
}
#smetnoedelo .smetnoedelo-block:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #253138bf;
  pointer-events: none;
}
#smetnoedelo .smetnoedelo-block > * {
  position: relative;
}
#smetnoedelo .smetnoedelo-title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.08vw;
  line-height: 2.24vw;
  text-transform: uppercase;
  text-align: center;
}
#smetnoedelo .smetnoedelo-block > .smetnoedelo-title:first-child {
  padding-left: 7.5vw;
  margin-bottom: 3.13vw;
  text-align: left;
}
#smetnoedelo .smetnoedelo-block > .smetnoedelo-title:first-child:before {
  content: "";
  position: absolute;
  top: 0.16vw;
  left: 5.1vw;
  background: url("../img/services/smetnoedelo-arrow.png") center center
    no-repeat;
  background-size: contain;
  width: 1.56vw;
  height: 1.56vw;
}
#smetnoedelo .smetnoedelo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3.49vw 6.4vw;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.93vw;
  line-height: 0.99vw;
  margin-bottom: 3.49vw;
}
#smetnoedelo .smetnoedelo-grid > * {
  background: center center no-repeat;
  background-size: 100% 100%;
  padding: 1.74vw 0.91vw 1.84vw 3.65vw;
}
#smetnoedelo .smetnoedelo-grid > *:first-child {
  background-image: url("../img/services/smetnoedelo-block-1.png");
}
#smetnoedelo .smetnoedelo-grid > *:nth-child(2) {
  background-image: url("../img/services/smetnoedelo-block-2.png");
}
#smetnoedelo .smetnoedelo-grid > *:nth-child(3) {
  background-image: url("../img/services/smetnoedelo-block-3.png");
}
#smetnoedelo .smetnoedelo-grid > *:nth-child(4) {
  background-image: url("../img/services/smetnoedelo-block-4.png");
}
#smetnoedelo .smetnoedelo-grid > *:nth-child(5) {
  background-image: url("../img/services/smetnoedelo-block-5.png");
  grid-column: span 2;
}
#smetnoedelo .smetnoedelo-grid .title {
  margin-left: -1.16vw;
  margin-bottom: 0.33vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.04vw;
  line-height: 1.15vw;
}
#smetnoedelo .smetnoedelo-bottom {
  position: relative;
  background: url("../img/services/smetnoedelo-bottom.png") center center
    no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.93vw 5.68vw;
  padding: 1.98vw 8.96vw 1.98vw 20.89vw;
  font-family: Gotham Pro;
  font-weight: 300;
  font-size: 1.22vw;
  line-height: 1.3vw;
  white-space: nowrap;
}
#smetnoedelo .smetnoedelo-bottom .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.27vw;
  line-height: 1.35vw;
}
#smetnoedelo .smetnoedelo-bottom > img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15.78vw;
}
#smetnoedelo .smetnoedelo-contacts {
  padding: 0 8.9vw 1.29vw 9.64vw;
  font-family: Gotham Pro;
  font-weight: 300;
  font-size: 1.06vw;
  line-height: 1.17vw;
  text-align: center;
  background: black;
  position: relative;
}
#smetnoedelo .smetnoedelo-contacts-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.86vw;
  text-align: left;
  padding-top: 4.16vw;
  background: black;
}
#smetnoedelo .smetnoedelo-contacts .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.17vw;
  line-height: 2.34vw;
  margin-bottom: 0.52vw;
  text-transform: uppercase;
}
#smetnoedelo .smetnoedelo-contacts b {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
}
#smetnoedelo .smetnoedelo-contacts .description {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 0.87vw;
  line-height: 0.94vw;
  margin-top: 1.72vw;
}
#smetnoedelo .smetnoedelo-contacts-top .right-title {
  text-align: right;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.04vw;
  line-height: 1.35vw;
  text-transform: uppercase;
  color: #727272;
  margin-bottom: 0.47vw;
}
#smetnoedelo .smetnoedelo-contacts-top .contact-line {
  display: flex;
  align-items: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.34vw;
  line-height: 1.41vw;
}
#smetnoedelo .smetnoedelo-contacts-top .contact-line:not(:last-child) {
  margin-bottom: 0.91vw;
}
#smetnoedelo .smetnoedelo-contacts-top .contact-line img {
  width: 1.72vw;
  margin-right: 0.57vw;
}
#smetnoedelo .social-links {
  position: absolute;
  bottom: 1.29vw;
  left: 9.64vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.78vw;
}
#smetnoedelo .social-links img {
  width: 1.82vw;
  height: 1.82vw;
}
#smetnoedelo .smetnoedelo-reload {
  background: black;
  padding: 3.65vw;
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 2.6vw;
}
#smetnoedelo .smetnoedelo-reload .title {
  position: relative;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.09vw;
  line-height: normal;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  padding: 0 6.25vw 0 5.21vw;
  border: 0.07vw solid #651114;
  background: #d9d9d90d;
  border-radius: 5.73vw;
  height: 4.69vw;
  width: fit-content;
  display: flex;
  align-items: center;
}
#smetnoedelo .smetnoedelo-reload .title::before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.46vw;
  height: 1.46vw;
  top: 0.78vw;
  right: 3.65vw;
}
#smetnoedelo .smetnoedelo-reload .mission {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: white;
}
#smetnoedelo .smetnoedelo-reload .mission b {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-transform: uppercase;
}
#smetnoedelo .smetnoedelo-block--reload .smetnoedelo-grid {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4.17vw;
}
#smetnoedelo .smetnoedelo-block--reload .smetnoedelo-grid > *:first-child {
  background-image: url(../img/services/smetnoedelo-reload-block-1.png);
}
#smetnoedelo .smetnoedelo-block--reload .smetnoedelo-grid > *:nth-child(2) {
  background-image: url(../img/services/smetnoedelo-reload-block-2.png);
}
#smetnoedelo .smetnoedelo-block--reload .smetnoedelo-grid > *:nth-child(3) {
  background-image: url(../img/services/smetnoedelo-reload-block-3.png);
}
#smetnoedelo .smetnoedelo-block--reload .smetnoedelo-grid > *:nth-child(4) {
  background-image: url(../img/services/smetnoedelo-reload-block-4.png);
}
#smetnoedelo .smetnoedelo-block--reload .smetnoedelo-grid > *:nth-child(5) {
  background-image: url(../img/services/smetnoedelo-reload-block-5.png);
  grid-column: unset;
}
#smetnoedelo .smetnoedelo-block--reload .smetnoedelo-grid > *:nth-child(6) {
  background-image: url(../img/services/smetnoedelo-reload-block-6.png);
}
#smetnoedelo .smetnoedelo-block--reload .smetnoedelo-grid > *:nth-child(7) {
  background-image: url(../img/services/smetnoedelo-reload-block-7.png);
  grid-column: span 2;
  margin: 0 14.58vw;
}
#smetnoedelo .smetnoedelo-link,
#locus .locus-link {
  position: relative;
  display: inline-block;
  padding: 0.93vw 2.55vw 0.79vw 2.6vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.21vw;
  line-height: 1.61vw;
  background: #651114;
  border-radius: 4.15vw;
  box-shadow: 0 0.3vw 0.3vw 0 #00000040;
}
#smetnoedelo .smetnoedelo-link:after,
#locus .locus-link:after {
  content: "";
  position: absolute;
  top: 0.5vw;
  right: 1.16vw;
  background: url("../img/services/events-arrow.png") center center no-repeat;
  background-size: contain;
  width: 1.04vw;
  height: 1.04vw;
}
#smetnoedelo .top-row__body .main-arrow:first-of-type {
  display: block;
}
#smetnoedelo .top-row__body .main-arrow:last-of-type {
  display: none;
}
#smetnoedelo .smetnoedelo-line img:first-of-type {
  display: block;
}
#smetnoedelo .smetnoedelo-line img:last-of-type {
  display: none;
}
@media (max-width: 575.5px) {
  #smetnoedelo {
    padding-top: 0;
    background-image: unset;
    background: black;
    row-gap: 7.81vw;
  }
  #smetnoedelo .top-row__head {
    align-items: center;
    row-gap: 6.25vw;
    padding: 21.88vw 7.81vw 0 7.81vw;
    background: linear-gradient(0deg, #000000 0%, #651114 100%);
  }
  #smetnoedelo .top-row__head-title {
    margin-left: 0;
    width: unset;
    font-size: 5.19vw;
    line-height: normal;
    border: none;
    background: none;
    border-radius: 0;
    padding: 0;
    white-space: normal;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
  }
  #smetnoedelo .top-row__head-title:before {
    display: none;
  }
  #smetnoedelo .top-row__head-subtitle {
    font-size: 2.81vw;
    line-height: 108%;
    margin-bottom: 12.5vw;
  }
  #smetnoedelo .top-row__body {
    font-size: 2.97vw;
    padding: 0 9.38vw;
  }
  #smetnoedelo .top-row__body br {
    display: none;
  }
  #smetnoedelo .top-row__body .main-arrow {
    margin-top: 9.38vw;
    width: 6.88vw;
    height: 6.88vw;
    margin-left: 6.88vw;
  }
  #smetnoedelo .top-row__body .main-arrow:first-of-type {
    display: none;
  }
  #smetnoedelo .top-row__body .main-arrow:last-of-type {
    display: block;
  }
  #smetnoedelo .smetnoedelo-line img:first-of-type {
    display: none;
  }
  #smetnoedelo .smetnoedelo-line img:last-of-type {
    display: block;
  }
  #smetnoedelo .smetnoedelo-block {
    position: relative;
    background: url("../img/services/smetnoedelo-back-mobile.png") center center
      no-repeat;
    background-size: cover;
    padding: 9.38vw;
  }
  #smetnoedelo .smetnoedelo-block:before {
    background: transparent;
  }
  #smetnoedelo .smetnoedelo-title {
    font-size: 4.06vw;
    line-height: 108%;
  }
  #smetnoedelo .smetnoedelo-block > .smetnoedelo-title:first-child {
    padding-left: 10.94vw;
    margin-bottom: 9.38vw;
    text-align: left;
  }
  #smetnoedelo .smetnoedelo-block > .smetnoedelo-title:first-child:before {
    top: 0.31vw;
    left: 6.25vw;
    width: 2.66vw;
    height: 2.66vw;
  }
  #smetnoedelo .smetnoedelo-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4.69vw;
    font-size: 2.97vw;
    line-height: 108%;
    margin-bottom: 9.38vw;
  }
  #smetnoedelo .smetnoedelo-grid:nth-child(2) > div:nth-child(1) br,
  #smetnoedelo .smetnoedelo-grid:nth-child(2) > div:nth-child(2) br,
  #smetnoedelo .smetnoedelo-grid:nth-child(2) > div:nth-child(4) br,
  #smetnoedelo .smetnoedelo-grid:nth-child(2) > div:nth-child(5) br,
  #smetnoedelo .smetnoedelo-grid:nth-child(2) > div:nth-child(6) br {
    display: none;
  }
  #smetnoedelo .smetnoedelo-grid > * {
    padding: 6.25vw 3.13vw 6.25vw 7.81vw;
  }
  #smetnoedelo .smetnoedelo-grid > * {
    background-image: url("../img/services/smetnoedelo-block-mobile.png") !important;
    width: 100%;
  }

  #smetnoedelo .smetnoedelo-grid .title {
    margin-left: -3.13vw;
    margin-bottom: 1.56vw;
    font-size: 3.13vw;
    line-height: 108%;
  }
  #smetnoedelo .smetnoedelo-grid > div:last-child br {
    display: none;
  }
  #smetnoedelo .smetnoedelo-bottom {
    background: url("../img/services/smetnoedelo-bottom-mobile.png") center
      center no-repeat;
    background-size: cover;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 4.69vw;
    padding: 6.25vw 6.25vw 6.25vw 39.06vw;
    font-size: 2.97vw;
    line-height: 108%;
    white-space: normal;
  }
  #smetnoedelo .smetnoedelo-bottom .title {
    font-size: 2.97vw;
    line-height: 108%;
    margin-left: -3.13vw;
    margin-bottom: 1.56vw;
  }
  #smetnoedelo .smetnoedelo-bottom > img {
    width: 42.5vw;
    left: -6.25vw;
  }
  #smetnoedelo .smetnoedelo-contacts {
    padding: 10.94vw 0 38vw;
    font-size: 2.97vw;
    line-height: 108%;
    position: relative;
  }
  #smetnoedelo .smetnoedelo-contacts-top {
    flex-direction: column;
    margin-bottom: 9.38vw;
    text-align: center;
    padding-top: 0;
    background: black;
  }
  #smetnoedelo .smetnoedelo-contacts .title {
    font-size: 3.13vw;
    width: 100%;
    text-align: center;
    line-height: 108%;
    margin-bottom: 9.38vw;
    padding: 2.81vw 0 1.56vw;
    background: linear-gradient(90deg, #651114 0%, #000000 100%);
  }
  #smetnoedelo .smetnoedelo-contacts .title + div br {
    display: none;
  }
  #smetnoedelo .smetnoedelo-contacts .title + div {
    margin: 0 3.13vw;
  }
  #smetnoedelo .smetnoedelo-contacts .description {
    font-size: 2.97vw;
    line-height: 108%;
    margin-top: 4.69vw;
    padding: 0 9.38vw;
  }
  #smetnoedelo .smetnoedelo-contacts-top .right-title {
    display: none;
  }
  #smetnoedelo .smetnoedelo-contacts-top > div:last-child {
    position: absolute;
    bottom: 17.38vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    text-align: center;
    width: 100%;
    justify-content: center;
    row-gap: 3.13vw;
    column-gap: 4.69vw;
    padding: 0 14.06vw;
  }

  #smetnoedelo .smetnoedelo-contacts-top .contact-line:last-child {
    grid-column: span 2;
  }
  #smetnoedelo .smetnoedelo-contacts-top .contact-line {
    font-size: 3.13vw;
    line-height: normal;
    margin: auto;
  }
  #smetnoedelo .smetnoedelo-contacts-top .contact-line:not(:last-child) {
    margin-bottom: 0;
  }
  #smetnoedelo .smetnoedelo-contacts-top .contact-line img {
    width: 4.69vw;
    margin-right: 1.56vw;
  }
  #smetnoedelo .social-links {
    bottom: 5.29vw;
    left: 50%;
    transform: translateX(-50%);
    column-gap: 0.78vw;
  }
  #smetnoedelo .social-links img {
    width: 4.69vw;
    height: 4.69vw;
  }
  #smetnoedelo .smetnoedelo-reload {
    padding: 14.06vw;
    row-gap: 6.25vw;
  }
  #smetnoedelo .smetnoedelo-reload .title {
    font-size: 5.19vw;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
    height: fit-content;
    width: fit-content;
  }
  #smetnoedelo .smetnoedelo-reload .title::before {
    display: none;
  }
  #smetnoedelo .smetnoedelo-reload .mission {
    font-size: 2.97vw;
  }
  #smetnoedelo .smetnoedelo-reload .mission b {
    font-size: 2.5vw;
    margin-bottom: 1.56vw;
  }
  #smetnoedelo .smetnoedelo-link,
  #locus .locus-link {
    padding: 2.19vw 6.25vw 2.19vw 4.69vw;
    font-size: 3.03vw;
    line-height: normal;
    border-radius: 10.31vw;
    box-shadow: 0 0.76vw 0.76vw 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(9.53vw);
  }
  #smetnoedelo .smetnoedelo-link:after,
  #locus .locus-link:after {
    top: 1.88vw;
    right: 3.13vw;
    width: 2.19vw;
    height: 2.19vw;
  }
}
#locus {
  padding-top: 8.33vw;
  background-image: url(../img/services/bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.99vw;
}
#locus .top-row {
  width: 100%;
}
#locus .top-row__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.51vw;
  justify-content: flex-start;
  width: 100%;
}
#locus .top-row__head-title {
  margin-left: 3.8vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.09vw;
  line-height: 2.19vw;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  border: 0.05vw solid #651114;
  background: rgba(217, 217, 217, 0.05);
  border-radius: 5.88vw;
  padding: 1.32vw 7.54vw 1.18vw 5.27vw;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 0.44vw 0.44vw 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5.49vw);
}
#locus .top-row__head-title--mobile {
  display: none;
}
#locus .top-row__head-title:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.53vw;
  height: 1.53vw;
  top: 0.71vw;
  right: 3.42vw;
}
#locus .top-row__head-subtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.1vw;
  line-height: 1.2vw;
  margin-bottom: 0.73vw;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  position: relative;
}
#locus .top-row__head-subtitle span {
  position: absolute;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.98vw;
  line-height: 108%;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  bottom: 0.42vw;
  right: 0;
}
#locus .top-row__body {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
}
#locus .top-row__body .main-arrow {
  margin-top: 0.83vw;
  width: 2.45vw;
  height: 2.45vw;
  transform: translateX(-50%);
}
#locus .bottom-row {
  width: 100%;
}
#locus .bottom-row .smetnoedelo-line {
  display: flex;
  width: 100%;
}
#locus .bottom-row .smetnoedelo-line img:nth-child(2) {
  display: none;
}
#locus .smetnoedelo-block {
  position: relative;
  background: url("../img/services/locus-back.png") center center no-repeat;
  background-size: cover;
  padding: 3.85vw 4.79vw 2.97vw 5vw;
}
#locus .smetnoedelo-block:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #14141440;
  pointer-events: none;
}
#locus .smetnoedelo-block > * {
  position: relative;
}
#locus .smetnoedelo-title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.08vw;
  line-height: 2.24vw;
  text-transform: uppercase;
  text-align: center;
}
#locus .smetnoedelo-block > .smetnoedelo-title:first-child {
  padding-left: 5.94vw;
  margin-bottom: 3.13vw;
  text-align: left;
}
#locus .smetnoedelo-block > .smetnoedelo-title:first-child:before {
  content: "";
  position: absolute;
  top: 0.16vw;
  left: 3.54vw;
  background: url("../img/services/locus-arrow.png") center center no-repeat;
  background-size: contain;
  width: 1.56vw;
  height: 1.56vw;
}
#locus .smetnoedelo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.6vw 2.34vw;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.89vw;
  line-height: 0.94vw;
}
#locus .smetnoedelo-grid > * {
  background: center center no-repeat;
  background-size: 100% 100%;
  padding: 1.35vw 1.56vw 1.51vw 4.01vw;
  background-image: url("../img/services/locus-block.png");
}
#locus .smetnoedelo-grid .title {
  margin-left: -0.96vw;
  margin-bottom: 0.26vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.04vw;
  line-height: 1.35vw;
}
#locus .smetnoedelo-bottom {
  position: relative;
  background: linear-gradient(90deg, #89aebf 0%, #915b6f 100%);
  height: 2.6vw;
  margin-bottom: 4.01vw;
}
#locus .smetnoedelo-contacts {
  padding: 0 9.74vw 3.65vw 9.64vw;
  font-family: Gotham Pro;
  font-weight: 300;
  font-size: 1.1vw;
  line-height: 1.2vw;
  text-align: center;
}
#locus .smetnoedelo-contacts-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.99vw;
  text-align: left;
}
#locus .smetnoedelo-contacts .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.17vw;
  line-height: 2.34vw;
  margin-top: 0.36vw;
  margin-bottom: 0.52vw;
  text-transform: uppercase;
}
#locus .smetnoedelo-contacts-top .right-title {
  text-align: right;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.04vw;
  line-height: 1.35vw;
  text-transform: uppercase;
  color: #727272;
  margin-bottom: 0.47vw;
}
#locus .smetnoedelo-contacts-top .contact-line {
  display: flex;
  align-items: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.34vw;
  line-height: 1.41vw;
}
#locus .smetnoedelo-contacts-top .contact-line:not(:last-child) {
  margin-bottom: 0.91vw;
}
#locus .smetnoedelo-contacts-top .contact-line img {
  width: 1.72vw;
  margin-right: 0.57vw;
}
#locus .smetnoedelo-link,
#locus .locus-link {
  position: relative;
  display: inline-block;
  padding: 0.93vw 2.55vw 0.79vw 2.6vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.21vw;
  line-height: 1.61vw;
  background: #651114;
  border-radius: 4.15vw;
  box-shadow: 0 0.3vw 0.3vw 0 #00000040;
}
#locus .smetnoedelo-link:after,
#locus .locus-link:after {
  content: "";
  position: absolute;
  top: 0.5vw;
  right: 1.16vw;
  background: url("../img/services/events-arrow.png") center center no-repeat;
  background-size: contain;
  width: 1.04vw;
  height: 1.04vw;
}
#locus .top-row__body .main-arrow:first-of-type {
  display: block;
}
#locus .top-row__body .main-arrow:last-of-type {
  display: none;
}
@media (max-width: 575.5px) {
  #locus {
    padding-top: 0;
    background-image: unset;
    background: black;
    row-gap: 7.81vw;
  }
  #locus .top-row__head {
    align-items: center;
    row-gap: 6.25vw;
    padding: 21.88vw 7.81vw 0 7.81vw;
    background: linear-gradient(0deg, #000000 0%, #651114 100%);
  }
  #locus .top-row__head-title {
    margin-left: 0;
    width: unset;
    font-size: 5.19vw;
    line-height: normal;
    border: none;
    background: none;
    border-radius: 0;
    padding: 0;
    white-space: normal;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
    display: none;
  }
  #locus .top-row__head-title--mobile {
    display: block;
    white-space: nowrap;
  }
  #locus .top-row__head-title:before {
    display: none;
  }
  #locus .top-row__head-subtitle {
    font-size: 2.81vw;
    line-height: 108%;
    margin-bottom: 12.5vw;
  }
  #locus .top-row__body {
    font-size: 2.97vw;
    padding: 0 6.25vw;
  }
  #locus .top-row__body br {
    display: none;
  }
  #locus .top-row__body .main-arrow:first-of-type {
    display: none;
  }
  #locus .top-row__body .main-arrow:last-of-type {
    display: block;
  }
  #locus .top-row__body .main-arrow {
    margin-top: 9.38vw;
    width: 6.88vw;
    height: 6.88vw;
    margin-left: 6.88vw;
  }
  #locus .bottom-row .smetnoedelo-line img:nth-child(1) {
    display: none;
  }
  #locus .bottom-row .smetnoedelo-line img:nth-child(2) {
    display: block;
  }
  #locus .smetnoedelo-block {
    position: relative;
    background: url("../img/services/locus-back-mobile.png") center center
      no-repeat;
    background-size: cover;
    padding: 9.38vw;
  }
  #locus .smetnoedelo-block:before {
    display: none;
  }
  #locus .smetnoedelo-title {
    font-size: 4.06vw;
    line-height: 108%;
  }
  #locus .smetnoedelo-block > .smetnoedelo-title:first-child {
    padding-left: 10.94vw;
    margin-bottom: 9.38vw;
    text-align: left;
  }
  #locus .smetnoedelo-block > .smetnoedelo-title:first-child:before {
    top: 0.31vw;
    left: 6.25vw;
    width: 2.66vw;
    height: 2.66vw;
  }
  #locus .smetnoedelo-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4.69vw;
    font-size: 2.97vw;
    line-height: 108%;
    margin-bottom: 9.38vw;
  }
  #locus .smetnoedelo-grid > * {
    background-image: url(../img/services/locus-block-mobile.png) !important;
    width: 100%;
    padding: 6.25vw 3.13vw 6.25vw 7.81vw;
  }
  #locus .smetnoedelo-grid > * br {
    display: none;
  }
  #locus .smetnoedelo-grid .title {
    margin-left: -3.13vw;
    margin-bottom: 1.56vw;
    font-size: 3.13vw;
    line-height: 108%;
  }
  #locus .smetnoedelo-bottom {
    display: none;
  }
  #locus .smetnoedelo-contacts {
    padding: 0 0 31.25vw;
    font-size: 2.97vw;
    line-height: 108%;
    position: relative;
  }
  #locus .smetnoedelo-contacts-top {
    flex-direction: column;
    margin-bottom: 9.38vw;
    text-align: center;
    padding-top: 0;
    background: black;
  }
  #locus .smetnoedelo-contacts .title {
    font-size: 3.13vw;
    width: 100%;
    text-align: center;
    line-height: 108%;
    margin-bottom: 9.38vw;
    padding: 2.81vw 0 1.56vw;
    background: linear-gradient(90deg, #89aebf 0%, #915b6f 100%);
  }

  #locus .smetnoedelo-contacts .title + div br {
    display: none;
  }

  #locus .smetnoedelo-contacts .title + div {
    padding: 0 6.25vw;
  }
  #locus .smetnoedelo-contacts-top .right-title {
    display: none;
  }
  #locus .smetnoedelo-contacts-top > div:last-child {
    position: absolute;
    bottom: 9.38vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    text-align: center;
    width: 100%;
    justify-content: center;
    row-gap: 3.13vw;
    column-gap: 4.69vw;
    padding: 0 14.06vw;
  }
  #locus .smetnoedelo-contacts-top .contact-line {
    font-size: 3.13vw;
    line-height: normal;
    margin: auto;
  }
  #locus .smetnoedelo-contacts-top .contact-line:not(:last-child) {
    margin-bottom: 0;
  }
  #locus .smetnoedelo-contacts-top .contact-line:last-child {
    grid-column: span 2;
  }
  #locus .smetnoedelo-contacts-top .contact-line img {
    width: 4.69vw;
    margin-right: 1.56vw;
  }
  #locus .smetnoedelo-link,
  #locus .locus-link {
    padding: 2.19vw 6.25vw 2.19vw 4.69vw;
    font-size: 3.03vw;
    line-height: normal;
    border-radius: 10.31vw;
    box-shadow: 0 0.76vw 0.76vw 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(9.53vw);
  }
  #locus .smetnoedelo-link:after,
  #locus .locus-link:after {
    top: 1.88vw;
    right: 3.13vw;
    width: 2.19vw;
    height: 2.19vw;
  }
}
#contact-page {
  padding: 7.6vw 10.42vw 7.81vw 13.8vw;
  background-image: url(../img/contact/bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  position: relative;
}
#contact-page section {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.34vw;
}
#contact-page .contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4.43vw;
  width: 100%;
}
#contact-page .contacts__head {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1.04vw;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.06vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  width: 100%;
}
#contact-page .contacts__head span {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.82vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
}
#contact-page .contacts__head img {
  position: absolute;
  width: 8.07vw;
  height: auto;
  left: -10.42vw;
  top: -0.78vw;
}
#contact-page .contacts__body {
  display: flex;
  flex-direction: column;
  row-gap: 3.13vw;
  width: 100%;
}
#contact-page .contacts__body .top-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
#contact-page .contacts__body .left-side {
  display: flex;
  flex-direction: column;
  row-gap: 1.3vw;
}
#contact-page .contacts__body-telephone {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.52vw;
}
#contact-page .contacts__body-telephone img {
  width: 1.72vw;
  height: 1.72vw;
}
#contact-page .contacts__body-telephone a {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.14vw;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  width: 10.31vw;
}
#contact-page .contacts__body-telephone span {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.06vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
}
#contact-page .right-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 0.52vw;
}
#contact-page .right-side .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.04vw;
  line-height: 100%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(114, 114, 114, 1);
  margin-bottom: 0.52vw;
}
#contact-page .contacts__body-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1.04vw;
}
#contact-page .contacts__body-social a {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.39vw;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
}
#contact-page .contacts__body-social img {
  width: 2.08vw;
  height: 2.08vw;
}
#contact-page .bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.04vw;
}
#contact-page .bottom-row > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.52vw;
  color: rgba(255, 255, 255, 1);
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.14vw;
  line-height: 100%;
  letter-spacing: 0;
}
#contact-page .bottom-row img {
  width: 1.72vw;
  height: auto;
}
#contact-page .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.08vw;
  z-index: 0;
}
#contact-page .contact-form__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.04vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(255, 255, 255, 1);
}
#contact-page .contact-form__head span {
  margin-bottom: 0.31vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.04vw;
  line-height: 100%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#contact-page .arrow {
  width: 2.5vw;
  height: 2.5vw;
  margin-top: 1.3vw;
  animation: float-arrow 2s ease-in-out infinite;
}

#contact-page .arrow:first-of-type {
  display: block;
}
#contact-page .arrow:last-of-type {
  display: none;
}

@media (max-width: 575.5px) {
  #contact-page {
    padding: 0;
    background-image: unset;
    background: black;
  }
  #contact-page section {
    row-gap: 14.06vw;
    position: relative;
    padding-bottom: 25vw;
  }
  #contact-page .contacts {
    row-gap: 9.38vw;
    width: 100%;
    padding: 21.88vw 6.25vw 0;
    background: linear-gradient(0deg, #000000 0%, #651114 100%);
  }
  #contact-page .contacts__head {
    row-gap: 6.25vw;
    font-size: 2.5vw;
  }
  #contact-page .contacts__head span {
    font-size: 4.69vw;
    text-transform: uppercase;
    white-space: nowrap;
  }
  #contact-page .contacts__head br {
    display: none;
  }
  #contact-page .contacts__head p {
    max-width: 68.75vw;
  }
  #contact-page .contacts__head img {
    width: 12.5vw;
    left: unset;
    right: 0;
    top: 17.19vw;
  }
  #contact-page .contacts__body {
    display: flex;
    flex-direction: column;
    row-gap: 3.13vw;
    width: 100%;
  }
  #contact-page .contacts__body .top-row {
    flex-direction: column;
    align-items: center;
    row-gap: 9.38vw;
  }
  #contact-page .contacts__body .left-side {
    row-gap: 3.13vw;
  }
  #contact-page .contacts__body-telephone {
    column-gap: 1.56vw;
  }
  #contact-page .contacts__body-telephone img {
    width: 4.38vw;
    height: 4.38vw;
  }
  #contact-page .contacts__body-telephone a {
    font-size: 2.81vw;
    width: unset;
    white-space: nowrap;
  }
  #contact-page .contacts__body-telephone span {
    font-size: 2.63vw;
    white-space: nowrap;
  }
  #contact-page .right-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    row-gap: 3.13vw;
  }
  #contact-page .right-side .title {
    font-size: 3.13vw;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0;
    grid-column: span 2;
  }
  #contact-page .contacts__body-social {
    column-gap: 2.5vw;
    margin-left: auto;
  }
  #contact-page .contacts__body-social a {
    font-size: 3.34vw;
  }
  #contact-page .contacts__body-social img {
    width: 5vw;
    height: 5vw;
  }
  #contact-page .bottom-row {
    position: absolute;
    bottom: 9.38vw;
    row-gap: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #contact-page .bottom-row > div {
    column-gap: 1.56vw;
    font-size: 2.72vw;
    white-space: nowrap;
  }
  #contact-page .bottom-row div:first-child img {
    margin-bottom: 0.94vw;
  }
  #contact-page .bottom-row img {
    width: 4.06vw;
    height: auto;
  }
  #contact-page .contact-form {
    row-gap: 9.38vw;
  }
  #contact-page .contact-form__head {
    font-size: 2.5vw;
    padding: 0 3.13vw;
  }
  #contact-page .contact-form__head span {
    margin-bottom: 3.13vw;
    font-size: 2.5vw;
  }
  #contact-page .arrow {
    width: 5.94vw;
    height: 5.94vw;
    margin-top: 4.69vw;
    animation: float-arrow 2s ease-in-out infinite;
  }
  #contact-page .arrow:first-of-type {
    display: none;
  }
  #contact-page .arrow:last-of-type {
    display: block;
  }
}

@keyframes float-arrow {
  0%,
  100% {
    transform: translateY(-0.26vw);
  }
  50% {
    transform: translateY(0.26vw);
  }
}
#contact-form {
  padding: 2.86vw 3.91vw 1.82vw;
  background: rgba(255, 255, 255, 1);
  border-radius: 0.78vw;
  width: 32.29vw;
  display: flex;
  flex-direction: column;
  z-index: 100;
  position: relative;
}
#contact-form > button:first-child {
  display: flex;
  position: absolute;
  top: -1.04vw;
  right: -1.56vw;
  background-image: url(../img/close.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1.04vw;
  height: 1.04vw;
}
#contact-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.26vw;
  margin-bottom: 0.52vw;
}
#contact-form .form-group label {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  letter-spacing: 0;
  color: black;
  margin: 0;
}
#contact-form .form-group .required {
  color: rgba(245, 85, 15, 1);
}
#contact-form .form-group input {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  letter-spacing: 0;
  color: black;
  padding: 0.52vw 0.94vw;
  border-radius: 0.57vw;
  margin: 0;
  background: rgba(224, 224, 224, 1);
  border: none;
  box-shadow: none;
  width: 100%;
}
#contact-form .choice-theme {
  margin-top: 1.04vw;
  position: relative;
  margin-bottom: 0.78vw;
  cursor: pointer;
}
#contact-form .choice-theme__head {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(130, 130, 130, 1);
  padding: 0.52vw 0.94vw;
  border-radius: 0.57vw;
  margin: 0;
  background: rgba(224, 224, 224, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#contact-form .choice-theme__arrow {
  background: url(../img/contact/form-arrow.png);
  background-size: 100% 100%;
  width: 0.99vw;
  height: 0.68vw;
  border: none;
  transform: scaleY(1);
}
#contact-form .choice-theme.active .choice-theme__arrow {
  transform: scaleY(-1);
}
#contact-form .choice-theme__body {
  position: absolute;
  top: 100%;
  flex-direction: column;
  row-gap: 0.26vw;
  width: 100%;
  padding-top: 0.26vw;
  z-index: 1;
  display: none;
}
#contact-form .choice-theme.active .choice-theme__body {
  display: flex;
}
#contact-form .choice-group {
  padding: 0.52vw 2.45vw;
  background: rgba(1, 0, 1, 1);
  width: 100%;
  border-radius: 0.57vw;
  display: flex;
}
#contact-form .choice-group input[type="radio"] {
  display: none;
}
#contact-form .choice-group label {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
  position: relative;
  margin: 0;
}
#contact-form .choice-group input[type="radio"] + label:before {
  content: "";
  position: absolute;
  left: -1.46vw;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.94vw;
  height: 0.94vw;
  border-radius: 0.21vw;
  background: white;
}
#contact-form .choice-group input[type="radio"]:checked + label:after {
  position: absolute;
  top: 0.1vw;
  bottom: 0;
  left: -1.46vw;
  margin: auto;
  width: 0.94vw;
  height: 0.94vw;
  content: "";
  background: url(../img/contact/check-icon.png);
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact-form textarea {
  resize: none;
  width: 100%;
  padding: 0.52vw 0.94vw;
  height: 8.07vw;
  border: 0.02vw solid rgba(73, 12, 15, 0.3);
  border-radius: 0.57vw;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: 1.14vw;
  letter-spacing: 0;
  text-align: left;
  vertical-align: middle;
}
#contact-form textarea:not(:last-child) {
  margin-bottom: 0.52vw;
}
#contact-form textarea::placeholder {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: 1.14vw;
  letter-spacing: 0;
  text-align: left;
  vertical-align: middle;
  color: rgba(129, 134, 139, 1);
}
#contact-form .agree-group {
  margin-top: 0.52vw;
}
#contact-form .agree-group + .agree-group {
  margin-top: 0.36vw;
}
#contact-form .agree-group + .agree-group span {
  width: 22vw;
}
#contact-form .agree-group a {
  text-decoration: underline;
}
#contact-form .check-group {
  padding-left: 2.08vw;
}
#contact-form .check-group input[type="checkbox"] {
  display: none;
}
#contact-form .check-group label {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.66vw;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(110, 110, 110, 1);
  position: relative;
  display: flex;
  align-items: flex-start;
}
#contact-form .check-group input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  left: -2.08vw;
  top: 0.15vw;
  bottom: 0;
  /* margin: auto; */
  width: 1.25vw;
  height: 1.25vw;
  border-radius: 0.33vw;
  background: rgba(217, 217, 217, 1);
}
#contact-form .check-group input[type="checkbox"]:checked + label:after {
  position: absolute;
  top: 0.3vw;
  bottom: 0;
  left: -2.08vw;
  /* margin: auto; */
  width: 1.25vw;
  height: 1.25vw;
  content: "";
  background: url(../img/contact/check-icon.png);
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact-form .show-message {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  outline: none !important;
  margin-top: 0.21vw;
}
#contact-form .show-message img {
  height: 0.83vw;
  width: auto;
}
#contact-form .show-message .hidden-message {
  display: none;
}
#contact-form .show-message:hover .hidden-message {
  display: block;
  position: absolute;
  top: 0.83vw;
  left: 0.52vw;
  width: 12.3vw;
  border-radius: 0.63vw;
  background: rgba(73, 12, 15, 1);
  box-shadow: 0 0.22vw 0.22vw 0 rgba(0, 0, 0, 0.25);
  padding: 0.52vw 0.78vw;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.58vw;
  line-height: normal;
  letter-spacing: 0;
  z-index: 1;
  text-align: left;
  color: white;
  cursor: default;
}
#contact-form-submit {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1vw;
  line-height: 100%;
  letter-spacing: -0.02em;
  width: 15.1vw;
  height: 2.6vw;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 1);
  border-radius: 0.78vw;
  margin: 1.82vw auto 0;
  cursor: pointer;
}
#contact-form-submit:disabled {
  opacity: 0.5;
  cursor: no-drop;
}
@media (max-width: 575.5px) {
  #contact-form {
    padding: 9vw 6.25vw;
    border-radius: 0;
    width: 100vw;
  }
  #contact-form > button:first-child {
    width: 4.06vw;
    height: 4.06vw;
    top: 3.1vw;
    right: 3.1vw;
    filter: invert(1);
  }
  #contact-form .form-group {
    row-gap: 0.94vw;
    margin-bottom: 1.88vw;
  }
  #contact-form .form-group label {
    font-size: 2.97vw;
  }
  #contact-form .form-group input {
    font-size: 2.97vw;
    padding: 1.88vw 3.13vw;
    border-radius: 2.03vw;
  }
  #contact-form .choice-theme {
    margin-top: 3.13vw;
    margin-bottom: 2.5vw;
  }
  #contact-form .choice-theme__head {
    font-size: 2.97vw;
    padding: 1.88vw 3.13vw;
    border-radius: 2.03vw;
  }
  #contact-form .choice-theme__arrow {
    width: 3.13vw;
    height: 1.88vw;
    border: none;
    transform: scaleY(1);
  }
  #contact-form .choice-theme.active .choice-theme__arrow {
    transform: scaleY(-1);
  }
  #contact-form .choice-theme__body {
    row-gap: 0.94vw;
    padding-top: 1.56vw;
  }
  #contact-form .choice-group {
    padding: 2.5vw 9.38vw;
    border-radius: 2.03vw;
    display: flex;
    align-items: center;
  }
  #contact-form .choice-group label {
    font-size: 2.97vw;
  }
  #contact-form .choice-group input[type="radio"] + label:before {
    left: -5.63vw;
    width: 3.13vw;
    height: 3.13vw;
    border-radius: 0.72vw;
  }
  #contact-form .choice-group input[type="radio"]:checked + label:after {
    top: 0.4w;
    left: -5.63vw;
    width: 3.13vw;
    height: 3.13vw;
    background-repeat: no-repeat;
  }
  #contact-form textarea {
    padding: 2.5vw 3.13vw;
    height: 28.13vw;
    border: 0.05vw solid rgba(83, 103, 187, 0.3);
    border-radius: 2.03vw;
    font-size: 2.97vw;
  }
  #contact-form textarea::placeholder {
    font-size: 2.97vw;
    line-height: 3.5vw;
  }
  #contact-form .agree-group {
    margin-top: 3.13vw;
  }
  #contact-form .agree-group + .agree-group {
    margin-top: 1.56vw;
  }
  #contact-form .agree-group + .agree-group span {
    width: 70.13vw;
  }
  #contact-form .check-group {
    padding-left: 7.81vw;
  }
  #contact-form .check-group label {
    font-size: 2.5vw;
  }
  #contact-form .check-group input[type="checkbox"] + label:before {
    left: -7.81vw;
    width: 4.69vw;
    height: 4.69vw;
    border-radius: 0.63vw;
    margin: unset;
    top: 0.94vw;
  }
  #contact-form .check-group input[type="checkbox"]:checked + label:after {
    top: 1.56vw;
    left: -7.81vw;
    width: 4.69vw;
    height: 4.69vw;
    margin: unset;
    background-repeat: no-repeat;
  }
  #contact-form .show-message {
    position: relative;
    right: 0;
    bottom: 0.31vw;
    margin: 0;
  }
  #contact-form .show-message img {
    height: 3.13vw;
  }
  #contact-form .show-message:hover .hidden-message {
    top: -12.5vw;
    right: -6vw;
    left: unset;
    width: 56.25vw;
    border-radius: 2.81vw;
    box-shadow: 0 1.02vw 1.02vw 0 rgba(0, 0, 0, 0.25);
    padding: 2.5vw 3.13vw;
    font-size: 2.66vw;
  }
  #contact-form-submit {
    font-size: 3.03vw;
    width: 50vw;
    height: 8.44vw;
    border-radius: 10.94vw;
    margin: 6.25vw auto 0;
    background: rgba(101, 17, 20, 1);
    box-shadow: 0 0.76vw 0.76vw 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(9.53vw);
    position: relative;
    padding-right: 1.56vw;
  }

  #contact-form-submit:before {
    content: "";
    background-image: url(../img/arrow-in-circle.png);
    background-size: 100% 100%;
    position: absolute;
    width: 2.5vw;
    height: 2.5vw;
    top: 1.56vw;
    right: 3.75vw;
  }
}
#successBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  opacity: 0.5;
  z-index: 100;
  display: none;
}
.success {
  flex-direction: column;
  padding: 1.82vw 2.08vw 1.82vw 8.85vw;
  row-gap: 0.26vw;
  position: fixed;
  right: 50%;
  top: 25%;
  transform: translate(50%, 25%);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0vw 0.21vw 2.23vw 0vw rgba(0, 0, 0, 0.25);
  z-index: 101;
  display: none;
}
.success__title {
  font-family: Body Grotesque Large Trial;
  font-weight: 900;
  font-size: 1.37vw;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(101, 17, 20, 1);
}
.success__subtitle {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.08vw;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(101, 17, 20, 1);
}
.success__close-btn {
  width: 1.04vw;
  height: 1.04vw;
  background: url("../img/contact/close-btn.png");
  position: absolute;
  top: -1.3vw;
  right: -1.82vw;
  background-size: cover;
}
.success > img {
  position: absolute;
  left: -2.6vw;
  bottom: 0;
  width: 10.68vw;
  height: auto;
}
#vacancies-page {
  padding: 8.33vw 4.95vw 2.6vw 3.75vw;
  background-image: url(../img/services/bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 100%;
}
#vacancies-page .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.09vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  padding: 0 6.25vw 0 5.21vw;
  height: 4.69vw;
  border: 0.07vw solid #651114;
  background: #d9d9d90d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 5.73vw;
  position: relative;
  box-shadow: 0vw 0.43vw 0.43vw 0vw #00000040;
  backdrop-filter: blur(5.39vw);
}
#vacancies-page .title::before {
  content: "";
  background-image: url(../img/menu-item-arrow.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.46vw;
  height: 1.46vw;
  top: 0.73vw;
  right: 3.59vw;
}
#vacancies-page .list {
  margin-top: 3.65vw;
  margin-left: 1.3vw;
}
#vacancies-page .list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 3.65vw;
  position: relative;
}
#vacancies-page .list-item__show-more {
  padding: 0 2.08vw 0 1.04vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 0.83vw;
  line-height: 100%;
  letter-spacing: 0;
  position: absolute;
  right: 1.3vw;
  top: 6.5vw;
  height: 2.29vw;
  border: 0.03vw solid #651114;
  background: #d9d9d91a;
  border-radius: 2.86vw;
  cursor: pointer;
  transition: all 0.3s ease;
}
#vacancies-page .list-item__show-more:hover {
  background: #651114;
}
#vacancies-page .list-item__show-more::before {
  content: "";
  background-image: url(../img/menu-item-arrow.png);
  background-size: 100% 100%;
  position: absolute;
  width: 0.68vw;
  height: 0.68vw;
  top: 0.26vw;
  right: 0.78vw;
}
#vacancies-page .list-item__show-more.active {
  display: none;
}
#vacancies-page .list-item__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.04vw;
  padding-left: 4.43vw;
}
#vacancies-page .list-item__title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.82vw;
  line-height: 108%;
  letter-spacing: 0;
  color: white;
}
#vacancies-page .list-item__intro {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.06vw;
  line-height: 108%;
  letter-spacing: 0;
}
#vacancies-page .list-item__intro i {
  font-family: Montserrat;
  font-weight: 500;
  font-style: Italic;
  font-size: 0.83vw;
  line-height: normal;
}
#vacancies-page .list-item__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 2.34vw;
  max-height: 0;
  overflow: hidden;
}
#vacancies-page .list-item__body.active {
  max-height: 1000px;
}
#vacancies-page .list-item__details-item {
  padding: 1.56vw 2.6vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.78vw;
  border: 0.05vw solid #651114;
  min-width: 28.39vw;
  width: 28.39vw;
  min-height: 13.54vw;
  height: 13.8vw;
  padding-right: 1.56vw;
}
#vacancies-page .list-item__details-title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.04vw;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
}

#vacancies-page .list-item__details-item div:last-of-type {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.89vw;
  line-height: 0.93vw;
  letter-spacing: 0;
  color: white;
  padding-left: 0.94vw;
}
#vacancies-page .join-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.6vw;
}
#vacancies-page .join-us b {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: white;
  margin-bottom: 0.78vw;
}
#vacancies-page .join-us p {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: white;
  margin-bottom: 1.82vw;
}
#vacancies-page .join-us button {
  padding: 0 3.65vw 0 2.6vw;
  border: 0.05vw solid #651114;
  height: 3.33vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.21vw;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
  border-radius: 4.17vw;
  position: relative;
  transition: all 0.3s ease;
}
#vacancies-page .join-us button:hover {
  background: #651114;
}
#vacancies-page .join-us button::before {
  content: "";
  background-image: url(../img/menu-item-arrow.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.04vw;
  height: 1.04vw;
  top: 0.52vw;
  right: 1.82vw;
}
#vacancies-page #contactModal,
#magazines #contactModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 100;
}
#vacancies-page #contactModal::before,
#magazines #contactModal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.5;
  background: black;
}
#vacancies-page .form-group.resume {
  margin-top: 0.78vw;
  cursor: pointer;
}
#vacancies-page .form-group div {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.83vw;
  line-height: normal;
  letter-spacing: 0;
  color: #828282;
  padding: 0.26vw 0.94vw;
  border-radius: 0.57vw;
  margin: 0;
  border: none;
  box-shadow: none;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0.26vw;
  border: 0.02vw solid rgba(73, 12, 15, 0.3);
  padding-left: 0.63vw;
  height: 2.03vw;
}

#vacancies-page #resume-preview {
  padding-left: 0.94vw;
}

#vacancies-page .form-group img {
  width: 1.46vw;
  height: 1.46vw;
}
#resume-preview button {
  background: none;
  display: flex;
  border: none;
  color: #828282;
  margin-left: 0.52vw;
  cursor: pointer;
  font-size: 1.25vw;
  align-items: center;
  justify-content: center;
}

#resume-name {
  max-width: 14.06vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 575.5px) {
  #vacancies-page {
    padding: 21.88vw 6.25vw 9.38vw;
    background-image: unset;
    background: black;
  }
  #vacancies-page .title {
    font-size: 5.31vw;
    padding: 0;
    height: unset;
    border: none;
    background: none;
    display: block;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
    width: 100%;
  }
  #vacancies-page .title::before {
    display: none;
  }
  #vacancies-page .list {
    margin-top: 10.94vw;
    margin-left: 0;
  }
  #vacancies-page .list-item {
    row-gap: 4.69vw;
  }
  #vacancies-page .list-item__show-more {
    padding: 0 9.38vw 0 6.25vw;
    font-size: 3.03vw;
    right: unset;
    top: unset;
    height: 8.44vw;
    border: 0.13vw solid #651114;
    background: #651114;
    border-radius: 10.63vw;
    cursor: pointer;
    position: relative;
    width: fit-content;
    padding-top: 0.63vw;
    margin: auto;
    margin-top: 4.69vw;
  }

  #vacancies-page .list-item__show-more::before {
    width: 2.5vw;
    height: 2.5vw;
    top: 1.56vw;
    right: 3.13vw;
  }
  #vacancies-page .list-item__show-more.active {
    display: none;
  }
  #vacancies-page .list-item__head {
    row-gap: 3.13vw;
    padding-left: 0;
  }
  #vacancies-page .list-item__title {
    font-size: 3.75vw;
  }
  #vacancies-page .list-item__intro {
    font-size: 3.13vw;
    line-height: 120%;
  }
  #vacancies-page .list-item__intro i {
    font-size: inherit;
  }
  #vacancies-page .list-item__body {
    flex-direction: column;
    row-gap: 4.69vw;
    display: none;
    width: 100%;
  }
  #vacancies-page .list-item__body.active {
    display: flex;
  }
  #vacancies-page .list-item__details-item {
    padding: 4.69vw;
    row-gap: 3.13vw;
    border: 0.16vw solid #651114;
    width: 100%;
    min-width: unset;
    min-height: fit-content;
    height: fit-content;
    padding-right: 1.56vw;
  }
  #vacancies-page .list-item__details-title {
    font-size: 3.13vw;
  }

  #vacancies-page .list-item__details-item div:last-of-type {
    font-size: 2.97vw;
    line-height: 3.44vw;
    padding-left: 3.13vw;
  }
  #vacancies-page .join-us {
    margin-top: 7.81vw;
  }
  #vacancies-page .join-us b {
    font-size: 3.75vw;
    margin-bottom: 1.56vw;
  }
  #vacancies-page .join-us p {
    font-size: 2.5vw;
    margin-bottom: 7.81vw;
  }
  #vacancies-page .join-us button {
    padding: 0 7.81vw 0.63vw 6.25vw;
    font-size: 3.03vw;
    right: unset;
    top: unset;
    height: 8.44vw;
    border: 0.13vw solid #651114;
    background: #651114;
    border-radius: 10.63vw;
    cursor: pointer;
    position: relative;
    width: fit-content;
    padding-top: 0.63vw;
    margin: auto;
  }
  #vacancies-page .join-us button::before {
    width: 2.5vw;
    height: 2.5vw;
    top: 1.56vw;
    right: 3.13vw;
  }
  #vacancies-page #contactModal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    z-index: 100;
  }
  #vacancies-page #contactModal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.5;
    background: black;
  }
  #vacancies-page .form-group.resume {
    margin-top: 3.13vw;
  }
  #vacancies-page .form-group div {
    font-size: 2.97vw;
    padding: 1.88vw 3.13vw;
    border-radius: 2.03vw;
    column-gap: 1.56vw;
    border: 0.05vw solid rgba(115, 115, 115, 0.3);
    padding-left: 1.56vw;
    height: 7.19vw;
  }

  #vacancies-page #resume-preview {
    padding-left: 3.13vw;
  }

  #vacancies-page .form-group img {
    width: 4.69vw;
    height: 4.69vw;
  }
  #resume-preview button {
    margin-left: 1.56vw;
    font-size: 4.38vw;
  }
  #resume-name {
    max-width: 50vw;
  }
}
#magazines {
  padding-top: 8.33vw;
  background-image: url(../img/services/bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4.43vw;
}
#magazines .top-row {
  width: 100%;
}
#magazines .top-row__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.51vw;
  justify-content: flex-start;
  width: 100%;
}
#magazines .top-row__head-title {
  margin-left: 3.8vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.09vw;
  line-height: 2.19vw;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  border: 0.05vw solid #651114;
  background: rgba(217, 217, 217, 0.05);
  border-radius: 5.88vw;
  padding: 1.32vw 7.54vw 1.18vw 5.27vw;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 0.44vw 0.44vw 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5.49vw);
}
#magazines .top-row__head-title--mobile {
  display: none;
}
#magazines .top-row__head-title:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.53vw;
  height: 1.53vw;
  top: 0.71vw;
  right: 3.42vw;
}
#magazines .top-row__head-subtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.1vw;
  line-height: 1.2vw;
  margin-bottom: 0.73vw;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  position: relative;
}
#magazines .top-row__head-subtitle span {
  position: absolute;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.98vw;
  line-height: 108%;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  bottom: 0.42vw;
  right: 0;
}
#magazines .top-row__body {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 1.56vw;
}
#magazines .top-row__body .main-arrow {
  margin-top: 0.83vw;
  width: 2.45vw;
  height: 2.45vw;
  transform: translateX(-50%);
}
#magazines .top-row__body .main-arrow:first-of-type {
  display: block;
}
#magazines .top-row__body .main-arrow:last-of-type {
  display: none;
}
#magazines .bottom-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5.21vw;
}
#magazines .department-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4.43vw;
  width: 100%;
  padding: 0 0.52vw;
}
#magazines .department-row__title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.08vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  text-align: center;
}
#magazines .department-row__list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 3.65vw;
  background-image: url(../img/services/deprtament-1.png);
  background-size: 100% 98%;
  background-repeat: no-repeat;
  width: 100%;
  justify-content: center;
}

#magazines .department-row__item {
  position: relative;
  width: 13.54vw;
  height: auto;
}

#magazines .department-row__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

#magazines .department-row__item:hover img {
  transform: scale(1.05);
}

#magazines .department-row__item div {
  position: absolute;
  left: 200%;
  top: 0;
  flex-direction: column;
  height: 17.81vw;
  white-space: nowrap;
  padding: 0 4.43vw 0 3.65vw;
  z-index: 5;
  background: rgba(42, 74, 110, 0.95);
  display: flex;
  opacity: 0;
  transform: translateX(-1.04vw);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  row-gap: 0.78vw;
  justify-content: center;
  pointer-events: none;
}
#magazines .department-row__item:nth-child(1) div {
  background: rgba(42, 74, 110, 0.98);
  width: 63.54vw;
}
#magazines .department-row__item:nth-child(2) div {
  background: rgba(60, 45, 114, 0.98);
  width: 60.94vw;
}
#magazines .department-row__item:nth-child(3) div {
  background: rgba(23, 105, 96, 0.98);
  width: 44.01vw;
  padding-left: 2.34vw;
}

#magazines .department-row__item:nth-child(4) div {
  background: rgba(175, 37, 49, 0.98);
  width: 60.42vw;
}
#magazines .department-row__item:nth-child(5) div {
  background: rgba(225, 146, 22, 0.98);
  width: 63.28vw;
}
#magazines .department-row__item:hover div {
  opacity: 1;
  transform: translateX(0);
  left: 100%;
  pointer-events: auto;
}

#magazines .department-row:nth-child(2) .department-row__item:nth-child(1) div {
  background: rgba(255, 201, 7, 0.98);
  width: 52.34vw;
}
#magazines
  .department-row:nth-child(2)
  .department-row__item:nth-child(1)
  div
  * {
  color: rgba(53, 53, 53, 1);
}
#magazines .department-row:nth-child(2) .department-row__item:nth-child(2) div {
  background: rgba(40, 138, 92, 0.98);
  width: 52.34vw;
  left: auto;
  right: 200%;
  transform: translateX(1.04vw);
}
#magazines .department-row:nth-child(3) .department-row__item:nth-child(1) div {
  background: rgba(223, 31, 36, 0.98);
}

#magazines .department-row__item:nth-child(4) div,
#magazines .department-row__item:nth-child(5) div {
  left: auto;
  right: 200%;
  transform: translateX(1.04vw);
}

#magazines .department-row__item:nth-child(4):hover div,
#magazines .department-row__item:nth-child(5):hover div,
#magazines
  .department-row:nth-child(2)
  .department-row__item:nth-child(2):hover
  div {
  opacity: 1;
  transform: translateX(0);
  right: 105%;
  left: auto;
  pointer-events: none;
}

#magazines .department-row__item span {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.8vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: left;
  color: white;
  transform: translateX(-1.56vw);
  transition: transform 0.5s ease 0.1s;
}

#magazines .department-row__item:nth-child(4) span,
#magazines .department-row__item:nth-child(5) span {
  transform: translateX(1.56vw);
}

#magazines .department-row__item p {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.05vw;
  line-height: 145%;
  letter-spacing: 0;
  color: white;
  padding-left: 2.34vw;
  transform: translateX(-1.56vw);
  transition: transform 0.5s ease 0.2s;
}

#magazines .department-row__item:nth-child(4) p,
#magazines .department-row__item:nth-child(5) p {
  transform: translateX(1.56vw);
}

#magazines .department-row__item:hover span,
#magazines .department-row__item:hover p {
  transform: translateX(0);
}

#magazines .contact-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3.91vw 4.69vw 3.91vw 35.94vw;
  background-image: url(../img/services/contact-bg.png);
  background-size: 100% 98%;
}
#magazines .contact-row__title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.08vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(78, 78, 78, 1);
  margin-bottom: 1.3vw;
}
#magazines .contact-row__subtitle {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.22vw;
  line-height: 108%;
  letter-spacing: 0;
  color: rgba(53, 65, 81, 1);
  margin-bottom: 2.6vw;
}
#magazines .contact-row button {
  padding: 0.94vw 3.13vw 0.78vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.21vw;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
  position: relative;
  background: rgba(101, 17, 20, 1);
  border: 0.05vw solid rgba(101, 17, 20, 1);
  border-radius: 4.17vw;
  box-shadow: 0vw 0.3vw 0.3vw 0vw rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3.8vw);
}
#magazines .contact-row button:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.04vw;
  height: 1.04vw;
  top: 0.52vw;
  right: 1.56vw;
}
#magazines .subscription-row {
  padding: 4.43vw 10.42vw 4.17vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: black;
  width: 100%;
  margin-top: -5.21vw;
}
#magazines .subscription-row div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
}
#magazines .subscription-row span {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.17vw;
  line-height: 108%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  display: block;
  margin-bottom: 0.52vw;
}
#magazines .subscription-row button {
  padding: 1.04vw 3.13vw 0.89vw;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 1.21vw;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
  position: relative;
  background: rgba(101, 17, 20, 1);
  border: 0.05vw solid rgba(101, 17, 20, 1);
  border-radius: 4.17vw;
  box-shadow: 0vw 0.3vw 0.3vw 0vw rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3.8vw);
}
#magazines .subscription-row button:before {
  content: "";
  background-image: url(../img/arrow-in-circle.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.04vw;
  height: 1.04vw;
  top: 0.52vw;
  right: 1.56vw;
}
#magazines .department-row__item div {
  pointer-events: none !important;
}
#magazines .department-row__item:hover div {
  pointer-events: none !important;
}

#magazines .department-row--mobile {
  display: none;
}

#magazines #contact-form .agree-group + .agree-group span {
  width: auto;
}

#magazines #contact-form .show-message {
  display: none;
}
@media (max-width: 575.5px) {
  #magazines {
    padding-top: 0;
    background-image: unset;
    background: black;
    row-gap: 7.81vw;
  }
  #magazines .top-row__head {
    align-items: center;
    row-gap: 6.25vw;
    padding: 21.88vw 7.81vw 0 7.81vw;
    background: linear-gradient(0deg, #000000 0%, #651114 100%);
  }
  #magazines .top-row__head-title {
    margin-left: 0;
    width: unset;
    font-size: 5.19vw;
    line-height: normal;
    border: none;
    background: none;
    border-radius: 0;
    padding: 0;
    white-space: normal;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
  }
  #magazines .top-row__head-title:before {
    display: none;
  }
  #magazines .top-row__head-subtitle {
    font-size: 2.81vw;
    line-height: 108%;
    margin-bottom: 12.5vw;
  }
  #magazines .top-row__body {
    font-size: 2.97vw;
    padding: 0 6.25vw;
    margin-top: 6.25vw;
  }
  #magazines .top-row__body br {
    display: none;
  }

  #magazines .top-row__body .main-arrow {
    margin-top: 9.38vw;
    width: 6.88vw;
    height: 6.88vw;
    margin-left: 6.88vw;
  }
  #magazines .top-row__body .main-arrow:nth-child(1) {
    display: none;
  }
  #magazines .top-row__body .main-arrow:nth-child(2) {
    display: block;
  }

  #magazines .bottom-row {
    row-gap: 14.06vw;
  }
  #magazines .department-row {
    display: none;
  }
  #magazines .department-row-carousel {
    display: block;
    width: 100vw;
  }
  #magazines .department-row-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }
  #magazines .department-row--mobile {
    display: flex;
  }
  #magazines .department-row {
    row-gap: 10.94vw;
    padding: 0;
  }
  #magazines .department-row__title {
    font-size: 4.06vw;
    padding: 0 6.25vw;
  }
  #magazines .department-row__list {
    column-gap: 3.13vw;
    background-image: unset;
    width: max-content;
  }

  #magazines .department-row__item {
    width: 100vw;
    min-width: 100vw;
    height: 97.81vw;
    scroll-snap-align: start;
    flex-shrink: 0;
    padding-top: 10.94vw;
    padding-left: 7.81vw;
  }

  #magazines .department-row__item img {
    width: 26.25vw;
    height: auto;
    object-fit: unset;
    transition: unset;
  }

  #magazines .department-row__item:hover img {
    transform: unset;
  }

  #magazines .department-row__item div {
    position: absolute;
    left: 7.81vw;
    top: 37.5vw;
    height: unset;
    white-space: nowrap;
    padding: 0;
    z-index: unset;
    display: flex;
    opacity: 1;
    transform: unset;
    transition: unset;
    row-gap: 7.81vw;
    justify-content: center;
    pointer-events: auto !important;
  }
  #magazines .department-row__item:nth-child(1) div {
    background: unset;
    width: unset;
  }
  #magazines .department-row__item:nth-child(1) {
    background: rgba(42, 74, 110, 0.98);
  }
  #magazines .department-row__item:nth-child(2) div {
    background: unset;
    width: unset;
  }
  #magazines .department-row__item:nth-child(2) {
    background: rgba(60, 45, 114, 0.98);
  }
  #magazines .department-row__item:nth-child(3) div {
    background: unset;
    width: unset;
    padding-left: unset;
  }
  #magazines .department-row__item:nth-child(3) {
    background: rgba(23, 105, 96, 0.98);
  }

  #magazines .department-row__item:nth-child(4) div {
    background: unset;
    width: unset;
  }
  #magazines .department-row__item:nth-child(4) {
    background: rgba(175, 37, 49, 0.98);
  }
  #magazines .department-row__item:nth-child(5) div {
    background: unset;
    width: unset;
  }
  #magazines .department-row__item:nth-child(5) {
    background: rgba(225, 146, 22, 0.98);
  }
  #magazines .department-row__item:hover div {
    opacity: 1;
    transform: unset;
    left: unset;
    pointer-events: auto;
  }

  #magazines
    .department-row:nth-child(2)
    .department-row__item:nth-child(1)
    div {
    background: unset;
    width: unset;
  }
  #magazines .department-row:nth-child(5) .department-row__item:nth-child(1) {
    background: rgba(255, 201, 7, 0.98) !important;
  }

  #magazines .department-row:nth-child(5) .department-row__item:nth-child(1) * {
    color: rgba(53, 53, 53, 1);
  }

  #magazines
    .department-row:nth-child(2)
    .department-row__item:nth-child(2)
    div {
    background: unset;
    width: unset;
    left: unset;
    right: unset;
    transform: unset;
  }
  #magazines .department-row:nth-child(5) .department-row__item:nth-child(2) {
    background: rgba(40, 138, 92, 0.98);
  }

  #magazines .department-row:nth-child(6) .department-row__item:nth-child(1) {
    background: rgba(223, 31, 36, 0.98);
  }

  #magazines .department-row__item:nth-child(4) div,
  #magazines .department-row__item:nth-child(5) div {
    left: unset;
    right: unset;
    transform: unset;
  }

  #magazines .department-row__item:nth-child(4):hover div,
  #magazines .department-row__item:nth-child(5):hover div,
  #magazines
    .department-row:nth-child(2)
    .department-row__item:nth-child(2):hover
    div {
    opacity: 1;
    transform: unset;
    right: unset;
    left: unset;
    pointer-events: none;
  }

  #magazines .department-row__item span {
    font-size: 3.75vw;
    transform: unset;
    transition: unset;
    margin-left: 29.69vw;
    height: 8.13vw;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
  }

  #magazines .department-row__item:nth-child(4) span,
  #magazines .department-row__item:nth-child(5) span {
    transform: unset;
  }

  #magazines .department-row__item p {
    font-size: 2.97vw;
    padding-left: 0;
    transform: unset;
    transition: unset;
  }

  #magazines .department-row__item:nth-child(4) p,
  #magazines .department-row__item:nth-child(5) p {
    transform: unset;
  }

  #magazines .department-row__item:hover span,
  #magazines .department-row__item:hover p {
    transform: unset;
  }

  #magazines .carousel-indicators {
    margin-top: 7.81vw;
    display: flex;
    justify-content: center;
  }

  #magazines .carousel-indicators .dot {
    width: 3.75vw;
    height: 1.25vw;
    margin: 0 0.94vw;
    border-radius: 7.81vw;
    background-color: rgba(101, 17, 20, 1);
  }

  #magazines .carousel-indicators .dot.active {
    background-color: rgba(255, 255, 255, 1);
  }

  #magazines .department-row:nth-child(6) .carousel-indicators .dot {
    background-color: rgba(255, 255, 255, 1);
  }

  #magazines .contact-row {
    margin-top: -4.69vw;
    padding: 7.81vw 3.13vw 7.81vw 23.44vw;
    background-image: url(../img/services/contact-bg-mobile.png);
    background-size: 100% 98%;
  }
  #magazines .contact-row__title {
    font-size: 3.13vw;
    margin-bottom: 3.13vw;
  }
  #magazines .contact-row__subtitle {
    font-size: 2.97vw;
    margin-bottom: 4.69vw;
    margin-left: 4.69vw;
  }
  #magazines .contact-row button {
    font-size: 3.03vw;
    width: 50vw;
    height: 8.44vw;
    border-radius: 10.94vw;
    margin: 0 auto 0;
    background: rgba(101, 17, 20, 1);
    box-shadow: 0 0.76vw 0.76vw 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(9.53vw);
  }
  #magazines .contact-row button:before {
    content: "";
    background-image: url(../img/arrow-in-circle.png);
    background-size: 100% 100%;
    position: absolute;
    width: 2.5vw;
    height: 2.5vw;
    top: 1vw;
    right: 2.75vw;
  }
  #magazines .subscription-row {
    padding: 12.5vw 8.75vw 10.94vw;
    margin-top: -14.06vw;
    flex-direction: column;
    row-gap: 7.81vw;
  }
  #magazines .subscription-row div {
    width: 100%;
    font-size: 2.97vw;
  }
  #magazines .subscription-row div br {
    display: none;
  }
  #magazines .subscription-row span {
    font-size: 3.75vw;
    margin-bottom: 1.56vw;
  }
  #magazines .subscription-row button {
    font-size: 3.03vw;
    width: 85vw;
    height: 8.44vw;
    border-radius: 10.94vw;
    margin: 0 auto 0;
    background: rgba(101, 17, 20, 1);
    box-shadow: 0 0.76vw 0.76vw 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(9.53vw);
  }
  #magazines .subscription-row button:before {
    content: "";
    background-image: url(../img/arrow-in-circle.png);
    background-size: 100% 100%;
    position: absolute;
    width: 2.5vw;
    height: 2.5vw;
    top: 1vw;
    right: 2.75vw;
  }
}

#news-page {
  padding: 8.33vw 4.95vw 2.6vw 3.75vw;
  background-image: url(../img/services/bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto;
}
#news-page .title {
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 2.09vw;
  line-height: 105%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  padding: 0 6.25vw 0 5.21vw;
  height: 4.69vw;
  border: 0.07vw solid #651114;
  background: #d9d9d90d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 5.73vw;
  position: relative;
  box-shadow: 0vw 0.43vw 0.43vw 0vw #00000040;
  backdrop-filter: blur(5.39vw);
}
#news-page .title::before {
  content: "";
  background-image: url(../img/menu-item-arrow.png);
  background-size: 100% 100%;
  position: absolute;
  width: 1.46vw;
  height: 1.46vw;
  top: 0.73vw;
  right: 3.59vw;
}

#news-page .list {
  margin-top: 3.13vw;
  margin-left: 0.78vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.82vw;
}

#news-page .list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 2.86vw;
  width: 100%;
}

#news-page .list-item img {
  width: 18.75vw;
  height: auto;
}

#news-page .list-item > div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
#news-page .list-item__title {
  font-family: Artegra Sans Extended;
  font-weight: 400;
  font-size: 1.04vw;
  line-height: 100%;
  letter-spacing: 0;
  margin-top: 2.34vw;
  margin-bottom: 1.04vw;
}
#news-page .list-item__description {
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 0.89vw;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 2.34vw;
}

#news-page .list-item__data {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.78vw;
  line-height: 0.51vw;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  row-gap: 0.52vw;
}

#news-page .list-item__data span {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.34vw;
}

#news-page .list-item__data img {
  width: 0.96vw;
  height: auto;
}

#news-page .list-item__data i {
  font-family: Gotham Pro;
  font-weight: 700;
  font-style: Bold Italic;
  font-size: 0.78vw;
  line-height: 0.51vw;
  letter-spacing: -2%;
}

#news-page .list-item a {
  margin: auto 7.29vw auto auto;
}

#news-page hr {
  display: block;
  width: 83.33vw;
  border: 0.03vw solid #ffffff1a;
  margin: auto;
}

#news-page .list-item > a {
  padding: 0.1vw 2.08vw 0 1.04vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Body Grotesque Large Trial;
  font-weight: 700;
  font-size: 0.83vw;
  line-height: 100%;
  letter-spacing: 0;
  height: 2.29vw;
  border: 0.03vw solid #651114;
  background: rgba(101, 17, 20, 1);
  border-radius: 2.86vw;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

#news-page .list-item > a::before {
  content: "";
  background-image: url(../img/menu-item-arrow.png);
  background-size: 100% 100%;
  position: absolute;
  width: 0.68vw;
  height: 0.68vw;
  top: 0.26vw;
  right: 0.78vw;
}

#news-page .corporate-life {
  margin-top: 3.91vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 2.08vw;
}

#news-page .corporate-life__title {
  font-family: Body Grotesque Large Trial;
  font-weight: bold;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.78vw;
}

#news-page .corporate-life__title span {
  display: block;
  font-family: Gotham Pro;
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 108%;
  letter-spacing: 0;
  text-align: center;
}

#news-page .carousel-wrapper {
  width: 100vw;
  margin: auto;
  margin-left: -3.75vw;
}

#news-page .carousel-container {
  width: 100%;
  overflow-x: auto;
}

#news-page .carousel-container::-webkit-scrollbar {
  display: none;
}

#news-page .carousel-container {
  scrollbar-width: none;
}

#news-page .carousel-track {
  display: flex;
  width: max-content;
  column-gap: 1.04vw;
}

#news-page .carousel-track img {
  width: calc(100vw / 5);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  pointer-events: none; /* Предотвращает перетаскивание изображений */
}

#news-page .carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 2.6vw;
}

#news-page .carousel-indicators .dot {
  width: 1.3vw;
  height: 0.42vw;
  margin: 0 0.31vw;
  border-radius: 2.6vw;
  background-color: rgba(101, 17, 20, 1);
}

#news-page .carousel-indicators .dot:hover {
  cursor: pointer;
}

#news-page .carousel-indicators .dot.active {
  background-color: rgba(255, 255, 255, 1);
}

@media (max-width: 575.5px) {
  #news-page {
    padding: 21.88vw 6.25vw 9.38vw;
    background-image: unset;
    background: black;
  }
  #news-page .title {
    font-size: 5.31vw;
    padding: 0;
    height: unset;
    border: none;
    background: none;
    display: block;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
    width: 100%;
  }
  #news-page .title::before {
    display: none;
  }
  #news-page .list {
    margin-top: 10.94vw;
    margin-left: 0;
    row-gap: 12.5vw;
  }

  #news-page .list-item {
    flex-direction: column;
    row-gap: 6.25vw;
  }

  #news-page .list-item img {
    width: 100%;
  }

  #news-page .list-item__title {
    font-size: 3.75vw;
    line-height: 3.75vw;
    margin-top: 0;
    margin-bottom: 3.13vw;
  }
  #news-page .list-item__description {
    font-size: 2.97vw;
    margin-bottom: 4.69vw;
  }
  #news-page .list-item__description br {
    display: none;
  }
  #news-page .list-item__data {
    font-size: 2.81vw;
    line-height: 2.81vw;
    row-gap: 1.56vw;
  }

  #news-page .list-item__data span {
    column-gap: 1.25vw;
  }

  #news-page .list-item__data img {
    width: 3.13vw;
    height: auto;
  }

  #news-page .list-item__data i {
    font-size: 2.97vw;
    line-height: 3.13vw;
    width: 100%;
    text-align: center;
    margin-top: 4.69vw;
  }

  #news-page .list-item a {
    margin: auto;
  }

  #news-page hr {
    display: none;
  }

  #news-page .list-item > a {
    padding: 0 9.38vw 0 6.25vw;
    font-size: 3.03vw;
    right: unset;
    top: unset;
    height: 8.44vw;
    border: 0.13vw solid #651114;
    background: #651114;
    border-radius: 10.63vw;
    cursor: pointer;
    position: relative;
    width: fit-content;
    padding-top: 0.63vw;
    margin: auto;
    margin-top: 4.69vw;
  }

  #news-page .list-item > a::before {
    width: 2.5vw;
    height: 2.5vw;
    top: 1.56vw;
    right: 3.13vw;
  }

  #news-page .corporate-life {
    margin-top: 14.06vw;
    row-gap: 7.81vw;
  }

  #news-page .corporate-life__title {
    font-size: 3.75vw;
    row-gap: 1.56vw;
  }

  #news-page .corporate-life__title span {
    font-size: 2.81vw;
  }

  #news-page .carousel-wrapper {
    margin-left: -6.25vw;
  }

  #news-page .carousel-track {
    column-gap: 2.5vw;
  }

  #news-page .carousel-track img {
    width: calc(100vw / 2);
  }

  #news-page .carousel-indicators {
    margin-top: 10.94vw;
  }

  #news-page .carousel-indicators .dot {
    width: 3.75vw;
    height: 1.25vw;
    margin: 0 0.94vw;
    border-radius: 7.81vw;
  }
}
