.faq-content{
    background-color: #EFEBE6;
    box-shadow: 0px 4px 15px 0px #0000000D inset;
}

.faq-item {
    position: relative;
    padding: 3.75rem 5rem;
    display: flex;
    gap: 1.25rem;
}

.faq-item:last-child{
    margin-bottom: 1.5rem;
}

.faq-item span {
    font-weight: 500;
    font-size: 2rem;
    line-height: 2rem;
    margin-right: 4.375rem;
}

.faq-item-text h3 {
    flex-grow: 1;
    font-weight: 500;
    font-size: 2rem;
    line-height: 2rem;
    margin: 0 0 1.5rem;
}

.faq-item-text p {
	font-size: 1.5rem;
	line-height: 2rem;
	margin: 0;
}

.faq-img {
    width: 39.4375rem;
    height: 18.3125rem;
    border-radius: 1.875rem;
    flex-shrink: 0;
    overflow: hidden;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1440px) {
    .faq-item{
        padding: 2rem 3rem;
    }
    .faq-img{
        width: 30%;
        height: 100%;
    }
}

@media (max-width: 620px) {
    .faq-item{
        flex-direction: column;
    }
    .faq-img{
        width: 100%;
    }
}