body {
    background-color: #f6f6f6;
}

main {
    min-height: calc(100vh - 260px);
    max-width: 1920px;
    width: 100%;
    overflow-x: hidden;
    min-width: 1248px;

    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.about-container {
    padding-top: 200px;
    display: flex;
    flex-direction: column;
}

.about-container section {
    width: 1248px;
}

.about-container section h2 {
    font-size: 40px;
    margin-bottom: 36px;
}

.about-container section p {
    font-size: 24px;
    color: #666;
    padding-left: 8px;
}

.item1 {
    margin-bottom: 134px;
}

.item1 h1 {
    margin-bottom: 36px;
    font-size: 66px;
}

.item1 p {
    width: 1233px;
}

.item2 {
    position: relative;
}

.item2-card {
    margin-top: 33px;
    margin-bottom: 120px;
    width: 464px;
    height: 105px;
    font-size: 30px;
    color: #999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    border-radius: 24px;
}

.item2-card .icon-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #30A4FF;
    gap: 6px;
}

.item2 .pop-card {
    position: absolute;
    top: 144px;
    left: 523px;
    width: 260px;
    height: 260px;
    border-radius: 24px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.pop-card.show {
    opacity: 1;
    visibility: visible;
}

.pop-card .pop-close {
    position: absolute;
    right: 13px;
    top: 13px;
    color: #333;
    cursor: pointer;
    line-height: 1;

    opacity: 0.8;
}

.pop-card .pop-close:hover {
    opacity: 1;
}

.pop-card .content-img {
    width: 200px;
    height: 200px;
}

.media-list {
    display: flex;
    height: 160px;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
    margin-bottom: 120px;
    border-radius: 24px;
}

.media-list li {
    display: flex;
    gap: 20px;
    padding-right: 48px;
    border-right: 2px solid #ebebee;
}

.media-list li:last-of-type {
    border-right: none;
}

.media-list img {
    width: 88px;
    height: 88px;
}

.media-list .media-des {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-des .media-title {
    font-size: 30px;
    color: #999;
    font-weight: 500;
}

.media-des .media-id {
    font-size: 30px;
}

.media-gmail {
    width: 560px;
    height: 105px;
    background-color: #fff;
    margin-bottom: 130px;
    font-size: 30px;
    color: #999;
    display: flex;
    align-items: center;
    padding-left: 63px;
    gap: 30px;
    border-radius: 24px;
}

.gmail-address {
    color: #30A4FF;
}
