/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    /* font-family: "Poppins", sans-serif;*/
    margin: 0px;
    padding: 0px;
    font-family: "DM Sans", sans-serif;
    /*font-family: "Ubuntu", sans-serif;*/
}

.row > * {
    margin-right: 0px !important;
    margin-left: 0px !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
}

/* Snake Animation */
.snake-animation {
    position: relative;
    /* overflow: hidden; */
}

    .snake-animation span:nth-child(1) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, transparent, #dd1717);
        animation: animate_one 2s linear infinite;
    }

@keyframes animate_one {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.snake-animation span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #dd1717);
    animation: animate_two 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate_two {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.snake-animation span:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, transparent, #dd1717);
    animation: animate_three 2s linear infinite;
}

@keyframes animate_three {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.snake-animation span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, transparent, #dd1717);
    animation: animate_four 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate_four {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.animated-button1 {
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    overflow: hidden;
    background: #dd1717;
    border-radius: 3px;
}

.animated-button1 {
    background-color: #dd1717 !important;
    color: white;
    border: none;
    outline: none;
    padding: 8px 19px;
    font-size: 14px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    /*text-transform: uppercase;*/
    border-radius: 4px;
    line-height: 24px;
    box-shadow: none;
    position: relative;
    z-index: 1;
}


    .animated-button1:hover::before {
        opacity: 0.2;
    }

    .animated-button1 span {
        position: absolute;
    }

        .animated-button1 span:nth-child(1) {
            top: 0px;
            left: 0px;
            width: 100%;
            height: 2px;
            background: -webkit-gradient( linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#d92626) );
            background: linear-gradient(to left, rgba(43, 8, 8, 0), #fff);
            -webkit-animation: 2s animateTop linear infinite;
            animation: 2s animateTop linear infinite;
        }

.animated-buttons1 {
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    overflow: hidden;
    background: #dd1717;
    border-radius: 3px;
}

.animated-buttons1 {
    background-color: #000 !important;
    color: white;
    border: none;
    outline: none;
    padding: 8px 48px;
    font-size: 14px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    /*text-transform: uppercase;*/
    border-radius: 4px;
    line-height: 24px;
    box-shadow: none;
    position: relative;
    z-index: 1;
}


    .animated-buttons1:hover::before {
        opacity: 0.2;
    }

    .animated-buttons1 span {
        position: absolute;
    }

        .animated-buttons1 span:nth-child(1) {
            top: 0px;
            left: 0px;
            width: 100%;
            height: 2px;
            background: -webkit-gradient( linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#d92626) );
            background: linear-gradient(to left, rgba(43, 8, 8, 0), #fff);
            -webkit-animation: 2s animateTop linear infinite;
            animation: 2s animateTop linear infinite;
        }

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.animated-button1 span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient( linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#d92626) );
    background: linear-gradient(to top, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateRight linear -1s infinite;
    animation: 2s animateRight linear -1s infinite;
}

.animated-buttons1 span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient( linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#d92626) );
    background: linear-gradient(to top, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateRight linear -1s infinite;
    animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.animated-button1 span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient( linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#d92626) );
    background: linear-gradient(to right, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateBottom linear infinite;
    animation: 2s animateBottom linear infinite;
}

.animated-button1 span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient( linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#d92626) );
    background: linear-gradient(to right, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateBottom linear infinite;
    animation: 2s animateBottom linear infinite;
}

.animated-buttons1 span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient( linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#d92626) );
    background: linear-gradient(to right, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateBottom linear infinite;
    animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.animated-button1 span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient( linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#d92626) );
    background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateLeft linear -1s infinite;
    animation: 2s animateLeft linear -1s infinite;
}

.animated-buttons1 span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient( linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#d92626) );
    background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateLeft linear -1s infinite;
    animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

/* SERVICES CONTACT FORM */

.service-contact-section {
    background-color: #f6f8fa;
    padding: 0 50px;
    background: url("/Images/home-1-section-bg-1.png");
}

.service-contact-wrapper {
    padding: 0 100px;
    /* background: url("./Assets/Images/home-1-section-bg-1.png") ;
  background-size: cover;
  width: 100%; */
}

.service-contact-inner-wrapper {
    padding: 50px 0;
}

.service-contact-img-wrapper {
    width: 100%;
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

    .service-contact-img-wrapper img {
        width: 400px;
        height: 600px;
    }

.service-contact-heading h3 {
    text-align: center;
    font-size: 40px;
    letter-spacing: 0.2px;
    font-weight: 600;
    color: #000249;
    margin-bottom: 50px;
}

.service-contact-btnSubmit {
    width: 100%;
}

    .service-contact-btnSubmit button {
        width: 100%;
        border: none;
        padding: 10px 15px;
        background-color: #dd1717;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
    }

.service-contact-inputWrapper {
    padding: 10px;
    position: relative;
}

.service-contact-form-control,
.service-contact-form-select {
    padding: 10px;
    border: 0.5px solid #e2eef2;
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    color: #212529;
    opacity: 1.0;
}

.service-contact-input-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto 0;
    color: #a0a0a0;
}


.wp-float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 85px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 5000;
    padding: 10px;
}


.tawk-min-container .tawk-button-circle.tawk-button-large {
    width: 40px !important;
    height: 40px !important;
}


@media (max-width: 576px) {
    .service-flex {
        flex-direction: column-reverse;
    }

    .wp-float-btn {
        width: 55px;
        height: 55px;
        bottom: 85px;
        right: 31px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 5000;
        padding: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-contact-wrapper, .service-contact-section {
        padding: 0;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
}

@media (min-width: 1400px) and (max-width: 1920px) {
}
