* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  /* min-height: 100vh; */
  /* background: linear-gradient(24deg, #fff, #00aeef); */
  
  background: radial-gradient(96.38% 62.51% at 56.58% 46.35%, #FFFFFF 0%, #00AEEF 100%);
  background-repeat: no-repeat;
  /* color: #333; */
}

.content-wrap .container, .content-wrap {
  height: 100vh;
}

.content-wrap .container {
  display: flex;
  justify-content: center;
  align-items: center;
}


.landing-card {
  width: 70%;
  height: 80%;
  background-color: #f5f5f5;
  border-radius: 5px;
  
  /* padding: 1rem; */
  
  position: relative;
}

.landing-card .landing-card-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 2rem 0rem !important;
}

.landing-card .img-container {
  /* width: 150px; */
  height: 150px;
  /* margin: 0 auto; */
  overflow: hidden;
  /* border-radius: 5px; */
  border-radius: 5px 5px 0 0;
  /* border: 1px solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0px;
  left: 0px;

  width: 100%;
  /* height: 50%; */
  margin: 0 auto;
  border: none;
  border-bottom: 1px solid black;
  background-color: #ececec;
  /* border-radius: 0px; */
}

.landing-card img {
  height: 175px;
}

.landing-card h1 {
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0rem;
}

.landing-card p {
  color: #818181;
  margin: 0 0 2rem;
}

.landing-card .card-footer {
  /* position: absolute; */
  bottom: 0px;
  width: 100%;
  background-color: #00AEEF;
  /* padding: 0 1rem; */
  

  
}





.btn-power {
  background: #00AEEF;
  color: #f5f5f5;
  padding: 1rem 0;
  border-radius: 0 0 5px 5px;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  /* margin: 0 1rem 0 1rem; */
  /* position: relative;
  bottom: 0px; */
  position: absolute;
  bottom: 0rem;

}

.btn-power:hover {
  text-decoration: none;
  transform: translate(1.05);
  box-shadow: 0 17px 50px rgba(0, 0, 0, 0.2);
}

.text-power {
  color: #00aeef;
}

@media(max-width: 582px) {

  .landing-card {
    width: 100%;
  }
  .landing-card h1 {
    font-size: 2rem;
    
  }
  .landing-card-inner {
    align-items: 
  }


  .landing-card .img-container {
    width: 100%;
    /* height: 50%; */
    margin: 0 auto;
    border: none;
    border-bottom: 1px solid black;
    background-color: #ececec;
    border-radius: 0px;
  }

  .landing-card img {
    max-height: 200px;
  }
}

footer {
  /* position: absolute; */
  /* display: block; */

  /* bottom: 0; */
  /* width: 100%; */
  height: 3rem;
  background-color: #f5f5f5;
  margin: 0;


}

footer .container {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .social-icon {
  padding: 0.5rem;
  background-color: #00AEEF;
  border-radius: 50%;
  color: #f5f5f5;
  margin: 0 2rem;
}

footer .social-icon:hover {
  cursor: pointer;
  transform: translate(1.05);
  box-shadow: 0 17px 50px rgba(0, 0, 0, 0.2);
}