@font-face {
	font-family: "Gotham Black";
	src: url(/font/GOTHAM-BLACK.OTF);
}

@font-face {
	font-family: "Gotham Medium";
	src: url(/font/GOTHAM-MEDIUM.OTF);
}

@font-face {
	font-family: "Gotham THIN";
	src: url(/font/GOTHAM-THIN.OTF);
}

html {
	scroll-behavior: smooth;
}

body {
	background: #fdfdfd;
	margin: 0;
	padding: 0;
}

/* Title Section */
.title {
	background-color: #ec0024;
	background-image: url(/images/pic5graphic.png);
}

.title__container {
	background-size: cover;
	display: flex;
	align-items: flex-end;
	justify-self: center;
	height: 250px;
	z-index: 1;
	width: 100%;
	max-width: 1500px;
	justify-content: center;
}

.title__container h1 {
	font-family: "Gotham Black";
	font-size: 65px;
	background-color: #fff;
	background-size: 100%;
	margin: 50px;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
}

/* News Section */
.news {
	position: relative; 
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 50px 50px;
}

.news::before {
	content: "";  
	position: absolute;
	inset: 0; 
	z-index: -1;
	background-image: url("/images/pic5graphic.png");
	background-size:inherit;
	
	opacity: 0.3;
}

.news_bg {
	opacity: 100px;
	display: flex;
	/* position: absolute;
	z-index: -1; */
}

.news__container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.news__card {
	background: #fff;
	margin: 50px;
	height: 485px;
	width: 427px;
	border-radius: 15px;
	position: relative;
	color: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.26);
}

.news__card:hover {
	transform: scale(1.08);
	transition: 0.2s ease-in-out;
	cursor: pointer;
}

.news__card--frame {
	border-radius: 15px 15px 0 0;
	height: 257px;
	width: 427px;
	margin: 0;
	overflow: hidden;
}

.news__card--img {
	margin: 0px;
	width: 100%;
	
}

.news__card--txt {
	color: #000;
	margin: 30px;
}

.news__card--txt h1 {
	font-family: "Gotham Medium";
	font-size: 20px;
	margin: 20px 0;
}

.news__card--txt p {
	font-family: "Gotham medium";
	font-size: 15px;
	text-align: justify;
	margin: 20px 0;
}

/* Footer CSS */
.footer__container {
	background-color: #fff3d1;
	padding: 150px 0 10px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.26);
}

/* Sosial Icons */
.social__icons--links {
	color: #000;
	font-size: 50px;
}

.social__media {
	width: 100%;
}

.social__media--wrap {
	font-family: "Gotham Medium";
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 50px 20px 50px;
}

.social__icons {
	color: #000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 250px;
}

.social__icons a,
.social__icons a:visited {
	color: inherit;
}

.social__icons a:hover {
	transform: scale(2);
	transition: 0.2s ease-in;
	cursor: pointer;
}

.website__rights {
	color: #000;
}