@import url("normalize.css");
@import url("reset.css");
/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Raleway:wght@500;600;800&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Noto+Sans:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap");
@font-face {
  font-family: 'GmarketSans';
  font-weight: 300;
  font-style: normal;
  src: url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.eot');
  src: url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.eot?#iefix') format('embedded-opentype'),
    url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.woff2') format('woff2'),
    url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansLight.ttf') format("truetype");
  font-display: swap;
}

@font-face {
  font-family: 'GmarketSans';
  font-weight: 500;
  font-style: normal;
  src: url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.eot');
  src: url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.eot?#iefix') format('embedded-opentype'),
    url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.woff2') format('woff2'),
    url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansMedium.ttf') format("truetype");
  font-display: swap;
}

@font-face {
  font-family: 'GmarketSans';
  font-weight: 700;
  font-style: normal;
  src: url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.eot');
  src: url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.eot?#iefix') format('embedded-opentype'),
    url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.woff2') format('woff2'),
    url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.woff') format('woff'),
    url('https://cdn.jsdelivr.net/gh/webfontworld/gmarket/GmarketSansBold.ttf') format("truetype");
  font-display: swap;
}


:root {
  --main_color: #333333;
  --sub_color: #999999;
  --white_color: white;
  --highlight_color: #045CAB;
  --sub_highlight_color: #EDF3FB;
}

/* ----------------- 레이아웃 ---------------- */
.container{
  max-width: 1140px; 
  width: 100%;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.content{
  margin: 81px 0;
  /* text-align: center; */
}
/* section:first-of-type{
  margin:162px 0;
} */
section:last-child{
  margin:0;
}

.d-flex {
  display: flex;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.flex_dc {
  flex-direction: column;
}
.tc{
text-align: center;
}

.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}

/* ----------------- 폰트 위계 ---------------- */
/* 
font-family: 'Noto Sans', sans-serif;
font-family: 'Noto Sans KR', sans-serif;
font-family: 'Roboto', sans-serif;
*/
body {
  font-family: 'GmarketSans';
  color: #333;
  font-weight: 700;
}

.eu {
  font-family: "Roboto", sans-serif;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.bold {
  font-weight: 700;
}

.f4 {
  font-weight: 400;
}

.f5 {
  font-weight: 500;
}

.f6 {
  font-weight: 600;
}

.ttu {
  text-transform: uppercase;
}

/*h1,
h2,
h3,
h4,
h5,
h6 {
   line-height: 1; 
  letter-spacing: -0.01em;  1000 = 1em, 100 = 0.1em, 10 = 0.01
}*/
.main_tt {
  font-size: 62px;
  line-height: 90px;
  margin-bottom: 54px;
}

.sub_tt {
  font-size: 34px;
  line-height: 48px;
  margin-bottom: 54px;
  color: var(--highlight_color);
}

.desc_tt {
  font-size: 24px;
  line-height: 44px;
}


/* ---------------- Header -------------- */
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 10.5px 0;
  z-index: 999;
  background: transparent;
  box-shadow: 0px 5px 5px 0px rgb(153 153 153 / 20%);
  /* transition: 0.5s; */
}

header.fixed {
  padding: 5px 0 3px;
  /* padding: 10px 0 0; */
  background: #fff;
}

.logo a {
  display: inline-block;
  color: var(--main_color);
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  font-size: 32px
}

header span a {
  margin-left: 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
}

header .fa-phone {
  font-size: 20px;
}
footer{
  border-top: 1px solid #0001;
  padding-top: 81px;
}
.footer{
  width: 1140px;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  gap: 15px;
  margin: 0 auto;
  color: #555555;
}
.footer a{
  color: #555555;
}
.footer .info{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
} 
.footer-wrap{
  margin-top: 0;
}
