@import url("https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@400;500&family=Rajdhani:wght@400;500&display=swap");
:root {
  --primary: #2c2b30;
  --secondary: #55595c;
  --tertiary: #363639;
  --drop-text: #494c4f;
  --lato: "Lato", sans-serif;
  --rajdhani: "Rajdhani", sans-serif;
  --segoe: "Segoe UI", sans-serif;
  --poppins: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* a {
  text-decoration: none;
  display: block;
}

body {
  height: 100vh;
  width: 100%;
}
body .grid {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
body .grid section.navbar {
  background: #2c2b30;
  display: flex;
  position: fixed;
  justify-content: space-between;
  padding-left: 5rem;
  padding-right: 10rem;
  z-index: 99;
  width: 100%;
}
body .grid section.navbar .options {
  display: flex;
  justify-content: flex-end;
  flex: 0.6;
  align-items: center;
}
body .grid section.navbar .options .dropdown {
  padding: 13px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
body .grid section.navbar .options .dropdown label {
  color: white;
  font-family: segoe UI;
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 18px;
  cursor: pointer;
}
body .grid section.navbar .options .dropdown ion-icon {
  color: white;
  position: relative;
  top: 3px;
  left: 5px;
  cursor: pointer;
}
body .grid section.navbar .options .dropdown:nth-child(2) {
  border-bottom: 3px solid white;
}
body .grid section.navbar .options .dropdown:hover {
  border-bottom: 3px solid white;
}
body .grid section.navbar .options .dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
body .grid section.navbar .options .dropdown:hover .dropdown-menu-large {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
body .grid section.navbar .options .dropdown .dropdown-menu {
  position: absolute;
  background: #fff;
  top: 50px;
  left: 0;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s;
}
body .grid section.navbar .options .dropdown .dropdown-menu .heading {
  padding: 1.5rem 3.5rem;
}
body .grid section.navbar .options .dropdown .dropdown-menu .heading label {
  color: var(--drop-text);
  font-family: var(--rajdhani);
  letter-spacing: normal;
  font-weight: 500;
  font-size: 16px;
}
body .grid section.navbar .options .dropdown .dropdown-menu .heading:hover {
  background-color: var(--secondary);
}
body .grid section.navbar .options .dropdown .dropdown-menu .heading:hover label {
  color: white;
}
body .grid section.navbar .options .dropdown .dropdown-menu-large {
  position: absolute;
  background: #fff;
  top: 50px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 10;
}
body .grid section.navbar .options .dropdown .dropdown-menu-large .heading {
  padding: 1.5rem 3.5rem;
}
body .grid section.navbar .options .dropdown .dropdown-menu-large .heading label {
  color: var(--drop-text);
  font-family: var(--rajdhani);
  letter-spacing: normal;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
}
body .grid section.navbar .options .dropdown .dropdown-menu-large .heading:hover {
  background-color: var(--secondary);
}
body .grid section.navbar .options .dropdown .dropdown-menu-large .heading:hover label {
  color: white;
}
body .grid section.hero {
  margin-top: 150px;
}
body .grid section.hero .printing {
  height: 500px;
  background: url(../../assets/ali-container-printing-banner.png) no-repeat center;
  background-size: cover;
}
body .grid section.about {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .grid section.about .shrink {
  width: 90%;
  display: flex;
}
body .grid section.about .shrink .left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
body .grid section.about .shrink .left label {
  font-family: var(--segoe);
  font-size: 18px;
  color: var(--primary);
}
body .grid section.about .shrink .left .ul {
  margin-top: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2901960784);
  padding-bottom: 1rem;
}
body .grid section.footer {
  background: var(--primary);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  padding-bottom: 4rem;
}
body .grid section.footer .bx {
  width: 70%;
  display: flex;
  margin-top: 1.5rem;
}
body .grid section.footer .bx .card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
body .grid section.footer .bx .card .heading label {
  font-family: var(--lato);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: white;
}
body .grid section.footer .bx .card .labels {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
body .grid section.footer .bx .card .labels .border {
  transition: 0.3s;
  margin-bottom: 0.7rem;
  padding-bottom: 10px;
  cursor: pointer;
}
body .grid section.footer .bx .card .labels .border label {
  padding-bottom: 0.5rem;
  color: white;
  font-family: var(--segoe);
  cursor: pointer;
  letter-spacing: 2px;
  transition: 0.2s all;
  position: relative;
  display: block;
  margin-bottom: 0;
  word-wrap: break-word;
}
body .grid section.footer .bx .card .labels .border label::after {
  content: "";
  position: absolute;
  height: 3px;
  background: white;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.3s all;
  border-radius: 15px;
}
body .grid section.footer .bx .card .labels .border:hover label::after {
  opacity: 1;
}
body .grid section.footer .bx .card .labels label {
  color: white;
  font-family: var(--segoe);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
body .grid section.footer .bx .card .labels .icons {
  margin-top: 1rem;
  display: flex;
}
body .grid section.footer .bx .card .labels .icons ion-icon {
  margin-right: 1rem;
  font-size: 22px;
  color: white;
}
body .grid section.footer .line {
  width: 85%;
  margin-top: 1rem;
}
body .grid section.footer .line hr {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.2901960784);
}
body .grid section.footer .cc {
  margin-top: 1.5rem;
}
body .grid section.footer .cc label {
  color: white;
  font-family: var(--segoe);
  letter-spacing: 2px;
}

.swiper {
  width: 512px;
  height: 426px;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--primary) !important;
}

.swiper-pagination-bullet {
  background: var(--primary) !important;
}

.menu {
  display: none;
}

.none {
  display: none;
}

@media (max-width: 500px) {
  .printing {
    height: 160px !important;
  }
  .swiper {
    width: 100%;
  }
  .swiper-slide img {
    width: 100% !important;
  }
  .opaque {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .block {
    display: block !important;
  }
  .grid .navbar {
    position: unset !important;
    background: #fff !important;
    align-items: center;
    padding: 10px !important;
  }
  .grid .navbar .logo {
    width: 50px;
    height: 50px;
  }
  .grid .navbar .logo img {
    width: 100%;
    height: 100%;
  }
  .grid .navbar .options {
    display: none !important;
  }
  .grid .navbar .menu {
    background: rgba(0, 0, 0, 0.0509803922);
    display: flex;
    padding: 0.25em;
    position: relative;
  }
  .grid .navbar .menu ion-icon {
    font-size: 30px;
  }
  .grid .navbar .menu .mobile-dropdown {
    position: absolute;
    right: -10px;
    z-index: 9;
    top: 70px;
    background: white;
    opacity: 0;
    transition: 0.3s all;
    transform: translateY(-10%);
  }
  .grid .navbar .menu .mobile-dropdown .dropdown {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .space {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .space ion-icon {
    color: white;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .spaceLarge {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown a {
    font-family: var(--poppins);
    color: #55595c;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown ion-icon {
    font-size: 13px !important;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .dropdown-menu {
    height: auto;
    margin-left: 1rem;
    margin-top: 5px;
    display: none;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .dropdown-menu .heading {
    padding: 10px 0px;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .dropdown-menu-large {
    height: auto;
    margin-left: 1rem;
    margin-top: 5px;
    display: none;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .dropdown-menu-large .heading {
    padding: 10px 0px;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown:nth-child(2) {
    background: #55595c;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown:nth-child(2) a {
    color: white !important;
  }
  .grid .hero {
    margin-top: 0px !important;
  }
  .grid .about .shrink {
    flex-direction: column !important;
    width: 90% !important;
  }
  .grid .about .shrink .right {
    margin-top: 2rem;
  }
  .grid .footer .bx {
    width: 100% !important;
    flex-direction: column !important;
    padding-left: 2rem;
  }
  .grid .footer .bx .card {
    margin-bottom: 2rem;
  }
  .grid .footer .bx .card .heading {
    margin-bottom: 1.5rem;
  }
  .grid .footer .cc {
    width: 90% !important;
    text-align: center;
  }
}/*# sourceMappingURL=printing.css.map */