:root {
  --primary-color: #4caf50;
  --secondary-color: #148ddd;
  --background-color: #414141;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  color: #ffffff;
  /* height: 4000px; */
}

/* navbar style start*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(2, 2, 2, 0.8);
  border-bottom: 1px solid var(--primary-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

/* navbar logo style start */
.navbar .navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  font-style: italic;
}
/* navbar logo style ends */

/* navbar logo text span style start */
.navbar .navbar-logo span {
  color: var(--primary-color);
}
/* navbar logo text span style ends*/

/* navbar menu style start */
.navbar .navbar-link a {
  color: #ffffff;
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 1rem;
}
.navbar .navbar-link a:hover {
  color: var(--primary-color);
}

.navbar .navbar-link a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid var(--primary-color);
  transform: scaleX(0);
  transition: 0.3s linear;
}

.navbar .navbar-link a:hover::after {
  transform: scaleX(0.5);
}
/* navbar menu style ends */

/* navbar extra style start */
.navbar .navbar-extra a,
.navbar .navbar-extra i {
  color: #ffffff;
  margin: 0 0.5rem;
  font-size: 1.6rem;
}

.navbar .navbar-extra a:hover,
.navbar .navbar-extra i:hover {
  color: var(--primary-color);
}

#hamburger-menu {
  display: none;
}

.navbar .search-form {
  position: absolute;
  top: 100%;
  right: 7%;
  background-color: rgb(255, 255, 255);
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s;
}

.navbar .search-form.active {
  transform: scaleY(1);
}

.navbar .search-form input {
  height: 100%;
  width: 100%;
  font-size: 1.6rem;
  color: #414141;
  padding: 1rem;
  border-radius: 1rem;
}

.navbar .search-form label {
  cursor: pointer;
  font-size: 2rem;
  margin-right: 1.2rem;
}
.navbar .search-form i {
  color: #414141;
}
/* navbar extra style ends */

/* navbar style ends*/

/* Hero Section Style Start */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("BG.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-blend-mode: darken;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 28%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgb(65, 65, 65) 8%,
    rgba(255, 255, 255, 0) 50%
  );
}

.hero .content {
  padding: 1.4rem 7%;
  max-width: 70rem;
}

.hero .content h1 {
  font-size: 5em;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(1, 1, 1, 0.5);
  line-height: 1.2;
}

.hero .content h1 span {
  color: var(--primary-color);
}

.hero .content p {
  font-size: 1.6rem;
  color: #ffffff;
  margin-top: 1rem;
  font-weight: 200;
  text-shadow: 1px 1px 3px rgba(1, 1, 1, 0.5);
  mix-blend-mode: difference;
}

.hero .content .btn-cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: 0.6rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
/* Hero Section Style Ends */

/* About Section Style Start */
.about,
.menu,
.products,
.contact {
  padding: 8rem 7% 1.4rem;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
}

.about h2,
.menu h2,
.products h2,
.contact h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
}

.about h2 span,
.menu h2 span,
.products h2 span,
.contact h2 span {
  color: var(--primary-color);
}

.about .row {
  display: flex;
}

.about .row .about-img {
  flex: 1 1 45rem;
}

.about .row .about-img img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 35rem;
  padding: 0 1rem;
}

.about .row .content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about .row .content p {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 200;
}
/* About Section Style Ends */

/* Menu Section Style Start */
.menu h2,
.products h2,
.contact h2 {
  margin-bottom: 1rem;
}
.menu p,
.products p,
.contact p {
  text-align: center;
  max-width: 40rem;
  margin: auto;
  font-weight: 200;
  line-height: 1.6;
}

.menu .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5rem;
}

.menu .row .card-menu {
  text-align: center;
  padding-bottom: 4rem;
}

.menu .row .card-menu img {
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  width: 80%;
}

.menu .row .card-menu .card-menu-title {
  margin-top: 1.5rem auto 0.5rem;
}
/* Menu Section Style Ends */

/* Contact Section Style Start */
.contact .row {
  display: flex;
  margin-top: 2rem;
  background-color: #2e2e2e;
}

.contact .row .maps {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
}

.contact .row form {
  flex: 1 1 45rem;
  padding: 5rem 2rem;
  text-align: center;
}

.contact .row form .input-group {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  background-color: var(--background-color);
  border: 1px solid var(--primary-color);
  border-radius: 3rem;
  padding-left: 2rem;
}

.contact .row form .input-group input {
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  background: none;
  color: #ffffff;
}

.contact .row form .btn-submit {
  margin-top: 3rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  color: #ffffff;
  background-color: var(--primary-color);
  cursor: pointer;
  border: 1px solid #ffffff;
  border-radius: 2rem;
}
/* Contact Section Style Ends */

/* Footer Section Style Start */
footer {
  background-color: var(--primary-color);
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
  border-top: 1px solid black;
}

footer .social {
  padding: 1rem 0;
}

footer .social a {
  color: #ffffff;
  margin: 1rem;
}

footer .social a:hover,
footer .links a:hover {
  color: #414141;
}

footer .links {
  margin-bottom: 1.4rem;
}

footer .links a {
  color: #ffffff;
  padding: 0.7rem 1rem;
}

footer .credit {
  font-size: 0.8rem;
}

footer .credit span {
  color: var(--background-color);
  font-weight: 700;
}

footer .credit a {
  color: var(--secondary-color);
  font-weight: 700;
}
/* Footer Section Style Ends */

/* ===================================== */
/* Media Queries */

/* Laptop 1440 */
@media (max-width: 1440px) {
  html {
    font-size: 75%;
  }
}

/* Tablet 768 */
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  #hamburger-menu {
    display: inline-block;
  }

  .navbar .navbar-link {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: #ffffff;
    width: 30rem;
    height: 100vh;
    transition: 0.3s ease-in-out;
  }

  .navbar .navbar-link.active {
    right: 0;
  }

  .navbar .navbar-link a {
    color: var(--background-color);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }

  .navbar .navbar-link a::after {
    transform-origin: 0 0;
  }

  .navbar .navbar-link a:hover::after {
    transform: scaleX(0.1);
  }

  .navbar .search-form {
    width: 85%;
    right: 2rem;
  }

  .about .row {
    flex-wrap: wrap;
  }

  .about .row .about-img img {
    height: 24rem;
    object-fit: cover;
    object-position: center;
  }

  .about .row .content {
    padding: 0;
  }

  .about .row .content h3 {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .about .row .content p {
    font-size: 1.6rem;
  }

  .menu p {
    font-size: 1.5rem;
  }

  .contact .row {
    flex-wrap: wrap;
  }

  .contact .row .maps {
    height: 30rem;
    padding: 0.5rem 4%;
  }

  .contact .row form {
    padding-top: 0;
  }
}

/* Phone 424 */
@media (max-width: 425px) {
  html {
    font-size: 45%;
  }
}
