
.strip1{
    display: flex;
    flex-direction: row;
    padding: 20px;
    text-align: center;
    justify-content: center;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-grey2);
}

.strip2{
    display: flex;
    flex-direction: row;
    padding: 20px;
    text-align: center;
    justify-content: center;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-grey2);
}

.strip3{
    display: flex;
    flex-direction: row;
    padding: 20px;
    margin: 40px 0px;
    text-align: left;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-grey2);
}

.strip3 .middle{
    border-left: solid 1px #aaa;
    border-right: solid 1px #aaa;
    margin: 0px 40px;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strip4{
    display: flex;
    flex-direction: column;
    padding: 40px;
    height: 30vh;
    justify-content: center;
    align-items: center;
    margin: 100px 0px 0px;
    text-align: center;
    border-bottom: solid 10px var(--primary1);
    gap: 12px;
}

.strip4 div{
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.strip5{
    display: flex;
    flex-direction: column;
    padding: 40px;
    height: 20vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--bg-grey2);
    border-bottom: solid 10px var(--secondery1);
    gap: 12px;
}

.strip5 div{
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

@media screen and (max-width: 767px) {
    .strip1 {
        gap: 12px;
    }

    .strip3{
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .strip4 div {
        gap: 12px;
    }
}