.questions {
    width: 87%;
    padding: 96px 5px 48px 5px;
    margin: 0 auto;
}

.questionsHeader {
    text-align: left;
}

.questionsHeader p {
    padding: 0;
    margin: 0;
}

.questionsHeader p:nth-child(1) {
    font-size: 48px;
    font-weight: 600;
    color: var(--main-blue);
}

.questionsHeader p:nth-child(2) {
    color: #4B5563;
    font-size: 20px;
}

.questionsContentBlock {
    margin: 48px auto;
}

.questionsBlockHeader {
    font-size: 32px;
    color: var(--main-blue);
    font-weight: 500;
}

.questionAnswer {
    padding: 0;
    margin: 0 !important;
}

.questionsContent ul li {
    min-height: 102px !important;
}

.transition, ul li i:before, ul li i:after, .questionAnswer {
    transition: all 0.3s ease-in-out;
}

.flipIn, ul li, h1 {
    animation: flipdown 0.3s ease both;
}

.no-select, .questionHeader {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.questionsContent {
    display: inline-block;
    width: 100%;
    height: 100%;
}

@media (max-width: 550px) {
    .questionsContent {
        box-sizing: border-box;
        transform: translate(0, 0);
        max-width: 100%;
        min-height: 100%;
        margin: 0;
        left: 0;
    }

    .questionsBlockHeader {
        text-align: left !important;
    }
}

.questionHeader {
    font-size: 24px;
    font-weight: 500;
    display: block;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.questionAnswer {
    color: #424242;
    font-size: 20px;
    font-weight: 300;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translate(0, 0);
    margin-top: 24px;
    z-index: 2;
    padding-top: 30px;
}

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

.questionsContent ul li {
    position: relative;
    padding: 32px !important;
    margin: 0 0 32px 0;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.questionsContent ul li:nth-of-type(1) {
    animation-delay: 0.5s;
}

.questionsContent ul li:nth-of-type(2) {
    animation-delay: 0.75s;
}

.questionsContent ul li:nth-of-type(3) {
    animation-delay: 1s;
}

.questionsContent ul li:last-of-type {
    padding-bottom: 0;
}

.questionsContent ul li i {
    position: absolute;
    transform: translate(-6px, 0);
    right: 0;
}

.questionsContent ul li i:before, .questionsContent ul li i:after {
    content: "";
    position: absolute;
    background-color: var(--main-blue);
    width: 3px;
    height: 9px;
    right: 60px;
    top: 14px;
}

.questionsContent ul li i:before {
    transform: translate(-2px, 0) rotate(45deg);
}

.questionsContent ul li i:after {
    transform: translate(2px, 0) rotate(-45deg);
}

.questionsContent ul li input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

.questionsContent ul li input[type=checkbox]:checked ~ .questionAnswer {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
    padding-top: 0;
}

.questionsContent ul li input[type=checkbox]:checked ~ i:before {
    transform: translate(2px, 0) rotate(45deg);
}

.questionsContent ul li input[type=checkbox]:checked ~ i:after {
    transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
    0% {
        opacity: 0;
        transform-origin: top center;
        transform: rotateX(-90deg);
    }
    5% {
        opacity: 1;
    }
    80% {
        transform: rotateX(8deg);
    }
    83% {
        transform: rotateX(6deg);
    }
    92% {
        transform: rotateX(-3deg);
    }
    100% {
        transform-origin: top center;
        transform: rotateX(0deg);
    }
}

@media (max-width: 550px) {
    .questions {
        width: calc(100% - 20px);
        padding: 0;
        padding-top: 48px;
        margin: 0 auto;

    }

    .questionsHeader p:nth-child(1) {
        font-weight: 600;
        font-size: 22px;
        line-height: 136%;
        margin-bottom: 24px;
        text-align: center;
    }

    .questionsHeader p:nth-child(2) {
        color: #4B5563;
        font-size: 20px;
        text-align: center;
        font-weight: 400;
        font-size: 12px;
        line-height: 150%;
        max-width: 210px;
        margin: 0 auto;
    }

    .questionsContentBlock {
        margin: 24px auto;
    }

    .questionsBlockHeader {
        font-size: 18px;
        line-height: 144%;
        text-align: center;
    }

    .questionsContent ul li {
        position: relative;
        padding: 16px 8px !important;
        margin: 0 0 16px 0;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
    }

    .questionHeader {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        max-width: calc(100% - 30px);
    }

    .questionAnswer {
        color: #424242;
        font-size: 15px;
        padding-top: 16px;
    }

    .questionsContent ul li i:before, .questionsContent ul li i:after {
        content: "";
        position: absolute;
        background-color: var(--main-blue);
        width: 2px;
        height: 18px;
        right: 10px;
        top: 5px;
    }

    .questionsContent ul li input[type=checkbox]:checked ~ i:after {
        transform: translate(-9px, 0) rotate(-45deg);
    }

    .questionsContent ul li i:before {
        transform: translate(-10px, 0) rotate(45deg);
    }

}
