
@media only screen and (max-width: 999px) {
	
	.fhdw-title-desktop {
		display: none;
	}
	.fhdw-title-mobile {
		display: inline;
	}

	.fhdw-menu {
		margin: 0;
		font-size: 20px;
		font-weight: 400;
		color: white;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 99999;
		max-height: 100%;
	}
	.fhdw-mainmenu,
	.fhdw-submenu {
		width: 100%;
	}
	.fhdw-submenu-title {
		display: none;
	}
		
	.fhdw-menubar {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	.fhdw-menubar-item {
		grid-area: span 1 / span 1;
		height: 10vh;
		font-size: 40px;
		background-color: var(--color);
	}
	.fhdw-menubar-item.burger {
		background-color: #13527C;
	}
	.fhdw-menubar-item.active {
		background: linear-gradient(to right, #55b6d3 0%, #92cdea 100%);
	}
	.fhdw-menubar-icon {
		width: 100%;
		height: 50%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		margin-bottom: 2px;
	}
	.fhdw-menubar-icon svg {
		height: 20px;
	}
	.fhdw-menubar-text {
		width: 100%;
		height: 50%;
		font-size: 20px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	.fhdw-menubar-burger {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}

	.fhdw-menu-container {
		display: none;
		opacity: 0;
		transition: opacity 0.2s linear 0s;
		box-shadow: 0 -3px 4px rgba(0, 0, 0, 0.2);
	}
	.fhdw-menu-container.show {
		display: block;
		opacity: 1;
		height: 100%;
	}
	.fhdw-menu-content {
		
	}

	.fhdw-mainmenu {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		background: rgb(29, 53, 98);
		background: linear-gradient(90deg, rgba(29,53,98,1) 0%, rgba(0,138,179,1) 50%, rgba(86,194,224,1) 100%);
	}
	.fhdw-mainmenu-item {
		grid-area: span 1 / span 1;
		aspect-ratio: 1.5;
		min-height: 75px;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		text-align: center;
	}
	.fhdw-mainmenu-item.active {
		background: rgb(29, 53, 98);
	}

	.fhdw-submenu {
		display: grid;
		grid-template-columns: 40% 60%;
		grid-template-rows: 1fr;
		background: white;
		padding: 16px 0 16px 0;
		min-height: 400px;
	}
	.fhdw-submenu-left {
		grid-area: 1 / 1 / 1 / 1;
		padding: 0 14px 0 14px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.fhdw-submenu-left-block {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		gap: 24px;
	}
	.fhdw-submenu-right {
		grid-area: 1 / 2 / 1 / 2;
		border-left: 2px solid #0085B3;
		padding: 0 14px 0 14px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		row-gap: 15px;
	}
	.fhdw-submenu-item a,
	.fhdw-submenu-item a:hover,
	.fhdw-submenu-item a:focus,
	.fhdw-submenu-item a:visited {
		text-decoration: none;
		color: #0085B3;
		text-transform: uppercase;
	}
	.fhdw-submenu-item.subitem a {
		text-transform: none;
	}
	.fhdw-submenu-left a {
		font-weight: 700;
	}

	.fhdw-submenu-templates {
		display: none;
	}
}
