/* nul.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li,
dl {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

input[type=number] {
  appearance: textfield;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
body {
  font-weight: 400;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.57;
  color: #1D1D1D;
  background-color: #FFF;
}

.app {
  padding: 0;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  font-weight: 600;
  color: #1D1D1D;
}

h1 {
  font-size: 2rem;
  line-height: 2rem;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
    line-height: 1.5rem;
    padding: 25px 0;
  }
}

h2, h3 {
  font-size: 1.875rem;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  h2, h3 {
    font-size: 1.25rem;
    line-height: 1.25rem;
    padding: 15px 0;
  }
}

p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #706F6D;
  padding: 10px 0;
}

/* head.scss cleaned */
.header {
  width: 100%;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 11;
  border-bottom: 1px solid #989898;
}

.header-header {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  padding: 0;
}

@media (max-width: 1100px) {
  .header-header {
    padding: 0;
  }
}
.header-menu {
  display: flex;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

.header-list {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #706F6D;
}

.header-list a {
  position: relative;
}
.header-list a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -3px;
  left: 50%;
  background-color: #1D1D1D;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}
.header-list a:hover::before {
  width: 100%;
  left: 0;
}

.header-item {
  padding: 10px 0;
}

.sub-list {
  display: none;
  width: 400px;
  margin-top: 0;
  position: absolute;
  top: 30px;
  background-color: #f7f7f7;
  padding: 30px;
}

.header-link {
  font-size: 1rem;
  text-transform: uppercase;
}

.sub-item {
  padding: 5px 0;
}

.sub-link {
  text-transform: none;
}

.header-contact {
  display: flex;
  gap: 20px;
}

.header-contact img {
  width: 34px;
  height: 34px;
}

.header-burger {
  display: none;
  width: 24px;
  height: 13px;
  margin: 25px 5px 25px 10px;
  position: relative;
}
.header-burger span {
  width: 100%;
  height: 2px;
  background-color: #000;
}
.header-burger::before, .header-burger::after {
  background-color: #000;
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
  transition: all 0.3s ease;
}
.header-burger::before {
  top: 0;
}
.header-burger::after {
  bottom: 0;
}
.header-burger.active span {
  transform: scale(0);
}
.header-burger.active::before {
  transform: rotate(45deg);
  top: 5.5px;
}
.header-burger.active::after {
  transform: rotate(-45deg);
  bottom: 5.5px;
}

@media (max-width: 768px) {
  .header-burger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-list {
    flex-direction: column;
    gap: 18px;
    background-color: #1D1D1D;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 78px;
    left: -100%;
    transition: 0.5s;
    color: #FFF;
    padding-left: 20px;
    justify-content: flex-start;
    padding-top: 30px;
  }
  .header-list.active {
    left: 0;
  }
  .sub-list {
    color: #1D1D1D;
    position: static;
  }
}
.language-switcher {
  font-size: 1rem;
  text-transform: uppercase;
}

body.no-scroll {
  overflow: hidden;
}

@media (min-width: 769px) {
  .header-item {
    position: relative;
  }
  .header-item:hover .sub-list {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .sub-list {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }
  .sub-list .sub-item {
    padding: 0 20px;
    white-space: nowrap;
  }
  .sub-list .sub-link {
    display: block;
    padding: 8px 0;
    text-decoration: none;
  }
  .sub-list .sub-link:hover {
    color: #000;
  }
}
.container {
  max-width: 1440px;
  padding: 0 110px;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 50px;
  }
}
@media (max-width: 820px) {
  .container {
    padding: 0 15px;
  }
}
.text-section p {
  text-align: justify;
  margin-bottom: 10px;
}

.text-section ul,
.text-section li,
.rule ul,
.rule li {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #706F6D;
  list-style-position: outside;
  padding: 0 0 10px 0;
  margin: 0 0 0 10px;
}

table {
  width: 100%;
  padding: 20px 5px;
}

td,
th {
  border-bottom: 1px solid #5C5C5C;
  border-right: 1px solid #989898;
}

.footer-container {
  position: relative;
}

.footer {
  width: 100%;
  height: 169px;
}

.footer-bg {
  width: 100%;
  height: 269px;
  background-image: url(../img/footer-bg.webp);
}

@media (max-width: 798px) {
  .footer-bg {
    background-image: url(../img/footer-bg-800.webp);
  }
}
.footer-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  right: 20px;
  padding: 55px;
  width: 802px;
  border: 1px solid #d7d7d7;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}

.footer-info {
  border-bottom: 1px solid #5C5C5C;
}

.footer-head {
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  color: #706F6D;
}

.footer-info-title {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.25rem;
  text-align: center;
  padding: 30px 0;
  color: #706F6D;
}

.footer-info-contact {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  line-height: 24px;
  color: #1D1D1D;
  padding-top: 41px;
}

.footer-info-contact a {
  padding: 0;
}

.footer-icon {
  display: inline;
}

.footer-icon img {
  height: 24px;
  width: 24px;
}

.footer-info-item {
  display: flex;
  gap: 5px;
}

.footer-info-item:hover {
  color: #5C5C5C;
}

@media (max-width: 798px) {
  .footer-content {
    padding: 30px;
    width: 90%;
  }
  .footer-head {
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
  .footer-info-title {
    font-size: 1.125rem;
    line-height: 1.125rem;
    padding: 20px 0;
  }
  .footer-info-contact {
    flex-direction: column;
  }
  .footer-info-item {
    gap: 12px;
    text-align: center;
  }
  .footer-info-item a {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .footer-content {
    padding: 15px;
  }
}
.content {
  margin-top: 100px;
}

.app-footer {
  bottom: 0;
}