*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Ano regular;
}
body{
    min-height: 100vh;
    width: 100%;
    background: #F7F7F7;
}
footer::before{
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    height: 1px;
    width: 100%;
    background: rgb(193, 191, 191);
}
footer .content{
    max-width: 1250px;
    margin: auto;
    padding: 30px 40px 0px 40px;
}
footer .content .top{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
}
.content .top img{
    width: 60px;
    height: 50px;
    background-color: #fff;
}
.content .top .media-icons{
    display: flex;
}
.content .top .media-icons a{
    height: 30px;
    width: 30px;
    background: #fff;
    margin: 0 6px;
    border-radius: 20%;
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}
.content .top .media-icons a:nth-child(1){
    background-color:  #4267b2;
}
.content .top .media-icons a:nth-child(1):hover{
    background-color:  #4267b2;
    background: rgb(243, 141, 189);
}
.content .top .media-icons a:nth-child(2){
    background-color:  #1da1f2;
}
.content .top .media-icons a:nth-child(2):hover{
    background-color:  #1da1f2;
    background: rgb(243, 141, 189);
}
.content .top .media-icons a:nth-child(3){
    background-color:  	#e1306c;
}
.content .top .media-icons a:nth-child(3):hover{
    background-color:#e1306c;
    background: rgb(243, 141, 189);
}
.content .top .media-icons a:nth-child(4){
    background-color: #4285F4;
}
.content .top .media-icons a:nth-child(4):hover{
    background-color: #4285F4;
    background: rgb(243, 141, 189);
}
.content .top .media-icons a:nth-child(5){
    background-color: #0077b5;
}
.content .top .media-icons a:nth-child(5):hover{
    background-color: #0077b5;
    background: rgb(243, 141, 189);
}
.content .top .media-icons a:nth-child(6){
    background-color: #ff0000;
}
.content .top .media-icons a:nth-child(6):hover{
    background-color: #ff0000;
    background: rgb(243, 141, 189);
}
footer .content .link-boxes{
    width: 100%;
    display: flex;
    justify-content: space-around;
}
/* footer .content .link-boxes .box{
   
    width: calc(100% / 2 -10px);
}
.content .link-boxes .box .link_name{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
}
.link-boxes .box .link_name::before{
    content: '';
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
}
.content .link-boxes .box li{
    margin-left: 6px 0;
    list-style: none;
}
.content .link-boxes .box li a{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.4s ease;
}
.content .link-boxes .box li a:hover{
    opacity: 1;
    text-decoration: underline;
}
.content .link-boxes .input-box{
    margin-right: 55px;
}  */
/* .link-boxes .input-box input{
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #fff;
    background: #b0274f;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #fff;
    margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
    color: #fff;
    font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
    background: #fff;
    color: #b0274f;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    margin-top: 10px;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
    opacity: 1;
} */
footer .bottom-details{
    width: 100%;
    ;
    bottom: 0;
}
footer .bottom-details .bottom-text{
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    color: #fff;
    justify-content: space-around;
}
.bottom-details .bottom-text h2{
    font-size: 12px;
    color: #fff;
    opacity: 0.8;
    font-weight: lighter;
    text-decoration: none;
}
.bottom-details .bottom-text h2:hover{
    opacity: 1;
    text-decoration: underline;
}
.bottom-details .bottom-text{
    margin: 10px;
} 
@media (max-width: 900px) {
    footer .content .link-boxes{
      flex-wrap: wrap;
    }
    footer .content .link-boxes .input-box{
        width: 40%;
        margin-top: 10px;
    }
}
@media (max-width: 700px) {
   
    .content .top .media-icons a{
        height: 30px;
        width: 30px;
        background: #fff;
        font-size: 12px;
        line-height: 30px;
    }
    footer .content .link-boxes .box{
        width: calc(100% / 2 -10px);
    }
    footer .content .link-boxes .input-box{
        width: 60%;
    }
}
@media (max-width: 520px) {
    footer{
        position: relative;
    }
    footer .content .top{
         flex-direction: column;
    }
    footer::before{
        top: 100px;
    }
    .content .top .media-icons{
        margin-top: 16px;
    }
    footer .content .link-boxes .input-box{
        width: 100%;
    }
}