@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    background-color: white;
}

.t-primary-bgcolor {
    background-color: #64473c;
}

a {
    color: #8db8b5;
}

.container {
    width: 1140px;
}

.header-wrapper {
    border-bottom: 12px solid #a62529;
}

.header {
    width: 100%;
    font-family: "Open Sans", sans-serif;
}

.header__main {
    background-image: linear-gradient(#fff 0, #efeae5 100%);
}

.header__main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.header__logo img {
    max-height: 70px;
}

.header__nav a {
    color: #6f5144;
    font-size: 15px;
    padding: 0 25px;
}

.header__nav a:last-child {
    padding-right: 0;
}

.header__nav a:hover {
    text-decoration: none;
    color: rgba(111, 81, 68, .7);
}

.primary__nav {
    background-color: #64473c;
}

.primary__nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    overflow: hidden;
}

.primary__nav .container a {
    font-size: 17.5px;
    font-weight: 400;
    color: #e7c7af;
    padding: 10px 31px;
}

.primary__nav .container a:hover {
    background-color: #a62529;
    text-decoration: none;
    color: #f8f3e8;
}