/*Header*/
@media (max-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 94%;
    }
}

@media(max-width: 1216px){
	header .btn_main_color{
		font-size: 14px;
	}



}



@media(max-width: 1263px){
	
	header .container-xl{
		max-width:100%;
	}
	
	ul#menu-main-menu a {
    	font-size: 12px;
	}
	
    header .btn_main_color {
        font-size: 11px;
    }

    .fs-20{
        font-size: 16px;
    }
	
	

}


@media (max-width: 767.98px) {
    .slider__flex {
        flex-direction: column-reverse;
    }

    .slider__col {
        flex-direction: row;
        align-items: center;
        margin-right: 0;
        margin-top: 24px;
        width: 100%;
    }

    .slider__images {
        width: 100%;
    }



    .slider__thumbs {
                height: 140px;
        width: calc(100% - 96px);
        margin: 0 16px;
    }

    .slider__prev, .slider__next {
        height: 42px;
        width: 42px;
        display: flex;
        justify-content: center;
        align-items: center;
               top: 0px;
    }
    .slider__prev{
         transform: rotate(-90deg);
    }
    .slider__next {
        transform: rotate(270deg);
    }


    section#get_in_touch:after {
        height: 86%;
    }
	
	.about_bg_image img {
    	height: 100%;
    	object-fit: cover;
	}
}


@media(max-width: 965px){
	.page-template-About .feature_icon_title {
		flex-direction: column;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		gap: 8px;
	}
	.page-template-About .feature_description.fs-16 {
    	min-height: 146px;
		font-size:12px;
	}
}


@media(max-width: 600px){
    section#get_in_touch:after {
        height: 84%;
    }

    #get_in_touch  .form_wrapper {
        padding: 3rem;
    }

    .form_wrapper::before{
        display: none;
    }
}





/* General container styling */
.mobile_menu_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Fully transparent */
    z-index: 9999;
    transition: opacity 0.3s ease-in-out; /* Smooth opacity transition */
    backdrop-filter: blur(10px);
}

.mobile_menu_container.active {
    visibility: visible; /* Make visible */
    opacity: 1; /* Fully opaque */
    transition: opacity 0.3s ease-in-out; /* Smooth fade-in */
}

.mobile_menu_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out; /* Smooth slide-in animation */
}

.mobile_menu_container.active .mobile_menu_wrapper{
	 transform: translateX(0%);
}

/* Left column animation (menu) */
.mobile_menu_left {
    transform: translateX(-100%); /* Start off-screen */
    opacity: 0; /* Fully transparent */
    transition: transform 0.2s linear, opacity 0.2s linear;
    background: var(--brand_color);
    z-index: 3;
}

.mobile_menu_container.active .mobile_menu_left {
    transform: translateX(0); /* Slide in */
    opacity: 1; /* Fade in */
    transition-delay: 0.1s; /* Slight delay to enhance sequential animation */
    height: 100%;
}

/* Right column animation (contact info) */
.mobile_menu_right {
    transform: translateX(-100%); /* Start off-screen */
    opacity: 0; /* Fully transparent */
    transition: transform 0.3s linear, opacity 0.3s linear;
    background: #102957;
}

.mobile_menu_container.active .mobile_menu_right {
    transform: translateX(0); /* Slide in */
    opacity: 1; /* Fade in */
    transition-delay: 0.3s; /* Delay ensures it appears after the left column */
}

/* Two-column layout for tablet view */
@media (min-width: 768px) {
    .mobile_menu_wrapper {
        flex-direction: row;
    }

    .mobile_menu_left,
    .mobile_menu_right {
        flex: 1;
        padding: 20px;
    }
}

/* Close button styling */
.menu_close_button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 1000;
}

.menu_close_button line {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
}

/* WordPress menu styling */
.mobile_menu_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile_menu_list li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff
}

.mobile_menu_list li a:hover {
    background: #0073aa;
    color: #fff;
}

/* Contact info styling */
.contact_info h4 {
    margin-bottom: 10px;
}

.contact_info p,
.contact_info address {
    margin: 0 0 10px;
    color: #ededed;
}


@media(max-width: 760px){
	
	#heroSlider {
    	height: 617px;
	}
	
	.mobile_menu_right{
		display: none;
	}

	nav.mobile_nav {
    	margin-top: 60px;
	}
	
	
	.feature_card_wrap {
		padding: 16px;
		min-height: 253px;
		align-items: flex-start;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.feature_description.fs-18 {
    	font-size: 15px;
	}
	
	.about_bg_image {
		width: 100%;
		height: 100%;
	}
	
	
	.header__page .fs-30 {
    	font-size: 23px;
	}
	
	#get_in_touch .form_wrapper {
			padding: 76px 34px;
		}
}


/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-70 {
        width: 70% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }

    .h-sm-100 {
        height: 100% !important;
    }

    .h-sm-70 {
        height: 70% !important;
    }

    .h-sm-50 {
        height: 50% !important;
    }

    .h-sm-25 {
        height: 25% !important;
    }
}


/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .w-md-100 {
        width: 100% !important;
    }

    .w-md-70 {
        width: 70% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-25 {
        width: 25% !important;
    }

    .h-md-100 {
        height: 100% !important;
    }

    .h-md-70 {
        height: 70% !important;
    }

    .h-md-50 {
        height: 50% !important;
    }

    .h-md-25 {
        height: 25% !important;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .w-lg-100 {
        width: 100% !important;
    }

    .w-lg-70 {
        width: 70% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-25 {
        width: 25% !important;
    }

    .h-lg-100 {
        height: 100% !important;
    }

    .h-lg-70 {
        height: 70% !important;
    }

    .h-lg-50 {
        height: 50% !important;
    }

    .h-lg-25 {
        height: 25% !important;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .w-xl-100 {
        width: 100% !important;
    }

    .w-xl-70 {
        width: 70% !important;
    }

    .w-xl-50 {
        width: 50% !important;
    }

    .w-xl-25 {
        width: 25% !important;
    }

    .h-xl-100 {
        height: 100% !important;
    }

    .h-xl-70 {
        height: 70% !important;
    }

    .h-xl-50 {
        height: 50% !important;
    }

    .h-xl-25 {
        height: 25% !important;
    }
}


@media(max-width: 650px){
	.hero_content__descr{
		font-size: 15px;
	}
}