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

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

a {
	color: #25317b;
}

.container {
	width: 1200px;
}

body {
	background-color: #fff;
}

.header {
	display: flex;
	justify-content: space-between;
	font-family: "Poppins", sans-serif;
}

.header__logo img {
	height: 102px;
	margin: 8px 0;
}

.header__nav {
	display: flex;
	flex-grow: 1;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px 0 100px;
}

.header__nav a {
	color: #000;
	font-size: 14.5px;
	font-weight: 300;
	transition: color .2s ease-out,background-color .2s ease-out;
    transition-duration: 0.2s, 0.2s;
	letter-spacing: 0.42px;
	border-bottom: 2px solid transparent;
}

.header__nav a:hover {
	border-bottom: 2px solid #000;
	text-decoration: none;
}