.banner-area {
    height: 80% !important;
}

.banner-image {
    position: absolute;
    right: 0;
    top: -250px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area .double-items .thumb img {
        max-width: 80% !important;
        margin: 100px auto auto !important;
    }
}

@media screen and (max-width: 991px) {
    .banner-area {
        height: 100% !important;
    }

    .banner-image {
        top: -180px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-image {
        top: -90px;
    }
}

@media only screen and (max-width: 375px) {
    .banner-image {
        top: 0px;
    }
}

#primary-button {
    color: #202942 !important;
    border: 2px solid #202942 !important;
}

#primary-button::after {
    background: #202942;
    color: #fff !important;
}

.blue-button {
    background: #4ac4f3;
    color: #fff !important;
}

.offer {
    display: grid;
    max-width: 1120px;
    width: 80%;
    border-radius: 8px;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
    margin: 0 auto;
    margin-bottom: 80px;
}

.offer div:nth-child(1) {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.offer div:nth-child(2) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;

    box-shadow: 4px 0 10px -2px rgba(0, 0, 0, 0.1),
        0 4px 10px -2px rgba(0, 0, 0, 0.1), 0 -4px 10px -2px rgba(0, 0, 0, 0.1),
        4px 0 10px -2px rgba(0, 0, 0, 0.1) inset;
}
.offer ul {
    height: 100%;

    padding: 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 15px;

    font-size: 16px;
}

@media screen and (max-width: 985px) {
    .offer ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.offer ul li {
    display: flex;
    align-items: start;
    min-height: 52px;
}

.offer i {
    position: relative;
    top: 5px;
}
.offer i:before {
    color: #4ac4f3;
    padding-right: 10px;
}
.offer h3 {
    font-weight: bold;
    color: #202942;
}

.offer #price {
    font-weight: bold;
    font-size: 24px;
    color: #202942;
}

.offer .list {
    background-color: #202942;
    color: #fff;
}

/** FAQ**/

#faq-questions {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    grid-auto-rows: min-content;
}
@media screen and (max-width: 992px) {
    #faq-questions {
        grid-template-columns: 1fr;
    }
}
.faq-item {
    cursor: pointer;

    display: flex;
    vertical-align: top;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
    border-radius: 8px;
    transition: all 0.35s ease-in-out;
    padding: 10px;
}

.faq-item div:nth-child(1) {
    text-align: center;
    padding: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.faq-item div span {
    color: #202942;
    font-weight: bold;
    text-align: left;
}
.faq-answer {
    display: none;
}
.faq-item.active .faq-answer {
    display: flex;
    text-align: left;
    padding: 10px;

    width: 100%;
}
