.DivMainContain {
    width: 100%;    
    background-color: #292424;
}

.Divhed {
    top: 0px;
    left: 0px;
    height: 172px;       
    width: 100%;
    background-color: white;    
    text-align: center;
}

.DivbodHed {
    width: 100%;
    height: 50px;
    position: relative;
    text-align: center;
    background-color: #292424;
}

ul {
    text-align: left;
    left: 1px;
}

li {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: white;
}

p1 {
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: white;
}

h1 {
    text-align: center;
    font-family: 'Old Standard TT';
    font-style: italic;
    font-weight: 400;
    font-size: 48px;
    color: #b99b04;
}

h2 {
    text-align: center;
    font-family: 'Old Standard TT';
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    color: #b99b04;
}

h3 {
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: white;
}

h4 {
    
    width: 100%;
    text-align: center;
    position: relative;
    font-family: 'Old Standard TT';
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    color: black;
}

.imglogo {
   position: absolute;
   top: 10px;
   right: 10px;
   width: 10%;
}

.overlay {
position: fixed;
width: 100%;
height:100%;
background:#fff;
opacity: 0;
display:none;
}

.overlay.open {
display:block
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}

.menu__btn {
  position: absolute;
  top: 50px;
  left: 25px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s;
}

.menu__btn > span::before {
  content: '';
  top: -8px;
}

.menu__btn > span::after {
  content: '';
  top: 8px;
}

.menu__box {
z-index:1;
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  padding: 80px 0;
  list-style: none;
  background-color: #ffffff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .25s;
}

.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: "Oswald";
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}

.menu__item:hover {
  background-color: #292424;
  color: #ffffff;
}

/*---2-col collapse---*/

* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    text-align: center;
    left: 0;
    padding: 30px;
    margin-top: 0;
    width: 49%;
    background-color: #292424;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
    width: 100%;
  }
}



