:root {
    --color-accent-50: 232 246 255;
    --color-accent-100: 208 236 255;
    --color-accent-200: 151 218 255;
    --color-accent-300: 54 201 255;
    --color-accent-400: 0 179 230;
    --color-accent-500: 0 148 191;
    --color-accent-600: 0 115 150;
    --color-accent-700: 0 87 114;
    --color-accent-800: 0 60 80;
    --color-accent-900: 0 33 45;
    --color-accent-950: 0 22 31;
}

@font-face {
    src: url(fonts/SimplonNorm.woff2);
    font-family: "SimplonNorm";
}

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

a {
    color: #00b3e6;
}

body {
    background-color: #fff;
    min-height: 100vh;
}

.container {
    width: 1100px;
}

.header-wrapper {
    border-top: 20px solid #00b3e6;
    background-color: #fff;
}

.header {
    padding: 10px 15px 25px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    max-height: 120px;
}

.header__nav a {
    color: #6d6d6d;
    font-size: 20px;
    transition: color .1s ease;
    font-family: "SimplonNorm", sans-serif;
}

.header__nav a:hover {
    text-decoration: none;
    color: #86b637;
}

.main {
    padding: 3rem 15px;
}

.sidebar {
    margin-right: 3rem;
    display: none !important;
}


.contact-logo {
    padding: 0 0 25px 0;
}

.contact-info {
    display: flex;
    padding: 20px 0;
}

.contact-info div {
    text-align: left;
    border-left: 1px solid #33333350;
    padding: 0 15px;
    font-size: 15px;
}

.contact-info div:first-child {
    border-left: none;
    padding-left: 0;
}

@media screen and (max-width: 552px) {
    .contact-info {
        flex-direction: column;
    }

    .contact-info div {
        border-left: none;
        padding-left: 0;
        padding-bottom: 10px;
    }
}
