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

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

#root,
#__next {
  isolation: isolate;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 321px) {
  html {
    font-size: 11px;
  }
}

body {
  min-width: 320px;
  height: calc(var(--vh, 1vh) * 100);
  font-family: "Times New Roman", Times, serif;
}

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

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.container .block {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px 0;
  background-color: #fff3e5;
  font-size: 1.875rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.container .block img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .container .block img {
    width: auto;
    height: 200%;
    object-fit: unset;
  }
}
.container .block.single {
  border-right: 1px solid #e5e2dd;
}
@media screen and (max-width: 1023px) {
  .container .block {
    flex-basis: 100%;
    flex-direction: column;
    height: 50%;
  }
  .container .block.single {
    border-bottom: 2px solid #d3d3d3;
  }
}
.container.closed {
  background-color: #fff3e5;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px 0;
  font-weight: 600;
  color: #1d1d1b;
}
.container.closed .logo {
  width: 160px;
}

.modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal .modal-container {
  max-width: 90%;
  background-color: white;
  text-align: center;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
}
.modal h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.modal p {
  margin-bottom: 40px;
  font-size: 16px;
}
.modal .button-group {
  display: flex;
  gap: 0 15px;
}
.modal .button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  flex-basis: 100%;
  background-color: black;
  color: white;
  padding: 10px 5px;
}
.modal .close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  transform: rotate(45deg);
}
.modal .close:before, .modal .close:after {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid black;
  position: absolute;
  top: 50%;
  left: 0;
}
.modal .close:before {
  transform: rotate(90deg);
}

/*# sourceMappingURL=styles.css.map */
