.faq-container {
    font-family: "Raleway", sans-serif;
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    color: #000000;
    font-variant-numeric: lining-nums proportional-nums;
 }
 .faq-container h1, .faq-wrapper h2, .faq h2 {
    font-size: 32px;
    line-height: 37px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
 }
 .faq-wrapper {
    margin-bottom: 40px;
 }
 .faq .faq-wrap {
    max-width: 1080px;
    margin: 0 auto;
 }
 .faq-wrap .item {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    padding: 13px 20px;
    margin-bottom: 20px;
 }
 .faq-wrap .item-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
 }
 .faq-wrap .item-text {
    margin-top: 41px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1165px;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    font-family: "Inter", sans-serif;
 }
 .faq-wrap .open .item-text {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    position: static;
    opacity: 1;
    visibility: visible;
 }
 .faq-wrap .item-top__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    max-width: calc(100% - 70px);
    text-align: left;
    padding-top: 5px;
    max-width: 100%;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 0;
 }
 .faq-wrap .item-top__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #fff;
    border: solid 1px #f0f0f0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
 }
 .faq-wrap .open .item-top__icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
 }
 .faq-wrap .item-top__icon svg * {
    -webkit-transition: .3s;
    transition: .3s;
 }
 .faq-wrap .item-text__row {
    max-width: 100%;
    margin: 0;
 }
 .faq-wrap .item-text__row * {
    margin-bottom: 20px;
 }
 .faq-wrap .item-text__row p {
    display: block;
    font-size: 14px;
    line-height: 21px;
 }
 .faq-wrap .item-text__row p a {
    font-size: 14px !important;
    line-height: 21px !important;
    cursor: pointer;
    color: #ffc700;
    transition: color 0.3s ease-out;
    font-weight: 700;
 }
 .faq-wrap .item-text__row p a:hover {
    color: #000;
 }
 .faq-wrap .item-text__row ul {
    list-style-type: disc;
    padding-left: 16px;
 }
 .faq-wrap .item-text__row ul li {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    margin-bottom: 8px;
    list-style-type: disc;
    list-style-position: inside;
 }
 .faq-wrap .item-text__row ul li a {
    font-size: 14px !important;
    line-height: 21px !important;
    cursor: pointer;
    color: #ffc700;
    transition: color 0.3s ease-out;
    font-weight: 700;
 }
 .faq-wrap .item-text__row ul li a:hover {
    color: #000;
 }

 @media (max-width: 1100px) {
    .faq-wrap .item-text {
       -ms-flex-wrap: wrap;
       flex-wrap: wrap;
    }
    .faq-wrap .item-text__row {
       width: 100%;
       max-width: 100%;
       margin: 0;
    }
    .faq-wrap .item-text__row:nth-child(1) {
       margin: 0 0 20px;
    }
 }

 @media (max-width: 550px) {
    .faq-container h1, .faq-wrapper h2, .faq h2 {
      font-size: 18px;
      line-height: 21px;
    }
    .faq-wrap .item {
       margin-bottom: 20px;
       padding: 10px 20px;
       border-radius: 10px;
    }
    .faq-wrap .item-top {
       -webkit-box-align: center;
       -ms-flex-align: center;
       align-items: center;
    }
    .faq .faq-wrap .item-top__title {
       font-size: 18px;
       line-height: 21px;
       max-width: calc(100% - 70px);
    }
    .faq .faq-wrap .item-top__icon {
       width: 52px;
       height: 52px;
    }
    .faq .faq-wrap .item-top__icon svg {
       max-width: inherit;
       max-height: inherit;
    }
 }