.sins-section {
    padding: 100px 0 200px;
}

.sins-header {
    text-align: center;
}

.sins-header h3 {
    margin-bottom: 70px;
}

.sins-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sins-tabs {
    width: 32%;
    position: sticky;
    top: 100px;
    height: fit-content;
    left: 0;
    right: 0;
}

.sins-tabs ul {
    list-style: none;
    margin: 0;
    display: inline-block;
}

.sins-tabs li {
    display: inline-flex;
}

.sins-tabs li:not(:last-child) {
    margin-bottom: 50px;
}

.sins-tabs a {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
    color: var(--black);
    opacity: 0.5;
}

.sins-section.red-bg .sins-tabs a,
.sins-section.green-bg .sins-tabs a,
.sins-section.blue-bg .sins-tabs a {
    color: var(--white);
}

.sins-tabs a:after {
    content: "";
    background: transparent;
    width: 100%;
    height: 3px;
    display: block;
}

.sins-tabs a.active {
    opacity: 1;
}

.sins-tabs a.active:after {
    background: var(--orange);
}

.sins-section.red-bg .sins-tabs a.active:after {
    background: var(--white);
}

.sins-content {
    width: 68%;
    padding-left: 50px;
}

.sin-block+.sin-block {
    margin-top: 70px;
}

.sins-card h6 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
}

.sins-card p:not(:last-child) {
    margin: 0 0 20px 0;
}

.sins-card ul {
    margin: 0;
    padding-left: 18px;
}

.sins-card li {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
}

.sins-card li:not(:last-child) {
    margin-bottom: 6px;
}

.sin-block img {
    width: 100%;
    height: 383px;
    border-radius: 25px;
    background-color: #D9D9D9;
    object-fit: cover;
    margin-bottom: 25px;
}

.tab-main-title {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--orange);
}

.sins-section.red-bg .tab-main-title::after {
    border-color: var(--white);
}

@media (min-width: 768px) {
    .sins-card .wrapped-group+.wrapped-group,
    .sins-card .wrapped-group:has(+ .wrapped-group),
    .sins-card .wrapped-group:has(+ ul),
    .sins-card .wrapped-group+ul {
        width: 49%;
        display: inline-block;
        vertical-align: top;
    }
    .sins-card .wrapped-group+ul {
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    .sins-card h4 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 28px;
        line-height: 38px;
    }
    .tab-main-title {
        display: none;
    }
}

@media (max-width: 991px) {
    .sins-section {
        padding: 60px 0;
    }
    .sins-header h3 {
        margin-bottom: 30px;
    }
    .sins-wrapper {
        flex-direction: column;
    }
    .sins-content {
        width: 100%;
        padding: 0;
    }
    .sin-block+.sin-block {
        margin-top: 40px;
    }
    .sin-block img {
        height: 400px;
        border-radius: 15px;
    }
    .sins-tabs,
    .sins-header {
        display: none;
    }
}

@media (max-width: 767px) {
    .sins-section {
        padding: 50px 0;
    }
    .sin-block img {
        height: 300px;
        border-radius: 10px;
    }
    .sins-card h6 {
        font-size: 16px;
        line-height: 18px;
    }
    .sins-card .wrapped-group+.wrapped-group {
        margin-top: 20px;
    }
}