@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&family=Poppins:wght@400;500;700&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat";
}

.loader-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#left,
#right {
  display: inline-block;
  padding: 2px;
  position: relative;
}

#left {
  animation: zoom-in-zoom-out 1s ease infinite;
}

#right {
  animation: zoom-in-zoom-out 1s ease infinite 0.2s;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

.loader-wrapper img {
  width: 100px;
  height: 55px;
}

body {
  align-items: center;
}

body {
  overflow-x: hidden;
}

.title-text {
  font-size: 50px;
}
.line-img img {
  width: 300px;
  height: 6px;
}

.search-box {
  width: 55%;
}

/* CARDS */
.card {
  border-radius: 13px;
  height: 209px;
}

.card-content {
  margin-left: -25px;
}
.card-body {
  padding: 1rem 2rem !important;
}
.card-content .card-body .card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-content .card-body .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.design-art {
  margin-left: -2px;
  margin-top: -2px;
}
.circle {
  position: absolute;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  border: 10px solid white;
  left: 13%;
  margin-left: -45px;
  top: 0px;
  background: #181b20;
}
@media (max-width: 768px) {
  .circle {
    left: 11%;
  }
  .card-body {
    padding: 1rem 0rem !important;
  }
  .search-box {
    width: 60%;
  }
  .title {
    margin-top: 25px;
  }
}
@media (max-width: 425px) {
  .circle {
    top: 6%;
    left: 15%;
    height: 100px;
    width: 100px;
  }
  .card-body {
    padding: 1rem 0 1rem 2.5rem !important;
  }
  .search-box {
    width: 95%;
  }
  .title {
    margin-top: 50px;
  }
  .title-text {
    font-size: 43px;
  }
  .line-img img {
    width: 250px;
  }
}
@media (max-width: 375px) {
  .card-body {
    padding: 1rem 0 1rem 3rem !important;
  }
}
@media (max-width: 320px) {
  .title-text {
    font-size: 38px;
  }
  .line-img img {
    width: 210px;
  }
}
.design-art img {
  height: 211px;
}

/*  FOOTER  */
footer img {
  width: 100px;
}

footer a {
  text-decoration: none !important;
}
