:root {
  --navigation-link-color-active-var: #FFFFFF;
  --link-color-var: #ef0707;
  --link-color-active-var: #f9fd26;
  --shadow-var: 0 2px 6px 0 rgba(50, 50, 93, 0.59);
  --border-radius-var: 10px;
}

html {
  height: 100%;
  width: 100%;
}

* {
  max-height: 9999999px;
  box-sizing: border-box;
}

body {
  font-family: var(--font-var), Helvetica, Arial, sans-serif;
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--text-color-var);
  background-color: var(--background-content-color);
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 15px 0;
  font-style: normal;
  font-weight: bold;
  line-height: 30px;
}

p, ul, ol {
  margin: 25px 0;
}

a {
  text-decoration: none;
  color: inherit;
}
a:link, a:visited, a:hover {
  text-decoration: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
  padding-left: 25px;
}

ol {
  list-style-type: decimal;
  padding-left: 25px;
}

ul li,
ol li {
  padding: 5px 0;
  list-style: none;
}

.arrow {
  border-top: 6px solid #fff;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  margin-left: 3px;
  margin-top: 3px;
}

.teams {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.team {
  box-shadow: 0 0 9px 5px hsla(0, 0%, 49.4%, 0.25);
  border-radius: 8px;
  max-width: 30%;
  width: 100%;
  padding: 30px 30px 50px;
  min-height: 480px;
}

@media (max-width: 768px) {
  .teams {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .team {
    max-width: 100%;
    width: 100%;
  }
}
header {
  box-sizing: border-box;
  box-shadow: 0 2px 6px 0 rgba(169, 32, 62, 0.5);
  box-shadow: var(--shadow-var);
  padding: 0 15px;
  height: 70px;
  background-color: var(--background-header-var);
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  color: var(--navigation-link-color-var);
  max-width: 810px;
  margin: auto;
  height: inherit;
}
header .burger-button {
  display: none;
  width: 24px;
  height: 9px;
  position: relative;
  cursor: pointer;
}
header .burger-button span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  background-color: #fff;
  background-color: var(--navigation-link-color-var);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  will-change: transform, opacity, width, height, left;
  transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-property: transform, opacity, width, height, left;
}
header .burger-button span:first-child {
  top: 0;
}
header .burger-button span:nth-child(2), header .burger-button span:nth-child(3) {
  top: 4px;
  opacity: 1;
}
header .burger-button span:nth-child(4) {
  top: 8px;
}
header .header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  height: 100%;
  flex: 1;
}
header .header-menu a {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
header .header-menu .sub-menu {
  display: none;
  position: absolute;
  top: 10px;
  right: -20px;
  background: #a9203e;
  background: var(--background-header-var);
  min-width: 250px;
  width: fit-content;
  height: auto;
  border: 1px solid #646b63;
  border: 1px solid var(--navigation-link-color-active-var);
  padding: 10px;
  z-index: 2;
}
header .header-menu .sub-menu ul {
  display: flex;
  flex-direction: column;
}
header .header-menu .sub-menu ul a {
  margin-left: 0;
  justify-content: space-between;
  width: 100%;
  white-space: nowrap;
  padding: 0 10px;
}
header .header-menu .sub-menu .menu-item:hover {
  display: block;
}
header .header-menu .sub-menu .menu-item .arrow {
  display: none;
}
header .menu-item {
  position: relative;
  list-style: none;
  align-items: center;
}
header .menu-item:hover .sub-menu {
  display: block;
}
header .logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .logo-wrapper img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 240px;
  height: 60px;
}
header .arrow {
  display: none;
}
header .menu-parent-item .arrow {
  display: block;
}

@media (max-width: 1024px) {
  header .header-menu {
    position: absolute;
    background-color: var(--background-header-var);
    width: 100%;
    text-align: left;
    padding: 50px;
    display: none;
    height: auto;
    top: 0;
    z-index: 999;
    margin: 0;
  }
  header .header-menu .menu-item {
    width: 100%;
  }
  header .header-menu .menu-item a:hover {
    font-weight: bolder;
  }
  header .header-menu .sub-menu {
    display: block;
    position: inherit;
    padding: 0;
    margin: 10px 20px;
    border: none;
    background-color: var(--background-header-var);
  }
  header .burger-button {
    z-index: 9999;
    display: block;
  }
}
.main {
  max-width: 810px;
  display: flex;
  margin: 0 auto 20px;
  position: relative;
  padding-bottom: 0;
}
.main .article {
  margin: auto;
}
@media (max-width: 1024px) {
  .main,
  .top header {
    width: 100%;
    padding: 0 15px;
  }
}
.post-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.post-wrapper .post {
  margin-bottom: 20px;
  border-radius: 15px;
  border-radius: var(--border-radius-var);
  box-shadow: 0 2px 6px 0 rgba(169, 32, 62, 0.5);
  box-shadow: var(--shadow-var);
  display: flex;
  overflow: hidden;
  align-items: center;
}
.post-wrapper .post .preview-image {
  flex: 0 0 236px;
  margin: 0;
  position: relative;
  padding: 10px;
}
.post-wrapper .post .info {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.post-wrapper .post .info .title {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 28px;
}
.post-wrapper .post .info .button__main {
  font-style: italic;
  cursor: pointer;
}
.post-wrapper .post .info .button__main:hover {
  font-weight: bold;
}
.post-wrapper .post .info .description {
  overflow: hidden;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
}

.content a:not(.button__main) {
  color: var(--link-color-var);
  text-decoration: none;
  font-weight: 900;
}

.host {
  position: absolute;
  left: calc(50% - 50vw);
  height: calc(100% - 200px);
  top: 200px;
  user-select: none;
}
.host .main {
  position: sticky;
  top: calc(25% + 150px);
  z-index: 2;
}
.host .title {
  width: 200px;
  height: 30px;
  background: #fbfbfb;
  border-radius: 0 15px 15px 0;
  border-radius: 0 var(--border-radius-var) var(--border-radius-var) 0;
  transform: rotate(-90deg);
  transform-origin: 0 0;
  color: #333;
  color: var(--text-color-var);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
  cursor: pointer;
}
.host .title span {
  display: inline-block;
  padding: 0 5px;
  transition: 0.2s;
}
.host ul {
  display: none;
  position: absolute;
  list-style: none;
  top: -220px;
  width: 500px;
  max-height: 365px;
  padding: 15px 15px 0 80px;
  overflow-y: scroll;
  background-color: #fff;
  border-radius: 0 15px 15px 0;
  border-radius: 0 var(--border-radius-var) var(--border-radius-var) 0;
  border: 1px solid #ebebeb;
  z-index: -1;
  box-shadow: 0 2px 6px 0 rgba(169, 32, 62, 0.5);
  box-shadow: var(--shadow-var);
}
.host ul li:before {
  display: none;
}
.host ul a {
  display: block;
  text-decoration: none;
  padding: 10px 0;
  color: #333;
  color: var(--text-color-var);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
}
.host ul a:hover {
  color: #646b63;
  color: var(--link-color-active-var);
}
.host .isOpen ul {
  display: block;
}
.host .isOpen .title {
  background: #fff;
}
.host .isOpen .title svg {
  transition: all 0.1s;
  transform-origin: center;
  transform: rotate(-180deg);
}
.host .isOpen .title svg .toc_hover {
  fill: #dcdcdc;
  fill: var(--link-color-var);
}

footer {
  margin-top: 40px;
  position: relative;
  width: 100%;
  background-color: var(--background-header-var);
}
footer .mail {
  color: #fff;
  color: var(--navigation-link-color-var);
  text-decoration: none;
}
footer .mail:hover {
  color: #646b63;
  color: var(--link-color-active-var);
}
footer .footer-content {
  box-sizing: border-box;
  max-width: 810px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer-content .footer-top-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 0 0;
  border-bottom: 0.5px solid #fff;
  border-bottom: var(--navigation-link-color-var);
}
footer .footer-content .footer-top-menu .menus {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  margin-bottom: 50px;
}
footer .footer-content .footer-top-menu .menus .menu {
  margin-bottom: 30px;
}
footer .footer-content .footer-top-menu .menus .menu:last-child {
  margin-bottom: 0;
}
footer .footer-content .footer-top-menu .menus .menu .title {
  flex: 0 0 100%;
  margin-bottom: 10px;
}
footer .footer-content .footer-top-menu .menus .menu .title a, footer .footer-content .footer-top-menu .menus .menu .title div {
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  text-decoration: none;
  color: #bbb;
  color: var(--navigation-link-color-var);
}
footer .footer-content .footer-top-menu .menus .menu ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footer-content .footer-top-menu .menus .menu ul li {
  flex: 0 0 33%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .footer-content .footer-top-menu .menus .menu ul li a {
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  color: #fff;
  color: var(--navigation-link-color-var);
  padding: 10px 0;
}
footer .footer-content .footer-info {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 60px;
  border-bottom: 0.5px solid #fff;
  border-bottom: 0.5px solid var(--navigation-link-color-var);
}
footer .footer-content .footer-info .logo {
  flex: 0 0 110px;
  margin-right: 20px;
}
footer .footer-content .footer-info .logo img {
  width: 110px;
  height: auto;
}
footer .footer-content .footer-info .tagline {
  flex: 0 0 500px;
  font-size: 18px;
  line-height: 26px;
  color: #f5f9fc;
  color: var(--navigation-link-color-var);
}
footer .footer-content .footer-info address {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 18px;
  line-height: 26px;
  color: #f5f9fc;
  color: var(--navigation-link-color-var);
}
footer .footer-content .footer-info .social {
  margin-top: 10px;
}
footer .footer-content .footer-info .social div {
  display: flex;
  margin-top: 20px;
}
footer .footer-content .footer-info .social div a {
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 10px;
}
footer .footer-content .footer-info .social div a svg {
  width: 100%;
  height: 100%;
}
footer .footer-content .footer-copyright {
  flex: 0 0 100%;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navigation-link-color);
}
footer .footer-content .footer-copyright .link {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;
}
footer .footer-content .footer-copyright .link a {
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  color: var(--navigation-link-color-var);
  text-decoration: none;
}
footer .footer-content .footer-copyright .link a:hover {
  color: #646b63;
  color: var(--link-color-active-var);
}
footer .footer-content .footer-copyright .link .menu {
  text-align: center;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
footer .footer-content .footer-copyright span {
  font-size: 18px;
  line-height: 26px;
  color: #f5f9fc;
  color: var(--navigation-link-color-var);
}

@media screen and (max-width: 1024px) {
  footer .footer-content {
    max-width: 600px;
  }
  footer .footer-content .footer-top-menu .menus .menu ul li {
    flex: 0 0 50%;
  }
  footer .footer-content .footer-info {
    flex-direction: column;
  }
  footer .footer-content .footer-info .tagline {
    flex: 1;
  }
  footer .footer-content .footer-info address {
    margin: 20px 0;
  }
  footer .footer-content .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer-content .footer-copyright .link {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .post-wrapper .post {
    flex-direction: column;
  }
  footer .footer-content {
    max-width: 300px;
  }
  footer .footer-content .footer-top-menu .menus .menu ul li {
    flex: 0 0 100%;
  }
  footer .footer-content .footer-info {
    flex-direction: column;
  }
  footer .footer-content .footer-info .tagline {
    flex: 1;
  }
  footer .footer-content .footer-info address {
    margin: 20px 0;
  }
  footer .footer-content .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer-content .footer-copyright .link {
    width: 100%;
    flex-wrap: wrap;
  }
  footer .footer-content .footer-copyright .link a {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}
.error-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.error-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  color: white;
  font-weight: 900;
}
.error-404 {
  font-size: 116px;
  line-height: 130px;
  margin: 0 0 10px;
}
.error-text {
  padding: 0;
  font-size: 26px;
  line-height: 1.23;
}
.error-btn {
  border: 1px solid red;
  padding: 15px 20px;
  border-radius: 10px;
  background-color: red;
}

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


.logo {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
    max-width: 100%;
    width: 200px;
}

.grad-1 {
  background: linear-gradient(90deg, #ff4f67, #ffc380, #ff4f67);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moveGrad 3s linear infinite;

  /* -webkit-text-stroke: 1px rgba(255,255,255,0.5);
  text-stroke: 1px rgba(255,255,255,0.5); */
  font-weight: 700;
}

@keyframes moveGrad {
  to {
    background-position: 200% center;
  }
}