.header {
    position: sticky;
    background-color: #ffffff;
    border-bottom: solid 1.5px #f0f0f0;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 16px;
    box-sizing: border-box;
}

.header span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header h1 img {
    height: 24px;
}

.header button img {
    width: 16px;
    height: 16px;
}

.alert {
    background-color: #fafafa;
    border-bottom: solid 1.5px #f0f0f0;
    padding: 16px;
}

.alert a {
    gap: 4px;
    display: flex;
    align-items: center;
}

.alert img {
    width: 16px;
    height: 16px;
}

.alert span {
    font-size: 11px;
    font-weight: 400;
}

.container {
    gap: 128px;
    display: grid;
}

@media (max-width: 1024px) {
    .container {
        gap: 96px;
    }
}

@media (max-width: 440px) {
    .container {
        gap: 64px;
    }
}

.screen {
    gap: 24px;
    display: grid;
}

@media (max-width: 767px) {
    .desktop {
        display: none;
    }
}

@media (min-width: 768px) {
    .mobile {
        display: none;
    }
}

.screen img {
    width: 100%;
}

.screen progress {
    max-width: 60%;
    width: 100%;
}

.screen nav {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.screen ul {
    padding: 0 16px;
}

.screen dl {
    gap: 16px;
    display: grid;
}

.screen dd {
    gap: 8px;
    display: flex;
    align-items: center;
}

.screen time {
    color: #555555;
    font-size: 10px;
    font-weight: 600;
}

.screen data {
    background-color: #fafafa;
    border-radius: 100px;
    padding: 4px;
}

.screen data span {
    color: #555555;
    font-size: 10px;
    font-weight: 600;
    margin: auto 8px;
}

.screen dt {
    font-size: 16px;
    font-weight: 600;
}

.screen section {
    gap: 16px;
    display: grid;
}

.screen span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.screen fieldset {
    gap: 8px;
    display: flex;
    align-items: center;
}

.screen button {
    background-color: #f0f0f0;
    border-radius: 100px;
    padding: 8px;
}

.screen button:hover {
    padding: 8px 16px;
    transition: 0.3s;
}

.screen li {
    background-color: #fafafa;
    border-radius: 100%;
    padding: 10px;
}

.screen li:hover {
    background-color: #f0f0f0;
}

.screen li img {
    width: 16px;
    height: 16px;
}

.letter {
    padding: 0 16px;
    gap: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1122px) {
    .letter {
        gap: 64px;
        flex-direction: column;
    }
}

.letter h2 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.letter form {
    max-width: 440px;
    gap: 8px;
    display: grid;
}

.letter h3 {
    color: #555555;
    font-size: 8px;
    font-weight: 400;
}

.letter label {
    gap: 16px;
    display: flex;
    align-items: center;
}

.letter input {
    background-color: #fafafa;
    width: 100%;
    padding: 16px;
}

.letter input:hover {
    background-color: #f0f0f0;
}

.letter button img {
    width: 16px;
    height: 16px;
}

.letter p {
    color: #555555;
    font-size: 8px;
    font-weight: 400;
}

.menu {
    padding: 0 16px;
}

.menu nav {
    gap: 64px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1122px) {
    .menu nav {
        gap: 10px;
        flex-direction: column;
    }
}

.menu ul {
    gap: 64px;
    display: flex;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .menu ul {
        gap: 10px;
        flex-direction: column;
    }
}

.menu ol {
    width: 100%;
    gap: 10px;
    display: grid;
}

.menu h2 {
    font-size: 12px;
    font-weight: 600;
}

.menu span {
    font-size: 11px;
    font-weight: 400;
}

.menu abbr {
    width: 256px;
}

.menu hr {
    border: solid 0.75px #f0f0f0;
    margin: 4px 0;
    align-self: stretch;
}

.link {
    padding: 0 16px;
}

.link nav {
    max-width: 1024px;
    margin: 0 auto;
}

.link ul {
    gap: 32px;
    display: flex;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .link ul {
        flex-direction: column;
    }
}

.link ol {
    width: 100%;
    gap: 16px;
    display: grid;
}

.link h2 {
    border-left: solid 7.5px #f0f0f0;
    padding-left: 16px;
}

.link h2 span {
    font-size: 13px;
    font-weight: 600;
}

.link li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link li img {
    width: 16px;
    height: 16px;
}

.link a {
    gap: 8px;
    display: flex;
    align-items: center;
}

.link a img {
    width: 24px;
    height: 24px;
}

.link a span {
    font-size: 12px;
    font-weight: 400;
}

.footer {
    padding: 16px;
    gap: 8px;
    display: flex;
    align-items: center;
}

.footer h1 {
    gap: 4px;
    display: flex;
    align-items: center;
}

.footer h1 img {
    width: 10px;
    height: 10px;
}

.footer span {
    color: #555555;
    font-size: 8px;
    font-weight: 400;
}

.footer hr {
    border: solid 0.75px #f0f0f0;
    height: 10px;
}