.socialnav {
    position: absolute;
    top:-80%;
    right: 0%;
    padding-top:0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 3rem;
    border-top-left-radius: 35px;
    border-bottom-left-radius: 0px;
    background: rgba( 41, 58, 110, 0.65 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 5.5px );
    -webkit-backdrop-filter: blur( 5.5px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    transition: 0.3s;
}
.socialnav--bottom {
    top:100%;
    border-bottom-left-radius: 35px;
    border-top-left-radius: 0px;

}
.socialnav_container {
    min-width: 200px;
    justify-content: space-around;
}
.socialnav_container .social_box {
    width: 30%;
}

/* styles for a common effect !!!YOU NEED THEM */
.effect {
  /* display: flex; */
}
.effect a {
  text-decoration: none !important;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 25px;
  overflow: hidden;
  position: relative;
  color: #f4f4f4;
  border: 1px solid #f4f4f4;
}
.effect a i {
  position: relative;
  z-index: 3;
  font-size: 16px;
}
.effect a:last-child {
  margin-right: 0px;
}
.effect a:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.effect a i {
  display: inline-block;
  vertical-align: middle;
}

/* amiens effect */
.effect.amiens a {
  transition: all 0.2s linear 0.2s;
}
.effect.amiens a i {
  transition: all 0.2s linear 0s;
}
.effect.amiens a:hover {
  transition: all 0.2s linear 0s;
  border-color: rgba(33, 33, 33, 0);
}
.effect.amiens a:hover i {
  transform: scale(1.15);
  text-shadow: 4px 0px 3px rgba(33, 33, 33, 0.3);
  transition: all 0.2s linear 0.2s;
  color: #00bcf5;
}
