/* @import url("https://fonts.googleapis.com/css2?family=Poppins&dplay=swap"); */


/* Social Media Handle */  
/* .socialmedia{
    margin-top: 35px;
    background-color: red;
}   */

/* .socialmedia .followuson{
    margin-top: 5px;
    background-color: blue;
} */
.iconswrapper{
    display: inline-flex;
}

.iconswrapper .icons {
    position: relative;
    background: #e9e7e7;
    border-radius: 50%;
    padding: 15%;
    margin: 3px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
  }

  .iconswrapper .tooltip{
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.iconswrapper .tooltip::before{
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.iconswrapper .icons:hover .tooltip{
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.iconswrapper .icons:hover span, .iconswrapper .icons:hover .tooltip{
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.iconswrapper .facebook:hover,
.iconswrapper .facebook:hover .tooltip,
.iconswrapper .facebook:hover .tooltip::before{
    background: #1877f2;
    color: #ffffff;
}

.iconswrapper .linkedin:hover,
.iconswrapper .linkedin:hover .tooltip,
.iconswrapper .linkedin:hover .tooltip::before{
    background: #00a3b5;
    color: #ffffff;
}

.iconswrapper .instagram:hover,
.iconswrapper .instagram:hover .tooltip,
.iconswrapper .instagram:hover .tooltip::before{
    background: #e4405f;
    color: #ffffff;
}


 /* Small devices (landscape phones, 576px and up) */
 @media (min-width: 576px) { 
  .iconswrapper .icons{
    padding: 15%;
    margin: 3px;
    width: 30px;
    height: 30px;

  }
}
