@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@700&display=swap');
.intro-modal {
  position: fixed;
  z-index: 3000;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.intro-modal__container {
  width: 45%;
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  margin: auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width:767px) {
  .intro-modal__container {
    top: 230px;
    width: 90%;
  }
}
.intro-modal__wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  height: 350px;
  width: 100%;
}
@media screen and (max-width:767px) {
  .intro-modal__wrapper {
    height: 200px;
  }
}
.intro-modal__video {
  width: 100%;
  position: relative;
}
.intro-modal__video--disable {
  display: none;
}
.intro-modal__cover {
  width: 100%;
  height: 350px;
  background-color: #1abc9c;
  background-image: url("../../images/video-frame.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width:767px) {
  .intro-modal__cover {
    height: 200px;
  }
}
.intro-modal__cover:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
@media screen and (max-width:767px) {
  .intro-modal__cover:after {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.intro-modal__play {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #ffffff;
  width: 70px;
  height: 70px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}
.intro-modal__play:hover {
  color: rgba(255, 255, 255, 0.5);
}
.intro-modal__close {
  position: absolute;
  top: -35px/2;
  left: -35px/2;
  z-index: 2;
  width: 35px;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}
.intro-modal__close:hover {
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.intro-modal__note {
  background-color: #ffffff;
  margin-top: 1rem;
  padding: 0.5rem 4rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #c0392b;
  z-index: 2;
}
@media screen and (max-width:767px) {
  .intro-modal__note {
    font-size: 1.2rem;
  }
}
.intro-modal__link {
  background-color: #c0392b;
  color: #ffffff;
  margin-top: -5px;
  transform: skew(-5deg, -4deg);
  padding: 1rem 6rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  z-index: 1;
}
@media screen and (max-width:767px) {
  .intro-modal__link {
    font-size: 1.2rem;
  }
}
.banner {
  width: 100%;
  height: 450px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.banner:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  content: '';
  background-image: linear-gradient(rgba(0, 0, 0, 0), #FFFFFF);
}
@media screen and (max-width:767px) {
  .banner {
    display: none;
  }
}
.banner__container {
  height: 100%;
}
.banner__carousel,
.banner__inner,
.banner__item {
  height: 100%;
}
.banner__text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0));
  padding: 4rem 2rem;
}
.banner__quote {
  display: flex;
  margin-bottom: 2rem;
}
.banner__quoter {
  background: #fc0;
  border-radius: 0 0 0 200%;
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
.banner__header {
  color: #FFFFFF;
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
}
.banner__header--sm {
  font-weight: 300;
  font-size: 2.9rem;
}
.banner .carousel-control-next,
.banner .carousel-control-prev {
  width: auto;
  top: calc(50% - 0.9rem);
  background-color: #000000;
  color: #ffffff;
  padding: 0.7rem;
  bottom: inherit;
  font-size: 1.2rem;
  opacity: 0.6;
}
.banner .carousel-control-next {
  right: 3px;
}
.banner .carousel-control-prev {
  left: 3px;
}
@media screen and (max-width:767px) {
  .banner {
    height: auto;
    overflow: hidden;
  }
  .banner .carousel-control-next,
  .banner .carousel-control-prev {
    top: -8vh;
  }
}
.banner__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:767px) {
  .banner__image {
    display: none;
    width: 0;
  }
}
.banner-phone {
  display: none;
}
@media screen and (max-width:767px) {
  .banner-phone {
    display: block;
    padding: 10px 10px 0;
    width: 100%;
  }
}
.banner-phone__image {
  display: block;
  width: 100%;
}
.banner-phone__indicators {
  display: none;
}
@media screen and (max-width:767px) {
  .banner-phone__indicators {
    display: flex;
    position: relative;
    margin-bottom: 0;
  }
  .banner-phone__indicators > li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2c3e50;
  }
}
.welcome-container {
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width:767px) {
  .welcome-container {
    padding-bottom: 0;
  }
}
.welcome-container > .container {
  position: relative;
}
.welcome-shortcuts {
  background-color: #ffffff;
  padding: 2.5rem 1rem 1rem;
  position: relative;
  border-bottom: 1px solid #badefb;
}
.welcome-shortcuts__row {
  display: flex;
  margin: 0 -1rem;
}
@media screen and (max-width:767px) {
  .welcome-shortcuts__row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.welcome-shortcuts__item {
  padding: 0 1rem;
  flex: 0 0 10%;
  max-width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:767px) {
  .welcome-shortcuts__item {
    flex: 0 0 33%;
    max-width: 33%;
  }
}
.welcome-shortcuts__wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-image: linear-gradient(#0e80db, #1abc9c, #333333);
}
.welcome-shortcuts__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.welcome-shortcuts__title {
  margin-top: 0.5rem;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
  font-weight: 900;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}
.welcome-category {
  height: 250px;
  padding: 1rem;
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #cccccc;
}
.welcome-category__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.welcome-category__img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.welcome-category__txt {
  position: absolute;
  top: calc(50% - 0.3rem - 1.2rem);
  left: 0;
  width: 100%;
  padding: 0.3rem 1rem;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), #FFFFFF, rgba(0, 0, 0, 0));
}
.welcome-category__txt > h3 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.welcome-upper-category {
  width: 100%;
  height: 230px;
  overflow: hidden;
}
.welcome-upper-category__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-section {
  padding: 1rem 0;
  margin: 1rem 0;
  font-family: 'Poppins', sans-serif;
}
.welcome-section--white {
  background-color: #FFFFFF;
}
.welcome-section--dark {
  border: 1px solid #badefb;
  background-color: #f4fafe;
}
.welcome-section--darker {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.welcome-section__header {
  position: relative;
}
.welcome-section__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width:767px) {
  .welcome-section__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width:767px) {
  .welcome-section__title--phone {
    font-size: 1.7rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-decoration: underline;
  }
}
.welcome-section__txt {
  font-size: 1rem;
}
@media screen and (max-width:767px) {
  .welcome-section__txt {
    font-size: 0.8rem;
  }
}
.welcome-section__link {
  position: absolute;
  right: 0;
  top: 1rem;
  color: #c0392b;
}
@media screen and (max-width:767px) {
  .welcome-section__link {
    position: unset;
    display: block;
    font-size: 0.8rem;
  }
}
.category-nav__header {
  margin-top: 1rem;
  border-bottom: 1px solid #c0392b;
}
@media screen and (max-width:767px) {
  .category-nav__header {
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    border-bottom: none;
    position: relative;
  }
}
.category-nav__body {
  padding: 2rem;
  position: relative;
}
@media screen and (max-width:767px) {
  .category-nav__body {
    padding: 1rem;
  }
}
.category-nav__loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9);
  justify-content: center;
  display: none;
}
.category-nav__loading--active {
  display: flex;
}
.category-nav__loading > img {
  position: absolute;
  top: -100px;
  width: 700px;
}
.category-nav__wrapper {
  min-height: 250px;
}
.category-nav__list {
  display: flex;
}
@media screen and (max-width:767px) {
  .category-nav__item {
    border-bottom: 1px solid #c0392b;
  }
}
.category-nav__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem 1rem 2rem 1rem;
}
@media screen and (max-width:767px) {
  .category-nav__link {
    padding: 0.3rem 1rem 1rem 1rem;
    background-color: rgba(0, 0, 0, 0.05);
  }
}
.category-nav__link:hover {
  color: inherit;
}
.category-nav__link--active {
  background-color: #c0392b;
  color: #ffffff;
}
.category-nav__link--active:after {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  content: '';
  border-left: 15px solid rgba(0, 0, 0, 0);
  border-right: 15px solid rgba(0, 0, 0, 0);
  border-top: 15px solid #c0392b;
}
@media screen and (max-width:767px) {
  .category-nav__link--active:after {
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid #c0392b;
  }
}
.category-nav__link--active:hover {
  color: #FFFFFF;
}
.category-nav__link > i {
  font-size: 1.9rem;
}
.category-nav__link > span {
  text-align: center;
  font-size: 0.8rem;
  line-height: 0.8rem;
  height: 2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width:767px) {
  .category-nav__link > span {
    font-size: 0.8rem;
    white-space: nowrap;
    max-width: 90px;
    overflow: hidden;
  }
}
.category-nav__title {
  position: relative;
  font-size: 1.2rem;
  margin: 1rem -15px;
}
@media screen and (max-width:767px) {
  .category-nav__title {
    font-size: 1rem;
    margin-top: 0;
  }
}
.category-nav__title > a {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #c0392b;
  font-size: 0.9rem;
}
@media screen and (max-width:767px) {
  .category-nav__title > a {
    position: unset;
    display: block;
    font-size: 0.8rem;
  }
}
@media screen and (max-width:767px) {
  .category-product {
    display: block;
  }
}
.category-product__element {
  border: 1px solid #d9d9d9;
  border-top: 0;
  border-right: 0;
  padding: 1rem;
}
.category-product__element:last-child {
  border-right: 1px solid #d9d9d9;
}
@media screen and (max-width:767px) {
  .category-product__element {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 0.5rem 0.5rem 1rem;
  }
}
.category-product:first-of-type > .category-product__element {
  border-top: 1px solid #d9d9d9;
}
.category-product__img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
}
@media screen and (max-width:767px) {
  .category-product__img {
    height: 180px;
  }
}
.category-product__link {
  color: inherit;
}
.category-product__link:hover {
  color: inherit;
}
.category-product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:767px) {
}
.category-product__title {
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem 0;
  line-height: 1.3rem;
  height: 3.9rem;
}
@media screen and (max-width:767px) {
  .category-product__title {
    height: auto;
  }
}
.category-product__order {
  display: block;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-top: 0.5rem;
  padding: 0.2rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}
.category-product__order > i {
  font-size: 1.3rem;
}
.category-product__price {
  font-family: 'Lato', sans-serif;
  color: #c0392b;
  font-size: 1.1rem;
  font-weight: 900;
}
.category-product__price--unit {
  font-weight: 400;
  font-size: 1rem;
}
.category-product__quantity {
  font-size: 0.9rem;
  text-align: center;
  display: block;
}
.rfq {
  margin: 0;
  border: 1px solid #e6e6e6;
  background-image: url("../../images/__design/1080P-WDR-GPS-WI-FI-Night-View.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  padding: 2rem;
  font-family: 'Poppins', sans-serif;
}
@media screen and (max-width:767px) {
  .rfq {
    flex-direction: column;
    background-size: 100% auto;
    padding: 1rem;
  }
}
.rfq__txt {
  display: flex;
  flex: 0 0 35%;
  max-width: 35%;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width:767px) {
  .rfq__txt {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.rfq__txt > h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
}
@media screen and (max-width:767px) {
  .rfq__txt > h1 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
}
.rfq__txt > h2 {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .rfq__txt > h2 {
    font-size: 0.9rem;
  }
}
.rfq__form {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #e6e6e6;
  margin-left: auto;
  padding: 1rem 1.5rem;
  flex: 0 0 50%;
  max-width: 40%;
}
@media screen and (max-width:767px) {
  .rfq__form {
    margin-top: 1rem;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1rem;
  }
}
.rfq__title {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
}
@media screen and (max-width:767px) {
  .rfq__title {
    font-size: 1rem;
    text-align: center;
    text-decoration: underline;
  }
}
.rfq__row {
  display: flex;
  margin-bottom: 0.7rem;
}
.rfq__col {
  flex: 0 0 40%;
  max-width: 40%;
  padding-right: 0.5rem;
}
@media screen and (max-width:767px) {
  .rfq__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.rfq__btn {
  background-image: linear-gradient(90deg, #0e80db, #000000, #0e80db);
  border: 0;
  color: #ffffff;
  padding: 0.5rem 0.7rem;
  border-radius: 5px;
}
@media screen and (max-width:767px) {
  .rfq__btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.rfq__btn > i {
  font-size: 1.5rem;
}
.solutions {
  margin: 2rem 0 0;
}
.solutions__title {
  text-align: center;
  font-size: 1.7rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.solutions__container {
  display: flex;
  margin: 0 -0.5rem;
}
@media screen and (max-width:767px) {
  .solutions__container {
    flex-direction: column;
  }
}
.solutions__wrapper {
  padding: 0 0.5rem;
  flex: 0 0 50%;
  max-width: 50%;
}
@media screen and (max-width:767px) {
  .solutions__wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }
}
.solutions__item {
  height: 100%;
  position: relative;
  display: flex;
}
@media screen and (max-width:767px) {
  .solutions__item {
    height: 150px;
  }
}
.solutions__item:after,
.solutions__item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.solutions__item:after {
  z-index: 2;
  background-image: linear-gradient(-80deg, transparent 100px, #c6c3ba 280px, #c6c3ba);
}
@media screen and (max-width:767px) {
  .solutions__item:after {
    background-image: linear-gradient(-90deg, transparent 100px, #c6c3ba 280px, #c6c3ba);
  }
}
.solutions__item:before {
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color ease-in 0.2s;
}
.solutions__item:hover:before {
  background-color: rgba(0, 0, 0, 0.3);
}
.solutions__text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  padding: 1rem;
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
}
@media screen and (max-width:767px) {
  .solutions__text {
    font-size: 0.8rem;
  }
}
.solutions__text > h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media screen and (max-width:767px) {
  .solutions__text > h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.solutions__mask {
  margin-left: auto;
  height: 210px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:767px) {
  .solutions__mask {
    height: 100%;
  }
}
.solutions__mask > img {
  width: auto;
  height: 100%;
}
.welcome-employee {
  padding: 2rem 0;
  font-family: 'Poppins', sans-serif;
}
.welcome-employee__header {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0e80db;
  text-transform: uppercase;
}
.welcome-employee__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome-employee__img {
  width: 120px;
  height: 120px;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  overflow: hidden;
}
.welcome-employee__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-employee__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1rem;
  text-align: center;
}
.welcome-employee__text {
  text-align: center;
  color: #333333;
  font-size: 0.8rem;
}
.welcome-partners {
  padding: 4rem 0;
}
.welcome-partners__title {
  text-align: center;
  margin-bottom: 2rem;
  color: #0e80db;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width:1280px) {
  .welcome-partners__wrapper {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .welcome-partners__wrapper::-webkit-scrollbar {
    height: 3px;
  }
  .welcome-partners__wrapper::-webkit-scrollbar-track {
    background-color: #0e80db;
  }
  .welcome-partners__wrapper::-webkit-scrollbar-thumb {
    background-color: #0e80db;
  }
}
.welcome-partners__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width:1280px) {
  .welcome-partners__list {
    justify-content: left;
  }
}
@media screen and (max-width:767px) {
  .welcome-partners__list {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }
}
.welcome-partners__img {
  height: 55px;
  width: auto;
}
@media screen and (max-width:767px) {
  .welcome-partners__img {
    margin-top: 0 !important;
    width: 90% !important;
    height: 90% !important;
    object-fit: contain;
  }
}
@media screen and (max-width:767px) {
}
.welcome-partners__img--be {
  height: 60px;
  margin-top: -5px;
}
.welcome-partners__img--du {
  height: 70px;
}
@media screen and (max-width:767px) {
}
.welcome-partners__img--br {
  height: 45px;
}
@media screen and (max-width:767px) {
}
.welcome-partners__img--sa {
  height: 75px;
}
.welcome-partners__item {
  padding: 0 1rem;
}
@media screen and (max-width:767px) {
  .welcome-partners__item {
    border: 1px solid #0e80db;
    padding: 0;
    width: 100%;
    height: 80px;
    margin: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.wl-news {
  display: flex;
  margin: 2rem 0;
}
.wl-news__video {
  flex: 0 0 33%;
  max-width: 33%;
}
.wl-news__video > video {
  width: 100%;
}
.wl-news__container {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}
.wl-news__item {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 1rem;
  font-family: 'Cairo', sans-serif;
  background-color: #FFFFFF;
  border-radius: 0 0 20px 0;
}
.wl-news__img {
  flex: 0 0 33%;
  max-width: 33%;
  height: 170px;
}
.wl-news__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 20px 0;
}
.wl-news__title {
  display: block;
  color: #2c3e50;
  text-align: right;
  margin-right: 1rem;
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.9rem;
  border-right: 5px solid #e74c3c;
  padding-right: 1rem;
}
.wl-news__date {
  display: flex;
  flex-direction: row-reverse;
  padding-right: 1rem;
  color: #636e72;
}
.wl-news__icon {
  font-size: 1.5rem;
}
.wl-news__time {
  font-style: normal;
  margin: 0 0.2rem;
}
.shorts {
  margin-top: -3rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:767px) {
  .shorts {
    margin-top: 1rem;
  }
}
@media screen and (max-width:767px) {
  .shorts__col + .shorts__col {
    margin-top: 1rem;
  }
}
.shorts__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #cbd7e3;
  border-radius: 10px;
  padding: 1rem;
  font-family: 'Poppins', sans-serif;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  transition: all ease-in-out 0.2s;
  position: relative;
  z-index: 1;
  transform: scale(1, 1);
  cursor: pointer;
}
.shorts__item:hover {
  transform: scale(1.3, 1.2);
  z-index: 2;
}
.shorts i {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
.shorts__title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.shorts__txt {
  text-align: center;
  font-size: 0.9rem;
}
/*# sourceMappingURL=welcome.css.map */