.container2 {
    width: 90%;
}
.marquee2 {
    display: flex;
    gap: 10px;
    overflow: hidden;
}
.box2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    border: 1px solid var(--tertiary-color);
    border-radius: 10px;
}
.box2 img {
    display: block;
    margin: 10px;
}
.box2 p{
    margin-right: 10px;
    white-space: nowrap;
}
.marquee2 > .box2:first-child{
    background-color: transparent;
    border: none;
    border-radius: 0;
}
.marquee2 > .box2:first-child > div{
    background-color: var(--primary-color);
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--tertiary-color);
    border-radius: 10px;
}
.marquee2 > .box2:first-child > div img{
    margin: 10px;
}
.marquee2 > .box2:first-child > div p{
    margin-right: 10px;
}