:root {
  --color-black: #161618;
  --color-background: #27272b;
  --color-gray: #a2a2a3;
  --color-gray-2: #636364;
  --color-blue: #374cf2;
  --color-blue-dark: #2c3dd1;
  --color-white: #f0f0f0;
  --padding: 56px;
}
@media (max-width: 991px) {
  :root {
    --padding: 48px;
  }
}

html {
  font-size: 24px;
  text-size-adjust: 100%;
}

/* @media (max-width: 991px) {
  html {
    font-size: 16px;
  }
} */

body {
  margin: 0;
  background-color: var(--color-black);
  font-weight: normal;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.3;
  text-align: left;
  color: var(--color-white);
}
@media (max-width: 991px) {
  body {
    line-height: 1.2;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgb(0 0 0 / 0%);
  content: "";
  pointer-events: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
}

::selection {
  color: #fff;
  background: var(--color-blue);
}

a {
  color: var(--color-white);
  transition: color 0.25s, opacity 0.25s, border 0.25s, background 0.25s,
    box-shadow 0.25s;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 30px;
  padding: 0;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 30px 15px;
  padding: 0;
}

ul:last-child {
  margin-bottom: 0;
}

ul li {
  position: relative;
  margin: 0 0 15px;
  padding: 0;
}

ul li::marker {
  color: var(--color-blue);
  font-size: 14px;
}

ol {
  margin: 0 0 30px 15px;
  padding: 0;
}

ol:last-child {
  margin-bottom: 0;
}

ol li {
  margin: 0 0 10px;
  padding: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-top: 15px;
  margin-left: 23px;
}

.responsive-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

img[class*="wp-image"] {
  display: block;
  height: auto;
  margin: 40px auto;
}

p > img[class*="wp-image"] {
  margin-right: 0;
  margin-left: 0;
}

p:first-child > img[class*="wp-image"] {
  margin-top: 0;
}

p:last-child > img[class*="wp-image"] {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  img[class*="wp-image"] {
    margin: 30px auto;
  }

  p:first-child > img[class*="wp-image"] {
    margin-top: 0;
  }

  p:last-child > img[class*="wp-image"] {
    margin-bottom: 0;
  }
}

.wp-video {
  position: relative;
  width: 100% !important;
  margin: 40px auto;
  padding-bottom: 56.25%;
}

.wp-video:first-child {
  margin-top: 0;
}

.wp-video:last-child {
  margin-bottom: 0;
}

.wp-video .mejs-container,
.wp-video video,
.wp-video .mejs-layers > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.wp-video * {
  outline: none !important;
}

@media (max-width: 767px) {
  .wp-video {
    margin: 30px 0;
  }

  .wp-video:first-child {
    margin-top: 0;
  }

  .wp-video:last-child {
    margin-bottom: 0;
  }
}

.wp-caption {
  margin: 40px auto;
}

.wp-caption:first-child {
  margin-top: 0;
}

.wp-caption:last-child {
  margin-bottom: 0;
}

.wp-caption img {
  margin: 0;
}

.wp-caption__text {
  margin-top: 8px;
  color: #848b91;
  font-size: 16px;
}

@media (max-width: 767px) {
  .wp-caption {
    margin: 30px 0;
  }

  .wp-caption:first-child {
    margin-top: 0;
  }

  .wp-caption:last-child {
    margin-bottom: 0;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.w-100 {
  width: 100%;
}

#wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main {
  padding-bottom: var(--padding);
  padding-top: var(--padding);
  position: relative;
}
