
/* Story began */

.our-products .story-began {
    background: #D8A734;
    background-image: none;
    padding: 1rem 0px;
    color: #000;
}

.our-products .story-began .text {
    font-weight: 400;
    font-size: 24px;
    color: #000;
    margin-bottom: 0px;
}

.our-products .story-began .btn-white {
    background: #fff;
    border-radius: 0px;
    padding: .5rem 1.5rem;
    color: #000;
    float: right;
    transition: .7s;
}

.our-products .story-began .btn-white:hover {
    color: #fff;
    background-color: #000;
}

/* Product list */

.our-products .products-list .product {
    display: flex;
    flex-direction: row;
}

.our-products .products-list .product .product-descr{
    background-size: cover;
    background-repeat: no-repeat;
}

.our-products .products-list .product .product-descr div {
    padding: 70px;
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
}

.our-products .products-list .product .product-descr, .our-products .products-list .product .product-img {
    width: 50%;
}

.our-products .products-list .product .product-img {
    display: flex;
}

.our-products .products-list .product .product-img div {
    width: 50%;
}

.our-products .products-list .product .product-img .image img {
    height: 100%;
}

.our-products .products-list .product .product-img .icon {
    display: flex;
}

.our-products .products-list .product .product-img .icon img {
    margin: auto;
}

.bg-back {
    background: #000;
}

.our-products .products-list .product .product-descr .title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.our-products .products-list .product .product-descr .text {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.our-products .about-products {
    padding: 70px 0px;
}


.our-products .about-products .about {
    display: flex;
}

.our-products .about-products .about div {
    width: 50%;
}


.our-products .about-products .about div .title {
    font-size: 34px;
    font-weight: 400;
    color: #000;

    position: relative;
    padding-bottom: 2rem;
}

.our-products .about-products .about div .text {
    font-size: 14px;
    font-weight: 400;
    color: #474545;
}

.underline-yellow::before {
    content: '';
    position: absolute;
    width: 40%;
    height: 1px;
    background-color: #E0AB3A;

    bottom: 0px;
}

.our-products .our-partners .title{

    font-size: 34px;
    font-weight: 400;
    position: relative;
    width: fit-content;
    margin-bottom: 0px;
    line-height: 34px;
}
.our-products .our-partners .title::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 1px;
    background: #F8C12C;
    transform: translateX(100%);
}

section {
    overflow: hidden;
}

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

    
    .our-products .products-list .product:nth-child(odd) {
        flex-direction: column;
    }
    .our-products .products-list .product:nth-child(even) {
        flex-direction: column-reverse;
    }
    .our-products .products-list .product .product-descr, .our-products .products-list .product .product-img {
        width: 100%;
    }

    .our-products .about-products .about {
        flex-direction: column;
    }
    .our-products .about-products .about div {
        width: 100%;
    }

}