* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

body {
    padding: 3rem 4rem;
    background: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

svg {
    opacity: .35;
}

header {
    display: flex;
    justify-content: space-between;
}

header > div {
    font-size: 2rem;
}

footer {
    color: #aaa;
}

.app {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.logo {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.organization-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.workplace {
    display: flex;
    justify-content: space-between;
}

.workplace > div {
    width: fit-content;
}

.workplace > :last-child {
    text-align: right;
}

.workplace > :nth-child(2) {
    text-align: center;
}

.workplace--fake > :first-child,
.workplace--fake > :last-child {
    opacity: 0.15;
}

.banner {
    border-radius: 0.5rem;
    width: 100%;
    object-fit: cover;
}

.video-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.workplace {
    font-size: 4rem;
    padding: 20px;
    border: 1px solid #c1c1c1;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.header__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 5px;
}

.header__subtitle {
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
}

.mod-custom {
    font-size: 18px;
    line-height: 20px;
    color: #000;
    font-weight: 300;
}

.footer .mod-custom .span-link {
    font-weight: 700;
    color: #0677d7;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 1rem;
}

@keyframes swing {
    15% {
        -webkit-transform: translateX(9px);
        transform: translateX(9px);
    }
    30% {
        -webkit-transform: translateX(-9px);
        transform: translateX(-9px);
    }
    40% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    50% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    65% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.swing {
    -webkit-animation: swing 0.6s ease;
    animation: swing 0.6s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
