@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
:root {
    --color-primary: #313552;
    --color-primary-white: #6c6e82;
    --color-second: #B8405E;
    --color-second-white: #bb6178;
    --color-third: #469b9a;
    --color-third-white: #315b5a;
    --color-forth: #eee6ce;
    --color-title: black;
    --color-btn-start: #3797a4;
    --color-btn-start-bg: #d8e9f4;
    --color-btn-start-bd:  #3797a4;
    --space-7: 4rem;
    --space-6: 3.2rem;
    --space-5: 2.5rem;
    --space-4: 1.8rem;
    --space-3: 1.3rem;
    --space-2: 1.0rem;
    --space-1: 0.6rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html,
body {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    color: var(--color-primary);
    background: white;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

ul {
    list-style: none;
}

p {
    margin: 5px 0;
}

ins.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}


/* header */

.header {
    background-color: #596886;
} 

.logo {
    height: 40px;
}

#icon-q{
    height: 35px;
}


.bg {
    margin-left: auto;
    margin-right: auto;
} 

/* tiny slider */
.decr {
    word-break: keep-all;
}

.tns-nav button{
    border: none;
    padding: 0.35rem;
    border-radius: 50%;
    background-color: #596886;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    margin-bottom: 0.8rem;
}

.tns-nav .tns-nav-active{
    background-color: #ffd5af;
}

.tns-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* footer */

.footer {
    background-color: #2C2A29;
    color: #999;
    font-weight: 300;
}

.footer a {
    color: #999;
}




/* reponsive */
@media(min-width: 375px) {
    .text-xl {
        font-size: 26px;
    }
    .text-md {
        font-size: 21px;
    }
    .text-sm {
        font-size: 14px;
    }
}

@media(min-width: 768px) {
    .text-nav {
        font-size: 17px;
    }
    .box {
        display: flex;
        align-items: center;
    }
    .box-a {
        flex-direction: row;
    }
    .box-b {
        flex-direction: row-reverse;
    }
    .col-1 {
        flex: 0 0 auto;
        width: calc(100% * (7/12));
    }
    .col-2 {
        flex: 0 0 auto;
        width: calc(100% * (5/12));
    }
    .box-padding {
        padding: var(--space-1) var(--space-1);
    }
    .navbar-brand img {
        width: 30px;
        height: 30px;
    }
    .navbar-nav-right img {
        height: 25px;
        width: 25px;
    }
}

@media(min-width: 1024px) {
    .text-xl {
        font-size: 36px;
    }
    .text-md {
        font-size: 23px;
    }
    .text-sm {
        font-size: 16px;
    }
    .box {
        max-width: 1024px;
    }
    .col-1 {
        flex: 0 0 auto;
        width: calc(100% * (6/12));
    }
    .col-2 {
        flex: 0 0 auto;
        width: calc(100% * (6/12));
    }
    .footer {
        justify-content: center;
    }
    .footer-inner {
        width: 1024px;
    }
}