@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
body {
  overflow-x: hidden;
  position: relative;
}
header {
  margin-bottom: 100px;
}

/*back to top button*/
.back_to_top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e5ecff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.back_to_top ion-icon {
  width: 32px;
  height: 32px;
  color: #4070f4;
}
/*end*/

.logo {
  font-weight: bold;
  font-size: 16px;
  color: #0e2431;
  display: flex;
  align-items: center;
}
.logo ion-icon {
  margin-right: 10px;
  color: #4070f4;
}
html {
  scroll-behavior: smooth;
}
.clickable {
  color: #ff4900;
}

a {
  color: inherit;
  text-decoration: none;
}

ion-icon {
  height: 32px;
  width: 32px;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}

.app-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.app-list li {
  font-weight: bold;
  color: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  list-style: none;
  min-width: 117px;
  width: 15vw;
  margin: 20px;
  min-height: 117px;
  height: 15vw;
  background-color: #0e2431;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
li.white {
  color: black;
  background: transparent;
  border: 1px solid black;
}
li img {
  max-width: 13vw;
  max-height: 13vw;
}
/*Footer style*/
footer {
    position: fixed;
    bottom: 0;
    display: flex;
    width: calc(100vw - 40px);
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
/*end*/

@media only screen and (max-width: 1000px) {
    .app-list li a{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .app-list li a img{
        margin-top: 10px;
    }
    footer{
        padding: 20px !important;
        display: block !important;
    }
}
