.footercontainer{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 40vh;
    background-color: #4c0084;
    margin-top: 80px;
}

.footer_title{
    color: aliceblue;
    font-size: 30px;
    font-weight: bold;
}

.footer_sec{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ad_sec{
    display: flex;
    align-items: center;
    gap: 10px;
}

.ad_sec span{
    color: aliceblue;
    font-size: 14px;
}

.ad_sec a{
    color: aliceblue !important;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.ad_sec a:hover{
    transform: translateX(-10px);
}

.ad_icon{
    color: aliceblue;
    font-size: 20px;
}

.about_icon{
    color: aliceblue;
    font-size: 14px;
}

/* .social_btn{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-items: center;
    border: none;
} */

.Btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    /* overflow: hidden; */
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s;
  }

  .svgContainer img{
    width: 30px;
    height: 30px;
  }

  .svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
    z-index: 1;
  }
  
  .BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    /* z-index: 0; */
    border-radius: 10px;
    pointer-events: none;
    transition: all .3s;
  }
  
  .Btn:hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
  }
  
  .Btn:hover .svgContainer {
    background-color: rgba(156, 156, 156, 0.466);
    backdrop-filter: blur(4px);
  }

  .btns{
    display: flex;
    justify-content: space-around;
  }

@media screen and (max-width: 600px) {
    .footercontainer{
      flex-direction: column;
      height: 100%;
      align-items: start;
      justify-content: space-between;
      gap: 70px;
    }
}
  