:root {
    --white: #fff;
    --realblack: #000000;
    --black: #000;
    --darkgray: #898989;
    --gray: #c2c2c2;
    --midgray: #e8e8e8;
    --lightgray: #f9f9f9;
    --offwhite: #f7f7f7;

    --red: #e70f00;
    --blue: #269ad9;
    --yellow: #c4c84b;
    --beige: #e1e1d9;
    --navy: #1B414B;
    --oatmeal: #f5f6eb;

    --blur: blur(20px);
    --easing: cubic-bezier(0.74, 0, 0.02, 0.99);
    --radius: .2rem;
    --mob: 800px
}



/* #region FONT */

@import url("https://use.typekit.net/ony1ywe.css");


@font-face {
    font-family: KR;
    src: url(../assets/fonts/Pretendard-Medium-subset.woff) format('woff'),
        url(../assets/fonts/Pretendard-Medium-subset.woff2) format('woff2');
    font-weight: 300;
}

@font-face {
    font-family: KR;
    src: url(../assets/fonts/Pretendard-Bold-subset.woff) format('woff'),
        url(../assets/fonts/Pretendard-Bold-subset.woff2) format('woff2');
    font-weight: normal;
}

@font-face {
    font-family: KR;
    src: url(../assets/fonts/Pretendard-ExtraBold-subset.woff) format('woff'),
        url(../assets/fonts/Pretendard-ExtraBold-subset.woff2) format('woff2');
    font-weight: bold;
}

html {
    height: 100%;
    overscroll-behavior: none;
    font-size: 10px;
}

body {
    height: 100%;
    overscroll-behavior: none;
    transition: background-color 0.8s var(--easing);
    background-color: var(--currentColor, #fff);
    font-size: 1.6rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


h1,
.h1 {
    font-size: 8rem;
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: normal;
    margin: 0;
}

h2,
.h2 {
    font-size: 4.2rem;
    letter-spacing: -0.02em;
    line-height: 1;
    font-weight: normal;
    margin: 0;
}

h3,
.h3 {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: bold;
    margin: 0;
}

h4 {
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 0;
}

h5 {
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: normal;
    margin: 0;
}


b {
    font-weight: bold;
}

.sml-text {
    font-size: 1.2rem;
    line-height: 1.3;
}

.sml-title {
    text-transform: uppercase;
    padding-bottom: 1rem;
}

.uppercase {
    text-transform: uppercase;
}

@media all and (max-width:800px) {

    body {
        font-size: 1.4rem;
    }

    h1,
    .h1 {
        font-size: 4rem;
        line-height: 1;
    }

    h2,
    .h2 {
        font-size: 3.2rem;
    }

    h3,
    .h3 {
        font-size: 2.2rem;
    }

    h4,
    .h4 {
        font-size: 2rem;
    }


    .sml-text {
        font-size: 1.2rem;

    }

    .sml-title {
        text-transform: uppercase;
        padding-bottom: .5rem;
        font-size: 1.2rem;
    }
}

body,
code {
    font-family: KR, sans-serif;
    font-weight: normal;
    color: var(--black);
    word-break: keep-all;

}

input,
select,
textarea,
button {
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
}

.slogan {
    font-family: "area-normal";
    font-weight: 200;
    letter-spacing: -0.02em;
}

/* #endregion */


/* #region FLEX */
.flex {
    display: flex;
    align-items: flex-start;
}

.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.center {
    align-items: center;
    justify-content: center;
    align-content: center;
}

.wrap {
    flex-wrap: wrap
}

.gap1 {
    gap: 1rem
}

.gap2 {
    gap: 2rem
}

.gap4 {
    gap: 4rem
}

.gap6 {
    gap: 6rem
}

.gap8 {
    gap: 8rem
}

.gap10 {
    gap: 10rem
}


.gap20 {
    gap: 20rem
}


.w100 {
    width: 100%
}


@media (max-width: 800px) {


    .gap4 {
        gap: 2rem
    }

    .gap8 {
        gap: 4rem
    }

    .gap10 {
        gap: 6rem
    }


    .gap20 {
        gap: 10rem
    }
}

/* #endregion */

/* #region BUTTON */
.btnSubmit {
    max-width: 60rem;
    border-radius: .5rem;
    background-color: var(--black);
    color: var(--white);
    padding: 1.5rem 6rem;
    text-align: center;
    transition: all .2s;
    mix-blend-mode: multiply;
    -webkit-mix-blend-mode: multiply;
}

.btnSubmit.light {
    background-color: var(--white);
    color: var(--black);
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
}

.btnNormal {
    max-width: 60rem;
    border-radius: .5rem;
    border: 1px solid var(--black);
    color: var(--black);
    padding: 1.5rem 6rem;
    text-align: center;
    transition: all .2s;
    mix-blend-mode: multiply;
    -webkit-mix-blend-mode: multiply;
}

.btnNormal.light {
    border: 1px solid var(--white);
    color: var(--white);
    mix-blend-mode: screen;

    -webkit-mix-blend-mode: screen;
}


@media (hover:hover) {
    .btnSubmit:hover {
        opacity: .6;
    }

    .btnNormal:hover {
        background-color: var(--black);
        color: var(--white);
    }

    .btnNormal.light:hover {
        background-color: var(--white);
        color: var(--black);
    }


}

@media (max-width: 800px) {
    .btn {
        padding: 2rem;
    }

    .btn svg {
        right: 1rem;
        width: 3rem;
        height: 3rem;
    }

}


/* #endregion */


/* #region LAYOUT */

#content {
    padding: 4rem;
}

#content.hide {
    opacity: 0;
}

#content.show {
    opacity: 1;
}

.full {
    margin: 0 -4rem !important;
}

.col1 {
    width: 8rem;
    flex-shrink: 0;
    margin-right: 2rem;
}

.max-s {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.max-m {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.max-l {
    max-width: 140rem;
    margin-left: auto;
    margin-right: auto;
}

.displaynone {
    display: none !important;
}


.mob-blind {}

.mob-blind-flex {}

.mob {
    display: none !important;
}

.mob-flex {
    display: none !important;
}


@media (max-width: 800px) {

    #content {
        padding: 4rem 2rem;
    }

    .full {
        margin: 0 -2rem !important;
    }


    .col1 {
        width: 7rem;
        margin-right: 1rem;
    }

    .mob-blind {
        display: none !important;
    }

    .mob-blind-flex {
        display: none !important;
    }

    .mob {
        display: flex !important;
    }

    .mob-flex {
        display: flex !important;
    }
}



/* #endregion */


/* #region HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 10;
    transition: margin .3s, background-color .3s;
    right: 0;
}


.scroll-down header {
    margin-top: -6rem;
    color: var(--black);
}


.menu-open.scroll-down header {
    margin-top: 0;
}

.header-fixed header,
.menu-open header {
    background-color: var(--lightgray);
    color: var(--black);
}

header .header-wrap {
    margin: 0rem 4rem;
    padding: 1rem 0;
    display: flex;
    transition: border .3s;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid var(--black);
    align-items: center;
}

.header-fixed .header-wrap {
    border-bottom: 1px solid transparent;
}

.menu-open.header-fixed .header-wrap {
    border-bottom: 1px solid var(--black);
}



header .header-wrap .site-description {
    font-size: 1.2rem;
    line-height: 1.5rem;
    max-width: 20rem;

}

header .header-wrap .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2rem;
    transform: translate(-50%, -50%)
}

header .header-wrap .logo .black,
.header-fixed header .header-wrap .logo .black,
.menu-open header .header-wrap .logo .black {
    fill: var(--black);
}

.header-fixed header .btnMenu svg path,
.menu-open header .btnMenu svg path {
    stroke: var(--black);
}

header .header-wrap .logo .red,
.header-fixed header .header-wrap .logo .red {
    fill: var(--red);
}

header .header-wrap .logo svg {
    height: 100%;
    width: auto;
    display: block;
}

header #menu ul {
    display: flex;
    gap: 1rem;
    align-items: center;
}

header #menu ul a {
	    padding: .3rem .8rem;
    display: inline-block;
    border-radius: .3rem;
    transition: background .2s;
}

header #menu ul .menu-item-162 a {
    background-color: var(--red);
    color: var(--white);
    border-radius: .3rem;
}
@media (hover:hover) {
	header #menu ul a:hover {background-color: var(--midgray); color: var(--black)}
	header #menu ul .menu-item-162 a:hover {background-color: #bc0c00;color: var(--white)}
}


header .btnMenu svg {
    height: 2rem;
    width: auto;
    display: block;
}

header .btnMenu .close {
    display: none;
}

.menu-open .btnMenu .close {
    display: block;
}

.menu-open .btnMenu .open {
    display: none;
}


.btn-bottom-fixed {position: fixed;
    bottom: 4rem;
    right: 4rem; z-index: 5}

.btn-bottom-fixed .btnSubmit {
	    display: block;
	    gap: 1rem;
	    box-shadow: 0px 5px 20px rgba(0, 0, 0, .2);
	    padding: 1.5rem 2.5rem;
	display: flex;
    gap: 1rem;
    align-items: center;
    background: var(--red);
}

.btn-bottom-fixed .btnSubmit svg {    height: 2rem;
    width: auto;}

@media (max-width: 800px) {
	.btn-bottom-fixed {    right: 2rem;}
	.btn-bottom-fixed .btnSubmit {padding: 1rem 2rem;}
}

aside {
    position: fixed;
    top: 6rem;
    margin-left: 100%;
    left: 0;
    display: flex;
    transition: margin .4s;
    right: 0;
    bottom: 0;
    padding: 6rem 2rem;
    background-color: var(--lightgray);
    z-index: 6;
    flex-direction: column;
    justify-content: space-between;
}

.menu-open aside {
    margin-left: 0;
}

aside #menu {
    font-size: 3rem;
}

aside .bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    width: 30rem;
}

aside .bg {
    max-width: 100%;
    display: block;
    position: absolute;
    left: 30%;
    z-index: -1;
    bottom: 0;
}

@media (hover: hover) {}

@media (max-width: 800px) {
    header .header-wrap {
        margin: 0rem 2rem;
        padding: 2rem 0;
    }

    header .header-wrap .logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
}




/* #endregion */


/* #region FOOTER */
footer {
    background-color: var(--black);
    padding: 7rem;
    color: var(--white);
	    z-index: 10;
    position: relative;
}

footer .bottom {
    width: 100%;
    justify-content: space-between;
}

footer .logo {
    height: 2rem;
    width: auto;
}

footer .logo svg {
    height: 100%;
    width: auto;
    display: block;
}

footer .logo svg .black,
footer .logo svg .red {
    fill: var(--white)
}

footer .menu {
    display: flex;
    gap: 2rem;
}

footer .info {
 
}

footer .sns a {
    display: inline-block;
    height: 3rem;
    width: auto;
}

footer .sns a img {
    height: 100%;
    width: auto;
}

@media (max-width:800px) {
    footer {
        padding: 2rem;
    }

    footer .bottom {
        flex-direction: column;
    }

    footer .bottom .left {
        width: 100%;
    }

    footer .bottom .left>* {
        width: calc(100% - 2rem);
    }

    footer .menu {
        gap: 1rem;
        flex-direction: column;
    }

    footer .bottom .right {
        flex-direction: column-reverse;
        width: 100%;
    }

    footer .bottom .right .sns {
        margin-left: calc(50% + 1rem);
        margin-top: 2rem;
    }

    footer .info {
        width: 100%;
    }

    footer .info>* {
        width: calc(50% - 1rem);
    }

    footer .sns a {
        display: inline-block;
        height: 2rem;
        width: auto;
    }
}


/* #endregion */