.our {
    background-color: #161616;
}

.our-content {
    max-width: 95%;
    margin: 0 auto;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our h1 {
    font-family: urbane, "sans-serif";
    font-weight: 300;
    font-size: 26px;
    line-height: 43px;
}

.our h1 span {
    color: #ff7b00;
}

.our-title {
    max-width: 340px;
    margin-block: 50px;
}

.our-img-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-inline: 10px;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
}

.our-img-wrapper img {
    border-radius: 30px;
    max-width: 500px;
    width: 100%;
}

.our-content-desktop {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-content-desktop .our-img-wrapper {
    flex-wrap: nowrap;
    width: 950px;
    max-width: 100%;
    padding-inline: 0;
    gap: 21px;
    justify-content: space-between;
}

.our-img-desk-left, .our-img-desk-right {
    width: calc((100% / 2) - (21px / 2));
    display: flex;
}

.our-img-desk-right {
    justify-content: space-between;
    padding-block: 7px;
    gap: 30px;
}

.our-img-desk-left img {
    height: 234px;
}

.our-img-desk-right img {
    height: 216px;
    width: calc(50% - (30px / 2));
}

.our-content-desktop .our-title {
    width: 950px;
    max-width: 100%;
}

.our-content-desktop h1 {
    text-align: start;
    line-height: 67px;
    background-image: url(../img/our-background.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

@media (min-width: 1200px) {
    .our-content-desktop {
        display: flex;
    }

    .our-content {
        display: none;
    }

    .our h1 {
        font-size: 57px !important;
    }

}

@media (min-width: 800px) {

    .our-title {
        max-width: 360px;
    }

    .our h1 {
        font-size: 36px; 
    }
}
 