@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes leftToRightVw {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes fadeInDownUp {
  0% {
    opacity: 0.001;
    transform: translateY(100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpDown {
  0% {
    opacity: 0.001;
    transform: translateY(-100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pitAPat {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInLeftRight {
  0% {
    opacity: 0.001;
    transform: translateX(-100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightLeft {
  0% {
    opacity: 0.001;
    transform: translateX(100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes backgroundLeftToRight {
  0% {
    background-position: left 100vw bottom 89px;
  }
  100% {
    background-position: left -100vw bottom 89px;
  }
}
@keyframes backgroundLeftToRightMobile {
  0% {
    background-position: left 100vw bottom 40px;
  }
  100% {
    background-position: left -100vw bottom 40px;
  }
}
#container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  background-color: #191919;
}
#container > .section {
  flex-shrink: 0;
}

.fixed_banner {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 6;
  background-color: #4533a7;
  opacity: 0.001;
  transform: translateY(100px);
  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
}
.fixed_banner.on {
  transform: translateY(0);
  opacity: 1;
}
.fixed_banner.type_image {
  background-color: #507aca;
}
.fixed_banner a {
  display: flex;
  align-items: center;
}
.fixed_banner .logo_plus_white ~ span {
  margin-left: 8px;
}
.fixed_banner strong:not(.logo_plus_white),
.fixed_banner span {
  color: #fff;
}
.fixed_banner strong {
  font-weight: 700;
}

.section {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100vw;
  position: relative;
  z-index: 5;
}
.section_title > strong {
  display: flex;
  font-weight: 700;
  letter-spacing: -1px;
}
.section_title > p {
  font-weight: 400;
  letter-spacing: -0.5px;
}
.sections .label,
.section .label {
  display: flex;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.section picture {
  display: block;
}
@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes leftToRightVw {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes fadeInDownUp {
  0% {
    opacity: 0.001;
    transform: translateY(100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpDown {
  0% {
    opacity: 0.001;
    transform: translateY(-100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pitAPat {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInLeftRight {
  0% {
    opacity: 0.001;
    transform: translateX(-100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightLeft {
  0% {
    opacity: 0.001;
    transform: translateX(100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes backgroundLeftToRight {
  0% {
    background-position: left 100vw bottom 89px;
  }
  100% {
    background-position: left -100vw bottom 89px;
  }
}
@keyframes backgroundLeftToRightMobile {
  0% {
    background-position: left 100vw bottom 40px;
  }
  100% {
    background-position: left -100vw bottom 40px;
  }
}
.section1 {
  justify-content: space-between;
  background-color: #191919;
}
.section1:before, .section1:after {
  content: "";
  position: absolute;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 0;
}
.section1:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='969' height='408' fill='none'%3E%3Cpath opacity='.1' d='M2 37.074H1v8.429l.293.293 26.685 26.687v292.712L1.293 391.882l-.293.293V400.604h145.523v-8.483l-.36-.3-32.013-26.68V249.517h40.546c30.339 0 64.398-6.769 90.908-23.424 26.558-16.685 45.521-43.292 45.521-82.798 0-39.444-16.21-66.068-41.454-82.785-25.184-16.676-59.264-23.436-94.975-23.436H2Zm301.674-3.636L333 58.5v310.479l-23.995 24.53-.285.291v6.804h126.099V393.8l-.286-.291-23.995-24.53V1.743l-1.225.283-105.214 24.282-.775.178v6.652l.35.3Zm263.112 370.843 70.865-34.377V406.257l1.225-.283 105.214-24.281.775-.179V374.861l-.35-.299-29.326-25.062V128.61l-1.176.211-105.215 18.886-.823.148V154.548l.35.299 29.326 25.062v172.094l-24.219 10.531-.007.003-.008.004c-5.769 2.622-12.632 3.687-19.01 3.687-10.832 0-20.68-3.696-27.819-10.9-7.135-7.201-11.648-17.993-11.648-32.347V128.61l-1.177.211-105.214 18.886-.824.148V154.548l.351.299 29.325 25.062v146.849c0 28.749 7.051 48.602 19.301 61.265C508.957 400.693 526.255 406 546.386 406c6.001 0 11.449-.547 20.088-1.627l.164-.02.148-.072Zm334.311-166.364h-.002c-20.766-10.789-35.896-20.042-45.833-29.58-9.896-9.498-14.598-19.233-14.598-31.047 0-9.237 2.901-17.35 8.107-23.141 5.195-5.78 12.742-9.314 22.187-9.314 12.101 0 24.198 5.79 31.555 16.301l.005.007.006.008 36.15 49.643.3.411H952.353v-77.991l-.905-.087c-28.084-2.701-57.252-4.322-86.425-4.322h-.144l-.138.041c-27.516 8.093-51.542 16.63-68.691 28.948-17.215 12.366-27.529 28.568-27.529 51.872 0 23.561 10.84 40.676 25.623 53.961 13.932 12.521 31.427 21.693 46.711 29.705l2.66 1.396.001.001c17.036 8.924 30.122 15.877 38.977 23.933 8.775 7.985 13.364 17.03 13.364 30.22 0 11.67-3.579 21.935-10.325 29.271-6.735 7.324-16.707 11.817-29.681 11.817-6.795 0-13.908-2.356-20.141-5.937-6.232-3.581-11.501-8.337-14.637-13.04l-.001-.003-40.462-62.045-.296-.454H766.902V395.502l.725.207C794.193 403.3 824.513 406 859.088 406c25.006 0 52.195-7.742 73.157-22.921C953.23 367.885 968 345.21 968 315.427c0-19.991-7.412-34.539-19.519-46.51-12.059-11.924-28.781-21.293-47.384-31Zm-786.947-3.89V52.564h18.963c18.847 0 35.417 7.952 47.299 23.221 11.899 15.29 19.146 37.986 19.146 67.51 0 58.461-34.262 90.732-66.445 90.732H114.15Z' stroke='%23F2F2F2' stroke-width='2'/%3E%3C/svg%3E");
}
.section1:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1610' height='544' fill='none'%3E%3Cg opacity='.1'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='1610' height='544' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h1610v544H0z'/%3E%3Cpath d='M113.672 365.208h-.539V71.992l26.974-26.95v-7.007H2v7.007l26.974 26.95v293.755L2.539 392.158v7.007h138.107v-7.007l-26.974-26.95ZM434.96 368.981V207.82c0-57.134-28.053-78.155-67.975-78.155-5.934 0-11.329.539-19.961 1.617l-72.29 35.035v-36.652L169.535 153.92v5.39l29.672 25.333v184.338l-24.277 24.794v5.39h124.081v-5.39l-24.277-24.794V181.948l24.816-10.78c5.934-2.695 12.948-3.773 19.421-3.773 22.119 0 40.461 15.092 40.461 44.198v157.388l-24.276 24.794v5.39h124.08v-5.39l-24.276-24.794ZM577.026 404.555c49.632 0 107.896-30.723 107.896-89.474 0-39.347-29.132-57.134-66.357-76.538-41.54-21.56-60.961-37.191-60.961-61.446 0-18.865 11.869-33.418 31.29-33.418 12.408 0 24.816 5.929 32.369 16.709l36.145 49.588h11.869v-75.999c-28.053-2.695-57.185-4.312-86.317-4.312-55.027 16.17-95.488 33.957-95.488 79.772 0 46.354 42.619 67.375 74.448 84.084 33.987 17.787 52.869 28.028 52.869 54.978 0 23.716-14.566 42.042-41 42.042-14.027 0-29.132-9.702-35.606-19.404l-40.461-61.985h-11.869v85.162c26.435 7.546 56.646 10.241 91.173 10.241ZM772.854 108.105c16.724-11.858 41.54-35.574 52.869-52.283-11.329-16.709-36.145-40.425-52.869-52.283-16.724 11.858-41.001 35.574-52.33 52.283 11.329 16.709 35.606 40.425 52.33 52.283Zm40.461 260.876V129.665L708.116 153.92v5.39l29.672 25.333v184.338l-24.277 24.794v5.39h124.081v-5.39l-24.277-24.794ZM969.989 357.662c-28.053 0-49.093-12.397-49.093-25.872l23.198-16.17c10.25 1.617 21.04 2.695 32.908 2.695 76.068-10.78 114.368-51.205 114.368-99.715 0-38.808-22.66-67.914-61.5-80.85l8.63-9.702h76.07V70.375h-42.08l-57.72 63.063c-11.33-2.695-24.281-3.773-37.768-3.773-75.527 10.78-114.369 50.666-114.369 99.715 0 40.425 24.816 70.07 65.816 82.467l-55.027 36.113c-2.158 3.773-2.697 13.475-2.697 17.248 0 22.638 17.803 41.503 46.395 50.666l-53.409 35.574c-5.394 7.007-9.171 17.248-9.171 28.567 0 37.73 44.238 61.985 102.502 61.985 82.538 0 163.458-47.971 163.458-115.885 0-35.035-21.58-57.673-43.15-68.453H969.989Zm1.618-215.061c27.514 0 46.933 32.34 46.933 81.928 0 34.496-9.71 80.85-36.143 80.85-25.355 0-46.935-33.418-46.935-84.084 0-36.113 10.25-78.694 36.145-78.694Zm24.817 376.761c-51.251 0-81.462-29.106-81.462-61.985 0-14.553 5.395-28.028 12.408-38.808 9.171 2.156 19.961 3.234 30.75 3.234h97.11c13.48 8.085 18.88 19.943 18.88 35.574 0 38.269-31.83 61.985-77.686 61.985ZM1387.66 368.981V207.82c0-57.134-28.05-78.155-67.97-78.155-5.94 0-11.33.539-19.96 1.617l-72.29 35.035V3l-105.2 24.255v5.39l29.67 25.333v311.003l-24.28 24.794v5.39h124.08v-5.39l-24.27-24.794V181.948l24.81-10.78c5.94-2.695 12.95-3.773 19.42-3.773 22.12 0 40.46 15.092 40.46 44.198v157.388l-24.27 24.794v5.39h124.08v-5.39l-24.28-24.794ZM1529.31 404.555c34.53 0 61.51-17.248 77.69-32.34l-4.32-7.546c-10.79 3.773-20.5 5.39-28.05 5.39-22.12 0-37.76-13.475-37.76-35.574V165.778h51.25l16.18-30.723h-67.43V83.85h-6.48l-105.19 73.843v8.085h36.14v174.097c0 48.51 35.07 64.68 67.97 64.68Z'/%3E%3C/mask%3E%3Cpath d='M113.672 365.208h-.539V71.992l26.974-26.95v-7.007H2v7.007l26.974 26.95v293.755L2.539 392.158v7.007h138.107v-7.007l-26.974-26.95ZM434.96 368.981V207.82c0-57.134-28.053-78.155-67.975-78.155-5.934 0-11.329.539-19.961 1.617l-72.29 35.035v-36.652L169.535 153.92v5.39l29.672 25.333v184.338l-24.277 24.794v5.39h124.081v-5.39l-24.277-24.794V181.948l24.816-10.78c5.934-2.695 12.948-3.773 19.421-3.773 22.119 0 40.461 15.092 40.461 44.198v157.388l-24.276 24.794v5.39h124.08v-5.39l-24.276-24.794ZM577.026 404.555c49.632 0 107.896-30.723 107.896-89.474 0-39.347-29.132-57.134-66.357-76.538-41.54-21.56-60.961-37.191-60.961-61.446 0-18.865 11.869-33.418 31.29-33.418 12.408 0 24.816 5.929 32.369 16.709l36.145 49.588h11.869v-75.999c-28.053-2.695-57.185-4.312-86.317-4.312-55.027 16.17-95.488 33.957-95.488 79.772 0 46.354 42.619 67.375 74.448 84.084 33.987 17.787 52.869 28.028 52.869 54.978 0 23.716-14.566 42.042-41 42.042-14.027 0-29.132-9.702-35.606-19.404l-40.461-61.985h-11.869v85.162c26.435 7.546 56.646 10.241 91.173 10.241ZM772.854 108.105c16.724-11.858 41.54-35.574 52.869-52.283-11.329-16.709-36.145-40.425-52.869-52.283-16.724 11.858-41.001 35.574-52.33 52.283 11.329 16.709 35.606 40.425 52.33 52.283Zm40.461 260.876V129.665L708.116 153.92v5.39l29.672 25.333v184.338l-24.277 24.794v5.39h124.081v-5.39l-24.277-24.794ZM969.989 357.662c-28.053 0-49.093-12.397-49.093-25.872l23.198-16.17c10.25 1.617 21.04 2.695 32.908 2.695 76.068-10.78 114.368-51.205 114.368-99.715 0-38.808-22.66-67.914-61.5-80.85l8.63-9.702h76.07V70.375h-42.08l-57.72 63.063c-11.33-2.695-24.281-3.773-37.768-3.773-75.527 10.78-114.369 50.666-114.369 99.715 0 40.425 24.816 70.07 65.816 82.467l-55.027 36.113c-2.158 3.773-2.697 13.475-2.697 17.248 0 22.638 17.803 41.503 46.395 50.666l-53.409 35.574c-5.394 7.007-9.171 17.248-9.171 28.567 0 37.73 44.238 61.985 102.502 61.985 82.538 0 163.458-47.971 163.458-115.885 0-35.035-21.58-57.673-43.15-68.453H969.989Zm1.618-215.061c27.514 0 46.933 32.34 46.933 81.928 0 34.496-9.71 80.85-36.143 80.85-25.355 0-46.935-33.418-46.935-84.084 0-36.113 10.25-78.694 36.145-78.694Zm24.817 376.761c-51.251 0-81.462-29.106-81.462-61.985 0-14.553 5.395-28.028 12.408-38.808 9.171 2.156 19.961 3.234 30.75 3.234h97.11c13.48 8.085 18.88 19.943 18.88 35.574 0 38.269-31.83 61.985-77.686 61.985ZM1387.66 368.981V207.82c0-57.134-28.05-78.155-67.97-78.155-5.94 0-11.33.539-19.96 1.617l-72.29 35.035V3l-105.2 24.255v5.39l29.67 25.333v311.003l-24.28 24.794v5.39h124.08v-5.39l-24.27-24.794V181.948l24.81-10.78c5.94-2.695 12.95-3.773 19.42-3.773 22.12 0 40.46 15.092 40.46 44.198v157.388l-24.27 24.794v5.39h124.08v-5.39l-24.28-24.794ZM1529.31 404.555c34.53 0 61.51-17.248 77.69-32.34l-4.32-7.546c-10.79 3.773-20.5 5.39-28.05 5.39-22.12 0-37.76-13.475-37.76-35.574V165.778h51.25l16.18-30.723h-67.43V83.85h-6.48l-105.19 73.843v8.085h36.14v174.097c0 48.51 35.07 64.68 67.97 64.68Z' stroke='%23F2F2F2' stroke-width='4' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
}
.section1.on .img_wrap {
  animation: fadeInDownUp 2s ease-in-out;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}
.section1.on .section_title {
  animation: fadeInLeftRight 3s ease-in-out;
  animation-fill-mode: forwards;
}
.section1 .label {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='161' height='33' fill='none'%3E%3Cpath d='M7.584 21.984h-.032V4.576l1.6-1.6V2.56H.96v.416l1.6 1.6v17.44L.992 23.584V24h8.192v-.416l-1.6-1.6Zm19.084.224V12.64c0-3.392-1.664-4.64-4.032-4.64-.352 0-.672.032-1.184.096l-4.288 2.08V8l-6.24 1.44v.32l1.76 1.504v10.944l-1.44 1.472V24h7.36v-.32l-1.44-1.472V11.104l1.472-.64c.352-.16.768-.224 1.152-.224 1.312 0 2.4.896 2.4 2.624v9.344l-1.44 1.472V24h7.36v-.32l-1.44-1.472Zm8.454 2.112c2.944 0 6.4-1.824 6.4-5.312 0-2.336-1.728-3.392-3.936-4.544-2.464-1.28-3.616-2.208-3.616-3.648 0-1.12.704-1.984 1.856-1.984.736 0 1.472.352 1.92.992l2.144 2.944h.704V8.256A53.77 53.77 0 0 0 35.474 8c-3.264.96-5.664 2.016-5.664 4.736 0 2.752 2.528 4 4.416 4.992 2.016 1.056 3.136 1.664 3.136 3.264 0 1.408-.864 2.496-2.432 2.496-.832 0-1.728-.576-2.112-1.152l-2.4-3.68h-.704v5.056c1.568.448 3.36.608 5.408.608Zm11.642-17.6c.992-.704 2.464-2.112 3.136-3.104-.672-.992-2.144-2.4-3.136-3.104-.992.704-2.432 2.112-3.104 3.104.672.992 2.112 2.4 3.104 3.104Zm2.4 15.488V8l-6.24 1.44v.32l1.76 1.504v10.944l-1.44 1.472V24h7.36v-.32l-1.44-1.472Zm9.32-.672c-1.664 0-2.912-.736-2.912-1.536l1.376-.96c.608.096 1.248.16 1.952.16 4.512-.64 6.784-3.04 6.784-5.92 0-2.304-1.344-4.032-3.648-4.8l.512-.576h4.512V4.48h-2.496L61.14 8.224C60.468 8.064 59.7 8 58.9 8c-4.48.64-6.784 3.008-6.784 5.92 0 2.4 1.472 4.16 3.904 4.896l-3.264 2.144c-.128.224-.16.8-.16 1.024 0 1.344 1.056 2.464 2.752 3.008l-3.168 2.112c-.32.416-.544 1.024-.544 1.696 0 2.24 2.624 3.68 6.08 3.68 4.896 0 9.696-2.848 9.696-6.88 0-2.08-1.28-3.424-2.56-4.064h-6.368Zm.096-12.768c1.632 0 2.784 1.92 2.784 4.864 0 2.048-.576 4.8-2.144 4.8-1.504 0-2.784-1.984-2.784-4.992 0-2.144.608-4.672 2.144-4.672Zm1.472 22.368c-3.04 0-4.832-1.728-4.832-3.68 0-.864.32-1.664.736-2.304a8.18 8.18 0 0 0 1.824.192h5.76c.8.48 1.12 1.184 1.12 2.112 0 2.272-1.888 3.68-4.608 3.68Zm23.234-8.928V12.64c0-3.392-1.664-4.64-4.032-4.64-.352 0-.672.032-1.184.096l-4.288 2.08V.48l-6.24 1.44v.32l1.76 1.504v18.464l-1.44 1.472V24h7.36v-.32l-1.44-1.472V11.104l1.472-.64c.352-.16.768-.224 1.152-.224 1.312 0 2.4.896 2.4 2.624v9.344l-1.44 1.472V24h7.36v-.32l-1.44-1.472Zm8.429 2.112c2.048 0 3.648-1.024 4.608-1.92l-.256-.448c-.64.224-1.216.32-1.664.32-1.312 0-2.24-.8-2.24-2.112V10.144h3.04l.96-1.824h-4V5.28h-.384l-6.24 4.384v.48h2.144V20.48c0 2.88 2.08 3.84 4.032 3.84Zm11.339-21.76v.416l1.6 1.6v17.408l-1.6 1.6V24h8.512v-.416l-1.92-1.6V15.04h2.464c3.584 0 8.032-1.6 8.032-6.24 0-4.64-3.808-6.24-8.032-6.24h-9.056Zm6.592 11.68V3.36h1.184c2.272 0 4 1.92 4 5.44 0 3.488-2.048 5.44-4 5.44h-1.184Zm17.605 7.968V.48l-6.24 1.44v.32l1.76 1.504v18.464l-1.44 1.472V24h7.36v-.32l-1.44-1.472Zm18.094-1.152V8l-6.24 1.12v.32l1.76 1.504v10.272l-1.472.64c-.352.16-.768.224-1.152.224-1.312 0-2.4-.896-2.4-2.624V8l-6.24 1.12v.32l1.76 1.504v8.736c0 3.392 1.664 4.64 4.032 4.64.352 0 .672-.032 1.184-.096l4.288-2.08v2.176l6.24-1.44v-.32l-1.76-1.504Zm8.621 3.264c2.944 0 6.4-1.824 6.4-5.312 0-2.336-1.728-3.392-3.936-4.544-2.464-1.28-3.616-2.208-3.616-3.648 0-1.12.704-1.984 1.856-1.984.736 0 1.472.352 1.92.992l2.144 2.944h.704V8.256a53.77 53.77 0 0 0-5.12-.256c-3.264.96-5.664 2.016-5.664 4.736 0 2.752 2.528 4 4.416 4.992 2.016 1.056 3.136 1.664 3.136 3.264 0 1.408-.864 2.496-2.432 2.496-.832 0-1.728-.576-2.113-1.152l-2.399-3.68h-.704v5.056c1.568.448 3.36.608 5.408.608Z' fill='%23666'/%3E%3C/svg%3E");
  background-size: 100% auto;
}
.section1 .section_title, .section1 .section_content {
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
.section1 .section_title {
  opacity: 0.001;
}
.section1 .section_title strong {
  color: #fff;
}
.section1 .img_wrap {
  opacity: 0.001;
}
.section1 .plus_belt {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  left: 50%;
  width: 100vw;
  border-top: 1px solid #9e9e9e;
  background-color: #000;
  transform: translateX(-50%);
}
.section1 .plus_belt ul {
  display: flex;
  flex-wrap: nowrap;
  transform: translate3d(0, 0, 0);
  animation: leftToRight 20s infinite linear;
}
.section1 .plus_belt li {
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: -1px;
  color: #999;
  line-height: 100%;
}
.section2 {
  background-color: #fff;
}
.section2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
}
.section2.on .section_left,
.section2.on .section_middle,
.section2.on .section_right {
  animation: fadeInDownUp 2s ease-in-out;
}
.section2.on .section_title {
  animation: fadeInUpDown 2s ease-in-out;
  animation-fill-mode: forwards;
}
.section2.on .section_left {
  animation-fill-mode: forwards;
}
.section2.on .section_middle {
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.section2.on .section_right {
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
.section2 .label {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='142' height='29' fill='none'%3E%3Cg clip-path='url(%23a)' fill='%23767676'%3E%3Cpath d='M6.874 20.843v.337H.027v-.337l1.31-1.273V5.4L0 4.101v-.337h6.847v.337l-1.337 1.3v14.143h.027l1.337 1.3ZM22.68 20.922v.258h-6.15v-.258l1.206-1.195v-7.592c0-1.404-.909-2.133-2.006-2.133-.32 0-.67.052-.963.183l-1.229.52v9.022l1.205 1.195v.258h-6.16v-.258l1.205-1.195v-8.891l-1.47-1.22v-.26l5.214-1.17v1.766l3.585-1.688a7.83 7.83 0 0 1 .99-.079c1.979 0 3.369 1.015 3.369 3.77v7.776l1.205 1.194v-.003ZM24.018 20.948v-4.107h.59l2.005 2.991c.32.468 1.07.936 1.764.936 1.31 0 2.033-.884 2.033-2.029 0-1.3-.935-1.793-2.622-2.65-1.579-.806-3.69-1.82-3.69-4.055 0-2.235 2.007-3.07 4.734-3.849 1.444 0 2.888.079 4.278.21v3.665h-.589l-1.79-2.392a1.982 1.982 0 0 0-1.607-.805c-.962 0-1.551.703-1.551 1.613 0 1.172.962 1.924 3.023 2.965 1.844.936 3.288 1.793 3.288 3.691 0 2.834-2.888 4.317-5.349 4.317-1.71 0-3.207-.131-4.52-.494l.003-.007ZM41.484 20.922v.258h-6.15v-.258l1.205-1.195v-8.891l-1.47-1.22v-.26l5.214-1.17v11.541l1.205 1.195h-.004Zm-5.806-16.3c.562-.806 1.764-1.95 2.595-2.524.828.573 2.06 1.715 2.622 2.523-.562.806-1.79 1.95-2.622 2.524-.828-.573-2.033-1.715-2.595-2.524ZM53.384 19.18c1.07.521 2.141 1.614 2.141 3.303 0 3.276-4.012 5.59-8.102 5.59-2.888 0-5.083-1.172-5.083-2.992 0-.546.188-1.04.454-1.378l2.65-1.714c-1.418-.442-2.3-1.352-2.3-2.445 0-.183.027-.651.135-.831l2.727-1.741c-2.034-.599-3.262-2.029-3.262-3.98 0-2.365 1.925-4.29 5.668-4.81.67 0 1.31.052 1.872.183l2.861-3.043h2.087v2.782h-3.77l-.427.467c1.925.626 3.05 2.03 3.05 3.901 0 2.34-1.9 4.29-5.67 4.81-.588 0-1.123-.052-1.632-.13l-1.151.779c0 .651 1.044 1.247 2.434 1.247h5.322l-.004.003Zm-.161 4.811c0-.752-.266-1.325-.936-1.714h-4.814c-.535 0-1.07-.053-1.525-.157-.346.52-.616 1.171-.616 1.871 0 1.588 1.498 2.992 4.04 2.992 2.272 0 3.85-1.146 3.85-2.992Zm-6.874-11.388c0 2.445 1.07 4.055 2.326 4.055s1.79-2.235 1.79-3.901c0-2.392-.962-3.953-2.325-3.953-1.283 0-1.791 2.055-1.791 3.796v.003ZM69.993 20.922v.258h-6.15v-.258l1.205-1.195v-7.592c0-1.404-.909-2.133-2.006-2.133-.32 0-.67.052-.963.183l-1.229.52v9.022l1.206 1.195v.258h-6.15v-.258l1.205-1.195V4.723l-1.471-1.22v-.26l5.214-1.17v7.876l3.585-1.688a7.83 7.83 0 0 1 .99-.079c1.979 0 3.369 1.014 3.369 3.77v7.775l1.205 1.195h-.01ZM72.457 18.324V9.923h-1.791v-.39l5.214-3.56h.32v2.47h3.343l-.802 1.483H76.2v8.139c0 1.067.774 1.715 1.872 1.715.373 0 .855-.079 1.39-.259l.215.363c-.8.727-2.14 1.561-3.85 1.561s-3.37-.778-3.37-3.118v-.003Z'/%3E%3C/g%3E%3Cpath d='M142 0H86v25.964h56V0Z' fill='%23FF3C14'/%3E%3Cpath d='M132.674 13.816c-1.771-.899-2.601-1.55-2.601-2.559 0-.784.508-1.392 1.333-1.392.53 0 .931.189 1.379.696l1.706 2.066h.341V9.459c-1.194-.11-1.978-.18-3.219-.18-2.134-.037-4.532 1.416-4.532 3.325 0 1.908 1.817 2.808 3.172 3.504 1.448.742 2.255 1.166 2.255 2.291 0 .987-.623 1.753-1.748 1.753-.599 0-1.005-.222-1.664-.881-.729-.729-1.743-2.513-1.743-2.513h-.341v3.55c1.125.314 2.416.43 3.887.43 2.116 0 4.601-1.283 4.601-3.731 0-1.642-1.24-2.38-2.831-3.19h.005ZM99.295 5.456h-6.8v.341l1.442 1.42V18.86l-1.443 1.383v.258h6.492v-.258l-1.461-1.383v-4.648h1.77c2.578 0 5.773-1.125 5.773-4.38 0-3.256-2.734-4.38-5.773-4.38v.004Zm-.922 8.198h-.853v-7.64h.853c1.632 0 2.873 1.346 2.873 3.818 0 2.471-1.471 3.817-2.873 3.817v.005ZM110.684 18.94V4.271h-.299l-4.773 1.203v.3l1.563.78v12.384l-1.461 1.305v.259h6.432v-.259l-1.462-1.305ZM124.176 9.062h-.3l-4.767 1.204v.3l1.563.779v7.211c-.42.143-.941.222-1.462.222-1.263 0-1.886-.503-1.886-1.905v-7.81h-.299l-4.768 1.203v.3l1.563.779v5.671c0 2.486 1.761 3.689 3.707 3.689.18 0 .3-.041 1.024-.443l2.125-1.143V20.7h.3l4.768-1.019v-.3l-1.563-.912V9.062h-.005Z' fill='%23fff'/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='translate(0 2.072)' d='M0 0h79.677v26H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.section2 .section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.001;
}
.section2 .section_title strong {
  color: #000;
}
.section2 .section_title p {
  text-align: center;
  color: #6f6f6f;
}
.section2 .section_content {
  display: flex;
  width: 100%;
}
.section2 .section_content > div {
  opacity: 0.001;
  flex-shrink: 0;
}
.section2 .section_left, .section2 .section_right {
  display: flex;
  overflow: hidden;
  flex: 1;
}
.section2 .section_left {
  justify-content: flex-end;
}
.section2 .section_middle {
  flex-shrink: 0;
  box-sizing: content-box;
}
@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes leftToRightVw {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes fadeInDownUp {
  0% {
    opacity: 0.001;
    transform: translateY(100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpDown {
  0% {
    opacity: 0.001;
    transform: translateY(-100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pitAPat {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInLeftRight {
  0% {
    opacity: 0.001;
    transform: translateX(-100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightLeft {
  0% {
    opacity: 0.001;
    transform: translateX(100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes backgroundLeftToRight {
  0% {
    background-position: left 100vw bottom 89px;
  }
  100% {
    background-position: left -100vw bottom 89px;
  }
}
@keyframes backgroundLeftToRightMobile {
  0% {
    background-position: left 100vw bottom 40px;
  }
  100% {
    background-position: left -100vw bottom 40px;
  }
}
.section .fixed_title.section_title {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  z-index: 1;
  pointer-events: none;
}
.section .fixed_title.section_title strong {
  color: #fff;
}
.section .fixed_title.section_title p {
  color: #fff;
}
.section .fixed_title .label {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='143' height='26' fill='none'%3E%3Cg clip-path='url(%23a)' fill='%23fff'%3E%3Cpath d='M0 12.857c0-5.074 3.539-8.143 8.264-8.143 1.163 0 2.513.19 3.84.52V9.08h-.583l-1.93-2.879a2.614 2.614 0 0 0-1.978-.85c-2.724 0-3.653 3.494-3.653 7.27 0 3.99 1.163 7.742 3.747 7.742.955 0 1.793-.52 2.235-.945l1.816-2.807h.583v3.35c-1.025.544-2.955 1.04-4.842 1.04C2.631 21 0 17.931 0 12.858ZM13.498 15.147c0-3.517 2.466-5.475 5.77-6.185 3.305 0 5.771 2.43 5.771 5.829 0 3.398-2.466 5.498-5.77 6.209-3.304 0-5.771-2.43-5.771-5.853Zm7.935 0c0-2.243-.465-5.57-2.396-5.57-1.444 0-1.93 2.383-1.93 5.217 0 2.266.49 5.594 2.396 5.594 1.488 0 1.93-2.383 1.93-5.24ZM38.568 20.527v.235h-5.352v-.235l1.049-1.084V12.55c0-1.275-.791-1.937-1.746-1.937a2.03 2.03 0 0 0-.838.166l-1.07.473v8.19l1.05 1.084v.235h-5.352v-.235l1.048-1.084V11.37l-1.28-1.108v-.234l4.538-1.064v1.604l3.12-1.533c.371-.047.606-.071.86-.071 1.723 0 2.933.921 2.933 3.422v7.059l1.049 1.084-.01-.003ZM40.709 18.168v-7.625H39.15v-.354l4.538-3.232h.278V9.2h2.909l-.697 1.346h-2.212v7.388c0 .968.674 1.556 1.629 1.556.325 0 .744-.07 1.21-.234l.187.33c-.697.659-1.863 1.417-3.351 1.417s-2.932-.707-2.932-2.832v-.003ZM56.908 14.345l-6.726.472c.279 2.62 1.629 4.272 3.653 4.272.978 0 1.816-.4 2.607-1.04l.255.215c-.838 1.675-2.584 2.739-4.306 2.739-2.932 0-5.399-2.125-5.399-5.9 0-3.256 2.142-5.428 5.493-6.138 3.35.235 4.423 2.314 4.423 5.003v.377Zm-3.28-.639c0-1.937-.188-4.153-1.468-4.153-1.163 0-2.025 2.053-2.025 4.272v.401l3.492-.52ZM70.43 20.527v.235h-5.353v-.235l1.049-1.084V12.55c0-1.275-.791-1.937-1.746-1.937-.278 0-.583.047-.838.166l-1.069.473v8.19l1.049 1.084v.235H58.17v-.235l1.049-1.084V11.37l-1.28-1.108v-.234l4.537-1.064v1.604l3.12-1.533c.372-.047.606-.071.86-.071 1.723 0 2.933.921 2.933 3.422v7.059l1.049 1.084-.009-.003ZM72.574 18.168v-7.625h-1.558v-.354l4.537-3.232h.278V9.2h2.91l-.698 1.346h-2.212v7.388c0 .968.674 1.556 1.63 1.556.324 0 .743-.07 1.209-.234l.187.33c-.697.659-1.863 1.417-3.35 1.417-1.489 0-2.933-.707-2.933-2.832v-.003Z'/%3E%3C/g%3E%3Cpath d='M143 0H87v25.964h56V0Z' fill='%23fff'/%3E%3Cpath d='M133.674 13.816c-1.771-.899-2.601-1.55-2.601-2.559 0-.784.508-1.392 1.333-1.392.53 0 .931.189 1.379.696l1.706 2.066h.341V9.459c-1.194-.11-1.978-.18-3.219-.18-2.134-.037-4.532 1.416-4.532 3.325 0 1.908 1.817 2.808 3.172 3.504 1.448.742 2.255 1.166 2.255 2.291 0 .987-.623 1.753-1.748 1.753-.599 0-1.005-.222-1.664-.881-.729-.729-1.743-2.513-1.743-2.513h-.341v3.55c1.125.314 2.416.43 3.887.43 2.116 0 4.601-1.283 4.601-3.731 0-1.642-1.24-2.38-2.831-3.19h.005ZM100.295 5.456h-6.8v.341l1.442 1.42V18.86l-1.443 1.383v.258h6.492v-.258l-1.461-1.383v-4.648h1.77c2.578 0 5.773-1.125 5.773-4.38 0-3.256-2.734-4.38-5.773-4.38v.004Zm-.922 8.198h-.853v-7.64h.853c1.632 0 2.873 1.346 2.873 3.818 0 2.471-1.471 3.817-2.873 3.817v.005ZM111.684 18.94V4.271h-.299l-4.773 1.203v.3l1.563.78v12.384l-1.461 1.305v.259h6.432v-.259l-1.462-1.305ZM125.176 9.062h-.3l-4.767 1.204v.3l1.563.779v7.211c-.42.143-.941.222-1.462.222-1.263 0-1.886-.503-1.886-1.905v-7.81h-.299l-4.768 1.203v.3l1.563.779v5.671c0 2.486 1.761 3.69 3.707 3.69.18 0 .3-.042 1.024-.444l2.125-1.143V20.7h.3l4.768-1.02v-.3l-1.563-.912V9.062h-.005Z' fill='%23FF544D'/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='translate(0 4.714)' d='M0 0h78.857v16.286H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.section3, .section4, .section5, .section6, .section7, .section8 {
  z-index: 1;
  background-repeat: repeat-x;
}
.section_card {
  position: relative;
}
.section_card .img_wrap {
  display: block;
  overflow: hidden;
  position: relative;
}
.section_card .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section_card .badge {
  display: inline-flex;
  align-items: center;
  position: absolute;
  font-weight: 700;
  line-height: 100%;
  color: #f4f4f6;
}
.section_card .badge_cyan {
  background-color: #1cc0b6;
}
.section_card .badge_gray {
  background-color: #4e4e4e;
}
.section_card .badge_orange {
  background-color: #ff544d;
}
.section_card .badge_purple {
  background-color: #4e419b;
}
.section_card .badge_green {
  background-color: #37b48b;
}
.section_card .badge_blue {
  background-color: #3c78cc;
}
.section_card strong {
  display: flex;
  color: #fff;
  font-weight: 700;
}
.section_card p {
  color: #c4c4c4;
  letter-spacing: -1px;
}
.section_card .ico_arrow {
  position: absolute;
}
@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes leftToRightVw {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes fadeInDownUp {
  0% {
    opacity: 0.001;
    transform: translateY(100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpDown {
  0% {
    opacity: 0.001;
    transform: translateY(-100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pitAPat {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInLeftRight {
  0% {
    opacity: 0.001;
    transform: translateX(-100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightLeft {
  0% {
    opacity: 0.001;
    transform: translateX(100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes backgroundLeftToRight {
  0% {
    background-position: left 100vw bottom 89px;
  }
  100% {
    background-position: left -100vw bottom 89px;
  }
}
@keyframes backgroundLeftToRightMobile {
  0% {
    background-position: left 100vw bottom 40px;
  }
  100% {
    background-position: left -100vw bottom 40px;
  }
}
.section9 {
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-color: #fff;
}
.section9:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #292c38;
  opacity: 0.9;
  pointer-events: none;
}
.section9.on .section_title {
  animation: fadeInRightLeft 3s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
.section9.on .section_content {
  animation: fadeInDownUp 3s ease-in-out;
  animation-fill-mode: forwards;
}
.section9 .label {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='143' height='26' fill='none'%3E%3Cg clip-path='url(%23a)' fill='%23fff'%3E%3Cpath d='M0 12.857c0-5.074 3.539-8.143 8.264-8.143 1.163 0 2.513.19 3.84.52V9.08h-.583l-1.93-2.879a2.614 2.614 0 0 0-1.978-.85c-2.724 0-3.653 3.494-3.653 7.27 0 3.99 1.163 7.742 3.747 7.742.955 0 1.793-.52 2.235-.945l1.816-2.807h.583v3.35c-1.025.544-2.955 1.04-4.842 1.04C2.631 21 0 17.931 0 12.858ZM13.498 15.147c0-3.517 2.466-5.475 5.77-6.185 3.305 0 5.771 2.43 5.771 5.829 0 3.398-2.466 5.498-5.77 6.209-3.304 0-5.771-2.43-5.771-5.853Zm7.935 0c0-2.243-.465-5.57-2.396-5.57-1.444 0-1.93 2.383-1.93 5.217 0 2.266.49 5.594 2.396 5.594 1.488 0 1.93-2.383 1.93-5.24ZM38.568 20.527v.235h-5.352v-.235l1.049-1.084V12.55c0-1.275-.791-1.937-1.746-1.937a2.03 2.03 0 0 0-.838.166l-1.07.473v8.19l1.05 1.084v.235h-5.352v-.235l1.048-1.084V11.37l-1.28-1.108v-.234l4.538-1.064v1.604l3.12-1.533c.371-.047.606-.071.86-.071 1.723 0 2.933.921 2.933 3.422v7.059l1.049 1.084-.01-.003ZM40.709 18.168v-7.625H39.15v-.354l4.538-3.232h.278V9.2h2.909l-.697 1.346h-2.212v7.388c0 .968.674 1.556 1.629 1.556.325 0 .744-.07 1.21-.234l.187.33c-.697.659-1.863 1.417-3.351 1.417s-2.932-.707-2.932-2.832v-.003ZM56.908 14.345l-6.726.472c.279 2.62 1.629 4.272 3.653 4.272.978 0 1.816-.4 2.607-1.04l.255.215c-.838 1.675-2.584 2.739-4.306 2.739-2.932 0-5.399-2.125-5.399-5.9 0-3.256 2.142-5.428 5.493-6.138 3.35.235 4.423 2.314 4.423 5.003v.377Zm-3.28-.639c0-1.937-.188-4.153-1.468-4.153-1.163 0-2.025 2.053-2.025 4.272v.401l3.492-.52ZM70.43 20.527v.235h-5.353v-.235l1.049-1.084V12.55c0-1.275-.791-1.937-1.746-1.937-.278 0-.583.047-.838.166l-1.069.473v8.19l1.049 1.084v.235H58.17v-.235l1.049-1.084V11.37l-1.28-1.108v-.234l4.537-1.064v1.604l3.12-1.533c.372-.047.606-.071.86-.071 1.723 0 2.933.921 2.933 3.422v7.059l1.049 1.084-.009-.003ZM72.574 18.168v-7.625h-1.558v-.354l4.537-3.232h.278V9.2h2.91l-.698 1.346h-2.212v7.388c0 .968.674 1.556 1.63 1.556.324 0 .743-.07 1.209-.234l.187.33c-.697.659-1.863 1.417-3.35 1.417-1.489 0-2.933-.707-2.933-2.832v-.003Z'/%3E%3C/g%3E%3Cpath d='M143 0H87v25.964h56V0Z' fill='%23fff'/%3E%3Cpath d='M133.674 13.816c-1.771-.899-2.601-1.55-2.601-2.559 0-.784.508-1.392 1.333-1.392.53 0 .931.189 1.379.696l1.706 2.066h.341V9.459c-1.194-.11-1.978-.18-3.219-.18-2.134-.037-4.532 1.416-4.532 3.325 0 1.908 1.817 2.808 3.172 3.504 1.448.742 2.255 1.166 2.255 2.291 0 .987-.623 1.753-1.748 1.753-.599 0-1.005-.222-1.664-.881-.729-.729-1.743-2.513-1.743-2.513h-.341v3.55c1.125.314 2.416.43 3.887.43 2.116 0 4.601-1.283 4.601-3.731 0-1.642-1.24-2.38-2.831-3.19h.005ZM100.295 5.456h-6.8v.341l1.442 1.42V18.86l-1.443 1.383v.258h6.492v-.258l-1.461-1.383v-4.648h1.77c2.578 0 5.773-1.125 5.773-4.38 0-3.256-2.734-4.38-5.773-4.38v.004Zm-.922 8.198h-.853v-7.64h.853c1.632 0 2.873 1.346 2.873 3.818 0 2.471-1.471 3.817-2.873 3.817v.005ZM111.684 18.94V4.271h-.299l-4.773 1.203v.3l1.563.78v12.384l-1.461 1.305v.259h6.432v-.259l-1.462-1.305ZM125.176 9.062h-.3l-4.767 1.204v.3l1.563.779v7.211c-.42.143-.941.222-1.462.222-1.263 0-1.886-.503-1.886-1.905v-7.81h-.299l-4.768 1.203v.3l1.563.779v5.671c0 2.486 1.761 3.69 3.707 3.69.18 0 .3-.042 1.024-.444l2.125-1.143V20.7h.3l4.768-1.02v-.3l-1.563-.912V9.062h-.005Z' fill='%23FF544D'/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='translate(0 4.714)' d='M0 0h78.857v16.286H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.section9 .tag {
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
  font-weight: 700;
  color: #fff;
  border-radius: 30px;
}
.section9 .tags {
  display: none;
  gap: 8px;
}
.section9 .img_wrap {
  display: flex;
}
.section9 .section_title, .section9 .section_content {
  position: relative;
  z-index: 1;
  opacity: 0.001;
}
.section9 .section_title strong,
.section9 .section_title p {
  color: #fff;
}
.section9 .section_content {
  flex-shrink: 0;
}
.section9 .ico_audio {
  position: absolute;
  animation: upDown 2s infinite ease-in-out;
}
.section9 .ico_ebook {
  position: absolute;
  animation: upDown 1.2s infinite ease-in-out;
}
.section9 .ico_newsletter {
  position: absolute;
  animation: upDown 1.5s infinite ease-in-out;
}
@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes leftToRightVw {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes fadeInDownUp {
  0% {
    opacity: 0.001;
    transform: translateY(100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpDown {
  0% {
    opacity: 0.001;
    transform: translateY(-100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pitAPat {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInLeftRight {
  0% {
    opacity: 0.001;
    transform: translateX(-100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightLeft {
  0% {
    opacity: 0.001;
    transform: translateX(100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes backgroundLeftToRight {
  0% {
    background-position: left 100vw bottom 89px;
  }
  100% {
    background-position: left -100vw bottom 89px;
  }
}
@keyframes backgroundLeftToRightMobile {
  0% {
    background-position: left 100vw bottom 40px;
  }
  100% {
    background-position: left -100vw bottom 40px;
  }
}
.section10 {
  background-color: #edf5ff;
}
.section10.on .section_title {
  animation: fadeInUpDown 2s ease-in-out;
  animation-fill-mode: forwards;
}
.section10.on .tickets li {
  animation: fadeInDownUp 2s ease-in-out;
  animation-fill-mode: forwards;
}
.section10.on .tickets li:nth-of-type(1) {
  animation-delay: 0.4s;
}
.section10.on .tickets li:nth-of-type(2) {
  animation-delay: 0.6s;
}
.section10.on .tickets li:nth-of-type(3) {
  animation-delay: 0.8s;
}
.section10.on .tickets li:nth-of-type(4) {
  animation-delay: 1s;
}
.section10.on .btn_medium {
  animation: fadeIn 1s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.section10 .label {
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -1px;
  color: #f6330a;
}
.section10 .section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.001;
}
.section10 .section_title p {
  color: #6f6f6f;
  text-align: center;
}
.section10 .section_content {
  text-align: center;
}
.section10 .section_content .btn_medium {
  opacity: 0.001;
}
.section10 .tickets {
  display: flex;
  flex-wrap: wrap;
}
.section10 .tickets li {
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 1px #cfddef inset;
  background-color: #fff;
  text-align: center;
  opacity: 0.001;
}
.section10 .tickets li.point:before {
  content: "";
  position: absolute;
  background-color: #f6330a;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
}
.section10 .tickets strong {
  position: relative;
}
.section10 .tickets strong:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12px;
  width: 100%;
  box-sizing: content-box;
  background-color: #edf5ff;
}
.section10 .tickets strong span {
  position: relative;
  font-weight: 700;
  color: #111;
}
.section10 .tickets .badge {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #fff;
}
.section10 .tickets p {
  text-align: center;
  letter-spacing: -1px;
  color: #111;
  padding: 0 30px;
}
.section11.section {
  overflow: visible;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 0;
}
.section11 .label {
  line-height: 100%;
  color: #fff;
  letter-spacing: -0.5px;
}
.section11 .links {
  display: flex;
  gap: 16px;
}
.section11 .section_title {
  padding-top: 10px;
}

.btn_small {
  display: inline-flex;
  justify-content: center;
  border-radius: 30px;
  font-weight: 700;
}
.btn_small .ico_arrow_right {
  margin-left: 8px;
}
.btn_medium {
  display: inline-flex;
  align-items: center;
  width: auto !important;
  font-weight: 700;
  line-height: 30px;
  border-radius: 40px;
}
.btn_point {
  background-color: #f6330a;
  color: #fff;
}
.btn_point .ico_arrow_right {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 9.53 2.078 0 0 1.995 7.856 9.54 0 17.085l2.078 1.995L12 9.55l-.01-.01.01-.01Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.btn_outline_white {
  border: none;
  box-shadow: 0 0 0 1px #fff inset;
}
.btn_outline_white .ico_arrow_right {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 9.53 2.078 0 0 1.995 7.856 9.54 0 17.085l2.078 1.995L12 9.55l-.01-.01.01-.01Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.btn_fill_white {
  background-color: #fff;
  color: #111;
}
.btn_fill_white .ico_arrow_right {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 9.53 2.078 0 0 1.995 7.856 9.54 0 17.085l2.078 1.995L12 9.55l-.01-.01.01-.01Z' fill='%23111111'/%3E%3C/svg%3E");
}

.ico_arrow_right {
  display: inline-flex;
}
.ico_arrow {
  display: inline-flex;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' fill='none'%3E%3Ccircle cx='36' cy='36' r='35' transform='rotate(90 36 36)' fill='%23fff' stroke='%23000' stroke-width='2'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m44.341 27.54-12.91.003v2.665l10.258-.002-.003 10.258h2.666l.004-12.91h-.015v-.015Z' fill='%23000'/%3E%3Cpath fill='%23000' d='M25.598 44.404 41.142 28.86l1.988 1.988-15.543 15.544z'/%3E%3C/svg%3E");
}
.ico_arrow_black {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 9.53 2.078 0 0 1.995 7.856 9.54 0 17.085l2.078 1.995L12 9.55l-.01-.01.01-.01Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-color: #000;
  border-radius: 100%;
}
.ico_newsletter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='112' fill='none'%3E%3Ccircle cx='56' cy='56' r='56' fill='%23FF7F65'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M79.203 42.936A5.936 5.936 0 0 0 73.267 37H38.35a5.936 5.936 0 0 0-5.936 5.936v27.02a5.936 5.936 0 0 0 5.936 5.936h34.917a5.936 5.936 0 0 0 5.936-5.936v-27.02Zm-5.936-2.968a2.968 2.968 0 0 1 2.968 2.968v27.02a2.968 2.968 0 0 1-2.968 2.968H38.35a2.968 2.968 0 0 1-2.968-2.968v-27.02a2.968 2.968 0 0 1 2.968-2.968h34.917Z' fill='%23fff' stroke='%23fff' stroke-width='.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M39.401 46.002c-.44.614-.302 1.47.308 1.914l15.095 10.963a1.355 1.355 0 0 0 1.602-.006L71.267 47.91a1.376 1.376 0 0 0 .294-1.916 1.356 1.356 0 0 0-1.904-.295L55.595 56.073l-14.293-10.38a1.356 1.356 0 0 0-1.9.31Z' fill='%23fff' stroke='%23fff' stroke-width='.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.5));
}
.ico_audio {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' fill='none'%3E%3Ccircle cx='35' cy='35' r='35' fill='%236BB1F7'/%3E%3Cg clip-path='url(%23a)' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M34.794 20.752c-1.087 0-4.016.162-6.87 2.186-.506.367-3.586 2.607-4.663 6.764a11.589 11.589 0 0 0-.366 2.746v13.935M34.816 20.73c1.088 0 4.017.162 6.871 2.187.506.366 3.586 2.606 4.663 6.763.291 1.12.356 2.078.366 2.746v13.935'/%3E%3Cpath d='M46.447 37.455c-.409-.032-2.52-.183-4.286 1.077-2.724 1.95-2.24 6.203.926 7.55 1.573.667 3.059.43 3.511.355M23.045 37.455c.41-.032 2.52-.183 4.286 1.077 2.725 1.95 2.24 6.203-.926 7.55-1.572.667-3.058.43-3.51.355'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='translate(21.538 19.385)' d='M0 0h26.535v28.495H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.5));
}
.ico_ebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='86' height='86' fill='none'%3E%3Ccircle cx='43' cy='43' r='43' fill='%23F7C13A'/%3E%3Cpath d='M27.405 56.85a.008.008 0 0 1-.009-.008v-28.67c0-2.851 2.27-5.172 5.06-5.172H57.15c.844 0 1.54.713 1.54 1.575v35.872c0 .862-.696 1.575-1.54 1.575h-24.68c-2.785 0-5.054-2.316-5.058-5.164a.008.008 0 0 0-.008-.008v0Z' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M42.995 33.054v12.255M37.425 42.029l5.139 4.71a.5.5 0 0 0 .669.005l5.333-4.715M37.425 52.213h11.141' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.5));
}

@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes leftToRightVw {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes fadeInDownUp {
  0% {
    opacity: 0.001;
    transform: translateY(100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpDown {
  0% {
    opacity: 0.001;
    transform: translateY(-100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pitAPat {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInLeftRight {
  0% {
    opacity: 0.001;
    transform: translateX(-100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightLeft {
  0% {
    opacity: 0.001;
    transform: translateX(100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes backgroundLeftToRight {
  0% {
    background-position: left 100vw bottom 89px;
  }
  100% {
    background-position: left -100vw bottom 89px;
  }
}
@keyframes backgroundLeftToRightMobile {
  0% {
    background-position: left 100vw bottom 40px;
  }
  100% {
    background-position: left -100vw bottom 40px;
  }
}
@media (min-width: 1024px) {
  footer {
    position: relative;
    z-index: 5;
  }
  .fixed_banner {
    height: 80px;
  }
  .fixed_banner .logo_plus_white {
    width: 216px;
    height: 25px;
  }
  .fixed_banner strong:not(.logo_plus_white),
  .fixed_banner span {
    font-size: 20px;
    line-height: 36px;
  }
  .fixed_banner .ico_arrow_black {
    margin-left: 16px;
  }
  .section_title > p {
    font-size: 19px;
    line-height: 34px;
  }
  .section1 .section_title strong, .section2 .section_title strong, .section9 .section_title strong, .section10 .section_title strong {
    margin-top: 24px;
    margin-bottom: 40px;
  }
  .section2 .section_title strong, .section3 .section_title strong, .section9 .section_title strong, .section10 .section_title strong {
    font-size: 58px;
    line-height: 78px;
  }
  .section1:before {
    width: 965px;
    height: 402px;
    top: 37px;
    right: 10px;
  }
  .section1:after {
    width: 1605px;
    height: 539px;
    bottom: 45px;
    left: 28px;
  }
  .section1 .label {
    width: 161px;
    height: 40px;
  }
  .section1 .section_title, .section1 .section_content {
    width: 1200px;
  }
  .section1 .section_title {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 272px 0 258px;
  }
  .section1 .section_title strong {
    font-size: 110px;
    line-height: 140px;
  }
  .section1 .section_title .btn_small {
    width: 193px;
  }
  .section1 .img_wrap {
    position: absolute;
    right: -20px;
    bottom: 114px;
    width: 807px;
    height: 800px;
  }
  .section1 .img_wrap img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
  }
  .section1 .plus_belt {
    position: relative;
    height: 114px;
    padding: 40px 0 42px;
  }
  .section1 .plus_belt li {
    font-size: 31px;
    padding: 0 20px;
  }
  .section2 {
    justify-content: flex-start;
    background-color: #fff;
  }
  .section2:after {
    bottom: 0;
    height: 147px;
  }
  .section2 .label {
    width: 142px;
    height: 29px;
  }
  .section2 .section_title {
    padding: 140px 0 91px;
  }
  .section2 .section_middle {
    width: 474px;
    padding: 0 25px;
  }
  .section .fixed_title .label {
    width: 143px;
    height: 26px;
  }
  .section .fixed_title.section_title {
    justify-content: center;
    position: fixed;
    top: 0;
    left: 50%;
    width: 1200px;
    height: 100%;
    transform: translateX(-50%);
  }
  .section .fixed_title.section_title strong {
    margin-top: 32px;
    margin-bottom: 40px;
  }
  .section3 {
    z-index: 4 !important;
  }
  .section4, .section5, .section6, .section7, .section8 {
    z-index: 3 !important;
  }
  .section3, .section4, .section5, .section6, .section7, .section8 {
    padding: 209px 0;
    justify-content: center;
    background-size: auto 149px;
    background-position: left 27px bottom 83px;
  }
  .section3.on .section_card, .section4.on .section_card, .section5.on .section_card, .section6.on .section_card, .section7.on .section_card, .section8.on .section_card {
    animation: fadeInDownUp 3s ease-in-out;
    animation-fill-mode: forwards;
  }
  .section3 .ico_arrow, .section4 .ico_arrow, .section5 .ico_arrow, .section6 .ico_arrow, .section7 .ico_arrow, .section8 .ico_arrow {
    top: 441px;
    right: 40px;
  }
  .section_card {
    left: 50%;
    width: 620px;
    margin-left: -20px;
    border-radius: 30px;
    background-color: #191919;
    opacity: 0.001;
  }
  .section_card .img_wrap {
    width: 620px;
    height: 477px;
    border-radius: 30px 30px 0 0;
  }
  .section_card .badge {
    top: 40px;
    left: 40px;
    height: 40px;
    border-radius: 30px;
    padding: 0 18px;
    font-size: 16px;
  }
  .section_card strong,
  .section_card p {
    padding-right: 40px;
    padding-left: 40px;
    background-color: #191919;
  }
  .section_card strong {
    padding-top: 36px;
    font-size: 28px;
    line-height: 40px;
  }
  .section_card p {
    padding-top: 12px;
    padding-bottom: 36px;
    font-size: 18px;
    line-height: 30px;
    border-radius: 0 0 30px 30px;
  }
  .section3 {
    background-color: #1cc0b6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1927' height='141' fill='none'%3E%3Cg opacity='.8'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='1349' height='141' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h1349v141H0z'/%3E%3Cpath d='M1 136.49h76.33v-21.08H26.16V10.69H1v125.8ZM134.835 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM211.704 138.87c10.88 0 20.4-5.27 28.73-12.41h.68l1.87 10.03h20.4V81.07c0-27.71-12.41-41.99-36.55-41.99-15.13 0-28.56 5.61-39.78 12.41l9.01 16.66c8.67-5.27 17.34-9.01 26.18-9.01 11.73 0 15.64 6.97 16.15 16.32-38.25 4.25-54.74 14.96-54.74 35.19 0 16.32 11.05 28.22 28.05 28.22Zm8.16-19.55c-7.31 0-12.41-3.23-12.41-10.54 0-8.67 7.65-14.96 30.94-17.85v19.21c-6.12 5.95-11.39 9.18-18.53 9.18ZM321.943 138.87c9.86 0 19.38-5.27 26.35-12.24h.51l1.87 9.86h20.4V1h-24.99v33.32l1.02 14.96c-6.97-6.29-13.6-10.2-24.31-10.2-20.4 0-39.95 18.87-39.95 49.98 0 31.28 15.3 49.81 39.1 49.81Zm6.29-20.57c-12.41 0-19.72-9.69-19.72-29.58 0-19.04 9.18-29.24 19.89-29.24 5.95 0 12.07 2.04 17.68 7.31v41.82c-5.44 6.97-11.05 9.69-17.85 9.69ZM438.938 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM495.837 136.49h24.99V79.88c5.27-13.77 14.28-18.87 21.59-18.87 4.08 0 6.63.68 10.03 1.53l4.25-21.42c-2.89-1.36-5.95-2.04-11.05-2.04-9.86 0-20.23 6.63-27.03 19.21h-.51l-2.04-16.83h-20.23v95.03ZM640.402 138.87c20.06 0 35.7-8.5 47.09-21.25 13.43-15.13 22.44-32.3 28.05-51.34h-22.78c-4.42 16.49-12.41 29.92-22.27 40.12-8.33 8.16-17.68 13.26-27.03 13.26-11.9 0-20.23-7.14-20.23-18.02 0-24.14 53.89-32.64 53.89-65.79 0-16.49-11.22-27.37-29.24-27.37-19.89 0-32.81 14.28-32.81 31.79 0 25.67 27.37 60.35 57.8 81.6 12.75 8.5 25.67 14.62 37.57 17l6.12-20.23c-8.33-1.7-18.36-6.29-28.56-12.92-25.33-16.15-52.19-44.54-52.19-65.45 0-9.18 5.27-15.3 12.58-15.3 6.46 0 9.52 4.76 9.52 11.05 0 25.16-58.48 27.2-58.48 67.15 0 19.55 14.79 35.7 40.97 35.7ZM773.357 136.49h25.16V89.06h18.53c26.35 0 47.26-12.24 47.26-40.29 0-28.9-20.91-38.08-47.26-38.08h-43.69v125.8Zm25.16-67.32V30.75h16.15c16.32 0 25.16 4.59 25.16 18.02s-8.84 20.4-25.16 20.4h-16.15Zm43.18 67.32h28.05l-39.78-69.7-17.51 15.81 29.24 53.89ZM925.454 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM1002.32 138.87c10.88 0 20.4-5.27 28.73-12.41h.68l1.87 10.03h20.4V81.07c0-27.71-12.41-41.99-36.55-41.99-15.13 0-28.557 5.61-39.777 12.41l9.01 16.66c8.67-5.27 17.337-9.01 26.177-9.01 11.73 0 15.64 6.97 16.15 16.32-38.247 4.25-54.737 14.96-54.737 35.19 0 16.32 11.05 28.22 28.047 28.22Zm8.16-19.55c-7.31 0-12.407-3.23-12.407-10.54 0-8.67 7.647-14.96 30.937-17.85v19.21c-6.12 5.95-11.39 9.18-18.53 9.18ZM1112.56 138.87c9.86 0 19.38-5.27 26.35-12.24h.51l1.87 9.86h20.4V1h-24.99v33.32l1.02 14.96c-6.97-6.29-13.6-10.2-24.31-10.2-20.4 0-39.95 18.87-39.95 49.98 0 31.28 15.3 49.81 39.1 49.81Zm6.29-20.57c-12.41 0-19.72-9.69-19.72-29.58 0-19.04 9.18-29.24 19.89-29.24 5.95 0 12.07 2.04 17.68 7.31v41.82c-5.44 6.97-11.05 9.69-17.85 9.69ZM1229.56 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM1286.46 136.49h24.99V79.88c5.27-13.77 14.28-18.87 21.59-18.87 4.08 0 6.63.68 10.03 1.53l4.25-21.42c-2.89-1.36-5.95-2.04-11.05-2.04-9.86 0-20.23 6.63-27.03 19.21h-.51l-2.04-16.83h-20.23v95.03Z'/%3E%3C/mask%3E%3Cpath d='M1 136.49h76.33v-21.08H26.16V10.69H1v125.8ZM134.835 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM211.704 138.87c10.88 0 20.4-5.27 28.73-12.41h.68l1.87 10.03h20.4V81.07c0-27.71-12.41-41.99-36.55-41.99-15.13 0-28.56 5.61-39.78 12.41l9.01 16.66c8.67-5.27 17.34-9.01 26.18-9.01 11.73 0 15.64 6.97 16.15 16.32-38.25 4.25-54.74 14.96-54.74 35.19 0 16.32 11.05 28.22 28.05 28.22Zm8.16-19.55c-7.31 0-12.41-3.23-12.41-10.54 0-8.67 7.65-14.96 30.94-17.85v19.21c-6.12 5.95-11.39 9.18-18.53 9.18ZM321.943 138.87c9.86 0 19.38-5.27 26.35-12.24h.51l1.87 9.86h20.4V1h-24.99v33.32l1.02 14.96c-6.97-6.29-13.6-10.2-24.31-10.2-20.4 0-39.95 18.87-39.95 49.98 0 31.28 15.3 49.81 39.1 49.81Zm6.29-20.57c-12.41 0-19.72-9.69-19.72-29.58 0-19.04 9.18-29.24 19.89-29.24 5.95 0 12.07 2.04 17.68 7.31v41.82c-5.44 6.97-11.05 9.69-17.85 9.69ZM438.938 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM495.837 136.49h24.99V79.88c5.27-13.77 14.28-18.87 21.59-18.87 4.08 0 6.63.68 10.03 1.53l4.25-21.42c-2.89-1.36-5.95-2.04-11.05-2.04-9.86 0-20.23 6.63-27.03 19.21h-.51l-2.04-16.83h-20.23v95.03ZM640.402 138.87c20.06 0 35.7-8.5 47.09-21.25 13.43-15.13 22.44-32.3 28.05-51.34h-22.78c-4.42 16.49-12.41 29.92-22.27 40.12-8.33 8.16-17.68 13.26-27.03 13.26-11.9 0-20.23-7.14-20.23-18.02 0-24.14 53.89-32.64 53.89-65.79 0-16.49-11.22-27.37-29.24-27.37-19.89 0-32.81 14.28-32.81 31.79 0 25.67 27.37 60.35 57.8 81.6 12.75 8.5 25.67 14.62 37.57 17l6.12-20.23c-8.33-1.7-18.36-6.29-28.56-12.92-25.33-16.15-52.19-44.54-52.19-65.45 0-9.18 5.27-15.3 12.58-15.3 6.46 0 9.52 4.76 9.52 11.05 0 25.16-58.48 27.2-58.48 67.15 0 19.55 14.79 35.7 40.97 35.7ZM773.357 136.49h25.16V89.06h18.53c26.35 0 47.26-12.24 47.26-40.29 0-28.9-20.91-38.08-47.26-38.08h-43.69v125.8Zm25.16-67.32V30.75h16.15c16.32 0 25.16 4.59 25.16 18.02s-8.84 20.4-25.16 20.4h-16.15Zm43.18 67.32h28.05l-39.78-69.7-17.51 15.81 29.24 53.89ZM925.454 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM1002.32 138.87c10.88 0 20.4-5.27 28.73-12.41h.68l1.87 10.03h20.4V81.07c0-27.71-12.41-41.99-36.55-41.99-15.13 0-28.557 5.61-39.777 12.41l9.01 16.66c8.67-5.27 17.337-9.01 26.177-9.01 11.73 0 15.64 6.97 16.15 16.32-38.247 4.25-54.737 14.96-54.737 35.19 0 16.32 11.05 28.22 28.047 28.22Zm8.16-19.55c-7.31 0-12.407-3.23-12.407-10.54 0-8.67 7.647-14.96 30.937-17.85v19.21c-6.12 5.95-11.39 9.18-18.53 9.18ZM1112.56 138.87c9.86 0 19.38-5.27 26.35-12.24h.51l1.87 9.86h20.4V1h-24.99v33.32l1.02 14.96c-6.97-6.29-13.6-10.2-24.31-10.2-20.4 0-39.95 18.87-39.95 49.98 0 31.28 15.3 49.81 39.1 49.81Zm6.29-20.57c-12.41 0-19.72-9.69-19.72-29.58 0-19.04 9.18-29.24 19.89-29.24 5.95 0 12.07 2.04 17.68 7.31v41.82c-5.44 6.97-11.05 9.69-17.85 9.69ZM1229.56 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM1286.46 136.49h24.99V79.88c5.27-13.77 14.28-18.87 21.59-18.87 4.08 0 6.63.68 10.03 1.53l4.25-21.42c-2.89-1.36-5.95-2.04-11.05-2.04-9.86 0-20.23 6.63-27.03 19.21h-.51l-2.04-16.83h-20.23v95.03Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .section4 {
    background-color: #4e4e4e;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1526' height='152' fill='none'%3E%3Cg opacity='.3'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='-.219' y='.938' width='765' height='151' fill='%23000'%3E%3Cpath fill='%23fff' d='M-.219.938h765v151h-765z'/%3E%3Cpath d='M53.37 38.21V14.834H30.8V39.34c0 24.988-6.69 51.024-29.019 64.969l14.026 17.249c12.816-7.738 21.2-20.796 26.277-36.353 4.595 13.945 12.172 25.633 24.344 32.968l12.574-17.895C58.448 86.897 53.37 62.392 53.37 38.21Zm10.156 32.082h17.25v73.674h21.602V4.516H80.775V51.43h-17.25v18.862Zm47.719 80.284h22.247V2.582h-22.247v147.994ZM206.941 25.797V10.643h-23.376v12.736c-.081 19.587-9.189 39.255-34.661 47.558l12.575 18.055c16.605-5.48 27.648-16.524 34.016-30.55 6.206 12.092 16.685 21.523 32.081 26.359l12.252-17.895c-24.021-7.174-32.887-23.94-32.887-41.109Zm-37.402 95.599c-.08 18.54 19.749 29.341 51.105 29.18 30.791.161 50.298-10.64 50.298-29.18 0-18.217-19.507-29.099-50.298-29.018-31.356-.08-51.185 10.801-51.105 29.018Zm23.215 0c-.081-7.254 9.512-11.043 27.89-10.962 18.217-.081 27.325 3.708 27.406 10.962-.081 7.819-9.189 11.043-27.406 11.124-18.378-.081-27.971-3.305-27.89-11.124Zm53.523-31.759h23.214v-34.5h19.185V35.954h-19.185V2.583h-23.214v87.054ZM381.953 16.93h-77.221V35.31H358.9c-.161 13.38-.484 28.615-3.708 49.008l22.731 1.774c3.95-23.537 3.95-41.351 4.03-55.941V16.93Zm-84.636 85.766 1.934 18.378c25.714.161 58.762-.323 88.99-5.481l-1.451-17.25c-13.059 1.692-27.165 2.74-41.11 3.305V59.329h-22.731v43.044c-9.108.242-17.733.242-25.632.323Zm95.599 47.88h23.537V80.609h18.862V61.264h-18.862V2.582h-23.537v147.994ZM604.137 2.582h-23.215v89.312h23.215v-34.5h19.184V38.21h-19.184V2.582ZM486.129 33.535h87.7V15.318h-32.243V1.938h-23.214v13.38h-32.243v18.217Zm6.932 30.147c-.08 15.96 15.074 26.842 36.918 26.922 21.602-.08 36.676-10.962 36.756-26.922-.08-15.638-15.154-26.6-36.756-26.6-21.844 0-36.998 10.962-36.918 26.6Zm13.381 85.282h97.695V97.698h-97.695v51.266Zm9.189-85.282c0-6.287 5.723-9.27 14.348-9.19 8.705-.08 14.59 2.903 14.67 9.19-.08 6.69-5.965 9.834-14.67 9.834-8.625 0-14.348-3.144-14.348-9.834Zm13.703 66.742v-14.509h51.911v14.509h-51.911ZM669.364 19.349h-34.016v18.378h14.025c-1.048 28.937-5.239 50.056-19.345 73.029l17.894 9.35c17.895-29.501 21.361-61.986 21.442-100.757Zm-5.804 97.694 17.572 9.673c9.673-15.879 14.993-32.887 17.975-50.943h12.655v68.515h21.764V5.807h-21.764v51.426h-10.478c1.048-12.171 1.289-24.826 1.289-37.884h-29.018v18.378h9.35c-.725 30.55-4.03 54.41-19.345 79.316Zm77.382 33.533h22.247V2.582h-22.247v147.994Z'/%3E%3C/mask%3E%3Cpath d='M53.37 38.21V14.834H30.8V39.34c0 24.988-6.69 51.024-29.019 64.969l14.026 17.249c12.816-7.738 21.2-20.796 26.277-36.353 4.595 13.945 12.172 25.633 24.344 32.968l12.574-17.895C58.448 86.897 53.37 62.392 53.37 38.21Zm10.156 32.082h17.25v73.674h21.602V4.516H80.775V51.43h-17.25v18.862Zm47.719 80.284h22.247V2.582h-22.247v147.994ZM206.941 25.797V10.643h-23.376v12.736c-.081 19.587-9.189 39.255-34.661 47.558l12.575 18.055c16.605-5.48 27.648-16.524 34.016-30.55 6.206 12.092 16.685 21.523 32.081 26.359l12.252-17.895c-24.021-7.174-32.887-23.94-32.887-41.109Zm-37.402 95.599c-.08 18.54 19.749 29.341 51.105 29.18 30.791.161 50.298-10.64 50.298-29.18 0-18.217-19.507-29.099-50.298-29.018-31.356-.08-51.185 10.801-51.105 29.018Zm23.215 0c-.081-7.254 9.512-11.043 27.89-10.962 18.217-.081 27.325 3.708 27.406 10.962-.081 7.819-9.189 11.043-27.406 11.124-18.378-.081-27.971-3.305-27.89-11.124Zm53.523-31.759h23.214v-34.5h19.185V35.954h-19.185V2.583h-23.214v87.054ZM381.953 16.93h-77.221V35.31H358.9c-.161 13.38-.484 28.615-3.708 49.008l22.731 1.774c3.95-23.537 3.95-41.351 4.03-55.941V16.93Zm-84.636 85.766 1.934 18.378c25.714.161 58.762-.323 88.99-5.481l-1.451-17.25c-13.059 1.692-27.165 2.74-41.11 3.305V59.329h-22.731v43.044c-9.108.242-17.733.242-25.632.323Zm95.599 47.88h23.537V80.609h18.862V61.264h-18.862V2.582h-23.537v147.994ZM604.137 2.582h-23.215v89.312h23.215v-34.5h19.184V38.21h-19.184V2.582ZM486.129 33.535h87.7V15.318h-32.243V1.938h-23.214v13.38h-32.243v18.217Zm6.932 30.147c-.08 15.96 15.074 26.842 36.918 26.922 21.602-.08 36.676-10.962 36.756-26.922-.08-15.638-15.154-26.6-36.756-26.6-21.844 0-36.998 10.962-36.918 26.6Zm13.381 85.282h97.695V97.698h-97.695v51.266Zm9.189-85.282c0-6.287 5.723-9.27 14.348-9.19 8.705-.08 14.59 2.903 14.67 9.19-.08 6.69-5.965 9.834-14.67 9.834-8.625 0-14.348-3.144-14.348-9.834Zm13.703 66.742v-14.509h51.911v14.509h-51.911ZM669.364 19.349h-34.016v18.378h14.025c-1.048 28.937-5.239 50.056-19.345 73.029l17.894 9.35c17.895-29.501 21.361-61.986 21.442-100.757Zm-5.804 97.694 17.572 9.673c9.673-15.879 14.993-32.887 17.975-50.943h12.655v68.515h21.764V5.807h-21.764v51.426h-10.478c1.048-12.171 1.289-24.826 1.289-37.884h-29.018v18.378h9.35c-.725 30.55-4.03 54.41-19.345 79.316Zm77.382 33.533h22.247V2.582h-22.247v147.994Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .section5 {
    background-color: #ff544d;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1326' height='151' fill='none'%3E%3Cg opacity='.7'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='748' height='151' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h748v151H0z'/%3E%3Cpath d='M1 76.68v16.8h134.08v-16.8H1Zm56.32-21.6v29.44H78.6V55.08H57.32Zm-40.16-9.76v16.96h103.2V45.32H17.16Zm0-37.12v45.12h21.28V25.16h80.64V8.2H17.16Zm-.32 121.6v16.96h104.48V129.8H16.84Zm0-26.4v31.68h21.12V103.4H16.84ZM250.828 1v148.64h21.12V1h-21.12Zm-33.6 52.16v17.12h39.68V53.16h-39.68Zm-64.16-40.48v102.08h71.2V12.68h-20.96v35.84h-29.12V12.68h-21.12ZM174.188 65h29.12v32.64h-29.12V65ZM311.055 41.16v16.8h102.72v-16.8h-102.72Zm-16.64 32.16v16.96h134.24V73.32h-134.24Zm16.64-66.88v43.04h21.12V6.44h-21.12Zm-1.44 122.72v16.96h104.96v-16.96h-104.96Zm0-27.04v31.52h21.28v-31.52h-21.28ZM585.213 1.16v148.16h20.159V1.16h-20.159Zm-17.76 56.8v17.28h24.64V57.96h-24.64ZM553.372 3.4v139.2h19.841V3.4h-19.841Zm-49.92 20.8v13.12c0 28.48-7.04 54.72-29.28 67.52l12.801 16.32c24.64-14.88 32.639-47.2 32.639-83.84V24.2h-16.16Zm4.321 0v13.12c0 34.4 8.799 64.96 33.759 78.4l12.161-16.16c-22.081-11.52-29.6-36.16-29.6-62.24V24.2h-16.32Zm-28.8-8v17.12h67.36V16.2h-67.36ZM631.2 14.44v99.68h71.2V14.44h-71.2Zm50.4 16.64v66.24h-29.44V31.08h29.44ZM725.44 1v148.64h21.44V1h-21.44Z'/%3E%3C/mask%3E%3Cpath d='M1 76.68v16.8h134.08v-16.8H1Zm56.32-21.6v29.44H78.6V55.08H57.32Zm-40.16-9.76v16.96h103.2V45.32H17.16Zm0-37.12v45.12h21.28V25.16h80.64V8.2H17.16Zm-.32 121.6v16.96h104.48V129.8H16.84Zm0-26.4v31.68h21.12V103.4H16.84ZM250.828 1v148.64h21.12V1h-21.12Zm-33.6 52.16v17.12h39.68V53.16h-39.68Zm-64.16-40.48v102.08h71.2V12.68h-20.96v35.84h-29.12V12.68h-21.12ZM174.188 65h29.12v32.64h-29.12V65ZM311.055 41.16v16.8h102.72v-16.8h-102.72Zm-16.64 32.16v16.96h134.24V73.32h-134.24Zm16.64-66.88v43.04h21.12V6.44h-21.12Zm-1.44 122.72v16.96h104.96v-16.96h-104.96Zm0-27.04v31.52h21.28v-31.52h-21.28ZM585.213 1.16v148.16h20.159V1.16h-20.159Zm-17.76 56.8v17.28h24.64V57.96h-24.64ZM553.372 3.4v139.2h19.841V3.4h-19.841Zm-49.92 20.8v13.12c0 28.48-7.04 54.72-29.28 67.52l12.801 16.32c24.64-14.88 32.639-47.2 32.639-83.84V24.2h-16.16Zm4.321 0v13.12c0 34.4 8.799 64.96 33.759 78.4l12.161-16.16c-22.081-11.52-29.6-36.16-29.6-62.24V24.2h-16.32Zm-28.8-8v17.12h67.36V16.2h-67.36ZM631.2 14.44v99.68h71.2V14.44h-71.2Zm50.4 16.64v66.24h-29.44V31.08h29.44ZM725.44 1v148.64h21.44V1h-21.44Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .section6 {
    background-color: #4e419b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1323' height='151' fill='none'%3E%3Cg opacity='.3'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='745' height='151' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h745v151H0z'/%3E%3Cpath d='M1 14.92v98.24h70.88V14.92H1Zm49.92 16.64v64.8H21.96v-64.8h28.96ZM91.24 1v148.16h21.44V1H91.24Zm16.64 55.84v17.6h26.24v-17.6h-26.24ZM210.348 3.72c-32.64 0-53.601 11.04-53.601 28.96s20.961 28.8 53.601 28.8 53.6-10.88 53.6-28.8-20.96-28.96-53.6-28.96Zm0 16.48c20.16 0 31.679 4 31.679 12.48 0 8.32-11.519 12.48-31.679 12.48-20.321 0-31.681-4.16-31.681-12.48 0-8.48 11.36-12.48 31.681-12.48ZM158.827 97v50.56h102.401V97H158.827Zm81.601 16.8v16.96h-60.64V113.8h60.64Zm-97.121-43.84v16.8h133.921v-16.8H143.307ZM352.505 30.12v4.32c0 15.84-8 31.52-26.72 38.88l9.92 15.52c23.2-8.8 32.64-30.56 32.64-54.4v-4.32h-15.84Zm4.32 0v4.32c0 22.56 9.6 43.2 32.96 51.2l9.44-15.84c-18.56-6.4-26.72-20.8-26.72-35.36v-4.32h-15.68Zm-26.88-12.16v16.48h64.96V17.96h-64.96Zm22.56-14.4v22.88h20V3.56h-20Zm79.52-2.4v91.36h20.16V1.16h-20.16Zm-17.76 35.52v17.28h23.52V36.68h-23.52Zm-13.12-32.8v83.68h19.84V3.88h-19.84Zm.8 89.92c-31.2 0-50.88 10.4-50.88 27.84 0 17.28 19.68 27.68 50.88 27.68 31.2 0 51.04-10.4 51.04-27.68 0-17.44-19.84-27.84-51.04-27.84Zm0 16.16c19.04 0 29.6 3.84 29.6 11.68s-10.56 11.52-29.6 11.52-29.76-3.68-29.76-11.52 10.72-11.68 29.76-11.68ZM574.812 1v148.16h21.441V1h-21.441Zm-43.679 15.36v3.84c0 39.68-15.36 66.56-57.921 87.04l11.041 16.96c52.64-25.44 68-62.56 68-107.84h-21.12Zm-50.081 0v16.8h60.16v-16.8h-60.16ZM721.6 1v148.16h21.44V1H721.6Zm-43.68 15.36v3.84c0 39.68-15.36 66.56-57.92 87.04l11.04 16.96c52.64-25.44 68-62.56 68-107.84h-21.12Zm-50.08 0v16.8H688v-16.8h-60.16Z'/%3E%3C/mask%3E%3Cpath d='M1 14.92v98.24h70.88V14.92H1Zm49.92 16.64v64.8H21.96v-64.8h28.96ZM91.24 1v148.16h21.44V1H91.24Zm16.64 55.84v17.6h26.24v-17.6h-26.24ZM210.348 3.72c-32.64 0-53.601 11.04-53.601 28.96s20.961 28.8 53.601 28.8 53.6-10.88 53.6-28.8-20.96-28.96-53.6-28.96Zm0 16.48c20.16 0 31.679 4 31.679 12.48 0 8.32-11.519 12.48-31.679 12.48-20.321 0-31.681-4.16-31.681-12.48 0-8.48 11.36-12.48 31.681-12.48ZM158.827 97v50.56h102.401V97H158.827Zm81.601 16.8v16.96h-60.64V113.8h60.64Zm-97.121-43.84v16.8h133.921v-16.8H143.307ZM352.505 30.12v4.32c0 15.84-8 31.52-26.72 38.88l9.92 15.52c23.2-8.8 32.64-30.56 32.64-54.4v-4.32h-15.84Zm4.32 0v4.32c0 22.56 9.6 43.2 32.96 51.2l9.44-15.84c-18.56-6.4-26.72-20.8-26.72-35.36v-4.32h-15.68Zm-26.88-12.16v16.48h64.96V17.96h-64.96Zm22.56-14.4v22.88h20V3.56h-20Zm79.52-2.4v91.36h20.16V1.16h-20.16Zm-17.76 35.52v17.28h23.52V36.68h-23.52Zm-13.12-32.8v83.68h19.84V3.88h-19.84Zm.8 89.92c-31.2 0-50.88 10.4-50.88 27.84 0 17.28 19.68 27.68 50.88 27.68 31.2 0 51.04-10.4 51.04-27.68 0-17.44-19.84-27.84-51.04-27.84Zm0 16.16c19.04 0 29.6 3.84 29.6 11.68s-10.56 11.52-29.6 11.52-29.76-3.68-29.76-11.52 10.72-11.68 29.76-11.68ZM574.812 1v148.16h21.441V1h-21.441Zm-43.679 15.36v3.84c0 39.68-15.36 66.56-57.921 87.04l11.041 16.96c52.64-25.44 68-62.56 68-107.84h-21.12Zm-50.081 0v16.8h60.16v-16.8h-60.16ZM721.6 1v148.16h21.44V1H721.6Zm-43.68 15.36v3.84c0 39.68-15.36 66.56-57.92 87.04l11.04 16.96c52.64-25.44 68-62.56 68-107.84h-21.12Zm-50.08 0v16.8H688v-16.8h-60.16Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .section7 {
    background-color: #37b48b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1335' height='152' fill='none'%3E%3Cg opacity='.6'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='757' height='152' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h757v152H0z'/%3E%3Cpath d='M98.16 1.8v148.16h21.44V1.8H98.16ZM114 58.44v17.44h26.08V58.44H114ZM59.28 17.16v3.68C59.28 61 40.88 88.2 2 108.36l11.84 16.16c49.28-24.8 66.24-62.88 66.24-107.36h-20.8Zm-49.12 0v17.12h60V17.16h-60ZM202.548 15.56v3.68c0 11.84-14.241 25.12-46.721 28.32l7.521 16.48c38.08-3.68 58.08-22.24 58.08-44.8v-3.68h-18.88Zm10.399 0v3.68c0 22.72 20.161 41.12 58.081 44.8l7.52-16.48c-32.48-3.04-46.721-16.32-46.721-28.32v-3.68h-18.88Zm-50.56-8.16v16.8h109.761V7.4H162.387Zm-12.16 66.56v16.96h134.081V73.96H150.227Zm56.16-19.04v26.56h21.12V54.92h-21.12Zm-41.28 46.72v16.8h81.601v31.68h21.28v-48.48H165.107ZM303.255 16.68v16.8h63.84v-16.8h-63.84Zm19.04 42.4v50.24h20.96V59.08h-20.96Zm36.32-42.4v12c0 14.24 0 31.36-3.84 55.04l20.8 1.92c4-24.64 4-42.56 4-56.96v-12h-20.96Zm33.6-14.72v148.16h21.28V1.96h-21.28Zm15.04 59.52v17.6h26.08v-17.6h-26.08Zm-109.6 58.72c25.76 0 59.04-.64 88.96-5.76l-1.12-15.52c-29.12 3.68-63.68 4.16-89.76 4.16l1.92 17.12ZM575.012 1.96v89.28h21.28V1.96h-21.28Zm15.36 36.48v17.44h25.6V38.44h-25.6Zm-90.399 59.2v50.88h96.319V97.64h-96.319Zm75.519 16.8v17.28h-54.56v-17.28h54.56Zm-95.84-99.2v16.8h87.2v-16.8h-87.2Zm43.68 21.12c-21.6 0-36.479 10.88-36.479 26.72 0 16 14.879 26.56 36.479 26.56 21.44 0 36.32-10.56 36.32-26.56 0-15.84-14.88-26.72-36.32-26.72Zm0 15.84c9.44 0 16 3.68 16 10.88 0 7.2-6.56 11.04-16 11.04-9.6 0-15.999-3.84-15.999-11.04 0-7.2 6.399-10.88 15.999-10.88ZM512.613 1v23.36h21.279V1h-21.279ZM644.52 18.76v1.76c0 36.64-3.04 62.4-20.32 89.6l16.32 8.8c18.4-29.44 21.92-62.56 21.92-100.16h-17.92Zm-15.52 0v17.12h26.88V18.76H629Zm48.64 0v1.92c0 36.96-1.6 67.04-20.48 96.48l16.32 8.96c19.84-31.68 22.08-68.64 22.08-107.36h-17.92Zm-10.72 0v17.12h22.72V18.76h-22.72Zm67.84-16.8v148.16h20.32V1.96h-20.32Zm-46.4 55.52V74.6h20.96V57.48h-20.96Zm17.76-52.32v138.4h19.84V5.16h-19.84Z'/%3E%3C/mask%3E%3Cpath d='M98.16 1.8v148.16h21.44V1.8H98.16ZM114 58.44v17.44h26.08V58.44H114ZM59.28 17.16v3.68C59.28 61 40.88 88.2 2 108.36l11.84 16.16c49.28-24.8 66.24-62.88 66.24-107.36h-20.8Zm-49.12 0v17.12h60V17.16h-60ZM202.548 15.56v3.68c0 11.84-14.241 25.12-46.721 28.32l7.521 16.48c38.08-3.68 58.08-22.24 58.08-44.8v-3.68h-18.88Zm10.399 0v3.68c0 22.72 20.161 41.12 58.081 44.8l7.52-16.48c-32.48-3.04-46.721-16.32-46.721-28.32v-3.68h-18.88Zm-50.56-8.16v16.8h109.761V7.4H162.387Zm-12.16 66.56v16.96h134.081V73.96H150.227Zm56.16-19.04v26.56h21.12V54.92h-21.12Zm-41.28 46.72v16.8h81.601v31.68h21.28v-48.48H165.107ZM303.255 16.68v16.8h63.84v-16.8h-63.84Zm19.04 42.4v50.24h20.96V59.08h-20.96Zm36.32-42.4v12c0 14.24 0 31.36-3.84 55.04l20.8 1.92c4-24.64 4-42.56 4-56.96v-12h-20.96Zm33.6-14.72v148.16h21.28V1.96h-21.28Zm15.04 59.52v17.6h26.08v-17.6h-26.08Zm-109.6 58.72c25.76 0 59.04-.64 88.96-5.76l-1.12-15.52c-29.12 3.68-63.68 4.16-89.76 4.16l1.92 17.12ZM575.012 1.96v89.28h21.28V1.96h-21.28Zm15.36 36.48v17.44h25.6V38.44h-25.6Zm-90.399 59.2v50.88h96.319V97.64h-96.319Zm75.519 16.8v17.28h-54.56v-17.28h54.56Zm-95.84-99.2v16.8h87.2v-16.8h-87.2Zm43.68 21.12c-21.6 0-36.479 10.88-36.479 26.72 0 16 14.879 26.56 36.479 26.56 21.44 0 36.32-10.56 36.32-26.56 0-15.84-14.88-26.72-36.32-26.72Zm0 15.84c9.44 0 16 3.68 16 10.88 0 7.2-6.56 11.04-16 11.04-9.6 0-15.999-3.84-15.999-11.04 0-7.2 6.399-10.88 15.999-10.88ZM512.613 1v23.36h21.279V1h-21.279ZM644.52 18.76v1.76c0 36.64-3.04 62.4-20.32 89.6l16.32 8.8c18.4-29.44 21.92-62.56 21.92-100.16h-17.92Zm-15.52 0v17.12h26.88V18.76H629Zm48.64 0v1.92c0 36.96-1.6 67.04-20.48 96.48l16.32 8.96c19.84-31.68 22.08-68.64 22.08-107.36h-17.92Zm-10.72 0v17.12h22.72V18.76h-22.72Zm67.84-16.8v148.16h20.32V1.96h-20.32Zm-46.4 55.52V74.6h20.96V57.48h-20.96Zm17.76-52.32v138.4h19.84V5.16h-19.84Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .section8 {
    background-color: #3c78cc;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1363' height='151' fill='none'%3E%3Cg opacity='.4'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='785' height='151' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h785v151H0z'/%3E%3Cpath d='M40.72 65.16v25.92h21.44V65.16H40.72ZM4.4 74.92c27.04 0 61.12-.48 92.8-5.44l-1.12-14.4C65.2 58.6 29.52 58.76 2 58.76l2.4 16.16ZM40.56 4.68v3.2c0 12.96-10.24 25.28-33.6 29.76l8.8 15.84C43.92 47.72 57.2 29.64 57.2 7.88v-3.2H40.56Zm5.44 0v3.2c0 20.8 13.28 37.92 40.48 43.36l8.64-15.84c-22.24-4-32.48-15.52-32.48-27.52v-3.2H46ZM103.92 1v79.04h21.28V1h-21.28ZM24.56 85.64v15.68h79.52v7.84H24.72v26.4h20.96v-11.52h79.52v-38.4H24.56Zm.16 46.72v16H129.2v-16H24.72ZM263.997 4.04V106.6h19.52V4.04h-19.52Zm12 38.08v16.96h26.08V42.12h-26.08Zm-88.96 28.16V87.4h6.561c7.84 0 15.84-.16 26.56-2.4l-1.601-16.96c-9.92 2.08-17.759 2.24-24.959 2.24h-6.561Zm0-55.84v60.64h19.201V31.24h11.679v-16.8h-30.88Zm37.281 55.84V87.4h6.72c8.64 0 17.12-.16 28.16-2.24l-1.6-17.28c-10.56 2.24-18.56 2.4-26.56 2.4h-6.72Zm0-55.84v60.64h19.2V31.24h13.12v-16.8h-32.32Zm69.12-13.28V110.6h19.839V1.16h-19.839Zm-84 128.64v16.96h107.2V129.8h-107.2Zm0-30.88v41.28h21.279V98.92h-21.279ZM402.795 84.68v60.16h21.28V84.68h-21.28Zm68.32-83.52v148.16h21.44V1.16h-21.44ZM369.035 93.8c28.16 0 61.76-.32 93.92-5.12l-1.12-15.52c-31.2 3.36-66.4 3.36-95.36 3.52l2.56 17.12Zm72.48 7.2v16h33.92v-16h-33.92Zm-63.2-92.8v56.32h74.24V8.2h-74.24Zm53.44 16.8v22.72h-32.48V25h32.48ZM608.783 1.16v148.16h21.12V1.16h-21.12Zm16.32 57.76v17.76h26.24V58.92h-26.24Zm-112-35.84v16.96h86.24V23.08h-86.24Zm43.36 25.28c-21.6 0-37.6 14.72-37.6 35.36s16 35.36 37.6 35.36c21.599 0 37.6-14.72 37.6-35.36s-16.001-35.36-37.6-35.36Zm0 17.28c10.08 0 17.28 6.72 17.28 18.08s-7.2 18.08-17.28 18.08c-10.08 0-17.28-6.72-17.28-18.08s7.2-18.08 17.28-18.08Zm-10.72-62.08v25.92h21.28V3.56h-21.28ZM696.21 24.52v16.64c0 25.12-12 52.48-36.8 63.52l12 16.8c27.84-12.64 41.76-46.08 41.76-80.32V24.52h-16.96Zm4.8 0v16.64c0 32.96 13.76 64.48 41.92 76.64l11.52-16.8c-24.8-10.24-36.64-35.84-36.64-59.84V24.52h-16.8Zm-35.68-9.12v17.44h83.04V15.4h-83.04Zm96.8-14.24v148.16h21.44V1.16h-21.44Z'/%3E%3C/mask%3E%3Cpath d='M40.72 65.16v25.92h21.44V65.16H40.72ZM4.4 74.92c27.04 0 61.12-.48 92.8-5.44l-1.12-14.4C65.2 58.6 29.52 58.76 2 58.76l2.4 16.16ZM40.56 4.68v3.2c0 12.96-10.24 25.28-33.6 29.76l8.8 15.84C43.92 47.72 57.2 29.64 57.2 7.88v-3.2H40.56Zm5.44 0v3.2c0 20.8 13.28 37.92 40.48 43.36l8.64-15.84c-22.24-4-32.48-15.52-32.48-27.52v-3.2H46ZM103.92 1v79.04h21.28V1h-21.28ZM24.56 85.64v15.68h79.52v7.84H24.72v26.4h20.96v-11.52h79.52v-38.4H24.56Zm.16 46.72v16H129.2v-16H24.72ZM263.997 4.04V106.6h19.52V4.04h-19.52Zm12 38.08v16.96h26.08V42.12h-26.08Zm-88.96 28.16V87.4h6.561c7.84 0 15.84-.16 26.56-2.4l-1.601-16.96c-9.92 2.08-17.759 2.24-24.959 2.24h-6.561Zm0-55.84v60.64h19.201V31.24h11.679v-16.8h-30.88Zm37.281 55.84V87.4h6.72c8.64 0 17.12-.16 28.16-2.24l-1.6-17.28c-10.56 2.24-18.56 2.4-26.56 2.4h-6.72Zm0-55.84v60.64h19.2V31.24h13.12v-16.8h-32.32Zm69.12-13.28V110.6h19.839V1.16h-19.839Zm-84 128.64v16.96h107.2V129.8h-107.2Zm0-30.88v41.28h21.279V98.92h-21.279ZM402.795 84.68v60.16h21.28V84.68h-21.28Zm68.32-83.52v148.16h21.44V1.16h-21.44ZM369.035 93.8c28.16 0 61.76-.32 93.92-5.12l-1.12-15.52c-31.2 3.36-66.4 3.36-95.36 3.52l2.56 17.12Zm72.48 7.2v16h33.92v-16h-33.92Zm-63.2-92.8v56.32h74.24V8.2h-74.24Zm53.44 16.8v22.72h-32.48V25h32.48ZM608.783 1.16v148.16h21.12V1.16h-21.12Zm16.32 57.76v17.76h26.24V58.92h-26.24Zm-112-35.84v16.96h86.24V23.08h-86.24Zm43.36 25.28c-21.6 0-37.6 14.72-37.6 35.36s16 35.36 37.6 35.36c21.599 0 37.6-14.72 37.6-35.36s-16.001-35.36-37.6-35.36Zm0 17.28c10.08 0 17.28 6.72 17.28 18.08s-7.2 18.08-17.28 18.08c-10.08 0-17.28-6.72-17.28-18.08s7.2-18.08 17.28-18.08Zm-10.72-62.08v25.92h21.28V3.56h-21.28ZM696.21 24.52v16.64c0 25.12-12 52.48-36.8 63.52l12 16.8c27.84-12.64 41.76-46.08 41.76-80.32V24.52h-16.96Zm4.8 0v16.64c0 32.96 13.76 64.48 41.92 76.64l11.52-16.8c-24.8-10.24-36.64-35.84-36.64-59.84V24.52h-16.8Zm-35.68-9.12v17.44h83.04V15.4h-83.04Zm96.8-14.24v148.16h21.44V1.16h-21.44Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .section9 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='1080' fill='none'%3E%3Cmask id='a' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1920' height='1080'%3E%3Cpath opacity='.9' fill='%23292C38' d='M0 0h1920v1080H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Crect x='376.729' y='672.862' width='377.198' height='483.138' rx='53' fill='%237657F3'/%3E%3Cpath opacity='.6' d='M495.72 750.766c-15.273 0-26.718 7.734-26.718 19.453 0 10.703 9.023 17.89 21.718 19.336v12.148h-27.422v8.203h65.079v-8.203h-27.735v-12.148c12.774-1.407 21.836-8.594 21.875-19.336-.039-11.719-11.523-19.453-26.797-19.453Zm-16.875 19.453c0-7.11 6.914-11.524 16.875-11.485 10-.039 16.914 4.375 16.953 11.485-.039 7.5-6.953 11.679-16.953 11.719-9.961-.04-16.875-4.219-16.875-11.719Zm112.725-23.125h-10.078v71.25h10.078v-71.25Zm-55.234 54.297h6.172c15.39 0 24.453-.313 34.297-2.188l-.938-8.203c-8.945 1.602-16.797 1.953-29.531 1.953v-31.484h24.609v-8.125h-34.609v48.047Zm96.866-50.625c-15.274 0-26.719 7.734-26.719 19.453 0 10.703 9.023 17.89 21.719 19.336v12.148H600.78v8.203h65.078v-8.203h-27.735v-12.148c12.774-1.407 21.836-8.594 21.875-19.336-.039-11.719-11.523-19.453-26.796-19.453Zm-16.875 19.453c0-7.11 6.914-11.524 16.875-11.485 10-.039 16.914 4.375 16.953 11.485-.039 7.5-6.953 11.679-16.953 11.719-9.961-.04-16.875-4.219-16.875-11.719Z' fill='%23fff'/%3E%3Crect x='793.459' y='370' width='443.084' height='786' rx='53' fill='%23E64D3F'/%3E%3Crect x='1276.07' y='672.862' width='377.198' height='483.138' rx='53' fill='%233276F5'/%3E%3Crect x='1693' y='151' width='377' height='1005' rx='53' fill='%23ED6B55'/%3E%3Crect x='-40' y='513' width='377' height='643' rx='53' fill='%23F4C054'/%3E%3Cpath opacity='.5' d='m41.035 665 4.79-14.678h23.028L73.643 665h14.15L65.82 601.367H48.858L26.798 665h14.237Zm8.13-24.961 7.954-24.346h.44l7.954 24.346H49.165Zm75.757 4.658c0 6.504-4.482 9.888-9.228 9.932-5.098-.044-8.35-3.56-8.35-9.229v-28.125H94.337v30.411c0 11.162 6.547 17.929 16.084 17.929 7.207 0 12.348-3.691 14.501-9.228h.528V665h12.48v-47.725h-13.008v27.422Zm40.294 21.094c7.778 0 11.733-4.482 13.535-8.437h.615V665h12.832v-63.633H179.19v23.906h-.439c-1.714-3.867-5.537-8.613-13.535-8.613-10.547 0-19.424 8.174-19.424 24.522 0 15.952 8.525 24.609 19.424 24.609Zm-6.065-24.697c-.044-8.306 3.472-14.063 10.108-14.063 6.548 0 10.195 5.493 10.195 14.063 0 8.613-3.691 14.282-10.195 14.326-6.592-.044-10.152-5.889-10.108-14.326ZM202.257 665h13.008v-47.725h-13.008V665Zm-.615-60.557c0 3.604 3.208 6.592 7.119 6.592 3.867 0 7.075-2.988 7.031-6.592.044-3.691-3.164-6.635-7.031-6.679-3.911.044-7.119 2.988-7.119 6.679Zm44.776 61.524c14.458-.044 23.423-9.932 23.467-24.697-.044-14.722-9.009-24.61-23.467-24.61-14.414 0-23.423 9.888-23.379 24.61-.044 14.765 8.965 24.653 23.379 24.697Zm-10.196-24.697c0-8.394 3.472-14.678 10.284-14.678 6.635 0 10.151 6.284 10.107 14.678.044 8.349-3.472 14.545-10.107 14.589-6.812-.044-10.284-6.24-10.284-14.589ZM876.361 522h42.803v-10.898h-29.619v-15.469h27.334v-10.899h-27.334v-15.468h29.531v-10.899h-42.715V522Zm81.954-37.002h-29.004v10.371h29.004v-10.371ZM968.989 522h26.982c14.369 0 21.929-7.471 21.969-17.578-.04-9.404-6.81-15.117-13.97-15.469v-.615c6.55-1.45 11.47-6.152 11.43-13.623.04-9.58-7.08-16.348-21.098-16.348h-25.313V522Zm13.184-10.898v-17.051h11.513c6.504 0 10.594 3.779 10.544 9.14.05 4.79-3.25 7.955-10.895 7.911h-11.162Zm0-26.104V469.09h10.459c6.02 0 9.448 3.12 9.408 7.734.04 5.098-4.135 8.218-9.672 8.174h-10.195Zm64.907 37.969c14.45-.044 23.42-9.932 23.46-24.697-.04-14.722-9.01-24.61-23.46-24.61-14.42 0-23.43 9.888-23.38 24.61-.05 14.765 8.96 24.653 23.38 24.697Zm-10.2-24.697c0-8.394 3.47-14.678 10.28-14.678 6.64 0 10.15 6.284 10.11 14.678.04 8.349-3.47 14.545-10.11 14.589-6.81-.044-10.28-6.24-10.28-14.589Zm62.88 24.697c14.46-.044 23.42-9.932 23.47-24.697-.05-14.722-9.01-24.61-23.47-24.61-14.41 0-23.42 9.888-23.38 24.61-.04 14.765 8.97 24.653 23.38 24.697Zm-10.19-24.697c0-8.394 3.47-14.678 10.28-14.678 6.63 0 10.15 6.284 10.11 14.678.04 8.349-3.48 14.545-10.11 14.589-6.81-.044-10.28-6.24-10.28-14.589ZM1131 522h13.01v-15.293l3.65-4.131L1160.8 522h15.29l-18.76-27.07 17.79-20.655h-14.94l-15.47 18.282h-.7v-34.19H1131V522ZM1405.4 771.367h-13.1v40.43h-.61l-27.78-40.43h-11.6V835h13.19v-40.43h.52l27.95 40.43h11.43v-63.633Zm31.68 64.6c11.78-.044 19.69-5.757 21.53-14.59h-12.39c-1.27 2.856-4.44 4.79-8.88 4.834-6.72-.044-10.98-4.482-10.98-11.69h32.6v-3.691c0-16.26-9.88-24.17-22.41-24.17-13.97 0-23.07 9.976-23.03 24.697-.04 15.118 8.93 24.566 23.56 24.61Zm-10.72-29.619c.26-5.494 4.48-9.976 10.46-9.932 5.8-.044 9.8 4.131 9.84 9.932h-20.3ZM1475.79 835h13.8l8.26-30.322h.62l8.26 30.322h13.71l13.09-47.725h-13.18l-7.38 32.08h-.44l-7.91-32.08h-12.92l-7.82 32.256h-.44l-7.47-32.256h-13.19L1475.79 835Zm91.18-33.574h12.22c-.7-9.053-8.17-14.766-20.22-14.766-12.3 0-20.17 5.713-20.12 14.854-.05 7.075 4.61 11.733 13.71 13.535l7.91 1.582c4.48.923 6.5 2.461 6.5 4.922 0 3.076-3.16 4.966-7.91 5.009-4.79-.043-7.82-1.977-8.44-5.712h-13.09c1.1 9.316 8.66 15.073 21.53 15.117 12.7-.044 21.14-6.328 21.18-15.733-.04-6.855-4.52-10.986-13.8-12.92l-8.52-1.757c-4.53-.923-6.2-2.593-6.15-4.746-.05-2.901 3.16-4.878 7.38-4.922 4.35.044 7.25 2.197 7.82 5.537Zm-196.64 69.941h-13V935h13v-63.633Zm31.33 64.6c11.78-.044 19.69-5.757 21.54-14.59h-12.4c-1.27 2.856-4.43 4.79-8.87 4.834-6.73-.044-10.99-4.482-10.99-11.69h32.61v-3.691c0-16.26-9.89-24.17-22.41-24.17-13.98 0-23.08 9.976-23.03 24.697-.05 15.118 8.92 24.566 23.55 24.61Zm-10.72-29.619c.26-5.494 4.48-9.976 10.46-9.932 5.8-.044 9.8 4.131 9.84 9.932h-20.3Zm65.52-19.073h-8.97V875.85h-13v11.425h-6.6v9.756h6.6v25.137c-.09 9.272 6.32 13.491 15.73 13.447 3.21.044 5.54-.219 6.94-.439v-10.283c-1.58.131-3.87.263-5.18.263-2.64-.088-4.53-1.01-4.49-4.834v-23.291h8.97v-9.756Zm32.91 0h-8.97V875.85h-13v11.425h-6.6v9.756h6.6v25.137c-.09 9.272 6.32 13.491 15.73 13.447 3.21.044 5.54-.219 6.94-.439v-10.283c-1.58.131-3.86.263-5.18.263-2.64-.088-4.53-1.01-4.49-4.834v-23.291h8.97v-9.756Zm28.87 48.692c11.77-.044 19.68-5.757 21.53-14.59h-12.39c-1.28 2.856-4.44 4.79-8.88 4.834-6.72-.044-10.99-4.482-10.99-11.69h32.61v-3.691c0-16.26-9.89-24.17-22.41-24.17-13.98 0-23.07 9.976-23.03 24.697-.04 15.118 8.92 24.566 23.56 24.61Zm-10.73-29.619c.27-5.494 4.49-9.976 10.46-9.932 5.8-.044 9.8 4.131 9.85 9.932h-20.31ZM1547.9 935h13v-27.158c-.04-5.845 4.31-9.932 10.2-9.932 1.8 0 4.31.308 5.54.703v-11.601c-1.15-.264-2.82-.44-4.14-.44-5.36 0-9.79 3.12-11.51 8.965h-.53v-8.262h-12.56V935Z' fill='%23fff'/%3E%3Cpath opacity='.6' d='M1803.01 278.516h-39.85v-19.219h-9.92v27.187h49.77v-7.968Zm-57.66 23.984h15v24.688h10V302.5h14.92v24.688h10.08V302.5h14.84v-7.969h-64.84v7.969Zm106.16-37.031v-5.157h-10.62v5.157c-.08 10.312-9.34 21.484-25.16 24.297l4.3 8.281c12.3-2.5 21.52-9.531 26.21-18.555 4.61 9.102 13.79 16.094 26.21 18.555l4.38-8.281c-16.1-2.735-25.36-13.868-25.32-24.297Zm-37.42 52.969h65.08v-8.204h-65.08v8.204Zm95.93-55.235h-25.23v7.891h15.62v11.172h-15.55v28.281h5c8.95-.078 16.92-.235 26.25-1.953l-.86-8.125c-7.38 1.367-13.9 1.719-20.86 1.797v-12.11h15.63v-26.953Zm2.97 25.235h7.26v35.312h9.3v-66.328h-9.3v22.969h-7.26v8.047Zm21.87 38.75h9.46v-71.094h-9.46v71.094Zm76.71-71.094h-9.84v25.078h-12.5v8.047h12.5v38.125h9.84v-71.25Zm-56.72 55.156h5.63c12.19-.039 21.48-.391 31.87-1.953l-1.01-7.969c-8.79 1.367-16.68 1.719-26.56 1.797v-13.437h20.7v-7.813h-20.7v-11.797h23.28v-8.047h-33.21v49.219Z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
  }
  .section9.section {
    flex-direction: row-reverse;
  }
  .section9 .label {
    width: 143px;
    height: 26px;
  }
  .section9 .tag {
    height: 50px;
    padding: 0 20px;
    font-size: 18px;
    line-height: 26px;
  }
  .section9 .tags {
    margin-top: 20px;
  }
  .section9 .img_wrap {
    width: 423px;
    height: 805px;
  }
  .section9 .img_wrap img {
    margin-left: -30px;
  }
  .section9 .section_title {
    padding-left: 230px;
  }
  .section9 .section_content {
    width: 423px;
    padding-top: 138px;
    padding-bottom: 137px;
  }
  .section9 .ico_audio {
    top: 418px;
    left: 285px;
  }
  .section9 .ico_ebook {
    top: 471px;
    left: 347px;
  }
  .section9 .ico_newsletter {
    top: 679px;
    left: -78px;
  }
  .section10 {
    justify-content: center;
    padding: 120px 0 129px;
  }
  .section10 .label {
    font-size: 26px;
  }
  .section10 .section_content .btn_medium {
    margin-top: 70px;
  }
  .section10 .tickets {
    width: 1200px;
    margin: 60px auto 0;
    gap: 28px;
  }
  .section10 .tickets li {
    width: calc(50% - 14px);
    padding: 48px 0 52px;
    border-radius: 20px;
  }
  .section10 .tickets li.point:before {
    top: -69px;
    left: -69px;
    width: 138px;
    height: 138px;
  }
  .section10 .tickets strong:before {
    height: 20px;
    padding: 0 12px;
  }
  .section10 .tickets strong span {
    font-size: 30px;
    line-height: 44px;
  }
  .section10 .tickets .badge {
    padding: 14px 0 0 11px;
    font-size: 20px;
    line-height: 29px;
  }
  .section10 .tickets p {
    margin-top: 22px;
    font-size: 20px;
    line-height: 36px;
  }
  .section11 {
    justify-content: center;
    background-color: #111;
    height: 395px;
    box-sizing: content-box;
  }
  .section11 .label {
    font-size: 32px;
  }
  .section11 .logo_plus_white {
    width: 472px;
    height: 54px;
    margin-top: 24px;
    margin-bottom: 44px;
  }
  .section11 .section_title {
    padding-right: 50px;
  }
  .section11 .section_content {
    width: 456px;
    height: 452px;
    margin-top: -57px;
  }
  .btn_small {
    height: 52px;
    padding: 12px 32px 15px;
    font-size: 17px;
    line-height: 25px;
  }
  .btn_small .ico_arrow_right {
    width: 9px;
    height: 14px;
    margin-top: 7px;
  }
  .btn_medium {
    height: 80px;
    padding: 0 80px;
    font-size: 28px;
  }
  .btn_medium .ico_arrow_right {
    width: 12px;
    height: 20px;
    margin-left: 17px;
  }
  .ico_arrow_black {
    width: 25px;
    height: 25px;
    background-size: 6px 9px;
  }
  .ico_newsletter {
    width: 112px;
    height: 112px;
  }
  .ico_audio {
    width: 70px;
    height: 70px;
  }
  .ico_ebook {
    width: 86px;
    height: 86px;
  }
  .ico_arrow {
    width: 72px;
    height: 72px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .section:not(.section1, .section11) .section_title strong {
    font-size: 58px;
    line-height: 74px;
  }
  .section1 .section_title, .section1 .section_content {
    width: 980px;
  }
  .section1 .section_title {
    padding: 272px 0 258px;
  }
  .section1 .section_title strong {
    font-size: 96px;
    line-height: 128px;
  }
  .section1 .img_wrap {
    width: 781px;
    height: 774px;
  }
  .section3 .section_title.fixed_title, .section4 .section_title.fixed_title, .section5 .section_title.fixed_title, .section6 .section_title.fixed_title, .section7 .section_title.fixed_title, .section8 .section_title.fixed_title {
    width: 980px;
  }
  .section3 .section_title.fixed_title p, .section4 .section_title.fixed_title p, .section5 .section_title.fixed_title p, .section6 .section_title.fixed_title p, .section7 .section_title.fixed_title p, .section8 .section_title.fixed_title p {
    width: 360px;
  }
  .section3 .section_title.fixed_title p .sm_hidden, .section4 .section_title.fixed_title p .sm_hidden, .section5 .section_title.fixed_title p .sm_hidden, .section6 .section_title.fixed_title p .sm_hidden, .section7 .section_title.fixed_title p .sm_hidden, .section8 .section_title.fixed_title p .sm_hidden {
    display: none;
  }
  .section_card {
    width: 560px;
    margin-left: -70px;
  }
  .section_card .img_wrap {
    width: 560px;
    height: 430px;
  }
  .section_card strong,
  .section_card p {
    padding-right: 36px;
    padding-left: 36px;
  }
  .section_card strong {
    padding-top: 34px;
  }
  .section_card p {
    padding-bottom: 34px;
  }
  .section_card .ico_arrow {
    top: 394px;
    left: 452px;
  }
  .section9 .section_title {
    padding-left: 92px;
  }
  .section9 .section_content {
    padding-left: 30px;
  }
  .section9 .ico_audio {
    left: 315px;
  }
  .section9 .ico_ebook {
    left: 377px;
  }
  .section9 .ico_newsletter {
    left: -48px;
  }
  .section10 .tickets {
    width: 980px;
  }
}
@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes leftToRightVw {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes fadeInDownUp {
  0% {
    opacity: 0.001;
    transform: translateY(100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpDown {
  0% {
    opacity: 0.001;
    transform: translateY(-100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pitAPat {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInLeftRight {
  0% {
    opacity: 0.001;
    transform: translateX(-100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightLeft {
  0% {
    opacity: 0.001;
    transform: translateX(100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes backgroundLeftToRight {
  0% {
    background-position: left 100vw bottom 89px;
  }
  100% {
    background-position: left -100vw bottom 89px;
  }
}
@keyframes backgroundLeftToRightMobile {
  0% {
    background-position: left 100vw bottom 40px;
  }
  100% {
    background-position: left -100vw bottom 40px;
  }
}
@media (max-width: 1023px) {
  #container {
    padding-top: 60px;
  }
  .fixed_banner {
    box-sizing: content-box;
    padding: 12px 0 calc(constant(safe-area-inset-bottom) + 12px) 0;
    padding: 12px 0 calc(env(safe-area-inset-bottom) + 12px) 0;
  }
  .fixed_banner.type_image {
    padding: 0 0 calc(env(safe-area-inset-bottom));
  }
  .fixed_banner.type_image img {
    width: 100%;
    max-width: 360px;
  }
  .fixed_banner .logo_plus_white {
    width: 135px;
    height: 16px;
  }
  .fixed_banner strong:not(.logo_plus_white),
  .fixed_banner span {
    font-size: 14px;
    line-height: 36px;
  }
  .fixed_banner .ico_arrow_black {
    margin-left: 8px;
  }
  footer {
    width: 100vw;
    overflow: hidden;
  }
  .section {
    z-index: 5;
  }
  .section_title > p {
    font-size: 15px;
    line-height: 25px;
    padding: 0 30px;
  }
  .section2 .section_title strong, .section9 .section_title strong, .sections .section_title strong {
    margin-top: 18px;
    margin-bottom: 20px;
  }
  .section2 .section_title strong, .sections .section_title strong, .section9 .section_title strong, .section10 .section_title strong {
    font-size: 32px;
    line-height: 40px;
  }
  .section1:before {
    width: 55.8333333333vw;
    height: 25vw;
    top: 41.3888888889vw;
    right: -4.1666666667vw;
  }
  .section1:after {
    width: 93.3333333333vw;
    height: 33.6111111111vw;
    top: 75.5555555556vw;
    left: 1.3888888889vw;
  }
  .section1 .label {
    width: 22.5vw;
    height: 5.5555555556vw;
  }
  .section1 .img_wrap {
    flex: 1;
    width: 100%;
    margin-top: -16.6666666667vw;
    text-align: right;
  }
  .section1 .img_wrap img {
    width: 100%;
    max-width: 400px;
    margin-right: -5vw;
  }
  .section1 .plus_belt {
    height: 48px;
    padding: 15px 0 18px;
  }
  .section1 .plus_belt li {
    font-size: 15px;
    padding: 0 10px;
  }
  .section1 .section_title {
    width: 100%;
    padding-top: 11.1111111111vw;
    padding-left: 24px;
    z-index: 2;
  }
  .section1 .section_title strong {
    font-size: 13.6111111111vw;
    line-height: 16.6666666667vw;
    margin-top: 3.8888888889vw;
    margin-bottom: 7.7777777778vw;
  }
  .section1 .section_content {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    flex: 1;
    position: relative;
    width: 100%;
  }
  .section1 .btn_small {
    height: 10vw;
    padding: 2.2222222222vw 5vw 2.3333333333vw;
    font-size: 3.6111111111vw;
    line-height: 5.2777777778vw;
    border-radius: 8.3333333333vw;
  }
  .section1 .btn_small .ico_arrow_right {
    width: 1.9444444444vw;
    height: 2.7777777778vw;
    margin-top: 1.3888888889vw;
  }
  .section2 {
    justify-content: space-between;
  }
  .section2:after {
    height: 69px;
  }
  .section2 .label {
    width: 100px;
    height: 20px;
  }
  .section2 .section_title {
    padding: 70px 0 0;
  }
  .section2 .section_title strong {
    width: 260px;
    text-align: center;
  }
  .section2 .section_content {
    align-items: flex-end;
    justify-content: center;
    width: 100vw;
    overflow: hidden;
    margin: 75px auto 0;
  }
  .section2 .section_left, .section2 .section_right {
    overflow: visible;
    height: 317px;
  }
  .section2 .section_left img, .section2 .section_right img {
    height: 317px;
  }
  .section2 .section_middle {
    width: 156px;
    padding: 0 7px;
  }
  .section2 .section_middle img {
    width: 156px;
  }
  .sections {
    position: relative;
    width: 100vw;
    overflow: hidden;
    padding-bottom: 52px;
    z-index: 4;
    background-repeat: repeat-x;
    background-position: left 10px bottom 20px;
    background-size: auto 35px;
    transition: background 0.2s ease-in-out;
  }
  .sections[data-index="3"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1927' height='141' fill='none'%3E%3Cg opacity='.8'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='1349' height='141' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h1349v141H0z'/%3E%3Cpath d='M1 136.49h76.33v-21.08H26.16V10.69H1v125.8ZM134.835 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM211.704 138.87c10.88 0 20.4-5.27 28.73-12.41h.68l1.87 10.03h20.4V81.07c0-27.71-12.41-41.99-36.55-41.99-15.13 0-28.56 5.61-39.78 12.41l9.01 16.66c8.67-5.27 17.34-9.01 26.18-9.01 11.73 0 15.64 6.97 16.15 16.32-38.25 4.25-54.74 14.96-54.74 35.19 0 16.32 11.05 28.22 28.05 28.22Zm8.16-19.55c-7.31 0-12.41-3.23-12.41-10.54 0-8.67 7.65-14.96 30.94-17.85v19.21c-6.12 5.95-11.39 9.18-18.53 9.18ZM321.943 138.87c9.86 0 19.38-5.27 26.35-12.24h.51l1.87 9.86h20.4V1h-24.99v33.32l1.02 14.96c-6.97-6.29-13.6-10.2-24.31-10.2-20.4 0-39.95 18.87-39.95 49.98 0 31.28 15.3 49.81 39.1 49.81Zm6.29-20.57c-12.41 0-19.72-9.69-19.72-29.58 0-19.04 9.18-29.24 19.89-29.24 5.95 0 12.07 2.04 17.68 7.31v41.82c-5.44 6.97-11.05 9.69-17.85 9.69ZM438.938 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM495.837 136.49h24.99V79.88c5.27-13.77 14.28-18.87 21.59-18.87 4.08 0 6.63.68 10.03 1.53l4.25-21.42c-2.89-1.36-5.95-2.04-11.05-2.04-9.86 0-20.23 6.63-27.03 19.21h-.51l-2.04-16.83h-20.23v95.03ZM640.402 138.87c20.06 0 35.7-8.5 47.09-21.25 13.43-15.13 22.44-32.3 28.05-51.34h-22.78c-4.42 16.49-12.41 29.92-22.27 40.12-8.33 8.16-17.68 13.26-27.03 13.26-11.9 0-20.23-7.14-20.23-18.02 0-24.14 53.89-32.64 53.89-65.79 0-16.49-11.22-27.37-29.24-27.37-19.89 0-32.81 14.28-32.81 31.79 0 25.67 27.37 60.35 57.8 81.6 12.75 8.5 25.67 14.62 37.57 17l6.12-20.23c-8.33-1.7-18.36-6.29-28.56-12.92-25.33-16.15-52.19-44.54-52.19-65.45 0-9.18 5.27-15.3 12.58-15.3 6.46 0 9.52 4.76 9.52 11.05 0 25.16-58.48 27.2-58.48 67.15 0 19.55 14.79 35.7 40.97 35.7ZM773.357 136.49h25.16V89.06h18.53c26.35 0 47.26-12.24 47.26-40.29 0-28.9-20.91-38.08-47.26-38.08h-43.69v125.8Zm25.16-67.32V30.75h16.15c16.32 0 25.16 4.59 25.16 18.02s-8.84 20.4-25.16 20.4h-16.15Zm43.18 67.32h28.05l-39.78-69.7-17.51 15.81 29.24 53.89ZM925.454 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM1002.32 138.87c10.88 0 20.4-5.27 28.73-12.41h.68l1.87 10.03h20.4V81.07c0-27.71-12.41-41.99-36.55-41.99-15.13 0-28.557 5.61-39.777 12.41l9.01 16.66c8.67-5.27 17.337-9.01 26.177-9.01 11.73 0 15.64 6.97 16.15 16.32-38.247 4.25-54.737 14.96-54.737 35.19 0 16.32 11.05 28.22 28.047 28.22Zm8.16-19.55c-7.31 0-12.407-3.23-12.407-10.54 0-8.67 7.647-14.96 30.937-17.85v19.21c-6.12 5.95-11.39 9.18-18.53 9.18ZM1112.56 138.87c9.86 0 19.38-5.27 26.35-12.24h.51l1.87 9.86h20.4V1h-24.99v33.32l1.02 14.96c-6.97-6.29-13.6-10.2-24.31-10.2-20.4 0-39.95 18.87-39.95 49.98 0 31.28 15.3 49.81 39.1 49.81Zm6.29-20.57c-12.41 0-19.72-9.69-19.72-29.58 0-19.04 9.18-29.24 19.89-29.24 5.95 0 12.07 2.04 17.68 7.31v41.82c-5.44 6.97-11.05 9.69-17.85 9.69ZM1229.56 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM1286.46 136.49h24.99V79.88c5.27-13.77 14.28-18.87 21.59-18.87 4.08 0 6.63.68 10.03 1.53l4.25-21.42c-2.89-1.36-5.95-2.04-11.05-2.04-9.86 0-20.23 6.63-27.03 19.21h-.51l-2.04-16.83h-20.23v95.03Z'/%3E%3C/mask%3E%3Cpath d='M1 136.49h76.33v-21.08H26.16V10.69H1v125.8ZM134.835 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM211.704 138.87c10.88 0 20.4-5.27 28.73-12.41h.68l1.87 10.03h20.4V81.07c0-27.71-12.41-41.99-36.55-41.99-15.13 0-28.56 5.61-39.78 12.41l9.01 16.66c8.67-5.27 17.34-9.01 26.18-9.01 11.73 0 15.64 6.97 16.15 16.32-38.25 4.25-54.74 14.96-54.74 35.19 0 16.32 11.05 28.22 28.05 28.22Zm8.16-19.55c-7.31 0-12.41-3.23-12.41-10.54 0-8.67 7.65-14.96 30.94-17.85v19.21c-6.12 5.95-11.39 9.18-18.53 9.18ZM321.943 138.87c9.86 0 19.38-5.27 26.35-12.24h.51l1.87 9.86h20.4V1h-24.99v33.32l1.02 14.96c-6.97-6.29-13.6-10.2-24.31-10.2-20.4 0-39.95 18.87-39.95 49.98 0 31.28 15.3 49.81 39.1 49.81Zm6.29-20.57c-12.41 0-19.72-9.69-19.72-29.58 0-19.04 9.18-29.24 19.89-29.24 5.95 0 12.07 2.04 17.68 7.31v41.82c-5.44 6.97-11.05 9.69-17.85 9.69ZM438.938 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM495.837 136.49h24.99V79.88c5.27-13.77 14.28-18.87 21.59-18.87 4.08 0 6.63.68 10.03 1.53l4.25-21.42c-2.89-1.36-5.95-2.04-11.05-2.04-9.86 0-20.23 6.63-27.03 19.21h-.51l-2.04-16.83h-20.23v95.03ZM640.402 138.87c20.06 0 35.7-8.5 47.09-21.25 13.43-15.13 22.44-32.3 28.05-51.34h-22.78c-4.42 16.49-12.41 29.92-22.27 40.12-8.33 8.16-17.68 13.26-27.03 13.26-11.9 0-20.23-7.14-20.23-18.02 0-24.14 53.89-32.64 53.89-65.79 0-16.49-11.22-27.37-29.24-27.37-19.89 0-32.81 14.28-32.81 31.79 0 25.67 27.37 60.35 57.8 81.6 12.75 8.5 25.67 14.62 37.57 17l6.12-20.23c-8.33-1.7-18.36-6.29-28.56-12.92-25.33-16.15-52.19-44.54-52.19-65.45 0-9.18 5.27-15.3 12.58-15.3 6.46 0 9.52 4.76 9.52 11.05 0 25.16-58.48 27.2-58.48 67.15 0 19.55 14.79 35.7 40.97 35.7ZM773.357 136.49h25.16V89.06h18.53c26.35 0 47.26-12.24 47.26-40.29 0-28.9-20.91-38.08-47.26-38.08h-43.69v125.8Zm25.16-67.32V30.75h16.15c16.32 0 25.16 4.59 25.16 18.02s-8.84 20.4-25.16 20.4h-16.15Zm43.18 67.32h28.05l-39.78-69.7-17.51 15.81 29.24 53.89ZM925.454 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM1002.32 138.87c10.88 0 20.4-5.27 28.73-12.41h.68l1.87 10.03h20.4V81.07c0-27.71-12.41-41.99-36.55-41.99-15.13 0-28.557 5.61-39.777 12.41l9.01 16.66c8.67-5.27 17.337-9.01 26.177-9.01 11.73 0 15.64 6.97 16.15 16.32-38.247 4.25-54.737 14.96-54.737 35.19 0 16.32 11.05 28.22 28.047 28.22Zm8.16-19.55c-7.31 0-12.407-3.23-12.407-10.54 0-8.67 7.647-14.96 30.937-17.85v19.21c-6.12 5.95-11.39 9.18-18.53 9.18ZM1112.56 138.87c9.86 0 19.38-5.27 26.35-12.24h.51l1.87 9.86h20.4V1h-24.99v33.32l1.02 14.96c-6.97-6.29-13.6-10.2-24.31-10.2-20.4 0-39.95 18.87-39.95 49.98 0 31.28 15.3 49.81 39.1 49.81Zm6.29-20.57c-12.41 0-19.72-9.69-19.72-29.58 0-19.04 9.18-29.24 19.89-29.24 5.95 0 12.07 2.04 17.68 7.31v41.82c-5.44 6.97-11.05 9.69-17.85 9.69ZM1229.56 138.87c11.73 0 23.63-3.91 32.98-10.37l-8.33-15.47c-6.97 4.25-13.77 6.63-21.42 6.63-14.11 0-24.31-7.99-26.52-23.63h58.82c.51-2.38 1.02-6.8 1.02-11.56 0-26.35-13.43-45.39-39.78-45.39-22.44 0-44.2 19.04-44.2 49.98 0 31.45 20.74 49.81 47.43 49.81Zm-23.63-59.5c2.04-13.94 10.88-21.08 20.91-21.08 12.24 0 18.02 8.16 18.02 21.08h-38.93ZM1286.46 136.49h24.99V79.88c5.27-13.77 14.28-18.87 21.59-18.87 4.08 0 6.63.68 10.03 1.53l4.25-21.42c-2.89-1.36-5.95-2.04-11.05-2.04-9.86 0-20.23 6.63-27.03 19.21h-.51l-2.04-16.83h-20.23v95.03Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .sections[data-index="4"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1526' height='152' fill='none'%3E%3Cg opacity='.3'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='-.219' y='.938' width='765' height='151' fill='%23000'%3E%3Cpath fill='%23fff' d='M-.219.938h765v151h-765z'/%3E%3Cpath d='M53.37 38.21V14.834H30.8V39.34c0 24.988-6.69 51.024-29.019 64.969l14.026 17.249c12.816-7.738 21.2-20.796 26.277-36.353 4.595 13.945 12.172 25.633 24.344 32.968l12.574-17.895C58.448 86.897 53.37 62.392 53.37 38.21Zm10.156 32.082h17.25v73.674h21.602V4.516H80.775V51.43h-17.25v18.862Zm47.719 80.284h22.247V2.582h-22.247v147.994ZM206.941 25.797V10.643h-23.376v12.736c-.081 19.587-9.189 39.255-34.661 47.558l12.575 18.055c16.605-5.48 27.648-16.524 34.016-30.55 6.206 12.092 16.685 21.523 32.081 26.359l12.252-17.895c-24.021-7.174-32.887-23.94-32.887-41.109Zm-37.402 95.599c-.08 18.54 19.749 29.341 51.105 29.18 30.791.161 50.298-10.64 50.298-29.18 0-18.217-19.507-29.099-50.298-29.018-31.356-.08-51.185 10.801-51.105 29.018Zm23.215 0c-.081-7.254 9.512-11.043 27.89-10.962 18.217-.081 27.325 3.708 27.406 10.962-.081 7.819-9.189 11.043-27.406 11.124-18.378-.081-27.971-3.305-27.89-11.124Zm53.523-31.759h23.214v-34.5h19.185V35.954h-19.185V2.583h-23.214v87.054ZM381.953 16.93h-77.221V35.31H358.9c-.161 13.38-.484 28.615-3.708 49.008l22.731 1.774c3.95-23.537 3.95-41.351 4.03-55.941V16.93Zm-84.636 85.766 1.934 18.378c25.714.161 58.762-.323 88.99-5.481l-1.451-17.25c-13.059 1.692-27.165 2.74-41.11 3.305V59.329h-22.731v43.044c-9.108.242-17.733.242-25.632.323Zm95.599 47.88h23.537V80.609h18.862V61.264h-18.862V2.582h-23.537v147.994ZM604.137 2.582h-23.215v89.312h23.215v-34.5h19.184V38.21h-19.184V2.582ZM486.129 33.535h87.7V15.318h-32.243V1.938h-23.214v13.38h-32.243v18.217Zm6.932 30.147c-.08 15.96 15.074 26.842 36.918 26.922 21.602-.08 36.676-10.962 36.756-26.922-.08-15.638-15.154-26.6-36.756-26.6-21.844 0-36.998 10.962-36.918 26.6Zm13.381 85.282h97.695V97.698h-97.695v51.266Zm9.189-85.282c0-6.287 5.723-9.27 14.348-9.19 8.705-.08 14.59 2.903 14.67 9.19-.08 6.69-5.965 9.834-14.67 9.834-8.625 0-14.348-3.144-14.348-9.834Zm13.703 66.742v-14.509h51.911v14.509h-51.911ZM669.364 19.349h-34.016v18.378h14.025c-1.048 28.937-5.239 50.056-19.345 73.029l17.894 9.35c17.895-29.501 21.361-61.986 21.442-100.757Zm-5.804 97.694 17.572 9.673c9.673-15.879 14.993-32.887 17.975-50.943h12.655v68.515h21.764V5.807h-21.764v51.426h-10.478c1.048-12.171 1.289-24.826 1.289-37.884h-29.018v18.378h9.35c-.725 30.55-4.03 54.41-19.345 79.316Zm77.382 33.533h22.247V2.582h-22.247v147.994Z'/%3E%3C/mask%3E%3Cpath d='M53.37 38.21V14.834H30.8V39.34c0 24.988-6.69 51.024-29.019 64.969l14.026 17.249c12.816-7.738 21.2-20.796 26.277-36.353 4.595 13.945 12.172 25.633 24.344 32.968l12.574-17.895C58.448 86.897 53.37 62.392 53.37 38.21Zm10.156 32.082h17.25v73.674h21.602V4.516H80.775V51.43h-17.25v18.862Zm47.719 80.284h22.247V2.582h-22.247v147.994ZM206.941 25.797V10.643h-23.376v12.736c-.081 19.587-9.189 39.255-34.661 47.558l12.575 18.055c16.605-5.48 27.648-16.524 34.016-30.55 6.206 12.092 16.685 21.523 32.081 26.359l12.252-17.895c-24.021-7.174-32.887-23.94-32.887-41.109Zm-37.402 95.599c-.08 18.54 19.749 29.341 51.105 29.18 30.791.161 50.298-10.64 50.298-29.18 0-18.217-19.507-29.099-50.298-29.018-31.356-.08-51.185 10.801-51.105 29.018Zm23.215 0c-.081-7.254 9.512-11.043 27.89-10.962 18.217-.081 27.325 3.708 27.406 10.962-.081 7.819-9.189 11.043-27.406 11.124-18.378-.081-27.971-3.305-27.89-11.124Zm53.523-31.759h23.214v-34.5h19.185V35.954h-19.185V2.583h-23.214v87.054ZM381.953 16.93h-77.221V35.31H358.9c-.161 13.38-.484 28.615-3.708 49.008l22.731 1.774c3.95-23.537 3.95-41.351 4.03-55.941V16.93Zm-84.636 85.766 1.934 18.378c25.714.161 58.762-.323 88.99-5.481l-1.451-17.25c-13.059 1.692-27.165 2.74-41.11 3.305V59.329h-22.731v43.044c-9.108.242-17.733.242-25.632.323Zm95.599 47.88h23.537V80.609h18.862V61.264h-18.862V2.582h-23.537v147.994ZM604.137 2.582h-23.215v89.312h23.215v-34.5h19.184V38.21h-19.184V2.582ZM486.129 33.535h87.7V15.318h-32.243V1.938h-23.214v13.38h-32.243v18.217Zm6.932 30.147c-.08 15.96 15.074 26.842 36.918 26.922 21.602-.08 36.676-10.962 36.756-26.922-.08-15.638-15.154-26.6-36.756-26.6-21.844 0-36.998 10.962-36.918 26.6Zm13.381 85.282h97.695V97.698h-97.695v51.266Zm9.189-85.282c0-6.287 5.723-9.27 14.348-9.19 8.705-.08 14.59 2.903 14.67 9.19-.08 6.69-5.965 9.834-14.67 9.834-8.625 0-14.348-3.144-14.348-9.834Zm13.703 66.742v-14.509h51.911v14.509h-51.911ZM669.364 19.349h-34.016v18.378h14.025c-1.048 28.937-5.239 50.056-19.345 73.029l17.894 9.35c17.895-29.501 21.361-61.986 21.442-100.757Zm-5.804 97.694 17.572 9.673c9.673-15.879 14.993-32.887 17.975-50.943h12.655v68.515h21.764V5.807h-21.764v51.426h-10.478c1.048-12.171 1.289-24.826 1.289-37.884h-29.018v18.378h9.35c-.725 30.55-4.03 54.41-19.345 79.316Zm77.382 33.533h22.247V2.582h-22.247v147.994Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .sections[data-index="5"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1326' height='151' fill='none'%3E%3Cg opacity='.7'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='748' height='151' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h748v151H0z'/%3E%3Cpath d='M1 76.68v16.8h134.08v-16.8H1Zm56.32-21.6v29.44H78.6V55.08H57.32Zm-40.16-9.76v16.96h103.2V45.32H17.16Zm0-37.12v45.12h21.28V25.16h80.64V8.2H17.16Zm-.32 121.6v16.96h104.48V129.8H16.84Zm0-26.4v31.68h21.12V103.4H16.84ZM250.828 1v148.64h21.12V1h-21.12Zm-33.6 52.16v17.12h39.68V53.16h-39.68Zm-64.16-40.48v102.08h71.2V12.68h-20.96v35.84h-29.12V12.68h-21.12ZM174.188 65h29.12v32.64h-29.12V65ZM311.055 41.16v16.8h102.72v-16.8h-102.72Zm-16.64 32.16v16.96h134.24V73.32h-134.24Zm16.64-66.88v43.04h21.12V6.44h-21.12Zm-1.44 122.72v16.96h104.96v-16.96h-104.96Zm0-27.04v31.52h21.28v-31.52h-21.28ZM585.213 1.16v148.16h20.159V1.16h-20.159Zm-17.76 56.8v17.28h24.64V57.96h-24.64ZM553.372 3.4v139.2h19.841V3.4h-19.841Zm-49.92 20.8v13.12c0 28.48-7.04 54.72-29.28 67.52l12.801 16.32c24.64-14.88 32.639-47.2 32.639-83.84V24.2h-16.16Zm4.321 0v13.12c0 34.4 8.799 64.96 33.759 78.4l12.161-16.16c-22.081-11.52-29.6-36.16-29.6-62.24V24.2h-16.32Zm-28.8-8v17.12h67.36V16.2h-67.36ZM631.2 14.44v99.68h71.2V14.44h-71.2Zm50.4 16.64v66.24h-29.44V31.08h29.44ZM725.44 1v148.64h21.44V1h-21.44Z'/%3E%3C/mask%3E%3Cpath d='M1 76.68v16.8h134.08v-16.8H1Zm56.32-21.6v29.44H78.6V55.08H57.32Zm-40.16-9.76v16.96h103.2V45.32H17.16Zm0-37.12v45.12h21.28V25.16h80.64V8.2H17.16Zm-.32 121.6v16.96h104.48V129.8H16.84Zm0-26.4v31.68h21.12V103.4H16.84ZM250.828 1v148.64h21.12V1h-21.12Zm-33.6 52.16v17.12h39.68V53.16h-39.68Zm-64.16-40.48v102.08h71.2V12.68h-20.96v35.84h-29.12V12.68h-21.12ZM174.188 65h29.12v32.64h-29.12V65ZM311.055 41.16v16.8h102.72v-16.8h-102.72Zm-16.64 32.16v16.96h134.24V73.32h-134.24Zm16.64-66.88v43.04h21.12V6.44h-21.12Zm-1.44 122.72v16.96h104.96v-16.96h-104.96Zm0-27.04v31.52h21.28v-31.52h-21.28ZM585.213 1.16v148.16h20.159V1.16h-20.159Zm-17.76 56.8v17.28h24.64V57.96h-24.64ZM553.372 3.4v139.2h19.841V3.4h-19.841Zm-49.92 20.8v13.12c0 28.48-7.04 54.72-29.28 67.52l12.801 16.32c24.64-14.88 32.639-47.2 32.639-83.84V24.2h-16.16Zm4.321 0v13.12c0 34.4 8.799 64.96 33.759 78.4l12.161-16.16c-22.081-11.52-29.6-36.16-29.6-62.24V24.2h-16.32Zm-28.8-8v17.12h67.36V16.2h-67.36ZM631.2 14.44v99.68h71.2V14.44h-71.2Zm50.4 16.64v66.24h-29.44V31.08h29.44ZM725.44 1v148.64h21.44V1h-21.44Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .sections[data-index="6"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1323' height='151' fill='none'%3E%3Cg opacity='.3'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='745' height='151' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h745v151H0z'/%3E%3Cpath d='M1 14.92v98.24h70.88V14.92H1Zm49.92 16.64v64.8H21.96v-64.8h28.96ZM91.24 1v148.16h21.44V1H91.24Zm16.64 55.84v17.6h26.24v-17.6h-26.24ZM210.348 3.72c-32.64 0-53.601 11.04-53.601 28.96s20.961 28.8 53.601 28.8 53.6-10.88 53.6-28.8-20.96-28.96-53.6-28.96Zm0 16.48c20.16 0 31.679 4 31.679 12.48 0 8.32-11.519 12.48-31.679 12.48-20.321 0-31.681-4.16-31.681-12.48 0-8.48 11.36-12.48 31.681-12.48ZM158.827 97v50.56h102.401V97H158.827Zm81.601 16.8v16.96h-60.64V113.8h60.64Zm-97.121-43.84v16.8h133.921v-16.8H143.307ZM352.505 30.12v4.32c0 15.84-8 31.52-26.72 38.88l9.92 15.52c23.2-8.8 32.64-30.56 32.64-54.4v-4.32h-15.84Zm4.32 0v4.32c0 22.56 9.6 43.2 32.96 51.2l9.44-15.84c-18.56-6.4-26.72-20.8-26.72-35.36v-4.32h-15.68Zm-26.88-12.16v16.48h64.96V17.96h-64.96Zm22.56-14.4v22.88h20V3.56h-20Zm79.52-2.4v91.36h20.16V1.16h-20.16Zm-17.76 35.52v17.28h23.52V36.68h-23.52Zm-13.12-32.8v83.68h19.84V3.88h-19.84Zm.8 89.92c-31.2 0-50.88 10.4-50.88 27.84 0 17.28 19.68 27.68 50.88 27.68 31.2 0 51.04-10.4 51.04-27.68 0-17.44-19.84-27.84-51.04-27.84Zm0 16.16c19.04 0 29.6 3.84 29.6 11.68s-10.56 11.52-29.6 11.52-29.76-3.68-29.76-11.52 10.72-11.68 29.76-11.68ZM574.812 1v148.16h21.441V1h-21.441Zm-43.679 15.36v3.84c0 39.68-15.36 66.56-57.921 87.04l11.041 16.96c52.64-25.44 68-62.56 68-107.84h-21.12Zm-50.081 0v16.8h60.16v-16.8h-60.16ZM721.6 1v148.16h21.44V1H721.6Zm-43.68 15.36v3.84c0 39.68-15.36 66.56-57.92 87.04l11.04 16.96c52.64-25.44 68-62.56 68-107.84h-21.12Zm-50.08 0v16.8H688v-16.8h-60.16Z'/%3E%3C/mask%3E%3Cpath d='M1 14.92v98.24h70.88V14.92H1Zm49.92 16.64v64.8H21.96v-64.8h28.96ZM91.24 1v148.16h21.44V1H91.24Zm16.64 55.84v17.6h26.24v-17.6h-26.24ZM210.348 3.72c-32.64 0-53.601 11.04-53.601 28.96s20.961 28.8 53.601 28.8 53.6-10.88 53.6-28.8-20.96-28.96-53.6-28.96Zm0 16.48c20.16 0 31.679 4 31.679 12.48 0 8.32-11.519 12.48-31.679 12.48-20.321 0-31.681-4.16-31.681-12.48 0-8.48 11.36-12.48 31.681-12.48ZM158.827 97v50.56h102.401V97H158.827Zm81.601 16.8v16.96h-60.64V113.8h60.64Zm-97.121-43.84v16.8h133.921v-16.8H143.307ZM352.505 30.12v4.32c0 15.84-8 31.52-26.72 38.88l9.92 15.52c23.2-8.8 32.64-30.56 32.64-54.4v-4.32h-15.84Zm4.32 0v4.32c0 22.56 9.6 43.2 32.96 51.2l9.44-15.84c-18.56-6.4-26.72-20.8-26.72-35.36v-4.32h-15.68Zm-26.88-12.16v16.48h64.96V17.96h-64.96Zm22.56-14.4v22.88h20V3.56h-20Zm79.52-2.4v91.36h20.16V1.16h-20.16Zm-17.76 35.52v17.28h23.52V36.68h-23.52Zm-13.12-32.8v83.68h19.84V3.88h-19.84Zm.8 89.92c-31.2 0-50.88 10.4-50.88 27.84 0 17.28 19.68 27.68 50.88 27.68 31.2 0 51.04-10.4 51.04-27.68 0-17.44-19.84-27.84-51.04-27.84Zm0 16.16c19.04 0 29.6 3.84 29.6 11.68s-10.56 11.52-29.6 11.52-29.76-3.68-29.76-11.52 10.72-11.68 29.76-11.68ZM574.812 1v148.16h21.441V1h-21.441Zm-43.679 15.36v3.84c0 39.68-15.36 66.56-57.921 87.04l11.041 16.96c52.64-25.44 68-62.56 68-107.84h-21.12Zm-50.081 0v16.8h60.16v-16.8h-60.16ZM721.6 1v148.16h21.44V1H721.6Zm-43.68 15.36v3.84c0 39.68-15.36 66.56-57.92 87.04l11.04 16.96c52.64-25.44 68-62.56 68-107.84h-21.12Zm-50.08 0v16.8H688v-16.8h-60.16Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .sections[data-index="7"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1335' height='152' fill='none'%3E%3Cg opacity='.6'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='757' height='152' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h757v152H0z'/%3E%3Cpath d='M98.16 1.8v148.16h21.44V1.8H98.16ZM114 58.44v17.44h26.08V58.44H114ZM59.28 17.16v3.68C59.28 61 40.88 88.2 2 108.36l11.84 16.16c49.28-24.8 66.24-62.88 66.24-107.36h-20.8Zm-49.12 0v17.12h60V17.16h-60ZM202.548 15.56v3.68c0 11.84-14.241 25.12-46.721 28.32l7.521 16.48c38.08-3.68 58.08-22.24 58.08-44.8v-3.68h-18.88Zm10.399 0v3.68c0 22.72 20.161 41.12 58.081 44.8l7.52-16.48c-32.48-3.04-46.721-16.32-46.721-28.32v-3.68h-18.88Zm-50.56-8.16v16.8h109.761V7.4H162.387Zm-12.16 66.56v16.96h134.081V73.96H150.227Zm56.16-19.04v26.56h21.12V54.92h-21.12Zm-41.28 46.72v16.8h81.601v31.68h21.28v-48.48H165.107ZM303.255 16.68v16.8h63.84v-16.8h-63.84Zm19.04 42.4v50.24h20.96V59.08h-20.96Zm36.32-42.4v12c0 14.24 0 31.36-3.84 55.04l20.8 1.92c4-24.64 4-42.56 4-56.96v-12h-20.96Zm33.6-14.72v148.16h21.28V1.96h-21.28Zm15.04 59.52v17.6h26.08v-17.6h-26.08Zm-109.6 58.72c25.76 0 59.04-.64 88.96-5.76l-1.12-15.52c-29.12 3.68-63.68 4.16-89.76 4.16l1.92 17.12ZM575.012 1.96v89.28h21.28V1.96h-21.28Zm15.36 36.48v17.44h25.6V38.44h-25.6Zm-90.399 59.2v50.88h96.319V97.64h-96.319Zm75.519 16.8v17.28h-54.56v-17.28h54.56Zm-95.84-99.2v16.8h87.2v-16.8h-87.2Zm43.68 21.12c-21.6 0-36.479 10.88-36.479 26.72 0 16 14.879 26.56 36.479 26.56 21.44 0 36.32-10.56 36.32-26.56 0-15.84-14.88-26.72-36.32-26.72Zm0 15.84c9.44 0 16 3.68 16 10.88 0 7.2-6.56 11.04-16 11.04-9.6 0-15.999-3.84-15.999-11.04 0-7.2 6.399-10.88 15.999-10.88ZM512.613 1v23.36h21.279V1h-21.279ZM644.52 18.76v1.76c0 36.64-3.04 62.4-20.32 89.6l16.32 8.8c18.4-29.44 21.92-62.56 21.92-100.16h-17.92Zm-15.52 0v17.12h26.88V18.76H629Zm48.64 0v1.92c0 36.96-1.6 67.04-20.48 96.48l16.32 8.96c19.84-31.68 22.08-68.64 22.08-107.36h-17.92Zm-10.72 0v17.12h22.72V18.76h-22.72Zm67.84-16.8v148.16h20.32V1.96h-20.32Zm-46.4 55.52V74.6h20.96V57.48h-20.96Zm17.76-52.32v138.4h19.84V5.16h-19.84Z'/%3E%3C/mask%3E%3Cpath d='M98.16 1.8v148.16h21.44V1.8H98.16ZM114 58.44v17.44h26.08V58.44H114ZM59.28 17.16v3.68C59.28 61 40.88 88.2 2 108.36l11.84 16.16c49.28-24.8 66.24-62.88 66.24-107.36h-20.8Zm-49.12 0v17.12h60V17.16h-60ZM202.548 15.56v3.68c0 11.84-14.241 25.12-46.721 28.32l7.521 16.48c38.08-3.68 58.08-22.24 58.08-44.8v-3.68h-18.88Zm10.399 0v3.68c0 22.72 20.161 41.12 58.081 44.8l7.52-16.48c-32.48-3.04-46.721-16.32-46.721-28.32v-3.68h-18.88Zm-50.56-8.16v16.8h109.761V7.4H162.387Zm-12.16 66.56v16.96h134.081V73.96H150.227Zm56.16-19.04v26.56h21.12V54.92h-21.12Zm-41.28 46.72v16.8h81.601v31.68h21.28v-48.48H165.107ZM303.255 16.68v16.8h63.84v-16.8h-63.84Zm19.04 42.4v50.24h20.96V59.08h-20.96Zm36.32-42.4v12c0 14.24 0 31.36-3.84 55.04l20.8 1.92c4-24.64 4-42.56 4-56.96v-12h-20.96Zm33.6-14.72v148.16h21.28V1.96h-21.28Zm15.04 59.52v17.6h26.08v-17.6h-26.08Zm-109.6 58.72c25.76 0 59.04-.64 88.96-5.76l-1.12-15.52c-29.12 3.68-63.68 4.16-89.76 4.16l1.92 17.12ZM575.012 1.96v89.28h21.28V1.96h-21.28Zm15.36 36.48v17.44h25.6V38.44h-25.6Zm-90.399 59.2v50.88h96.319V97.64h-96.319Zm75.519 16.8v17.28h-54.56v-17.28h54.56Zm-95.84-99.2v16.8h87.2v-16.8h-87.2Zm43.68 21.12c-21.6 0-36.479 10.88-36.479 26.72 0 16 14.879 26.56 36.479 26.56 21.44 0 36.32-10.56 36.32-26.56 0-15.84-14.88-26.72-36.32-26.72Zm0 15.84c9.44 0 16 3.68 16 10.88 0 7.2-6.56 11.04-16 11.04-9.6 0-15.999-3.84-15.999-11.04 0-7.2 6.399-10.88 15.999-10.88ZM512.613 1v23.36h21.279V1h-21.279ZM644.52 18.76v1.76c0 36.64-3.04 62.4-20.32 89.6l16.32 8.8c18.4-29.44 21.92-62.56 21.92-100.16h-17.92Zm-15.52 0v17.12h26.88V18.76H629Zm48.64 0v1.92c0 36.96-1.6 67.04-20.48 96.48l16.32 8.96c19.84-31.68 22.08-68.64 22.08-107.36h-17.92Zm-10.72 0v17.12h22.72V18.76h-22.72Zm67.84-16.8v148.16h20.32V1.96h-20.32Zm-46.4 55.52V74.6h20.96V57.48h-20.96Zm17.76-52.32v138.4h19.84V5.16h-19.84Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .sections[data-index="8"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1363' height='151' fill='none'%3E%3Cg opacity='.4'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='785' height='151' fill='%23000'%3E%3Cpath fill='%23fff' d='M0 0h785v151H0z'/%3E%3Cpath d='M40.72 65.16v25.92h21.44V65.16H40.72ZM4.4 74.92c27.04 0 61.12-.48 92.8-5.44l-1.12-14.4C65.2 58.6 29.52 58.76 2 58.76l2.4 16.16ZM40.56 4.68v3.2c0 12.96-10.24 25.28-33.6 29.76l8.8 15.84C43.92 47.72 57.2 29.64 57.2 7.88v-3.2H40.56Zm5.44 0v3.2c0 20.8 13.28 37.92 40.48 43.36l8.64-15.84c-22.24-4-32.48-15.52-32.48-27.52v-3.2H46ZM103.92 1v79.04h21.28V1h-21.28ZM24.56 85.64v15.68h79.52v7.84H24.72v26.4h20.96v-11.52h79.52v-38.4H24.56Zm.16 46.72v16H129.2v-16H24.72ZM263.997 4.04V106.6h19.52V4.04h-19.52Zm12 38.08v16.96h26.08V42.12h-26.08Zm-88.96 28.16V87.4h6.561c7.84 0 15.84-.16 26.56-2.4l-1.601-16.96c-9.92 2.08-17.759 2.24-24.959 2.24h-6.561Zm0-55.84v60.64h19.201V31.24h11.679v-16.8h-30.88Zm37.281 55.84V87.4h6.72c8.64 0 17.12-.16 28.16-2.24l-1.6-17.28c-10.56 2.24-18.56 2.4-26.56 2.4h-6.72Zm0-55.84v60.64h19.2V31.24h13.12v-16.8h-32.32Zm69.12-13.28V110.6h19.839V1.16h-19.839Zm-84 128.64v16.96h107.2V129.8h-107.2Zm0-30.88v41.28h21.279V98.92h-21.279ZM402.795 84.68v60.16h21.28V84.68h-21.28Zm68.32-83.52v148.16h21.44V1.16h-21.44ZM369.035 93.8c28.16 0 61.76-.32 93.92-5.12l-1.12-15.52c-31.2 3.36-66.4 3.36-95.36 3.52l2.56 17.12Zm72.48 7.2v16h33.92v-16h-33.92Zm-63.2-92.8v56.32h74.24V8.2h-74.24Zm53.44 16.8v22.72h-32.48V25h32.48ZM608.783 1.16v148.16h21.12V1.16h-21.12Zm16.32 57.76v17.76h26.24V58.92h-26.24Zm-112-35.84v16.96h86.24V23.08h-86.24Zm43.36 25.28c-21.6 0-37.6 14.72-37.6 35.36s16 35.36 37.6 35.36c21.599 0 37.6-14.72 37.6-35.36s-16.001-35.36-37.6-35.36Zm0 17.28c10.08 0 17.28 6.72 17.28 18.08s-7.2 18.08-17.28 18.08c-10.08 0-17.28-6.72-17.28-18.08s7.2-18.08 17.28-18.08Zm-10.72-62.08v25.92h21.28V3.56h-21.28ZM696.21 24.52v16.64c0 25.12-12 52.48-36.8 63.52l12 16.8c27.84-12.64 41.76-46.08 41.76-80.32V24.52h-16.96Zm4.8 0v16.64c0 32.96 13.76 64.48 41.92 76.64l11.52-16.8c-24.8-10.24-36.64-35.84-36.64-59.84V24.52h-16.8Zm-35.68-9.12v17.44h83.04V15.4h-83.04Zm96.8-14.24v148.16h21.44V1.16h-21.44Z'/%3E%3C/mask%3E%3Cpath d='M40.72 65.16v25.92h21.44V65.16H40.72ZM4.4 74.92c27.04 0 61.12-.48 92.8-5.44l-1.12-14.4C65.2 58.6 29.52 58.76 2 58.76l2.4 16.16ZM40.56 4.68v3.2c0 12.96-10.24 25.28-33.6 29.76l8.8 15.84C43.92 47.72 57.2 29.64 57.2 7.88v-3.2H40.56Zm5.44 0v3.2c0 20.8 13.28 37.92 40.48 43.36l8.64-15.84c-22.24-4-32.48-15.52-32.48-27.52v-3.2H46ZM103.92 1v79.04h21.28V1h-21.28ZM24.56 85.64v15.68h79.52v7.84H24.72v26.4h20.96v-11.52h79.52v-38.4H24.56Zm.16 46.72v16H129.2v-16H24.72ZM263.997 4.04V106.6h19.52V4.04h-19.52Zm12 38.08v16.96h26.08V42.12h-26.08Zm-88.96 28.16V87.4h6.561c7.84 0 15.84-.16 26.56-2.4l-1.601-16.96c-9.92 2.08-17.759 2.24-24.959 2.24h-6.561Zm0-55.84v60.64h19.201V31.24h11.679v-16.8h-30.88Zm37.281 55.84V87.4h6.72c8.64 0 17.12-.16 28.16-2.24l-1.6-17.28c-10.56 2.24-18.56 2.4-26.56 2.4h-6.72Zm0-55.84v60.64h19.2V31.24h13.12v-16.8h-32.32Zm69.12-13.28V110.6h19.839V1.16h-19.839Zm-84 128.64v16.96h107.2V129.8h-107.2Zm0-30.88v41.28h21.279V98.92h-21.279ZM402.795 84.68v60.16h21.28V84.68h-21.28Zm68.32-83.52v148.16h21.44V1.16h-21.44ZM369.035 93.8c28.16 0 61.76-.32 93.92-5.12l-1.12-15.52c-31.2 3.36-66.4 3.36-95.36 3.52l2.56 17.12Zm72.48 7.2v16h33.92v-16h-33.92Zm-63.2-92.8v56.32h74.24V8.2h-74.24Zm53.44 16.8v22.72h-32.48V25h32.48ZM608.783 1.16v148.16h21.12V1.16h-21.12Zm16.32 57.76v17.76h26.24V58.92h-26.24Zm-112-35.84v16.96h86.24V23.08h-86.24Zm43.36 25.28c-21.6 0-37.6 14.72-37.6 35.36s16 35.36 37.6 35.36c21.599 0 37.6-14.72 37.6-35.36s-16.001-35.36-37.6-35.36Zm0 17.28c10.08 0 17.28 6.72 17.28 18.08s-7.2 18.08-17.28 18.08c-10.08 0-17.28-6.72-17.28-18.08s7.2-18.08 17.28-18.08Zm-10.72-62.08v25.92h21.28V3.56h-21.28ZM696.21 24.52v16.64c0 25.12-12 52.48-36.8 63.52l12 16.8c27.84-12.64 41.76-46.08 41.76-80.32V24.52h-16.96Zm4.8 0v16.64c0 32.96 13.76 64.48 41.92 76.64l11.52-16.8c-24.8-10.24-36.64-35.84-36.64-59.84V24.52h-16.8Zm-35.68-9.12v17.44h83.04V15.4h-83.04Zm96.8-14.24v148.16h21.44V1.16h-21.44Z' stroke='%23fff' stroke-opacity='.6' stroke-width='2' mask='url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  }
  .sections_wrap {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 30px;
  }
  .sections .label {
    width: 100px;
    height: 19px;
  }
  .sections .section {
    display: flex;
    flex-shrink: 0;
    justify-content: flex-start;
    width: 265px;
    transform: translate3d(0, 0, 0);
    min-height: 0;
  }
  .sections .section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .sections .section.swiper-slide-active:after {
    display: none;
  }
  .sections .section_title {
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    width: 100vw;
    padding-top: 70px;
  }
  .sections .section_title.fixed_title {
    display: flex !important;
  }
  .sections .section_title strong,
  .sections .section_title p {
    text-align: center;
  }
  .section_card {
    width: 265px;
    margin: 0 auto;
    border-radius: 15px;
  }
  .section_card .img_wrap {
    width: 265px;
    height: 204px;
  }
  .section_card .badge {
    top: 18px;
    left: 18px;
    height: 22px;
    border-radius: 30px;
    padding: 0 10px;
    font-size: 12px;
  }
  .section_card strong,
  .section_card p {
    padding-right: 18px;
    padding-left: 18px;
  }
  .section_card strong {
    padding-top: 16px;
    font-size: 20px;
    line-height: 40px;
  }
  .section_card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    padding-top: 2px;
    font-size: 12px;
    line-height: 22px;
    border-radius: 0 0 15px 15px;
  }
  .section_card a {
    display: block;
    padding-bottom: 20px;
    background-color: #191919;
    border-radius: 15px;
    overflow: hidden;
  }
  .section_card .ico_arrow {
    top: 186px;
    right: 18px;
  }
  .section9 {
    padding-top: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='398' height='421' fill='none'%3E%3Cmask id='a' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='398' height='421'%3E%3Cpath opacity='.9' fill='%23292C38' d='M0 0h398v421H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Crect x='86' y='232.378' width='70' height='253' rx='16' fill='%237657F3'/%3E%3Cpath opacity='.6' d='M108.064 251.953c-3.055 0-5.344 1.547-5.344 3.891 0 2.14 1.805 3.578 4.344 3.867v2.43h-5.484v1.64h13.015v-1.64h-5.547v-2.43c2.555-.281 4.368-1.719 4.375-3.867-.007-2.344-2.304-3.891-5.359-3.891Zm-3.375 3.891c0-1.422 1.383-2.305 3.375-2.297 2-.008 3.383.875 3.391 2.297-.008 1.5-1.391 2.336-3.391 2.344-1.992-.008-3.375-.844-3.375-2.344Zm22.225-4.625h-2.016v14.25h2.016v-14.25Zm-11.047 10.859h1.235c3.078 0 4.89-.062 6.859-.437l-.188-1.641c-1.789.32-3.359.391-5.906.391v-6.297h4.922v-1.625h-6.922v9.609Zm19.053-10.125c-3.054 0-5.343 1.547-5.343 3.891 0 2.14 1.804 3.578 4.343 3.867v2.43h-5.484v1.64h13.016v-1.64h-5.547v-2.43c2.554-.281 4.367-1.719 4.375-3.867-.008-2.344-2.305-3.891-5.36-3.891Zm-3.375 3.891c0-1.422 1.383-2.305 3.375-2.297 2-.008 3.383.875 3.391 2.297-.008 1.5-1.391 2.336-3.391 2.344-1.992-.008-3.375-.844-3.375-2.344Z' fill='%23fff'/%3E%3Crect x='164' y='344' width='70' height='98' rx='16' fill='%23E64D3F'/%3E%3Crect x='242' y='232.378' width='70' height='253' rx='16' fill='%233276F5'/%3E%3Crect x='320' y='.378' width='70' height='485' rx='16' fill='%23ED6B55'/%3E%3Crect x='8' y='149.378' width='70' height='336' rx='16' fill='%23F4C054'/%3E%3Cpath opacity='.5' d='m22.2 181 .957-2.936h4.606L28.72 181h2.83l-4.395-12.727h-3.392L19.352 181h2.847Zm1.625-4.992 1.591-4.869h.088l1.59 4.869h-3.269Zm14.832.931c0 1.301-.897 1.978-1.846 1.987-1.02-.009-1.67-.712-1.67-1.846v-5.625H32.54v6.082c0 2.233 1.31 3.586 3.216 3.586 1.442 0 2.47-.738 2.9-1.846h.106V181h2.496v-9.545h-2.601v5.484Zm7.739 4.219c1.555 0 2.346-.896 2.706-1.687h.124V181h2.566v-12.727H49.19v4.782h-.087c-.343-.774-1.108-1.723-2.708-1.723-2.109 0-3.884 1.635-3.884 4.904 0 3.191 1.705 4.922 3.884 4.922Zm-1.213-4.939c-.01-1.661.694-2.813 2.021-2.813 1.31 0 2.04 1.099 2.04 2.813 0 1.722-.74 2.856-2.04 2.865-1.318-.009-2.03-1.178-2.021-2.865Zm8.3 4.781h2.602v-9.545h-2.601V181Zm-.122-12.111c0 .72.641 1.318 1.424 1.318.773 0 1.415-.598 1.406-1.318.009-.739-.633-1.327-1.406-1.336-.783.009-1.424.597-1.424 1.336Zm8.635 12.304c2.892-.008 4.684-1.986 4.693-4.939-.008-2.944-1.801-4.922-4.693-4.922-2.883 0-4.685 1.978-4.676 4.922-.009 2.953 1.793 4.931 4.676 4.939Zm-2.04-4.939c0-1.679.695-2.936 2.057-2.936 1.328 0 2.03 1.257 2.022 2.936.009 1.67-.694 2.909-2.021 2.918-1.363-.009-2.057-1.248-2.057-2.918ZM173.013 371h8.085v-2.059h-5.595v-2.921h5.163v-2.059h-5.163v-2.922h5.578v-2.059h-8.068V371Zm15.155-6.989h-5.478v1.959h5.478v-1.959ZM189.86 371h5.097c2.714 0 4.142-1.411 4.15-3.32-.008-1.777-1.286-2.856-2.639-2.922v-.116c1.236-.274 2.166-1.163 2.158-2.574.008-1.809-1.337-3.088-3.985-3.088h-4.781V371Zm2.49-2.059v-3.22h2.175c1.229 0 2.001.714 1.992 1.726.009.905-.614 1.503-2.058 1.494h-2.109Zm0-4.93v-3.005h1.976c1.137 0 1.785.589 1.776 1.461.009.963-.78 1.552-1.826 1.544h-1.926Zm11.935 7.172c2.731-.009 4.425-1.876 4.433-4.665-.008-2.781-1.702-4.649-4.433-4.649-2.722 0-4.424 1.868-4.416 4.649-.008 2.789 1.694 4.656 4.416 4.665Zm-1.925-4.665c0-1.586.655-2.773 1.942-2.773 1.253 0 1.917 1.187 1.909 2.773.008 1.577-.656 2.747-1.909 2.755-1.287-.008-1.942-1.178-1.942-2.755Zm11.553 4.665c2.731-.009 4.424-1.876 4.432-4.665-.008-2.781-1.701-4.649-4.432-4.649-2.723 0-4.425 1.868-4.416 4.649-.009 2.789 1.693 4.656 4.416 4.665Zm-1.926-4.665c0-1.586.656-2.773 1.942-2.773 1.254 0 1.918 1.187 1.909 2.773.009 1.577-.655 2.747-1.909 2.755-1.286-.008-1.942-1.178-1.942-2.755Zm7.502 4.482h2.457v-2.889l.689-.78 2.482 3.669h2.889l-3.545-5.113 3.362-3.902h-2.822l-2.922 3.453h-.133v-6.458h-2.457V371ZM267.22 252.98h-2.474v7.637h-.116l-5.246-7.637h-2.192V265h2.491v-7.637h.099l5.279 7.637h2.159v-12.02Zm5.659 12.203c2.225-.009 3.719-1.088 4.068-2.756h-2.341c-.241.539-.839.905-1.677.913-1.27-.008-2.075-.847-2.075-2.208h6.159v-.697c0-3.072-1.868-4.566-4.233-4.566-2.64 0-4.358 1.884-4.35 4.665-.008 2.856 1.685 4.64 4.449 4.649Zm-2.025-5.595c.05-1.038.846-1.884 1.975-1.876 1.096-.008 1.851.78 1.86 1.876h-3.835Zm9.013 5.412h2.606l1.561-5.728h.116l1.561 5.728h2.589l2.474-9.015h-2.49l-1.395 6.06h-.083l-1.494-6.06h-2.44l-1.478 6.093h-.083l-1.411-6.093h-2.49l2.457 9.015Zm16.899-6.342h2.307c-.132-1.71-1.544-2.789-3.818-2.789-2.324 0-3.81 1.079-3.802 2.806-.008 1.336.872 2.216 2.59 2.556l1.494.299c.847.175 1.229.465 1.229.93 0 .581-.598.938-1.494.946-.905-.008-1.478-.373-1.594-1.079h-2.474c.208 1.76 1.635 2.847 4.068 2.856 2.399-.009 3.992-1.196 4.001-2.972-.009-1.295-.855-2.075-2.607-2.44l-1.61-.333c-.855-.174-1.171-.489-1.162-.896-.009-.548.597-.921 1.394-.93.822.009 1.37.415 1.478 1.046Zm-35.845 14.322h-2.457V285h2.457v-12.02Zm5.593 12.203c2.225-.009 3.719-1.088 4.067-2.756h-2.34c-.241.539-.839.905-1.677.913-1.27-.008-2.075-.847-2.075-2.208h6.159v-.697c0-3.072-1.868-4.566-4.234-4.566-2.639 0-4.357 1.884-4.349 4.665-.008 2.856 1.685 4.64 4.449 4.649Zm-2.025-5.595c.049-1.038.846-1.884 1.975-1.876 1.096-.008 1.851.78 1.86 1.876h-3.835Zm12.051-3.603h-1.694v-2.158h-2.457v2.158h-1.245v1.843h1.245v4.748c-.016 1.752 1.196 2.549 2.972 2.54a7.683 7.683 0 0 0 1.312-.083v-1.942c-.299.025-.731.05-.98.05-.498-.017-.855-.191-.847-.913v-4.4h1.694v-1.843Zm5.892 0h-1.694v-2.158h-2.457v2.158h-1.245v1.843h1.245v4.748c-.016 1.752 1.196 2.549 2.972 2.54a7.683 7.683 0 0 0 1.312-.083v-1.942c-.299.025-.731.05-.98.05-.498-.017-.855-.191-.847-.913v-4.4h1.694v-1.843Zm5.128 9.198c2.225-.009 3.719-1.088 4.068-2.756h-2.341c-.241.539-.839.905-1.677.913-1.27-.008-2.075-.847-2.075-2.208h6.159v-.697c0-3.072-1.868-4.566-4.233-4.566-2.64 0-4.358 1.884-4.35 4.665-.008 2.856 1.685 4.64 4.449 4.649Zm-2.025-5.595c.05-1.038.846-1.884 1.975-1.876 1.096-.008 1.851.78 1.86 1.876h-3.835Zm7.303 5.412h2.457v-5.13c-.008-1.104.813-1.876 1.926-1.876.34 0 .813.058 1.046.133v-2.191a3.872 3.872 0 0 0-.781-.083c-1.012 0-1.851.589-2.174 1.693h-.1v-1.561h-2.374V285Z' fill='%23fff'/%3E%3Cpath opacity='.6' d='M339.397 22.703h-7.969V18.86h-1.984v5.438h9.953v-1.594ZM327.866 27.5h3v4.938h2V27.5h2.984v4.938h2.016V27.5h2.968v-1.594h-12.968V27.5Zm20.912-7.406v-1.032h-2.125v1.032c-.015 2.062-1.867 4.297-5.031 4.86l.859 1.655c2.461-.5 4.305-1.906 5.242-3.71.922 1.82 2.758 3.218 5.243 3.71l.875-1.656c-3.219-.547-5.071-2.773-5.063-4.86Zm-7.484 10.593h13.015v-1.64h-13.015v1.64Zm18.865-11.046h-5.046v1.578h3.125v2.234h-3.11v5.656h1c1.789-.015 3.383-.047 5.25-.39l-.172-1.625c-1.476.273-2.781.343-4.172.36V25.03h3.125v-5.39Zm.594 5.047h1.453v7.062h1.86V18.484h-1.86v4.594h-1.453v1.61Zm4.375 7.75h1.891v-14.22h-1.891v14.22Zm15.022-14.22h-1.969v5.016h-2.5v1.61h2.5v7.625h1.969v-14.25ZM368.806 29.25h1.125c2.438-.008 4.297-.078 6.375-.39l-.203-1.594c-1.758.273-3.336.343-5.312.359v-2.688h4.14v-1.562h-4.14v-2.36h4.656v-1.609h-6.641v9.844Z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 398px auto;
    background-position: 50% 100%;
  }
  .section9 .label {
    width: 100px;
    height: 19px;
  }
  .section9 .tag {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
    line-height: 19px;
  }
  .section9 .tags {
    margin-top: 20px;
  }
  .section9 .img_wrap {
    width: 277px;
    height: 326px;
    margin-top: 20px;
  }
  .section9 .img_wrap img {
    width: 100%;
    height: auto;
  }
  .section9 .section_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }
  .section9 .section_title strong,
  .section9 .section_title p {
    text-align: center;
  }
  .section9 .ico_audio {
    bottom: 196px;
    left: 205px;
  }
  .section9 .ico_ebook {
    bottom: 142px;
    left: 237px;
  }
  .section9 .ico_newsletter {
    bottom: 70px;
    left: -13px;
  }
  .section10 {
    padding: 70px 0;
  }
  .section10 label {
    font-size: 15px;
  }
  .section10 .section_title strong {
    width: 270px;
    margin: 16px auto 30px;
    text-align: center;
  }
  .section10 .section_content .btn_medium {
    margin-top: 30px;
  }
  .section10 .tickets {
    width: 100%;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 0;
    padding: 0 20px;
  }
  .section10 .tickets li {
    width: 100%;
    max-width: 337px;
    padding: 24px 20px 26px;
    border-radius: 10px;
  }
  .section10 .tickets li.point:before {
    top: -38px;
    left: -38px;
    width: 75px;
    height: 75px;
  }
  .section10 .tickets strong:before {
    height: 10px;
    padding: 0 12px;
  }
  .section10 .tickets strong span {
    font-size: 20px;
    line-height: 29px;
  }
  .section10 .tickets .badge {
    padding: 6px 0 0 7px;
    font-size: 11px;
    line-height: 16px;
  }
  .section10 .tickets p {
    margin-top: 7px;
    font-size: 14px;
    line-height: 24px;
  }
  .section11 .label {
    font-size: 13px;
  }
  .section11 .logo_plus_white {
    width: 150px;
    height: 18px;
    margin-top: 12px;
    margin-bottom: 19px;
  }
  .section11 .section_content {
    position: relative;
    width: 178px;
    height: 159px;
    margin-top: -23px;
    margin-left: -15px;
  }
  .section11 .section_content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section11 .btn_fill_white {
    height: auto;
    padding: 0;
    background-color: transparent;
    font-size: 12px;
    line-height: 17px;
    color: #727583;
    text-decoration: underline;
  }
  .section11 .btn_fill_white .ico_arrow_right {
    width: 4px;
    height: 7px;
    margin-left: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 9.53 2.078 0 0 1.995 7.856 9.54 0 17.085l2.078 1.995L12 9.55l-.01-.01.01-.01Z' fill='%23717482'/%3E%3C/svg%3E");
  }
  .btn_small {
    height: 36px;
    padding: 8px 18px 8.4px;
    font-size: 13px;
    line-height: 19px;
  }
  .btn_small .ico_arrow_right {
    width: 7px;
    height: 10px;
    margin-top: 5px;
    background-size: auto 100%;
  }
  .btn_medium {
    height: 56px;
    padding: 0 32px 0 38px;
  }
  .btn_medium .ico_arrow_right {
    width: 8px;
    height: 12px;
    margin-left: 10px;
    letter-spacing: -0.5px;
  }
  .ico_arrow_black {
    width: 20px;
    height: 20px;
    background-size: 5px 8px;
  }
  .ico_newsletter {
    width: 68px;
    height: 68px;
    font-size: 16px;
  }
  .ico_audio {
    width: 42px;
    height: 42px;
  }
  .ico_ebook {
    width: 52px;
    height: 52px;
  }
  .ico_arrow {
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section1 .section_title {
    padding-left: 0;
    max-width: 719px;
  }
  .section1 .section_content {
    max-width: 719px;
  }
}
@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes leftToRightVw {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes fadeInDownUp {
  0% {
    opacity: 0.001;
    transform: translateY(100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpDown {
  0% {
    opacity: 0.001;
    transform: translateY(-100px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeftRight {
  0% {
    opacity: 0.001;
    transform: translateX(-100px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes backgroundLeftToRight {
  0% {
    background-position: left 100vw bottom 89px;
  }
  100% {
    background-position: left -100vw bottom 89px;
  }
}