.sticky
 {
  position: fixed;
  top: 0;
  width: 100%;
  background-color:#165153;
  z-index: 1;
  height: 75px;
}

.sticky + .content {
  padding-top: 102px;
}

.sticky .menu
{
top:-24px !important;
}

.sticky-logo
{
display:none;
}

.sticky .sticky-logo
{
display:block;
width:auto;
margin-top:0px;
}

.sticky .main-logo
{
display:none;
}

/* Header */
header
 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 3.5rem;
  width: 100%;
  z-index: 1;
}

header .container {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  padding: 0 1.5rem;
  margin: 0 auto;
  border-bottom: 1px solid #e0e5eb;
}

input.hamburger-button {
  display: none;
}

input.hamburger-button ~ label {
  position: relative;
  padding: 0.25rem;
  width: 1.5rem;
  height: 1.25rem;
}

input.hamburger-button ~ label > div,
input.hamburger-button ~ label > div::before,
input.hamburger-button ~ label > div::after {
  content: "";
  position: absolute;
  top: 0.825rem;
  height: 0.125rem;
  width: 1.5rem;
  opacity: 1;
  background: #121212;
  -webkit-transition: 0.14s ease-in-out;
  transition: 0.14s ease-in-out;
}

input.hamburger-button ~ label > div::before {
  top: -0.5rem;
}

input.hamburger-button ~ label > div::after {
  top: 0.5rem;
}

header .container .hamburger-button:checked ~ label > div {
  width: 0;
  background: rgba(18, 18, 18, 0);
}

header .container .hamburger-button:checked ~ label > div::before {
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  top: -0rem;
}

header .container .hamburger-button:checked ~ label > div::after {
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  top: -0rem;
}

header .container .hamburger-button:checked ~ .menu {
  left: 0;
}

header .container .menu {
  position: absolute;
  z-index: -1;
  top: 3rem;
  left: calc(-100vw - 3rem);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (max-content)[2];
      grid-template-rows: repeat(2, -webkit-max-content);
      grid-template-rows: repeat(2, max-content);
  width: 100%;
  background: #FAFAFA;
  -webkit-transition: 0.22s ease-in-out;
  transition: 0.22s ease-in-out;
}

header .container .menu::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100vh;
  width: 100vw;
  background: #FAFAFA;
}

header .container .menu nav {
  grid-area: auto;
}

header .container .menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header .container .menu nav ul > li > a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  color: #121212;
  -webkit-transition: 0.14s ease-in-out;
  transition: 0.14s ease-in-out;
}

header .container .menu nav ul > li > a:hover 
{
  color:#fff;
  text-decoration:none;
 background-color:#4d0b18;
}

header .container .menu nav ul .active a
{
	color:#fff;
	background-color:#4d0b18;
}

/* Media queries */
@media only screen and (min-width: 680px) {
  header {
    height: 6.5rem;
    border-bottom: 1px solid #e0e5eb;
  }
  header .container {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border: none;
  }
  input.hamburger-button ~ label {
    display: none;
  }
  header .container .menu {
    z-index: unset;
    top: -75px;
    left: 12px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto max-content;
        grid-template-columns: auto -webkit-max-content;
        grid-template-columns: auto max-content;
    -ms-grid-rows: 0rem 3rem;
        grid-template-rows: 0rem 3rem;
    background: none;
    -webkit-transition: none;
    transition: none;
  }
  header .container .menu::after {
    display: none;
  }
  header .container .menu div.buttons {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
  }
  header .container .menu nav {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }
  header .container .menu nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .container .menu nav ul > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header .container .menu nav ul > li > a {
    display: inline-block;
    width: 100%;
    text-align: center;
	color:#fff;
	font-size:1em;
	font-family: 'Poppins', sans-serif;
	font-weight:500;
  }
}

@media only screen and (min-width: 1040px) 
{
  header
  {
    height: 3.5rem;
  }
  header .container .menu {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-grid-columns: 4rem auto max-content;
        grid-template-columns: 4rem auto -webkit-max-content;
        grid-template-columns: 4rem auto max-content;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    padding: 2.2rem 1rem;
    -webkit-transition: none;
    transition: none;
  }
  header .container .menu nav {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  header .container .menu div.buttons {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
  }
  header .container .menu div.buttons > * {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  header .container .menu nav ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 100%;
    width: 100%;
  }
  header .container .menu nav ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
			margin-right: 5px;
  }
  header .container .menu nav ul > li > a 
  {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 1rem 0.5rem;
	font-size:0.9em;
  }
  
  .lang-menu .lang-content a 
  {
    font-size: 0.9em !important;
}

.lang-menu .dropbtn 
{
    font-size: 0.9em !important;
}

header .container .menu 
{
    left: -24px;
}

}






/* Menu overlay */


.menu-overlay
{
    margin-top: 40px;
    margin-right: 50px;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  /*background: linear-gradient(90deg,#0e294e 0,#0e294e 50%,#091c37 0,#091c37);*/
  background: linear-gradient(90deg,#165153 0,#165153 50%,#4d0b18 0,#4d0b18);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 10%;
  left:5%;
  padding-right:5%;
  width: 100%;
  margin-top: 30px;
}

.overlay a 
{
  text-decoration: none;
  font-size: 1.6em !important;
  font-weight:400;
  color: #fff;
  display: block;
  transition: 0.3s;
  font-family: 'Cormorant Garamond', serif;
  padding:11px 0px;
  text-transform:uppercase;
}

.overlay p a
{
	display:inline-block;
	margin-right:15px;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  top: 20px;
  right: 45px;
  font-size: 4em !important;
  position:absolute;
}

.overlay .closebtn
{
  border-bottom:none;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 4em !important;
  top: 15px;
  right: 35px;
  }
}

.overlay-content img
{
	margin-top:-60px;
}

.overlay-content-left-menu
{
   margin-top:120px;
}

.overlay-content-righ
{
	margin-top:4%;
	padding:5%;
}

.overlay-content-righ h4
{
   font-family: 'Cormorant Garamond', serif;
	font-size:1.6rem;
	line-height:1.8rem;
	color:#f5dddd;
	letter-spacing:0.4px;
	font-weight:500;
	text-align:left;
	margin-top:30px;
	text-transform:uppercase;
}


.overlay-content-righ p
{
   font-family: 'Montserrat', sans-serif;
	font-size:1.2rem;
	line-height:1.6rem;
	color:#fff;
	letter-spacing:0.4px;
	font-weight:400;
	margin-top:20px;
	text-align:left;
}

/* Dropdown Menu */
/*
.dropdown 
{
  list-style: none;
  height: 70px;
  position:relative;
}

.dropdown a 
{
  display: block;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  padding:10px 20px;
}

.dropdown ul 
{
  position: absolute !important;
  margin: 0 !important;
  padding: 0;
  list-style: none;
  background-color: #fff;
  width: 395px !important;
  left: 0;
  max-height: 0;
  -webkit-transition: max-height .5s;
  -o-transition: max-height .5s;
  transition: max-height .5s;
  overflow: hidden;
  display:block !important;
  height:700px !important;
  z-index:1 !important;
}

.dropdown ul li 
{
	background-color: #fff;
	height:auto;
	padding:0px 10px !important;
	border-bottom: 1px solid #b1cacb;
}

.dropdown ul li a 
{
  color: #1e1e1e !important;
  font-size:1em !important;
  line-height:1em;
  padding: 0.6rem 0.7rem !important;
}

.dropdown ul li a:hover
 {
  color: #165153 !important;
}

.dropdown:hover>ul
 {
  max-height: 400px;
}

.dropdown ul li:hover 
{
	background-color: #fff !important;
}

.dropdown ul li a:hover 
{
	background-color: #fff !important;
}

.dropdown:hover>a 
{
  color: #222222;
}

*/


.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none !important;
  position: absolute;
  background-color: #fff !important;
  min-width: 395px !important;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  width:395px !important;
  align-items: inherit !important;
  height: auto !important;
  overflow:hidden;
}

.dropdown-content a
 {
  color: #1e1e1e !important;
  font-size:1em !important;
  line-height:1em;
  padding: 0.7rem 1.2rem !important;
  background-color: #fff !important;
}

.dropdown-content li{ border-bottom:1px solid #eee;}

.dropdown-content a:hover {color: #165153 !important; background-color: transparent !important;}

.dropdown:hover .dropdown-content {display: block !important; background-color: #fff !important;}

.dropdown:hover .dropbtn {background-color: transparent !important;}