@charset "UTF-8";
@import url("../fonts/fonts.css");
@import url("./reset.css");
/* 인풋스타일*/
input::-moz-placeholder {
  font-size: inherit;
}
input::placeholder {
  font-size: inherit;
}

:root {
  --sec-tit: 4rem;
  --sub-tit: 3rem;
  --com-f: 2rem;
  --sub-txt: 1.6rem;
  --lg-f:2.4rem;
  --md-f: 1.8rem;
  --sm-f: 1.4rem;
}

@media all and (max-width: 85.375rem) {
  :root {
    --com-f: 1.8rem;
    --sec-tit: 3.2rem;
    --sub-tit: 2.8rem;
    --lg-f:2.0rem;
    --md-f: 1.6rem;
  }
}
@media all and (max-width: 64rem) {
  :root {
    --sec-tit: 2.8rem;
    --sub-tit: 2rem;
    --com-f: 1.6rem;
    --lg-f:1.8rem;
    --md-f: 1.5rem;
  }
}
@media all and (max-width: 63.9375rem) {
  :root {
    --sec-tit: 2.6rem;
    --com-f: 1.5rem;
    --sec-tit: 2.8rem;
    --lg-f:1.6rem;
    --sub-txt: 1.4rem;
  }
}
@media all and (max-width: 47.9375rem) {
  :root {
    --sec-tit: 2.2rem;
    --sub-tit: 1.8rem;
    --md-f: 1.4rem;
    --sm-f: 1.2rem;
  }
}
body {
  font-size: var(--com-f);
  font-weight: 500;
  font-family: "SUIT", sans-serif;
  color: #333;
  line-height: 1;
  word-break: keep-all;
}

/* visible*/
.d-none {
  display: none !important;
}

.hidden {
  overflow: hidden !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 1px !important;
}

/* 정렬 */
.flex-bt {
  display: flex;
  justify-content: space-between;
}
.flex-start {
  display: flex;
  justify-content: flex-start;
}
.flex-end {
  display: flex;
  justify-content: flex-end;
}

.txt-center {
  text-align: center !important;
}
.txt-left {
  text-align: left !important;
}
.txtright {
  text-align: right !important;
}

.br {
  display: block;
}

.flex-1 {
  flex: 1 1 0 !important;
}

/* 폰트 */
.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fc-point {
  color: #1376C6 !important;
}

.fc-white {
  color: #fff !important;
}

.fc-black {
  color: #000;
}

/* 보더 */
.border-t-0 {
  border-top: 0 none !important;
}

.border-b-0 {
  border-bottom: 0 none !important;
}

/* 셀렉트*/
select {
  width: 100%;
  height: 100%;
  border: 0 none;
}

/* 버튼 */
.btn {
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.fi {
  display: inline-block;
  position: relative;
}

/*배경색*/
.wh-bg {
  background-color: #F3F8FC !important;
}

/* 패딩 */
.pb-0 {
  padding-bottom: 0 !important;
}

/* 마진 */
.mb-0 {
  margin-bottom: 0 !important;
}

.figure {
  font-size: 0;
}
.figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}