/* Color */
.text-color,
.btn.outline.color,
a.arrow-link:hover,
a.arrow-link:hover:before,
.service-item:hover > i,
.service-item:hover > a.arrow-link:before,
.c-details a:hover,
.c-details a:hover i,
.post-title a:hover {
	color: #a2c43b;
}

/* Background color */
a.btn:hover,
button:hover,
input[type="submit"]:hover,
a .icon:hover,
a.btn.outline:hover,
button.outline:hover,
input[type="submit"].outline:hover,
.btn.color,
.icon-nav a:hover > i,
.tags a:hover,
.tagcloud a:hover,
a.comment-reply-link:hover,
.form-blog button[type="submit"]:hover,
.pagination a:hover {
	background: #a2c43b;
}

/* Border color */
.tags a:hover,
.tagcloud a:hover {
	border: 1px solid #a2c43b;
}

.btn.outline.color,
.form-blog button[type="submit"]:hover {
	border: 2px solid #a2c43b;
}

/* RGBA border color */
a.btn.outline:hover,
button.outline:hover,
input[type="submit"].outline:hover {
	border: 2px solid #a2c43b;
	border: 2px solid rgba(162,196,59,1);
}

/* Red border color */
a.btn.outline.red:hover,
button.outline.red:hover,
input[type="submit"].outline.red:hover {
	border: 2px solid #eb4646;
	border: 2px solid rgba(235,70,70,1);
		background: #eb4646;
}

/* Red color */
a.btn.red:hover,
button.red:hover,
input[type="submit"].red:hover {
	background: rgba(235,70,70,.7);
}

/* RGBA background color */
.back-top {
	background: #a2c43b;
	background: rgba(162,196,59,0.9);
}

.back-top:hover {
	background: rgba(162,196,59,1);
}

/* Responsive hide and show by screensize */
//medium+ screen sizes
@media only screen and (min-width:992px) {
    .desktop-only {
        display:block !important;
    }
}
 
//small screen sizes
@media only screen and (max-width: 991px) {
    .mobile-only {
        display:block !important;
    }
 
    .desktop-only {
        display:hide !important;
    }
}
