@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

body {
    background-color: #1a5e53;
}

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

a {
    color: #9cd673;
}

.container {
    width: 1200px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 25px;
    font-family: "Source Sans 3", sans-serif;
    row-gap: 46px;
}

.header__logo img {
    max-width: 390px;
}

.header__nav {
    background-color: #9cd673;
    height: 48px;
    display: flex;
    align-items: center;
    width: 100%;
}

.header__nav a i {
    color: rgba(0, 0, 0, .8);
    font-size: 13px;
}

.header__nav a {
    color: #fff;
    padding: 0 10px;
    font-size: 14px;
    height: 48px;
    line-height: 48px;
}

.header__nav a:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, .6);
    background-color: rgba(255, 255, 255, 0.2);
}

.main {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 3rem;
}

.sidebar {
    margin-right: 3rem;
}