
@media only screen and (min-width: 1000px) and (max-width: 1155px) {
	.fhdw-menu {
		font-size: 16px;
	}
	.fhdw-menubar-text {
		font-size: 20px;
	}
	.fhdw-menubar-burger {
		font-size: 20px;
	}
	.fhdw-submenu {
		min-height: 340px;
	}
	.fhdw-submenu-item.subitem a {
		font-size: 13px !important;
	}
	.fhdw-mainmenu-item {
		min-height: 60px;
	}
	.fhdw-submenu-left {
		min-width: 150px;
	}
	.fhdw-submenu-right {
		min-width: 225px;
	}
}

@media only screen and (min-width: 1156px) {
	.fhdw-menu {
		font-size: 20px;
	}
	.fhdw-menubar-text {
		font-size: 24px;
	}
	.fhdw-menubar-burger {
		font-size: 24px;
	}
	.fhdw-submenu {
		min-height: 400px;
	}
	.fhdw-submenu-item.subitem a {
		font-size: 17px !important;
	}
	.fhdw-mainmenu-item {
		min-height: 75px;
	}
	.fhdw-submenu-left {
		min-width: 200px;
	}
	.fhdw-submenu-right {
		min-width: 300px;
	}
}

@media only screen and (min-width: 1000px) {
	
	.fhdw-title-desktop {
		display: inline;
	}
	.fhdw-title-mobile {
		display: none;
	}
	
	.fhdw-menu {
		font-weight: 700;
		color: white;
		height: 100%;
	}
	
	.fhdw-menubar {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
	}
	.fhdw-menubar-item {
	}
	.fhdw-menubar-item:hover {
		cursor: pointer;
	}
	.fhdw-menubar-icon {
		display: none;
	}
	.fhdw-menubar-text {
		margin-left: 24px;
		margin-right: 24px;
		text-align: center;
	}
	.fhdw-menubar-burger {
		margin-left: 24px;
		margin-right: 24px;
	}
	
	.fhdw-menu-container {
		display: none;
	}
	.fhdw-menu-container.show {
		position: fixed;
		left: 0;
		top: 180px;
		width: 100vw;
		display: flex;
		justify-content: space-around;
	}
	.fhdw-menu-content {
		display: flex;
		justify-content: center;
		z-index: 99999;
		flex-wrap: nowrap;
	}

	.fhdw-mainmenu {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		background: linear-gradient(90deg, rgba(29,53,98,1) 0%, rgba(0,138,179,1) 50%, rgba(86,194,224,1) 100%);
		height: 100%;
		aspect-ratio: 1.5;
	}
	.fhdw-mainmenu-item {
		grid-area: span 1 / span 1;
		aspect-ratio: 1;
		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:hover {
		cursor: pointer;
	}
	.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;
	}
	.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: 16px;
	}
	.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;
	}
	
	.fhdw-submenu-item.subitem a {
		font-weight: 600;
	}
	.fhdw-submenu-right {
		justify-content: flex-start;
		row-gap: 3.45px;
	}
	.fhdw-submenu-title {
		text-transform: uppercase;
		color: #00A5CE;
		font-weight: 700;
	}
}