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

.none {
  display: none;
}

.clear {
  clear: both;
}

a {
  color: #00A1B9;
}
a:hover {
  color: #008BA0;
}

img {
  max-width: 100%;
}

body {
  font-family: "Jost", sans-serif;
  font-size: clamp(16px, calc(13.92px + 0.76vw), 22px);
}

h1, h2, h3, h4, p, ol, ul {
  margin-bottom: 8px;
}

h1, h2, h3 {
  color: #000000;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(33.28px, calc(23.88px + 3.24vw), 55px);
  font-family: "Jost", sans-serif;
}

h2 {
  font-size: clamp(31.04px, calc(21.2px + 2.46vw), 40px);
  font-family: "Jost", sans-serif;
}
h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  background-color: #00A1B9;
  margin-top: 8px;
}
.centered h2::after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: clamp(21.6px, calc(17.12px + 1.39vw), 34.4px);
  font-family: "Jost", sans-serif;
}

h4 {
  font-size: clamp(18px, calc(14.72px + 1.03vw), 27.52px);
}

p, ul, ol {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}

p {
  line-height: 150%;
}
p strong {
  color: #000000;
}

ol, ul {
  padding-left: 1.3em;
}
ol li, ul li {
  padding: 0.1em 0;
}

ul {
  list-style: square;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.admlink {
  position: fixed;
  left: 0;
  top: 0px;
  color: rgba(0, 0, 0, 0.3);
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  z-index: 1000;
}

.delimiter {
  margin-top: 32px;
  margin-bottom: 32px;
  border: 1px solid #ccc;
}

.lefted,
.lefted p {
  text-align: left;
}

.centered,
.centered p {
  text-align: center;
}

.righted,
.righted p {
  text-align: right;
}

.space {
  margin-top: 32px;
  margin-bottom: 32px;
}

.space-top {
  margin-top: 32px;
}

.space-bottom {
  margin-bottom: 32px;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
}
.container.wide {
  max-width: 1600px;
}
.container.narrow {
  max-width: 900px;
}

h3.underlined {
  text-transform: uppercase;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 27.52px);
  margin-bottom: 32px;
}
h3.underlined::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  background-color: #00a1b9;
  margin-top: 8px;
}
.centered h3.underlined::after {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  border-width: 1px;
  border-style: solid;
  padding: 8px 32px;
  transition: 0.3s;
}
.btn.primary {
  border-color: #00A1B9;
  color: #000000;
  background-color: #fff;
}
.btn.primary:hover {
  background-color: #008BA0;
  color: #fff;
}
.btn.secondary {
  background-color: #00A1B9;
  color: #fff;
}
.btn.secondary:hover {
  background-color: #008BA0;
  color: #fff;
}
.btn.clearFilter {
  background: url(../layout/clearBg.svg) 16px 50% no-repeat;
  color: #3B2D2D;
  border-color: #E6E6E6;
  padding-left: 48px;
  margin-bottom: 32px;
}

.fgrid {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 16px;
}
.fullwide .fgrid {
  max-width: 100%;
  padding: 0;
}

.frow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
@media (min-width: 768px) {
  .frow {
    flex-flow: row;
  }
  .frow.vcenter {
    align-items: center;
  }
}

.fcol {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .fcol {
    width: 1px;
  }
}

.fc-1 {
  flex: 1 1 auto;
}

.fc-2 {
  flex: 2 1 auto;
}

.fc-3 {
  flex: 3 1 auto;
}

.fc-4 {
  flex: 4 1 auto;
}

.fc-5 {
  flex: 5 1 auto;
}

.fc-6 {
  flex: 6 1 auto;
}

.grid2 {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 768px) {
  .grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid3 {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid4 {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid6 {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.spacer {
  height: 64px;
  width: 100%;
}

.gallery {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery img {
  width: 100%;
  display: block;
}

.galimg {
  display: block;
}

.pictpoint {
  text-align: center;
  display: flex;
  flex-flow: column;
}
.pictpoint .img {
  max-width: 80px;
  max-height: 80px;
  margin: 0 auto 8px;
}
.pictpoint .hl {
  display: block;
}
.pictpoint p {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}
.horizontal .pictpoint {
  text-align: left;
  flex-flow: row;
  align-items: center;
}
.horizontal .pictpoint .img {
  margin: 0 16px auto 0;
}

.bignum {
  text-align: center;
  padding: 16px;
}
.bignum .num {
  font-family: "Jost", sans-serif;
  font-size: 3em;
  font-weight: 100;
  color: #3B2D2D;
  display: block;
  line-height: 100%;
  margin-bottom: 8px;
}
.bignum .hl {
  display: block;
  font-weight: 100;
}
.bignum p {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}

input, select, textarea {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: clamp(16px, calc(13.92px + 0.76vw), 22px);
  font-family: "Jost", sans-serif;
  background-color: transparent;
  border-style: solid;
  border-color: #ccc;
  border-width: 0 0 1px 0;
  padding: 8px;
  border-radius: 0;
  color: #3B2D2D;
}

select {
  position: relative;
  padding-right: 20px;
  background: #fff url(../layout/selarr.svg) calc(100% - 7px) 50% no-repeat;
  background-size: 15px auto;
}

label {
  display: flex;
  flex-flow: column;
  margin-bottom: 8px;
  color: #747474;
}
label span {
  min-width: 150px;
  margin-top: 8px;
  margin-bottom: 4px;
}
label input + span {
  margin-left: 8px;
  min-width: auto;
}

input[type=radio],
input[type=checkbox] {
  position: relative;
  margin-top: 8px;
  width: clamp(16px, calc(13.92px + 0.76vw), 22px);
  height: clamp(16px, calc(13.92px + 0.76vw), 22px);
  border: 1px solid #ccc;
}

input[type=radio]:checked:after,
input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin-top: clamp(16px, calc(13.92px + 0.76vw), 22px)/-4;
  margin-left: clamp(16px, calc(13.92px + 0.76vw), 22px)/-4;
  width: clamp(16px, calc(13.92px + 0.76vw), 22px)/2;
  height: clamp(16px, calc(13.92px + 0.76vw), 22px)/2;
  background: #3B2D2D;
}

input[type=radio],
input[type=radio]:checked:after {
  border-radius: 50%;
}

input[type=submit] {
  background: #E93A25 url(../layout/submitbg.svg?v2) 16px 50% no-repeat;
  border: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 16px 32px 16px 70px;
  text-transform: uppercase;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #0762ad;
  border-color: #0762ad;
}

.form__spec {
  visibility: hidden;
  height: 1px;
  overflow: hidden;
}

.req {
  font-weight: 700;
}
.req span::after {
  content: "*";
}

.form__quote {
  color: #fff;
  padding: 16px;
  margin: 8px 0;
}

.form__quote_success {
  background: #00A676;
}

.form__quote_err {
  background: #C93C3C;
}

.contact {
  margin-bottom: 32px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 16px;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.contact__message {
  height: 8em;
}

.contact__submit {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .contact__submit {
    margin-bottom: 0;
    margin-right: 32px;
  }
}

.contact__mandatory {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}

.menuOpened {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

.header__wrapper {
  position: relative;
  z-index: 10;
}
.header__wrapper .btn {
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
  font-weight: 500;
}

.header {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 26px;
  padding-bottom: 16px;
  position: relative;
  min-height: 60px;
}
@media (min-width: 1024px) {
  .header {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .header {
    flex-wrap: nowrap;
  }
}

.header__logo {
  position: absolute;
  width: 120px;
  top: 8px;
}
@media (min-width: 576px) {
  .header__logo {
    width: 150px;
    top: 10px;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    width: 200px;
    top: 10px;
  }
}

.header__panel {
  display: flex;
  position: fixed;
  top: 50px;
  width: 220px;
  flex-flow: column;
  background: #fff;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.2);
  align-items: flex-end;
  padding: 16px;
  gap: 16px;
  transition: 0.3s;
  right: -236px;
  border-bottom-left-radius: 8px;
}
.header__panel.opened {
  right: 0;
}
@media (min-width: 576px) {
  .header__panel {
    position: relative;
    box-shadow: none;
    background: transparent;
    flex-flow: row;
    width: 100%;
    top: auto;
    flex-wrap: wrap;
    right: auto;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .header__panel {
    margin-left: 200px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

.header__opener {
  display: inline;
  margin-left: 16px;
  font-size: 25px;
  text-decoration: none;
  color: #00A1B9;
  line-height: 25px;
  margin-top: -10px;
  position: absolute;
  right: 0;
}
.header__opener:hover {
  color: #008BA0;
}
@media (min-width: 576px) {
  .header__opener {
    display: none;
  }
}

.header__menu {
  order: 0;
}
@media (min-width: 576px) {
  .header__menu {
    order: 3;
    flex-basis: 100%;
  }
}
@media (min-width: 1024px) {
  .header__menu {
    order: 0;
    flex-basis: auto;
  }
}
.header__menu ul {
  list-style: none;
  display: flex;
  text-align: right;
  flex-flow: column;
  margin: 0;
  min-width: 200px;
}
@media (min-width: 576px) {
  .header__menu ul {
    flex-flow: row;
    margin-right: 0;
    padding: 0;
    min-width: auto;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .header__menu ul {
    justify-content: flex-start;
  }
}
.header__menu ul li {
  padding: 4px 0;
  margin: 0;
}
@media (min-width: 576px) {
  .header__menu ul li {
    margin: 0 16px;
  }
}
.header__menu ul a {
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}
@media (min-width: 768px) {
  .header__menu ul a {
    color: #000;
  }
  .header__menu ul a:hover {
    color: #008BA0;
    padding-bottom: 6px;
    border-bottom: 2px solid #008BA0;
  }
}

.header__langs {
  padding: 0;
  display: flex;
  gap: 4px;
}
@media (min-width: 768px) {
  .header__langs {
    border-left: 1px solid #ccc;
    padding-left: 16px;
  }
}

.header__lang {
  color: #747474;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
}
.header__lang:hover {
  color: #3B2D2D;
}
.header__lang-active {
  color: #008BA0;
}

.headerSocials {
  display: flex;
  gap: 8px;
}
.headerSocials img {
  display: block;
}

.header__pin {
  color: #000;
  text-decoration: none;
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
  text-transform: uppercase;
  font-weight: 500;
}
.header__pin:hover {
  color: #008BA0;
}
@media (min-width: 576px) {
  .header__pin {
    padding: 8px 0 8px 30px;
    background: url(../layout/top_pin.svg) 0% 50% no-repeat;
  }
}

@media (max-width: 576px) {
  .header .btn,
.header .btn:hover {
    background: transparent;
    border: none;
    padding: 0;
    color: #000;
  }
}
.footerWrapper {
  background: #003340;
}

.footerGrid {
  position: relative;
  padding-top: 128px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .footerGrid {
    text-align: left;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footerGrid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .footerGrid::after {
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    left: 180px;
    background: url(../layout/footerIlu.svg) 0% 0% no-repeat;
    width: 384px;
    height: 164px;
  }
}

.footerAbout {
  display: flex;
  flex-flow: column;
  gap: 32px;
  order: 4;
  grid-column: 1/2;
  text-align: center;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .footerAbout {
    grid-column: 1/4;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .footerAbout {
    grid-column: 1/2;
    order: unset;
    text-align: left;
  }
}

.footLogo {
  width: 200px;
  margin: -20px 0 0 0px;
}

.footerSocials {
  display: flex;
  gap: 8px;
  margin: auto;
}
@media (min-width: 1024px) {
  .footerSocials {
    margin: unset;
  }
}

.footerContact {
  color: #fff;
}

.footerPhone,
.footerEmail {
  color: #fff;
  display: block;
  margin-top: 16px;
}

.footerAddress {
  padding-top: 8px;
}

.footer {
  color: #B4B4B4;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: #00A1B9;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  padding: 8px 0;
}
.footer .hl {
  font-family: "Jost", sans-serif;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 27.52px);
  display: block;
  margin-bottom: 32px;
  color: #fff;
  text-transform: uppercase;
}

.copyright {
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  padding-bottom: 32px;
  color: #B4B4B4;
}
.copyright a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .copyright {
    justify-content: space-between;
    flex-flow: row;
  }
}

.footerSocials {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px auto 0 auto;
}
@media (min-width: 1024px) {
  .footerSocials {
    justify-content: flex-start;
  }
}

.content__wrapper {
  color: #707070;
}

.whiteBg {
  margin-block: 64px;
}

.brandBg {
  margin-top: 130px;
  padding: 64px 0;
  background: #F8F8F8 url(../layout/brandBg.jpg) 50% 50% no-repeat;
  min-height: 830px;
  position: relative;
}
.brandBg .container {
  position: relative;
  z-index: 1;
}
.brandBg::before {
  content: "";
  background: url(../layout/brandTop.svg) 50% 100% no-repeat;
  width: 465px;
  height: 240px;
  display: block;
  position: absolute;
  right: 100px;
  top: -85px;
}
.brandBg::after {
  content: "";
  background: url(../layout/brandBottom.svg) 50% 100% no-repeat;
  width: 230px;
  height: 104px;
  display: block;
  position: absolute;
  left: 50px;
  bottom: -15px;
}
@media (min-width: 576px) {
  .brandBg::after {
    left: 200px;
  }
}
.brandBg h2 {
  position: relative;
  z-index: 2;
}

.hpTopBg {
  background: url(../layout/topBg.png) 0% 0%;
  margin-top: 50px;
  margin-bottom: 100px;
}

.hpBanner {
  position: relative;
}
.hpBanner video {
  border-radius: 6px;
  overflow: hidden;
  margin-top: -50px;
  margin-bottom: -50px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hpBanner video {
    height: 100%;
  }
}
.hpBanner::after {
  content: "";
  background: url(../layout/hpHeadShadow.png) 50% 0% no-repeat;
  height: 50px;
  width: 100%;
  background-size: 100% auto;
  display: block;
  margin-top: 42px;
  position: absolute;
  margin-bottom: -50px;
}

.hpBannerTexts {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}
.hpBannerTexts strong {
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  letter-spacing: 0.25em;
}
.hpBannerTexts h1 {
  margin-top: 16px;
  font-size: clamp(33.28px, calc(23.88px + 3.24vw), 55px);
  line-height: 110%;
  max-width: 600px;
  color: #fff;
}

.rental {
  display: flex;
  background: #F7F7F7 url(../layout/rentalBg.svg) 0% 50% no-repeat;
  padding: 32px 32px 32px 200px;
  margin: 64px 0;
  flex-flow: column;
}
.rental h3 {
  line-height: 110%;
  flex-basis: 100%;
  margin-left: 0;
}
.rental .btn {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .rental {
    flex-flow: row;
    gap: 64px;
    align-items: center;
  }
  .rental h3 {
    flex-basis: 70%;
  }
}

.hpContactGrid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-block: 64px;
  gap: 32px;
}
@media (min-width: 1024px) {
  .hpContactGrid {
    grid-template-columns: 1fr 340px;
  }
}

.fbBanner {
  background: url(../layout/fb_banner2.jpg) 50% 50% no-repeat;
  height: 500px;
  max-width: 320px;
  margin: auto;
  padding: 32px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  font-weight: 500;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 8px;
  overflow: hidden;
}
.fbBanner:hover {
  color: #fff;
}
.fbBanner .btn {
  margin-top: 16px;
  background-color: #fff;
  color: #000;
  border: none;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}

.hpContBox {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .hpContBox {
    grid-template-columns: 1fr 55%;
  }
}
.hpContBox > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  object-position: 50% 50%;
}
@media (min-width: 768px) {
  .hpContBox > img {
    border-radius: 0 8px 8px 0;
  }
}
.hpContBox .texts {
  text-align: center;
  padding: 64px 32px 32px;
  display: flex;
  flex-flow: column;
  gap: 16px;
  align-items: center;
}
.hpContBox .texts h3 {
  line-height: 110%;
}

.headerWrapper {
  color: #fff;
  background: url(../layout/headBg.png) 0px 25px;
  padding-block: 16px;
  margin-bottom: 32px;
}
.headerWrapper h1 {
  color: #fff;
}
.headerWrapper.bottomSpace {
  padding-bottom: 100px;
}
.headerWrapper.eyes {
  background-image: url(../layout/footerIlu.svg), url(../layout/headBg.png);
  background-position: calc(50% + 420px) 100%, 0px 25px;
  background-repeat: no-repeat, repeat;
}

.about_doubleImg {
  display: flex;
  margin-top: -110px;
  justify-content: space-between;
  align-items: flex-start;
}
.about_doubleImg img:nth-child(1) {
  flex-basis: 40%;
  margin-right: -50px;
  z-index: 2;
  margin-top: 50px;
}
.about_doubleImg img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.contact_openblock {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  margin-top: 0;
}
.contact_openblock::after, .contact_openblock::before {
  display: none;
}

.contact_openbox {
  max-width: 100%;
  margin: auto;
  z-index: 2;
  position: relative;
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  padding: 32px;
  width: 550px;
  text-align: center;
}
.contact_openbox h3::after {
  margin-inline: auto;
}
.contact_openbox h4 {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  text-transform: uppercase;
  color: #3B2D2D;
  margin-top: 32px;
}
.contact_openbox h4::after {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  background-color: #00A1B9;
  margin-top: 8px;
  margin-inline: auto;
}

blockquote {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  background: #00A1B9;
  border-radius: 8px;
  color: #fff;
  padding: 8px 32px;
  margin-block: 16px;
}

.otrow {
  display: flex;
  justify-content: space-between;
  color: #3B2D2D;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  padding: 4px 16px;
}

.contact_header {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .contact_header {
    flex-flow: row;
  }
}

.contact_info {
  padding: 32px;
  background: #fff;
  flex-basis: 50%;
  width: 100%;
  background: url(../layout/contactBg.jpg) 100% 0% no-repeat;
  border-radius: 8px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
  z-index: 2;
  padding: 8px 165px 8px 32px;
  color: #3B2D2D;
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
}
@media (min-width: 768px) {
  .contact_info {
    margin: 128px -100px 70px 0;
    width: auto;
  }
}
.contact_info .cblock {
  padding-block: 16px;
}
.contact_info .hl {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}
.contact_info .crow {
  display: flex;
  padding: 8px 0;
}
.contact_info .clab {
  flex-basis: 50%;
  font-weight: 700;
}

.contact_map {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .contact_map {
    height: 600px;
  }
}

.direction {
  display: flex;
  padding-left: 100px;
  color: #3B2D2D;
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
  background-position: 20px 50%;
  background-repeat: no-repeat;
  align-items: center;
  padding-block: 16px;
  min-height: 90px;
}
.direction strong {
  text-transform: uppercase;
  flex-basis: 20%;
  text-align: left;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}
.direction .dist {
  flex-basis: 25%;
  text-align: left;
}
.direction .dir {
  flex-basis: 50%;
  text-align: left;
}
.direction.car {
  background-image: url(../layout/c_car.svg);
}
.direction.mhd {
  background-image: url(../layout/c_tram.svg);
  background-position: 28px 50%;
}
.direction.foot {
  background-image: url(../layout/c_foot.svg);
  background-position: 28px 50%;
}
.direction + .direction {
  border-top: 1px solid #E6E6E6;
}

.contact_people {
  display: flex;
  gap: 32px;
  flex-flow: row wrap;
}
@media (min-width: 768px) {
  .contact_people {
    flex-flow: row;
  }
}
.contact_people .underlined {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .contact_people .underlined {
    margin-right: auto;
    flex-basis: 30%;
  }
}
.contact_people .person {
  flex-basis: 25%;
}

.pageheader {
  position: relative;
  margin-top: -109px;
}
.pageheader .bgimg img {
  width: 100%;
}
.pageheader .inner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}
.pageheader h1, .pageheader p {
  color: #fff;
  margin-bottom: 32px;
}
.pageheader h1 {
  font-weight: 400;
}
.pageheader h1::after {
  display: none;
}
.pageheader .ctabut {
  margin: 0;
}
@media (max-width: 1024px) {
  .pageheader .bgimg {
    height: 500px;
  }
  .pageheader .bgimg picture {
    display: flex;
    height: 100%;
  }
  .pageheader .bgimg img {
    object-fit: cover;
    object-position: 50% 0%;
  }
}

.hpHero .ctabut {
  color: #fff;
}
.hpHero .ctabut::before {
  background-image: url(../layout/ctabutbg.svg);
}
.hpHero .pageheader_hl {
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.33rem, calc(1.87rem + 2.31vw), 3.66rem);
  line-height: 90%;
}
.hpHero .pageheader_hl span {
  color: #D91E05;
}
.hpHero + div {
  position: relative;
}

.router {
  color: #3B2D2D;
  text-decoration: none;
  text-align: left;
  display: block;
  padding: 32px 16px;
}
.router:hover {
  color: #3B2D2D;
}
@media (max-width: 768px) {
  .router {
    padding: 16px;
  }
}

.router__img {
  display: block;
  margin-bottom: 16px;
}
.router__img img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.8;
  transition: 0.3s;
}
.router__img:hover img {
  opacity: 1;
}

.router__hl {
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #3B2D2D;
  display: block;
  margin-bottom: 4px;
}

.router__text {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  display: block;
  margin-bottom: 16px;
  color: #747474;
}

.catrouter__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  margin-block: 64px;
}
@media (min-width: 576px) {
  .catrouter__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .catrouter__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.catrouter {
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
  display: flex;
  flex-flow: column;
  overflow: hidden;
}
.catrouter .router__img {
  background: #F8F8F8;
  width: 100%;
  height: 200px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 0;
}
.catrouter .router__img img {
  object-position: 50% 50%;
  object-fit: none;
  width: 100%;
  height: 100%;
}
.catrouter .router__hl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 16px;
  transition: 0.3s;
  margin: 0;
}
.catrouter:hover .router__hl {
  color: #fff;
}
.catrouter:hover .router__img img {
  transform: scale(1.1);
}
.catrouter__drogerie:hover .router__hl {
  background-color: #E30162;
}
.catrouter__elektro:hover .router__hl {
  background-color: #122360;
}
.catrouter__moda:hover .router__hl {
  background-color: #E60023;
}
.catrouter__food:hover .router__hl {
  background-color: #247431;
}
.catrouter__services:hover .router__hl {
  background-color: #0182C8;
}
.catrouter__sport:hover .router__hl {
  background-color: #9B5D37;
}
.catrouter__restaurants:hover .router__hl {
  background-color: #FFA601;
  color: #000;
}
.catrouter__financial:hover .router__hl {
  background-color: #0182C8;
}

.catrouter__all {
  background-color: #00A1B9;
  color: #fff;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  font-weight: 500;
  align-items: center;
  background-image: url(../layout/router_all.svg);
  background-repeat: no-repeat;
  background-position: 50% 34%;
  min-height: 272px;
}
.catrouter__all:hover {
  background-color: #008BA0;
  color: #fff;
}

.linkedfile {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid #818181;
  margin-bottom: auto;
  padding: 32px 0;
}
.linkedfile img {
  margin-bottom: 16px;
  width: 80px;
}
.linkedfile strong {
  font-weight: 400;
}

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}
@media (max-width: 1024px) {
  .people {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .people {
    grid-template-columns: 1fr;
  }
}

.person {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
  color: #3B2D2D;
}
.person .photo {
  width: 66px;
  height: 100px;
  margin-bottom: auto;
  margin-top: 10px;
  overflow: hidden;
}
.person .photo img {
  width: 80%;
}
.person .text {
  padding: 8px 32px 8px 0;
}
.person .fce {
  color: #3B2D2D;
  font-weight: 600;
  font-style: normal;
  display: block;
  margin-bottom: 16px;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}
.person .hl {
  font-weight: 600;
  color: #3B2D2D;
  display: block;
  margin-bottom: 8px;
}
.person .phone,
.person .email {
  display: block;
  margin-bottom: 8px;
}
.person .phone strong,
.person .email strong {
  font-weight: 400;
}
.person .phone strong a,
.person .email strong a {
  text-decoration: none;
  color: #3B2D2D;
}
.person .phone strong a:hover,
.person .email strong a:hover {
  text-decoration: underline;
  color: #3B2D2D;
}

.hr_position {
  margin-bottom: 16px;
  padding: 64px 0;
  box-sizing: border-box;
}
.hr_position .text {
  margin-bottom: 16px;
}
.hr_position .hl {
  font-weight: 600;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 27.52px);
}
.hr_position .more {
  text-decoration: underline;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.hr_position .extblock {
  display: none;
}
.hr_position .block {
  margin-bottom: 16px;
}
.hr_position ul li {
  color: #747474;
}
.hr_position .ctabut {
  display: inline-block;
}

.bcbg {
  padding: 16px 0;
  margin: auto;
}

.breadcrumbs {
  font-size: clamp(12px, calc(9.12px + 0.40vw), 14px);
  margin-block: 4px;
  color: #fff;
}
.breadcrumbs a {
  text-decoration: none;
  font-weight: 300;
  color: #fff;
}
.breadcrumbs .sep {
  margin-inline: 8px;
  color: #BEBEBE;
}

.hpNews, .news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 64px 0;
}
@media (min-width: 768px) {
  .hpNews, .news {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.articleBox {
  text-decoration: none;
  display: flex;
  flex-flow: column;
  border-radius: 8px;
  border: 1px solid #E6E6E6;
  overflow: hidden;
  background: #fff;
}
.articleBox img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.articleBox .texts {
  padding: 32px;
  text-align: left;
}
.articleBox .hl {
  display: block;
  font-size: clamp(16px, calc(13.92px + 0.76vw), 22px);
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #000;
}
.articleBox .p {
  color: #747474;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  margin-bottom: 16px;
  display: block;
}
.articleBox .readmore {
  display: inline-block;
  margin: auto auto 0 0;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}
.news .articleBox {
  border: 1px solid #ccc;
}
.news .articleBox .texts {
  display: block;
  padding: 32px;
}

.imagetext {
  display: flex;
  align-items: center;
  gap: 64px;
}
.imagetext .text,
.imagetext .img {
  flex: 1 1 50%;
  width: 50%;
}
.imagetext.left .text {
  margin-left: 64px;
}
.imagetext.right .img {
  order: 2;
}
.imagetext.right .text {
  margin-right: 64px;
}
.imagetext h3 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 27.52px);
}
@media (max-width: 1024px) {
  .imagetext {
    align-items: center;
    flex-flow: column;
  }
  .imagetext .text,
.imagetext .img {
    flex: 1 1 100%;
    width: 100%;
  }
  .imagetext .img {
    max-width: 100%;
  }
  .imagetext.left .text {
    margin-left: 0;
  }
  .imagetext.right .img {
    order: 0;
  }
  .imagetext.right .text {
    margin-right: 0;
  }
}
.imagetext + .imagetext {
  margin-top: 128px;
}

.unitsFilter {
  border-radius: 8px;
  margin-top: -95px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 32px;
}
.unitsFilter .ufc {
  display: none;
}
.unitsFilter .ufc.ufc_alphabet.active {
  display: flex;
}
.unitsFilter .ufc.cats__grid.active {
  display: grid;
}
.unitsFilter .ufc_alphabet {
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 16px;
}
.unitsFilter .ufc_alphabet a, .unitsFilter .ufc_alphabet span {
  color: #000000;
  text-decoration: none;
  display: inline-block;
  min-width: 30px;
  text-align: center;
  font-weight: 500;
}
.unitsFilter .ufc_alphabet a.disabled, .unitsFilter .ufc_alphabet span.disabled {
  color: #b2b2b2;
}
.unitsFilter .cats__grid {
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
}
@media (min-width: 576px) {
  .unitsFilter .cats__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .unitsFilter .cats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.unitsFilter .unit__cat {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #D8D8D8;
}

.unitsFilterHead {
  display: flex;
  flex-wrap: wrap;
}
.unitsFilterHead a {
  flex: 1 1 auto;
  text-decoration: none;
  text-transform: uppercase;
  color: #3B2D2D;
  display: inline-flex;
  align-items: center;
  padding: 16px 16px;
  margin-bottom: -1px;
  border: 1px solid transparent;
}
.unitsFilterHead a::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #000;
  border-width: 0 0 2px 2px;
  rotate: -45deg;
  display: inline-block;
  position: relative;
  background-color: transparent;
  margin-left: 16px;
  margin-top: -3px;
}
.unitsFilterHead a.active {
  border: 1px solid #D9D9D9;
  background: #F7f7f7;
  border-bottom: 1px solid #F7F7F7;
}
.unitsFilterHead a.active::after {
  rotate: 135deg;
  margin-top: 0px;
  margin-bottom: -3px;
}
@media (min-width: 576px) {
  .unitsFilterHead a {
    flex: 0 0 auto;
    padding: 16px 32px;
  }
  .unitsFilterHead a::after {
    margin-left: 32px;
  }
}
@media (min-width: 768px) {
  .unitsFilterHead {
    flex-wrap: nowrap;
  }
}

.unitsFilterContent {
  background: #F7F7F7;
  border: 1px solid #D9D9D9;
  border-radius: 0 0 8px 8px;
}

.unitsFilterSearch {
  align-self: center;
  margin-left: auto;
  padding-left: 16px;
  width: 500px;
  max-width: 100%;
  order: -1;
  flex-basis: 100%;
  margin-block: 16px;
}
@media (min-width: 768px) {
  .unitsFilterSearch {
    order: 3;
    flex-basis: auto;
  }
}

.unitsFilterSearch form {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 16px;
}

.ufSearchText {
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  padding: 8px;
  width: 100%;
}

input.ufSearchBtn {
  background: url(../layout/srch.svg) no-repeat 50% 50%;
  padding: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  margin-left: -25px;
}

.unitslist h3 {
  text-transform: uppercase;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 27.52px);
  margin-bottom: 16px;
}

.unitslist__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 64px;
}
@media (min-width: 576px) {
  .unitslist__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .unitslist__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.unit {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  text-decoration: none;
  color: #000000;
  display: flex;
  flex-flow: column;
  align-items: center;
  background: #fff;
}
.unit:hover {
  color: #000000;
}

.unit__img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 16px;
}
.unit__img img {
  max-width: 100%;
  max-height: 100px;
}

.unit__hl {
  width: 100%;
  text-align: center;
  padding: 16px;
  border-top: 1px solid #e6e6e6;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
  font-weight: 500;
}

.shopUnit h1 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-flow: column;
}
.shopUnit h1 img {
  margin-bottom: 8px;
  max-height: 80px;
}
@media (min-width: 576px) {
  .shopUnit h1 {
    flex-flow: row;
    align-items: center;
  }
  .shopUnit h1 img {
    margin-right: 32px;
    margin-bottom: 0;
    max-height: 60px;
  }
}
.shopUnit .cover {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .shopUnit .cover {
    height: auto;
    margin-bottom: 64px;
  }
}
.shopUnit h3 {
  text-transform: uppercase;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 27.52px);
  margin-bottom: 32px;
}
.shopUnit h3::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  background-color: #00a1b9;
  margin-top: 8px;
}
.centered .shopUnit h3::after {
  margin-left: auto;
  margin-right: auto;
}
.shopUnit .contentGrid {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .shopUnit .contentGrid {
    grid-template-columns: 40% 1fr;
    grid-gap: 64px;
    padding-inline: 32px;
  }
}
.shopUnit .info {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 64px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-flow: column;
}
@media (min-width: 768px) {
  .shopUnit .info {
    margin-top: -120px;
    margin-bottom: 0;
  }
}
.shopUnit .info img {
  width: 100%;
}
.shopUnit .cblock {
  color: #000000;
  padding-block: 32px;
  font-size: clamp(14px, calc(10.72px + 0.55vw), 17.6px);
}
.shopUnit .crow {
  display: grid;
  grid-template-columns: 40% 1fr;
}
.shopUnit .clab {
  font-weight: 700;
}
.shopUnit .cvalRow {
  display: grid;
  grid-template-columns: 40% 1fr;
}
.shopUnit .cval {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
}
.shopUnit .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.shopUnit .gallery .galimg {
  display: block;
}
.shopUnit .gallery .galimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .shopUnit .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.crow + .crow {
  margin-top: 8px;
}

.cblock + .cblock {
  border-top: 1px solid #d9d9d9;
}

.similarUnits {
  background: #f7f7f7;
  max-width: 1600px;
  margin: 0 auto 128px;
  padding-block: 32px;
}
.similarUnits .unitslist__grid {
  margin-bottom: 0;
}
.similarUnits h3 {
  text-transform: uppercase;
  font-size: clamp(18px, calc(14.72px + 1.03vw), 27.52px);
  margin-bottom: 32px;
}
