@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&display=swap');

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

body {
    background-color: white;
}

a {
    color: #06f;
}

a:hover {
    color: #0cf;
}

.main {
    padding: 40px 10px 10px;
}

.container {
    width: 1400px;
}

.header__title {
    width: 1400px;
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

@media (max-width: 1440px) {
    .container {
        width: 1100px;
    }

    .header__title {
        width: 1100px;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 960px;
    }

    .header__title {
        width: 960px;
    }
}

.header {
    width: 100%;
    font-family: 'Arimo', sans-serif;
}

.header__topbar {
    padding: 0 50px;
    font-family: Arimo;
    background-color: black;
    display: flex;
    justify-content: space-between;
    height: 32px;
    align-items: center;
}

.header__topbar a {
    color: white;
    font-size: 13px;
    position: relative;
}

.header__topbar a:hover {
    text-decoration: none;
}

.header__topbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: white;
    bottom: -1.7px;
    left: 0;
    transition: width .32s cubic-bezier(.31, .29, .05, .96);
}

.header__topbar a:hover::after {
    width: 100%;
}

.header__topbar b {
    font-weight: 700;
    color: white;
    font-size: 15px;
    padding: 0 4.5px;
}

.header__topbar span {
    color: #ffffffbf;
}

.header__topbar strong:last-of-type span {
    font-weight: 400;
    padding-right: 4.5px;
}

.header__topbar strong:last-of-type a {
    letter-spacing: 0.03em;
    margin-left: 4.1px;
}

.header__main__wrapper {
    padding: 0 50px;
    height: 100px;
    display: flex;
    align-items: center;
    background-image: url('background_header.jpeg');
    background-repeat: no-repeat;
    background-color: white;
}

.header__main {
    width: 1124.8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    height: 60px;
}

.header__main a {
    position: relative;
    font-size: 13px;
    color: black;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.header__main a:hover {
    text-decoration: none;
}

.header__main a:not(:first-of-type)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: black;
    bottom: 0.7px;
    left: 0;
    transition: width .32s cubic-bezier(.31, .29, .05, .96);
}

.header__main a:not(:first-of-type):hover::after {
    width: 100%;
}

.header__title__wrapper {
    display: flex;
    justify-content: center;
    background-color: #f8f8f8;
}

.header__planroom {
    color: black;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.header__reference {
    color: #a3a3a3;
    margin-top: 5.5px;
}

.header__reference a {
    color: #a3a3a3;
    transition: color .25s ease-out;
}

.header__reference a:hover {
    text-decoration: none;
    color: black;
}