.breadcrum{
    background-image: url(/assets/img/banner/breadcrum.jpg);
    background-size: cover;
    height: 240px;
    padding: 50px 120px 0px 120px;
}

.breadcrum h1{
    margin-top: 45px;
    font-family: 'Dancing Script', cursive;
    font-size: 40px;
}

.breadcrum h2{
    margin-top: 25px;
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.contact{
    text-align: center;
}

.contact-from{
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    padding: 60px;
    box-shadow: 0 0 20px rgb(0 0 0 / 12%);
}

.contact-from form{
    width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-from form>*{
 display: inline-block;
 margin: 11px auto;
}

.contact-from form h2{
    margin-top: 0;
    margin-bottom: 30px ;
}

.contact-from form input,
.contact-from form textarea{
    height: 20px;
    width: 100%;
    border-radius: 10px;
    padding: 10px 0;
    text-align: center;
    border-color: rgb(118, 118, 118);
    border-width: 1px;
    border-style: solid;
}

.contact-from form textarea{
    height: 150px;
    text-align: left;
    padding: 10px;
    box-sizing: border-box;
}

.contact-from .contact-image{
    margin-left: 80px;
}

.contact-from .contact-image img{
    height: 100%;
    object-fit: cover;
    max-width: 576px;
}

.contact-from .success,
.contact-from .fail,
.contact-from .empty{
    color:white;
    padding:10px 0;
    margin:auto;
    width:100%;
}

.contact-from .success{
    background-color:green;
}
.contact-from .fail{
    background-color:red;
}
.contact-from .empty{
    background-color:red;
}

.hideAfter5Seconds {
    animation-name: hideAnimation;
    animation-delay: 2s;
    animation-duration: 1s;
    animation-fill-mode:forwards;
}

#captcha{
    display: flex;
    flex-direction: row;
}

#captcha .captcha-input{
    margin-left: 15px;
    width: 50%;
}

#captcha .captcha-reload{
    padding: 0;
    height: 22px;
    width: 91px;
}

@keyframes hideAnimation {
    80% {
        visibility: hidden;
        opacity: 0;
    }
    to{
    visibility: hidden;
    height: 0;
    width: 0;
    padding: 0;
    }
}

.intro{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro p{
    max-width: 700px;
}

@media (max-width:715px) {
    .contact-from{
        padding: 60px 30px;
        flex-direction: column;
        align-items: center;
    }

    .contact-from form input{
        box-sizing: border-box;
        height: 35px;
        border-color: rgb(118, 118, 118);
        border-width: 1px;
        border-style: solid;
    }

    .contact-from form textarea{
        box-sizing: border-box;
        border-color: rgb(118, 118, 118);
        border-width: 1px;
        border-style: solid;
    }

    .contact-from .contact-image{
        margin-left: 0px;
        margin-top: 11px;
    }
    .contact-from form {
        width: auto;
    }
}

@media (max-width:570px) {
    .breadcrum{
        padding: 40px 30px;
        height: 120px;
    }
    .breadcrum h1{
        margin-top: 25px;
        font-size: 25px;
    }
    
    .breadcrum h2{
        margin-top: 25px;
        font-size: 27px;
    }
}