/*----contact us----*/
a .contact-addressBox{
    color: var(--bs-secondary);
}
.contact-addressBox{
    border: 1px solid #e0ede9;
}
.contact-addressBox .icon {
    font-size: 30px;
    width: 80px;
    height: 80px;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 40px);
    top: -25px;
    border: 5px solid #fff;
    transition: all .3s ease-in-out;
}
.contact-addressBox .icon span {
    border: 4px solid rgba(242,74,32,0);
    border-radius: 50%;
    height: 0px;
    position: absolute;
    -webkit-transition: background-color .4s ease-in-out,border .4s ease-in-out,width .4s ease-in-out,height .4s ease-in-out,opacity .4s ease-in-out;
    transition: background-color .4s ease-in-out,border .4s ease-in-out,width .4s ease-in-out,height .4s ease-in-out,opacity .4s ease-in-out;
    width: 0px;
    border: 1px solid var(--bs-primary);
    z-index: 1;
}
.contact-addressBox:hover .icon {
    color: #fff;
}
.contact-addressBox:hover .icon span.circle-1 {
    height: 110px;
    width: 110px;
    border-color: var(--bs-secondary);
}
.contact-addressBox:hover .icon span.circle-2 {
    height: 90px;
    width: 90px;
    border-color: var(--bs-secondary);
}
.contact-addressBox:hover .icon span.circle-3 {
    height: 70px;
    width: 70px;
    border-color: var(--bs-secondary);
    background: var(--bs-secondary);
}
.contact-addressBox:hover {
    border: 1px solid #ececec;
    background: #f9f9f9 !important;
}
.live-circle {
    color: green;
    animation: myAnimation 4s infinite;
    font-size: 12px !important;
}
@keyframes myAnimation {
  0%   {color: green;}
  25%  {color: #02ca02;}
  50%  {color: green;}
  75% {color: #02ca02}
  100% {color: green}
}

/*-----responsive-----*/
@media (max-width: 1599px) {
    .contact-addressBox .fs-3{ font-size: 18px !important;}
}


