

@media(max-width: 768px){
        .foot-info-con li{
            margin-top: 10px;
        }

}




.footer-social{
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 20px;
}

.footer-social a{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        border-radius: 9999px;
        background: #3f4955;
        color: #fff;
}


.footer-social a:hover{
        color: #fff;
}






.contact-action {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 999;
}

.contact-action .item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background: #3f4955;
    border-radius: 50%;
    transition: 0.5s;
    box-shadow: 1px 1px 5px #0000008c;
}

.contact-action .item .icon1 {
    width: 20px;
    margin-top: 4px;
}

.contact-action span {
    position: absolute;
    visibility: hidden;
    z-index: -1;
    top: 0;
    left: 0;
}

.widget-open .item a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.widget-open .item a img {
    width: 25px;
}

.widget-open span:nth-child(2) {
    top: -60px;
    background: #186AE6;
}

.widget-open span:nth-child(3) {
    top: -120px;
    background: #25D366;
}

.widget-open span:nth-child(4) {
    top: -180px;
    background: #9179EE;
}


.pulse-1 {
    animation: pulse-animation 2s infinite;
    border-radius: 50%;
}

.contact-action.widget-open {
    animation: none;
}

.widget-open span {
    visibility: visible;
    animation: 1s entering;
}

@keyframes entering {
  0%{
    top: 0;
    left: 0;
    width: 65%;
    height: 65%;
  }
  100%{
    width: 100%;
    height: 100%;
  }
}


@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}



.cont-info-con ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cont-info-con li{
   margin-bottom: 0;
   flex: 0 0 calc((100% - 2*30px) / 3);
}

@media (max-width: 1000px) {
  .cont-info-con li {
    flex: 0 0 100%;
  }
}