:root {
    --main-color: #99564e;
    --second-color: #59585c;
    --text-color: #59585c;
    --link-color: #59585c;
    --shadow-1: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
html{
    margin: 0 !important;
}
body {
    color: var(--text-color);
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
    padding: 0 !important;
    background-image: url(../img/pattern.svg);
    background-size: contain;
    background-repeat: repeat;
}
a{
    text-decoration: none;
    color: var(--link-color);
}
a:hover{
    color: var(--main-color);
}
h1, h2, h3, h4, h5, h6{
    line-height: 1.4;
}
p{
    color: var(--p-color);
}
img {
    max-width: 100%;
}
*{
    transition: all 0.3s ease-out;
}
section{
    padding: 50px 0;
    position: relative;
}
header{
    padding: 30px 0;
}

.logo-item{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 15px;
    text-align: center;
    align-items: center;
}
.logo-item img{
    height: 100px;
    object-fit: contain;
}

footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: var(--second-color);
    color: #fff;
    padding: 15px 0;
}
footer p{
    margin: 0;
}

@media(max-width: 768px){
    footer{
        position: static;
    }
    .logo-item{
        gap: 10px;
    }
    .logo-item img{
        width: 200px;
        height: auto;
    }
}