.chart {
    background: #000;
    padding: 60px 0;
}

.chart_shapes {
    display: none;
}

.chart_header {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.chart_slider-nav {
    margin-top: 30px;
}

.chart_slider-controls {
    display: none;
}

.chart_slider .swiper-slide {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.chart_slider .swiper-slide .slide {
    width: 100%;
    max-width: 270px;
}

@media screen and (min-width: 575.98px) {
    .chart_slider {
        position: relative;
    }

    .chart_slider-controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
        color: #fff;
        font-size: 34px;
        z-index: 10;
    }

    .chart_slider-controls .control:hover {
        color: #aeff00;
    }
}

@media screen and (min-width: 767.98px) {
    .chart {
        padding: 100px 0 150px;
    }

    .chart_header {
        margin-bottom: 40px;
    }

    .chart_slider {
        max-width: 920px;
    }

    .chart_slider .swiper-slide {
        width: calc(100% / 3);
        -webkit-transition: 0.4s ease-in-out;
        -o-transition: 0.4s ease-in-out;
        transition: 0.4s ease-in-out;
    }

    .chart_slider .swiper-slide:not(.swiper-slide-visible) {
        opacity: 0;
    }
}

@media screen and (min-width: 991.98px) {
    .chart {
        padding: 120px 0 130px;
        position: relative;
    }

    .chart_shapes {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .chart_shapes .group {
        position: absolute;
    }

    .chart_shapes .group--left {
        max-width: 300px;
        bottom: -150px;
        left: -70px;
    }

    .chart_shapes .group--left .circle {
        position: absolute;
        max-width: 30px;
        top: 90px;
        right: 0;
    }

    .chart_shapes .group--left .circle--big {
        border-radius: 50%;
        width: 120px;
        max-width: unset;
        height: 120px;
        border: 1px solid #fff;
        top: -171px;
        right: 28px;
        opacity: 0.9;
    }

    .chart_shapes .group--right {
        top: 0;
        right: -70px;
        max-width: 400px;
    }

    .chart_shapes .group--right .circle {
        position: absolute;
        top: 40px;
        right: 350px;
        max-width: 40px;
    }

    .chart_shapes .group--right .shape {
        max-width: 400px;
        -webkit-transform: rotate(40deg);
        -ms-transform: rotate(40deg);
        transform: rotate(40deg);
        top: 400px;
        position: relative;
    }

    .chart_shapes .group--right .shape--rotate {
        -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
        right: -85px;
        position: absolute;
        top: -40px;
    }

    .chart .container {
        position: relative;
        z-index: 2;
    }

    .chart_header {
        margin-bottom: 50px;
    }

    .chart_slider .swiper-slide {
        width: calc(100% / 5);
    }
}

@media screen and (min-width: 1199.98px) {
    .chart_shapes .group--left .circle--big {
        top: -319px;
        right: 38px;
    }
}

@media screen and (min-width: 1399.98px) {
    .chart_shapes .group--left {
        max-width: 450px;
    }

    .chart_shapes .group--left .circle:not(.circle--big) {
        top: 290px;
        right: 83px;
    }

    .chart_shapes .group--right {
        max-width: 500px;
    }

    .chart_shapes .group--right .circle {
        right: 550px;
    }

    .chart_shapes .group--right .shape {
        max-width: 500px;
        right: -190px;
    }

    .chart_shapes .group--right .shape--rotate {
        right: -135px;
    }

    .join {
        overflow: visible;
    }

    .join_media-left {
        width: 550px;
        left: -15%;
        top: 135px;
        z-index: 10;
    }

    .join_media .group {
        right: -18%;
        top: 150px;
    }

    .join_media .group .shape {
        width: unset;
        height: unset;
    }

    .join_media .group .speaker {
        top: 250px;
        left: -165px;
    }
}

.faq_wrapper {
    background: #f8f8ff;
    border: 2px solid #1b2129;
    -webkit-box-shadow: 3px 3px 0 #aeff00;
    box-shadow: 3px 3px 0 #aeff00;
    padding: 20px 20px 0;
}

.faq_wrapper .accordion_item:last-of-type {
    border-bottom: 0;
}

@media screen and (min-width: 767.98px) {
    .faq_wrapper {
        padding: 40px 40px 10px;
    }
}

@media screen and (min-width: 991.98px) {
    .faq_wrapper {
        padding: 80px 80px 55px;
    }
}

.faq {
    padding-top: 60px;
}

.faq .accordion {
    background: #f8f8ff;
    padding: 30px;
    -webkit-box-shadow: 3px 3px 0 #aeff00;
    box-shadow: 3px 3px 0 #aeff00;
    border: 1px solid #1b2129;
    border-radius: 2px;
}

.faq .accordion_item:last-of-type {
    border-bottom: 0;
}


@media screen and (min-width: 767.98px) {
    .faq {
        padding: 0;
    }

    .faq .accordion {
        margin-top: -50px;
        position: relative;
        z-index: 3;
    }
}
@media screen and (min-width: 575.98px) {
    .faq .accordion {
      padding: 40px;
    }
    .join_btn {
      width: 250px;
    }
  }
  @media screen and (min-width: 991.98px) {
    .faq .accordion {
      padding: 40px 60px;
    }
    .join {
      padding: 110px 0 120px;
    }
    .join_header {
      max-width: 800px;
      margin: 0 auto;
    }
    .join_header-wrapper .animatedUnderline {
      height: 22px;
      bottom: 2px;
    }
    .join_list {
      gap: 0 60px;
    }
  }
  .faq_wrapper {
    background: #f8f8ff;
    border: 2px solid #1b2129;
    -webkit-box-shadow: 3px 3px 0 #aeff00;
    box-shadow: 3px 3px 0 #aeff00;
    padding: 20px 20px 0;
  }
  .faq_wrapper .accordion_item:last-of-type {
    border-bottom: 0;
  }
  @media screen and (min-width: 575.98px) {
    .faq .accordion {
      padding: 40px;
    }
    .join_btn {
      width: 250px;
    }
  }
  @media screen and (min-width: 767.98px) {
    .join {
      padding: 100px 0;
    }
    .join_header {
      text-align: center;
    }
    .join_header-wrapper .animatedUnderline {
      bottom: 2px;
    }
    .join_list {
      gap: 0 40px;
    }
  }
  @media screen and (min-width: 991.98px) {
    .faq .accordion {
      padding: 40px 60px;
    }
    .join {
      padding: 110px 0 120px;
    }
    .join_header {
      max-width: 800px;
      margin: 0 auto;
    }
    .join_header-wrapper .animatedUnderline {
      height: 22px;
      bottom: 2px;
    }
    .join_list {
      gap: 0 60px;
    }
  }
  @media screen and (min-width: 767.98px) {
    .faq {
      padding: 0;
    }
    .faq .accordion {
      margin-top: -50px;
      position: relative;
      z-index: 3;
    }
    .accordion_item{
        padding-bottom: 25px;
        margin-bottom: 32px;
        border-bottom: 3px solid;
    }
  }
  .accordion_item-wrapper .body .main_list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.accordion_item:first-of-type .accordion_item-wrapper .title {
    padding-top: 0;
}

.accordion_item-wrapper .title[aria-expanded="true"] {
    padding-bottom: 50px;
}
.accordion_item-wrapper .title {
    padding: 25px 0;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    cursor: pointer;
}
.accordion_item-wrapper .body .main_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
}
.accordion_item-wrapper .body .main_list-item .main_title {
    margin-bottom: 10px;
}

@media screen and (min-width: 991.98px) {
    .h6, h6 {
        font-size: 20px;
        line-height: 1.4;
    }
}