@charset "UTF-8";

/* contact.css */

/* 변경된 서브페이지 header 디자인 */

header nav ul.gnb>li>a {
    color: rgb(81, 81, 81);
}

header nav ul.gnb>li>a:hover {
    color: #234092;
}


section.content {
    width: 100%;
    height: 100%;
    padding-top: 100px;
    box-sizing: border-box;
    background-color: rgb(255,255,255);

    position: relative;
}

section.content::before {
    content: "";
    display: block;
    width: 65%;
    height: 100%;
    background-image: url(../img/contact/contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;

    position: absolute;
    right: 0;
    top: 0;
}

section.content .customer {
    width: 40%;
    max-width: 640px;
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translate(-50%,-50%);

    padding: 50px;
    box-sizing: border-box;
    border-radius: 20px;
    background-color: rgb(255,255,255);
    box-shadow: 0 0 12px #d9d9d9;
}
section.content .customer .txt-box {
    margin-bottom: 40px;
}
section.content .customer .txt-box .title {
    margin-bottom: 20px;
}
section.content .customer .txt-box .title span {
    display: block;
    font-weight: 400;
}
section.content .customer .txt-box .title span:first-child {
    color: #3887C9;
    font-size: 1.125rem;
}
section.content .customer .txt-box .title span:last-child {
    color: #222;
    font-weight: 700;
    font-size: 2rem;
}

section.content .customer .txt-box .des p {
    margin-bottom: 10px;
    line-height: 1.4;
    color: #555;
    font-size: 1rem;
}

section.content .customer .btngrp a {
    width: 200px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    background-color: #3887C9;
    color: rgba(255,255,255, .9);
    line-height: 50px;
    border-radius: 30px;

    display: inline-block;
    margin: 0 6px 12px 0;
}