body {
    margin: 0;
    font-family: Montserrat;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #191919;
}

img {
    display: block;
}

ul,
li {
    list-style: none;
}



/* ---------------- email_thumbnail ----------------- */
.main_img_frame {
    width: 100%;
    overflow: hidden;
}

.bg_color {
    width: 105%;
    transform: translateX(-3%);
    height: 500px;
    padding: 0 0 20px 20px;
    box-sizing: border-box;
    border-radius: 0 0 0 320px;
    /* display: none; */
}

.bg_color .thumbnail_img {
    width: 100%;
    height: 480px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 0 300px;
    background-attachment: fixed;
}

.bg_color .thumbnail_img .txt_frame {
    max-width: 1280px;
    color: white;
    margin: 356px auto;
}


.bg_color .thumbnail_img h3 {
    font-size: 2.5em;
    margin-bottom: 0;
}

.bg_color .thumbnail_img p {
    font-size: 1.2em;
}

.company {
    max-width: 1280px;
    margin: 100px auto;
}

.company .title_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 68px;
}

.company .title_wrap h1 {
    font-size: 2.5em;
    margin-bottom: 0;
}

.company .title_wrap a {
    font-weight: 500;
    border: 1px solid #191919;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s;
}

.company .title_wrap a:hover {
    color: #faaca8;
    border-color: #faaca8;
}

.company .title_wrap a:hover i {
    animation: arrow 0.7s infinite;
}

@keyframes arrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0px);
    }
}

.company ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.company ul li {
    width: 305px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: all 0.3s;
}

.company ul li:hover {
    transform: translateY(-20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .18);
}

.company ul li .img_frame {
    height: 243px;
}

.company ul li .img_frame img {
    width: 100%;
}

.company ul li .txt_wrap {
    padding: 20px;
    box-sizing: border-box;
}

.company ul li .txt_wrap .top_txt {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.company ul li .txt_wrap .top_txt .logo {
    width: 60px;
    height: 50px;
    background-color: #eee;
}

.company ul li .txt_wrap .top_txt span {
    font-weight: bold;
    width: calc(100% - 70px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.company ul li .txt_wrap .tag_box span {
    margin-right: 4px;
}

.send_inquiry_wide {
    width: 100%;
    background-color: #191919;
    box-sizing: border-box;
    padding: 100px 0;
    overflow: hidden;
}

.mo_br {
    display: none;
}

.send_inquiry_wide .send_inquiry {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.send_inquiry .txt_wrap p:nth-child(1) {
    color: #92C3FF;
    font-weight: 600;
    font-size: 1.2em;
}

.send_inquiry .txt_wrap h1 {
    font-size: 2.5em;
    color: #fff;
    margin: 30px 0 10px;
}

.send_inquiry .txt_wrap p:nth-child(3) {
    color: rgba(255, 255, 255, .6);
    line-height: 130%;
}

.send_inquiry_wide::before {
    content: " ";
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #007AFF;
    position: absolute;
    filter: blur(100px);
    top: 125em;
    left: 20em;
}

.send_inquiry_wide::after {
    content: " ";
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FFF945;
    position: absolute;
    filter: blur(100px);
    top: 116em;
    left: 15em;
}

.send_inquiry .inquiry_wrap .list_wrap {
    padding-left: 35px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.send_inquiry .inquiry_wrap .list_wrap::after {
    content: " ";
    display: inline-block;
    background: linear-gradient(to right, rgba(25, 25, 25, 0), rgba(25, 25, 25, 1));
    width: 175px;
    height: 203px;
    position: absolute;
    top: 202px;
    right: 0;
}

.send_inquiry .inquiry_wrap .animation_wrap {
    display: flex;
    gap: 50px;
    margin-top: 205px;
    margin-bottom: 421px;
    animation: inq 14s infinite;
}


@keyframes inq {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-350px);
    }

    15% {
        transform: translateX(-350px);
    }

    35% {
        transform: translateX(-700px);
    }

    40% {
        transform: translateX(-700px);
    }

    60% {
        transform: translateX(-1050px);
    }

    65% {
        transform: translateX(-1050px);
    }

    75% {
        transform: translateX(-1400px);
    }

    80% {
        transform: translateX(-1400px);
    }

    90% {
        transform: translateX(-1750px);
    }

    100% {
        transform: translateX(-1750px);
    }
}

.send_inquiry .inquiry_wrap .animation_wrap li {
    background-color: #fff;
    border-radius: 20px;
    width: fit-content;
    box-sizing: border-box;
    padding: 20px;
}

.send_inquiry .inquiry_wrap .animation_wrap li .top_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    font-weight: 600;
}

.send_inquiry .inquiry_wrap .animation_wrap li .top_wrap .index {
    padding: 6px 12px;
    border-radius: 6px;
}

.send_inquiry .inquiry_wrap .animation_wrap li .top_wrap .index.inq {
    color: #007AFF;
    background-color: #EBF4FF;
}

.send_inquiry .inquiry_wrap .animation_wrap li .top_wrap .date {
    color: #777;
}

.send_inquiry .inquiry_wrap .animation_wrap li .main_wrap {
    margin: 16px 0;
}

.send_inquiry .inquiry_wrap .animation_wrap li .main_wrap h2 {
    width: 260px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.1em;
    margin-bottom: 4px;
}

.send_inquiry .inquiry_wrap .animation_wrap li .main_wrap p {
    font-size: .8em;
    color: #777;
}

.send_inquiry .inquiry_wrap .animation_wrap li .bottom_wrap {
    box-sizing: border-box;
    padding-top: 16px;
    border-top: 2px solid #eee;
    display: flex;
    gap: 10px;
    align-items: center;
}

.send_inquiry .inquiry_wrap .animation_wrap li .bottom_wrap b {
    font-size: .9em;
}

.send_inquiry .inquiry_wrap .animation_wrap li .bottom_wrap p {
    font-size: .75em;
    color: #777;
}

.send_inquiry .inquiry_wrap .animation_wrap li .bottom_wrap .nation_frame {
    width: 54px;
    height: 38px;
    background-color: #f5f5f5;
    border-radius: 6px;
    border: 1px solid #eee;
    box-sizing: border-box;
    overflow: hidden;
}



.phone_img_frame {
    position: absolute;
    top: 16rem;
}

.toast_message_frame {
    position: absolute;
    top: 44rem;
    left: 30rem;
    height: 86px;
    width: 38%;
    overflow: hidden;
}

.toast_message_frame li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #ffc400;
    background-color: rgba(255, 196, 0, .1);
    padding: 8px 16px;
    border: 1px solid rgba(255, 196, 0, .2);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(86px);
    transition: all 0.6s ease;
}

.toast_message_frame li:nth-child(2n) {
    color: rgb(0, 217, 255);
    background-color: rgba(0, 217, 255, .1);
    padding: 8px 16px;
    border: 1px solid rgba(0, 217, 255, .2);
}

.send_inquiry_link {
    max-width: 1280px;
    height: 390px;
    border-radius: 0 100px 0 100px;
    margin: -100px auto 100px;
    background-image: url(/img/inquiry_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding: 100px 0;
}

.send_inquiry_link .text_wrap {
    text-align: center;
}

.send_inquiry_link .text_wrap h1 {
    margin-bottom: 10px;
    font-size: 2.2em;
}

.send_inquiry_link .text_wrap p {
    font-size: 1.2em;
    opacity: .6;
}

.send_inquiry_link a {
    padding: 10px 20px;
    font-size: 1.2em;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    margin: 60px auto 0;
    width: fit-content;
    display: block;
}

.send_inquiry_link .img_frame {
    width: 302px;
    position: absolute;
    bottom: -10px;
    right: 10px;
    animation: message 3s infinite;
}

@keyframes message {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(-5deg);
    }

    20% {
        transform: rotate(5deg);
    }

    30% {
        transform: rotate(-5deg);
    }

    40% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.send_inquiry_link .img_frame img {
    width: 100%;
}


@media screen and (max-width:1600px) {
    .bg_color .thumbnail_img .txt_frame {
        width: fit-content;
    }
}

@media screen and (max-width:1280px) {
    .company {
        margin: 100px 20px;
    }

    .company ul {
        max-width: 955px;
        margin: 0 auto;
    }

    .send_inquiry_wide {
        padding: 100px 20px;
    }

    .send_inquiry_wide::before {
        top: 115em;
        left: 60em;
    }

    .send_inquiry_wide::after {
        top: 110em;
        left: 51em;
    }

}

@media screen and (max-width:1080px) {
    .toast_message_frame {
        left: 24rem;
    }

    body {
        font-size: 14px;
    }

    .send_inquiry_link .img_frame {
        width: 252px;
    }

    .send_inquiry_wide::after {
        display: none;
    }

    .send_inquiry_wide::before {
        display: none;
    }

}

@media screen and (max-width:768px) {
    .company .title_wrap {
        display: block;
    }

    .company .title_wrap h1 {
        margin-bottom: 24px;
    }

    .toast_message_frame {
        left: 21rem;
    }

    .company .title_wrap h1 {
        font-size: 1.8em;
    }

    .send_inquiry .txt_wrap p:nth-child(1) {
        font-size: 1em;
    }

    .send_inquiry .txt_wrap h1 {
        font-size: 1.8em;
    }

    .toast_message_frame {
        left: 1.8em;
        width: 258px;
    }

    .send_inquiry_link .img_frame {
        width: 202px;
    }

    .bg_color {
        height: 300px;
        border-radius: 0 0 0 200px;
    }

    .bg_color .thumbnail_img {
        height: 280px;
        border-radius: 0 0 0 180px;
    }

    .bg_color .thumbnail_img .txt_frame {
        margin: 100px auto;
    }

    .txt_frame p {
        line-height: 130%;
    }

}

@media screen and (max-width:425px) {
    .phone_img_frame {
        width: 100%;
        top: 22em;
    }

    .phone_img_frame img {
        width: 100%;
    }

    .toast_message_frame {
        left: 50%;
        transform: translate(-50%);
        width: 80%;
    }

    .send_inquiry_link {
        border-radius: 0 50px 0 50px;
    }

    .mo_br {
        display: inline;
    }

    .send_inquiry_link .img_frame {
        width: 162px;
        bottom: 8em;
        right: 1.5em;
        opacity: .5;
    }

}



/* --------  mhp(마이홈페이지)  --------- */

#gpp img {
    display: inline-block !important;
}