* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f5f5f5;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  color: rgb(102, 102, 102);
}

.wrap {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: block;
  background-color: #e94f3d;
  font-size: 18px;
  font-weight: 700;
  color: white;
  border: none;
  border-radius: 20px;
  transition: 0.3s;
  padding: 10px 20px;
}

/* animation */

.call-us-icon {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 70px;
  height: 70px;
  font-size: 40px;
  border: 3px solid #004856;
  border-radius: 50%;
  color: #004856;
  text-align: center;
  line-height: 70px;
  transition: .2s;
  cursor: pointer;
  z-index: 10;
  background-color: #f5f5f5;
}

.call-us-icon i {
  animation: rotate .3s infinite linear alternate;
  transition: .2s;
}

.call-us-icon:hover {
  background-color: #004856;
}

.call-us-icon:hover i {
  color: white;
  animation-duration: .15s;
  /* animation-play-state: paused; */
  /* animation: none; */
}

@keyframes rotate {
  0% {
    transform: rotate(30deg);
  }

  100% {
    transform: rotate(-30deg);
  }
}


/* header */

header {
  background-image: url(pictures/slider.jpg);
  background-size: cover;
  background-position: 50% 50%;
  padding-bottom: 30px;
  width: 100%;
}

nav {
  width: 100%;
  text-align: center;
}

nav .fa-bars,
nav .fa-times {
  display: none;
  color: #fff;
  font-size: 40px;
  text-align: left;
  padding: 10px 0 0 15px;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  display: block;
  margin: 30px;
  padding: 0 20px 10px 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  border-bottom: 2px solid transparent;
  transition: .3s;
}

nav ul li a:hover {
  border-color: white;
}

.logo {
  display: block;
  margin: 0 auto;
  width: 40%;
}

button.btn1 {
  margin: 30px auto 0 auto;
}

.icon {
  width: 15%;
  margin-left: 5px;
}

.btn1:hover {
  background-color: rgb(180, 43, 43);
}


/* section description */

section.description {
  overflow: hidden;
}

.description-left,
.description-right {
  width: 500px;
}

div.description-right img {
  margin-top: 100px;
  width: 100%;
}


h1 {
  margin-top: 70px;
  font-family: 'Righteous', cursive;
  font-size: 30px;
  color: #333;
  text-align: center;
}

img.decor {
  display: block;
  margin: 10px auto 0 auto;
}

.description p {
  word-spacing: 3px;
  line-height: 25px;
  margin-top: 25px;
  text-align: center;
}


/* section types-of-food */

.types-of-food {
  width: 100%;
  height: 300px;
  margin-top: 80px;
}

.type-of-food {
  background-repeat: no-repeat;
  height: 100%;
  width: 25%;
  float: left;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  transition: .5s;
}

.type-of-food:hover {
  height: 330px;
  transform: translateY(-15px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.type-of-food:hover .coin {
  background-color: #e94f3d;
}

.type-of-food:hover .coin a {
  color: white;
}

.burgers {
  background-image: url(pictures/Burger-Craft-139.jpg);

}

.hot-dogs {
  background-image: url(pictures/Burger-Craft-123.jpg);
}

.bowls {
  background-image: url(pictures/Burger-Craft-44.jpg);
}

.salads {
  background-image: url(pictures/Burger-Craft-72.jpg);
}

.type-of-food>div.coin {
  width: 180px;
  height: 180px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: .5s;
}

.type-of-food .coin a {
  display: block;
  line-height: 180px;
  text-align: center;
  text-decoration: none;
  font-family: 'Righteous', cursive;
  font-size: 30px;
  color: #e94f3d;
  transition: .5s;
}

/* section eat */

section.eat {
  margin-top: 50px;
  width: 100%;
}

.eat .wrap div {
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  width: 33.33%;
  padding: 0 30px;
  vertical-align: top;
}

.eat div h2 {
  font-size: 26px;
  font-family: 'Righteous', cursive;
  margin-top: 75px;
  color: #333;
  font-weight: 400;
}

.decor-small {
  width: 95%;
  padding: 5px 0 15px 0;
}

.hamb {
  background-image: url(pictures/burger-craft-burger-icon.png);
  background-repeat: no-repeat;
  margin-top: 50px;
  background-size: 70%;
  background-position: 50% 0;
}

.healthy-food {
  background-image: url(pictures/burger-craft-vegetarian-icon.png);
  background-repeat: no-repeat;
  margin-top: 50px;
  background-size: 70%;
  background-position: 50% 0;
}

.vegeterian {
  background-image: url(pictures/burger-craft-ethically-sourced-icon.png);
  background-repeat: no-repeat;
  margin-top: 50px;
  background-size: 70%;
  background-position: 50% 0;
}

button.btn2 {
  margin: 80px auto 50px auto;
}

button.btn2:hover {
  background-color: rgb(180, 43, 43);
}

/* section favorites  */

.favorites {
  width: 100%;
  /* height: 82vh; */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(pictures/urban-8-picks-board-bg.png);
  padding-bottom: 30px;
}

.favorites h2 {
  color: white;
  font-family: 'Righteous', cursive;
  text-transform: uppercase;
  font-size: 40px;
  text-align: center;
  padding-top: 80px;
}

.dishes>div {
  background-color: white;
  border-radius: 15px;
  padding: 10px;
  width: 450px;
  margin: 50px 20px;
  box-sizing: border-box;
}

.dishes img {
  width: 100%;
  border-radius: 15px;
}

.dishes h3 {
  margin: 10px;
  font-family: 'Righteous', cursive;
  font-size: 26px;
  color: #333;
  font-weight: 400;
}

.dishes p {
  margin: 0 10px 10px 10px;
}

/* section opinion */

.opinions {
  width: 100%;
  margin: 30px 0;
}

.fa-chevron-up,
.fa-chevron-down {
  cursor: pointer;
}

.fa-chevron-down {
  margin-top: 30px;
}

.opinion {
  width: 100%;
  line-height: 30px;
  color: rgb(51, 51, 51);
  text-align: center;
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: 1s;
}

.show-opinion {
  visibility: visible;
  opacity: 1;
  transition: 1s;
  height: auto;
  margin: 30px auto 0 auto;
}

.blocked-arrow {
  color: #aaa;
  cursor: default;
}

.opinion img {
  padding: 15px 0;
}

.btndiv {
  width: 100%;
}

button.btn3 {
  margin: 30px auto 0 auto;
}

button.btn3:hover {
  background-color: rgb(180, 43, 43);
}


/* section learn-more  */

.learn-more {
  background-color: #e94f3d;
  width: 100%;
  padding: 30px 0;
}

.learn-more div {
  color: white;
  text-align: center;
}

.learn-more h2 {
  color: white;
  font-family: 'Righteous', cursive;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

button.btn4 {
  margin: 30px auto 0 auto;
  background-color: #004751;
}

i.fa-chevron-right {
  margin-left: 7px;
  opacity: 0;
  transition: .3s;
}

button.btn4:hover {
  background-color: #03333a;
}

button.btn4:hover i.fa-chevron-right {
  opacity: 1;
}

/* section restaurants*/

.restaurants {
  width: 100%;
  padding-bottom: 30px;
}

.restaurants h2 {
  margin: 50px 0 30px 0;
  font-family: 'Righteous', cursive;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  color: #333;
}

.restaurants .wrap div {
  max-width: 450px;
  background-color: #fff;
  margin: 20px;
  border-radius: 15px;
  font-family: 'Righteous', cursive;
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
}

.restaurants .wrap div img {
  width: 35%;
  float: left;
  padding: 15px;
}

.restaurants .wrap div h3 {
  padding: 10px 0 0 0;
  font-weight: 400;
}

.restaurants .wrap div h4 {
  font-weight: 400;
}

.restaurants .wrap div p {
  font-family: 'Open Sans', sans-serif;
  color: rgb(102, 102, 102);
}

.restaurants .wrap div a {
  font-weight: 700;
  display: inline-block;
  padding-top: 20px;
  color: #e94f3d;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
}

/* footer */

footer {
  width: 100%;
  background-color: #004856;
}

footer .wrap>div {
  width: 300px;
  color: #fff;
  margin: 20px 15px 0 15px;
}

footer .wrap div img {
  width: 60%;
}

button.btn5 {
  display: inline-block;
  padding: 8px 18px;
  font-size: 16px;
  border: 2px solid transparent;
}

button.btn5:hover {
  background-color: #004856;
  border: 2px solid white;

}

footer .wrap .iconsoc {
  width: 10%;
  margin-top: 25px;
  padding: 0 5px;
}

.job p {
  margin: 15px 0;
}

.form h2 {
  font-family: 'Righteous', cursive;
  font-weight: 400;
  font-size: 26px;
}

form {
  margin: 15px 0 20px 0;
}

form input {
  background-color: #004856;
  border: 2px solid white;
  border-right: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 15px 7px;
  color: white;
}

button.btn6 {
  border: 2px solid white;
  border-left: none;
  background-color: #e94f3d;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 700;
}

.form p:nth-last-of-type(3) {
  margin-top: 15px;
}

.address h2 {
  font-family: 'Righteous', cursive;
  font-weight: 400;
  font-size: 26px;
}

.address div {
  margin: 15px 0;
}

div.footer {
  margin-top: 30px;
  background-color: #032b33;
  text-align: center;
  color: white;
  padding: 10px 5px;
  font-size: 12px;
}

@media (max-width: 1000px) {
  .wrap {
    width: 100%;
  }


  /* section header */
  header {
    min-height: 40vh;
    position: relative;
  }


  nav .fa-bars {
    display: block;
  }

  nav .fa-times {
    position: absolute;
    z-index: 3;
  }

  nav ul {
    display: none;
    position: absolute;
    background-color: #e94f3d;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 70%;
    height: 80%;
    box-sizing: border-box;
  }

  nav ul li {
    display: block;
  }

  nav ul li a:hover {
    border-color: transparent;
  }

  .logo {
    width: 50%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  button.btn1 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .icon {
    width: 15%;
    margin-left: 5px;
  }

  /* section description */

  .description p {
    line-height: 30px;
  }

  .description p {
    margin: 0 20px;
  }

  div.description-left {
    width: 100%;
    padding: 0 20px;
  }

  div.description-right {
    display: none;
  }

  /* section types-of-food */
  .type-of-food:hover {
    height: 100%;
    transform: none;
    box-shadow: none;
  }

  .type-of-food:hover .coin {
    background-color: white;
  }

  .type-of-food:hover .coin a {
    color: #e94f3d;
  }

  .type-of-food {
    width: 50%;
  }

  /* section eat */

  .decor-small {
    width: 95%;
    padding: 5px 0 15px 0;
  }

  button.btn2 {
    margin-top: 50px
  }

  /* section favorites */

  .dishes>div {
    width: 100%;
    margin: 20px;
  }

  .dishes img {
    width: 30%;
    float: left;
    margin-right: 20px;
  }

  /* section opinion */

  .opinion {
    padding: 0 20px;
  }

  /* section lear more  */

  .learn-more p {
    padding: 0 20px;
  }

  /* section restaurants */

  .restaurants .wrap div {
    max-width: 100%;
  }

  .restaurants .wrap div img {
    width: 15%;
  }


  /* section footer */

  footer .wrap>div {
    width: 46%;
  }

  footer .job {
    display: none;
  }

  footer .form h2:nth-child(1),
  footer .form form {
    display: none;
  }

  footer .form h2 {
    margin-bottom: 15px;
  }

  footer .wrap .iconsoc {
    width: 13%;
    margin: 25px 10px;
  }

}

@media (max-width: 900px) {

  /* animation */

  .call-us-icon {
    display: none;
  }


  /* section eat  */

  .eat .wrap div {
    width: 100%;
  }

  .eat div h2 {
    margin-top: 50px;
  }

  .decor-small {
    width: 50%;
  }

  .hamb {
    background-size: 20%;
  }

  .healthy-food {
    background-size: 20%;
  }

  .vegeterian {
    background-size: 20%;
  }

  /* section restaurants */

  .restaurants .wrap div img {
    width: 20%;
  }
}

@media (orientation:landscape) and (max-width: 900px) {
  header {
    min-height: 100vh;
    position: relative;
  }
}

@media (max-width: 800px) {

  /* section restaurants */

  .restaurants .wrap div img {
    width: 25%;
  }

}


@media (max-width: 700px) {

  /* section header */

  .logo {
    width: 60%;
  }

  /* section favorites */

  .dishes img {
    width: 40%;
  }

  /* section restaurants */

  .restaurants .wrap div img {
    width: 30%;
  }

  /* section eat  */

  .decor-small {
    width: 70%;
  }

  .hamb {
    background-size: 40%;
  }

  .healthy-food {
    background-size: 40%;
  }

  .vegeterian {
    background-size: 40%;
  }
}

@media (max-width: 600px) {
  /* section favorites */

  .dishes img {
    width: 100%;
    float: none;
    display: block;
    margin: 0 auto;
  }

  /* section types-of-food */
  .type-of-food {
    width: 100%;
  }

  /* section description */

  footer .wrap>div {
    width: 70%;
    margin: 20px auto;
  }

  footer {
    padding-bottom: 20px;
  }

  footer .wrap .iconsoc {
    width: 20%;
    margin: 25px 10px;
  }

  .footer {
    display: none;
  }
}



@media (max-width: 550px) {

  /* section restaurants */

  .restaurants .wrap div img {
    width: 50%;
    float: none;
    display: block;
    margin: 0 auto;
  }

}

@media (max-width: 500px) {

  /* section header */

  header {
    min-height: 100vh;
    position: relative;
  }

  nav ul {
    display: none;
    position: absolute;
    background-color: #e94f3d;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    height: 100%;
    padding-top: 20%;
    box-sizing: border-box;
  }

  .logo {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
  }

  .icon {
    display: none;
  }

  button.btn1 {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* section description */

  img.decor {
    width: 70%;
  }


  /* section eat  */

  .decor-small {
    width: 80%;
  }

  .hamb {
    background-size: 60%;
  }

  .healthy-food {
    background-size: 60%;
  }

  .vegeterian {
    background-size: 60%;
  }


  /* section restaurants */

  .restaurants .wrap div img {
    width: 80%;
  }

  .restaurants .wrap div h3 {
    padding: 0 15px;
  }

  .restaurants .wrap div h4 {
    padding: 0 15px;
  }

  .restaurants .wrap div p {
    padding: 0 15px;
  }

  .restaurants .wrap div a {
    padding-left: 15px;
  }

  /* section footer */

  .gmap_canvas {
    display: none;
  }

}

/* 
font-family: 'Righteous', cursive;
font-family: 'Open Sans', sans-serif; */