.landing-screen {
  max-height: calc(100vh - 65px);
  height: 100%;
  width: 100vw;
  overflow: hidden;
  margin-top: 65px;
  padding: 10px;
}

.landing-screen-container {
  height: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.landing-screen-main-image {
  width: 100%;
  height: 100%;

  position: relative;
  /* background: url("../img/main\ image.png") no-repeat center center; */
  transform: scale(1.05);
}

.landing-screen-main-image img {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

/* about */
.home-about-section-left {
  height: 100%;
  width: 100%;
}
.main-part {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 80vh;
}

@media (max-width: 768px) {
  .landing-move img {
    padding: 6px !important;
  }
  .main-part {
    height: 60vh;
  }
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-slider,
.landing-slider2 {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}
.landing-move {
  display: flex;
  flex-direction: column;
  animation: land-marquee 15s linear infinite;
  position: relative;
  justify-content: space-around;
}

.landing-move2 {
  animation: land-marqueeInverse 15s linear infinite;
}
.landing-move img {
  aspect-ratio: 8/10 !important;
  object-fit: cover;
  height: auto;
  white-space: nowrap;
  margin: 10px;
  border-radius: 10px;
}
@keyframes land-marquee {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes land-marqueeInverse {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

/* Main gallery */

.gallery-container {
  margin: 0 auto;
  column-count: 4;
}

.gallery-container .gallery-card {
  break-inside: avoid;
  position: relative;
  margin-bottom: 16px;
}

.gallery-container .gallery-card img {
  width: 100%;
  border-radius: 4px;
  position: relative;
}

.gallery-card-image::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.gallery-container i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #b9b9b9;
  text-decoration: none;
  font-size: 48px;
  font-weight: 100;
  opacity: 0;
  z-index: 2;
  transition: 0.3s ease-in-out;
}

.gallery-card-image:hover::before {
  opacity: 1;
}

.gallery-card-image:hover i {
  font-size: 28px;
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .gallery-container {
    column-count: 2;
  }
}
@media screen and (min-width: 501px) and (max-width: 700px) {
  .gallery-container {
    column-count: 3;
  }
}
@media screen and (min-width: 701px) and (max-width: 900px) {
  .gallery-container {
    column-count: 4;
  }
}

/* Customize Next and Previous Buttons */
.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  cursor: pointer;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

.owl-nav span {
  font-size: 75px;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: #640074 !important;
  transition: 0.1s ease-in-out;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
  color: #dd00ff !important;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: block;
}

/* Customize Dots */
.owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #fff;
  border-radius: 50%;
}

.owl-dots .owl-dot.active {
  background-color: #000;
}

.product-card{
  padding: 10px;
  border: 1px solid #000;
  transition: 0.3s ease-in-out;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.product-card-status{
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 7px;
  padding: 5px 10px;
  z-index: 10;
  font-weight: 400;
  font-size: 14px;
  gap: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-status span {
  content: '';
  display: block;
  border-radius: 5px;
  height: 7px;
  width: 7px;
  background-color: #00FF1A;
  &.status-red{
    background-color: #FF0000;
  }
}

.product-card:hover{
  border: 1px solid #2b1fd4a6;
}

.product-card:hover .product-card-image img{
  scale: 1.1;
}

.product-card-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: #fff;
  margin-top: 10px;
}

.product-card-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.product-card-name {
  text-transform: uppercase;
}

.product-price {
  font-size: 16px;
  font-weight: 500;
}

.product-card-desc {
  font-size: 13px;
  color: #b9b9b9;
  margin-top: 8px;
}

.home-quote-text{
  height: 100%;
  place-content: center;
  font-size: 4rem;
  font-weight: 400;
  background: linear-gradient(to right top, #fff 70%, #8b3dff 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  span{
    font-weight: 600;
  }
}

@media(max-width: 1000px){
  .home-quote-text{
    font-size: 3rem;
  }
}

@media(max-width: 578px){
  .home-quote-text{
    font-size: 2rem;
  }
}

/* quotation-section */

.quotation-section h1{
  color: #fff;
  font-size: 66px;
  text-align: center;
}

.quotation-auther-name{
  color: #b9b9b9;
  float: right;
}

.quotation-auther-name span {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #fff;
}

.quotation-auther-wrapper{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

@media screen and (max-width: 500px) {
  .quotation-section h1{
    font-size: 32px;
  }
}
@media screen and (min-width: 501px) and (max-width: 700px) {
  .quotation-section h1{
    font-size: 42px;
  }
}
@media screen and (min-width: 701px) and (max-width: 900px) {
  .quotation-section h1{
    font-size: 48px;
  }
}