@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
* {
  box-sizing: border-box;
  font-family: "Kumbh Sans", sans-serif;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
}

.faq {
  background: linear-gradient(180deg, #b068e9 0%, #6463e7 100%);
  padding: 148px 24px 0;
  height: 100vh;
}
.faq .container {
  min-height: 535px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 50px 50px -20px rgba(53, 18, 122, 0.497159);
  border-radius: 23px;
  padding: 132px 24px 0;
  background-image: url("../img/background-mobile.png");
  background-repeat: no-repeat;
  background-position: top center;
}
.faq__mobile-photo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-55%, 21%);
}
.faq__desktop-photo {
  display: none;
}
.faq__desktop-cube {
  display: none;
}
.faq__title {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #1e1f36;
  margin-bottom: 11px;
}
.faq__content {
  max-width: 350px;
  width: 100%;
}

@media screen and (min-width: 1040px) {
  .faq {
    padding: 129px 0 0;
  }
  .faq .container {
    min-height: 522px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 65px 95px 83px 0;
    background-image: url("../img/background-desktop.png");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 388px;
  }
  .faq__mobile-photo {
    display: none;
  }
  .faq__photo-wrapper {
    position: relative;
  }
  .faq__desktop-photo {
    display: unset;
    max-width: 388px;
  }
  .faq__desktop-cube {
    width: 150px;
    display: unset;
    position: absolute;
    left: -73px;
    top: 135px;
  }
  .faq__title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #1e1f36;
    margin-bottom: 11px;
  }
}
.arrow-icon {
  fill: transparent;
  stroke: #f47b56;
  width: 8px;
  height: 4px;
  transition: all 0.3s ease-in-out;
}

.faq-list__item {
  width: 100%;
  border-bottom: 1px solid #e8e8ea;
}
.faq-list__summary-wrapper {
  cursor: pointer;
  padding: 19px 0 19px 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.faq-list__item.active .faq-list__summary {
  font-weight: 700;
  color: #1e1f36;
}
.faq-list__summary-wrapper:hover .faq-list__summary {
  color: #F47B56;
}
.faq-list__item {
  transform: rotate(0deg);
  transition: rotate 0.3s ease-in-out;
}
.faq-list__item.active .faq-list__arrow-icon {
  transform: rotate(180deg);
}
.faq-list__summary {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #4b4c5f;
  transition: all 0.3s ease-in-out;
}
.faq-list__details-wrapper {
  height: 0;
  overflow: hidden;
  transition: all 0.2s linear;
}
.faq-list__details {
  margin-top: -5px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #787887;
}