@import url("https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600;700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.oswald {
  font-family: "Oswald", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.nunito {
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.hind-madurai-light {
  font-family: "Hind Madurai", serif;
  font-weight: 300;
  font-style: normal;
}

.hind-madurai-regular {
  font-family: "Hind Madurai", serif;
  font-weight: 400;
  font-style: normal;
}

.hind-madurai-medium {
  font-family: "Hind Madurai", serif;
  font-weight: 500;
  font-style: normal;
}

.hind-madurai-semibold {
  font-family: "Hind Madurai", serif;
  font-weight: 600;
  font-style: normal;
}

.hind-madurai-bold {
  font-family: "Hind Madurai", serif;
  font-weight: 700;
  font-style: normal;
}

html, body {
  width: 100%;
  height: 100%;
}

#main {
  font-family: Oswald;
  color: #292b2c;
  background-color: #e1f9e1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

p, a {
  font-family: "Hind";
}

h1 {
  font-weight: 400;
}

.page1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0 2rem;
}
.page1 nav {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page1 nav .l {
  width: 30%;
  display: flex;
  gap: 2rem;
}
.page1 nav .l p:nth-child(1) {
  padding-left: 5%;
  font-size: 1rem;
}
.page1 nav .l p:nth-child(2) {
  font-style: italic;
  font-size: 1rem;
  color: #6c6c6c;
  transition: all 0.3s ease;
}
.page1 nav .l p:nth-child(2):hover {
  color: #292b2c;
  text-decoration: underline;
}
.page1 nav .logo {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page1 nav .logo img {
  width: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.page1 nav .r {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.page1 nav .r i {
  font-size: 2rem;
}
.page1 .top {
  padding-top: 10rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
}
.page1 .top #top-span {
  width: 100%;
  display: flex;
  align-items: end;
  padding-left: 1%;
  margin-bottom: -3%;
  justify-content: start;
  font-size: 1.2rem;
}
.page1 .top h1 {
  font-size: 12rem;
  letter-spacing: 1rem;
  font-weight: 300;
  color: #292b2c;
  text-align: justify;
  width: 100%;
  transition: all 1s ease;
}
.page1 .top h1 span {
  color: #6c6c6c;
  opacity: 90%;
}
.page1 .top h1 span:hover {
  color: #292b2c;
}
.page1 .cta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30vh;
}
.page1 .cta .btn {
  width: 50%;
  display: flex;
  gap: 2rem;
}
.page1 .cta .btn button {
  font-size: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: 5px;
  border: none;
  color: #e1f9e1;
  background-color: #292b2c;
  cursor: pointer;
  transition: all 0.5s ease;
}
.page1 .cta .btn button:hover {
  background-color: #e1f9e1;
  border: 1px solid #292b2c;
  color: #292b2c;
  cursor: pointer;
}
.page1 .cta p {
  width: 50%;
  font-size: 1.2rem;
  text-align: start;
  padding-right: 5%;
}
.page1 .buttom {
  padding-top: 2rem;
  width: 100%;
  height: 90vh;
  padding-bottom: 0;
}
.page1 .buttom img {
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page1 .buttom .marquee-1 {
  top: -5%;
  width: 100%;
  height: 5rem;
  position: relative;
  display: flex;
  color: #e1f9e1;
  background-color: #292b2c;
  align-items: center;
}
.page1 .buttom .marquee-1 .moving-1 {
  overflow-x: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.page1 .buttom .marquee-1 .moving-1 h1 {
  padding-left: 2rem;
  text-transform: uppercase;
  text-align: center;
  font-family: Nunito;
  font-weight: 300;
}
.page1 .buttom .marquee-1 .moving-1 div {
  padding-left: 1rem;
  white-space: nowrap;
  display: flex;
  animation-name: move;
  align-items: center;
  justify-content: center;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.page2 {
  padding: 5rem 2rem;
  width: 100%;
  height: 100vh;
  background-color: #292b2c;
  color: #e1f9e1;
}
.page2 h1 {
  font-size: 5rem;
  border-bottom: 2px solid #e1f9e1;
}
.page2 .con {
  padding: 2rem 0;
  width: 100%;
  height: 70vh;
  display: flex;
}
.page2 .con .left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page2 .con .left p {
  padding-top: 3rem;
  font-size: 1.5rem;
  padding-right: 15rem;
  line-height: 1.5;
}
.page2 .con .left a {
  width: -moz-fit-content;
  width: fit-content;
  color: #e1f9e1;
  padding-right: 2rem;
  text-decoration: none;
  position: relative;
}
.page2 .con .left a:hover {
  color: #ffffff;
  transition: all 0.3s ease;
}
.page2 .con .left a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px; /* Thickness of the underline */
  background-color: #ffffff; /* Underline color */
  transition: all 0.3s ease; /* Smooth transition */
}
.page2 .con .left a:hover::after {
  width: 80%;
}
.page2 .con .right {
  flex: 0.8;
  display: flex;
  align-items: end;
  justify-content: end;
}
.page2 .con .right p {
  font-size: 1.2rem;
}

.page3 {
  padding: 5rem 2rem;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 40% 30% 30%;
  grid-row: 50% 50%;
  gap: 1rem;
  grid-template-areas: "a b c" "a d e";
}
.page3 .marquee-2 {
  top: -5%;
  width: 100%;
  height: 5rem;
  position: relative;
  display: flex;
  color: #e1f9e1;
  background-color: #292b2c;
  align-items: center;
}
.page3 .marquee-2 .moving-2 {
  overflow-x: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.page3 .marquee-2 .moving-2 h1 {
  padding-left: 2rem;
  text-transform: uppercase;
  text-align: center;
  font-family: Nunito;
  font-weight: 300;
}
.page3 .marquee-2 .moving-2 div {
  padding-left: 1rem;
  white-space: nowrap;
  display: flex;
  animation-name: move;
  align-items: center;
  justify-content: center;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.page3 .a {
  grid-area: a;
  text-orientation: initial;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  margin: 1rem 0;
  border-right: 2px solid #292b2c;
}
.page3 .a h1 {
  font-size: 5rem;
  border-bottom: 3px solid #292b2c;
}
.page3 .a .marquee-2 {
  top: 0;
  width: 100%;
  height: 3rem;
  position: relative;
  display: flex;
  color: #e1f9e1;
  background-color: #292b2c;
  align-items: center;
}
.page3 .a .marquee-2 .moving-2 {
  overflow-x: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.page3 .a .marquee-2 .moving-2 div {
  padding-left: 1rem;
  white-space: nowrap;
  display: flex;
  animation-name: move;
  align-items: center;
  justify-content: center;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.page3 .a .marquee-2 .moving-2 div h1 {
  font-size: 1rem;
}
@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.page3 .b {
  grid-area: b;
  display: flex;
  padding: 2rem 0;
  border-right: 1px solid #6c6c6c;
  border-bottom: 1px solid #292b2c;
}
.page3 .b .l {
  width: 20%;
  padding-left: 1rem;
}
.page3 .b .l h1 {
  font-size: 4rem;
  color: transparent;
  -webkit-text-stroke: 2px #292b2c;
}
.page3 .b .r {
  width: 80%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.page3 .b h2 {
  font-size: 2rem;
  font-weight: 300;
}
.page3 .c {
  grid-area: c;
  display: flex;
  padding: 2rem 0;
}
.page3 .c .l {
  width: 20%;
  padding-left: 1rem;
}
.page3 .c .l h1 {
  font-size: 4rem;
  color: #292b2c;
}
.page3 .c .r {
  width: 80%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.page3 .c h2 {
  font-size: 2rem;
  font-weight: 300;
}
.page3 .d {
  grid-area: d;
  display: flex;
  padding: 2rem 0;
}
.page3 .d .l {
  width: 20%;
  padding-left: 1rem;
}
.page3 .d .l h1 {
  font-size: 4rem;
  color: #292b2c;
}
.page3 .d .r {
  width: 80%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.page3 .d h2 {
  font-size: 2rem;
  font-weight: 300;
}
.page3 .e {
  grid-area: e;
  display: flex;
  padding: 2rem 0;
  border-top: 1px solid #292b2c;
  border-left: 1px solid #292b2c;
}
.page3 .e .l {
  width: 20%;
  padding-left: 1rem;
}
.page3 .e .l h1 {
  font-size: 4rem;
  color: transparent;
  -webkit-text-stroke: 2px #292b2c;
}
.page3 .e .r {
  width: 80%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.page3 .e h2 {
  font-size: 2rem;
  font-weight: 300;
}

.page4 {
  padding: 3rem 0;
  width: 100%;
  height: 100%;
}
.page4 .top {
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  background-color: #292b2c;
  color: #e1f9e1;
}
.page4 .top h1 {
  font-size: 5rem;
}
.page4 .product {
  height: 10rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #292b2c;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.page4 .product .l {
  padding-left: 2rem;
  width: 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #292b2c;
}
.page4 .product .l h1 {
  font-size: 4.5rem;
}
.page4 .product .c {
  padding-left: 5rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #292b2c;
  height: 100%;
}
.page4 .product .c h2 {
  font-size: 3rem;
  font-weight: 300;
}
.page4 .product .c p {
  font-size: 1rem;
  color: #6c6c6c;
}
.page4 .product .r {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.page4 .product .r button {
  font-size: 1.5rem;
  background: transparent;
  border: none;
}
.page4 .product .r button:hover {
  text-decoration: underline;
  font-style: normal;
}
.page4 .product:hover {
  background-color: #292b2c;
  color: #e1f9e1;
}
.page4 .product:hover button {
  color: #e1f9e1;
  text-decoration: underline;
  cursor: pointer;
}
.page4 .buttom {
  width: 100%;
  height: 10vh;
  display: flex;
  align-items: end;
  justify-content: center;
  margin-top: 2rem;
}
.page4 .buttom button {
  padding: 1.5rem 2rem;
  border-radius: 5px;
  border: none;
  background-color: #292b2c;
  color: #e1f9e1;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.page4 .buttom > button:hover {
  background-color: #e1f9e1;
  border: 1px solid #292b2c;
  color: #292b2c;
  cursor: pointer;
}

.page5 {
  width: 100%;
  height: 100%;
}
.page5 .mark .marquee-3 {
  top: -5%;
  width: 100%;
  height: 5rem;
  position: relative;
  display: flex;
  color: #e1f9e1;
  background-color: #292b2c;
  align-items: center;
}
.page5 .mark .marquee-3 .moving-3 {
  overflow-x: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.page5 .mark .marquee-3 .moving-3 h1 {
  padding-left: 2rem;
  text-transform: uppercase;
  text-align: center;
  font-family: Nunito;
  font-weight: 300;
}
.page5 .mark .marquee-3 .moving-3 div {
  padding-left: 1rem;
  white-space: nowrap;
  display: flex;
  animation-name: move;
  align-items: center;
  justify-content: center;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.page5 .mark .marquee-4 {
  top: -5%;
  width: 100%;
  height: 5rem;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #292b2c;
}
.page5 .mark .marquee-4 .moving-4 {
  overflow-x: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.page5 .mark .marquee-4 .moving-4 h1 {
  padding-left: 2rem;
  text-transform: uppercase;
  text-align: center;
  font-family: Nunito;
  font-weight: 300;
}
.page5 .mark .marquee-4 .moving-4 div {
  padding-left: 1rem;
  white-space: nowrap;
  display: flex;
  animation-name: moveer;
  align-items: center;
  justify-content: center;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes moveer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

.page6 {
  width: 100%;
  margin-top: 5rem;
  padding: 3rem;
  background-color: #292b2c;
  color: #e1f9e1;
}
.page6 .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: start;
}
.page6 .top p {
  font-size: 1.2rem;
}
.page6 .top h1 {
  font-size: 10rem;
}
.page6 .buttom {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-top: 5rem;
}
.page6 .buttom .l {
  width: 50%;
  display: flex;
}
.page6 .buttom .l p {
  width: 50%;
}
.page6 .buttom .r {
  width: 50%;
  display: flex;
}
.page6 .buttom .r p {
  font-size: 2rem;
  padding-right: 60%;
}

footer {
  background: #e1f9e1;
  color: #6c6c6c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
  width: 100%;
  border-top: 2px solid #e1f9e1;
  height: 40vh;
}
footer .l {
  display: flex;
  gap: 1rem;
  width: 30%;
}
footer .l a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: #292b2c;
}
footer .c {
  width: 10rem;
  width: 40%;
  display: contents;
  align-items: center;
  justify-content: center;
}
footer .c img {
  width: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .r {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: end;
}
footer .r .a {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #292b2c;
}
footer .r .a a {
  text-decoration: none;
  font-size: 3rem;
  color: #e1f9e1;
  animation: updown 1.5s ease-in-out infinite;
}
@keyframes updown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}/*# sourceMappingURL=style.css.map */