:root {


    --page-padding: 1rem;
    --angle: -15deg;
    --trans-content: -40vh;

    @media screen and (max-width: 1650px) {
        --trans-content: -50vh;

    }
}

@keyframes popinBadge {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        opacity: 0;
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    25% {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes before {
    0% {
        -webkit-transform: translateY(-100px) rotate(135deg);
        transform: translateY(-100px) rotate(135deg)
    }

    30% {
        -webkit-transform: translateY(-100px) rotate(135deg);
        transform: translateY(-100px) rotate(135deg)
    }

    to {
        -webkit-transform: translateY(0) rotate(135deg);
        transform: translateY(0) rotate(135deg)
    }
}

@keyframes before {
    0% {
        -webkit-transform: translateY(-100px) rotate(135deg);
        transform: translateY(-100px) rotate(135deg)
    }

    30% {
        -webkit-transform: translateY(-100px) rotate(135deg);
        transform: translateY(-100px) rotate(135deg)
    }

    to {
        -webkit-transform: translateY(0) rotate(135deg);
        transform: translateY(0) rotate(135deg)
    }
}

@-webkit-keyframes after {
    70% {
        -webkit-transform: translateY(100px) rotate(135deg);
        transform: translateY(100px) rotate(135deg)
    }

    to {
        -webkit-transform: translateY(100px) rotate(135deg);
        transform: translateY(100px) rotate(135deg)
    }
}

@keyframes after {
    70% {
        -webkit-transform: translateY(100px) rotate(135deg);
        transform: translateY(100px) rotate(135deg)
    }

    to {
        -webkit-transform: translateY(100px) rotate(135deg);
        transform: translateY(100px) rotate(135deg)
    }
}

@-webkit-keyframes popOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    25% {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        opacity: 1
    }

    70% {
        opacity: 0
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }
}

@keyframes popOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    25% {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        opacity: 1
    }

    70% {
        opacity: 0
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }
}

.noscroll {
    height: 100dvh;
    width: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
}

.article_title div {
    opacity: 0
}

.article_sub_title div {
    opacity: 0
}

.hiring_sheet {}

.frame {
    font-size: 12px;
    color: #000;
    padding: var(--page-padding);
    display: grid;
    z-index: 1000;
    grid-row-gap: 1rem;
    grid-column-gap: 2rem;
    pointer-events: none;
    justify-items: start;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 'title' 'sponsor';
    transition: opacity 0.3s;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.frame #cdawrap {
    justify-self: end;
    max-width: 300px;
    text-align: right;
}

.frame a {
    pointer-events: auto;
    color: #fff;
}

.frame a:focus,
.frame a:hover {
    color: #fff;
}

.frame__title {
    grid-area: title;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 400;

}

.intro {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 26%) 0, rgb(0 0 0 / 15%) 56%), linear-gradient(to top, rgb(0 0 0) 0, rgba(0, 0, 0, 0) 56%), linear-gradient(to left, rgb(0 0 0 / 0%) 0, rgb(16 255 0 / 18%) 56%);
    pointer-events: none;
    transition: all 0.4s ease;

}

.intro.bghide::after {
    /*
        transition-delay: 5s;
        background:linear-gradient(to right, rgb(0 0 0 / 0%) 0, rgb(0 0 0 / 8%) 56%), linear-gradient(to top, rgb(31 171 68 / 90%) 0, rgb(9 115 9 / 47%) 56%), linear-gradient(to left, rgb(0 82 31 / 0%) 0, rgb(0 255 75 / 18%) 56%);
*/
}

.intro--open {
    height: 80vh;
}

.grid {
    opacity: .4;
    gap: 2rem;
    flex: none;
    position: relative;
    width: 150vw;
    height: 150vh;
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: 100%;
    transform: rotate(var(--angle));
    transform-origin: center center;
}

.rows {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(7, 1fr);
    will-change: transform, filter;
}

.row__item {
    position: relative;
}

.row__item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.row__item-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1);
    filter: grayscale(1);
}

.row__item-img--large {
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    margin: -50vh 0 0 -50vw;
    background-position: 50% 70%;
    will-change: transform, filter;
}

.enter {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(31 171 68 / 90%);
    border: 2px solid #09bf41;
    border-radius: 2000em;
    box-shadow: .1em .1em .2em rgba(0, 0, 0, .2);
    color: #fff;
    font-weight: 700;
    line-height: 1;
    font-size: 32px;
    width: 300px;
    height: 84px;
    z-index: 2;
    pointer-events: auto;
    animation: popinBadge .8s ease 2.1s both;
    transition: all 0.2s ease;
    transition-delay: 0s;
    position: relative;
    margin: auto;
    margin-top: 0
}

.enter.hidden {
    animation: popOut 0.5s ease both;
    pointer-events: none;
}



.hiring__idframe__badge__arrow {
    position: relative;
    height: 90%;
    overflow: hidden;
    width: 40px;
}



@media(max-width: 767px) {
    .hiring__idframe__badge__arrow {
        margin-left: 16px;
        position: relative !important;
        right: 0
    }
}

#banner {
    overflow: hidden;
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 64px 8px 64px 8px;
    left: 50%;
    transition: all 1s ease;
    position: absolute;
    top: 0px;
    transform: translateX(-50%)
}

.title_area {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.title_area i {
    color: rgb(31 171 68 / 90%);
    position: absolute;

    right: -80px;
    font-size: 100px;
    top: -70px;
}

.hire-tit {
    position: absolute;
    width: 100%;
    max-height: 650px;
    height: 100vh;
    z-index: 1;
    transition: all 1s ease;



}

.off_title {
    position: absolute;
    right: 5%;
    color: #F3F3F1;
    font-size: 8vw;
    text-align: right;
    text-transform: uppercase;
    bottom: -3vw;
    opacity: 0;
    transition: all 1s ease;

}

.active .off_title {
    opacity: 1;
    transition-delay: 3s;
}

.video-area {
    position: relative;
    width: 50%;
    height: 620px;
    float: right;

}

.CareersHero_dashedBox__jXnlg .CareersHero_labelWrapper__iWWY_ {
    position: absolute;
    bottom: 1.0416666667vw;
    left: 1.3888888889vw;
    font-size: 24px;
    color: #09bf41;
    overflow: hidden;
}



.CareersHero_dashedBox__jXnlg .CareersHero_label__LzRMh {
    display: block;
}

.CareersHero_dashedBox__jXnlg .CareersHero_border__ENVQQ {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px dashed #09bf41;
}

.CareersHero_dashedBox__jXnlg {
    position: absolute;
    top: 50%;
    left: calc(-50% - .0694444444vw);
    transform: translateY(-50%);
    width: 24.2361111111vw;
    height: 13.2638888889vw;
}

.video-area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hire-tit h1 {

    color: #fff;
    text-align: center;
    font-size: 100px;
    line-height: 0.9;
    text-transform: uppercase;
    margin: 42px auto;
    display: table;
    position: relative
}

.hire-tit p {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 24px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 100;
    font-family: 'Pretendard';
    margin-bottom: 48px;

}

.hire-tit.active {
    height: 60%;
    top: 0;
    max-height: none;

}

.hire-tit.active h1 {
    animation: popOut 0.5s ease both;
    pointer-events: none;
}

.hire-tit.active p {
    animation: popOut 0.5s ease both;
    pointer-events: none;
}

.hire-tit.active #banner {
    transition-delay: 2s;
    width: 300px;
    height: 300px;
    top: auto;
    transform: translate(0);
    bottom: -8em;
    left: 5%;
}

.hiring__idframe__badge__arrow:after,
.hiring__idframe__badge__arrow:before {

    border-right: 4px solid #fff;
    border-top: 4px solid #fff;
    content: "";
    display: inline-block;
    height: 12px;
    position: absolute;
    right: 3px;
    top: calc(50% - 8px);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: margin 1s ease;
    width: 12px
}

.container.space.hire {
    max-width: 1440px;
}

.container.space.hire h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.container.space.moted {
    width: 100%;
    padding: 10vw 0;
    margin: 10vw 0;
    max-width: 100%;
    background: #000;
    color: #fff;
    position: relative;

}

.container.space.moted::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: url(../images/hiring_bg_01.png) no-repeat center;
    background-size: cover;
    opacity: .2
}

.container.space.moted h1 {
    text-align: center;
    font-size: 48px;
    line-height: 1.4;
    margin-bottom: 48px;
    display: block;
}

.container.space.moted p {
    font-size: 32px;
    font-weight: 300;
    font-family: 'Pretendard';
    line-height: 1.4;
    text-align: center;


}

.hire p {
    font-size: 24px;
    font-weight: 300;
    font-family: 'Pretendard';
    line-height: 1.4
}

.hire i {
    font-size: 48px;
    color: #09bf41;
    margin-bottom: 24px
}


.enter:hover .hiring__idframe__badge__arrow:before {
    -webkit-animation: before .8s cubic-bezier(.215, .61, .355, 1) infinite both;
    animation: before .8s cubic-bezier(.215, .61, .355, 1) infinite both
}

.enter:hover .hiring__idframe__badge__arrow:after {
    -webkit-animation: after .8s cubic-bezier(.55, .055, .675, .19) infinite both;
    animation: after .8s cubic-bezier(.55, .055, .675, .19) infinite both
}

.fullview {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.fullview .row__item-inner {
    border-radius: 0px;
}

.about-btn {
    display: inline-block;
    background-color: rgb(31 171 68 / 90%);
    border: 2px solid #09bf41;
    border-radius: 2000em;
    box-shadow: .1em .1em .2em rgba(0, 0, 0, .2);
    color: #fff;
    font-weight: 700;
    line-height: 1;
    font-size: 32px;
    padding: 7px 20px 4px;
    position: absolute;
    top: -24px;
    right: -32px;
    z-index: 1;
    pointer-events: auto;
}

.content {

    position: relative;
}

.content__header {
    overflow: hidden;
}

.container.space {
    margin: auto;
    margin-top: 200px;
}

.container.space h1 {
    position: relative;
    display: table;
    font-size: 64px;
    text-transform: uppercase;
}

.container.space h3 {
    font-size: 48px;
    text-transform: uppercase;
    color: #212529;
    margin-bottom: 24px;
}

.container.space h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #212529;
    margin-bottom: 24px;
}

.Slider-Bg {
    background: #086927;
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    margin: 20vh 0 0;
}

.Slider-Bg::after {
    background: url(../images/company_bg_02.png) no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    content: "";
    display: block;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1);
    filter: grayscale(1);

}

.Slider-Bg .contactSlider {
    max-width: 1440px;
    color: #fff;
    text-align: center
}

.Slider-Bg i {
    color: #fff;
    position: absolute;
    display: block;
    font-size: 100px;
    left: 0;
    top: 0;
}

.contactSlider p {
    font-size: 22px;
    word-spacing: -0.5px;
    line-height: 1.4;
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Pretendard';
}

.contactSlider .pic {
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 24px;
}

.contactSlider h4 {
    margin-top: 48px;
    font-size: 16px;
    word-spacing: -0.5px;
    line-height: 1.4;
    font-weight: 600;
    opacity: .7;
    text-transform: uppercase;
    font-family: 'Pretendard';
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 20px
}

.swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff
}

.contactSlider .swiper-slide {
    cursor: grab;
    width: 44%;
}

.content__title .contect-btn {
    display: block;
    background-color: rgb(31 171 68 / 90%);
    border: 2px solid #09bf41;
    border-radius: 2000em;
    box-shadow: .1em .1em .2em rgba(0, 0, 0, .2);
    color: #fff;
    font-weight: 900;
    max-width: 150px;
    line-height: 0;
    font-size: 60px;
    margin: auto;
    padding: 16px 24px;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    margin-bottom: -12px;
}

.box {
    padding: 48px;
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    padding: 8vh;
}

.hire .col-lg-6.col-md-6.p-0:nth-child(1) .box {}

.hire .col-lg-6.col-md-6.p-0:nth-child(2) .box {
    border-right: 0
}

.hire .col-lg-6.col-md-6.p-0:nth-child(3) .box {
    border-bottom: 0
}

.hire .col-lg-6.col-md-6.p-0:nth-child(4) .box {
    border-bottom: 0;
    border-right: 0
}


.footer .content__title {
    font-family: 'Pretendard';
    font-weight: 900;
}

.footer .content__title p {
    font-size: 32px;
    font-weight: 300;
    color: #666
}

.footer .content__title p a {
    font-weight: 700;
    color: #09bf41;
    font-size: 22px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: underline
}

.content__title p {
    font-weight: 800;
    font-size: 20px;
    margin-top: 48px;
}

.video-area img {
    height: 100%
}

.grid-2-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}


@media screen and (max-width: 1650px) {
    .container.space {
        margin-top: 100px
    }

    .content__header h2 {
        font-size: 36px
    }

    .content__header p {
        font-size: 24px
    }

    .container.space.moted p {
        font-size: 24px
    }


    .container.space h1 {
        font-size: 48px;
    }

    .container.space.hire .row {
        margin-left: 0;
        margin-right: 0
    }

    .hire-tit.active {
        height: 50%;
    }

    .off_title {
        bottom: -3vw;
    }

    .hire-tit {
        height: 450px
    }

    .hire-tit.active #banner {
        bottom: -80px
    }

    .grid {
        width: 300vw;
        height: 120vh;
    }

    .hire-tit h1 {
        font-size: 64px;
        margin-bottom: 24px
    }

    .hire-tit p {
        font-size: 18px;
        margin-bottom: 24px
    }

    .about-btn {
        display: inline-block;
        background-color: rgb(31 171 68 / 90%);
        border: 2px solid #09bf41;
        border-radius: 2000em;
        box-shadow: .1em .1em .2em rgba(0, 0, 0, .2);
        color: #fff;
        font-weight: 700;
        line-height: 1;
        font-size: 24px;
        padding: 4px 16px 2px;
        position: relative;
        top: auto;
        right: auto;
        z-index: 1;
        pointer-events: auto;
        vertical-align: super;
        margin-left: -2px;

    }

    #banner {

        width: 150px;
        height: 150px;
    }

    .enter {

        font-size: 24px;
        width: 258px;
        height: 64px;

    }

    .CareersHero_dashedBox__jXnlg {
        top: 80%
    }

    .content__header h2 {
        font-size: 32px;
    }

    .content__header p {
        font-size: 18px
    }

    .video-area {
        width: 70%;
        height: 500px;
    }

    .container.space.hire {
        padding: 0 24px
    }

    .container.space.moted h1 {
        font-size: 32px;
    }

    .container.space.moted p {
        font-size: 18px
    }

    .footer .content__title {
        font-size: 48px;
        line-height: 1;
        min-height: 500px;
        height: auto;
        margin-top: 10vw;
        text-transform: uppercase;
    }

    .content__title .contect-btn {
        font-size: 48px;
        padding: 10px 16px;
        max-width: 100px
    }

    .hire p {
        font-size: 18px
    }

    .footer .content__title p {
        font-size: 24px
    }

    .content__footer {
        transform: translateY(calc(-1* var(--trans-content)));
        margin-top: -200px;
    }
}

@media screen and (max-width: 982px) {
    .content__header h2 {
        font-size: 24px
    }

    .hire-tit.active #banner {
        width: 200px;
        height: 200px
    }

    .box {
        padding: 48px;
        border-right: solid 1px #ddd;
        border-bottom: solid 1px #ddd;
        padding: 24px;
    }



}

@media screen and (max-width: 769px) {
    .container.space h1 {
        white-space: normal
    }

    .box {
        padding: 48px;
        border-right: 0;
        border-bottom: solid 1px #ddd;
        padding: 48px 24px;
    }

    .hire .col-lg-6.col-md-6.p-0:nth-child(1) .box {}

    .hire .col-lg-6.col-md-6.p-0:nth-child(2) .box {
        border-right: 0
    }

    .hire .col-lg-6.col-md-6.p-0:nth-child(3) .box {
        border-bottom: solid 1px #ddd
    }

    .hire .col-lg-6.col-md-6.p-0:nth-child(4) .box {
        border-bottom: 0;
        border-right: 0
    }

    .grid {
        width: 550vw;
        height: 140vh;
    }

    #banner {

        width: 150px;
        height: 150px;
    }

    .title_area {
        padding: 0 32px;
    }

    .hire-tit {
        height: 400px
    }

    .container.space.hire {
        padding: 0
    }

    .hire-tit h1 {
        color: #fff;
        text-align: center;
        font-size: 48px;
        line-height: 0.9;
        text-transform: uppercase;
        margin: 24px auto;
        display: table;
        position: relative;
    }


    .title_area i {

        font-size: 20px;
        right: -22px;
        font-size: 48px;
        top: -40px;
    }

    .hire-tit p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .enter {

        font-size: 24px;
        width: 258px;
        height: 64px;

    }

    .hire-tit.active #banner {
        width: 200px;
        height: 200px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -64px;
    }

    .off_title {
        bottom: auto;
        top: 20%;
        right: 0;
        width: 100%;
        text-align: center;
        font-size: 10vw;

    }

    .container.space {
        margin-top: 100px;
    }

    .container.space .row {
        margin-left: 0;
        margin-right: 0
    }

    .container.space h1 {
        position: relative;
        display: block;
        font-size: 10vw;
        text-transform: uppercase;
        line-height: 0.8;
        text-align: left;
        width: auto;
    }

    .about-btn {
        display: inline-block;
        background-color: rgb(31 171 68 / 90%);
        border: 2px solid #09bf41;
        border-radius: 2000em;
        box-shadow: .1em .1em .2em rgba(0, 0, 0, .2);
        color: #fff;
        font-weight: 700;
        line-height: 1;
        font-size: 24px;
        padding: 4px 16px 2px;
        position: relative;
        top: auto;
        right: auto;
        z-index: 1;
        pointer-events: auto;
        vertical-align: super;
        margin-left: -2px;

    }

    .content__header h2 {
        font-size: 18px;
        margin-bottom: 24px
    }

    .content__header p {
        font-size: 16px
    }

    .video-area {
        position: relative;
        width: 100%;
        height: 360px;
        float: none;
        margin-top: 48px;
    }

    .CareersHero_dashedBox__jXnlg {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        width: 80%;
        height: 16vw;
        background: rgba(0, 0, 0, 0.6);
        text-align: center;
    }

    .CareersHero_dashedBox__jXnlg .CareersHero_labelWrapper__iWWY_ {
        position: absolute;
        bottom: 0;
        left: 0;
        font-size: 24px;
        color: #09bf41;
        overflow: hidden;
        width: 100%;
        height: 100%;
        display: flex
    }

    .CareersHero_dashedBox__jXnlg .CareersHero_label__LzRMh {
        display: block;
        margin: auto;
        line-height: 1;
    }

    .container.space.moted {
        width: 100%;
        padding: 50vw 24px;
        margin: 40vw 0 0;
        max-width: 100%;
        background: #000;
        color: #fff;
        position: relative;
    }


    .container.space.moted h1 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .container.space.moted p {
        font-size: 16px;
        line-height: 1.6
    }

    .hire i {
        font-size: 32px;
    }

    .container.space.hire h1 {
        font-size: 24px;
        margin-bottom: 24px !important;
    }

    .hire p {
        font-size: 16px;
        font-weight: 300;
        font-family: 'Pretendard';
        line-height: 1.4;

    }

    .Slider-Bg {
        background: #086927;
        position: relative;
        overflow: hidden;
        padding: 100px 24px;
        margin: 0;
    }

    .contactSlider p {
        font-size: 16px
    }

    .contactSlider h4 {
        margin-top: 24px;
        font-size: 14px;
        word-spacing: -0.5px;
        line-height: 1.4;
        font-weight: 600;
        opacity: .7;
        text-transform: uppercase;
        font-family: 'Pretendard';
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }


    .contactSlider .pic {
        width: 80px;
        height: 80px
    }

    .content__title .contect-btn {
        font-size: 30px;
        padding: 8px 16px;
        max-width: 90px;
        margin-bottom: 8px
    }

    .footer .content__title {
        font-family: 'Pretendard';
        font-weight: 900;
        font-size: 8vw;
    }

    .container.space.hire {
        max-width: 1440px;
        margin-bottom: 20vw;


    }


    .content__footer {
        transform: translateY(calc(-1* var(--trans-content)));
        margin-top: -200px;
    }

    .footer .content__title p {
        font-size: 18px;
        margin-top: 24px;
    }

    .footer .content__title p a {
        display: block;
        font-size: 18px;
    }


    .grid-1-1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }


}