*,
*::after,
*::before {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  color: rgb(127, 127, 144);
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.container {
  width: 90%;
  margin: auto;
}

h1,
h3 {
  color: #37373f;
  font-family: "Amatic SC", sans-serif;
  font-size: 50px;
  margin: 10px 0px;
}

h2,
h4 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin: 10px 0px;
}
a {
  text-decoration: none;
}
ul{
  padding: 0;
  margin: 0;
}
ul li{
  list-style: none;
}

/* header */
.header {
  background-color: rgb(238, 238, 238);
  height: 110vh;
  display: flex;
  align-items: center;
}
.header .two-div {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.header .delicios-food {
  width: 100%;
  text-align: center;
}
.delicios-food h1 {
  font-size: 50px;
  font-weight: 700px;
}
.delicios-food p {
  color: rgb(79, 79, 90);
  line-height: 25px;
  font-size: 14px;
}
.delicios-food .btns {
  display: flex;
  justify-content: center;
}

.delicios-food .btns .one {
  background-color: #e61414;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  color: white;
  margin-right: 20px;
  position: relative;
  top: 15px;
  padding: 10px 25px;
}
.delicios-food .btns .one:hover {
  background-color: red;
}
.delicios-food .btns .two {
  position: relative;
  color: black;
}

.cover {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  background-image: linear-gradient(to right, red 0 50%, transparent 50% 100%);
  margin-right: 10px;
  position: relative;
}
.delicios-food .btns .two .iconn {
  display: inline-block;
  width: 45px;
  height: 45px;
  background-color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  color: rgb(33, 37, 41);
  margin-right: 10px;
  position: relative;
  top: 7px;
  left: 7px;
}
.delicios-food .btns .two:hover,
.delicios-food .btns .two:hover i {
  color: red;
}

.header .img-food img {
  width: 25rem;
  transition: transform 0.5s;
  margin-bottom: 30px;
}
@keyframes moveImage {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5px, -5px);
  }
  50% {
    transform: translate(-5px, 5px);
  }
  75% {
    transform: translate(5px, 5px);
  }
  100% {
    transform: translate(-5px, -5px);
  }
}
.header .img-food img:hover {
  animation: moveImage 0.5s infinite alternate;
}
/* chefs */
.chefs,
.Gallery,
.Contact-Us {
  text-align: center;
  padding: 40px 0px;
}
.chefs h2,
.Gallery h2,
.Contact-Us h2 {
  margin-bottom: 0;
  padding-top: 40px;
  font-size: 18px;
}
.chefs h3,
.Gallery h3,
.Contact-Us h3 {
  margin: 0px 0px 40px 0px;
}
.chefs h3 span,
.Gallery h3 span,
.Contact-Us h3 span {
  color: rgb(206, 18, 18);
  font-size: 50px;
  margin: 0 10px;
  font-weight: 400;
}
.chefs .items .item {
  border-radius: 25px;
  margin-bottom: 30px;
}
.chefs .items .item .distanse {
  overflow: hidden;
  background-color: rgb(250, 245, 250);
  border-radius: 25px;
  position: relative;
}
.chefs .items .item:hover {
  transform: scale(1.1, 1.1);
}
.chefs .items .item img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  width: 100%;
}
.chefs .items .icons {
  width: 12%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff4d;
  position: absolute;
  top: 40px;
  right: 15px;
  border-radius: 15px;
  transform: translateX(200%);
  transition: transform 1s;
}
.chefs .items .icons a {
  padding-top: 15px;
  font-size: 25px;
  color: rgb(127, 127, 144);
}
.chefs .items .icons a:hover {
  color: black;
}
.chefs .items .item:hover .icons {
  transform: translateX(0px);
}
.chefs .item h4 {
  font-size: 19px;
  color: rgb(33, 37, 41);
  font-weight: 700;
}
.chefs .item span {
  font-size: 14px;
  color: rgb(127, 127, 144);
}
/*  Gallery */
.Gallery {
  background-color: #eeeeee;
}

.Gallery .items {
  columns: 3 250px;
  gap: 30px;
}
.Gallery .item img {
  width: 100%;
  display: block;
}
.Gallery .item .sub-item {
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.Gallery .item .layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 0.5s;
}

.Gallery .item .sub-item:hover .layer {
  transform: translateY(0);
}
.Gallery .item .sub-item:hover img {
  transform: scale(1.1, 1.1);
  transition: transform 0.5s;
}
.Gallery .layer .content {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.Gallery .content h2 {
  font-size: 20px;
  font-weight: 700;
}
.Gallery .content p {
  font-size: 15px;
}
/* Contact Us */
.Contact-Us iframe {
  width: 100%;
  height: 60vh;
}
.Contact-Us .items {
  margin: 20px 0px;
}
.Contact-Us .item {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  margin-bottom: 10px;
}
.Contact-Us .item .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #ce1212c4;
  position: relative;
}
.Contact-Us .item .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: white;
}
.Contact-Us .content a {
  color: #212529;
}
.Contact-Us .item .content {
  text-align: left;
  font-size: 15px;
  margin-left: 20px;
  color: #212529;
}
.Contact-Us .item .content span {
  font-weight: bolder;
}

.Contact-Us .item .content h4 {
  font-size: 20px;
  margin-left: 20px;
  color: #7d7d7d;
  margin: 0;
}
.Contact-Us .item .content p {
  margin: 10px 0px;
}
/* forms */
.Contact-Us form {
  margin: 20px 0px;
}
.Contact-Us form input,
textarea {
  width: 100%;
  padding: 20px;
  margin: 10px 0px;
  color: #212529;
  border: 1px solid rgb(127, 127, 144);
}
.Contact-Us form input[type="submit"] {
  background-color: #e61414;
  width: 35%;
  border-radius: 15px;
  padding: 15px;
  color: white;
}

/* footer */
.footer {
  background-color: black;
  padding: 40px 0px;
  color: white;
  font-size: 18px;
}
.footer .about ,.Subscribe,.contact{
  padding: 10px;
}

/* about */
.footer .about {
  text-align: center;
}
.footer .about .logo{
  display: flex;
  align-items: center;
  margin: 0;
}
.footer .about .logo img{
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.footer .about .logo h1{
  font-family: "Open Sans", system-ui;
  color: white;
  font-size: 40px;
}
.about .logo h1 span{
  color: red;
  font-size: 50px;
} 
.about p, .Subscribe p{
  text-align: left;
  margin: 0;
  font-size: 15px;
  margin-bottom: 20px;
 
}
.about h4,.Subscribe h4 ,.contact h4{
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0px;
}
.about hr{
  width: 100%;
}
.about .icons{
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-around;
   font-size: 35px;
   padding: 18px 0px;
}
.about .icons a{
 color: white;
}
/* subscribe */

.Subscribe .btns{
  display: flex;
  flex-direction: column;
}
.Subscribe .btns input,button{
  padding: 15px;
  margin-bottom: 10px;
  font-size: 15px;
}
.Subscribe .btns button{
  font-size: 20px;
  background-color: #E61414;
  color: white;
}
.Subscribe .Quick-Links {
  display: flex;
  justify-content: space-around;
 /*  background-color: #e61414; */

}
.Subscribe .left,.right{
  width: 45%;
}
.Subscribe .Quick-Links ul{
  width: 100%;
}
.Subscribe .Quick-Links ul li {
  width: 80%;
  margin: 10px 0px;
  transition: transform 1s;
  font-size: 16px;
}
.Subscribe .Quick-Links ul li:hover {
  transform: translateX(10%);
   background-color: #1f1616;

}
.Subscribe .Quick-Links ul li i{
  margin-right: 10px;
}
/* contact us */
.contact li{
  font-size: 14px;
  margin: 25px 0;
}
.contact li i{
  color: red;
  margin-right: 10px;
  font-size: 25px;
}
.contact li  a{
  color: white;
  font-size: 16px;
}












/* medium devices */
@media (min-width: 768px) {
  /* header */
  .header .two-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .header .img-food img {
    width: 20rem;
  }
  .header .two-div .delicios-food {
    width: 50%;
    font-size: 20px;
  }
  .header .delicios-food .btns {
    width: 30rem;
  }
  /* chefs */
  .chefs .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .chefs .items .item {
    padding: 20px;
  }

  .chefs .items .icons {
    position: absolute;
    top: 40px;
    right: 6%;
  }

  /* Contact us */
  .Contact-Us .items {
    display: flex;
    flex-wrap: wrap;
  }
  .Contact-Us .items .item {
    padding: 20px;
  }
  /* forms */
  .Contact-Us form {
    display: flex;
    flex-wrap: wrap;
  }
  .Contact-Us .name-mail {
    width: 49%;
    margin-right: 5px;
  }
  .Contact-Us .sub-erea {
    width: 100%;
  }
  .Contact-Us FORM input[type="submit"] {
    margin: auto;
    margin-top: 15px;
    width: 25%;
  }
  /* footer */
.footer .items{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0px;
  justify-content: center;
}
.footer .about ,.Subscribe ,.contact{
  padding: 20px;
}
.Subscribe .Quick-Links ul li {
  font-size: 14px;
}
  .Subscribe .btns{
  display: flex;
  flex-direction: row;
  }

.Subscribe .btns input,button{
  font-size: 15px;
}
.Subscribe .btns button{
  font-size: 16px;
  margin-left: 10px;
}

  }





/* large devices */
@media (min-width: 1024px) {
  .header .img-food img {
    width: 28rem;
  }
  .Contact-Us iframe {
    height: 50vh;
  }
  .Subscribe .btns input,button{
  font-size: 15px;
}
 .Subscribe .btns input{
  padding: 0px 10px;
  width: 70%;
 }
.Subscribe .btns button{
  font-size: 15px;
  margin-left: 10px;
  padding: 10px 0px ;
  width: 30%;
}
}
/* extra large */
@media (min-width: 1280px) {
}
/* extra extra large */
@media (min-width: 1536px) {
}

/* small devices */
@media (min-width: 640px) {
  .chefs .items .icons {
    width: 10%;
  }
}
