@import url("/templates/global.css");
body {
	background-color: white;
}

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

a {
	color: #0063bd;
}

.container {
    width: 1170px;
}

.header-wrapper {
	background-image: linear-gradient(90deg, #00A3E0 0%, #0063BD 100%);
}

.header {
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
}

.header__logo img {
    width: 300px;
}

.header__nav {
    font-size: 0;
    padding-right: 100px;
}

.header__nav a {
    color: #FFF;
    font-size: 16px;
    transition: all .4s ease-in-out;
}

.header__nav a:hover {
    text-decoration: none;
    opacity: .7;
}

.header__nav a:not(:last-child) {
    margin-right: 30px;
}

.main {
    padding-top: 3rem;
}

.sidebar {
    margin-right: 3rem;
}