#product-highlight-sec {
    padding-top: 89px;
    padding-bottom: 134px;
    position: relative;
    background: #0C2146;
    color: #fff;
    margin: 50px 0;
}

.highlight-blocks-wrapper {
    border-radius: 31px;
    background: #FFF;
    color: #000;
    padding: 79px;
    width: 100%;
}

.highlight-blocks-wrapper .title-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 65px
}

.highlight-pill {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    text-align: center;
    font-family: "Work Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border: none;
    background: none;
}

.highlight-pill.active {
    border-radius: 46px;
    background: #EA5829;
    color: #fff;
}

#product-highlight-sec .sec-title {
    text-align: center;
    margin-bottom: 22px;
    transition: .5s all;
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

#product-highlight-sec .sec-desc {
    color: #fff;
    max-width: 748px;
    margin: 0 auto 40px;
    transition: .5s all;
    text-align: center;
}

#product-highlight-sec .sec-desc ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: fit-content;
}

#product-highlight-sec .sec-desc li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: left;
}

#product-highlight-sec .sec-desc li::before {
  content: '•';
  margin-right: 0.5em;
  font-size: 1em;
}

span.highlight-block__text {
    color: #000;
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-bottom: 30px;
}

#product-highlight-sec a.orange-btn {
    width: auto;
}

.highlight-blocks-wrapper > .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.highlight-blocks-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    flex: 1 1 50%;
}

#product-highlight-sec .img-col {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1 1 50%;
    min-height: 315px;
}

.highlight-block {
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
    text-align: left;
    max-width: 90%;
}

.highlight-block.active {
    opacity: 1;
    display: block;
}

.product-highlight__img-block {
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.product-highlight__img-block.active {
    opacity: 1;
    display: block;
}

@media screen and (max-width: 1199px) {
    .highlight-blocks-wrapper > .row {
        flex-direction: column;
    }

    .highlight-blocks-col, .img-col {
        justify-content: flex-start;
        align-items: stretch;
        text-align: center;
    }

    .product-highlight__img-block {
        height: 250px;
    }

    .highlight-block {
        width: 100%;
    }
}

@media ( max-width: 991px ) {
    .highlight-blocks-wrapper .title-wrapper {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin-bottom: 65px;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

@media screen and (min-width: 1200px) {
    #product-highlight-sec .container {
        position: relative;
        z-index: 2;
    }

    .img-col::before {
        content: '';
        position: absolute;
        display: block;
        width: 136px;
        height: 136px;
        background-image: url(../img/dot.png);
        background-repeat: repeat;
        background-size: 12px 12px;
        background-position: top -4px left -4px;
        right: -18px;
        bottom: -50px;
    }
}
