.pd-tabs {
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 16px;
}

.pd-tabs .pd-tabs__wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pd-tabs .pd-tabs__wrapper .tabs {
    max-width: 416px;
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.pd-tabs .pd-tabs__wrapper .tabs .tab {
    padding: 8px;
    font-family: 'Catamaran', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: #1E3226;
    opacity: 0.6;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.pd-tabs .pd-tabs__wrapper .tabs .tab:hover {
    opacity: 1;
}

.pd-tabs .pd-tabs__wrapper .tabs .tab.active {
    opacity: 1;
    border-bottom: 3px solid #FDC400
}

.pd-tabs .pd-tabs__wrapper .tabs-content {
    flex: 1;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item {
    display: flex;
    align-items: center;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content {
    width: 50%;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content p:first-child {
    font-family: 'Catamaran', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    color: #1E3226;
    padding-bottom: 16px;
    display: flex;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content ul {
    padding-left: 14px;
    padding-bottom: 16px;
    margin: 0;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 24px !important;
    color: #757E77;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #757E77;
    margin-bottom: 0;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content p strong, .pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content p b {
    color: #1E3226;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content em {
    color: #01693F;
    font-family: 'Roboto', sans-serif;;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 21px;
    margin-top: 46px;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 20px;
    font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    color: #1E3226;
    border-radius: 8px;
    background: #FDC400;
    text-decoration: unset;
    transition: all 0.3s ease;
    margin-top: 46px;
}

.pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 998px) {
    .pd-tabs .pd-tabs__wrapper {
        flex-flow: column;
    }

    .pd-tabs .pd-tabs__wrapper .tabs {
        flex-flow: row;
        max-width: max-content;
        width: max-content;
        overflow-x: auto;
    }

    .pd-tabs .pd-tabs__wrapper .tabs-wrapper {
        overflow-y: auto;
        max-width: 100%;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .pd-tabs .pd-tabs__wrapper .tabs .tab {
        font-size: 18px;
    }

    .pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content .title {
        font-size: 20px;
    }

    .pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item {
        flex-flow: column-reverse;
        gap: 16px;
    }

    .pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content {
        width: 100%;
    }

    .pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item img {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .pd-tabs .pd-tabs__wrapper .tabs-content .tabs-content__item .content a {
        width: 100%;
    }
}