body, html {
  scroll-behavior: smooth;
}
.header .navbar {
    background: #EDEDED;
    height: 57px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}
.header .fa-bars:before {
  color: #000000;  
  content: "\f0c9";
  font-size: 24px;
}
.header #close {
  cursor: pointer;
  margin: 0 1rem;  
  text-align: right;
}
.header .fa-times:before {
  -webkit-text-stroke: 2px #DEDEDE;
  color: #000000;
  content: "\f00d";
  font-size: 24px;
}
.header .main-menu {
  background: #DEDEDE;
  height: 100vh;  
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all .7s;
  width: 25%;  
}
.header .main-menu:not(.open) {
  -moz-transform: translate3d(-200%, 0, 0);
  -webkit-transform: translate3d(-200%, 0, 0);  
  transform: translate3d(-200%, 0, 0);
}
.header .main-menu.open {
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  opacity: 1; 
  transform: translate3d(0, 0, 0);
  z-index: 9;
}
.header .main-menu-container #hamburger {
  cursor:pointer;
}
.header .main-menu ul .nav-item:not(.last-item) {
  border-bottom: 2px solid #D2D2D2;    
}
.header .main-menu ul li {
  cursor: pointer;
  list-style: none;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-bottom: 1em;
  padding-top: 1em;    
  position: relative;   
}
.header .main-menu ul li.nav-item a {
  color: #BEBEBE;
  font-family: 'Termina Demi', sans-serif;
  font-size: 12px;
  line-height: 36px;
}
.header .main-menu ul li.nav-item.active a,
.header .main-menu ul li.nav-item:hover a {
  color: #838383;
}
.header .main-menu ul li:hover, 
.header .main-menu ul li.active,
.header .main-menu ul li.active a,
.header .main-menu ul li:hover a {
  background: transparent;
} 
.header .main-menu ul li.nav-item:hover:before,
.header .main-menu ul li.nav-item.active:before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 14px;
  left: -21px;
  position: absolute;
  top: 33px;
  width: 14px;
  z-index: 9;
}
.header .main-menu ul li.language-container {
  align-items: center;
  bottom: 40px;
  display: flex;
  justify-content: space-between;
  max-width: 155px;
  position: absolute;
  width: 100%;
}
.header .main-menu ul li.language-container a {
  color: #B0AFAF;
  font-family: 'Barlow Light', sans-serif;
  font-size: 70%;
  line-height: 32px;
  position: relative;
}
.header .main-menu ul li.language-container a:hover,
.header .main-menu ul li.language-container a.active {
  font-family: 'Barlow Medium', sans-serif;
  text-decoration: none;
  transition: .5s ease-in-out;
}
.language-container a:not(:last-child):after {
  background: #DA9663;
  content: "";
  display: block;
  height: 26px;  
  position: absolute;  
  right: -23px;  
  top: 6px;
  width: 1px;  
}
footer .footer-container {
  align-items: center;
  background-color: #202020;
  display: flex;
  height: 80px;  
}
i.fa {
  font-family: 'FontAwesome', sans-serif;
  font-style: initial;
}
footer .social-media-container {
  margin-left: auto;
  margin-right: 0;
  max-width: 80px;
}
@media only screen and (max-width: 768px) {
  footer .col-lg-6 {
    max-width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .header .main-menu {
    width: 75vw;
  }
}
@media only screen and (min-width: 768px) {
  main .main-container .logo-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  main .main-container .logo-container img {
    max-height: 156px;
  }
}