*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* //for exclevate images  */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* contact page  */

/* PHP Email Form Messages
------------------------------*/
.contact-us .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.d-block {
    display: block !important;
}

.contact-us .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    /* margin-bottom: 24px; */
    font-weight: 600;
}

.contact-us .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    /* margin-bottom: 24px; */
}

.contact-us .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26E;
    border-top-color: #EEE;
    animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-scroll {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

 @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
      }
      @keyframes slideUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }