* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* nav */

#product {
  color: #ffc642;
  text-decoration: underline;
}


/* mobile */

#productDropdown{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

#productDropdown a{
  text-decoration: none;
}





/* nav end */

/* ---------------------  body --------------------- */

/* hero */
@media (max-width: 580px) {
  #hero {
    /* border: solid 3px red; */
    margin: 40px 0 8vw 0;
  }
}
@media (min-width: 580px) and (max-width: 770px) {
  #hero {
    /* border: solid 3px red; */
    margin: 50px 0 4vw 0;
  }
}

.hero {
  margin: 80px 0 8vw 0;
}

.hero img {
  width: 100%;
}

/* hero end */

/* grid */
@media (max-width: 580px){
  #proGrid{
    grid-template-columns: repeat(1, 1fr);
    width: 90vw !important;
    gap: 30px !important;
  }

  #proGrid .gridBox{
    width: 100% !important;
    padding: 20px !important;
  }

  #proGrid .gridBox h3{
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-top: 10px !important;
    min-height: auto !important;
  }

  #proGrid .gridBox p{
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  #proGrid .gridBtn{
    width: auto !important;
    max-width: 160px !important;
    display: flex !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    height: 42px !important;
  }

  #proGrid .gridBtn a{
    font-size: 13px !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 580px) and (max-width: 772px) {
  #proGrid{
    grid-template-columns: repeat(2, 1fr);
    width: 90vw !important;
    gap: 30px !important;
  }

  #proGrid .gridBox{
    width: 100% !important;
    padding: 20px !important;
  }

  #proGrid .gridBox h3{
    font-size: 18px !important;
    line-height: 1.3 !important;
    min-height: auto !important;
  }

  #proGrid .gridBox p{
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  #proGrid .gridBtn{
    width: auto !important;
    max-width: 160px !important;
    display: flex !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    height: 42px !important;
  }

  #proGrid .gridBtn a{
    font-size: 13px !important;
    white-space: nowrap !important;
  }
}
.proGrid {
  /* border: solid 1px red; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 90vw;
  margin: auto;
}

.gridBox {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  background-color: #fff;
  box-sizing: border-box;
}

.gridBox:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #0da574;
}

.gridBox img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  border-radius: 4px;
}

.gridBox h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  color: #000810;
  margin-top: 15px;
  margin-bottom: 10px;
}

.Gline {
  width: 100%;
  border: none;
  height: 1px;
  background-color: #e2e8f0;
  margin: 12px 0;
}

.gridBox p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  color: #4a5568;
  text-align: left !important;
}

.gridBtn {
  border: 1px solid #ffc631;
  width: fit-content;
  height: auto;
  display: inline-flex;
  padding: 8px 18px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: transparent;
  transition: all 0.3s ease;
}

.gridBtn:hover {
  background-color: #ffc631;
}

.gridBtn a {
  text-decoration: none;
  color: #000810;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}

/* grid end */

/* ready  */

@media (max-width: 580px) {
  #transform .transBox {
    width: 90% !important;
  }

  #transform .transBox h1 {
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  #transform .transBox p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  #transform .transBtn {
    font-size: 12px !important;
    width: auto !important;
    height: auto !important;
    min-height: 40px !important;
    padding: 10px 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
  }
}

@media (min-width: 580px) and (max-width: 780px) {
  #transform .transBox {
    width: 90% !important;
  }

  #transform .transBox h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  #transform .transBox p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  #transform .transBtn {
    font-size: 13px !important;
    width: auto !important;
    height: auto !important;
    min-height: 44px !important;
    padding: 10px 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
  }
}

.transBox {
  z-index: 20;
  /* border: solid 1px red; */
}

.transform {
  width: 100%;
  /* height: 590px; */
  padding: 4vw 0;
  background: linear-gradient(85deg, #0da574 0%, #001f3f 100%),
    url(../img/products/Group.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.transBox {
  width: 61vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.3vw;
}

.transBox h1 {
  color: var(--brand-color-1, #ffc631);
  text-align: center;
  font-size: 3.75vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.transBox p {
  color: var(--off-white, #e9e6e6);
  text-align: center;
  font-size: 1.42vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42vw;
  width: 44vw;
}

.transBtn {
  display: inline-flex;
  height: 3.525vw;
  padding: 0.938vw 1.563vw;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: #ffc631;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  color: #000810;
  font-size: 0.938vw;
  font-weight: 600;
  cursor: pointer;
}

/* ready end */

/* contact */

@media (max-width: 580px) {
  #contact {
    /* border: solid 1px red; */
    gap: 20px;
    padding: 2px;
    margin: auto;
    flex-direction: column;
  }

  #contact .contactForm {
    /* border: solid 1px red; */
    width: 98%;
  }

  #contact .contactForm .formBox {
    /* border: solid 1px yellow; */
    width: 100%;
  }

  #contact .contactForm h1 {
    width: 100%;
    font-size: 6vw;
    line-height: 4.5vw;
  }

  #contact .contactDetails {
    /* border: solid 1px red; */
    width: 100%;
  }

  #contact .formBox button {
    width: 100%;
    height: 62px;
    border: none;
    padding: 18px 30px;
    background: #ffc631;
  }

  #contact .formBox input,
  #contact .formBox textarea {
    height: 44px;
  }

  #contact .form-floating textarea {
    /* border: solid 1px #fd0000; */
    height: 68px !important;
  }

  #contact .contactDetails h2 {
    font-size: 6vw;
  }

  #contact .contactDetails p {
    margin: 0;
    font-size: 3vw;
  }
}

@media (min-width: 580px) and (max-width: 770px) {
  #contact {
    /* border: solid 1px red; */
    padding: auto;
    margin: auto;
    flex-direction: column;
  }

  #contact .contactForm {
    /* border: solid 1px red; */
    width: 90%;
  }

  #contact .contactForm .formBox {
    /* border: solid 1px yellow; */
    width: 100%;
  }

  #contact .contactForm h1 {
    width: 100%;
    font-size: 4.5vw;
    line-height: 4.5vw;
  }

  #contact .contactDetails {
    /* border: solid 1px red; */
    width: 100%;
  }

  #contact .formBox button {
    width: 100%;
    height: 62px;
    border: none;
    padding: 18px 30px;
    background: #ffc631;
  }

  #contact .contactDetails h2 {
    font-size: 5vw;
  }

  #contact .contactDetails p {
    margin: 0;
    font-size: 2vw;
  }
}

.lineText {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.lineText p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  /* line-height: 22px; */
  margin: 0;
  padding: 0;
}

.contact {
  padding: 9.64vw 12vw 180px 12vw;
  display: flex;
  justify-content: space-between;
  gap: 5.729vw;
}

.contactForm h1 {
  width: 21.9vw;
  color: #000810;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5vw;
  margin: 0;
  padding: 0;
}

.formBox {
  width: 34vw;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

.formBox div {
  display: flex;
  gap: 10px;
}

.formBox input,
.formBox textarea {
  flex: 1;
  width: 100%;
  height: 2.92vw;
  padding-left: 20px;
  box-sizing: border-box;
  border: 1px solid #a9a9a9;
}

#floatingTextarea2:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #a9a9a9;
}

.formBox button {
  width: 34vw;
  border: none;
  padding: 18px 30px;
  background: #ffc631;
}

.contactDetails {
  padding-top: 50px;
}

.contactDetails h2 {
  font-size: 1.975vw;
}

.contactDetails p {
  margin: 0;
  font-size: 0.933vw;
}

.contactDetailsP1 {
  color: #a9a9a9;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-top: 20px !important;
}

.contactDetailsP2 {
  color: #000810;
  width: 280px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

/* ------------------ body end ----------------------- */
