@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;
}

section a {
    color: #fff;
}

div {
    display: block;
}


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;
} */

/* index */

#title {
    color: var(--color-title);
    word-break: keep-all;
}

.btn-start {
    transition: 0.25s;
    color: var(--color-btn-start);
    background-color:  var(--color-btn-start-bg); 
    border-color: var(--color-btn-start-bd);
    border-radius: 10px;
    border-width: 0.13rem;
}

.progress-bar {
  background-color: #FFAB76;
}

/* question */

.button1 {
  color: #000000;
  background-color: #F15524;
  border-color: #F15524;
}

.button2 {
  color: #000000;
  background-color: #FF6363;
  border-color: #FF6363;
}

.button3 {
  color: #000000;
  background-color: #FFAB76;
  border-color: #FFAB76;
}

.button4 {
  color: #000000;
  background-color: #FFFDA2;
  border-color: #FFFDA2;
}


.button5 {
  color: #000000;
  background-color: #BAFFB4;
  border-color: #BAFFB4;
}


/* bar score graph */


#label-container {
    width: 80%;
    margin: 0 auto;
}

.bar-container {
    height: 2.7rem;
  }

.type-label {
    width: 30%;
    text-align: left;
    height: 2rem;
}


.anxi-box {
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    border-radius: 10px;
    width: 100%;
    background-color: rgba(27, 175, 234, 0.2);
  }

  .anxi-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    border-radius: 10px;
    background-color: rgba(27, 175, 234, 1);
  }

  .secure-box {
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    border-radius: 10px;
    width: 100%;
    background-color: rgba(251, 176, 59, 0.2);
  }

  .secure-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    border-radius: 10px;
    background-color: rgba(251, 176, 59, 1);
  }

  .avoid-box {
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    border-radius: 10px;
    width: 100%;
    background-color: rgba(195, 140, 102, 0.2);
  }

  .avoid-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    border-radius: 10px;
    background-color: rgba(195, 140, 102, 1);
  }
  

/* 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;
    }
}