* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: "Maven Pro", Helvetica, sans-serif;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	width: 100%;
	background-color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-block-start: 0;
	margin-block-end: 0;
}

a,
p a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #a8a8a8;
}

address {
	font-style: normal;
}

.button {
	font-size: 0.75rem;
  font-weight: 500;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #656565;
	border-color: #656565;
	color: #fff;
	border-radius: 100%;
	aspect-ratio: 18 / 5;
	min-width: 180px;
	max-width: 180px;
	min-height: 50px;
	max-height: 50px;
	margin: 0 auto;

	&:hover,
	&:focus {
    color: #000;
		background-color: #df946c;
		border-color: #df946c;
	}
}

.container {
	padding: 0;
	width: 100%;
	background-color: black;
	background-image: url("../img/Web_bg.jpg");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 100%;
}

.container .main-image-mobile {
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width: 640px) {
	.container .main-image-mobile {
		display: none;
	}
}

.container .main-image {
	display: none;
}
@media screen and (min-width: 640px) {
	.container .main-image {
		display: block;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
}
@media screen and (min-width: 1450px) {
	.container .main-image {
		max-width: 1450px;
		margin: 0 auto;
	}
}

.container--inner {
	max-width: 1450px;
	margin: 0 auto;
}

.container--header {
	display: flex;
	align-items: center;
	padding: 2rem 0;
}
.container--header .logo {
	max-width: 300px;
	margin: 0 auto;
}
@media screen and (min-width: 640px) {
	.container--header .logo {
		max-width: 346px;
	}
}

.container--topcontent {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 30px;
}
@media screen and (min-width: 900px) {
	.container--topcontent {
		padding: 0;
	}
}

.container--topcontent .headline {
	text-transform: uppercase;
	color: #a8a8a8;
	font-weight: 700;
	font-size: 33px;
	line-height: 1;
	margin-bottom: 2rem;
}
@media screen and (min-width: 640px) {
	.container--topcontent .headline {
		font-size: 60px;
	}
}

.container--topcontent p {
	margin-bottom: 3rem;
}

.container--bottomcontent {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 30px;
}
@media screen and (min-width: 900px) {
	.container--bottomcontent {
		padding: 0;
	}
}
.container--bottomcontent h2 {
	text-transform: uppercase;
	color: #a8a8a8;
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.container--bottomcontent h2 span {
	text-transform: none;
	font-size: 25px;
}
.container--bottomcontent h3 {
	font-weight: 500;
}
.container--bottomcontent .contact-grid {
	margin: 0 auto;
}
@media screen and (min-width: 640px) {
	.container--bottomcontent .contact-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
.container--bottomcontent .contact-grid .left-column {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid white;
	width: 300px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (min-width: 640px) {
	.container--bottomcontent .contact-grid .left-column {
		padding-bottom: 0;
		padding-right: 20px;
		margin-bottom: 0;
		margin-right: 20px;
		border-bottom: none;
		border-right: 1px solid white;
		width: auto;
	}
}
.container--bottomcontent .contact-grid .right-column {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (min-width: 640px) {
	.container--bottomcontent .contact-grid .right-column {
		width: auto;
		padding-left: 20px;
	}
}

.container--bottomcontent .contact-grid p {
	line-height: 2;
}
.icon img {
	padding-right: 0.5rem;
}


.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-wrapper { 
  max-width: 960px;
  margin: 50px auto;
  position: relative; 
  padding-bottom: 55%; 
  height: 0; 
  overflow: hidden; 
}

.youtube-video { 
  position: absolute;
  aspect-ratio: 16 / 9;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}


.footer {
	height: 130px;
	width: 100%;
	background-color: black;
	background-image: url("../img/Web_Bottom_Silver.jpg");
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
}
@media screen and (min-width: 640px) {
	.footer {
		height: 365px;
		background-size: 100%;
		margin-top: -100px;
	}
}
