.faq {
    margin-bottom: 120px
}

.faq-title {
    font-size: 36px;
    line-height: 61px;
    font-family: raleway-bold, sans-serif;
    margin-bottom: 98px;
    text-align: center;
    color: #ffffff;
    position: relative
}

.faq-title:before {
    content: "";
    position: absolute;
    top: -20px;
    left: -45px;
    width: 45px;
    height: 49px;
    background: url(../images/icon-title-right.svg) no-repeat 50%;
    transform: rotate(270deg)
}

.faq-list {
    list-style: none;
    padding: 0 0 27px;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    margin: 0;
    grid-template-columns: repeat(4, 1fr);
    scroll-behavior: smooth
}

.faq-list__item {
    max-width: 360px;
    min-width: 360px;
    border-radius: 16px;
    padding: 32px 32px 64px;
    margin-right: 10px;
    -webkit-backdrop-filter: blur(18px);
    background-color: rgba(242,244,245,0.04);
    background-clip: padding-box, border-box;
    backdrop-filter: blur(.25rem);
    border: 1px solid #3b3b3b
}

.faq-list__item-title {
    color: #d6d8d8;
    font-family: ClashDisplay-Semibold, sans-serif;
    line-height: 25px;
    margin: 0 0 16px
}

.faq-list__item-text {
    color: #d6d8d8;
    font-family: raleway-regular, sans-serif;
    font-size: 14px;
    line-height: 21px;
    margin: 0
}

.faq-list__item-img {
    width: 46px;
    height: 46px;
    margin-bottom: 16px
}

.faq-list::-webkit-scrollbar {
    height: 3px;
    max-width: 60% !important
}

.faq-list::-webkit-scrollbar-thumb {
    background-color: #b6b6b6;
    border-radius: 53px
}

.faq-list::-webkit-scrollbar-track {
    margin-left: 500px;
    margin-right: 500px;
    background-color: #eef1f6;
    border-radius: 53px
}

.faq-buttons {
    position: absolute;
    top: 125px;
    right: 15px
}

.faq-buttons,
.faq-buttons__item {
    display: -ms-flexbox;
    display: flex
}

.faq-buttons__item {
    width: 42px;
    height: 42px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 5px 16px 27px 0 rgba(0, 112, 120, .1);
    cursor: pointer;
    border: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: .2s;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.2)
}

.faq-buttons__item:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 14px;
    background: url(../images/arrow-left-blue.svg) no-repeat center right 2px
}

.faq-buttons__item:hover {
    background: #52488982
}

.faq-buttons__item:hover:before {
    background: url(../images/arrow-left-white.svg) no-repeat center right 2px
}

.faq-buttons__item:nth-child(2) {
    margin-left: 20px
}

.faq-buttons__item:nth-child(2):before {
    transform: rotate(180deg)
}

.faq-buttons__img {
    width: 8px;
    height: 14px
}

.footer {
    padding-bottom: 100px
}

.share-title {
    line-height: 41px;
    font-family: ClashDisplay-Semibold, sans-serif;
    text-align: center;
    color: #d6d8d8;
    font-size: 36px;
    margin: 0 0 48px
}

.share-title__span {
    color: #d6d8d8;
    font-family: raleway-regular, sans-serif;
    font-size: 16px;
    line-height: 23px;
    display: block
}

.share-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.share-list__item {
    margin-right: 20px
}

.share-list__icon {
    width: 45px;
    height: 45px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2)
}

.overlay {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(5, 7, 11, .84);
    cursor: pointer
}

.overlay,
.popup {
    position: fixed;
    transition: .3s;
    display: none
}

.popup {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 844px;
    z-index: 1;
    padding: 30px 30px 62px;
    background-color: #fff;
    border-radius: 16px
}

.popup-close-button {
    position: absolute;
    top: -25px;
    right: -25px;
    color: #d6d8d8;
    border-radius: 50%;
    border-color: #d6d8d8;
    border-style: solid;
    cursor: pointer;
    opacity: .7;
    background-color: inherit;
    width: 26px;
    height: 26px;
    font-size: 11px
}

.popup-close-button:hover {
    opacity: 1
}

.popup-logo-title {
    margin: 0
}

.popup-title {
    position: relative;
    color: #000000;
    font-size: 24px;
    line-height: 41px;
    text-align: center;
    font-family: raleway-bold, sans-serif;
    margin: 27px 0 24px
}

.popup-title:after {
    content: "";
    position: absolute;
    top: -25px;
    right: -60px;
    width: 50px;
    height: 40px;
    background: url(../images/icon-folder.svg) no-repeat 50%;
    background-size: cover
}

.popup-text {
    color: #333333;
    line-height: 23px;
    margin: 0 0 48px;
    max-width: 508px;
    text-align: center;
    font-family: 'raleway-regular'
}

.popup-text span {
    font-family: raleway-medium, sans-serif;
    color: #333333
}

.popup-buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.popup-buttons__item {
    border-radius: 16px;
    padding: 26px 0;
    cursor: pointer;
    width: 240px;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    margin-right: 18px;
    font-family: raleway-regular;
    background-color: #000000;
    margin-bottom: 10px;
    text-decoration: none
}

.popup-buttons__item:hover {
    background-color: #eaf2fb;
    color: #000000
}

.popup-error .popup-title {
    color: #c83737
}

.popup-error .popup-title:after {
    background: url(../images/icon-title-red.svg) no-repeat 50%
}




