.appointment {
    padding-bottom: 20px;
    .section_header {
        padding-bottom: 20px;
        text-align: center;
        h4 {
            font-size: 26px;
            font-weight: 600;
            color: $white;
            padding: 10px 0;
        }
    }
    .appointment_wrapper{
        padding: 40px 15px 20px 15px;
        background-color: #252525;

        .appointment_left{
            h5 {
                font-size: 16px;
                font-weight: 400;
                color: $white;
                line-height: 26px;
            }
            .appointment_form{
                padding-top: 20px;
                form{
                    .form_control {
                        display: block;
                        margin-bottom: 10px;
                        width: 100%;
                        height: 45px;
                        padding: 10px;
                        color: $black;
                        background-color: #383838;
                        background-clip: padding-box;
                        border-radius: 2px;
                        border: 1px solid #363636;
                        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: 100px !important;
                    }
                    .news_btn{
                        margin-top: 20px;
                        a{
                            padding: 12px 25px;
                            background-color: $primaryColor;
                            color: $white;
                            font-weight: 400;
                            font-size: 15px;
                            border-radius: 5px;
                        }
                    }
                }
            }
        }
        .appointment_img{
            img{
                width: 100%;
            }
        }
    }
}

