@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: #fff;
}

.t-primary-bgcolor {
    background-color: #33333f;
}

a {
    color: #e8b5a2;
}

.container {
    width: 1200px;
}

.header-wrapper {
    background-color: #33333f;
}

.header-wrapper::after {
    height: 100px;
    display: block;
    content: "";
    background-image: linear-gradient(to bottom, rgba(51, 51, 51, 0.39), rgba(51, 51, 51, 0.39)), url('banner.jpg');
    background-size: cover;
    background-position: center;
}

.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: "Roboto", sans-serif;
}

.header__top {
    background-color: #b1d7d2;
}

.header__top .header__top__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 46px;
    padding: 0 10px;
    font-size: 0;
}

.header__top .header__top__inner a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    color: #59726f;
    margin-left: 22px;
    transition: 0.4s all;
}

.header__top .header__top__inner a:hover {
    text-decoration: none;
    color: #162524;
}

.header__top__inner,
.header__main {
    width: 1800px;
    margin: auto;
    max-width: 100%;
}

.header__main {
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav {
    font-size: 0;
}

.header__nav ul {
    display: flex;
}

.header__nav li {
    position: relative;
}

.header__nav li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-left: 2px solid #fff;
    height: 16px;
    width: 0;
}

.header__nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 20px;
    transition: 0.4s all;
}

.header__nav a:hover {
    text-decoration: none;
    opacity: 0.8;
}

#header>div.header__main>nav>ul>li:nth-child(5)>a {
    padding-right: 0;
}


@media screen and (max-width: 1232px) {
    .header__logo img {
        max-width: 300px;
    }
}

@media screen and (max-width: 1030px) {
    .header__nav a {
        font-size: 14px;
    }
}