.faq-entry {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 16px solid var(--primary);
}

.faq-entry .entry {
    position: relative;
    width: 100%;
    height: auto;
}

.faq-entry .entry .entry-header {
    width: 100%;
    height: auto;
    background: var(--primary);
    padding-top: 15px;
    padding-bottom: 15px;
}

.faq-entry .entry .entry-header .menu-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 80px;
}

.faq-entry .entry .entry-header .menu-list .menu-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: white;
    font-family: var(--font-regular);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-entry .entry .entry-header .menu-list .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: fit-content;
    margin-left: 6px;
    margin-right: 6px;
}

.faq-entry .entry .entry-wrap {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.faq-entry .entry .entry-wrap .media {
    width: 100%;
    height: 100%;
    background: #32313d;
}

.faq-entry .entry .entry-wrap .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    appearance: none;
    opacity: 0.4;
}

.faq-entry .entry .entry-wrap .content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.faq-entry .entry .entry-wrap .content .sub-title {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-0);
    font-family: var(--font-regular);
    margin-top: 0;
    margin-bottom: 10px;
}

.faq-entry .entry .entry-wrap .content .title {
    font-weight: 800;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--color-0);
    text-align: left;
    font-family: var(--font-semibold);
    margin-bottom: 0;
    margin-top: 0;
}

.faq-entry .entry .entry-wrap .content .title:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -1px;
    width: 170px;
    height: 16px;
    background-color: var(--primary);
}

@media only screen and (max-width:600px) {
    .faq-entry .entry .entry-header .menu-list {
        width: 90%;
        margin-left: 20px;
    }
}