.faq-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.875rem 3rem;
}

.faq-item {
    display: flex;
    gap: 1.25rem;
    position: relative;
    padding-left: 4.5rem;
}

.faq-item:last-child{
    margin-bottom: 1.5rem;
}

.faq-item span {
    position: absolute;
    font-size: 0;
    background-color: #DADADA;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    top: .75rem;
    left: 2rem;
}

.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: 1080px) {
    .faq-content{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {

}