@media(max-width: 849px){
	:root{
        --px-content: 90% !important;
        --px-content-small: 80% !important;
    }

    /*body{
		font-size: 0.875rem;
	}*/

	.header-top{
		background-color: var(--fs-color-primary) !important;
	}

	#logo img,
	.stuck #logo img{
		max-height: 50px !important;
	}

	.header-bg-color{
		background-color: #fff !important;
	}

	.mobile-nav.nav>li>a{
		color: #000;
	}


	.icon-footer-contact{
		flex-direction: column;
		gap: 1rem;
		align-items: center;
		text-align: center;
	}

	.icon-footer-contact .icon-box-text{
		padding-left: 0 !important;
	}

}

@media(max-width: 549px){
	:root{
        --px-content: 105% !important;
        --px-content-small: 80% !important;
    }

    input[type='submit'], input[type="button"], button:not(.icon), .button:not(.icon){
		font-size: 0.875rem;
	}


	.section-about-us:before{
		clip-path: polygon(0 0, 70% 3%, 100% 0, 100% 100%, 0 100%);
	}

	.section-about-us .section-bg {
	    clip-path: polygon(0 2%, 70% 4%, 100% 2%, 100% 100%, 0 100%);
	}


	.icon-footer-contact{
		flex-direction: row;
		text-align: left;
	}

}

@media (min-width: 550px){
	.justify-content-md-between{
		justify-content: space-between;
	}
}

@media (min-width: 850px){
	.row-col-lg-5 .col{
		flex-basis: 20%;
        max-width: 20%;
	}

	.flex-lg-row-reverse{
		flex-direction: row-reverse;
	}

	.justify-content-lg-between{
		justify-content: space-between;
	}
	
	.col-lg-auto{
		flex-basis: auto;
		max-width: fit-content;
	}

	/*menu*/
	/*.header-main{
    	position: unset;
	}

	.header-bg-container{
	    z-index: -1;
	}

	.header-main .flex-col.logo{
	    position: absolute;
	    top: 0;
	    bottom: 0;
	    z-index: 100;
	    display: flex;
	    align-items: center;
	    padding: 0rem;
	}

	.header-main .flex-col.logo:after{
	    content: "";
	    position: absolute;
	    top: 0;
	    bottom: 0;
	    right: 0;
	    width: 1000px;
	    background-color: #fff;
	    z-index: -1;
	    clip-path: url('#clip-path-lg');
	    transform: translateX(70px);
	}

	.header-main .flex-col.flex-left,
	.header-top .flex-col.flex-left{
	    margin-left: 300px;
	}

	.header-top .flex-col.flex-left{
		flex: 1;
	}

	.header-top .flex-col.flex-left .nav{
		justify-content: space-between;
	}*/



	.header-nav-main.nav li.menu-item{
		z-index: 1;
	}

	.header-nav-main.nav > li.menu-item> a:after{
		content: "";
		position: absolute;
		left: -1rem;
		right: -1rem;
		top: 0;
		bottom: 0;
		z-index: -1;
		background-color: var(--fs-color-secondary);
		clip-path: url('#clip-path-menu-item');
		transition: all .3s ease-in-out;
		opacity: 0;
	}

	.header-nav-main.nav > li.menu-item.active > a:after,
	.header-nav-main.nav > li.menu-item > a:hover:after{
		opacity: 1;
	}

	.header-nav .sub-menu,
	.header-nav .active>ul.children,
	.header-nav .active>ul.sub-menu{
		display: none !important;
		padding: 0;
		/*min-width: unset;*/
		border: 0;
		border-radius: 0.25rem;
		background-color: #fff;
		box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	}

	.header-nav .menu-item{
		width: unset !important;
		min-width: unset !important;
		position: relative;
	}

	.header-nav .sub-menu>.menu-item>a{
		padding: 0.75rem 0;
		font-size: 15px;
		font-weight: 500;
		color: #000;
		text-transform: capitalize;
	}

	.header-nav .sub-menu > .menu-item:hover > a{
		color: var(--primary-color);
	}

	.header-nav .menu-item:hover > .sub-menu,
	.header-nav .menu-item.current-dropdown .sub-menu{
		display: block !important;
		animation: menu 0.3s;
		height: min-content;
	}

	.header-nav .sub-menu .menu-item>.sub-menu{
		position: absolute;
		left: 100%;
		top: 0;
		z-index: 10;
	}

	.header-nav .sub-menu li{
		display: block;
	}

	@keyframes menu {
	    0% { transform: translateY(20px); opacity: 0}
	    100% { transform: translateY(0px); opacity: 1}
	}

}