.call_float {
    position: fixed;
    bottom: 136px;
    right: 11px;
    z-index: 9999;
    background: #ffffff;
    border-radius: 999px;
    text-align: center;
    border: 2px solid #1486d8;
    padding: 12px;
}

.call_float img {
    width: 30px;
}

.whatsapp_icon_float {
    position: fixed;
    bottom: 65px;
    right: 10px;
    width: 54px;
    z-index: 9999;
}
.wp-caption a img {
    padding: 0;
}

.wp-caption.scale-with-grid {
    max-width: 100%;
}

.aligncenter img {
    display: inline;
}

.aligncenter {
    /* text-align: center; */
    margin: 0 auto;
    display: block;
}

img.scale-with-grid, #Content img {
    max-width: 100%;
    height: auto;
}



#scroll-container {
  border: 0px solid black;
  border-radius: 0px;
  overflow: hidden;
  width: max-content;
  background-color: #172f5c;
}

#scroll-text {
  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  
  -moz-animation: my-animation 15s linear infinite;
  -webkit-animation: my-animation 15s linear infinite;
  animation: my-animation 80s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateX(100%); }
  to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateX(100%); }
  to { -webkit-transform: translateX(-100%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  
  
  
  