@font-face {
    font-family: "Alex Brush";
    font-weight: normal;
    font-style: normal;
    src: url("fonts/AlexBrush-Regular.ttf");
}
@font-face {
    font-family: "PoiretOne";
    font-weight: normal;
    font-style: normal;
    src: url("fonts/PoiretOne-Regular.ttf");
}
* {
    box-sizing: border-box;
}
html, body {
    max-height: 100%;
    overflow-x: hidden;
    margin: 0 0 100px;
}
body {
    font-family: "PoiretOne",sans-serif;
    font-size: 20px;
}
h1 {
    font-family: "Alex Brush",sans-serif;
    font-size: 84px;
    color: #9b9b50;
    text-align: center;
}
a {
    text-decoration: none;
    color: #000;
    transition: color 0.2s;
}
a:hover {
    color: #9b9b50;
}
img {
    width: 100%;
}
ul {
    list-style: none;
    padding: 0;
}
footer {
    text-align: right;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
}
footer a {
    font-size: 24px;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}
.content {
    margin-bottom: 50px;
}
.content-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.company-block {
    width: 50%;
    padding: 5px;
    min-height: 500px;
}
.company-content {
    background: #F1F1F1;
    height: 100%;
    padding: 30px 25px 10px;
    border-radius: 5px;
}

/*.company-block {*/
/*    padding: 30px 0;*/
/*    width: 100vw;*/
/*    position: relative;*/
/*    margin-left: -50vw;*/
/*    left: 50%;*/
/*}*/
/*.company-block:nth-child(2n-1) {*/
/*    background: #F1F1F1;*/
/*}*/
.company-image {
    /*padding-right: 250px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

input, textarea {
    margin-bottom: 20px;
}
input, textarea, button {
    border: 1px solid #8c8c8c;
    border-radius: 5px;
    box-shadow: none;
    padding: 10px;
}
textarea {
    width: 100%;
}
button {
    background: none;
    padding: 10px 50px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, color 0.2s;
}
button:hover {
    background: #9b9b50;
    color: #FFF;
    border: 1px solid rgba(0,0,0,0);
}