* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
}

:root {
  /*#E4D2BC*/
  --bg-color: rgb(10, 22, 38);

  --second-color: #a30000;

  --btn-color: #cc0000;
  --title-color: #6cc431;
  --text-color: #f5f5f5;
  --other-color: #a9abb1;
  --big-font: 3.5rem;
  --h2-font: 2.2rem;
  --p-font: 1.2rem;
}

body {
  color: var(--text-color);
  background-color: rgb(10, 22, 38);
}

header {
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 25px 18%;
  z-index: 1000;
  transition: all 0.35s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.pulsating-image {
  animation: pulse 3s ease-in-out infinite;
}

.logo img {
  max-width: 100%;
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar a {
  font-size: var(--p-font);
  color: var(--text-color);
  padding: 10px 28px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.navbar a:hover {
  color: var(--second-color);
}

/* .navbar a.active{
	color: var(--second-color);
} */
.navbar a.cart {
  font-size: 30px;
}

#menu-icon {
  color: var(--text-color);
  font-size: 40px;
  z-index: 10001;
  cursor: pointer;
  display: none;
}

.top-btn a {
  display: inline-block;
  background: var(--btn-color);
  color: var(--text-color);
  padding: 15px 32px;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
}

.top-btn a:hover {
  background: var(--second-color);
  color: var(--other-color);
  border: none;
  transition: 0.5s;
}

section {
  padding: 80px 18%;
}

.home {
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.2), #06121e),
    url(../assets/bg-banner.jpg);
  background-size: cover;
  background-position: center center;
  height: 90vh;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 3rem;
}

.home-text h1 {
  margin: 20px 0px 20px;
  font-size: var(--big-font);
  font-weight: bold;
  color: var(--title-color);
}

.home-text h1 span {
  background: linear-gradient(40deg, #c80428,rgb(138, 14, 37));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-text p {
  font-size: var(--p-font);
  color: var(--other-color);
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: "Open Sans", sans-serif;
}

.btn {
  display: inline-block;
  background: var(--btn-color);
  color: var(--text-color);
  padding: 17px 32px;
  border-radius: 10px;
  border: none;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0px 5px 15px 0px var(--btn-color);
  opacity: 0.9;
  margin-top: 30px;
}

.btn:hover {
  background: var(--second-color);
  opacity: 1;
  color: var(--other-color);
  transition: 0.5s;
}

.home-img img {
  width: 100%;
  height: auto;
}

.about {
  background-image: linear-gradient(rgba(6, 18, 30, 0.8), #06121e),
    url(../img/backgroun-blur.jpg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-color: rgb(17, 29, 51);
	background-image: linear-gradient(to top, rgba(6, 18, 30, 0.6), #06121e); */
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  align-items: center;
  grid-gap: 1rem;
}

.about-img {
  margin-bottom: 20px;
}

.about-img img {
  width: 80%;
  height: auto;
  padding: 10px;
}

.about-text h2 {
  margin: 15px 0px 15px;
  font-size: var(--h2-font);
  line-height: 1.1;
  color: var(--title-color);
}

.about-text h2 span {
  background: linear-gradient(40deg, #c80428, #6cc431);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text h3 {
  color: var(--second-color);
  font-size: 25px;
  font-weight: 600;
  margin: 15px 0px 15px;
}

.about-text p {
  text-align: justify;
  font-size: var(--p-font);
  color: var(--other-color);
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: "Open Sans", sans-serif;
}

header.sticky {
  background-color: rgb(17, 29, 51);
  padding: 12px 18%;
  box-shadow: 0px 0px 1px #13084982;
}

.center-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.center-text h2 {
  margin: 5px 0px 0px;
  font-size: var(--h2-font);
  line-height: 1.1;
  color: var(--title-color);
}

.center-text h2 span {
  background: linear-gradient(to right, #6cc431, #c80428);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.center-text h3 {
  color: var(--second-color);
  font-size: 25px;
  font-weight: 600;
}

.center-text p {
  text-align: center;
  margin-top: 30px;
  font-size: var(--p-font);
  color: var(--other-color);
  line-height: 27px;
  font-weight: 400;
  display: flex;
  max-width: 70%;
}

.container-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  width: 100%;
  height: auto;
  margin-top: 36px;
}

.container-video img {
  position: absolute;
  text-align: end;
  right: 0;
  margin-right: 70px;
  margin-top: -280px;
  height: 250px;
}

.container-video video {
  width: 60%;
  max-width: 80%;
  border-radius: 20px;
  box-shadow: 0px 5px 10px rgba(68, 128, 78, 0.425);
}

.menu {
  background-image: linear-gradient(rgba(6, 18, 30, 0.8), #06121e),
    url(../img/backgroun-blur.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  /* background-color: rgb(10, 22, 38);	 */
}

.menu-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, auto));
  grid-gap: 2rem;
  align-items: center;
  margin-top: 4.5rem;
}

.box {
  background-image: linear-gradient(90deg, rgb(10, 22, 38), rgb(12, 29, 48));
  padding: 10px 30px 10px 30px;
  border: 1px solid green;
  box-shadow: 0px 5px 10px rgb(19 8 73 / 13%);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.box-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.box-img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.box-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.box-text h4 {
  text-align: center;
  color: var(--title-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.box-text p {
  text-align: center;
  font-size: var(--p-font);
  color: var(--other-color);
  font-weight: 400;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
}

.box-text a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: none;
  font-size: 16px;
  color: var(--title-color);
  gap: 8px;
  font-style: italic;
}

.box-text a i {
  font-size: 22px;
}

.box-text a:hover {
  color: var(--other-color);
}

.box:hover {
  transform: scale(1.04) translateY(-5px);
}

.box-btn {
  text-align: center;
  margin-top: 2rem;
}

.nutri-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.menu-nutri {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nutri-container h3 {
  color: var(--title-color);

  margin: 32px 0 60px;
  font-size: var(--h2-font);
  font-weight: 600;
}

.nutri-container h3 span {
  background: linear-gradient(to right, #c80428, #6cc431, #c80428);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-nutri h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 12px;
  margin-left: 25px;
}

.menu-content-nutri {
  display: flex;
  justify-content: center;
  width: 100%;
}

.box-nutri {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  background-image: linear-gradient(270deg, rgb(10, 22, 38), rgb(12, 29, 48));
  padding: 26px;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.menu-nutri ul li {
  display: flex;
  color: var(--other-color);
  margin-bottom: 12px;
}

.menu-nutri ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--title-color);
  margin-right: 5px;
}

.container {
  background: #04be6854;
  padding: 60px 70px;
  box-shadow: 0px 5px 40px rgba(7, 228, 25, 0.233);
  border-radius: 20px;
  margin-top: -30px;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.news-img {
  max-width: 200px;
  max-height: 200px;
}

.news-img img {
  max-width: 100%;
  max-height: 100%;
}

.news-text i {
  margin: 15px 0px 15px;
  font-size: 62px;
  line-height: 1.1;
  color: var(--title-color);
}

.news-text h3 {
  color: var(--text-color);
  font-size: 30px;
  font-weight: 600;
}

.news-text p {
  font-size: var(--p-font);
  color: var(--other-color);
  font-weight: 400;
  line-height: 30px;
  font-style: italic;
}

.letter button {
  background-color: transparent;
  border: none;
  position: relative;
  width: 350px;
  max-width: 100%;
}

.letter button a {
  background-color: rgb(9, 206, 9);
  display: inline-block;
  width: 100%;
  padding: 16px 15px 16px 15px;
  border: none;
  outline: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0px 10px 10px 0px rgba(17, 211, 17, 0.664);
}

.letter button a:hover {
  background-color: rgb(12, 80, 12);
  transition: all 1s ease;
  box-shadow: 0px 0px 0px 0px rgba(17, 211, 17, 0.664);
}

.blog {
  background-color: rgb(10, 22, 38);
  /* background: url(../img/blog.svg);
	background-size: cover;
	background-position: center left; */
}

.blog-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 250px));
  grid-gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  border-radius: 20px;
}

.main {
  padding: 0px 0px 10px 0px;
  border-radius: 20px;
  border: 1px solid var(--title-color);
  /* box-shadow: 0px 5px 40px rgb(19 8 73 / 13%); */
  transition: all 0.4s ease;
}

.blog-content img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px 20px 0px 0px;
}

.blog-text {
  padding: 20px 15px;
}

.blog-text h4 {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.blog-text p {
  font-size: var(--p-font);
  color: var(--other-color);
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 20px;
}

.blog-btn {
  display: flex;
  align-items: center;
}

.blog-btn a {
  font-size: var(--p-font);
  color: var(--title-color);
  margin-right: 10px;
  cursor: pointer;
  font-style: italic;
}

.blog i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--title-color);
  cursor: pointer;
}

.blog-btn a:hover,
.blog i:hover {
  color: var(--other-color);
}

.main:hover {
  transform: scale(1.04) translateY(-5px);
}

.contact {
  background-image: linear-gradient(90deg, rgb(10, 22, 38), rgb(12, 29, 48));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  grid-gap: 2rem;
}

.contact-box h3 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: 20px;
}

.contact-box h5 {
  color: var(--other-color);
  font-size: 14px;
  font-weight: 600;
  color: var(--other-color);
}

.social {
  display: flex;
  margin-top: 1.7rem;
}

.social i {
  font-size: 24px;
  margin-right: 1rem;
  color: var(--title-color);
  transition: all 0.4s ease;
}

.social i:hover {
  transform: scale(1.3);
  color: var(--title-color);
}

.contact-box li {
  margin-bottom: 14px;
}

.contact-box li a {
  display: block;
  color: var(--other-color);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.contact-box li a:hover {
  transform: translateX(10px);
  color: var(--title-color);
}

.address {
  display: flex;
  flex-direction: column;
}

.address i {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: var(--btn-color);
}

.address span {
  margin-left: 1rem;
  color: var(--other-color);
}

.end-text {
  text-align: center;
}

.end-text p {
  color: var(--other-color);
  font-size: 14px;
  letter-spacing: 2px;
  padding: 20px;
}

@media (max-width: 1640px) {
  .home {
    height: 90vh;
    padding-top: 100px;
  }

  header {
    padding: 14px 3%;
    transition: 0.3s;
  }

  header.sticky {
    padding: 10px 3%;
    transition: 0.3s;
  }

  section {
    padding: 70px 3%;
    transition: 0.3s;
  }
}

@media (max-width: 1110px) {
  #menu-icon {
    display: block;
  }

  .top-btn {
    display: none;
  }

  .navbar {
    position: absolute;
    top: -700px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    align-items: flex-start;
    box-shadow: 0px 0px 1px #13084982;
    transition: all 0.4s ease;
  }

  .navbar a {
    display: block;
    padding: 0.8rem;
    margin: 0.5rem;
  }

  .navbar.open {
    top: 100%;
  }
}

@media (max-width: 1090px) {
  :root {
    --big-font: 3.7rem;
    --h2-font: 2.6rem;
    --p-font: 1rem;
    transition: 0.3s;
  }
}

@media (max-width: 880px) {
  .home {
    height: 90vh;
    padding-top: 100px;
  }

  section {
    padding: 80px 3%;
  }

  :root {
    --big-font: 3.2rem;
    --h2-font: 2.2rem;
  }
}

@media (max-width: 760px) {
  header .navbar {
    background: var(--bg-color);
  }

  .home {
    grid-template-columns: 1fr;
    height: 80vh;
    grid-gap: 1rem;
  }

  .home-text {
    text-align: center;
  }

  .home-text h1 {
    margin-top: -5px;
    font-weight: bold;
    color: var(--title-color);
    font-size: 1.8rem;
  }

  .home-text h3 {
    font-size: 1.2rem;
  }

  .home-img {
    text-align: center;
  }

  .home-img img {
    width: 400px;
    max-width: 100%;
    height: auto;
  }

  .about {
    background-image: linear-gradient(to top, rgba(6, 18, 30, 0.7), #06121e),
      url(../img/backgroun-blur.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    margin-top: -60px;
  }

  .about-text {
    text-align: center;
  }

  .about-text p {
    text-align: center;
  }

  .about-img {
    order: 2;
    text-align: center;
  }

  .about-img img {
    padding-top: 0px;
    margin-bottom: -100px;
  }

  section {
    padding: 50px 5%;
    transition: 0.3s;
  }

  .center-text p {
    text-align: center;
    margin-top: 30px;
    font-size: var(--p-font);
    color: var(--other-color);
    line-height: 27px;
    font-weight: 400;
    display: flex;
    max-width: 100%;
    padding: 6px;
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .box {
    width: 90%;
  }

  .container-video {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 100%;
    height: auto;
    margin-top: 36px;
  }

  .container-video img {
    display: none;
  }

  .container-video video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgba(19, 8, 73, 0.233);
  }

  .nutri-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .nutri-container h3 {
    text-align: center;
    font-size: 2rem;
  }

  .menu-nutri {
    flex-direction: column;
    gap: 26px;
  }

  .menu-nutri h4 {
    margin-left: 22px;
  }

  .container {
    padding: 60px 70px;
    margin-top: -30px;
  }

  .newsletter-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .news-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .news-text h3 {
    font-size: 1.3rem;
  }

  .news-text p {
    width: 100%;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
  }

  .letter button {
    max-width: 250px;
    display: flex;
    align-items: center;
  }

  .blog h2 {
    font-size: 2rem;
    text-align: center;
  }

  .blog-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
