﻿/*iFrame - Map*/
.iframe-map
{
	width:100%;
	height:650px;
	border:0;
}
@media all and (max-width:1199px)
{
	.iframe-map
	{
		height:480px;
	}
}
@media all and (max-width:575px)
{
	.iframe-map
	{
		height:320px;
	}
}
@supports (aspect-ratio:16/9)
{
	.iframe-map
	{
		height:auto;
		aspect-ratio:16/5;
	}
	@media all and (max-width:1199px)
	{
		.iframe-map
		{
			aspect-ratio:16/9;
		}
	}
	@media all and (max-width:575px)
	{
		.iframe-map
		{
			aspect-ratio:4/3;
		}
	}
}

/*iFrame - YouTube*/
.iframe-youtube
{
	width:100%;
	height:100vh;
	border:0,
}
@supports (aspect-ratio:16/9)
{
	.iframe-youtube
	{
		height:auto;
		aspect-ratio:16/9;
	}
}