:root {
  --otnotice-text-font-size: 4.267vw; /* 16px for mobile*/
  --otnotice-text-font-size-desktop: 16px; /* 16px for desktop */
  --otnotice-font-family-grotesque: GrotesqueMTStd, sans-serif;
  --otnotice-font-family-grotesque-extended: GrotesqueMTStd-Extended, sans-serif;
  --otnotice-color-text-white: #fff;
  --otnotice-color-text-red: #c10020;
  --otnotice-bg-white: #fff;
  --otnotice-bg-red: #c10020;
  --otnotice-border-color-dark: #1a1818;
}

.otnotice {
  padding: 36vw 6.4vw 16vw;
  font-size: var(--otnotice-text-font-size);
  line-height: 1.38;
}

@media (min-width: 768px) {
  .otnotice {
    padding: 160px 80px;
    font-size: var(--otnotice-text-font-size-desktop);
  }
}

.otnotice .otnotice-content {
  max-width: 1024px;
  padding: 0;
}

.otnotice .otnotice-content .otnotice-sections .otnotice-section-content .otnotice-legal-title {
  margin-bottom: 6.6vw;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: var(--otnotice-font-family-grotesque-extended);
  line-height: 1.04;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .otnotice .otnotice-content .otnotice-sections .otnotice-section-content .otnotice-legal-title {
    margin-bottom: 15px;
    font-size: 3.5rem;
  }
}

.otnotice .otnotice-content .otnotice-sections .otnotice-section-content .otnotice-legal-date {
  margin-bottom: 6.6vw;
  font-weight: 400;
  font-size: var(--otnotice-text-font-size);
  font-family: var(--otnotice-font-family-grotesque);
  font-stretch: condensed;
  letter-spacing: 0.88px;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .otnotice .otnotice-content .otnotice-sections .otnotice-section-content .otnotice-legal-date {
    margin-bottom: 15px;
    font-size: var(--otnotice-text-font-size-desktop);
    letter-spacing: 1px;
  }
}

.otnotice-content .otnotice-sections .otnotice-section-content .otnotice-menu-title {
  position: relative;
  margin: 25vw 0 5vw;
  color: var(--otnotice-color-text-red);
  font-weight: 700;
  font-size: 32px;
  font-family: var(--otnotice-font-family-grotesque-extended);
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .otnotice-content .otnotice-sections .otnotice-section-content .otnotice-menu-title {
    margin: 100px 0 20px;
  }
}

.otnotice .otnotice-sections .otnotice-section .otnotice-section-content .otnotice-menu {
  margin-bottom: 18vw;
  padding: 0;
  padding-inline: 0;
  font-weight: bold;
  font-family: var(--otnotice-font-family-grotesque);
  line-height: 1.5;
  text-transform: uppercase;
  list-style-type: none;
  counter-reset: li;
}

@media (min-width: 768px) {
  .otnotice .otnotice-sections .otnotice-section .otnotice-section-content .otnotice-menu {
    margin-bottom: 70px;
  }
}

.otnotice .otnotice-sections .otnotice-section .otnotice-section-content .otnotice-menu li {
  position: relative;
  margin-left: 5vw;
  padding-left: 1vw;
}

@media (min-width: 768px) {
  .otnotice .otnotice-sections .otnotice-section .otnotice-section-content .otnotice-menu li {
    margin-left: 20px;
    padding-left: 5px;
  }
}

.otnotice .otnotice-sections .otnotice-section-content .otnotice-menu li::before {
  position: absolute;
  right: 100%;
  content: counter(li) '.';
  counter-increment: li;
}

.otnotice-content a:hover,
.otnotice-content a:active,
.otnotice-content a:focus {
  color: var(--otnotice-color-text-red);
}

.otnotice-sections .otnotice-section .otnotice-section-content .otnotice-section-header {
  position: relative;
  margin: 6.4vw 0 0;
  font-weight: bold;
  font-family: var(--otnotice-font-family-grotesque);
  line-height: 1.5;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .otnotice-sections .otnotice-section .otnotice-section-content .otnotice-section-header {
    margin: 24px 0 0;
  }
}

.otnotice .otnotice-sections .otnotice-section .otnotice-section-content p {
  margin-bottom: 1.6vw;
}

@media (min-width: 768px) {
  .otnotice .otnotice-sections .otnotice-section .otnotice-section-content p {
    margin-bottom: 6px;
  }
}

.otnotice .otnotice-sections .otnotice-section .otnotice-section-content ul,
.otnotice .otnotice-sections .otnotice-section .otnotice-section-content ol {
  margin-bottom: 3.2vw;
  padding-inline: 20px 10px;
}

.otnotice .otnotice-sections .otnotice-section .otnotice-section-content ul {
  list-style: disc;
}

@media (min-width: 768px) {
  .otnotice .otnotice-sections .otnotice-section .otnotice-section-content ul,
  .otnotice .otnotice-sections .otnotice-section .otnotice-section-content ol {
    margin-bottom: 12px;
    padding-left: 15px;
  }
}

.otnotice .otnotice-sections .otnotice-section .otnotice-section-content li {
  margin: 0;
}

.otnotice-section-content table {
  width: 100%;
  margin: 3.2vw 0;
  overflow: auto;
}

@media (min-width: 768px) {
  .otnotice-section-content table {
    margin: 12px 0;
  }
}

.otnotice-content .otnotice-section .otnotice-section-content table tr:first-child {
  color: var(--otnotice-color-text-white);
  font-weight: bold;
  font-family: var(--otnotice-font-family-grotesque);
  text-transform: uppercase;
  background-color: var(--otnotice-bg-red);
}

.otnotice-content .otnotice-section .otnotice-section-content table tr:first-child td {
  padding: 1.3vw;
  border: 1px solid var(--otnotice-bg-red);
}

@media (min-width: 768px) {
  .otnotice-content .otnotice-section .otnotice-section-content table tr:first-child td {
    padding: 10px;
  }
}

.otnotice-content .otnotice-section .otnotice-section-content table tr:first-child td:not(:last-child) {
  border-right: 1px solid var(--otnotice-bg-white);
}

.otnotice-content .otnotice-section .otnotice-section-content table td {
  padding: 1.3vw;
  border: 1px solid var(--otnotice-border-color-dark);
}

@media (min-width: 768px) {
  .otnotice-content .otnotice-section .otnotice-section-content table td {
    padding: 10px;
  }
}
