* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    background-color: #201106;
    font-family: "Open Sans", sans-serif;
}

.container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.container-fluid {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.header {
    background-color: #835c35;
}

.header__navigation {
    position: relative;
}

.burger__wrapper {
    position: absolute;
    display: none;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.burger {
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    margin-left: auto;
}

.burger::before {
    transition: 0.3s;
    content: "";
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: -7px;
    left: 0;
}

.burger::after {
    transition: 0.3s;
    content: "";
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 7px;
    left: 0;
}

.burger.active {
    height: 0;
}

.burger.active::before {
    transform: rotate(-45deg);
    top: 0;
}

.burger.active::after {
    transform: rotate(45deg);
    top: 0;
}

.header__navigation .menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.header__navigation .menu a,
.header__navigation .menu span {
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
}

.header__navigation .menu li {
    padding: 10px 0;
}

.header__navigation .menu > li + li {
    margin-left: 15px;
}

.header__navigation .menu > li.sub-menu {
    position: relative;
}

.header__navigation .menu ul.sub-menu {
    position: absolute;
    top: 40px;
    left: 0;
    display: none;
    flex-direction: column;
    background-color: #835c35;
    padding: 10px 20px;
    z-index: 20;
    list-style: none;
}

.header__navigation .menu ul.sub-menu li a {
    color: #fff;
    padding-bottom: 10px;
    white-space: nowrap;
}

.facebook {
    display: block;
    background: url(/images/facebook.png) no-repeat;
    height: 30px;
    width: 101px;
    list-style: none;
    text-indent: -9999px;
}

.main {
    padding: 10px 0;
    color: #381D09;
    font-family: "Times New Roman", Helvetica, Tahoma, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
}

.main__content {
    margin: 0 auto;
    padding: 15px;
    width: 100%;
    background: url(/images/linen-bg.jpeg) repeat;
    border: 10px solid #fff;
}

.content__wrapper {
    width: 100%;
    box-shadow: 0 0 5px #888;
    padding: 20px;
    background: #fff;
}

.footer__image {
    width: 100%;
}

.footer__copyright {
    text-align: center;
    width: 100%;
    color: #fff;
}

.footer__links {
    margin: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.35;
    opacity: 0.9;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
}

.footer__links a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .burger__wrapper {
        display: block;
        z-index: 9999;
    }

    .header__navigation nav {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        width: 300px;
        background-color: rgb(166, 174, 193);
        transform: translateX(300px);
        transition: 0.3s;
    }

    .header__navigation.active nav {
        transform: translateX(0);
    }

    .header__navigation nav .menu {
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        overflow-y: auto;
    }

    .header__navigation .menu ul.sub-menu {
        position: relative;
        margin-top: 10px;
        top: 0;
        left: 0;
        flex-direction: column;
        align-items: center;
        background-color: rgb(166, 174, 193);
        padding: 10px 20px;
        z-index: 20;
    }

    .header__navigation .menu a,
    .header__navigation .menu span {
        color: #fff;
    }

    .header__navigation .menu li.sub-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    div.one-half iframe {
        max-width: 100%;
    }

    textarea {
        max-width: 100%;
    }
}