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

a{
    text-decoration: none;
    color: inherit;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto',sans-serif;
    font-size: 15px;
    line-height: 1.73em;
    font-weight: 300;
    color: #404040;
    font-variant-numeric: lining-nums;
}

footer{
    background-color: #021527;
}

.footer_padding{
    padding: 114px 0 107px;
}

.footer_card{
    width: calc(25% - 30px);
    display: flex;
    flex-direction: column;
}

.footer_p{
    margin: 10px 0;
    color: #ccc;
}

.mb-10{
    margin-bottom: 10px;
}

.socials a{
    margin: 7px 25px 0 0;
    transition: color .3s ease-out;
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    &:hover{
        color: #fff;
    }
}

.footer_card h5{
    margin-bottom: 18px;
    font-family: "Cormorant Upright",serif;
    font-size: 18px;
    line-height: 1.39em;
    letter-spacing: .075em;
    font-weight: 500;
    word-wrap: break-word;
    text-transform: uppercase;
    color: #fff;
}

.footer_card ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_card ul li{
    margin-bottom: 6px;
}

.footer_card a{
    color: #ccc;
    transition: color .3s ease-out;
    &:hover{
        color: #fff;
    }
}

.footer_p1{
    margin-bottom: 10px;
    color: #ccc;
}

.footer_input{
    border: 1px solid #36383b;
    border-radius: 0;
    box-sizing: border-box;
    outline: 0;
    cursor: pointer;
    transition: color .3s ease-out,background-color .3s ease-out,border-color .3s ease-out;
    font-family: inherit;
    font-size: 13px;
    line-height: 24px;
    font-weight: inherit;
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 20px;
    padding: 12px 66px 12px 18px;
    background-color: transparent;
    color: #fafafa;
    &:focus{
        border-color: #b2b5b7;
    }
}

.footer_input_container{
    margin: 20px 0;
    position: relative;
}

.footer_input_container button{
    position:absolute;
    top: 0;
    right: 0;
    width: 65px;
    height: 50px;
    background: 0 0;
    border: none;
    color: #fafafa;
}

.footer_bottom{
    padding: 12px;
    border-top: 1px solid #3e3e3e;
}

.footer_bottom p{
    font-size: 13px;
}


.overheader{
    background-color: #021527;
}

.overheader span{
    color: #fff;
    line-height: 1;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: .035px;
    margin: 10px;
}

.pr-26{
    padding-right: 26px;
}

.pl-26{
    padding-left: 26px;
}

header{
    height: 107px; 
    background-color: #fff;
    z-index: 10000000;
    position: relative;
    transition: transform 0.5s ease;
}

header.scroll{
    position: fixed;
    top: -107px;
    right: 0;
    left: 0;
    border: 1px solid #bfa888;
    height: 70px;
    transform: translateY(107px);
    transition: transform 0.5s ease;
}

.page-id-118 header.scroll{
    background-color: #fff !important;
    color: #000 !important;
}

.page-id-118 header.scroll .wp-nav-menu a{
    color: #000 !important;
}

.page-id-118 header.scroll .line{
    background: #333;
}

header.hide{
    position: fixed;
    top: -107px;
    right: 0;
    left: 0;
    border: 1px solid #bfa888;
    height: 70px;
    transform: translateY(-107px);
    transition: transform 0.5s ease;
}

.header_logo img{
    height: 107px;
}

header.scroll .header_logo img{
	height: 68px;
}

.header_logo{
    flex: 1;
}

.header_div{
    flex: 6;
}

.header_search input{
    font-size: 13px;
    line-height: 1.54em;
    font-family: 'Inconsolata',monospace;
    letter-spacing: .25em;
    font-weight: 500;
    color: #000;
    line-height: 1em;
    text-transform: uppercase;
    margin-left: 10px;
    padding: 5px 0;
    width: 60px;
    background-color: transparent;
    border-color: transparent;
    transition: width .62s cubic-bezier(.25,.46,.45,.94);
}

.header_search input:focus{
    width: 190px;
    outline: none;
    box-shadow: none;
}

.header_search{
    position: relative;
    display: flex;
    align-items: center;
}

.wp-nav-menu{
    margin: 0 44px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    padding: 0;
    list-style: none;
    gap: 72px;
    height: 100%;
}

.wp-nav-menu a{
    text-transform: uppercase;
    color: #000;
    font-size: 13px;
    line-height: 1.54em;
    font-family: 'Inconsolata',monospace;
    letter-spacing: .25em;
    font-weight: 500;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wp-nav-menu li{
    height: 100%;
}
.wp-nav-menu a::before{
    position: absolute;
    left: -19px;
    content: '';
    height: 1px;
    width: 10px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease-out;
}
.wp-nav-menu a:hover::before{
    transform: scaleX(1);
}

.wp-nav-menu .current-menu-item > a::before,
.wp-nav-menu .current_page_item > a::before {
    transform: scaleX(1);
}

body:not(.page-id-118).header-fixed {
    padding-top: 107px;
}

.page-id-118 .header_section{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000;
}

.page-id-118 .overheader{
    background-color: transparent;
    color: white;
    border-bottom: 1px solid white;
}

.page-id-118 header{
    background-color: transparent;
    color: #fff;
}

.page-id-118 .wp-nav-menu a{
    color: white;
}

.menu-toggle {
  position: relative;
  width: 40px;
  height: 9px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.line {
    height: 1px;
    background: #333;
    display: block;
    transition: width 0.3s ease;
    transform-origin: right;
}

.page-id-118 .line{
    background: #fff;
}

.line1 {
  width: 100%;
}

.line3{
    width: 60%;
}
.line2 {
  width: 20%;
}


header button:hover .line1 {
    animation: line1-disappear-appear 1s forwards;
}

@keyframes line1-disappear-appear {
    0% {
        width: 100%;
    }
    50% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

header button:hover .line2 {
    animation: line2-disappear-appear 1s forwards;
}

@keyframes line2-disappear-appear {
    0% {
        width: 20%;
    }
    50% {
        width: 0;
    }
    100% {
        width: 20%;
    }
}

header button:hover .line3 {
    animation: line3-disappear-appear 1s backwards;
}

@keyframes line3-disappear-appear {
    0% {
        width: 60%;
    }
    50% {
        width: 0;
    }
    100% {
        width: 60%;
    }
}



.close_side{
    position: absolute;
    right: 30px;
    margin: 0;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: black;
    font-size: 50px;
    top: 40px;
    padding: 0;
    background: none;
    border: none;
    font-weight: 300;
}


.side_menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 470px;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    text-align: left;
    transform: translateX(470px);
    padding: 120px 70px 35px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;
    border-left: 1px solid #bfa888;
    overflow: hidden;
    z-index: 99999999999;
    transition: all .6s cubic-bezier(.77,0,.175,1);
}

.side_menu ul{
    list-style: none;
    display: flex;
    flex-direction: column;
}

.side_menu.active {
    transform: translateX(0);
}

.side_menu .top_side{
    margin-bottom: 35px;
}

.side_menu ul li a{
    &:hover{
        color: #bfa888;
    }
}

.side_menu ul li{
    margin: 5px 0;
}

.header_p{
    margin: 10px 0;
}

.header_p a:hover{
    color: #bfa888;
}

.side_menu .socials a{
    margin: 7px 25px 0 0;
    transition: color .3s ease-out;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    &:hover{
        color: #bfa888;
    }
}

.side_menu_list{
    display: none;
}

.header_right{
    justify-content: space-between;
}

.header_left{
    display: flex;
}

@media (max-width: 1200px){
    .wp-nav-menu{
        margin: 0 20px;
    }

    .header_search input:focus{
        width: 50px;
    }
}

@media (max-width: 1024px){
    .side_menu_list{
        display: block;
    }

    .wp-nav-menu{
        display: none;
    }

    .header_right{
        justify-content: end;
    }

    .header_left{
        display: none;
    }

    .overheader{
        display: none;
    }
}
@media (max-width: 992px){
    .footer_card{
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px){
    .footer_card{
        width: 100%;
    }
}