header{
  position: fixed;
  top: 0;
  left: 0;
  width: 7.34vw;
  height: 100vh;
  padding: 1.822vw 0 2.083vw;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  justify-content: space-between;
  /*background: rgba(255, 255, 255, 0.4);*/
  background: transparent;
  box-shadow: 2px 0px 0px var(--border-color);
  z-index: 99;
  -webkit-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
}
.header-white{
  background: var(--black) !important;
  box-shadow: 2px 0px 0px var(--white);
}
header.showmenu{
/*background: rgba(255, 255, 255, 0.6);*/
  width: 15.729vw;
  backdrop-filter: blur(15px);
  background: transparent;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.logo a{
  display: block;
}
.logo img{
  width: 7.34vw;
  height: auto;
}
.header-white img{
  filter: brightness(0) invert(1);
}
.nav-col{
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header.showmenu .nav-col{
  justify-content: flex-end;
}
#showMenu{
  font-size: var(--fw-18);
  color: var(--black);
  vertical-align: text-bottom;
  writing-mode: sideways-lr;
  position: absolute;
}
.header-white #showMenu{
  color: var(--white);
}
header.showmenu #showMenu{
  display: none;
}
.nav{
  width: 100%;
  padding: 0 2.083vw;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
header.showmenu .nav{
  display: block;
  opacity: 1;
  visibility: visible;
}
.nav-head{
  display: none;
  align-items: center;
  height: 6rem;
  padding: 0 2rem;
  background: var(--black);
  color: var(--dark-gray);
}
.nav-head span{
  display: block;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 2.6rem;
}
#closeNav{
  margin-left: auto;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav li{
  padding: 0;
  line-height: var(--fw-16);
  margin: 0 0 2.083vw;
}
.nav li:last-child{
  margin-bottom: 0;
}
.nav li::after{
  content: none;
}
.nav a{
  display: block;
  font-size: var(--fw-16);
  text-transform: uppercase;
}
.header-white .nav a{
  color: var(--white);
}
.nav li.active a,
.nav li a:hover{
  text-decoration: underline !important;
}
header.showmenu .social{
  display: none;
}
.social li{
  margin-bottom: 1.041vw;
  width: 100%;
}
.social a{
  width: 2.272vw;
  height: 2.272vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 0.1302vw solid var(--border-color);
}
body:has(.header-white) .social a{
  border-color: var(--white);
}
.social a:hover{
  background: var(--black);
}
body:has(.header-white) .social a:hover{
  background: var(--white);
}
.social img{
  width: auto;
  max-width: 100%;
  height: 1.197vw;
}
body:has(.header-white) .social img{
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.social a:hover img{
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
body:has(.header-white) .social a:hover img{
  -webkit-filter: none;
  filter: none;
}
@media(min-width:1360px) and (max-width:1459.98px){
  .social a {
    width: 2.6vw;
    height: 2.6vw;
  }
  .social img {
    height: 1.3vw;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  .social a {
    width: 3vw;
    height: 3vw;
  }
  .social img {
    height: 1.5vw;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  header {
    width: 9.34vw;
    padding: 2.5vw 0 3.5vw;
  }
  header.showmenu {
    width: 17.729vw;
  }
  .logo img {
    width: 9.34vw;
  }
  .nav li {
    margin: 0 0 3vw;
  }
  .social li {
    margin-bottom: 1.5vw;
  }
  .social a {
    width: 3.6vw;
    height: 3.6vw;
  }
  .social img {
    height: 1.8vw;
  }
}
@media(max-width:991.98px){	
  body.showmenu{
    overflow: hidden;
  }
  header {
    position: fixed;
    width: 100% !important;
    height: 6.1rem;
    padding: 0;
    background: var(--dark-gray) !important;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    border-bottom: 2px solid var(--black);
  }
  .header-white {
    border-bottom-color: var(--dark-gray);
  }
  body:has(.sec-hero) header{
    background: rgba(62,79,89,0.5) !important;
    border-color: var(--dark-gray);
  }
  .logo img {
    width: 8rem;
  }
  body:has(.sec-hero) .logo img{
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .nav-col {
    flex-grow: initial;
    display: block;
  }
  #showMenu {
    font-size: 1.5rem;
    line-height: 2.6rem;
    vertical-align: initial;
    writing-mode: initial;
    position: relative;
    padding: 0.7rem 1.25rem;
    font-weight: 900;
    display: block !important;
  }
  body:has(.sec-hero) #showMenu{
    color: var(--dark-gray);
  }
  .nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 0;
    top: 0;
    right: -100%;
    opacity: 1;
    visibility: visible;
    background: var(--dark-gray);
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .showmenu .nav{
    right: 0;
  }
  .nav-head {
    display: flex;
  }
  .nav-list {
    height: calc(100vh - 6rem);
    height: calc(100dvh - 6rem);
    overflow: hidden;
    overflow-y: auto;
  }
  .nav li {
    line-height: initial;
    margin: 0;
    border-bottom: 1px solid var(--black);
  }
  .nav a {
    font-size: 1.6rem;
    padding: 2rem 2rem;
  }
  .header-white .nav a {
    color: var(--black);
  }
  header .social{
    display: none;
  }
}