* {
    color: #2B2D33;
    font-family: Montserrat, sans-serif;
}

.coming-soon {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: #FFFCE6;
    display: flex; 
    justify-content: center;
    padding: 3rem 1rem;
    overflow: auto;
}

.coming-soon__container {
    max-width: 840px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.coming-soon__logo-wrap {
    width: 248px;
    margin: 0 auto;
    padding-top: 50px;
}

.coming-soon__logo {
    max-height: 100%;
    max-width: 100%;
}

.coming-soon__description {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.coming-soon__separator {
    width: 60px;
    height: 60px;
}

.coming-soon__separator img {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.coming-soon__company-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 55px;
}

.coming-soon__contacts {
    display: block;
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    .coming-soon__logo-wrap {
        width: 176px;
    }
    .coming-soon__company-list {
        gap: 20px;
    }
    .coming-soon__description {
        font-size: 25px;
        line-height: 1.2;
    }
    .coming-soon__separator {
        width: 35px;
        height: 35px;
    }
    .coming-soon__company-item img {
        max-height: 35px;
    }
}