header .section .logo {
    display: flex;
    width: auto;
    align-items: center;
}

header .section .logo img {
    width: 86px;
    margin-right: 8px;
}

header .section .logo span {
    color: #BC0022;
}

#products {
    background: #BC0022;
}

#products .fs-40-600, #products .fs-18-500 {
    color: #FFFFFF;
}

#products .products-row-item-image {
    background: #FFFFFF;
}

#about {
    background: transparent;
}

#about .fs-40-600 {
    color: unset;
}

#about .about-wrap-item-title {
    color: unset;
}

#about .about-wrap-item-desc {
    color: unset;
}

.chat-form-button {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid #FFFFFF;
    background: #BC0022;
    cursor: pointer;
    display: flex;
    transition: background .3s ease-in-out;

    animation: jumping 2s infinite ease-in-out;
}

.overflow-hidden .chat-form-button {
    animation: unset;
}

@keyframes jumping {
    from {
        bottom: 16px;
    }
    20% {
        bottom: 22px;
    }
    25% {
        bottom: 18px;
    }
    30% {
        bottom: 22px;
    }
    50% {
        bottom: 16px;
    }
    to {
        bottom: 16px;
    }

}

.chat-form-button .ico {
    width: 30px;
    margin: auto;
    transition: all .3s ease-in-out;
}

.chat-form-button .ico svg {
    width: 100%;
    height: auto;
}

.chat-form-button .ico svg .fill-color {
    fill: #FFFFFF;
    transition: all .3s ease-in-out;
}

.chat-form-button:hover {
    background: #FFFFFF;
}

.chat-form-button:hover .ico svg .fill-color {
    fill: #BC0022;
}

.vertical-form {
    max-width: 400px;
}

.vertical-form .fs-40-600 {
    margin-bottom: 24px;
}

.vertical-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.vertical-form .form-group label {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 4px;
}

.vertical-form .form-group input, .vertical-form .form-group textarea {
    background: transparent;
    border-radius: 6px;
    padding: 8px 16px;
    width: calc(100% - 34px);
    border: 1px solid #929292;

    color: #000000;
    font-size: 16px;
    line-height: 24px;

    transition: border .3s ease-in-out;
}

.vertical-form .form-group input:focus, .vertical-form .form-group textarea:focus {
    border: 1px solid #BC0022;
    outline: none;
}

.vertical-form .form-group textarea {
    resize: none;
}

.vertical-form .checkbox-group {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    position: relative;
}

.vertical-form .checkbox-group .checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.vertical-form .checkbox-group .checkbox-container input {
    position: absolute;
    left: 3px;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.vertical-form .checkbox-group .checkbox-container .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 6px;
    background-color: #FFFFFF;
    border: 1px solid #929292;

    transition: all .3s ease-in-out;
}

.vertical-form .checkbox-group .checkbox-container .checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 3px 3px 0;
}

.vertical-form .checkbox-group .checkbox-container input:checked ~ .checkmark {
    background-color: #BC0022;
    border: 1px solid #BC0022;
}

.vertical-form .checkbox-group .checkbox-container input:checked ~ .checkmark:after {
    display: block
}

.vertical-form .body-form button {
    padding: 8px 16px;
    background: #BC0022;
    border: 1px solid #BC0022;
    color: #FFFFFF;
    border-radius: 6px;
    cursor: pointer;

    font-size: 16px;
    line-height: 24px;
    font-weight: 500;

    transition: background .3s ease-in-out, color .3s ease-in-out;
}

.vertical-form .body-form button:hover {
    background: transparent;
    color: #BC0022;
}

@media screen and (max-width: 768px) {
    .vertical-form {
        overflow-y: unset;
        max-width: 320px;
    }
}

@media screen and (max-width: 576px) {
    #products .products-row-item:nth-child(3) {
        margin-bottom: 24px;
    }

    .chat-form-button {
        width: 46px;
        height: 46px;
    }

    .chat-form-button .ico {
        width: 24px;
    }
}