body{
	background-color: #fff;
}

.p p{
	margin-bottom: 0!important;
}

.main_menu ul  {
    gap: 54px;
}

.key_frame_image{
	animation: upDown 3s ease-in-out infinite;
}

.key_frame_image_2{
	animation: upDownT 3s ease-in-out infinite;
}


@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-15px); /* move up */
    }
	70% {
        transform: translateY(-5px); /* move up */
    }
    100% {
        transform: translateY(0); /* move down */
    }
}

@keyframes upDownT {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* move up */
    }
    100% {
        transform: translateY(0); /* move down */
    }
}


@media only screen and (min-width: 550px) {
	.main_menu ul li:last-child a{
		color: #fff!important;
		background: #007AA8;
    	padding: 13px 40px!important;
    	border-radius: 50px;
    	margin-right: 7px;
	}
	.main_menu ul:after{
		display: none;
	}
}

@media only screen and (max-width: 550px) {
	.h_tag h2, .p_tag p{
		color: #000!important;
	}
}



