@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@500&family=Aclonica&family=Agbalumo&family=Akaya+Telivigala&family=Alegreya:wght@600&family=Allura&family=Bakbak+One&family=Bellota:wght@700&family=DM+Sans:opsz@9..40&family=Great+Vibes&family=IBM+Plex+Mono:wght@700&family=IBM+Plex+Sans+Condensed:wght@700&family=Italianno&family=Kaushan+Script&family=Metal+Mania&family=Open+Sans&family=Oswald:wght@700&family=Pacifico&family=Parisienne&family=Poppins:wght@300&family=Princess+Sofia&family=Sacramento&family=WindSong:wght@400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "OSWald";
}

body {
  overflow-x: hidden;
  /* background-color: var(--secondary); */
  --featured_header: 100px;
  --nav_height: 80px;
  /*--primary: #cbb9ff;
  --secondary: #f4f5ff;
  --dark_purple: #4b25bc;*/
  --primary: #BDE0FE;
  --secondary: #f4f5ff;
  --dark_purple: #006BA6;
}

.navbar {
  width: 100vw;
  height: var(--nav_height);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  background-image: linear-gradient(90deg, #f4f5ff,#a6d3fba0);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.8s;
}

.navbar.scrolled {
  background-color: var(--primary);
  background-image:none;
}

.Featured_Products {
  width: 100vw;
  height: auto;
  margin-top: var(--nav_height) 0 0 0;
  background-image: linear-gradient(90deg, #f4f5ff, #a6d3fba0);
  overflow: hidden;
  gap: 20px;
  position: relative;
}
.products_content {
  width: 100vw;
  height: var(--featured_header);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 120px 0 0 0;
  font-size: 1.2rem;
}

.Company_Name {
  margin: -5px 0 0 0;
}

.products {
  width: 100vw;
  height: auto;
  display: flex;
}

.Featured_product {
  width: 100vw;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: -100px;
}

.Features_Products_Header {
  font-size: clamp(1rem, 6vw, 3rem);
}

.FP_Left {
  width: 40%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  text-wrap: nowrap;
  padding: 20px;
}

.FP_header_Wrapper {
  width: 100%;
  height: 120px;
}

.FP_header {
  width: 100%;
  height: auto;
  font-size: clamp(2rem, 6vw, 4.4rem);
  color: #111111;
  text-align: left;
  text-transform: capitalize;
}

.FP_info {
  font-size: clamp(8px, 6vw, 15px);
  text-wrap: balance;
  font-family: 'Montserrat';
  font-weight: 500;
  line-height: 26px;
}

.navigate {
  height: 100px;
  width: clamp(30px, 6vw, 100px);
  font-size: clamp(1rem, 6vw, 4rem);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  opacity: 0.3;
  transition: 0.3s;
  background-color: transparent;
}
.navigate-left {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.navigate-right {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.navigate:hover {
  opacity: 1;
  background-color: var(--primary);
}

.Image_Wrapper {
  width: 400px;
  height: 380px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff32;
}

.About_Company {
  width: 95%;
  height: max(calc(100vh - var(--nav_height)), 550px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--secondary);
  margin: 100px 0 0 2.5%;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary),
    0 0 30px var(--primary);
}

.About_header {
  text-align: center;
  font-family: "oswald";
  font-size: clamp(1rem, 7vw, 3rem);
}

.About_hero {
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 50px; */
}

.hero_left,
.hero_right {
  width: 40%;
  height: 80%;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  border-radius: 10px;
  box-shadow: 0 0 10px #cab9ff69;
  overflow: hidden;
}

.hero_left {
  width: max(40%, 500px);
  padding: 20px;
  background-color: #ffffff63;
  font-family: "poppins";
  line-height: 30px;
  font-weight: 500;
  text-align: left;
}

.About_ComapnyName {
  font-weight: bold;
  font-size: 1.5rem;
}



@media (max-width: 800px) {
  .FP_header_Wrapper {
    overflow: visible;
  }
  .Featured_product {
    width: 100vw;
    height: calc(100svh - var(--nav_height));
  }
  .FP_Left {
    width: 100vw;
    height: AUTO;
    margin: 100px 0 0 0;
  }

  .FP_header_Wrapper {
    height: auto;
  }

  .FP_header {
    width: 100vw;
    display: flex;
    text-wrap: balance;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 -20px;
  }
  .FP_header,
  .FP_info {
    text-align: center;
  }
  #featured_image {
    width: clamp(300px, 7vw, 400px);
  }
  .Image_Wrapper {
    height: 400px;
  }
  .navigate {
    z-index: 100;
  }
}





.About_Company {
  width: 95%;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--secondary);
  margin: 100px 0 0 2.5%;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary),
    0 0 30px var(--primary);
}

.About_header {
  text-align: center;
  font-family: "oswald";
  font-size: clamp(1rem, 7vw, 3rem);
}

.About_hero {
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 50px; */
}

.hero_left,
.hero_right {
  width: 40%;
  height: 80%;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  border-radius: 10px;
  box-shadow: 0 0 10px #cab9ff69;
  overflow: hidden;
}

.hero_left {
  width: max(40%, 500px);
  padding: 20px;
  background-color: #ffffff63;
  font-family: "poppins";
  line-height: 30px;
  font-weight: 500;
  text-align: left;
  font-size: 13px;
}

.About_ComapnyName {
  font-weight: 500;
  font-size: 1.5rem;
  font-family: 'Montserrat';
}



/* Custom styles */

.Gradient_Text{
  background-image: linear-gradient( 270deg, var(--dark_purple), #835df6a2, var(--dark_purple));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}