/* ============== Base ============== */

body {
    /* 기본 설정 생략됨 */
}

/* ===============================
   Main Visual (메인 배너 슬라이더)
   =============================== */
/* 래퍼 및 트랙 */
.main-visual-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.main-visual-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 50rem;
}

/* 각 슬라이드 */
.main-visual-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-visual-slide img {
    position: absolute;
    width: auto;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
    transform: scale(1);
}
.main-visual-slide.active img {
    transform: scale(1.1);
}

/* 텍스트 박스 */
.main-visual-slide .slide-content-wrapper {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 30px);
    opacity: 0;
    transition: all 1s ease;
    text-align: center;
    width: 100%;
    padding: 0 4rem;
    z-index: 99;
}
.main-visual-slide.active .slide-content-wrapper {
    transform: translate(-50%, -30px);
    opacity: 1;
}
.main-visual-slide .slide-sub-title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    background: linear-gradient(45deg, #4871e5, #00baba);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.6rem;
}
.main-visual-slide .slide-main-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.8rem;
    color: #ffffff;
    margin-bottom: 3.6rem;
}
.main-visual-slide .slide-main-title br {
    display: none;
}
.main-visual-slide a {
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    color: #ffffff;
    box-sizing: border-box;
}
.main-visual-slide a:focus,
.main-visual-slide a:active,
.main-visual-slide a.active {
    background: linear-gradient(45deg, #4871e5, #00baba);
}

/* 라벨 + 진행바 */
.main-visual-pagination {
    position: absolute;
    width: calc(100% - 4rem);
    height: 40px;
    top: calc(50rem - 60px);
    left: 2rem;
    overflow: hidden;
}
.main-visual-labels {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
}
.main-visual-label {
    flex: 1;
    line-height: 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.5;
    pointer-events: none;
    transition: color 0.3s;
}
.main-visual-label.active {
    opacity: 1;
}
.main-visual-progress-wrapper {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    gap: 2rem;
    width: 100%;
}
.main-visual-progress-track {
    width: 100%;
    height: 4px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.main-visual-progress-bg {
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    opacity: 0.5;
}
.main-visual-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(45deg, #4871e5, #00baba);
    transition: width 5s linear;
}


/* ================================
   Business Area (사업분야 슬라이더)
   ================================ */
.business-area .wrapper {
    padding: 6.4rem 2rem 0 2rem;
}
.business-area h2 {
    padding: 0 2rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.8rem;
    text-align: center;
    margin-bottom: 3.4rem;
}
.business-area h2 br {
    display: none;
}

/* 화살표 */
.business-slider-controls {
    position: absolute;
    top: calc(50% - 8rem);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}
.business-slider-controls button {
    border: none;
    pointer-events: auto;
    cursor: pointer;
    width : 4rem;
    height: 4rem;
    position: relative;
    background-color: transparent;
}
.business-btn-left,
.business-btn-right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    stroke: #333333;
    width: 4rem;
    height: 4rem;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.4);
}
.business-slider-container {
    position: relative;
}

/* 비주얼 슬라이더 */
.business-visual-slider {
    overflow: hidden;
    padding: 0; /* 기존 패딩 제거 */
    position: relative;
    height: 24rem;
    margin-bottom: 2.4rem;
}
.business-visual-slider::before,
.business-visual-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px; /* 좌우 40px만큼 뿌옇게 */
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.business-visual-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.business-visual-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.business-visual-track {
    display: flex;
    transition: transform 0.5s ease;
}
.business-visual-slide {
    flex: 0 0 calc(100% - 80px);
    margin: 0 10px; /* 좌우 margin으로 gap을 구현 */
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
}
.slide-text-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.4rem 2.4rem;
    background: linear-gradient(45deg, rgba(72, 113, 229, 0.8), rgba(0, 186, 186, 0.8));
    color: #ffffff;
    z-index: 2;
}
.text-number-count {
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}
.text-number-current {
    font-size: 1.8rem;
    font-weight: 700;
}
.text-number-total {
    font-size: 1.4rem;
    font-weight: 600;
}
.business-visual-slide .text-title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.6rem;
}
.slide-bg-wrapper {
    width: 100%;
    height: 24rem;
}
.slide-bg-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* 텍스트 슬라이더 */
.business-description-slider {
    overflow: hidden;
}
.business-description-track {
    display: flex;
    transition: transform 0.5s ease;
}
.business-description-slide {
    flex: 0 0 100%;
    padding: 0 2rem;
}
.business-description-slide .text-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4871e5, #00baba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.business-description-slide .text-title br {
    display: none;
}
.business-description-slide .text-content p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    color: #333333;
    margin-bottom: 0.8rem;
}
.business-description-slide .text-hashtag {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2rem;
    color: #aaaaaa;
}

/* ================================
   Product Overview (제품 소개)
   ================================ */
.product-overview .wrapper {
    padding: 6.4rem 2rem 0 2rem;
}
.product-overview h2 {
    padding: 0 2rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.8rem;
    text-align: center;
    margin-bottom: 3.4rem;
}
.product-overview h2 br {
    display: none;
}

/* Product Grid */
.product-grid-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.6rem;
}
.product-box {
    background-color: #f0f5ff;
    overflow: hidden;
    margin-bottom: 1.6rem;
    transition: height 0.4s ease, opacity 0.4s ease;
}
/* 초기 숨김 상태 */
.product-box.hidden {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.4s ease, opacity 0.4s ease;
    margin: 0;
}
/* 펼쳐지는 상태 */
.product-box.show {
    height: auto;
    opacity: 1;
    transition: height 0.4s ease, opacity 0.4s ease;
}
.product-toggle-button {
    margin: 0 auto;
    display: block;
    padding: 1rem 1.8rem;
    background: linear-gradient(45deg, #4871e5, #00baba);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    font-weight: 600;
}
.product-box a {
    display: block;
    width: 100%;
    height: 100%;
}
.product-info,
.product-content {
    padding: 1.4rem 2rem 2.2rem 2rem;
}
.product-info {
    color: #ffffff;
}
.product-content {
    color: #333333;
}
.product-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.product-title br {
    display: none;
}
.product-description {
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: 500;
}
.product-icon {
    display: none;
}
.product-cadwin-nest {
    background-image: url(../../../assets/images/home/product_01_bg_cadwinNest.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.product-smart-hull {
    background-image: url(../../../assets/images/home/product_07_bg_smartHull.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* ================================
   clients (고객사 소개)
   ================================ */
.clients .wrapper {
    padding: 6.4rem 4rem 0 4rem;
}
.clients h2 {
    padding: 0 2rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.8rem;
    text-align: center;
    margin-bottom: 3.4rem;
}
.clients h2 br {
    display: none;
}

/* 고객사 무한루프 슬라이더 */
.clients-slider {
    overflow: hidden;
    position: relative;
}
.clients-track {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.clients-track-inner {
    display: flex;
    width: max-content;
    animation: 25s linear 0s infinite normal none running scroll-left;
    gap: 2rem;
}
.clients-track-1 {
    margin-bottom: 2rem;
}
.clients-track-2 .clients-track-inner {
    animation: 25s linear 0s infinite normal none running scroll-right;
}
.client-logo {
    flex: 0 0 auto;
    height: 6rem;
}
.client-logo img {
    height:100%;
    display: block;
    object-fit: contain;
}
/* 왼쪽 흐름 */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* 오른쪽 흐름 */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* ================================
   notice preview (게시판 미리보기)
   ================================ */
.notice-preview .wrapper {
    padding: 6.4rem 4rem 0 4rem;
}
.notice-preview h2 {
    padding: 0 2rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.8rem;
    text-align: center;
    margin-bottom: 3.4rem;
}

/* ================================
   map-section (카카오맵 api)
   ================================ */
.map-container {
    width: 100%;
    height: 260px;
}
.map-info {
    padding-bottom: 1.2rem;
    background-color: #ffffff;
}
.map-wrapper {
    padding: 2.8rem 2rem 2.8rem 2rem;
}
.map-title {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4871e5, #00baba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin-bottom: 0.4rem;
}
.map-btn-group {
    position: relative;
    display: flex;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
}
.map-btn-group:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #dddddd;
}
.map-btn {
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.6rem;
    color: #999999;
    font-weight: 700;
}
.map-btn.active {
    color: #333333;
}
.map-address-info {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #333333;
}
.map-contact-info {
    font-size: 1.4rem;
    color: #333333;
}
.map-subtitle {
    font-weight: bold;
    margin-bottom: 0.4rem;
}
.map-address,
.map-phone {
    font-size: 1.3rem;
    color: #333333;
}
.hidden {
    display: none;
}

/* ===============================
   Responsive
   =============================== */
@media (min-width: 480px) {

}
@media (min-width: 768px) {

    .main-visual-slide .slide-sub-title {
        font-size: 1.6rem;
    }
    .main-visual-slide .slide-main-title {
        font-size: 2.4rem;
        line-height: 3.4rem;
    }
    .main-visual-slide .slide-main-title br {
        display: block;
    }
    .main-visual-slide a {
        font-size: 1.4rem;
    }
    .main-visual-label {
        font-size: 1.2rem;
    }

    .business-area .wrapper {
        padding: 7.6rem 4rem 0 4rem;
    }
    .business-area h2 {
        font-size: 2.4rem;
        line-height: 3.2rem;
        margin-bottom: 3.8rem;
    }
    .business-area h2 br {
        display: block;
    }
    .business-visual-slider {
        height: 30rem;
        margin-bottom: 3.2rem;
    }
    .slide-bg-wrapper {
        height: 30rem;
    }
    .business-visual-slide {
        flex: 0 0 calc(100% - 160px);
    }
    .slide-text-wrapper {
        display: flex;
        padding: 2rem 2.4rem;
    }
    .text-number-current {
        font-size: 2rem;
    }
    .text-number-count {
        margin-bottom: unset;
        margin-right: 1.6rem;
        font-size: 1.6rem;
    }
    .text-number-total {
        font-size: 1.6rem;
    }
    .business-visual-slide .text-title {
        font-size: 2rem;
        line-height: 2.8rem;
    }
    .business-description-slide {
        padding: 0 8rem;
    }
    .business-description-slide .text-title {
        font-size: 2.2rem;
        margin-bottom: 1.6rem;
    }
    .business-description-slide .text-content p {
        font-size: 1.6rem;
        line-height: 2.2rem;
        margin-bottom: 1rem;
    }
    .business-description-slide .text-hashtag {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .product-overview .wrapper {
        padding: 7.6rem 4rem 0 4rem;
    }
    .product-overview h2 {
        font-size: 2.4rem;
        line-height: 3.2rem;
        margin-bottom: 3.8rem;
    }
    .product-overview h2 br {
        display: block;
    }
    .product-grid-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3열 */
        gap: 1.2rem;
        margin-bottom: unset;
    }
    .product-box {
        margin-bottom: 0; /* 그리드에서 gap 사용 */
    }
    .box-wide {
        grid-column: span 2;
    }
    .box-narrow {
        grid-column: span 1;
    }
    /* hidden 클래스 해제 */
    .product-box.hidden {
        display: block;
        height: auto;
        opacity: 1;
        overflow: visible;
    }
    .product-title {
        font-size: 2.2rem;
        font-weight: 700;
    }
    .product-description {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
    .product-content {
        display: flex;
        flex-direction: column;
    }
    .product-content, .product-info {
        height: 20rem;
    }
    .product-content .product-title,
    .product-content .product-description {
        margin-bottom: auto;
    }
    .product-content .product-icon {
        width: 4.8rem;
        display: block;
        margin-left: auto;
        margin-top: auto;
    }
    .product-icon img {
        box-shadow: rgba(0, 0, 0, 0.07) 2px 2px 2px;
        border-radius: 50%;
    }
    /* 버튼 자체 숨김 */
    .product-toggle-button {
        display: none;
    }

    .clients .wrapper {
        padding: 7.6rem 4rem 0 4rem;
    }
    .clients h2 {
        font-size: 2.4rem;
        line-height: 3.2rem;
        margin-bottom: 3.8rem;
    }
    .clients h2 br {
        display: block;
    }
    .client-logo {
        height: 7.2rem;
    }

    .notice-preview .wrapper {
        padding: 7.6rem 4rem 0 4rem;
    }
    .notice-preview h2 {
        font-size: 2.4rem;
        line-height: 3.2rem;
        margin-bottom: 3.8rem;
    }

    .map-section {
        position: relative;
    }
    .map-container {
        height: 38rem;
    }
    .map-info {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40rem;
        z-index: 222;
    }
    .map-title {
        font-size: 1.3rem;
    }
    .map-btn {
        font-size: 1.8rem;
    }
    .map-address-info {
        font-size: 1.6rem;
    }
    .map-contact-info {
        font-size: 1.6rem;
    }
    .map-address, .map-phone {
        font-size: 1.5rem;
    }

}
@media (min-width: 1024px) {

    .main-visual-track {
        height: 64rem;
    }
    .main-visual-slide img {
        width: 100%;
    }
    .main-visual-slide .slide-content-wrapper {
        bottom: 24%;
    }
    .main-visual-slide .slide-sub-title {
        font-size: 1.8rem;
        margin-bottom: 2.4rem;
    }
    .main-visual-slide .slide-main-title {
        font-size: 3.2rem;
        line-height: 4.6rem;
        margin-bottom: 5rem;
    }
    .main-visual-slide a {
        font-size: 1.6rem;
        padding: 1.4rem 2.4rem;
        transition: all 0.3s ease-in-out;
    }
    .main-visual-slide a:hover {
        background: linear-gradient(45deg, #4871e5, #00baba);
    }
    .main-visual-pagination {
        width: calc(100% - 8rem);
        left: 4rem;
        top: calc(64rem - 70px);
    }
    .main-visual-label {
        font-size: 1.4rem;
    }
    .main-visual-progress-track {
        height: 6px;
    }
    .main-visual-progress-bg {
        height: 6px;
    }
    .main-visual-progress {
        height: 6px;
    }

    .business-area .wrapper {
        padding: 12rem 4rem 0 4rem;
    }
    .business-area h2 {
        font-size: 3rem;
        line-height: 4.2rem;
        margin-bottom: 6rem;
    }
    .business-visual-slider {
        height: 38rem;
        margin-bottom: 4.2rem;
    }
    .business-visual-slide {
        flex: 0 0 calc(100% - 210px);
    }
    .slide-bg-wrapper {
        height: 38rem;
    }
    .slide-text-wrapper {
        width: 36rem;
        top: 0;
        bottom: unset;
        padding: 3rem 2.4rem;
        display: block;
    }
    .text-number-current {
        font-size: 3rem;
    }
    .text-number-count {
        font-size: 2rem;
        margin-right: unset;
        margin-bottom: 2.8rem;
    }
    .text-number-total {
        font-size: 2rem;
    }
    .business-visual-slide .text-title {
        font-size: 2.8rem;
        line-height: 3.8rem;
    }
    .business-description-slide {
        padding: 0 10rem;
        display: flex;
        width: 100%;
    }
    .business-description-slide .text-title {
        margin-bottom: unset;
        font-size: 2.8rem;
        line-height: 3.8rem;
        width: 80rem;
        padding-right: 2rem;
    }
    .business-description-slide .text-title br {
        display: block;
    }
    .business-description-slide .text-content p {
        font-size: 2rem;
        line-height: 3rem;
        margin-top: 0.2rem;
        letter-spacing: -0.05rem;
        font-weight: 700;
        word-break: keep-all;
        margin-bottom: 1.8rem;
    }
    .business-description-slide .text-hashtag {
        font-size: 1.8rem;
        line-height: 2.8rem;
        font-weight: 600;
        word-break: keep-all;
    }

    .product-overview .wrapper {
        padding: 12rem 4rem 0 4rem;
    }
    .product-overview h2 {
        font-size: 3rem;
        line-height: 4.2rem;
        margin-bottom: 6rem;
    }
    .product-grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem; /* 적당한 간격 조정 */
    }
    .product-box:nth-child(1) {
        grid-column: span 2;
        grid-row: 1;
    }
    .product-box:nth-child(2) {
        grid-column: 3;
        grid-row: 1;
    }
    .product-box:nth-child(3) {
        grid-column: 4;
        grid-row: 1;
    }
    .product-box:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }
    .product-box:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }
    .product-box:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
    }
    .product-box:nth-child(7) {
        grid-column: 4;
        grid-row: 2 / span 2;
    }
    .product-box:nth-child(8) {
        grid-column: 1;
        grid-row: 3;
    }
    .product-box:nth-child(9) {
        grid-column: 2;
        grid-row: 3;
    }
    .product-box:nth-child(10) {
        grid-column: 3;
        grid-row: 3;
    }
    .product-content {
        height: 26rem;
    }
    .product-title {
        font-size: 2.6rem;
        line-height: 3.2rem;
    }
    .product-title br {
        display: block;
    }
    .product-content,
    .product-info {
        padding: 2rem 2.4rem 2rem 2.4rem;
    }
    .product-content .product-title,
    .product-info .product-title {
        margin-bottom: 1.8rem;
    }
    .product-description {
        /*font-weight: 600;*/
        font-size: 1.7rem;
        line-height: 2.4rem;
        opacity: 0.95;
    }
    .product-content .product-icon {
        width: 6rem;
    }

    .clients .wrapper {
        padding: 12rem 4rem 0 4rem;
    }
    .clients h2 {
        font-size: 3rem;
        line-height: 4.2rem;
        margin-bottom: 6rem;
    }
    .client-logo {
        height: 9.2rem;
    }

    .notice-preview .wrapper {
        padding: 12rem 4rem 0 4rem;
    }
    .notice-preview h2 {
        font-size: 3rem;
        line-height: 4.2rem;
        margin-bottom: 6rem;
    }

    .map-container {
        height: 40rem;
    }
    .map-info {
        left: 26%;
    }

}
@media (min-width: 1280px) {

    .main-visual-track {
        height: 74rem;
    }
    .main-visual-slide .slide-content-wrapper {
        bottom: 20%;
    }
    .main-visual-slide .slide-sub-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    .main-visual-slide .slide-main-title {
        font-size: 4rem;
        line-height: 5.4rem;
        margin-bottom: 8rem;
    }
    .main-visual-slide a {
        font-size: 1.7rem;
        padding: 1.4rem 2.8rem;
    }
    .main-visual-pagination {
        max-width: 1320px;
        padding: 0 4rem;
        left: 50%;
        transform: translateX(-50%);
        top: calc(74rem - 70px);
    }

    .business-area .wrapper {
        max-width: 1320px;
        margin: 0 auto;
        padding: 16rem 4rem 0 4rem;
    }
    .business-area h2 {
        font-size: 3.6rem;
        line-height: 4.8rem;
        margin-bottom: 8rem;
    }

    .product-overview .wrapper {
        max-width: 1320px;
        margin: 0 auto;
        padding: 16rem 4rem 0 4rem;
    }
    .product-overview h2 {
        font-size: 3.6rem;
        line-height: 4.8rem;
        margin-bottom: 8rem;
    }

    .clients .wrapper {
        max-width: 1320px;
        margin: 0 auto;
        padding: 16rem 4rem 0 4rem;
    }
    .clients h2 {
        font-size: 3.6rem;
        line-height: 4.8rem;
        margin-bottom: 8rem;
    }
    .client-logo {
        height: 11rem;
    }

    .notice-preview .wrapper {
        max-width: 1320px;
        margin: 0 auto;
        padding: 16rem 4rem 0 4rem;
    }
    .notice-preview h2 {
        font-size: 3.6rem;
        line-height: 4.8rem;
        margin-bottom: 8rem;
    }

}
