:root {
    --fs-xxl: clamp(2.4rem, 5vw, 2.8rem);
    --fs-biggest: clamp(3.2rem, 5vw, 6rem);
    --height-header: 10rem;
  }
  
  /* ------------- */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  h1,h2,h3,h4 {
    font-family:"Poppins", sans-serif;
    color: #002317;
    font-weight: 700;
  }
  html {
    font-size: 61.9%;
    scroll-behavior: smooth;
  }
  body,h1,h2,h3,h4,ul,p {
    margin: 0;
    padding: 0;
  }
  ul {
    list-style: none;
  }
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  a {
    text-decoration: none;
    color: #686666;
  }
  input, button {
    font: inherit;
    outline: none;
  }
  button {
    cursor: pointer;
    border: none;
  }
  main {
    overflow: hidden;
  }
  body {
    font-family:"Rubik", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color:#000000;
    margin-top: var(--height-header);
  }
   /* ---------------- */
  .section {
    padding: 4rem ;
  }
  .section__header {
    text-align: center;
    padding-bottom: 3rem;
  }
  .section__title {
    font-size: var(--fs-xxl);
    color: #002317;
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
  .section__subtitle {
    font-size: 4rem;
    font-weight: 700;
    color: #ff7b00;
    font-family: "Poppins", sans-serif;
  }
  .container {
    width: 100%;
    max-width: 100rem;
    margin: auto;
  }
  .d-grid {
    display: grid;
    gap: 3rem;
  }  
  .btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    transition: 0.4s ease-in-out;
  }  
  .btn--primary {
    background-color: #ff6600;
    color: #ffff;
    filter: drop-shadow(0 .72rem 1rem rgb(34, 34, 34));
  }  
  .btn--primary:hover {
    background-color: #ff9924;
  }

  @media (max-width: 768px) {
    .section {
      padding: 2rem;
    }
  
    .section__title {
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
  
    .section__subtitle {
      font-size: 3rem;
    }
  
    .d-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .btn {
      padding: 1rem 2rem;
      font-size: 1.7rem;
    }
  }
  
  @media (max-width: 480px) {
    .section {
      padding: 1rem;
    }
  
    .section__title {
      font-size: 1.8rem;
    }
  
    .section__subtitle {
      font-size: 2.5rem;
    }
  
    .btn {
      padding: 0.8rem 1.5rem;
      font-size: 1.7rem;
    }
  }
  
  /* ---------------- */
  .header {
    background-color: #ffff;
    width: 100%;
    height: var(--height-header);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    transition: 0.4s ease-in-out;
    z-index: 1010;
  }
  .header--scroll {
    --height-header: 7rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  }
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .nav__brand {
    font-size: 1.8rem;
    font-weight: 700;
    color:#002317;
  }
  .nav__brand span {
    color: #ff7b00;
  }  
  .nav__open, .nav__close {
    font-size: 2.5rem;
    color: #002317;
    cursor: pointer;
    transition: 0.4s ease-in-out;
  }  
  .nav__open:hover, .nav__close:hover {
    color: #ff7b00;
  }  
  .nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }  
  .nav__link {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #002317;
    transition: 0.4s ease-in-out;
  }  
  .nav__link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0.3rem;
    background-color: #ff7b00;
    bottom: -1rem;
    transition: 0.4s ease-in-out;
  }  
  .nav__link:hover {
    color:#ff7b00;
  }  
  @media screen and (max-width: 968px) {
    .nav__menu {
      position: fixed;
      top: 0;
      right: -100%;
      background-color: #ffff;
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 28rem;
      height: 100vh;
      transition: 0.4s ease-in-out;
    }  
    .nav__menu--open {
      right: 0;
    }  
    .nav__close {
      position: absolute;
      top: 3rem;
      right: 3rem;
    }
  }
  /* ------------------ */
  .newsletter__wrapper {
    background-color:#021527;
    border-radius: 2rem;
    padding: 5rem;
    justify-content: center;
    text-align: center;
    max-width: 80rem;
  }  
  .newsletter__title,
  .newsletter__description {
    color:#ffff;
    margin-bottom: 2rem;
  }  
  .form__group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }  
  .nn {
    width: 100%;
    max-width: 30rem;
    color: #ffffff;
    padding: 1.3rem 1.5rem;
    font-weight: bold;
  }  
  /* ----------------- */
  .footer__wrapper {
    padding: 8rem 0 3rem;
  }  
  .footer__brand {
    color: #002317;
    font-size: 2rem;
    margin-bottom: 1rem;
  }  
  .footer__brand span {
    color: #ff5e00;
  }  
  .footer__description {
    margin-bottom: 1.2rem;
    color: #848181;
  }  
  .social__list {
    display: flex;
    align-items: center;
    column-gap: 2rem;
  }  
  .social__link {
    font-size: 1.8rem;
    color: #002317;
    transition: 0.4s ease-in-out;
  }  
  .social__link:hover {
    color: #ff9100;
  }  
  .footer__title {
    color: #002317;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
  }  
  .footer__item {
    margin-bottom: 1rem;
  }  
  .footer__link {
    transition: 0.4s ease-in-out;
  }  
  .footer__link:hover {
    color: #ff7b00;
  }  
  .footer__copyright {
    text-align: center;
    font-size: 1.4rem;
    padding: 3rem 0;
    color: #000;
    font-weight: 500;
  }
  .footer__copyright span{
    color: #ff5e00;
  }  

  .fotimg {
    display: grid;
    justify-content: center; 
    align-items: center; 
  }

  .fotimg img {
    width: 100%; 
    max-width: 1200px; 
    height:auto; 
  }

  .footer__logo {
    width: 300px; 
    height: auto;
  }
  
  .logo__img {
    width: 100%; 
    height: auto;
  }
  
  @media only screen and (max-width: 768px) { 
    .footer__logo {
      display: none; 
    }
  }  
  
  /* ------------------ */
  @media screen and (min-width: 768px) {
    .home__wrapper {
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
    }  
    .home__content {
      text-align: initial;
    }  
    .home__img {
      justify-self: end;
    }  
    .about__wrapper {
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
    }  
    .about__content {
      text-align: initial;
    }  
    .about__img {
      order: -1;
    }  
    .swiper__navigation {
      justify-content: flex-end;
    }  
    .discover__wrapper {
      grid-template-columns: repeat(2, max-content);
    }  
    .offer__wrapper {
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
    }  
    .offer__content {
      text-align: initial;
    }
    .offer__img {
      justify-self: end;
    }  
    .footer__wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }  
  @media screen and (min-width: 968px) {
    .nav__open, .nav__close {
      display: none;
    }  
    .nav__list {
      flex-direction: initial;
    }  
    .Coffee__wrapper {
      max-width: 85rem;
    }  
    .discover__wrapper {
      grid-template-columns: repeat(3, max-content);
    }
    .discover__item:nth-child(2) {
      transform: translateY(2rem);
    }  
    .footer__wrapper {
      grid-template-columns: 2fr 1fr 1fr 1fr;
      justify-items: center;
    }
  }
  


.dedetail-section {
  padding-block: min(20vh, 2rem);
  width: calc(min(76.5rem, 90%));
  margin-inline: auto;
  color: #111;
}

.dedetail-section a {
  display: inline-block;
  text-decoration: none;
}

.dedetail .container {
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.dedetail .content h3 {
  text-transform: capitalize;
  font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
  text-align: center;
}

.dedetail .card-inner {
  position: relative;
  width: inherit;
  height: 25rem; 
  min-height: 30vh;
  background: var(--clr);
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.dedetail .box {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 1.25rem;
  overflow: hidden;
}

.dedetail .boxx {
  width: 100%;
  height: 100%;
  background: #001f3f;
  border-radius: 1.25rem;
  overflow: hidden;
}

.dedetail .imgBox {
  position: absolute;
  inset: 0;
}

.dedetail .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dedetail .icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 6rem;
  height: 6rem;
  background: var(--clr);
  border-top-left-radius: 50%;
}

@media (max-width: 768px) { 
  .dedetail .container {
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); 
  }
}


.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  width: 100%;
  height: auto;
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
  }
  
  .whatsapp-icon {
      width: 100%;
      height: auto;
  }
}

