@import url("https://fonts.googleapis.com/css2?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&display=swap");
*, ::after, ::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui;
}

button {
  display: block;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: "Poppins", system-ui;
  transition: all 0.3s ease-in-out;
}
button:hover {
  transform: scale(1.02);
}

a {
  text-decoration: none;
}

#landing_page header.header_wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  background-color: #ffffff;
  height: 75px;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
}

#openCatalogIframe{
  opacity: 0;
}

@media (min-width: 1024px) {
  #landing_page header.header_wrapper {
    height: 100px;
  }
}
#landing_page header.header_wrapper img {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#landing_page .cta_primary {
  background-color: #0065b3;
  color: white;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 16px;
  margin: 1rem auto;
  text-decoration: none;
}
@media (max-width: 1024px) and (orientation: landscape) {
  #landing_page .cta_primary {
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #landing_page .cta_primary {
    font-size: 22px;
  }
}
#landing_page .cta_secondary {
  background-color: #ED277F;
  color: white;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #landing_page .cta_secondary {
    font-size: 22px;
  }
}
#landing_page .hero_wrapper {
  position: relative;
  height: calc(100svh - 75px);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (min-width: 1024px) {
  #landing_page .hero_wrapper {
    height: calc(100vh - 100px);
  }
}
@media (max-width: 1023px) and (orientation: landscape) {
  #landing_page .hero_wrapper {
    display: block;
  }
}
#landing_page .hero_wrapper .hero_fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
@media (orientation: landscape) {
  #landing_page .hero_wrapper .hero_fixed {
    width: 30%;
    max-width: 430px;
  }
}
@media (min-width: 768px) {
  #landing_page .hero_wrapper .hero_fixed {
    width: 30%;
    max-width: 430px;
  }
}
#landing_page .hero_wrapper .hero_content {
  padding: 0 1rem;
  position: relative;
  width:100%;
  height:100%;
}
@media (min-width: 1024px) {
  #landing_page .hero_wrapper .hero_content {
    z-index: 2;
  }
}
#landing_page .hero_wrapper .hero_content .hero_image {
	background-image: url('../images/hero_image2.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
	max-width: 664px;
    height: calc(100% - 150px);
    margin: 0 auto;
}
@media (max-width: 1024px) and (orientation: landscape) {
  #landing_page .hero_wrapper .hero_content .hero_image {
    height: calc(100% - 80px);
  }
}
#landing_page .hero_wrapper .down_btn {
  /* position: absolute; */
  /* bottom: 0.5rem; */
  /* left: 50%; */
  margin-left:50%;
  transform: translate(-50%, 0);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0065b3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  animation: bounce 0.8s infinite;
}
@media (min-width: 1024px) {
  #landing_page .hero_wrapper .down_btn {
    width: 50px;
    height: 50px;
  }
}
#landing_page .hero_wrapper .down_btn img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#landing_page #landing_content {
  padding: 1rem;
}
@media (min-width: 1024px) {
  #landing_page #landing_content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 10rem 4rem 10rem;
  }
}
#landing_page #landing_content .landing_break {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}
#landing_page #landing_content .landing_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: all 2s ease-in-out;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #landing_page #landing_content .landing_box {
    gap: 3rem;
  }
}
#landing_page #landing_content .landing_box.reverse {
  flex-direction: row-reverse;
}
#landing_page #landing_content .landing_box.visible_element {
  opacity: 1;
}
#landing_page #landing_content .landing_box .box_info {
  width: 50%;
  transition: all 2s ease-in-out;
}
#landing_page #landing_content .landing_box .box_info .box_title {
  color: #0065b3;
  font-weight: bold;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 1rem;
}
#landing_page #landing_content .landing_box .box_info .box_title.custom_green {
  color: #15A648;
}
#landing_page #landing_content .landing_box .box_info .box_title.custom_yellow {
  color: #ffcb05;
}
#landing_page #landing_content .landing_box .box_info .box_title.custom_pink {
  color: #ED277F;
}
#landing_page #landing_content .landing_box .box_info .box_title.custom_red {
  color: #ED1B24;
}
@media (min-width: 1024px) {
  #landing_page #landing_content .landing_box .box_info .box_title {
    font-size: 20px;
  }
}
#landing_page #landing_content .landing_box .box_info .box_text {
  color: black;
  font-size: 16px;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  #landing_page #landing_content .landing_box .box_info .box_text {
    font-size: 16px;
  }
}
#landing_page #landing_content .landing_box .box_image {
  width: 50%;
  /* max-height: 700px; */
  transition: all 2s ease-in-out;
}
#landing_page #landing_content .landing_box .box_image img {
  width: 100%;
  max-width: 500px;
}
#landing_page #landing_content .landing_banner {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  opacity: 0;
  transition: all 2s ease-in-out;
}
#landing_page #landing_content .landing_banner.visible_element {
  opacity: 1;
}
#landing_page #landing_content .landing_banner .banner_image {
  width: 40%;
}
#landing_page #landing_content .landing_banner .banner_image img {
  max-width: 100%;
}
#landing_page #landing_content .landing_banner .banner_info {
  width: 60%;
}
#landing_page #landing_content .landing_banner .banner_info .banner_text {
  color: black;
  font-size: 16px;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  #landing_page #landing_content .landing_banner .banner_info .banner_text {
    font-size: 16px;
  }
}
#landing_page #landing_content .landing_banner.custom_yellow {
  background-color: #FDEAF1;
}
#landing_page #landing_content .landing_banner.custom_blue {
  background-color: #0065b3;
}

@keyframes bounce {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 5px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}/*# sourceMappingURL=style.css.map */