/* http://rahyeri.dothome.co.kr/home의  서브페이지 css입니다 
        copyright(c) rahyeri 최종수정일 22.01.08*/
@charset "utf-8";

header {
    clear: both;
    background-color: #77edbc;

}

.h_box {
    height: 120px;
    width: 100%;
    max-width: 1280px;
    margin: 0px auto;
    background-color: #77edbc;
    /* position:relative; */
}

header h1 {
    position: absolute;
    left: 50px;
    top: 62px;
}

h1 img {
    width: 120px;
}

header p {
    position: absolute;
    right: 10%;
    top: 10px;
    /* width:80%; */
    color: rgb(34, 89, 192);
    font-family: 'Righteous', cursive;
    font-size: 5vw;
    margin-right: 150px;

}

nav {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 102;
    background-color: #34d693;
    /* overflow:hidden; */
    display: none;
}

.gnb {
    width: 50%;
    height: 100%;
    margin: 0px auto;
    font-size: 2.5vw;
    color: #222;
    background-color: #fff;
    box-sizing: border-box;
    padding-top: 150px;
}

.gnb>li {
    margin: 0px 0px 50px 150px;
    position: relative;
}

.gnb>li a::after {
    content: "";
    width: 0%;
    height: 5px;
    background-color: rgb(34, 89, 192);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: 0.5s;
}

.gnb>li a:hover::after {
    width: 100%;
}

.fa-bars,
.fa-times-circle {
    font-size: 40px;
    color: rgb(34, 89, 192);
    position: absolute;
    right: 82px;
    top: 50px;
    z-index: 105;
}
/* 내비 적용할 제이쿼리효과 */
.act02 {
    background-color: #77edbc !important;
}

.fa-times-circle {
    font-size: 42px;
    display: none;
}

.fa-bars:hover,
.fa-times-circle:hover {
    cursor: pointer;
}

/*  */
/* h_bottom */
.h_bottom {
    height: 40px;
    background-color: rgb(247, 247, 247);
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    /* border-bottom:2px solid #111; */

}

.h_bottom a {
    padding: 0px 80px;
    transition: 0.6s;
}

.h_bottom a:hover {
    padding: 0px 40px;
}

/* main */
main {
    background-color: rgb(34, 89, 192);
}

.wrap {
    border-radius: 50px;
    /* border:3px solid #ff0000; */
    margin: 20px auto;
    /* height:800px; */
    background-color: rgba(255, 255, 255, 0.8);
}

section {
    padding-bottom: 10px;
    width: 100%;
    max-width: 1280px;
    border-radius: 50px;
    background-color: rgb(34, 89, 192);
    margin: 0px auto 0px auto;
}


/* 푸터영역 */
footer {
    width: 100%;
    height: 100px;
    background-color: #111;
    position: relative;
    clear: both;
    text-align: center;

}

footer>h2 {
    position: absolute;
    top: -80px;
    right: 50px;
}

footer>p {
    font-family: 'Montserrat';
    font-size: 2vw;
    color: rgb(123, 255, 193);
    padding-top: 20px;
}

address {
    color: #ccc;
    position: absolute;
    bottom: 20px;
    left: 50px;
    text-transform: capitalize;
}

aside a {
    font-size: 20px;
    color: rgb(123, 255, 193);
    position: absolute;
    bottom: 20px;
    right: 50px;
}