.faqblock {
    /* padding-top: 140px; */
    padding-bottom: 140px;

    font-family: "Montserrat", sans-serif;
    color: #0d2c4b;

    max-width: 1268px;
    margin-left: auto;
    margin-right: auto;
}

.faqblock-title {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
}

.faqblock-list {
    margin-top: 32px;
    list-style: none;
    padding: 0;
}

.faqblock-item {
    list-style: none;

    border-bottom: 1px solid #8797a6;

    margin-top: 20px;
}

.faqblock-item:first-child {
    margin-top: 0;
}

.faqblock-item:last-child {
    border-bottom: 0;
}

.faqblock-details {
    padding-bottom: 20px;
    padding-top: 10px;

    display: grid;
    grid-template-rows: min-content 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faqblock-details.open {
    grid-template-rows: min-content 1fr;
}

.faqblock-content {
    overflow: hidden;
    min-height: 0;

    margin-bottom: 0;

    font-size: 16px;
    margin-top: 10px;
}

.faqblock-content p {
    margin-top: 0;
    margin-bottom: 0;
}

.faqblock-details.open .faqblock-summary::before {
    opacity: 0;
}

.faqblock-details.open .faqblock-summary::after {
    opacity: 1;
}

.faqblock-summary {
    font-family: "Montserrat", sans-serif;
    list-style: none;
    cursor: pointer;

    font-weight: 600;
    font-size: 20px;

    position: relative;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;

    border: 0;
    background-color: transparent;
    margin: 0;
    padding: 0;
    text-align: start;

    padding-right: 64px;
}

.faqblock-summary::before,
.faqblock-summary::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: opacity .3s;

    width: 34px;
    height: 34px;
    top: 0;
    right: 0;
}

.faqblock-summary::before {
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_5001_121' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='34' height='34'%3E%3Crect width='34' height='34' fill='%2339CD00' /%3E%3C/mask%3E%3Cg mask='url(%23mask0_5001_121)'%3E%3Cpath d='M16.9997 21.3261L8.99023 13.3167L10.483 11.8239L16.9997 18.3405L23.5164 11.8239L25.0092 13.3167L16.9997 21.3261Z' fill='%2339CD00' /%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.faqblock-summary::after {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_3119_532' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9' /%3E%3C/mask%3E%3Cg mask='url(%23mask0_3119_532)'%3E%3Cpath d='M8.05292 16.6731L7.32617 15.9463L11.2722 12.0001L7.32617 8.0788L8.05292 7.35205L11.9992 11.2981L15.9204 7.35205L16.6472 8.0788L12.7012 12.0001L16.6472 15.9463L15.9204 16.6731L11.9992 12.7271L8.05292 16.6731Z' fill='%2339CD00' /%3E%3C/g%3E%3C/svg%3E");
    opacity: 0;
}

.faqblock-summary::-webkit-details-marker {
    display: none;
}

@media (max-width: 1400px) {
    .faqblock {
        padding-right: 25px;
        padding-left: 25px;
    }
}

@media (max-width: 768px) {
    .faqblock {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .faqblock-title {
        font-size: 20px;
    }

    .faqblock-list {
        margin-top: 12px;
    }

    .faqblock-item {
        margin-top: 0;
    }

    .faqblock-summary {
        font-size: 16px;
        font-weight: 500;
    }

    .faqblock-details {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .faqblock-content {
        margin-top: 0;

        font-size: 12px;
    }

    .faqblock-content>*:first-child {
        margin-top: 10px;
    }
}