:root {
    --artemis-red: #a32330;
    --artemis-orange: #ee5731;
    --artemis-orange-dark: #d45a30;
    --artemis-brown: #d35a30;
    --artemis-red-dark: #A01A2E;
    --artemis-brown-light: #B8860B;
    --artemis-white: #FFFFFF;
    --artemis-black: #000000;
    --artemis-gray: #333333;
    --artemis-gray-light: #F5F5F5;
    --artemis-font-primary: 'Arial', 'Helvetica', sans-serif;
    --artemis-font-secondary: 'Georgia', serif;
    --artemis-container-width: 990px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-weight: 400;
    color: var(--artemis-gray);
    line-height: 1.6;
    font-family: var(--artemis-font-primary);
    background-color: var(--artemis-white);
}

body.menu-open {
    overflow: hidden;
}

.artemis-main-wrapper {
    width: 100%;
    max-width: var(--artemis-container-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */

.artemis-header {
    padding: 0 0 21px;
}

.artemis-header .artemis-header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.artemis-header .artemis-logo {
    width: 298px;
    height: 143px;
    display: flex;
}

.artemis-header .artemis-logo a,
.artemis-header .artemis-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

.artemis-header ul.artemis-top-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    list-style: none;
    padding: 2px 15px 6px;
    background-color: var(--artemis-brown);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin: 0;
}

.artemis-header ul.artemis-top-menu a {
    font-size: 13px;
    font-weight: bold;
    color: var(--artemis-white);
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px dotted var(--artemis-white);
}

.artemis-header ul.artemis-top-menu a:hover {
    color: var(--artemis-black);
}

.artemis-header .artemis-mobile-menu-toggle {
    display: none;
}

.artemis-header-main .artemis-primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0 auto;
    padding: 0;
    max-width: 860px;
}

.artemis-header-main .artemis-primary-menu li {
    position: relative;
    display: flex;
    height: 30px;
    background-color: transparent;
    color: var(--artemis-red);
}

.artemis-header-main .artemis-primary-menu li a {
    padding: 9px 19px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1em;
    position: relative;
    cursor: pointer;
    margin-top: -1px;
    color: inherit;
}

.artemis-header-main .artemis-primary-menu li:before {
    content: '';
    background-image: url(/wp-content/themes/astra-child/assets/images/main-menu-left.jpg);
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    opacity: 0;
}

.artemis-header-main .artemis-primary-menu li:after {
    content: '';
    background-image: url(/wp-content/themes/astra-child/assets/images/main-menu-right.jpg);
    background-repeat: no-repeat;
    background-position: top right;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    opacity: 0;
}

.artemis-header-main .artemis-primary-menu li.current_page_item {
    background-color: var(--artemis-orange);
    color: var(--artemis-white);
}

.artemis-header-main .artemis-primary-menu li.current_page_item::after,
.artemis-header-main .artemis-primary-menu li.current_page_item::before {
    opacity: 1;
}

.artemis-footer {
    margin: 46px 0 0 0;
    padding: 50px;
    background: center right / cover no-repeat url(/wp-content/themes/astra-child/assets/images/footer-bg.jpg);
    border-radius: 8px;
    color: var(--artemis-white);
}

.artemis-footer .artemis-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.artemis-footer .artemis-container .artemis-footer-left {
    width: 50%;
}

.artemis-footer .artemis-footer-title {
    color: var(--artemis-white);
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.artemis-footer .artemis-footer-address,
.artemis-footer a,
.artemis-footer p{
    color: var(--artemis-white);
    line-height: 18px;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.artemis-footer a {
    text-decoration: none;
    border-bottom: 1px dotted var(--artemis-white);
    color: var(--artemis-white);
}

.artemis-footer  .artemis-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    display: block;
    border-bottom: none;
    text-transform: uppercase;
    color: var(--artemis-white);
    background-color: var(--artemis-orange-dark);
    line-height: 16px;
    margin-top: 18px;
    width: fit-content;
}

.artemis-footer .artemis-container .artemis-footer-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
}

.artemis-footer .artemis-footer-nav .artemis-footer-menu{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.artemis-footer .artemis-footer-nav .artemis-footer-menu a{
    font-weight: 700;
    padding-bottom: 2px;
    margin-bottom: 1px;
}

.artemis-footer-credit {
    margin: 65px -30px 0 0;
}

.artemis-footer-credit p{
    font-size: 13px;
}