.comingSoon {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
	background-color: #ffe4e4;
	background-image: url("https://www.transparenttextures.com/patterns/pineapple-cut.png");
}
.comingSoon .comingSoonBox {
  width: 100%;
  padding: 2rem;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  min-height: calc(100vh - 150px);
}
@media (max-width: 768px) {
  .comingSoon .comingSoonBox {
    padding: 0;
  }
}
.comingSoon .comingSoonBox .companyLogo {
  width: 350px;
  height: auto;
}
@media(max-width:375px){
.comingSoon .comingSoonBox .companyLogo {
  width: 250px;
  height: auto;
}
}
.comingSoon .comingSoonBox .companyLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.comingSoon .comingSoonBox .content {
  text-align: center;
  position: relative;
  z-index: 10;
}
.comingSoon .comingSoonBox .content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #000;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
}
@media(max-width:1024px){
.comingSoon .comingSoonBox .content h1 {
  font-size: 2rem;
}
}
.comingSoon .cross1 {
  width: 100%;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.comingSoon .cross1 .marquee {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}
.comingSoon .cross1 .marquee span {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primaryColor);
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  display: inline-block;
  padding-right: 2rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .comingSoon .comingSoonBox .content h1 {
    font-size: 1.8rem;
  }
  .comingSoon .crossBox .cross1 {
    bottom: 25%;
    transform: rotate(20deg);
  }
  .comingSoon .crossBox .cross2 {
    top: 25%;
    transform: rotate(-20deg);
  }
}
@media (max-width: 480px) {
  .comingSoon .nav {
    height: 80px;
    padding: 0 1rem;
  }
  .comingSoon .nav .companyLogo {
    width: 150px;
  }
  .comingSoon .comingSoonBox .content h1 {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */