/*
Theme Name: Airtech Child
Description: This is a child theme for Fitzeous Theme
Author: Templatation
Template: airtech
Version: 1.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

@media only screen and (min-width: 48.063em) {
    .header_area .logo2 img {
        width: 30%;
    }
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

/* 2) Center the logo that has the class .logo2 */
	.navbar .logo2 {
		transform: translate(25%, 20%); /* pull it back by half its own size */
	}

}


.replacement_area .media .d-flex img {
	margin-top: 0px !important;
}
/* === CALL-US BUTTON – keep solid colour, no hollow === */
.home_banner_area .main_btn,
.contact_wd .main_btn{
	/* Base look – matches your old style */
	background:#ca232a;    /* main red */
	color:#fff;
	border:2px solid #ca232a;
	border-radius:3px;
	transition:background .3s ease;  /* smooth darken if you choose */
}

/* Hover / Focus – stays solid (optional: darken slightly) */
.home_banner_area .main_btn:hover,
.home_banner_area .main_btn:focus,
.contact_wd .main_btn:hover,
.contact_wd .main_btn:focus{
	/* -- Option A: exact same colour - no change - uncomment next two lines
	background:#ca232a;
	border-color:#ca232a;
	*/

	/* -- Option B: tiny darken, still solid (≈10 % darker) */
	background:#b11d22;
	border-color:#b11d22;
	color:#fff;
}


