.main {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  min-height: 100vh;
  max-height: 100vh;
  padding: 15px 0 20vh;
  background: url("public/img/BG_web.png") center/cover no-repeat;
}

.home-logo {
  width: 360px;
  margin: 0;
  object-fit: cover;
}

.mainInfo {
  direction: rtl;
  font-size: 40px;
  align-self: center;
  text-align: center;
  padding: 24px 20px;
  color: #fff;
  background: url("public/img/mainInfoBG.png") center/cover no-repeat;
}

.mainInfo--bottom {
  font-size: 36px;
  background: unset;
}

.mainInfo__green {
  color: #00ff0c;
  font-family: "Arial";
  font-weight: 700;
  line-height: 1.15;
}

.mainInfo__vpn {
  font-family: "Arial";
}

.mainInfo__red {
  color: #ff0000;
  text-decoration: underline;
}

/* Flags */
.home-countries {
  max-width: 60%;
  width: 100%;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.home-country {
  max-width: 220px;
  width: 100%;
  height: auto;
}
/* Flags */


/* telegram */
.telegram {
  display: flex;
  position: fixed;
  padding-right: 20px;
  left: calc(14px + (-250px));
  bottom: 2%;
  width: 530px;
  height: 100px;
  background: url("public/img/iconsBG.png") center/cover no-repeat !important;
}

.telegram__link {
  display: flex;
  align-items: center;
  max-width: 58px;
  width: 100%;
  height: auto;
}

.telegram__icon {
  display: flex;
  width: 100%;
  height: 58px;
  margin: 0;
  padding: 0;
  outline: 0;
}
/* telegram */

/* hide show dynamic elements */
.telegram,
 {
  opacity: 0;
}

.dynamicShow {
  animation: dynamicShow 0.3s linear 0s 1 forwards;
}

@keyframes dynamicShow {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
/* hide show dynamic elements */
/* footer */
.footer {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 17vh;
  padding: 20px 0 0;
  margin: 0;
  z-index: 0;
  background: url("./public/img/footer_bg.png") center/cover no-repeat;
  border-top: 2px solid #0be000;
  backdrop-filter: blur(5px);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
/* footer */

@media (min-width: 2560px) {
  .home-logo {
    margin: 50px 0 0;
  }
}

@media (max-width: 768px) {
  .main {
    justify-content: space-around;
    background: url("public/img/BG_mob.png") top/cover no-repeat;
  }

  .home-logo {
    width: 180px;
  }

  .mainInfo {
    width: 90%;
    font-size: 20px;
    border-radius: 20px;
    background: url("./public/img/footer_bg.png") center/cover no-repeat;
    border: 1px solid #0be000;
    backdrop-filter: blur(5px);
  }

  .mainInfo--bottom {
    width: 80%;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }

  .home-countries {
    grid-template-columns: repeat(3, 1fr);
  }

  .telegram {
    left: 0;
    bottom: -31%;
    z-index: 0 !important;
    width: 70px;
    height: 395px;
    padding: 30px 0 0;
    align-items: flex-start;
    justify-content: center;
    background: url("public/img//iconsBG_mob.png") center/cover no-repeat !important;
  }



  .telegram__link {
    max-width: 40px;
  }

  .telegram__icon {
    height: 40px;
  }


  .footer {
    height: 19vh;
  }
}

@media (max-width: 479px) {

  .mainInfo--bottom {
    width: 60%;
    font-size: 16px;
  }
}
