.landing-header {
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FAFAFA;
    margin-bottom: 40px;
}

.landing-header__content-container {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.landing-header__left-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-header__left-content > div {
    display: flex;
    flex-direction: column;
}

.landing-header__left-content > div > div:first-child {
    color: #000000;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.landing-header__left-content > div > div:nth-child(2) {
    color: #000000;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

.landing-header__left-content > div > a {
    width: 183px;
    height: 42px;
    background-color: #4600BD;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    border-radius: 5px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.landing-header__right-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-header__right-content > img {
    position: absolute;
    width: 80px;
}

.landing-header__right-content > img:first-child {
    top: 48px;
    left: 80px;
}

.landing-header__right-content > img:nth-child(2) {
    bottom: 45px;
    left: 50px;
}

.landing-header__right-content > img:nth-child(3) {
    width: 250px;
}

.landing-header__right-content > img:nth-child(4) {
    top: 41px;
    right: 90px;
}

.landing-header__right-content > img:last-child {
    bottom: 45px;
    right: 70px;
}

.landing-body {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.landing-body__content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.landing-body__content > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.landing-body__content > div > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landing-body__content > div > div:first-child > div:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-body__content > div > div:first-child > div:first-child > div {
    color: #4A4A4A;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.landing-body__content > div > div:first-child > div:first-child > img {
    width: 32px;
}

.landing-body__content > div > div:first-child > div:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-body__content > div > div:first-child > div:last-child > div {
    color: #666666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.landing-body__content > div > div:first-child > div:last-child > a {
    color: #666666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.new-labs-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-labs-container__button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DADADA;
    background-color: #FFFFFF;
    position: absolute;
    color: #666666;
}

.new-labs-container__button.hide {
    display: none;
}

.new-labs-container > .new-labs-container__button:first-child {
    left: -30px;
}

.new-labs-container > .new-labs-container__button:last-child {
    right: -30px;
}

.new-labs {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.new-labs::-webkit-scrollbar {
  display: none;
}

.new-lab {
    min-width: 388px;
    max-width: 388px;
    min-height: 443px;
    max-height: 443px;
    padding: 20px 20px 30px 20px;
    border-radius: 5px;
    border: 1px solid #DADADA;
    display: flex;
    flex-direction: column;
}

.new-lab.hide {
    display: none;
}

.new-lab__logo-image {
    width: 100%;
    height: 90px;
    border-radius: 5px;
    border: 1px solid #DADADA;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-lab__logo-image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.new-lab__name {
    width: 100%;
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
    /* ellipsis 코드 */
    word-break: break-all;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.new-lab__detail {
    color: #666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 14px;
    /* ellipsis 코드 */
    word-break: break-all;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.new-lab__keywords {
    width: 100%;
    height: 89px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.new-lab__keywords > div {
    width: fit-content;
    padding: 2px 6px;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    border-radius: 5px;
    background-color: #F3F3F3;
    /* ellipsis 코드 */
    word-break: break-all;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.new-lab__members {
    display: flex;
    position: relative;
    width: 100%;
    height: 40px;
}

.new-lab__members > div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #666666;
    border: 2px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
}

.new-lab__members > div:nth-child(2) {
    left: 30px;
}

.new-lab__members > div:nth-child(3) {
    left: 60px;
}

.new-lab__members > div:nth-child(4) {
    left: 90px;
}

.new-lab__members > div:nth-child(5) {
    left: 120px;
}

.new-lab__members > div:nth-child(6) {
    left: 150px;
}

.new-lab__members > div > img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.new-lab > a {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid var(--point-button-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--point-button-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: auto;
}

.new-researchers {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new-researcher {
    width: 100%;
    min-height: 126px;
    max-height: 126px;
    border-radius: 5px;
    border: 1px solid #DADADA;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.new-researcher__header {
    margin-right: 20px;
}

.new-researcher__header > img {
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
    border-radius: 50%;
}

.new-researcher__header > div {
    display: none;
}

.new-researcher__body {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}

.new-researcher__name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.new-researcher__name > div:first-child {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    /* ellipsis 코드 */
    word-break: break-all;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.new-researcher__name > div:nth-child(2) {
    padding: 2px 10px;
    border-radius: 5px;
    background-color: #E9E6FF;
    color: #4600BD;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-researcher__affiliation {
    height: 17px;
    color: #666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 14px;
    /* ellipsis 코드 */
    word-break: break-all;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.new-researcher__keywords {
    height: 23px;
    display: flex;
    gap: 10px;
}

.new-researcher__keywords > div {
    width: fit-content;
    border-radius: 5px;
    background-color: #F3F3F3;
    padding: 3px 7px;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    /* ellipsis 코드 */
    word-break: break-all;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.new-researcher > a {
    margin-left: auto;
    min-width: 140px;
    max-width: 140px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #4600BD;
    color: #4600BD;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-categories-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-categories-container__button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DADADA;
    background-color: #FFFFFF;
    position: absolute;
    color: #666666;
    z-index: 2;
}

.landing-categories-container__button.hide {
    display: none;
}

.landing-categories-container > .landing-categories-container__button:first-child {
    left: -30px;
}

.landing-categories-container > .landing-categories-container__button:last-child {
    right: -30px;
}

.landing-categories {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.landing-categories::-webkit-scrollbar {
  display: none;
}

.landing-category {
    min-width: 388px;
    max-width: 388px;
    min-height: 441px;
    max-height: 441px;
    padding: 68px 20px 20px 20px;
    position: relative;
    border-radius: 5px;
    border: 1px solid #DADADA;
}

.landing-category.hide {
    display: none;
}

.landing-category > img {
    width: 60px;
    position: absolute;
    top: 30px;
    right: 20px;
}

.landing-category__name {
    color: #4A4A4A;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.landing-category__medium-categories {
    width: 100%;
    height: 304px;
    overflow: auto;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.landing-category__medium-categories::-webkit-scrollbar {
  display: none;
}

.landing-category__medium-categories > a {
    width: 100%;
    padding: 10px 14px;
    border-radius: 9999px;
    border: 1px solid #FFF;
    background-color: #F3F3F3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-category__medium-categories > a > div:first-child {
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.landing-category__medium-categories > a > div:last-child {
    color: #4600BD;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.landing-end {
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FAFAFA;
    margin-bottom: 66px;
}

.landing-end__content-container {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.landing-end__left-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.landing-end__left-content > img {
    position: absolute;
}

.landing-end__left-content > img:first-child {
    width: 60px;
    left: 90px;
    bottom: 60px;
    z-index: 2;
}

.landing-end__left-content > img:nth-child(2) {
    width: 60px;
    left: 150px;
    bottom: 60px;
    z-index: 2;
}

.landing-end__left-content > img:last-child {
    width: 335px;
}

.landing-end__right-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-end__right-content > div {
    display: flex;
    flex-direction: column;
}

.landing-end__right-content > div > div:first-child {
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.landing-end__right-content > div > div:nth-child(2) {
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

.landing-end__right-content > div > button {
    margin-top: 40px;
    width: 183px;
    height: 42px;
    border-radius: 5px;
    background-color: #4600BD;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.landing-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-footer > div {
    width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 69px;
}

.landing-footer > div > img {
    width: 130px;
    margin-bottom: 20px;
}

.landing-footer__link {
    display: flex;
    margin-bottom: 20px;
}

.landing-footer__link > span {
    display: none;
}

.landing-footer__link > a:not(:last-child) {
    margin-right: 10px;
}

.landing-footer__link > a {
    border-radius: 11px;
    width: 80px;
    height: 25px;
    background-color: #F3F3F3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #A9A9A9;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.landing-footer__link > a:nth-child(3) {
    width: 91px;
}

.landing-footer__link > a:nth-child(5),
.landing-footer__link > a:nth-child(9) {
    width: 116px;
}

.landing-footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 23px;
}

.landing-footer__content > div {
    display: flex;
    justify-content: center;
}

.landing-footer__content > div > span,
.landing-footer > div > span {
    color: #A9A9A9;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (max-width: 1220px) {
    .landing-body {
        padding: 0 20px;
    }

    .new-labs-container__button, .landing-categories-container__button {
        display: none;
    }
}

@media screen and (max-width: 1070px) {
    .landing-end__left-content > img:first-child {
        left: 50px;
    }

    .landing-end__left-content > img:nth-child(2) {
        left: 110px;
    }
}

@media screen and (max-width: 960px) {
    .landing-header {
        height: 450px;
    }

    .landing-header__content-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
    }

    .landing-header__left-content > div {
        align-items: center;
    }

    .landing-header__right-content > img:first-child {
        top: 0;
        left: 268px;
    }

    .landing-header__right-content > img:nth-child(2) {
        bottom: 12px;
        left: 214px;
    }

    .landing-header__right-content > img:nth-child(4) {
        top: 0;
        right: 280px;
    }

    .landing-header__right-content > img:last-child {
        bottom: 12px;
        right: 240px;
    }

    .new-researcher__body {
        margin-right: 20px;
    }

    .landing-end {
        height: 450px;
    }

    .landing-end__content-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
    }

    .landing-end__left-content {
        order: 1;
    }

    .landing-end__left-content > img:first-child {
        left: 270px;
        bottom: 0;
    }

    .landing-end__left-content > img:nth-child(2) {
        left: 320px;
        bottom: 0;
        z-index: 2;
    }

    .landing-end__left-content > img:last-child {
        bottom: 0;
    }

    .landing-end__right-content > div {
        align-items: center;
    }
}

@media screen and (max-width: 860px) {
    .landing-end__left-content > img:first-child {
        left: 200px;
    }

    .landing-end__left-content > img:nth-child(2) {
        left: 250px;
    }
}

@media screen and (max-width: 840px) {
    .landing-header__right-content > img:first-child {
        left: 148px;
    }

    .landing-header__right-content > img:nth-child(2) {
        left: 94px;
    }

    .landing-header__right-content > img:nth-child(4) {
        right: 160px;
    }

    .landing-header__right-content > img:last-child {
        right: 120px;
    }
}

@media screen and (max-width: 720px) {
    .landing-end__left-content > img:first-child {
        left: 130px;
    }

    .landing-end__left-content > img:nth-child(2) {
        left: 180px;
    }
}

@media screen and (max-width: 568px) {
    .landing-header {
        height: 436px;
    }

    .landing-header__left-content > div > div:first-child {
        font-size: 24px;
        line-height: 34px;
    }

    .landing-header__left-content > div > div:nth-child(2) {
        font-size: 24px;
        line-height: 34px;
    }

    .landing-header__left-content > div > a {
        margin-top: 30px;
    }

    .landing-header__right-content > img:first-child {
        left: 61px;
    }

    .landing-header__right-content > img:nth-child(2) {
        left: 9px;
    }

    .landing-header__right-content > img:nth-child(4) {
        right: 56px;
    }

    .landing-header__right-content > img:last-child {
        right: 25px;
    }

    .landing-body {
        padding: 0 16px;
    }

    .landing-body__content > div {
        gap: 20px;
    }

    .landing-body__content > div > div:first-child > div:first-child > div {
        font-size: 20px;
    }

    .landing-body__content > div > div:first-child > div:first-child > img {
        width: 24px;
    }

    .landing-body__content > div > div:first-child > div:last-child > div {
        font-size: 14px;
    }

    .landing-body__content > div > div:first-child > div:last-child > a {
        font-size: 14px;
    }

    .new-labs {
        gap: 20px;
    }

    .new-lab {
        min-width: 397px;
        max-width: 397px;
        min-height: 341px;
        max-height: 341px;
        padding: 30px 20px;
    }

    .new-lab__logo-image {
        display: none;
    }

    .new-lab__name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .new-researchers {
        gap: 16px;
    }

    .new-researcher {
        width: 100%;
        min-height: fit-content;
        max-height: fit-content;
        border-radius: 5px;
        border: 1px solid #DADADA;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .new-researcher__header {
        width: 100%;
        margin-right: 0;
        display: flex;
        align-items: center;
        gap: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid #DADADA;
        margin-bottom: 16px;
    }

    .new-researcher__header > div {
        display: flex;
        flex-direction: column;
    }

    .new-researcher__body {
        margin-right: 0;
    }

    .new-researcher__name {
        margin-bottom: 10px;
    }

    .new-researcher__body > .new-researcher__name {
        display: none;
    }

    .new-researcher__name > div:first-child {
        font-size: 18px;
    }

    .new-researcher__affiliation {
        margin-bottom: 0;
    }

    .new-researcher__body > .new-researcher__affiliation {
        display: none;
    }

    .new-researcher__keywords {
        height: fit-content;
        display: flex;
        flex-direction: column;
        grid-template-columns: inherit;
        gap: 10px;
        margin-bottom: 14px;
    }

    .new-researcher__keywords > div {
        padding: 2px 6px;
    }

    .new-researcher > a {
        margin-left: 0;
        min-width: fit-content;
        max-width: fit-content;
        height: fit-content;
        border-radius: 0;
        border: none;
        color: #4600BD;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: block;
    }

    .landing-categories {
        gap: 20px;
    }

    .landing-end {
        height: 436px;
        margin-bottom: 70px;
    }

    .landing-end__left-content > img:first-child {
        left: 60px;
    }

    .landing-end__left-content > img:nth-child(2) {
        left: 110px;
    }

    .landing-end__right-content > div > div:first-child {
        font-size: 24px;
        line-height: 34px;
    }

    .landing-end__right-content > div > div:nth-child(2) {
        font-size: 24px;
        line-height: 34px;
    }

    .landing-end__right-content > div > button {
        margin-top: 30px;
    }

    .landing-footer__link {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
    }

    .landing-footer > div {
        margin-bottom: 55px;
    }

    .landing-footer__content {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 430px) {
    .landing-end__left-content > img:first-child {
        left: 10px;
    }

    .landing-end__left-content > img:nth-child(2) {
        left: 60px;
    }
}

@media screen and (max-width: 375px) {
    .landing-header {
        height: 382px;
    }

    .landing-header__left-content > div > div:first-child {
        font-size: 20px;
        line-height: 28px;
    }

    .landing-header__left-content > div > div:nth-child(2) {
        font-size: 20px;
        line-height: 28px;
    }

    .landing-header__left-content > div > a {
        width: 161px;
        height: 40px;
        margin-top: 20px;
        font-size: 16px;
    }

    .landing-header__right-content > img {
        width: 64px;
    }

    .landing-header__right-content > img:nth-child(3) {
        width: 220px;
    }

    .new-lab {
        min-width: 252px;
        max-width: 252px;
        min-height: 307px;
        max-height: 307px;
        padding: 20px 16px;
    }

    .new-lab__keywords {
        margin-bottom: 16px;
    }

    .new-researcher {
        padding: 20px 16px;
    }

    .new-researcher__header {
        gap: 14px;
        margin-bottom: 14px;
    }

    .new-researcher__header > img {
        min-width: 60px;
        max-width: 60px;
        min-height: 60px;
        max-height: 60px;
    }

    .new-researcher__keywords {
        gap: 8px;
    }

    .landing-category {
        min-width: 252px;
        max-width: 252px;
        min-height: 404px;
        max-height: 404px;
        padding: 40px 16px 20px 16px;
    }

    .landing-category > img {
        width: 50px;
        top: 13px;
        right: 16px;
    }

    .landing-category__name {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .landing-end {
        height: 348px;
    }

    .landing-end__left-content > img:last-child {
        width: 315px;
    }

    .landing-end__right-content > div > div:first-child {
        font-size: 20px;
        line-height: 28px;
    }

    .landing-end__right-content > div > div:nth-child(2) {
        font-size: 20px;
        line-height: 28px;
    }

    .landing-end__right-content > div > button {
        margin-top: 20px;
        width: 161px;
        height: 40px;
        font-size: 16px;
    }

    .landing-footer {
        padding-left: 16px;
    }

    .landing-footer > div {
        margin-bottom: 20px;
        align-items: start;
    }

    .landing-footer > div > img {
        margin-bottom: 14px;
    }

    .landing-footer__link {
        margin-bottom: 14px;
        justify-content: start;
        flex-wrap: nowrap;
    }

    .landing-footer__link > span {
        display: block;
    }

    .landing-footer__link > a:not(:last-child) {
        margin-right: 0;
    }

    .landing-footer__link > a {
        border-radius: 0;
        width: inherit;
        height: inherit;
        background-color: inherit;
        display: inline;
        justify-content: start;
        align-items: start;
        color: #A9A9A9;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .landing-footer__link > span {
        color: #A9A9A9;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .landing-footer__link > a:nth-child(3) {
        width: inherit;
    }

    .landing-footer__link > a:nth-child(5),
    .landing-footer__link > a:nth-child(9) {
        width: inherit;
    }

    .landing-footer__content {
        align-items: start;
    }

    .landing-footer__content > div {
        flex-direction: column;
        align-items: start;
    }

    .landing-footer__content > div > span:nth-child(2),
    .landing-footer__content > div > span:nth-child(4) {
        display: none;
    }
}
