.kasia-belka {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #3f432e;
    color: #fff;
    padding: 50px 35px 22px;
    border-radius: 6px;
    font-family: Montserrat;
}

.kb-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kb-left img {
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.kb-opis {
    width: 320px;
    margin-right: -80px;
    padding-left: 45px;
    box-sizing: border-box;
	font-size: 14px;
}

.kb-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,.15);
    margin: 0 15px;
}

.kb-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.5;
}

.kb-item:last-of-type {
    margin-bottom: 24px;
}

.kb-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D7C08A;
    flex-shrink: 0;
}

.kb-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.kb-button{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    align-self:flex-start;

    min-width:210px;
    height:46px;
    padding:0 28px;

    border:1px solid #B08A4A;
    background:transparent;
    color:#fff !important;

    font-family:'Montserrat',sans-serif;
    text-decoration:none !important;
    text-transform:uppercase;
    letter-spacing:.5px;
    font-size:14px;
    font-weight:600;

    overflow:hidden;
    transition:color .35s ease;
    z-index:1;
}

.kb-button::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:100%;
    background:#B08A4A;
    transition:width .4s ease;
    z-index:-1;
}

.kb-button:hover{
    color:#fff !important;
    text-decoration:none !important;
}

.kb-button:hover::before{
    width:100%;
}

.kb-button:visited,
.kb-button:focus,
.kb-button:active{
    color:#fff !important;
    text-decoration:none !important;
    outline:none;
}

#logo-preview {
    margin-bottom: 15px;
}

#logo-preview img {
    max-width: 220px;
    height: auto;
    display: block;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:1024px){

    .kasia-belka{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:35px;
        padding:40px 30px;
    }

    .kb-left,
    .kb-right{
        width:100%;
        align-items:center;
    }

    .kb-left img{
        width:150px;
        margin:0 auto 20px;
    }

    .kb-opis{
        width:100%;
        max-width:500px;
        margin:0;
        padding:0;
        text-align:center;
    }

    .kb-divider{
        width:100%;
        height:1px;
        margin:0;
    }

    .kb-right{
        display:flex;
        flex-direction:column;
        align-items:center;
        width:100%;
        max-width:420px;
    }

.kb-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-bottom:16px;
    text-align:left;
}

    .kb-icon{
        flex-shrink:0;
        width:18px;
        height:18px;
    }

    .kb-button{
        align-self:center;
    }

}


/* ===========================
   MOBILE
=========================== */

@media (max-width:767px){

    .kasia-belka{
        padding:30px 20px;
        gap:30px;
        border-radius:0;
    }

    .kb-left img{
        width:130px;
    }

    .kb-opis{
        max-width:100%;
        font-size:14px;
        line-height:1.8;
        text-align:center;
    }

    .kb-right{
        width:100%;
        max-width:320px;
    }

.kb-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-bottom:16px;
    text-align:left;
}

    .kb-icon{
        flex-shrink:0;
        width:18px;
        height:18px;
        margin:0;
    }

    .kb-button{
        width:100%;
        max-width:320px;
        min-width:0;
        align-self:center;
    }

}

.kb-item a,
.kb-item a:link,
.kb-item a:visited,
.kb-item a:hover,
.kb-item a:focus,
.kb-item a:active{
    color:#fff !important;
    text-decoration:none !important;
}