html header {
    transition: 0.2s;
    padding-top: 29px;
    border-top: 4px solid #b20000;
    position: fixed;
    width: 100%;
    background-color: white;
    top: 0;
    z-index: 9999;
}
html header .hamburger-menu {
    display: none;
    position: absolute;
    height: 26px;
    top: 40px;
    left: 20px;
    width: 25px;
    transition: 0.2s;
    z-index: 99;
}
html header .hamburger-menu span {
    position: relative;
    width: 25px;
    height: 1px;
    background-color: black;
    display: inline-block;
}
html header .hamburger-menu span::before {
    content: "";
    position: absolute;
    height: 1px;
    top: 7px;
    background-color: black;
    width: 25px;
    transition: 0.2s;
}
html header .hamburger-menu span::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: black;
    width: 25px;
    bottom: 7px;
    transition: 0.2s;
}
html header .header-logo {
    text-align: center;
    position: relative;
}
html header .header-logo .home-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    transition: 0.2s;
}
html header .header-logo .lang-area {
    position: absolute;
    top: 40%;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
}
html header .header-logo .lang-area .language {
    font-family: 'Montserrat';
    color: #666;
    font-size: 15px;
}
html header .header-logo .lang-area .language img {
    margin-left: 14px;
    transition: 0.2s;
}
html header .header-logo .lang-area .language.active img {
    transform: rotate(180deg);
}
html header .header-logo .lang-area .lang-fr {
    display: none;
    font-family: 'Montserrat';
    color: #666;
    font-size: 15px;
}
html header nav {
    position: relative;
}
html header nav .menu {
    display: flex;
    justify-content: center;
    font-size: 15px;
    margin-top: 35px;
}
html header nav .menu li a {
    display: inline-block;
    font-family: 'Montserrat';
    margin: 0 25px;
    letter-spacing: 1.1px;
    color: #333;
    padding-bottom: 29px;
}
html header nav .menu li.menu-home {
    display: none;
}
html header nav .social-area {
    position: absolute;
    top: 0;
    right: 45px;
}
html header nav .social-area a {
    margin: 0 5.5px;
}
html header nav .social-area a img {
    width: 17px;
}
html.opened header .hamburger-menu span {
    background-color: white;
}
html.opened header .hamburger-menu span::before {
    transform: rotate(45deg);
    top: 0;
}
html.opened header .hamburger-menu span::after {
    transform: rotate(-45deg);
    bottom: 0;
}
html.sticky-menu header {
    box-shadow: 0px 0px 9px 1px #3c3c3c;
    padding-top: 10px;
}
html.sticky-menu header .hamburger-menu {
    top: 22px;
}
html.sticky-menu header .header-logo .home-logo {
    font-size: 35px;
}
html.sticky-menu header nav .menu li a {
    padding-bottom: 20px;
    font-size: 14px;
}
.homepage header nav .menu .menu-home a {
    font-family: 'Montserrat';
    color: #b20000;
    position: relative;
}
.homepage header nav .menu .menu-home a::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #b20000;
    height: 5px;
    bottom: 0;
    left: 0;
}
.artwork-page header nav .menu .menu-artworks a {
    font-family: 'Montserrat';
    color: #b20000;
    position: relative;
}
.artwork-page header nav .menu .menu-artworks a::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #b20000;
    height: 5px;
    bottom: 0;
    left: 0;
}
.artwork-detail-page header nav .menu .menu-artworks a {
    font-family: 'Montserrat';
    color: #b20000;
    position: relative;
}
.artwork-detail-page header nav .menu .menu-artworks a::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #b20000;
    height: 5px;
    bottom: 0;
    left: 0;
}
.about-page header nav .menu .menu-about a {
    font-family: 'Montserrat';
    color: #b20000;
    position: relative;
}
.about-page header nav .menu .menu-about a::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #b20000;
    height: 5px;
    bottom: 0;
    left: 0;
}
.blog-page header nav .menu .menu-news a {
    font-family: 'Montserrat';
    color: #b20000;
    position: relative;
}
.blog-page header nav .menu .menu-news a::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #b20000;
    height: 5px;
    bottom: 0;
    left: 0;
}
.blog-detail-page header nav .menu .menu-news a {
    font-family: 'Montserrat';
    color: #b20000;
    position: relative;
}
.blog-detail-page header nav .menu .menu-news a::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #b20000;
    height: 5px;
    bottom: 0;
    left: 0;
}
.press-page header nav .menu .menu-press a {
    font-family: 'Montserrat';
    color: #b20000;
    position: relative;
}
.press-page header nav .menu .menu-press a::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #b20000;
    height: 5px;
    bottom: 0;
    left: 0;
}
.contact-page header nav .menu .menu-contact a {
    font-family: 'Montserrat';
    color: #b20000;
    position: relative;
}
.contact-page header nav .menu .menu-contact a::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #b20000;
    height: 5px;
    bottom: 0;
    left: 0;
}
@media screen and (max-width: 1450px) {
    html header nav .menu li a {
        margin: 0 11px;
        font-size: 14px;
   }
    html header nav .social-area {
        right: 38px;
   }
    html header nav .social-area a {
        margin: 0 4.5px;
   }
}
@media screen and (max-width: 1200px) {
    html header .header-logo .home-logo {
        font-size: 36px;
   }
    html header .header-logo .language {
        top: 35%;
   }
    html header nav .menu li a {
        margin: 0 8px;
        font-size: 13px;
   }
    html header nav .social-area {
        right: 15px;
   }
}
@media screen and (max-width: 1100px) {
    html header nav .menu li a {
        margin: 0 6px;
        font-size: 12px;
   }
    html header nav .social-area a {
        margin: 0 3.5px;
   }
}
@media screen and (max-width: 991px) {
    html header .hamburger-menu {
        display: inline-block;
   }
    html header nav .menu {
        display: none;
        flex-direction: column;
   }
    html header nav .menu li a {
        padding-bottom: 5px !important;
        margin-bottom: 20px;
   }
    html header nav .social-area {
        top: -35px;
   }
    html header .header-logo {
        margin-bottom: 29px;
   }
    html header .header-logo .lang-area {
        right: 20px;
        top: 0;
   }
    html .main {
        margin-top: 116px !important;
   }
}
@media screen and (max-width: 767px) {
    html header .hamburger-menu {
        top: 56px;
        left: 15px;
   }
    html header .header-logo .home-logo {
        font-size: 22px;
   }
    html header .header-logo .lang-area {
        top: 29px;
   }
    html header .social-area {
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
   }
    html .main {
        margin-top: 95px !important;
   }
    html.sticky-menu header .hamburger-menu {
        top: 36px;
   }
    html.sticky-menu header .header-logo .home-logo {
        font-size: 22px;
   }
}
