@font-face {
  font-family: "Indivisible-Regular";
  src: url("./font/Indivisible-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Indivisible-Semibold";
  src: url("./font/Indivisible-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Indivisible-Bold";
  src: url("./font/Indivisible-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  /* font-family: "Poppins", sans-serif; */
  font-family: "Indivisible-Regular";
  font-weight: 400;
  font-style: normal;
  text-align: center;
  background: #dfdfdf;
}

strong{
  text-transform: uppercase;
  font-family: "Indivisible-Bold";
}

.container {
  display: flex;
  justify-content: center;
  position: relative;
  gap: 50px;
  z-index: 2;
}

.title {
  width: 100%;
  font-size: 3.5rem;
  font-weight: 600;
  color: #e52628;
  margin-top: 4.5vh;
  margin-bottom: 6vh;
}

.title img{
  height: 7.5vw;
}

.card {
  position: relative;
  background: #fdfcff;
  padding: 0 20px 30px 20px;
  width: 22vw;
  border-radius: 12px;
  text-align: center;
}

.card .item{
  display: contents;
}

.card .info{
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
  display: block;
  color: white;
  position: absolute;
  left: 0;
  right: 0;
  top: 8.5vw;
  bottom: 0;
  background: rgba(0, 0, 0, 0.96);
  padding: 3vw 1vw;
  border-radius: 12px;
}

.card .info p{
  margin: 0;
}

.card .info p strong{
  color: red;
}

.card .info.hide{
  opacity: 0;
}

.card .info button{
  width: 80%;
  transition: all 0.1s ease-in-out;
  background: #00206b;
  cursor: pointer;
  appearance: none;
  margin: 15px auto;
  border: none;
  color: white;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}

.card .info button:hover {
  background: #274da6;
}

.device-img {
  /* width: 12vw; */
  height: 8vw;
  margin-top: -40px;
}

.section-title {
  font-family: "Indivisible-SemiBold";
  color: #e52628;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 10px 0;
}

.app-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: stretch;
  flex-direction: column;
}

.app-list p {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 15px 0 5px;
}

.download-btn {
  width: 55%;
  transition: all 0.1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00206b;
  color: white;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}

.download-btn:hover {
  background: #274da6;
}

.download-btn img {
  width: 20px;
  height: 20px;
}

.wave {
  background-image: url(images/waves.svg);
  position: fixed;
  top: 45%;
  bottom: 0;
  left: 0;
  right: 0;
}

.wave svg{
  width: 100%;
  height: 100%;
}

.logo-easy{
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.logo-easy img{
  height: 70px;
}

@media screen and (max-width: 1024px) {
  .mobile{
    display: none;
  }

  .title img {
    height: 15vw;
  }
  
  .device-img {
    width: 38vw;
    height: auto;
  }

  .card{
    width: 70%;
  } 

  .card .info{
    top: 28.5vw;
    padding: 8vw 2vw;
  }

  .logo-easy img{
    height: 50px;
  }
}