@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);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

ul {
    list-style: none;
}

p {
    margin: 5px 0;
}

ins.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}

.bg {
    margin-left: auto;
    margin-right: auto;
    background-image: white; /* radial-gradient(circle, #f4d98f, #fccb9c, #f7c1ab, #e6bcb8, #d0b9bd); */
} 

#icon-link {
    width: 28px;
    /* background: white; */
}

#icon-link-sm {
    width: 28px;
    /* background: white; */
}

.card {
    margin-bottom: 14px;
}

.card-user {
    /* background: #F8EBE7; */
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border: 0px;
    transition: transform .2s;
    background: white;
    border-radius: 5px;
}

.card-user:hover {
  transform: scale(1.05);
}

.card-img {
    max-height: 60px;
    object-fit: cover;
    vertical-align: middle;
    border: 0px;
}

/* 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;
    }
}