.appointment {
    padding: 60px 0;
    margin-top: 80px;
    background-image: url(../images/appointment_bg.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;

    &::after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: transparent linear-gradient(90deg, #0a82945b 0%, #11b7d15e 100%) 0% 0% no-repeat padding-box;
        z-index: -1;
    }

    .sectionHeader {
        text-align: center;

        h4 {
            font-size: 30px;
            color: $white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 5px 0;
        }

        .headingStyle {
            position: relative;
            background: transparent linear-gradient(90deg, #1E0B9B 0%, #08bcd8 100%) 0% 0% no-repeat padding-box;
            height: 5px;
            width: 90px;
            border-radius: 30px;
            margin: 15px auto;

            &::after {
                background-color: #08bcd8;
                content: "";
                position: absolute;
                left: 0;
                box-shadow: 1px 1.732px 2px 0px rgba(0, 0, 0, 0.2);
                top: -2.7px;
                height: 10px;
                width: 10px;
                border-radius: 50%;
                -webkit-animation-duration: 3s;
                animation-duration: 3s;
                -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                animation-direction: alternate-reverse;
                -webkit-animation-direction: alternate-reverse;
                -webkit-animation-name: watermark-animate;
                animation-name: watermark-animate;
            }
        }
    }

    .appointment_wrapper {
        padding-top: 40px;

        .appointment_img {
            position: relative;
            .round1{
                position: absolute;
                top: 0;
                left: 0;
                img{
                    animation: rotat 9s infinite linear;
                }
            }
            img {
                width: 100%;
            }
        }

        .appointment_form {
            padding: 30px;
            background-color: $white;
            border-radius: 10px;
            margin: 0 20px;

            .form_header {
                h4 {
                    font-size: 28px;
                    color: $primaryColor;
                    font-weight: 500;
                    line-height: 40px;
                }
            }

            .form_body {
                padding-top: 20px;

                .form_control {
                    display: block;
                    margin-bottom: 10px;
                    width: 100%;
                    height: 45px;
                    padding: 10px;
                    color: $black;
                    background-color: #ffffff;
                    background-clip: padding-box;
                    border-radius: 2px;
                    border: 1px solid #dededf;
                    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                    -moz-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                    -ms-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                    -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

                    &:focus {
                        outline: 0;
                    }

                    &::placeholder {
                        font-size: 15px;
                        color: #aeacac;
                        font-weight: 400;
                    }

                    &:optional {
                        color: #636262;
                    }
                }
                textarea{
                    height: 160px;
                }
                .btn {
                    padding: 10px 24px;
                    font-weight: 500;
                    font-size: 17px;
                    margin-top: 20px;
                    background: transparent linear-gradient(90deg, #1E0B9B 0%, #07CCEC 100%) 0% 0% no-repeat padding-box;
                    color: white;
                }
            }
        }
    }

}


@keyframes rotat{
    from {
        -webkit-transform: rotate(0deg);
}
to {
        -webkit-transform: rotate(359deg);
}
}