body {
    min-height: 100%;
    max-width: 100%;
    padding: 150px;
    background-color: papayawhip; 
}

.box1{
    padding-top: 20px;
    padding-bottom: 20px;
    height: 250px;
    width: 100%;
    background: linear-gradient(141deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
    color: white;
    opacity: 0.95;
    
    font-size: 2em;
    text-align: center;
    line-height: 250px;
}

.content-1{
    display: flex;
    padding-bottom: 40px;
    padding-top: 40px;


}
.content-i{
	justify-content: center; width: 100%;
}

.content-d{
	justify-content: center; 
    width: 100%;
    padding:30px;
}



footer {
    padding: 2rem 0;
    background-color: #212529;
  }
  
  ul.social-buttons {
    margin-bottom: 0;
  }
  
  ul.social-buttons li a {
    font-size: 20px;
    line-height: 40px;
    display: block;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    border-radius: 100%;
    outline: 0;
  }
  
  footer .quick-links {
    font-size: 90%;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: none;
    font-family: 'Poppins', sans-serif;  }
  
  .copyright {
    color: white;
  }
  
  .fa-ellipsis-h {
    color: white;
    padding: 2rem 0;
  }
  center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.contact-info{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card{
  position: relative;
  flex: 1;
  max-width: 300px;
  height: 140px;
  background-color: #444;
  margin: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon{
  font-size: 32px;
  color: #ea8685;
  transition: .3s linear;
}

.card:hover .icon{
  transform: scale(4);
  opacity: 0;
}

.card-content h3,
.card-content span{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  opacity: 0;
}

.card-content h3{
  top: 20px;
  text-transform: uppercase;
  color: #ea8685;
}

.card-content span{
  bottom: 20px;
  color: #fff;
  font-weight: 500;
}
#float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:20px;
	right:20px;
	border-radius:10px;
	text-align:center;
  font-size:20px;
	box-shadow: 2px 2px 2px rgb(5, 5, 5);
  z-index:100;
}
.card:hover h3{
  opacity: 1;
  top: 46px;
  transition: .3s linear .3s;
}

.card:hover span{
  opacity: 1;
  bottom: 46px;
  transition: .3s linear .3s;
}


@media screen and (max-width:900px){
  .card{
      flex: 100%;
      max-width: 500px;
  }
}
