.story {
    margin: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.story__title {
    color: #0B342F;
    margin-bottom: 35px;
}

.story__two-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story__text-col {
    flex: 1;
    color: #777777;
    font-size: 18px;
    line-height: 28px;
}

.story__text-col button {
    margin-top: 20px;
}

.story__text {
    padding-right: 15%;
}

.story__img-col {
    position: relative;
    flex: 1;
}

.story__img-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 15px 15px 0px #0B342F;
}

.story__img-container img {
    width: 100%;
    height: auto;
    display: block;
}


.brands {
    margin-top: 80px;
    width: 100%;
    box-sizing: border-box;
}

.brands__background {
    box-shadow: 0px 32px 32px rgb(0 0 0 / 5%);
    background: white;
    border-radius: 20px;
    text-align: center;
    padding-bottom: 22px;
}

.brands__title {
    padding: 20px 0;
}

.brands__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.brands__item::before {
    border-top: none;
}


.brands__item {
    flex: 0 0 33.333333%;
    text-align: center;
    align-self: stretch;
    min-height: 180px;
    border-right: 1px solid #EBCFA8;
    position: relative;
}

.brands__item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.brands__item::before {
    content: '';
    width: 92%;
    border-top: 1px solid #EBCFA8;
    position: absolute;
    bottom: 0;
    left: 4%;
}

.brands__row:last-child .brands__item::before {
    border-top: none;
}

.brands__item:nth-child(3n) {
    border-right: 1px solid transparent;
}

@media screen and (max-width: 1024px) {
    .story__img-container {
        margin-right: 20px;
    }

    .brands__container.container--no-padding {
        padding: 0 20px;
    }

}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 480px) {

    .story {
        margin-top: 60px;
    }

    .story__two-col {
        flex-direction: column;
    }

    .story__text-col {
        font-size: 17px;
        line-height: 26px;
    }

    .story__text {
        padding-right: 0;
    }

    .story__img-col {
        margin-top: 50px;
        margin-right: 10px;
    }

    .story__img-container {
        box-shadow: 8px 8px 0px #124F47;
        margin-right: 0;
    }

    .brands {
        margin-top: 60px;
    }

    .brands__item {
        flex: 0 0 100%;
        min-height: 105px;
        border-right: none;
    }

    .brands__item img {
        padding: 10px 0;
    }

    .brands__item::before {
        border-top: 1px solid #EBCFA8;
    }

    .brands__row:last-child .brands__item::before {
        border-top: 1px solid #EBCFA8;
    }

    .brands__row:last-child .brands__item:last-child::before {
        border-top: none;
    }


}