
/* 폰트 */
@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');

:root{
  --primary-color : #ffb87d;
  --second-color : #182244;
  --third-color : #ffffff;
  --fourth-color : #949494;
}

.shadows-into-light-regular {
  font-family: "Shadows Into Light", cursive;
  font-weight: 100;
  font-style: normal;
}
/* font-family: "Montserrat", sans-serif;  */

body{
  padding-top: 56px;
  font-family: 'NanumSquare';
}

.navbar-brand{
  color: var(--second-color);
}
.navbar-brand img{
  width: 30px;
  height: 12px;
  padding-right: 5px;
}
a {
 font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.navbar-toggler{
  border: none;
}
.navbar-toggler:focus{
  border: none;
  box-shadow: none;
}
.nav-link.active{
  color: #ffb87d !important;
}
.nav-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.5s ease;
}
.nav-link:hover {
  border-bottom: 2px solid #ffb87d;
}
.nav-link.active {
  color: #ffb87d !important;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #ffb77d33;
}
/* footer */
.sns-icons{
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.sns-icons img{
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.footer-text{
  color: #8b8a8a;
  font-size: 10px;
  text-align: center;
}