@media screen and (max-width: 800px) {
  .some ul li {
    width: 53px;
    height: 53px;
    line-height: 33px;
    /*margin: 0 .5vw;*/
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    /*border: 4px solid #D8E2DC;*/
    float: left;
    transition: all 0.5s ease;
  }
}

@media screen and (min-width: 800px) {
  .some ul li {
    width: 53px;
    height: 53px;
    line-height: 33px;
    margin: 0 .5vw;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #D8E2DC;
    float: left;
    transition: all 0.5s ease;
  }
}

@media screen and (min-width: 1000px) {
  .some ul li {
    width: 53px;
    height: 53px;
    line-height: 33px;
    margin: 0 1.5vw;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #D8E2DC;
    float: left;
    transition: all 0.5s ease;
  }
}

.some ul li .fa {
  color: #D8E2DC;
  /*font-size: 23px;*/
  margin-top: 7px;
  transition: all 0.5s ease;
}

.some ul li:hover.facebook {
  border: 5px solid #3b5998;
  box-shadow: 0 0 15px #3b5998;
  transition: all 0.5s ease;
}

.some ul li:hover .fa-facebook {
  color: #3b5998;
  text-shadow: 0 0 15px #3b5998;
  transition: all 0.5s ease;
}

.some ul li:hover.instagram {
  border: 5px solid #bc2a8d;
  box-shadow: 0 0 15px #bc2a8d;
  transition: all 0.5s ease;
}

.some ul li:hover .fa-instagram {
  color: #bc2a8d;
  text-shadow: 0 0 15px #bc2a8d;
  transition: all 0.5s ease;
}

.some ul li:hover.whatsapp {
  border: 5px solid #4dc247;
  box-shadow: 0 0 15px #4dc247;
  transition: all 0.5s ease;
}

.some ul li:hover .fa-whatsapp {
  color: #4dc247;
  text-shadow: 0 0 15px #4dc247;
  transition: all 0.5s ease;
}

.some-list {
  display: inline-flex;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

#footer {
  display: flex;
  background: linear-gradient(#58eb12, #252525);
  padding: 20px;
  flex-wrap: wrap;
}

#footer-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  padding: 20px;
}

@media (max-width: 700px) {
  #footer-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    padding: 0px;
  }
}

#end-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#info-some-buttons {
  padding-top: 25px;
}

#form-btn {
  width: 240px;
}

#image-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  #image-box {
    padding: 0;
  }
}

@media (min-width: 1000px) {
  #image-box {
    justify-content: start;
  }
}

#end-box {
}

@media (max-width: 550px) {
  #image-box {
    display: none;
  }
}

