@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: poppins;
}
html,
body {
  scroll-behavior: smooth;
}

body {
  position: relative;
}
h1,
h2 {
  font-size: 2rem;
  letter-spacing: 2px;
}
h3 {
  font-size: 1.8rem;
}
a {
  text-decoration: none;
  color: #333;
}

.center-align {
  text-align: center;
}
.center-item {
  margin: 0 auto;
}
.color-white {
  color: #fff;
}
.container {
  width: min(90%, 45rem);
  display: block;
  margin: 0 auto;
}
.description-text {
  font-size: 0.8rem;
}
.display {
  display: block;
}
.heading {
  font-weight: 600;
  letter-spacing: 1px;
}
.gray-text {
  color: #555;
}
.green-text {
  font-size: 1.25rem;
  color: #91ac41;
  font-family: "Caveat", cursive;
}
.grid {
  display: grid;
  place-items: center;
}
.pointer {
  cursor: pointer;
}
.text {
  font-size: 1rem;
}

/* 
Header
*/

header {
  height: 12%;
  backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img {
  height: 3.5rem;
  width: 3.5rem;
  filter: drop-shadow(2px 2px 4px #ccc);
  margin-left: 0.25rem;
}
header i {
  font-size: 2rem;
  margin-right: 0.75rem;
  color: green;
}
header nav {
  display: none;
  position: relative;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: 4rem;
  background-color: #fff;
  border-radius: 8px;
  min-width: 14rem;
  margin-right: 1rem;
}
header nav > a {
  margin: 1rem;
  display: block;
}

#menu-items {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  margin-top: -1rem;
  display: none;
}
#menu-items > a {
  margin: 0.25rem 0.5rem;
  padding: 0.5rem 0.5rem 0 0.5rem;
  border-bottom: 1px solid #ccc;
}

#menu-link > i {
  margin: 2px 0 2px 2px;
}

/* 
Landing Section
*/

#landing-section {
  background: url("https://edyoda.s3.ap-south-1.amazonaws.com/public/landing-background.png");
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#landing-section h1 {
  padding-top: 5rem;
}

/* 
Steps-section
*/

#steps-section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
}
#steps-section:where(i, h2) {
  margin-bottom: 0.5rem;
}
#steps-section i {
  font-size: 5rem;
  transition: 0.5s;
}
#steps-section i:hover {
  transform: scale(1.2);
}

/* 
Store Section
*/

#store-section {
  background-color: #f7eee2;
}
#store-section .green-text {
  padding-top: 5rem;
}
#store-section .box {
  padding: 3rem 0;
}
#store-section .icon-wrapper {
  background-color: #e3b375;
  transition: 0.5s;
  width: 8rem;
  height: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
}
#store-section i {
  font-size: 5rem;
}
#store-section .icon-wrapper:hover {
  transform: scale(1.1);
}

/* 
Review Section
*/

#review-section {
  margin-top: 5rem;
  padding: 0 0.5rem;
}
#review-section .box {
  background-color: #f5f6fb;
  border-radius: 20%;
  border-top-right-radius: 0;
  margin: 1rem auto;
  padding: 1rem;
  max-width: 20rem;
  height: 100%;
}
#review-section .box:hover {
  box-shadow: 4px 4px 4px #ccc;
}
#review-section img {
  height: 5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 1rem auto;
}
#review-section .box p {
  font-style: italic;
}
#review-section h4 {
  margin-top: 0.5rem;
}

/* 
Mail Section
*/

#mail-section {
  margin-top: 3rem;
}
#mail-section img {
  width: 100%;
}
#mail-section h2 {
  padding-top: 2.5rem;
}
#mail-section input {
  padding: 1rem;
  outline: none;
  border: transparent;
  background-color: transparent;
  letter-spacing: 1px;
}
#mail-section button {
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  border: transparent;
  background-color: #f69dad;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
}
#mail-section button:hover {
  background-color: transparent;
  color: #555;
  border: 1px solid #f69dad;
}

#mail-wrapper {
  height: 60vh;
  background: url("https://edyoda.s3.ap-south-1.amazonaws.com/public/strawberry-white.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* 
Stats-section
*/

#stats-section {
  background-color: #f6fcfa;
}
#stats-section h2 {
  padding-top: 2rem;
}
#stats-section p {
  font-style: italic;
  color: #57e3b5;
}
#stats-section p:last-of-type {
  padding-bottom: 2rem;
}

/* 
video-section
*/

#video-section {
  height: 50vh;
}
#video-section h2 {
  padding-top: 2rem;
}
#video-section div {
  background-color: #e4b476;
  margin: 1rem auto;
  height: 1px;
  width: min(40vw, 8rem);
}
#video-section iframe {
  width: min(95%, 50rem);
  height: 50%;
}

/* 
Contact Section            
*/

#address-section,
form {
  padding: 1rem;
}

#contact-section .input-box {
  margin-top: 1rem;
  padding: 1rem;
  outline: none;
  border: 1px solid #e5e6ec;
  caret-color: #555;
  width: min(100%, 30rem);
  border-radius: 5px;
}
#contact-section button {
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  outline: none;
  border: transparent;
  border-radius: 8px;
  background-color: green;
}

/* 
Footer
*/

footer {
  background-color: #232323;
  margin-top: 1rem;
  height: 15vh;
}

/* 
Mediaqueries
*/

@media (min-width: 480px) {
  header img {
    height: 4rem;
    width: 4rem;
    margin-left: 1rem;
  }
  header i {
    font-size: 2.25rem;
    margin-right: 1rem;
  }
  header nav {
    min-width: 15.5rem;
  }

  #video-section {
    height: 60vh;
  }
  #video-section iframe {
    height: 60%;
  }

  #contact-section h3 {
    text-align: left;
  }
}

@media (min-width: 770px) {
  h1,
  h2 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 1.9rem;
  }

  .green-text {
    font-size: 1.5rem;
  }
  .description-text {
    font-size: 1rem;
  }
  .text {
    font-size: 1.1rem;
  }

  header img {
    height: 4.5rem;
    width: 4.5rem;
  }
  header i {
    visibility: hidden;
  }
  header nav {
    display: block;
    top: 0.5rem;
    right: 0;
    background: transparent;
    margin-right: 0;
  }
  header nav > a {
    display: inline;
  }

  #menu-items {
    background-color: #fff;
    position: absolute;
    border-top: 2px solid green;
    box-shadow: 0 0 6px 2px #ccc;
    top: 2.75rem;
    left: -2rem;
    margin-top: 0;
  }
  #menu-items:hover {
    display: block;
  }
  #menu-items > a:last-of-type {
    border-bottom: none;
  }

  #menu-link > i {
    display: none;
  }

  #review-section .box {
    max-width: 25rem;
  }

  #video-section {
    height: 80vh;
  }
  #video-section iframe {
    height: 70%;
  }

  #contact-section :where(.green-text, h2) {
    text-align: left;
  }
  #contact-section button {
    display: inline;
  }
}

@media (min-width: 1025px) {
  h1,
  h2 {
    font-size: 2.5rem;
  }

  .description-text {
    font-size: 1rem;
  }

  header img {
    margin-left: 2rem;
  }

  #steps-section {
    display: flex;
  }
  #steps-section .box {
    width: 25%;
  }
  #steps-section .box * {
    margin: 0.5rem auto;
  }

  #store-section .box-wrapper {
    display: flex;
    justify-content: space-around;
    max-width: 85%;
    gap: 1rem;
    margin: 0 auto;
  }
  #store-section .box {
    width: 25%;
  }
  #store-section .box * {
    margin: 0.5rem auto;
  }

  #review-section .box-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto;
    max-width: 85%;
  }
  #review-section .box {
    max-width: 20rem;
    margin: 0.5rem;
  }

  #mail-section {
    display: flex;
  }
  #mail-section h2 {
    padding-top: 8rem;
  }
  #mail-section img {
    width: 70%;
    height: 90vh;
  }

  #mail-wrapper {
    width: 30%;
    height: 90vh;
  }

  #stats-section .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 40vh;
    max-width: 80%;
    margin: 0 auto;
  }

  #contact-section {
    display: flex;
  }
  #contact-section h3 {
    margin-top: 1rem;
  }

  #address-section,
  form {
    padding: 3rem;
  }

  #address-section p:nth-of-type(2) {
    line-height: 1.75;
  }
  #address-section p:nth-of-type(3),
  #address-section p:nth-of-type(4) {
    line-height: 2;
  }
}

@media (min-width: 1200px) {
  h1,
  h2 {
    font-size: 2.75rem;
  }
}
