@import url("./font.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
.card__text {
  color: white;
  font-family: "mulish";
  font-size: 400;
  font-family: 24px;
}
body {
  height: 100vh;
  overflow-x: hidden;
  background: rgb(28, 26, 26);
  background: linear-gradient(
    180deg,
    rgba(28, 26, 26, 1) 67%,
    rgba(14, 11, 11, 1) 86%,
    rgba(14, 11, 11, 1) 96%
  );
}
.call{
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 10px;
}
.call p,a{
  font-family: 'mulish';
  color: white;
  text-decoration: none;
}
.moving-background {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("./img/bg_animate.png");
  background-repeat: round;
  animation: moveBg 60s linear infinite;
  background-size: 600px;
}

@keyframes moveBg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100% 0;
  }
}
.container {
  width: 70%;
  margin: 0 auto;
}
.wrapper {
  height: 100Vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.company_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 30px;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #00000075;
  border: 0.5px solid #7d7d7dd6;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 3px 0 rgba(155, 159, 207, 0.27);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all ease-in 0.2s !important;
}
.card:hover {
  box-shadow: 0 2px 7px 0 #ffffff77;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(12px);
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all ease-in 0.1s !important;
}
.card__logo {
  width: 160px;
  height: 80px;
}
.card:hover .card__img {
  transform: scale(1.05);
}
@media only screen and (max-width: 1286px) {
  .company_cards {
    gap: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .company_cards {
    grid-template-columns: repeat(3, 0.2fr);
    gap: 15px;
  }
  .card__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .wrapper{
    height: 100Vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .company_cards {
    grid-template-columns: repeat(2, 0.3fr);
    gap: 10px;
    margin-bottom: 15px;
  }
  .card__text {
    font-size: 18px;
  }
  .moving-background {
    animation: moveBg 60s linear infinite;
    background-size: 250px;
  }
}
@media only screen and (max-width: 680px) {
  .card__logo {
    width: 150px;
    height: 30px;
  }
  .company_cards {
    grid-template-columns: repeat(2, 0.3fr);
    margin-bottom: 0px;
  }
  .card__text {
    font-size: 15px;
  }
  .moving-background {
    animation: moveBg 5s linear infinite;
  }
  .container {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 400px) {
  .company_cards {
    grid-template-columns: repeat(2, 0.5fr);
  }
  .card__logo {
    width: 100px;
    height: 30px;
  }
  .card__text {
    font-size: 12px;
  }
  .card {
    padding: 15px 5px;
    box-shadow: 0 2px 2px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
