@font-face {
    font-family: 'Labor Union';
    src: url('fonts/LaborUnion/LaborUnion-Regular.eot');
    src: url('fonts/LaborUnion/LaborUnion-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/LaborUnion/LaborUnion-Regular.woff2') format('woff2'),
        url('fonts/LaborUnion/LaborUnion-Regular.woff') format('woff'),
        url('fonts/LaborUnion/LaborUnion-Regular.ttf') format('truetype'),
        url('fonts/LaborUnion/LaborUnion-Regular.svg#LaborUnion-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*  {
    margin: 0;
    padding: 0;
    max-height: 999999px;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}
*,
::after,
::before {
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}
html, body {
    width: 100%;
    min-width: 320px;
    height: 100%;
    margin: 0;
    padding: 0;
}
.body {
    position: relative;
    display: flex;
    padding: 60px 15px;
    min-height: 100vh;
    justify-content: center;
    background: #5f211c;
    font-family: Times New Roman, serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    font-style: normal;
    color: #fff9d1;
    overflow: hidden;
    z-index: 1;
}
.body:before,
.body:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.body:before {
    background: url(images/background_up.png) repeat-x 50% 0;
}
.body:after {
    background: url(images/background_down.png) repeat-x 50% 100%;
}
.wrap {
    position: relative;
    z-index: 1;
}
a {
    color: #fff9d1;
    text-decoration: none;
    outline: 0;
    transition-duration: 0.2s;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}
.logo__animated {
    position: relative;
    margin: 0 auto 20px;
    width: 375px;
    height: 316px;
    background: url(images/logo-frame.webp) no-repeat;
    background-size: 100% auto;
}
.logo__body {
    position: absolute;
    left: 50px;
    right: 50px;
    top: 20px;
    bottom: 100px;
    border-radius: 50%;
    background: #5f211c;
    overflow: hidden;
    z-index: -1;
}
.logo__left {
    position: absolute;
    left: 0;
    top: 60px;
    width: 105px;
    height: 100%;
    background: url(images/logo-part-left.webp) no-repeat;
    background-size: 100% auto;
    animation: slideFromLeft 1s forwards;
    animation-delay: 1s;
    opacity: 0;
}
.logo__right {
    position: absolute;
    right: 0;
    top: 60px;
    width: 95px;
    height: 100%;
    background: url(images/logo-part-right.webp) no-repeat;
    background-size: 100% auto;
    animation: slideFromRight 0.9s forwards;
    animation-delay: 1s;
    opacity: 0;
}
@keyframes slideFromLeft {
    100% {
        left: 50px;
        opacity: 1;
    }
}
@keyframes slideFromRight {
    100% {
        right: 40px;
        opacity: 1;
    }
}
.text {
    position: relative;
    margin: 0 auto 40px;
    max-width: 400px;
    font-family: 'Labor Union';
    font-size: 28px;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
}
.text:before,
.text:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 375px;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, #935e00, #935e00 2px, transparent 2px, transparent 10px, #935e00 10px);
    background-size: 100% 2px;
    background-position: 0 0;
    background-repeat: no-repeat;
}
.text:before {
    right: calc(100% + 80px);
}
.text:after {
    left: calc(100% + 80px);
}
.contacts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 0 125px;
}
.contacts__left {
    width: 340px;
    text-align: right;
}
.contacts__right {
    width: 340px;
}
.address {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 34px;
    font-style: italic;
}
.address span {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #dacbab;
}
.map {
    position: relative;
    display: inline-block;
    padding: 0 0 0 32px;
    font-size: 18px;
    color: #cdab81;
    font-style: italic;
}
.map:before,
.map:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    margin: 2px 0 0;
    width: 16px;
    height: 12px;
    transition-duration: 0.2s;
}
.map:before {
    background: url(images/map-hover.svg) no-repeat;
    background-size: 100% auto;
    opacity: 0;
}
.map:after {
    background: url(images/map.svg) no-repeat;
    background-size: 100% auto;
    opacity: 1;
}
.map span {
    position: relative;
    padding: 0 0 4px;
}
.map span:before,
.map span:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    transition-duration: 0.2s;
}
.map span:before {
    background-image: repeating-linear-gradient(90deg, #fef9d2, #fef9d2 1px, transparent 1px, transparent 4px, #fef9d2 4px);
    background-size: 100% 1px;
    background-position: 0 0;
    background-repeat: no-repeat;
    opacity: 0;
}
.map span:after {
    background-image: repeating-linear-gradient(90deg, #cdab81, #cdab81 1px, transparent 1px, transparent 4px, #cdab81 4px);
    background-size: 100% 1px;
    background-position: 0 0;
    background-repeat: no-repeat;
    opacity: 1;
}
.clock {
    margin: 25px 0 0;
    font-size: 20px;
    line-height: 26px;
    font-style: italic;
}
.phone1 {
    margin: 0 0 25px;
}
.phone1 span {
    display: block;
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 24px;
    font-style: italic;
}
.phone1 a {
    font-family: 'Labor Union';
    font-size: 24px;
}
.phone2 span {
    display: block;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 22px;
    font-style: italic;
}
.phone2 a {
    font-family: 'Labor Union';
    font-size: 20px;
}
.contacts__center {
    margin: 0 50px;
}
.btn {
    position: relative;
    display: block;
    margin: 0 auto 25px;
    padding: 20px 0;
    width: 298px;
    height: 74px;
    font-family: 'Labor Union';
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    color: #60221c;
}
.btn span {
    display: block;
    margin: 2px 0 0;
    font-size: 12px;
}
.btn:before,
.btn:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition-duration: 0.2s;
    z-index: -1;
}
.btn:before {
    background: url(images/button-hover.svg) no-repeat;
    background-size: 100% auto;
    opacity: 0;
}
.btn:after {
    background: url(images/button.svg) no-repeat;
    background-size: 100% auto;
    opacity: 1;
}
.menu {
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 22px 0;
    width: 220px;
    height: 55px;
    font-family: 'Labor Union';
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}
.menu:before,
.menu:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition-duration: 0.2s;
    z-index: -1;
}
.menu:before {
    background: url(images/button-menu-hover.svg) no-repeat;
    background-size: 100% auto;
    opacity: 0;
}
.menu:after {
    background: url(images/button-menu.svg) no-repeat;
    background-size: 100% auto;
    opacity: 1;
}
.bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.logo {
    width: 340px;
    text-align: right;
}
.logo img {
    display: inline-block;
    width: 210px;
}
.email {
    display: block;
    margin: 0 30px;
    width: 60px;
    height: 60px;
    background: #4b1814 url(images/url.svg) no-repeat 50% 50%;
    background-size: 24px auto;
    border-radius: 50%;
}
.info {
    width: 340px;
    font-size: 14px;
    line-height: 24px;
}

@media (max-width: 991px) {
    .body {
        padding: 40px 15px;
    }
    .body:before,
    .body:after {
        background-size: auto 150px;
    }
    .logo__animated {
        margin: 0 auto 15px;
        width: 220px;
        height: 185px;
    }
    .logo__body {
        left: 30px;
        right: 30px;
        top: 12px;
        bottom: 60px;
    }
    .logo__left {
        top: 35px;
        width: 60px;
    }
    .logo__right {
        top: 35px;
        width: 52px;
    }
    @keyframes slideFromLeft {
        100% {
            left: 30px;
            opacity: 1;
        }
    }
    @keyframes slideFromRight {
        100% {
            right: 24px;
            opacity: 1;
        }
    }
    .text {
        margin: 0 auto 15px;
        max-width: 230px;
        font-size: 16px;
        line-height: 26px;
    }
    .text:before {
        right: calc(100% + 20px);
    }
    .text:after {
        left: calc(100% + 20px);
    }
    .contacts {
        flex-direction: column;
        margin: 0 0 70px;
    }
    .contacts__left,
    .contacts__right {
        width: 100%;
        text-align: center;
    }
    .address {
        margin: 0 0 8px;
        font-size: 20px;
        line-height: 26px;
    }
    .address span {
        margin: 5px 0 0;
        font-size: 14px;
        line-height: 20px;
    }
    .map {
        padding: 0 0 0 28px;
        font-size: 14px;
    }
    .map:before,
    .map:after {
        margin: 1px 0 0;
        width: 14px;
        height: 10px;
    }
    .clock {
        margin: 15px 0 0;
        font-size: 16px;
        line-height: 22px;
    }
    .phone1 {
        margin: 0 0 15px;
    }
    .phone1 span {
        margin: 0 0 8px;
        font-size: 16px;
        line-height: 22px;
    }
    .phone1 a {
        font-size: 20px;
    }
    .phone2 span {
        margin: 0 0 6px;
        font-size: 14px;
        line-height: 20px;
    }
    .phone2 a {
        font-size: 18px;
    }
    .contacts__center {
        margin: 25px 0 20px;
    }
    .btn {
        margin: 0 auto 20px;
        padding: 16px 0;
        width: 242px;
        height: 60px;
        font-size: 15px;
        line-height: 15px;
    }
    .btn span {
        font-size: 10px;
    }
    .menu {
        padding: 18px 0;
        width: 180px;
        height: 46px;
        font-size: 10px;
        line-height: 10px;
    }
    .bottom {
        flex-wrap: wrap;
    }
    .logo,
    .logo img {
        width: 150px;
    }
    .email {
        margin: -5px 0 0 20px;
        width: 42px;
        height: 42px;
        background-size: 18px auto;
    }
    .info {
        margin: 10px 0 0;
        width: 100%;
        font-size: 10px;
        line-height: 20px;
        text-align: center;
    }
}

/* hover */
@media (min-width: 992px) {
    .btn:hover:before,
    .menu:hover:before,
    .map:hover:before,
    .map:hover span:before {
        opacity: 1;
    }
    .btn:hover:after,
    .menu:hover:after,
    .map:hover:after,
    .map:hover span:after {
        opacity: 0;
    }
    .map:hover {
        color: #fef9d2;
    }
    .email:hover {
        background-color: #340906;
    }
}

/* grid */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1374px) {
    .container {
        max-width: 1344px;
    }
}

.footer-requisites {
    margin-top: 28px;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: #f4e5b8;
}

.footer-requisites__company {
    margin-bottom: 8px;
}

.footer-requisites__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-requisites__links a {
    color: #f4e5b8;    
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
    font-size: 15px;
}

.footer-requisites__links a:hover {
    opacity: 0.75;
}

.cookie-popup {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 360px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
}

.cookie-popup[hidden] {
  display: none !important;
}

.cookie-popup__box {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-sizing: border-box;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.cookie-popup__text {
  margin: 0 0 14px;
  color: #222222;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 400;
}

.cookie-popup__text a {
  color: #a2170c;
  text-decoration: none;  
}

.cookie-popup__text a:hover {
  text-decoration: underline;
}

.cookie-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 33px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  transition: all 0.2s ease;
}

.cookie-popup__btn:hover {
  opacity: 0.96;
}

.cookie-popup__btn:active {
  transform: translateY(1px);
}

.cookie-popup__btn--accept {
  background: #4b1511;
  color: #ffffff;
  border: none;
}

.cookie-popup__btn--accept:hover {
  background: #5f211c;
}

.cookie-popup__btn--decline {
  background: #eeeeee;
  color: #111111;
  border: none;
}

.cookie-popup__btn:focus-visible,
.cookie-popup__text a:focus-visible {
  outline: 2px solid rgba(45, 140, 255, 0.35);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .cookie-popup {
    left: 10px;
    bottom: 10px;
    width: 300px;
    max-width: calc(100vw - 20px);
  }

  .cookie-popup__box {
    border-radius: 14px;
    padding: 12px 12px 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  .cookie-popup__text {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .cookie-popup__actions {
    gap: 7px;
  }

  .cookie-popup__btn {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 7px;
  }
}

@media (max-width: 420px) {
  .cookie-popup {
    left: 8px;
    bottom: 8px;
    width: auto;
    max-width: calc(100vw - 16px);
  }

  .cookie-popup__box {
    padding: 10px 10px 9px;
  }

  .cookie-popup__text {
    font-size: 11px;
    line-height: 1.32;
    margin-bottom: 9px;
  }

  .cookie-popup__btn {
    min-height: 28px;
    font-size: 11px;
  }
}

.contacts__requisites {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #b9d9b4;
    color: #2d2d2d;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.contacts__requisites-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #2d2d2d;
}

.contacts__requisites-row {
    margin-bottom: 14px;
}

.contacts__requisites-row:last-child {
    margin-bottom: 0;
}

.contacts__requisites strong {
    font-weight: 700;
    color: #2d2d2d;
}

@media (max-width: 768px) {
    .contacts__requisites {
        margin-top: 24px;
        padding-top: 20px;
        font-size: 13px;
    }

    .contacts__requisites-title {
        font-size: 15px;
    }
}