@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}
footer{
  width: 101%;
  position: relative;
  bottom: 0;
  left: 0;
  background: #111;
}
footer .content{
  max-width: 1350px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .content p{
  color: #fff;
}

a{
  color:#4768DC;
}

footer .content .box{
  width: 33%;
  transition: all 0.4s ease;
}
footer .content .topic{
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;

}
footer .content p{
  text-align: justify;
}
footer .content .lower .topic{
  margin: 24px 0 5px 0;
}
footer .content .lower i{
  padding-right: 16px;
}
footer .content .middle{
  padding-left: 80px;
}
footer .content .middle a{
  line-height: 32px;
}
footer .content .right input[type="text"]{
  height: 45px;
  width: 100%;
  outline: none;
  color: #d9d9d9;
  background: #000;
  border-radius: 5px;
  padding-left: 10px;
  font-size: 17px;
  border: 2px solid #222222;
}
footer .content .right input[type="submit"]{
  height: 42px;
  width: 100%;
  font-size: 18px;
  /* color: #d9d9d9; */
  color: #ffffff;
  /* background: #eb2f06; */
  background: #E5282C
  outline: none;
  border-radius: 5px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 12px;
  border: 2px solid #E5282C
  transition: all 0.3s ease-in-out;
}
.content .right input[type="submit"]:hover{
  /* background: none;
  color:  #69aefe; */
  -ms-transform: scale(1.01); /* IE 9 */
  -webkit-transform: scale(1.01); /* Safari 3-8 */
  transform: scale(1.05);
  transition: .4s ease-out .1s;
}
footer .content .media-icons a{
  font-size: 16px;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  line-height: 43px;
  border-radius: 5px;
  border: 2px solid #222222;
  margin: 30px 5px 0 0;
  transition: all 0.3s ease;
  margin-left: 6%;
}
.content .media-icons a:hover{
  /* border-color: #eb2f06; */
  border-color: #AD6AB4;
  /* background: #E5282C */
}
footer .bottom{
  width: 100%;
  text-align: right!important;
  color: #d9d9d9;
  padding: 0 40px 5px 0;
}
footer .bottom a{
  color: #eb2f06;
}
footer .bottom p{
  text-align: right!important;
}
footer a{
  transition: all 0.3s ease;
}
footer a:hover{
  /* color: #eb2f06; */
  color: #AD6AB4;
}
@media (max-width:1100px) {
  footer .content .middle{
    padding-left: 50px;
  }
  }
  @media (max-width:950px){
  footer .content .box{
    width: 50%;
  }
  .content .right{
    margin-top: 40px;
  }
  }
  @media (max-width:560px){
  footer{
    position: relative;
  }
  footer .content .box{
    width: 100%;
    margin-top: 30px;
  }
  footer .content .middle{
    padding-left: 0;
  }
}

@media (max-width:800px){
  footer{
    width:103.5%;
    padding-left: 2%;
    padding-bottom: 15%;
  }
  footer .content .media-icons a{
    margin-left: 8%;
  }
}
