:root {
    --red-color: #e04649;
    --dark-brown-color: #A17143;
    --medium-brown-color: #FED083;
    --light-brown-color: #f6e2b9;
    --extra-light-brown-color: #F7F5EF;
    --light-gray-color: #3d3d3d;
    --white-color: #FFF;
    --light-paragraph-color: #828282;
    --paragraph-color: #3d3d3d;
    --black-color: #000;
    --secondary-font-family: 'Readex Pro', sans-serif;
    --box-shadow: 0px 13px 24px 0px rgba(0,0, 0, 0.2);
}

/*
 * BODY
 */

html {
    height: 100%;
}

body {
    font-size: 16px;
    font-family: var(--secondary-font-family);
    color: var(--paragraph-color);
    background: var(--extra-light-brown-color);
}

.full-page-centered {
    display: flex;
    align-items: center;
    height: 100%;
}

.full-page-centered:before {
    content: '';
    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.logo {
    max-width: 240px;
    width: 100%;
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .logo {
        max-width: 180px;
    }
}

.title {
    color: var(--white-color);
    font-weight: bold;
}

.subtitle {
    background: var(--light-brown-color);
    border: 2px solid var(--dark-brown-color);
    text-transform: uppercase;
    color: var(--dark-brown-color);
    padding: 6px 16px 6px 16px;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

.description {
    color: var(--white-color);
    font-weight: 100;
    font-size: 16px;
    line-height: 16px;
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    height: 100vh;
    align-items: center;
    padding: 0 40px 0 40px;
    text-align: center;
}

a {
    color: var(--dark-brown-color);
    text-transform: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover, a:focus {
    text-decoration: none;
    box-shadow: none;
    color: var(--paragraph-color);
}

.contacts-container {

}

.contacts {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.contacts li {
    display: inline-block;
    font-weight: bold;
    background: var(--light-brown-color);
    border: 2px solid var(--dark-brown-color);
    color: var(--dark-brown-color);
    padding: 6px 16px 6px 16px;
    border-radius: 25px;
}

.contacts li svg {
    color: var(--dark-brown-color);
}

/**
 * RESET
 */
[disabled] {
    opacity: 0.75;
    cursor: not-allowed;
}

a[disabled] {
    pointer-events: none;
    display: inline-block;
}

textarea:focus,
a:focus,
a:hover,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
button:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
.js-cookie-consent button:focus,
[contenteditable].form-control:focus {
    outline: none !important;
    box-shadow: none;
    -webkit-box-shadow: none;
}