@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap');

.t-primary-bgcolor {
	background-color: #333;
}

a {
	color: #3485c0;
}

.header {
	background-color: white;
	height: 150px;
	align-items: center;
	display: flex;
	font-size: 30px;
	font-family: "Jost", sans-serif;
	justify-content: space-between;
}

.header img {
	max-height: 150px;
}

.header-wrapper {
	background-color: white;
	border-bottom: 10px solid #c20201;
}

.btn {
	background-color: #c20201;
	color: #fff;
	padding: 7px 24px;
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 3px;
}

.btn:hover {
	background-color: black;
	color: white;
	border-color: black;
	transition-duration: .3s;
	transition-timing-function: ease;
	transform: scale(1.1);
}

.container {
	width: 1170px;
}