@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: "Poppins" , sans-serif;
 }
/* body{
  min-height: 100vh;
  width: 100%;
  background: #EEECEB;
} */
footer{

  background: #000;
  width: 100%;
  bottom: 0;
  left: 0;
}
footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  /* background: #000; */
}
.box img{
    width: 40%;
}
footer .content{
  /* max-width: 1250px; */
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
 /* .logo-details{
  color: #fff;
  font-size: 30px;
} */
 /* .media-icons{
  display: flex;
} */

 /* .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
} */

.media-icons a{
    border: 0px solid;
    height: 3rem;
    width: 3rem;
    /* text-align: center; */
    line-height: 3rem;
    border-radius: 5rem;
    font-size: 1.5rem;
    color: #fff;
    margin-top: 70px;
    /* margin-left: 1rem; */
    text-decoration: none;
    /* background: #eee; */
    /* margin-left: 50px; */

}

.media-icons a:hover{
    background: #eee;
    color: #000;
}

 /* .media-icons a:nth-child(1){
  background: #4267B2;
}
 .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
}
 .media-icons a:nth-child(2){
  background: #1DA1F2;
}
.media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
}
.media-icons a:nth-child(3){
  background: #0077B5;
}
 .media-icons a:nth-child(3):hover{
  color: #0077B5;
  background: #fff;
} */

footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 4 - 10px);
}
.content .link-boxes .box .link_name{
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
 
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}

.content .link-boxes .box .link_footer{
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
 
}
.link-boxes .box .link_footer::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  /* background: #fff; */
}

.content .link-boxes .box li{
  margin: 20px 0;
  list-style: none;
}
.content .link-boxes .box li i {
  color: #fff;

  font-size: 16px;
  font-weight: 400;
  padding-right: .1rem;
  text-decoration: none;
  /* opacity: 0.8; */
  transition: all 0.4s ease
}
.content .link-boxes .box li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    /* padding-right: .2rem; */
    text-decoration: none;
   
    /* padding: .5rem; */
    /* opacity: 0.8; */
    transition: all 0.4s ease
  }
.content .link-boxes .box li a:hover i{
  /* opacity: 1;
  text-decoration: underline; */
  padding-right: .4rem;
}

.box  p{
    color: #fff;
    margin: 15px;
}

footer .bottom-details{
  width: 100%;
  background: #000;
}
footer .bottom-details .bottom_text{
  /* max-width: 1250px; */
  /* margin: auto; */
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  /* opacity: 0.8; */
  text-decoration: none;
}
/* .bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
} */
.bottom-details .bottom_text a{
  margin-right: 10px;
}

@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
  .box img{
    width: 30%;
}
}
@media (max-width: 700px){
  footer{
    position: relative;
  }
  .content .top .logo-details{
    font-size: 26px;
  }
 .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 24px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 5 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .content .top{
    flex-direction: column;
  }
 .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 1 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}