html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, select, input, button, textarea,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, ul, ol, li {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: inherit;
  font-size: inherit;
  font: inherit;
  color: inherit;
  vertical-align: baseline;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

ol, ul {
  list-style: none;
}

html {
  margin: 0 !important;
}

body {
  color: #000000;
  line-height: 1.12;
  font-family: "Manrope", sans-serif;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

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

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

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

.flex {
  display: flex;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.space-around {
  justify-content: space-around;
}
.flex > * {
  position: relative;
}
.flex .flex-1 {
  flex: 1;
}
.flex .flex-2 {
  flex: 2;
}
.flex .flex-3 {
  flex: 3;
}
.flex .flex-4 {
  flex: 4;
}
.flex .flex-5 {
  flex: 5;
}
.flex .flex-6 {
  flex: 6;
}
.flex .flex-7 {
  flex: 7;
}
.flex .flex-8 {
  flex: 8;
}
.flex .flex-9 {
  flex: 9;
}
.flex .flex-10 {
  flex: 10;
}
.flex .flex-column {
  flex-direction: column;
}
@media screen and (max-width: 1260px) {
  .flex.break-tablet {
    flex-direction: column;
  }
}
@media screen and (max-width: 780px) {
  .flex.break-tablet.bleed-big > *, .flex.break-tablet.bleed.bleed-big > *, .flex.break-tablet.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .flex.break-tablet.bleed-big > :first-child, .flex.break-tablet.bleed.bleed-big > :first-child, .flex.break-tablet.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-tablet.bleed-big > :last-child, .flex.break-tablet.bleed.bleed-big > :last-child, .flex.break-tablet.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 780px) {
  .flex.break-mobile {
    flex-direction: column;
  }
  .flex.break-mobile > * {
    width: 100%;
  }
  .flex.break-mobile.bleed-big > *, .flex.break-mobile.bleed.bleed-big > *, .flex.break-mobile.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .flex.break-mobile.bleed-big > :first-child, .flex.break-mobile.bleed.bleed-big > :first-child, .flex.break-mobile.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-mobile.bleed-big > :last-child, .flex.break-mobile.bleed.bleed-big > :last-child, .flex.break-mobile.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .flex.break-mobile.flex-center {
    align-items: flex-start;
  }
}
.flex .line-break {
  flex-basis: 100%;
  width: 0px;
  height: 0px;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .flex .line-break-tablet {
    flex-basis: 100%;
    width: 0px;
    height: 0px;
    overflow: hidden;
  }
}
@media screen and (max-width: 780px) {
  .flex .line-break-mobile {
    flex-basis: 100%;
    width: 0px;
    height: 0px;
    overflow: hidden;
  }
}
.flex.bleed > * {
  margin-left: 10px;
  margin-right: 10px;
}
.flex.bleed > :first-child {
  margin-left: 0px;
}
.flex.bleed > :last-child {
  margin-right: 0px;
}
.flex.bleed-big > * {
  margin-left: 30px;
  margin-right: 30px;
}
.flex.bleed-big > :first-child {
  margin-left: 0px;
}
.flex.bleed-big > :last-child {
  margin-right: 0px;
}
.flex.wrap {
  flex-flow: row wrap;
}
.flex.max-2 > * {
  width: calc( 50% - 10px );
  min-width: calc( 50% - 10px );
  max-width: calc( 50% - 10px );
}
@media screen and (min-width: 1261px) {
  .flex.max-2.bleed-big > * {
    width: calc( 50% - 100px );
    min-width: calc( 50% - 100px );
    max-width: calc( 50% - 100px );
  }
}
.flex.max-2.bleed > :nth-child(2n) {
  margin-right: 0px;
}
.flex.max-2.bleed > :nth-child(2n+1) {
  margin-left: 0px;
}
.flex.max-3 > * {
  width: calc( 33.3% - 20px );
  min-width: calc( 33.3% - 20px );
  max-width: calc( 33.3% - 20px );
}
.flex.max-3.bleed > :nth-child(3n) {
  margin-right: 0px;
}
.flex.max-3.bleed > :nth-child(3n+1) {
  margin-left: 0px;
}
.flex.max-3-big-gap > * {
  width: calc( 33.3% - 60px );
  min-width: calc( 33.3% - 60px );
  max-width: calc( 33.3% - 60px );
}
.flex.max-3-big-gap.bleed > :nth-child(3n) {
  margin-right: 0px;
}
.flex.max-3-big-gap.bleed > :nth-child(3n+1) {
  margin-left: 0px;
}
.flex.max-3-big-gap.bleed-big > :nth-child(3n) {
  margin-right: 0px;
}
.flex.max-3-big-gap.bleed-big > :nth-child(3n+1) {
  margin-left: 0px;
}
.flex.max-4 > * {
  width: calc( 25% - 15px );
  min-width: calc( 25% - 15px );
  max-width: calc( 25% - 15px );
}
.flex.max-4.bleed > :nth-child(4n) {
  margin-right: 0px;
}
.flex.max-4.bleed > :nth-child(4n+1) {
  margin-left: 0px;
}
.flex.max-4-no-margin > * {
  width: calc( 25% );
  min-width: calc( 25% );
  max-width: calc( 25% );
}
.flex.max-5 > * {
  width: calc( 20% - 15px );
  min-width: calc( 20% - 15px );
  max-width: calc( 20% - 15px );
}
.flex.max-5.bleed > :nth-child(5n) {
  margin-right: 0px;
}
.flex.max-5.bleed > :nth-child(5n+1) {
  margin-left: 0px;
}
@media screen and (max-width: 1260px) {
  .flex.break-tablet.max-5 > * {
    width: calc( 50% - 10px );
    min-width: calc( 50% - 10px );
    max-width: calc( 50% - 10px );
  }
  .flex.break-tablet.max-5.bleed > :nth-child(2n) {
    margin-right: 0px;
  }
  .flex.break-tablet.max-5.bleed > :nth-child(2n+1) {
    margin-left: 0px;
  }
}
@media screen and (max-width: 780px) {
  .flex.break-tablet.max-5 > * {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1260px) {
  .flex.break-tablet.max-4 > * {
    width: calc( 50% - 10px );
    min-width: calc( 50% - 10px );
    max-width: calc( 50% - 10px );
  }
  .flex.break-tablet.max-4.bleed > :nth-child(2n) {
    margin-right: 0px;
  }
  .flex.break-tablet.max-4.bleed > :nth-child(2n+1) {
    margin-left: 0px;
  }
}
@media screen and (max-width: 780px) {
  .flex.break-tablet.max-4 > * {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1260px) {
  .flex.break-tablet.max-4-no-margin > * {
    width: calc( 50% - 10px );
    min-width: calc( 50% - 10px );
    max-width: calc( 50% - 10px );
  }
  .flex.break-tablet.max-4-no-margin.bleed > :nth-child(2n) {
    margin-right: 0px;
  }
  .flex.break-tablet.max-4-no-margin.bleed > :nth-child(2n+1) {
    margin-left: 0px;
  }
}
@media screen and (max-width: 780px) {
  .flex.break-tablet.max-4-no-margin > * {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1260px) {
  .flex.break-tablet.max-3 > *, .flex.break-tablet.max-2 > * {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 780px) {
  .flex.break-mobile.max-5 > *, .flex.break-mobile.max-4 > *, .flex.break-mobile.max-3 > *, .flex.break-mobile.max-2 > * {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1260px) {
  .flex.wrap-tablet {
    flex-flow: row wrap;
  }
}
@media screen and (max-width: 780px) {
  .flex.wrap-mobile {
    flex-flow: row wrap;
  }
}

.flex-tablet {
  display: block;
}
@media screen and (max-width: 1260px) {
  .flex-tablet {
    display: flex;
  }
}

@media screen and (max-width: 780px) {
  .flex-mobile {
    display: flex;
  }
}

.flex-center {
  align-items: center;
}

@media screen and (max-width: 1260px) {
  .flex-center-tablet {
    align-items: center;
  }
}

.flex-text-center {
  justify-content: center;
}

.flex-text-right {
  justify-content: flex-end;
}

@media screen and (max-width: 1260px) {
  .flex-bottom-tablet {
    align-items: flex-end;
  }
}

.flex-bottom {
  align-items: flex-end;
}

.flex-item-right {
  margin-left: auto !important;
}

.flex-item-left {
  margin-right: auto !important;
}

body {
  background-image: url("./img/background.png");
  background-size: cover;
  background-repeat: repeat-y;
  background-position: center;
}
body.contact-opened {
  background-color: #FFFFFF;
  background-image: none;
}
body.contact-opened .floors {
  display: none;
}
body.contact-opened .contact {
  display: block;
}

h2 {
  font-size: 19px;
  font-weight: 700;
}
h2.big {
  font-size: 43px;
}

h3 {
  font-size: 16px;
  font-size: 600;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1600px + 2 * 105px);
  padding-left: 105px;
  padding-right: 105px;
}
@media screen and (max-width: 1260px) {
  .container {
    max-width: calc(1600px + 2 * 105px);
    padding-left: 105px;
    padding-right: 105px;
  }
}
@media screen and (max-width: 780px) {
  .container {
    max-width: calc(1600px + 2 * 105px);
    padding-left: 105px;
    padding-right: 105px;
  }
}

.site-footer,
.site-header {
  padding-left: 105px;
  padding-right: 105px;
}
@media screen and (max-width: 1260px) {
  .site-footer,
.site-header {
    padding-left: 105px;
    padding-right: 105px;
  }
}
@media screen and (max-width: 780px) {
  .site-footer,
.site-header {
    padding-left: 105px;
    padding-right: 105px;
  }
}
.site-footer .container,
.site-header .container {
  max-width: 1600px;
  padding-left: 0;
  padding-right: 0;
}

.site-header {
  padding-top: 60px;
  position: sticky;
  position: -webkit-sticky;
  /* Safari */
}
.site-header .logo-wrapper img {
  height: 100px;
}

.button {
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 17px;
  -webkit-box-shadow: 7.88px 1.39px 29px 0px rgba(105, 95, 151, 0.14);
  -moz-box-shadow: 7.88px 1.39px 29px 0px rgba(105, 95, 151, 0.14);
  box-shadow: 7.88px 1.39px 29px 0px rgba(105, 95, 151, 0.14);
}
.button img {
  margin-right: 14px;
}
.button.white {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  background-color: #FFFFFF;
  color: #000000;
}
.button.green {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #83B027;
}

.bordered {
  -webkit-box-shadow: 2.26px 12.8px 54px 0px rgba(105, 95, 151, 0.8);
  -moz-box-shadow: 2.26px 12.8px 54px 0px rgba(105, 95, 151, 0.8);
  box-shadow: 2.26px 12.8px 54px 0px rgba(105, 95, 151, 0.8);
}

.site-content {
  padding-top: 40px;
  padding-bottom: 70px;
  max-height: calc(100vh - 160px);
  height: calc(100vh - 160px);
}
.site-content .container {
  height: 100%;
}
.site-content .floors {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.site-content .floors .floor {
  border-radius: 30px;
  background-color: #FFFFFF;
  padding: 20px 30px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}
.site-content .floors .floor:last-child {
  margin-bottom: 0px;
}
.site-content .floors .floor h2 {
  font-family: "Roboto", sans-serif;
  color: #83B011;
  margin-bottom: 30px;
}
.site-content .floors .floor .companies {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-content .floors .floor .companies .company {
  width: 50%;
  cursor: pointer;
}
.site-content .floors .floor .companies .company.active .company-popup {
  display: block;
}
.site-content .floors .floor .companies .company .img-col .img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.site-content .floors .floor .companies .company .content-col h3 {
  margin-bottom: 6px;
}
.site-content .floors .floor .companies .company .content-col .website {
  font-size: 11px;
  color: #7A86A1;
}
.site-content .floors .floor .companies .company .company-popup {
  background: rgba(0, 0, 0, 0.53);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: none;
}
.site-content .floors .floor .companies .company .company-popup .inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #72a210 0%, #6fc350 100%);
  padding: 177px 77px 77px 77px;
  border-top-left-radius: 81px;
  border-top-right-radius: 81px;
  color: white;
  text-align: center;
}
.site-content .floors .floor .companies .company .company-popup .inner .logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  max-width: 273px;
  border: 10px solid white;
}
.site-content .floors .floor .companies .company .company-popup .inner .closer {
  position: absolute;
  top: 36px;
  right: 103px;
  font-size: 43px;
  line-height: 48px;
  font-weight: 600;
}
.site-content .floors .floor .companies .company .company-popup .inner .title {
  margin-bottom: 51px;
  font-size: 43px;
  line-height: 48px;
  font-weight: 600;
}
.site-content .floors .floor .companies .company .company-popup .inner .content {
  margin-bottom: 100px;
  font-size: 28px;
  line-height: 37px;
  font-weight: 600;
}
.site-content .floors .floor .companies .company .company-popup .inner .content:last-child {
  margin-bottom: 0;
}
.site-content .floors .floor .companies .company .company-popup .inner .website-popup {
  margin-bottom: 51px;
  font-size: 43px;
  line-height: 48px;
  font-weight: 600;
}
.site-content .floors .floor .companies .company .company-popup .inner .website-popup:last-child {
  margin-bottom: 0;
}
.site-content .floors .floor .companies .company .company-popup .inner .phone-popup-img {
  display: block;
  margin: 0 auto;
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
  filter: brightness(0) invert(1);
}
.site-content .floors .floor .companies .company .company-popup .inner .phone-popup {
  font-size: 28px;
  line-height: 37px;
  font-weight: 600;
}
.site-content .floors .floor .companies .company .company-popup .inner .phone-popup:last-child {
  margin-bottom: 0;
}
.site-content .contact {
  display: none;
}
.site-content .contact p {
  font-size: 28px;
}
.site-content .contact .contact-box {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 30px 35px 47px;
  margin-bottom: 52px;
}
.site-content .contact .contact-box h2 {
  font-family: "Roboto", sans-serif;
  color: #83B011;
  margin-bottom: 27px;
}
.site-content .contact .contact-box p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.site-content .contact .contact-box p a {
  margin-bottom: 7px;
  font-weight: 400;
}
.site-content .contact .contact-box p a:last-of-type {
  margin-bottom: 0;
}
.site-content .contact .contact-box p a img {
  display: inline-block;
  margin-right: 10px;
}
.site-content .contact .button {
  width: fit-content;
}