@charset "utf-8";
:root{
	--main-color:#1d2f61;

}
.conFU.response-transition{
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
        animation-duration: 1.5s;
        visibility: visible;
}
 @keyframes fadeInUp {
        0% {
            /*opacity: 0;*/
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }

        100% {
            /*opacity: 1;*/
            -webkit-transform: none;
            transform: none;
        }
    }
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 1200px) and (min-width: 769px){}