customers trust us
rated 4.9 by trusttravel.org
Our agents are available 24/7
.agentBox{
align-items: center;
text-align: right
}
.agentBox span{
font-family: 'Jaldi';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #13172A;
border: none;
position: relative;
z-index: 0;
}
.zoom-in-zoom-out {
width: 8px;
height: 8px;
background: #009858;
border-radius: 100%;
display: inline-block;
animation: zoom-in-zoom-out 1.5s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.5, 1.5);
}
100% {
transform: scale(1, 1);
}
}