/* importing font */
/* Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap");
/* lato */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
@font-face {font-family: "Ink Free";
  src: url("fontinkfree/InkFree.eot"); /* IE9*/
  src: url("fontinkfree/InkFree.ttf") format("truetype"); /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/

}

:root {
  --orange: #ed7d31;
  --gray: #3C3C43;
  --light-blue: #8faadc;
  --medium-blue: #0070c0;
  --medium-blue-hover: #016bb8;
  --dark-blue: #212934;
  --white: #fff;
  --box-shadow-20: 0px 0px 20px rgba(0, 0, 0, 0.25);
  --box-shadow-9: 0px 0px 9px rgba(0, 0, 0, 0.25);
  --box-shadow-5: 0px 0px 5px rgba(0, 0, 0, 0.25);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  height: 100vh;
  background: var(--gray);
}
sup {
  font-size: 0.6rem;
}
/* <<<<<<<<<<<<<<<<<<<<<<<Header Section>>>>>>>>>>>>>>>>>>>> */
header {
  width: 100%;
  height: 64px;
  /*padding: 4px 16px;*/
padding: 0px 0px;
  background: var(--dark-blue);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
 /* display: flex;*/
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  position: relative;
}
.logo--cont {
  height: 80%;
  width: 36%;
}
.logo--cont img {
  display: block;
  max-width: 100px;
  max-height: 56px;
  width: auto;
  height: auto;
}
/* nav start */
/*nav {
  position: fixed;
  left: 100%;
  top: 64px;
  width: 50%;
  height: calc(100% - 64px);
  background: var(--dark-blue);
  z-index: 9;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: left 1s ease-in-out;
}*/
.blurred--bg {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  height: calc(100% - 64px);
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.links--cont {
  height: 60%;
  width: 100%;
  list-style-type: none;
}
.links--cont li {
  width: 100%;
  height: 15%;
}
.link {
  padding-left: 20%;
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  position: relative;
}
.link:focus {
  background: #ed7d31;
  --medium-blue: rgb(0, 112, 192);
}
.login-btn {
  text-decoration: none;
  background: #006699;
  padding: 12px 0px;
  margin: 0 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--white);
  border-radius: 5px;
  min-width: 75%;
  max-width: 300px;
  margin: 0 auto;
  max-height: 50px;
}
.login-btn img {
  margin-left: 8px;
  height: 16px;
  width: 16px;
}
.login-btn span {
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
}
/* nav end */
/* <<<<<<<<<<<<<<<<<<<<<<<Header Section End>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<main Section End>>>>>>>>>>>>>>>>>>>> */
main {
  height: calc(100% - 64px);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.background--cont {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
 /* background-image: linear-gradient(
    163.39deg,
    rgba(26, 26, 26, 0.8) 24.63%,
    rgba(26, 26, 26, 0.5) 59.36%,
    rgba(0, 112, 192, 0) 89.65%
  ),*/
  /* background-image: url("../assets/images/home/bg.webp"); */
  background-size: cover;
  background-position: center; 
  z-index: -9;

  /*animation: image-fade-in 40s ease-in-out infinite both; */
}
.cta--maincont {
  padding: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 5%;
}
.cta--maincont h1,
.cta--maincont h3 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: var(--white);
}

.tob--maincont h2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-top:30px;
}
.centered--box h2{
	  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.cta--maincont h1 {
  width: 95%;
  font-size: 32px;
  font-weight: 700;
}
.cta--maincont h3 {
  width: 80%;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 400;
}
.cta--btn--cont {
  /* margin-top: 24px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
	margin-top:0%;
}
.cta--btn {
  text-align: center;
  box-sizing: content-box;
  padding: 0.5rem 0.8rem;
  margin: 10px;
  width: 190px;
  border-radius: 5px;
  border: 3px solid var(--white);
  color: var(--white);
  font-size: 1.09rem;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}
.cta--btn:nth-child(1) {
  margin-right: 16px;
  font-size: 1.54rem;
padding: 0.82rem 4.06rem;
}
.cta--btn:hover {
  transition: all 0.5s ease-in-out;
  background: #006699;
  border-color: #006699;
color:white;
}
/* <<<<<<<<<<<<<<<<<<<<<<<main Section End>>>>>>>>>>>>>>>>>>>> */
.centered--box {
  margin: 0 auto;
  width: calc(100% - 32px);
  background: var(--white);
  color: var(--dark-blue);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--box-shadow-20);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
}
.centered--box--webinar {
  margin: 0 auto;
  width: calc(100% - 32px);
  background: var(--white);
  color: var(--dark-blue);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--box-shadow-20);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
}
.centered--box h3 {
  width: 100%;
  font-size: 20px;
  text-align: center;
  font-family: "Lato", sans-serif;
}
.centered--box h1 {
  width: 100%;
  /*font-size: 20px;*/
  text-align: center;
 /* font-family: "Lato", sans-serif;*/
}

.centered--box--webinar h3 {
  width: 100%;
  font-size: 20px;
  text-align: center;
  font-family: "Lato", sans-serif;
}

/* <<<<<<<<<<<<<<<<<<<<<<<think outside Start>>>>>>>>>>>>>>>>>>>> */
.tob--maincont {
  margin-top: -35vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heading--cont img {
  height: 125px;
  width: 150px;
  margin-right: 0%;
}
.heading--cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left:50px;
}
.heading--cont h1 {
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-weight: 300;
}
.text--cont {
  text-align: center;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 300;
}
.text--cont p:nth-child(2) {
  margin-top: 16px;
}
/* <<<<<<<<<<<<<<<<<<<<<<<think outside End>>>>>>>>>>>>>>>>>>>> */

.read--more--btn {
  color: var(--medium-blue);
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.read--more--btn:hover {
  cursor: pointer;
}
.read--more--btn img {
  margin-left: 4px;
}
.hidden--section {
  display: none;
}
.rotateClass {
  transform: rotate(180deg);
}
/* <<<<<<<<<<<<<<<<<<<<<<<lucky intelligent packaging Start>>>>>>>>>>>>>>>>>>>> */
.lip--maincont .body--cont {
  margin-top: 24px;
}
.body--cont p {
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  margin-top: 16px;
}
.body--text {
  font-weight: 300;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.title--text {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 900;
}
/* <<<<<<<<<<<<<<<<<<<<<<<lucky intelligent packaging End>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<Stats Start>>>>>>>>>>>>>>>>>>>> */
.stats--maincont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.stat {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.stat:nth-last-child(1) {
  margin-bottom: 0;
}
.stat--icon {
  width: 100%;
  margin-bottom: 16px;
}
.stat--icon img {
  display: block;
  height: 64px;
  width: 64px;
  margin: 0 auto;
}
.stat--number {
  width: 100%;
  text-align: center;
  font-size: 42px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  margin-bottom: 16px;
}
.percentage--super {
  font-size: 24px;
}
.stat--desc {
  width: 82%;
  text-align: center;
  font-size: 18px;
  font-family: "helvetica", sans-serif;
  font-weight: 300;
}
/* <<<<<<<<<<<<<<<<<<<<<<<Stats End>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<Why you should care start>>>>>>>>>>>>>>>>>>>> */
.features--cont {
  margin-top: 24px;
}
.feature {
  width: 100%;
  height: auto;
  background: #f6f5f4;
  box-shadow: var(--box-shadow-5);
  border-radius: 5px;
  padding: 8px;
  margin-bottom: 16px;
  transition: box-shadow 0.3s ease-in-out;
}
.feature--title {
  width: 100%;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature--desc {
  width: 100%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
}
.feature:nth-child(2) .feature--desc {
  height: 65%;
}
.add-text {
  display: block;
}
.sm-hidden {
  display: none;
}
.exception {
  display: block;
}
/* <<<<<<<<<<<<<<<<<<<<<<<Why you should care End>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<Live Demo Start>>>>>>>>>>>>>>>>>>>> */
.livedemo--cont {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.qr-code--cont {
  width: 100%;
  padding: 0px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top:-20px;
}

.qr-code--cont h2 {
  position: absolute;
  top:0;
  left: 0;
padding: 20px 0px;
}

.qr-code--cont-wt {
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.qr-code {
  border-radius: 10px;
  height: 200px;
  width: 200px;
  margin-bottom: 24px;
}
.qr-code img {
  height: 100%;
  width: 100%;
}
.qr-code--text {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  font-family: "Montserrat", sans-serif;
padding-bottom:10px;
padding-top:50px;
}
.livedemo--desc--cont {
  padding-top: 12px;
  padding-left: 12px;
}
.livedemo--desc--cont p {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.seperator {
  width: 70%;
  height: 1px;
  background: var(--light-blue);
  margin: 0px auto;
  margin-bottom: 8px;
}
/* <<<<<<<<<<<<<<<<<<<<<<<Live Demo End>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<footer Start>>>>>>>>>>>>>>>>>>>> */
footer {
  width: 100%;
  padding: 1rem;
  background: #ed7d31;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.social-media-cont {
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 8px;
}
.social-media-cont a {
  margin-right: 4px;
}
.social-media-cont a img {
  height: 1.5rem;
}
.copyright-text {
  width: 100%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
}
.copyright-text a {
  text-decoration: none;
  color: var(--white);
}
.copyright-text a:hover {
  color: #006699;
}
/* <<<<<<<<<<<<<<<<<<<<<<<footer End>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<Animation Start>>>>>>>>>>>>>>>>>>>> */

@keyframes image-fade-in {
  0% {
    transform: scale(1) translate(0, 0);
    transform-origin: 84% 50%;
  }
  50% {
    transform: scale(1.25) translateX(40px);
    transform-origin: right;
  }
  100% {
    transform: scale(1) translate(0, 0);
    transform-origin: 84% 50%;
  }
}
/* <<<<<<<<<<<<<<<<<<<<<<<Animation End>>>>>>>>>>>>>>>>>>>> */
