﻿#VideosLine {
	left: 466px;
}


/*#region Video*/
#Videos{
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:1rem;
}
#Video {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px,1fr));
	gap: 2rem;
	width: 100%;
}
iframe {
	width: 100%;
	height: 275px;
	border: none;
}
/*#endregion */
.menu > a.active::before {
	content: "";
	position: absolute;
	bottom: -9px;
	left: 0;
	height: 4px;
	width: 100%;
	border-radius: 10px;
	background: var(--saa-yellow);
	transition: 400ms;
}

/*#region brandInfo*/
#brandInfo * {
	color: #4f4f4f !important;
	font-weight: 500 !important;
	font-family: Gilroy, Arial !important;
}

#brandInfo :is(h1,h2,h3,h4,h5,h6) {
	font-size: 18px !important;
	margin: 30px 0 9px 0 !important;
}

#brandInfo a *,
#brandInfo a {
	text-decoration: underline;
}
/*#endregion*/

.loadMoreButton {
	width: max-content;
	padding: 7px 12px;
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--saa-blue);
	color: var(--saa-blue);
	border-radius: 15px;
	font-weight: 500;
}

@media(max-width:578px){
	#Video {
		grid-template-columns: 1fr;
	}
}