@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500;600&display=swap");
* {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-transform: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: #040708;
}
html::-webkit-scrollbar-thumb {
  background: #eacf4f;
  border-radius: 5rem;
}

body {
  background: url(../images/background.jpg);
  background-attachment: fixed;
  background-position: center;
  overflow-x: hidden;
}

section {
  padding: 3rem 9%;
}

.heading {
  text-align: center;
  margin-bottom: 3rem;
}
.heading h3 {
  font-size: 3rem;
  text-transform: none;
  color: #fff;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  cursor: pointer;
  color: #fff;
  border: 0.2rem solid rgba(255, 255, 255, 0.3);
  background: no-repeat;
  font-size: 1.7rem;
  padding: 1rem 3rem;
}
.btn:hover {
  color: #040708;
  background: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #040708;
  padding: 3rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 0.2rem solid rgba(255, 255, 255, 0.3);
}
.header .icons {
  font-size: 2.5rem;
  cursor: pointer;
  color: #fff;
}
.header .icons:hover {
  color: #eacf4f;
}
.header #menu-btn {
  display: none;
}
.header #logo2 {
  display: none;
}
.header .navbar a {
  color: #fff;
  font-size: 2rem;
  margin: 0 2rem;
}
.header .navbar a:hover {
  text-decoration: underline;
  text-underline-offset: 1rem;
  color: #eacf4f;
}
.header .navbar .space {
  display: inline-block;
  width: 16rem;
}
.header .logo {
  position: absolute;
  top: 2rem;
  left: 48.5%;
  transform: translateX(-50%);
}
.header .logo img {
  width: 13rem;
}
.header .logo .fa-times {
  transform: rotate(360deg);
}
.header .search-form {
  height: 7rem;
  padding: 0 2rem;
  border-top: 0.2rem solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  background: #040708;
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.header .search-form.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.header .search-form input {
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 1.6rem;
  color: #fff;
}
.header .search-form label {
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}
.header .search-form label:hover {
  color: #eacf4f;
}
.header .fa-times {
  transform: rotate(180deg);
}

.home {
  margin-top: 7rem;
  background: url(../images/home-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.home .burger-hours {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.home .burger-hours .image {
  flex: 1 1 40rem;
}
.home .burger-hours .image img {
  width: 100%;
}
.home .burger-hours .openhours {
  flex: 1 1 20rem;
}
.home .burger-hours .openhours .icons {
  text-align: center;
}
.home .burger-hours .openhours .icons i {
  height: 6rem;
  width: 6rem;
  line-height: 6rem;
  border-radius: 50%;
  background: #eacf4f;
  color: #040708;
  font-size: 5rem;
  margin-bottom: 1rem;
}
.home .burger-hours .openhours .icons .box h3 {
  padding: 0.5rem 0;
  font-size: 2rem;
  text-transform: none;
  color: #fff;
}
.home .content {
  max-width: 70rem;
  text-align: center;
  margin: 0 auto;
  margin-top: 5rem;
}
.home .content h3 {
  font-size: 4rem;
  text-transform: none;
  color: #fff;
}
.home .content p {
  font-size: 1.7rem;
  line-height: 2;
  color: #aaa;
  padding: 2rem 0;
}

.service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}
.service .box {
  text-align: center;
  padding: 2rem;
}
.service .box i {
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  font-size: 2.5rem;
  color: #040708;
  background: #eacf4f;
  margin-bottom: 1rem;
  border-radius: 50%;
}
.service .box h3 {
  padding: 1rem 0;
  font-size: 2rem;
  text-transform: none;
  color: #fff;
}
.service .box p {
  font-size: 1.5rem;
  line-height: 2;
  color: #aaa;
}

.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}
.menu .box-container .box {
  text-align: center;
}
.menu .box-container .box:hover img {
  transform: translateY(1.1rem);
}
.menu .box-container .box img {
  height: 25rem;
}
.menu .box-container .box .content {
  padding: 1rem 0;
}
.menu .box-container .box .content .stars {
  margin-bottom: 1rem;
}
.menu .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: #eacf4f;
}
.menu .box-container .box .content .happyh i {
  font-size: large;
  color: #fff;
}
.menu .box-container .box .content h3 {
  font-size: 2rem;
  text-transform: none;
  color: #fff;
}
.menu .box-container .box .content h5 {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #aaa;
}
.menu .box-container .box .content .price {
  font-size: 2.5rem;
  line-height: 2;
  color: #aaa;
}

.about {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  background: url(../images/about-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.about .image {
  flex: 1 1 40rem;
}
.about .image:hover img {
  transform: translateY(1.1rem);
}
.about .image img {
  width: 100%;
}
.about .content {
  flex: 1 1 40rem;
}
.about .content .title {
  font-size: 2.5rem;
  text-transform: none;
  color: #fff;
}
.about .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #aaa;
  padding: 2rem 0;
}
.about .content .icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.about .content .icons h3 {
  flex: 1 1 16rem;
  font-size: 1.5rem;
  text-transform: none;
  color: #fff;
}
.about .content .icons h3 i {
  padding-right: 0.5rem;
  color: #eacf4f;
}

.reviews .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}
.reviews .box-container .box {
  text-align: center;
  padding: 2rem;
}
.reviews .box-container img {
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.reviews .box-container h3 {
  font-size: 2rem;
  text-transform: none;
  color: #fff;
}
.reviews .box-container p {
  font-size: 1.4rem;
  line-height: 2;
  color: #aaa;
  padding: 1rem 0;
}
.reviews .box-container .stars {
  padding-top: 0.5rem;
}
.reviews .box-container .stars i {
  font-size: 1.7rem;
  color: #eacf4f;
}

.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact .row .map {
  flex: 1 1 40rem;
}
.contact .row .form {
  flex: 1 1 40rem;
}
.contact .row .form .icons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact .row .form .icons-container .icons {
  flex: 1 1 17rem;
  text-align: center;
}
.contact .row .form .icons-container .icons i {
  height: 6rem;
  width: 6rem;
  line-height: 6rem;
  border-radius: 50%;
  background: #eacf4f;
  color: #040708;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact .row .form .icons-container .icons h3 {
  padding: 1rem 0;
  font-size: 2rem;
  text-transform: none;
  color: #fff;
}
.contact .row .form .icons-container .icons p {
  font-size: 1.5rem;
  line-height: 2;
  color: #aaa;
}
.contact .row .form form {
  text-align: center;
}
.contact .row .form form .box {
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: #fff;
  background: none;
  border: 0.2rem solid rgba(255, 255, 255, 0.3);
  text-transform: none;
  width: 100%;
  margin: 0.8rem 0;
}
.contact .row .form form .box:focus {
  border-color: #eacf4f;
}
.contact .row .form form textarea {
  height: 15rem;
  resize: none;
}

.blogs .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}
.blogs .box-container .box {
  position: relative;
}
.blogs .box-container .box:hover .image img {
  transform: scale(1.1);
}
.blogs .box-container .box:hover .image .icons {
  transform: translateY(0);
}
.blogs .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  position: relative;
}
.blogs .box-container .box .image .icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: #040708;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(10rem);
}
.blogs .box-container .box .image .icons a {
  font-size: 1.5rem;
  color: #fff;
}
.blogs .box-container .box .image .icons a i {
  padding-right: 0.5rem;
  color: #eacf4f;
}
.blogs .box-container .box .image .icons a:hover {
  color: #eacf4f;
}
.blogs .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blogs .box-container .box .content {
  text-align: center;
  padding: 2rem;
}
.blogs .box-container .box .content h3 {
  font-size: 2rem;
  text-transform: none;
  color: #fff;
}
.blogs .box-container .box .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #aaa;
  padding: 1.5rem 0;
}

.footer {
  text-align: center;
  background: linear-gradient(transparent, #040708);
}
.footer .links a {
  margin: 1rem;
}
.footer .credit {
  font-size: 2rem;
  line-height: 2;
  color: #aaa;
  padding-top: 2rem;
}
.footer .credit span {
  color: #eacf4f;
}

.footer-about {
  background-color: #040708;
  padding: 70px 0;
  border-top: 0.2rem solid rgba(255, 255, 255, 0.3);
}
.footer-about .container {
  max-width: 1170px;
  margin: auto;
}
.footer-about .container ul {
  list-style: none;
}
.footer-about .container .row {
  display: flex;
  flex-wrap: wrap;
}
.footer-about .container .row .footer-col {
  width: 25%;
  padding: 0 15px;
}
.footer-about .container .row .footer-col img {
  max-width: 20rem;
  margin-bottom: 30px;
}
.footer-about .container .row .footer-col h4 {
  font-size: 2rem;
  text-transform: none;
  color: #fff;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-about .container .row .footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #eacf4f;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-about .container .row .footer-col ul li::not(:last-child) {
  margin-bottom: 10px;
}
.footer-about .container .row .footer-col ul li a {
  font-size: 1.5rem;
  line-height: 2;
  color: #aaa;
  transition: all 0.3s ease;
}
.footer-about .container .row .footer-col ul li a:hover {
  color: #eacf4f;
  padding-left: 10px;
}
.footer-about .container .row .footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s ease;
}
.footer-about .container .row .footer-col .social-links a:hover {
  color: #24262b;
  background-color: #fff;
}

@media (max-width: 1200px) {
  .header {
    padding: 3rem;
  }
  section {
    padding: 3rem 2rem;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header {
    justify-content: flex-end;
    gap: 2rem;
  }
  .header #logo2 {
    display: block;
  }
  .header #logo {
    display: none;
  }
  .header .logo {
    transform: translateX(0);
    left: 3rem;
  }
  .header .logo img {
    width: 45rem;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #040708;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 3rem 2rem;
  }
  .header .navbar .space {
    display: none;
  }
}
@media (max-width: 768px) {
  .home .content h3 {
    font-size: 4rem;
  }
  .footer-about .container .row .footer-col {
    width: 25%;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 51%;
  }
  .header .logo {
    transform: translateX(0);
    left: 3rem;
    top: 2.5rem;
  }
  .header .logo img {
    width: 35rem;
  }
  .footer-about .container .row .footer-col {
    width: 100%;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .header .logo {
    transform: translateX(0);
    left: 3rem;
    top: 3rem;
  }
  .header .logo img {
    width: 25rem;
  }
}
@media (max-width: 358px) {
  html {
    font-size: 45%;
  }
  .header .logo {
    transform: translateX(0);
    left: 3rem;
    top: 3rem;
  }
  .header .logo img {
    width: 20rem;
  }
}/*# sourceMappingURL=style.css.map */