@import url("https://fonts.googleapis.com/css?family=Amatic+SC:400,700|Overlock:400,400i,700,700i,900");

* {
  font-family: "Overlock";
  margin: 0;
  font-size: 15px;
}

body {
  overflow-x: hidden;
  color: white;
}
#body {
  background-image: url("../img/pattern.png");
  background-repeat: repeat;
  background-size: 20%;
  z-index: 100;
}

#menuimg {
  background-image: url("../img/pattern.png");
  background-repeat: repeat;
  background-size: 20%;
  position: absolute;
}

#navbar {
  width: 100vw;
  height: 8vh;
  position: fixed;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#navbar.scrolled {
  background-color: rgba(16, 16, 16, 0.95) !important;
  transition: 250ms linear;
}

#navlogo {
  background-image: url("../img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 75%;
  width: 10%;
  float: left;
  margin-left: 15%;
  margin-top: 0.8%;
  cursor: pointer;
}

nav {
  height: 50%;
  width: 30%;
  margin-left: 10%;
  margin-right: 5%;
  float: left;
  line-height: 160%;
  margin-top: 1.2%;
}

nav a {
  text-align: center;
  position: relative;
  text-decoration: none;
  color: rgba(220, 220, 220, 1);
  font-size: 140%;
  float: left;
  height: 100%;
  width: 23%;
  margin: 0.8%;
  bottom: 0;
}

nav a:hover {
  color: rgba(255, 255, 255, 1);
  transition: 300ms;
}

.active {
  border-bottom: 2px solid rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
}

#navmenudrinks {
  border-bottom: 2px solid rgba(255, 255, 255, 1);
}

#socialmedia {
  display: block;
  float: left;
  height: 100%;
  width: 5%;
  margin-right: 1%;
  line-height: 500%;
}

#fbnav,
#instanav {
  position: relative;
  width: 36%;
  height: 50%;
  float: left;
  opacity: 0.8;
  background-size: contain;
  background-repeat: no-repeat;
  top: 35%;
  background-size: 100%;
}

#fbnav {
  background-image: url("../img/fb.png");
  cursor: pointer;
  margin-right: 10px;
}

#instanav {
  background-image: url("../img/insta.png");
  cursor: pointer;
}

#fbnav:hover,
#instanav:hover {
  opacity: 1;
  transition: 300ms;
}

#languageoption {
  display: block;
  float: left;
  height: 100%;
  width: 11%;
}

#english,
#dansk,
#space {
  font-size: 100%;
  margin-top: 30%;
  position: relative;
  float: left;
  height: 35%;
  margin-top: 15%;
  padding-left: 2%;
  padding-right: 2%;
  padding-bottom: 4%;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

#space {
  color: white;
  opacity: 1;
}

#english > p:hover,
#dansk > p:hover {
  opacity: 1;
  transition: 300ms;
}

#english > p,
#dansk > p {
  margin: 2px;
  opacity: 0.8;
}

#mobilemenu {
  visibility: hidden;
}

.hero {
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
}

#herohome {
  background-image: url("../img/home hero.jpg");
}

#heroabout {
  background-image: url("../img/about hero.jpg");
}

#herocontact {
  background-image: url("../img/contact hero.jpg");
}

#herofood,
#herodrinks {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 50vw;
  height: 100vh;
  top: 0;
}

#herodrinksoverlay {
  background-color: rgba(14, 14, 14, 0.8);
  height: 100%;
  width: 100%;
}

#herofood {
  background-image: url("../img/menu food.jpg");
  text-align: center;
}

#herodrinks {
  background-image: url("../img/menu drinks.jpg");
  left: 50vw;
}

#heroimagehome {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  height: 100vh;
}

#heroimagefood {
  width: 50vw;
  position: absolute;
  top: 0;
}

#heroimagedrinks {
  width: 50vw;
  position: absolute;
  top: 0;
  left: 50vw;
}

#slogan {
  height: 40vh;
  width: 50vw;
  position: absolute;
  left: 25vw;
  top: 18vh;
}

#slogancafeen {
  height: 60%;
  background-image: url("../img/slogan.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#sloganheadline {
  height: 30%;
  font-family: "Amatic SC";
  text-align: center;
  font-size: 340%;
  font-weight: 700;
  cursor: default;
}

#sloganabout {
  position: absolute;
  font-family: "Amatic SC";
  text-align: center;
  font-size: 340%;
  font-weight: 700;
  width: 100%;
  top: 59%;
}

#arrow {
  position: absolute;
  bottom: 10%;
  font-size: 130%;
  width: 6%;
  left: 47.41%;
  height: 5%;
  cursor: pointer;
  background-image: url("../img/arrowwhite.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-animation: arrow 5s infinite;
  animation: arrow 5s infinite;
}

@-webkit-keyframes arrow {
  0% {
    bottom: 10%;
  }
  25% {
    bottom: 10%;
  }
  45% {
    bottom: 7%;
  }
  60% {
    bottom: 7%;
  }
  100% {
    bottom: 10%;
  }
}

@keyframes arrow {
  0% {
    bottom: 10%;
  }
  25% {
    bottom: 10%;
  }
  45% {
    bottom: 7%;
  }
  60% {
    bottom: 7%;
  }
  100% {
    bottom: 10%;
  }
}

#heroopeninghours {
  position: absolute;
  bottom: 1%;
  text-align: center;
  font-size: 130%;
  width: 100%;
  display: block;
  line-height: 60px;
  height: 7%;
}

#gallery {
  width: 100vw;
  height: 80vh;
  position: relative;
}

#galleryimages {
  position: relative;
  height: 80%;
  width: 70%;
  left: 15%;
  top: 10%;
}

#galleryimg1,
#galleryimg2,
#galleryimg3,
#galleryimg4,
#galleryimg5 {
  overflow: hidden;
}

#galleryimg1 {
  width: 24%;
  height: 43%;
  position: absolute;
}

#galleryimg2 {
  width: 24%;
  height: 55%;
  top: 45%;
  position: absolute;
}

#galleryimg3 {
  width: 26%;
  height: 68%;
  left: 25%;
  position: absolute;
}

#galleryimg4 {
  width: 26%;
  height: 30%;
  top: 70%;
  left: 25%;
  position: absolute;
}

#galleryimg5 {
  left: 52%;
  height: 100%;
  width: 48%;
  position: absolute;
}

.msgsection {
  width: 100vw;
  height: 25vh;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
}

.msgsection2 {
  margin-top: 2%;
  height: 40vh;
}

.msgsectionhome2 {
  height: 37vh;
}

.msgsectionfoodtop,
.msgsectiondrinktop {
  height: 29vh;
}

.msgsectionfoodbottom,
.msgsectiondrinkbottom {
  height: 34vh;
}

.msgsectiondrinkbottom {
  margin-top: 6%;
}

.about1 {
  height: 45vh;
}

.about2 {
  height: 45vh;
}

.about3 {
  height: 38vh;
}

.msgheadline {
  font-family: "Amatic SC";
  font-weight: 700;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 14%;
  height: 35%;
  font-size: 340%;
  text-align: center;
  background: url("../img/underline.png") bottom no-repeat;
  background-size: 70%;
}

.msgheadline2,
.msgheadline3 {
  top: 10%;
  height: 25%;
}

.msgheadlineabout1 {
  top: 10%;
  height: 23%;
}

.msgheadlineabout2 {
  background-size: 100%;
}

.msgheadlineabout2,
.msgheadlineabout3 {
  top: 8%;
  height: 21%;
}

.msgheadlineabout3 {
  top: 8%;
  height: 25%;
  background-size: 60%;
}

.msgcontent {
  position: absolute;
  width: 50%;
  left: 25%;
  top: 55%;
  height: 35%;
  font-size: 120%;
  text-align: center;
}

.msgcontent2 {
  top: 40%;
  height: 25%;
}

.msgcontentabout1 {
  top: 38%;
  height: 25%;
}

.msgcontentabout2,
.msgcontentabout3 {
  top: 33%;
  height: 38%;
}

.msgcontentabout3 {
  top: 38%;
  height: 38%;
}

.msgbutton {
  position: absolute;
  width: 50%;
  left: 25%;
  top: 70%;
  font-size: 100%;
  text-align: center;
}

.btnheromenu {
  left: 50%;
  top: 50%;
}

.button {
  border: 2px solid white;
  font-size: 130%;
  padding: 1%;
  width: 20%;
  cursor: pointer;
  border-radius: 10px;
  float: left;
  text-decoration: none;
  color: white;
}

.msgcontent > span > a {
  border-bottom: 1px solid white;
  font-size: 112%;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.btnfoodanddrinks {
  border: 4px solid white;
  width: 55%;
  padding: 0%;
  font-size: 500%;
  font-family: "Amatic SC";
  font-weight: 700;
  transform: translateX(-50%) translateY(-50%);
}

.buttonmenu,
.buttondrinks {
  margin-left: 25%;
  margin-right: 5%;
}

.aboutreservationbtn {
  top: 79%;
}

.aboutreservationbtnlink {
  left: 39%;
  position: absolute;
}

.button:hover {
  background-color: white;
  color: black;
  font-weight: 700;
  transition: 300ms;
}

.buttonactive {
  background-color: white;
  color: black;
  font-weight: 700;
}

.relative{
  position: relative !important;
}

.left {
  width: 100vw;
  height: 70vh;
  position: relative;
}

.drawnimage {
  background-repeat: no-repeat;
  background-size: contain;
  width: 20%;
  height: 25%;
  position: absolute;
}

.drawnimageleft {
  right: 20%;
  background-position: right;
}

.drawnimageright {
  left: 20%;
}

.drawnimagehome1 {
  background-image: url("../img/burger.png");
  top: -5%;
  right: 12%;
  width: 50%;
  height: 37%;
}

.drawnimagehome2 {
  background-image: url("../img/coffee beans.png");
  left: 8%;
  top: 5%;
  width: 40%;
  height: 31%;
}

.drawnimagehome3 {
  background-image: url("../img/candle.png");
  right: 15%;
  top: 5%;
  height: 38%;
}

.drawnimageabout1 {
  background-image: url("../img/kitchen stuff.png");
  top: -6%;
  right: 17%;
}

.drawnimageabout2 {
  background-image: url("../img/apron.png");
  left: 15%;
  top: 10%;
}

.drawnimageabout3 {
  background-image: url("../img/clouds.png");
  left: 13%;
  top: 6%;
}

.drawnimageabout4 {
  background-image: url("../img/sunshine.png");
  right: 13%;
  top: 6%;
}

.drawnimageabout5 {
  background-image: url("../img/lovers.png");
  right: 10%;
  bottom: 0;
}

.drawnimagefood1 {
  background-image: url("../img/break.png");
  right: 15%;
  top: 3%;
}
.drawnimagefood2 {
  background-image: url("../img/nachos.png");
  left: 12%;
  top: 6%;
}
.drawnimagefood3 {
  background-image: url("../img/sandwich.png");
  right: 15%;
}
.drawnimagefood4 {
  background-image: url("../img/salads.png");
  left: 16%;
  top: 6%;
}
.drawnimagefood5 {
  background-image: url("../img/burger.png");
  right: 11%;
}
.drawnimagefood6 {
  background-image: url("../img/spec.png");
  left: 16%;
  top: 9%;
}
.drawnimagefood7 {
  background-image: url("../img/kids.png");
  right: 8%;
}
.drawnimagefood8 {
  background-image: url("../img/desserts.png");
  left: 13%;
}
.drawnimagedrink1 {
  background-image: url("../img/coffee.png");
  right: 14%;
}
.drawnimagedrink2 {
  background-image: url("../img/tea.png");
  left: 16%;
}
.drawnimagedrink3 {
  background-image: url("../img/lemonade.png");
  right: 14%;
}
.drawnimagedrink4 {
  background-image: url("../img/beer.png");
  left: 15%;
}
.drawnimagedrink5 {
  background-image: url("../img/wine.png");
  right: 15%;
  top: 4%;
}
.drawnimagedrink6 {
  background-image: url("../img/shots.png");
  left: 17%;
}

.drawnimagecontact1 {
  background-image: url("../img/sipka.png");
  left: 5%;
  bottom: 10%;
}

.drawnimagecontact2 {
  left: -23%;
  top: 20%;
  width: 36%;
  height: 36%;
  background-image: url("../img/pen.png");
}

.leftimage {
  width: 50%;
  height: 75%;
  top: 10%;
  position: absolute;
  bottom: 0;
}

.leftimageheading {
  font-family: "Amatic SC";
  font-weight: 700;
  font-size: 480%;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
  text-align: center;
  top: 4%;
  right: 15%;
  position: absolute;
}

#bestburgersource {
  bottom: -8%;
  right: 3%;
  position: absolute;
  color: white;
  text-decoration: none;
}

#bestburgersource > a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
  cursor: pointer;
}

.leftreview {
  width: 33%;
  height: 45%;
  position: absolute;
  left: 45%;
  top: 30%;
  background-color: rgba(255, 255, 255, 0.94);
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
}

.leftreview-new{
  width: 40%;
  position: absolute;
  top:0px;
  left: 51%;
  background-color: rgba(255, 255, 255, 0.94);
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
}

.frokost{
  font-size: 28px;
  font-weight: 900;
}

.margin-frokost{
  margin-bottom: 16px;

}

.frokost-price{
  font-size: 28px !important;
  margin-bottom: 16px;
}
#thirdkeypoint {
  height: 45%;
}

#mattiasscroll,
#benediktescroll {
  height: 40%;
}

#snacksoffer {
  height: 42%;
  top: 23%;
}

#sandwichoffer {
  height: 78%;
  top: 15%;
}

#saladsoffer {
  top: 12%;
  height: 77%;
}

#burgersoffer {
  top: 12%;
  height: 74%;
}

#specialitiesoffer {
  height: 76%;
  top: 15%;
}

#forkidsoffer {
  height: 66%;
  top: 23%;
}

#dessertsoffer {
  height: 44%;
  top: 23%;
}

#coffeeoffer {
  top: 12%;
  height: 83%;
}

#teandchocolateoffer {
  top: 20%;
  height: 51%;
}

#colddrinksoffer {
  top: 17%;
  height: 78%;
}

#beeroffer {
  top: 20%;
  height: 52%;
}

#wineoffer {
  top: 20%;
  height: 63%;
}

#shotsoffer {
  top: 15%;
  height: 65%;
}

.nameandprice,
.extra {
  height: 100%;
  position: relative;
}

.nameandprice > p {
  font-size: 130%;
  font-weight: 900;
}

.extra > p {
  font-size: 105%;
  font-weight: 900;
}

.wineglassbottle > p:first-child {
  font-size: 100%;
  font-weight: 700;
}

.foodname {
  width: 85%;
}

.price {
  position: absolute;
  width: 15%;
  top: 0;
  right: 0;
  text-align: right;
}

.fooddescription > p {
  width: 85%;
}

.leftreviewcontent,
.rightreviewcontent {
  padding: 5%;
  color: black;
}

.leftreviewcontent > p > i,
.rightreviewcontent > p > i {
  font-size: 115%;
  line-height: 150%;
}

.leftreviewname,
.rightreviewname {
  padding-left: 5%;
  width: 95%;
}

.leftreviewname > p,
.rightreviewname > p {
  color: black;
  font-size: 140%;
  font-weight: 900;
  float: left;
}

.leftstars {
  background-image: url("../img/stars.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 40%;
  height: 10%;
  right: 0;
}

.right {
  width: 100vw;
  height: 70vh;
  position: relative;
}

.rightimage {
  width: 50%;
  top: 10%;
  right: 0;
  position: absolute;
  bottom: 0;
  height: 75%;
}

.rightimageheading {
  font-family: "Amatic SC";
  font-weight: 700;
  font-size: 480%;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
  text-align: center;
  top: 4%;
  left: 12%;
  position: absolute;
}

.rightreview {
  width: 30%;
  height: 45%;
  position: absolute;
  right: 45%;
  top: 30%;
  background-color: rgba(255, 255, 255, 0.94);
  -webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
}

#reservationandfacebook,
#mapsection {
  position: relative;
  height: 56vh;
  width: 100vw;
}

#reservationandfacebook {
  height: 66vh;
}

#mapsection {
  background-color: rgba(255, 255, 255, 0.1);
  height: 66vh;
}

#map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid white;
  position: absolute;
  left: 16%;
  top: 10%;
  width: 1045px;
  height: 340px;
}

#mapiframe {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: -110px;
}

.blockscroll {
  pointer-events: none;
}

#mapinfo {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.96);
  color: black;
  height: 53%;
  width: 34%;
  left: 4%;
  top: 21%;
}

#mapinfo > p {
  padding-left: 5%;
}

#mapinfo > p:first-child {
  font-family: "Amatic SC";
  font-weight: 700;
  font-size: 260%;
  padding-top: 4%;
}

#reservationform {
  position: absolute;
  left: 16%;
  top: 10%;
  width: 720px;
  height: 400px;
  border: 1px solid white;
  border-radius: 10px;
}

#reservationheading {
  position: relative;
  width: 100%;
  height: 20%;
  font-family: "Amatic SC";
  text-align: center;
  font-size: 340%;
  font-weight: 700;
  background-color: rgba(24, 24, 24, 1);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#reservationinfo {
  background-color: rgb(222, 222, 222);
  position: relative;
  width: 100%;
  height: 80%;
  color: black;
  font-size: 220%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.reservationpara {
  font-size: 64%;
  margin-left: 10%;
  padding-top: 2%;
  color: rgb(58, 58, 58);
}
.bold {
  font-size: 100%;
  font-weight: 800;
  color: black;
}

.reservationmail {
  font-size: 64%;
  font-weight: 800;
  text-align: center;
  padding: 1%;
}

.resdetail {
  text-align: left;
  margin-top: 2%;
  margin-left: 33%;
}
.resdetail > p {
  font-size: 136%;
}

#formtopmsg {
  font-size: 120%;
  padding-left: 4%;
  width: 96%;
  line-height: 40px;
  height: 12%;
  color: black;
  position: absolute;
}

#formleftinfo {
  width: 65%;
  height: 82%;
  position: absolute;
  top: 18%;
}

#formleftinfo > input {
  width: 95%;
  height: 15%;
  margin-left: 5%;
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
  border: 1px solid darkgray;
}

#formrightinfo {
  width: 30%;
  left: 70%;
  height: 82%;
  position: absolute;
  top: 18%;
}

#formrightinfo > input {
  width: 85%;
  height: 15%;
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
  border: 1px solid darkgrey;
}

#formrightinfo > input:last-child {
  color: white;
  font-size: 180%;
  background-color: rgba(24, 24, 24, 1);
  text-decoration: none;
  height: 28%;
  cursor: pointer;
}

#formrightinfo > input:last-child:hover {
  color: white;
  background-color: black;
  font-weight: 700;
}

textarea {
  width: 94%;
  border-radius: 10px;
  margin-left: 5%;
  position: absolute;
}

#thankyou_message {
  color: black;
  position: absolute;
  font-size: 200%;
  padding: 5%;
  width: 90%;
  height: 15%;
}

#thankyou_message > p {
  font-size: 82%;
}

#thankyou_message > p > b {
  border-bottom: 1px solid black;
}

#facebookplugin {
  position: absolute;
  left: 1040px;
  top: 10%;
  width: 250px;
  height: 400px;
  border: 1px solid white;
  border-radius: 10px;
  overflow: hidden;
}

#emptyspace {
  width: 10vw;
  height: 50vh;
  z-index: -2;
  pointer-events: none;
  position: absolute;
}

#footer {
  background-image: url("../img/pattern.png");
  background-repeat: repeat;
  background-size: 20%;
  bottom: 0;
  width: 100vw;
  height: 51vh;
  z-index: -1;
  position: fixed;
  pointer-events: auto;
}

#flexfooter {
  width: 76vw;
  margin-left: 12vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#footerbox1,
#footerbox2,
#footerbox3 {
  flex: 1;
  margin-top: 5%;
  padding: 2%;
}

#footerbox1,
#footerbox3 {
  padding-right: 6%;
  padding-left: 6%;
}

.flexheading {
  font-family: "Amatic SC";
  font-weight: 700;
  font-size: 240%;
  margin-bottom: 2%;
  text-align: center;
}

.flexcontent {
  font-size: 106%;
  padding-left: 5%;
  padding-right: 5%;
}

#footericons {
  margin-top: 5%;
  display: flex;
  flex-direction: row;
  height: 21%;
}

#footersocialmedia {
  display: flex;
  flex: 1;
}

#footerfb,
#footerinsta,
#footertrip {
  flex: 1;
  height: 75%;
  margin: 5%;
  opacity: 0.8;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

#footerfb:hover,
#footerinsta:hover,
#footertrip:hover {
  opacity: 1;
  transition: 300ms;
}

#footerfb {
  background-image: url("../img/fb.png");
}

#footerinsta {
  background-image: url("../img/insta.png");
}

#footertrip {
  background-image: url("../img/trip.png");
}

#kontrolraport {
  flex: 1;
  height: 70%;
}

#kontrolraport > div {
  margin: 5%;
  background-image: url("../img/kontrolrapport.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  margin-left: 30%;
  cursor: pointer;
}

.footeropeninghours {
  display: flex;
  flex-direction: row;
}

#footeropeningday {
  flex: 1;
}

#footeropeninghour {
  flex: 1;
}

#footeropeninghour > p {
  text-align: right;
}

#allrights {
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 5vh;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 120%;
  text-align: center;
  line-height: 30px;
}

#mobilemenunav {
  display: none;
}

.new-flex{
  flex: 1;
}

@media only screen and (max-width: 1440px) {
  * {
    font-size: 15px;
  }
  #map {
    width: 845px;
  }

  #facebookplugin {
    left: 800px;
  }

  #reservationform {
    width: 560px;
  }
}
.new-bold{
  font-size:28px;font-weight: 900;
}

.new-bold-small{
  font-size:20px;font-weight: 900;
  margin-top:20px;
}

.new-container-text{
  max-width: 480px;
}

.new-p-headlines{
  font-size:20px;
  font-weight: 900; 
  margin-top:20px;
}


@media only screen and (max-width: 1330px) {
  * {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1000px) and (orientation: portrait) {
  * {
    font-size: 38px;
  }

  .new-image-hidden{
    display: none;
  }
  .new-container{
    flex-wrap: wrap
  }

  .new-container-text{
    max-width: 1000px;
  }
  .new-flex{
    flex: auto;
  }

  .new-p{
    font-size: 36px !important;
  }

  .new-p-headlines{
    font-size:40px;
  }

  .new-bold{
    font-size:54px;
  }

  .new-bold-small{
    font-size:40px;
  }

  #navbar {
    background-color: rgba(16, 16, 16, 0.95);
    height: 10vh;
    z-index: 10;
  }

  #mobilemenu {
    visibility: visible;
    background-image: url("../img/mobilemenu1.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 14%;
    float: right;
    height: 70%;
    position: absolute;
    right: 6%;
    top: 15%;
  }

  #mobilemenunav {
    background-color: rgba(16, 16, 16, 0.98);
    position: absolute;
    top: 10vh;
    height: 36vh;
    width: 100%;
    right: 0;
  }

  #mobilemenunav > div {
    right: 7%;
    position: absolute;
  }

  #mobilemenunav > div:nth-child(1) {
    top: 5%;
  }

  #mobilemenunav > div:nth-child(2) {
    top: 25%;
  }

  #mobilemenunav > div:nth-child(3) {
    top: 45%;
  }

  #mobilemenunav > div:nth-child(4) {
    top: 65%;
  }

  #mobilemenunav > div > a {
    position: relative;
    text-decoration: none;
    color: rgba(220, 220, 220, 1);
    font-size: 200%;
  }

  #mobilesocialmedia {
    position: absolute;
    bottom: 0;
    height: 19%;
    width: 88%;
    left: 10%;
    border-top: 1px solid white;
  }

  #languageoptionmobile {
    position: absolute;
    bottom: 6%;
    width: 48%;
    height: 10%;
    display: inline-block;
    right: 0;
  }

  #englishmobile,
  #danskmobile,
  #spacemobile {
    float: right;
    text-align: right;
    font-size: 120%;
  }

  #englishmobile > p,
  #danskmobile > p {
    font-size: 60%;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  #spacemobile {
    margin-left: 3%;
    margin-right: 3%;
  }

  #fbnav,
  #instanav {
    position: relative;
    top: 14%;
    margin-right: 5%;
    width: 10%;
    height: 100%;
    float: left;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 100%;
  }

  #navlogo {
    height: 88%;
    width: 18%;
    margin-top: 1.5%;
  }

  #navbar.scrolled {
    background-color: rgba(16, 16, 16, 0.98) !important;
    transition: 250ms linear;
  }

  #slogan,
  #sloganabout {
    width: 80vw;
    top: 8vh;
  }

  #slogan {
    left: 10vw;
  }

  #slogancafeen {
    height: 26%;
  }

  #sloganheadline {
    font-size: 264%;
  }

  #herohome,
  #heroabout,
  #herocontact {
    top: 5vh;
    height: 50vh;
    position: relative;
    z-index: 2;
  }

  #mobilemenuhero {
    height: 65vh;
  }

  #herofood,
  #herodrinks {
    height: 30vh;
    width: 100vw;
    position: relative;
    z-index: 2;
  }
  #herofood {
    top: 5vh;
  }

  #herodrinks {
    top: 5vh;
    left: 0;
  }
  #herofood {
    background-image: url("../img/mobile hero food.jpg");
  }

  #herodrinks {
    background-image: url("../img/mobile hero drinks.jpg");
  }

  #heroopeninghours {
    font-size: 106%;
    line-height: 70px;
  }

  #arrow,
  #bestburgersource,
  nav a,
  #socialmedia,
  #languageoption,
  .hide {
    visibility: hidden;
  }

  .msgsection {
    height: 36vh;
    top: 0;
  }

  .msgsection2 {
    height: 39vh;
  }

  .about1 {
    height: 92vh;
  }

  .about1en {
    height: 76vh;
  }

  .about2 {
    height: 72vh;
  }

  .about3 {
    height: 68vh;
  }

  .msgsectionfoodtop {
    height: 37vh;
  }

  .msgsectiondrinktop {
    height: 32vh;
  }

  .msgsectiondrinktopen {
    height: 36vh;
  }

  .msgheadline {
    width: 100%;
    left: 0;
    top: 20%;
    height: 18%;
    font-size: 210%;
    text-align: center;
  }
  .msgmobilefoodheadline {
    top: 4%;
  }

  .msgmobilefoodheadline,
  .msgmobiledrinksheadline {
    top: 5%;
    height: 20%;
  }
  .msgsectionfoodbottomen {
    height: 32vh;
  }

  .msgheadline2 {
    height: 17%;
    font-size: 210%;
    width: 100%;
    top: 3%;
  }

  .msgheadlineabout1 {
    height: 7%;
    top: 7%;
  }

  .msgheadlineabout1en {
    height: 8%;
    top: 9%;
  }

  .msgheadlineabout2 {
    font-size: 186%;
    width: 90%;
    height: 9%;
    left: 5%;
    top: 11%;
  }
  .msgheadlineabout2en {
    font-size: 176%;
  }

  .msgheadlineabout3 {
    height: 9%;
    top: 5%;
  }

  .msgcontent {
    position: absolute;
    width: 80%;
    left: 10%;
    top: 42%;
    height: 17%;
    font-size: 120%;
    text-align: center;
  }

  .msgcontentabout2 {
    top: 25%;
  }

  .msgcontentabout3 {
    top: 18%;
  }

  .msgmobilefoodcontent {
    top: 26%;
  }

  .msgmobiledrinkscontent {
    top: 29%;
  }

  .msgcontent2 {
    height: 18%;
    top: 24%;
  }
  .msgcontent2en {
    top: 33%;
  }

  .msgcontentabout1 {
    top: 16%;
  }

  .msgcontentabout1en {
    top: 20%;
  }

  .msgsectiondrinkbottom {
    height: 30vh;
  }

  .msgbutton {
    width: 100%;
    left: -12.3%;
    top: 75%;
    display: flex;
  }
  .btnheromenu {
    width: 50%;
    left: 50%;
    top: 52%;
    font-size: 75%;
    height: 38%;
  }

  .button {
    width: 35%;
    flex: 1;
  }

  .aboutreservationbtn {
    top: 86%;
  }

  .aboutreservationbtnlink {
    left: 43%;
  }

  .left {
    height: 70vh;
    margin-top: -5%;
  }
  .right {
    height: 58vh;
  }

  .leftimage {
    width: 100%;
    margin-top: 10%;
  }

  .leftreview {
    width: 100%;
    height: 56%;
    left: 0%;
    z-index: 5;
  }
  .leftreviewcontent > p > i,
  .rightreviewcontent > p > i {
    font-size: 120%;
  }

  .fooddescription > p > i {
    font-size: 101%;
  }

  .leftimageheading,
  .rightimageheading {
    font-size: 300%;
  }

  .rightimage {
    width: 100%;
  }

  .rightreview {
    width: 100%;
    height: 59%;
    right: 0%;
    z-index: 5;
  }

  .msgheadline2en {
    height: 20%;
    top: 6%;
  }

  .msgheadline2endrink {
    height: 22%;
    top: 8%;
  }

  .msgcontent2endrink {
    top: 37%;
  }

  .msgsectionenindex1 {
    height: 39vh;
  }

  .msgsectionenindex2 {
    height: 46vh;
  }

  #thirdkeypoint {
    height: 55%;
  }

  #snacksoffer {
    height: 58%;
  }

  #sandwichoffer {
    height: 82%;
  }

  #saladsoffer {
    height: 84%;
  }

  #burgersoffer {
    height: 93%;
  }

  #specialitiesoffer {
    height: 118%;
  }

  #forkidsoffer {
    height: 73%;
  }

  #dessertsoffer {
    height: 57%;
  }

  #coffeeoffer {
    height: 82%;
  }
  #teandchocolateoffer {
    height: 67%;
  }

  #colddrinksoffer {
    height: 83%;
  }

  #beeroffer {
    height: 66%;
  }

  #wineoffer {
    height: 66%;
  }

  #shotsoffer {
    height: 83%;
  }

  #galleryimg1 {
    flex: 1;
  }

  #galleryimg1 {
    width: 52%;
    height: 26%;
    position: absolute;
  }

  #galleryimg2 {
    width: 48%;
    height: 36%;
    top: 60%;
    position: absolute;
  }

  #galleryimg3 {
    width: 48%;
    height: 36%;
    left: 52%;
    position: absolute;
    top: 60%;
  }

  #galleryimg4 {
    width: 100%;
    height: 30%;
    top: 28%;
    left: 0;
    position: absolute;
  }

  #galleryimg5 {
    left: 55%;
    height: 26%;
    width: 45%;
    position: absolute;
  }

  .drawnimagehome1 {
    top: -2%;
    height: 22%;
    width: 20%;
  }
  .drawnimagehome2 {
    top: -13%;
    height: 34%;
    width: 30%;
  }
  .drawnimagehome3 {
    top: -1%;
    height: 16%;
    width: 16%;
  }

  .drawnimagefood1 {
    top: -3%;
    height: 24%;
    width: 24%;
  }

  .drawnimagefood2 {
    top: -10%;
    height: 21%;
    width: 21%;
  }

  .drawnimagefood3 {
    top: -8%;
    height: 25%;
    width: 25%;
  }

  .drawnimagefood4 {
    top: -14%;
    height: 22%;
    width: 22%;
  }

  .drawnimagefood5 {
    top: -6%;
    height: 26%;
    width: 26%;
  }

  .drawnimagefood6 {
    top: -10%;
    height: 23%;
    width: 23%;
  }

  .drawnimagefood7 {
    top: -2%;
    height: 24%;
    width: 24%;
  }

  .drawnimagefood8 {
    top: -9%;
    height: 26%;
    width: 26%;
  }

  .drawnimagedrink1 {
    top: -2%;
    height: 20%;
    width: 20%;
  }

  .drawnimagedrink2 {
    top: -4%;
    height: 14%;
    width: 14%;
  }

  .drawnimagedrink3 {
    top: -3%;
    height: 22%;
    width: 22%;
  }

  .drawnimagedrink4 {
    top: -5%;
    height: 14%;
    width: 14%;
  }

  .drawnimagedrink5 {
    top: 3%;
    height: 14%;
    width: 14%;
  }

  .drawnimagedrink6 {
    top: -7%;
    height: 16%;
    width: 16%;
  }

  .drawnimageabout1 {
    top: -17.5%;
    height: 52%;
    width: 50%;
    left: 8%;
  }
  .drawnimageabout2 {
    top: -11%;
    height: 19%;
    width: 19%;
  }

  .drawnimageabout3 {
    top: -9%;
    height: 24%;
    width: 24%;
  }

  .drawnimageabout4 {
    top: -16%;
    height: 29%;
    width: 29%;
    right: 6%;
  }

  .drawnimageabout5 {
    bottom: 1%;
    left: 42%;
    height: 20%;
    width: 20%;
  }

  .drawnimagecontact2 {
    bottom: 1%;
    left: 0%;
    height: 14%;
    width: 14%;
  }

  .drawnimagecontact1 {
    left: 2%;
    top: 15%;
    height: 14%;
    width: 14%;
  }

  #mattiasscroll,
  #benediktescroll {
    height: 55%;
  }

  #facebookplugin {
    display: none;
  }
  #reservationandfacebook {
    width: 80%;
    margin-top: 8%;
    left: 3%;
  }

  #reservationform {
    width: 90%;
    height: 80%;
  }

  #reservationinfo {
    height: 87%;
  }

  #reservationheading {
    font-size: 176%;
    height: 13%;
    line-height: 170%;
  }

  .bold {
    font-size: 100%;
  }

  .resdetail {
    margin-left: 10%;
  }

  .resdetail > p {
    font-size: 116%;
  }

  .reservationpara {
    font-size: 50%;
    margin-right: 2%;
  }

  .reservationmail {
    font-size: 56%;
  }

  #map {
    height: 80%;
    width: 72%;
  }

  #mapiframe {
    height: 1200px;
  }

  #mapinfo {
    width: 90%;
    height: 33%;
    left: 5%;
    top: 4%;
  }

  .mapname {
    display: none;
  }

  #mapinfo:nth-child(2) {
    padding-top: 2%;
  }

  #mapinfo > p {
    font-size: 97%;
    padding-right: 4%;
  }

  #mapinfo > p > b {
    font-size: 100%;
  }

  #emptyspace {
    height: 75vh;
  }

  #footer {
    bottom: 0;
    height: 75vh;
  }

  #flexfooter {
    width: 90vw;
    margin-left: 5vw;
    flex-direction: column;
  }

  #footerbox1 {
    flex: 0;
    display: none;
  }
  #footerbox2,
  #footerbox3 {
    flex: 1;
  }

  #footerbox3,
  #footerbox2 {
    text-align: center;
    justify-content: center;
  }
  #footericons {
    margin-top: 5%;
    height: 60%;
    display: flex;
    justify-content: center;
  }
  #footersocialmedia {
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex: 199;
  }

  #footerfb,
  #footerinsta,
  #footertrip {
    flex: 1;
    opacity: 1;
    margin-left: 12.5%;
    height: 100%;
  }

  #footeropeningday > p {
    text-align: left;
    margin-left: 22%;
  }

  #footeropeninghour > p {
    text-align: center;
  }

  #footeropeninghour > p:last-child {
    text-align: left;
    margin-left: 22%;
  }

  #allrights {
    line-height: 94px;
    height: 6vh;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (orientation: landscape) {
  body {
    font-size: 14px;
  }
}
