.boxed-view {
    padding: 20px 0px;
}

h1, .h1 {
    font-size: 40px;
    font-style: normal;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    color: #1c2045;
    letter-spacing: 0;
}
.fullscreen-banner {
    position: relative;
    min-height: 600px;
}
.navbar-nav .nav-link:before {
    background: linear-gradient(to right, rgb(238 29 35) 0%, rgb(241 29 35) 25%, rgb(239 29 35) 50%, rgb(239 15 21) 75%, rgb(237 29 35) 100%);
}
.secondary-footer {
    padding: 10px 0;
    background: #2e3092;
    color: #ffffff;
    font-weight: 500;
    text-transform: none;
}
.text-justify{
    text-align: justify;
}
.footer{
    padding-top: 15px;
}
.counter h5{
    color: #2e3092!important;
}
.adr_main p{
    display: inline-flex;
}
.adr_main i{
    padding-right: 5px;
}

.whatsapp-float{
    position: fixed;
    right: 18px;
    bottom: calc(100px + env(safe-area-inset-bottom, 0));
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #25D366;
    color: #fff; /* icon color */
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    z-index: 9999;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  .whatsapp-float i{
    font-size: 28px; line-height: 1;
  }
  .whatsapp-float:hover{
    transform: translateY(-2px);
    background: #1ebe57;
    box-shadow: 0 14px 28px rgba(0,0,0,.22);
  }
  /* optional pulse */
  .whatsapp-float::after{
    content:"";
    position:absolute; inset:0; border-radius:inherit;
    box-shadow: 0 0 0 0 rgba(37,211,102,.35);
    animation: wapp-pulse 2s infinite;
    pointer-events:none;
  }
  @keyframes wapp-pulse{
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.35); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
  }
  @media (max-width: 420px){
    .whatsapp-float{ width:54px; height:54px; }
  }