@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
@font-face {
  font-family: 'Gmarket Sans TTF';
  src: url("../img/fonts/GmarketSansTTFMedium.ttf");
}
:root {
  --font-family: Helvetica,
  '¸¼Àº °íµñ', 'malgun gothic',
  'Apple SD Gothic Neo', 'Apple SD »êµ¹°íµñ Neo',
  'Microsoft NeoGothic',
  'Droid sans', sans-serif;
}
* {padding: 0; margin: 0;max-width: 100%; box-sizing: border-box; font-family: 'Noto Sans KR', var(--font-family);}
a { text-decoration: none; color: #666;font-size: 1.5rem;font-weight: 700;}
ul {list-style-type: none;width: 73.75rem;margin: 0 auto;}
header {
  width:100%; height: 5rem;
  border-bottom: 1px solid #ccc;
}
main{
  width: 100%;
  height: 40rem;
  background: url(../img/background.png) no-repeat 50%/cover;
}

.box {
  padding: 3rem 0;
}
.content_title {
  width: 73.75rem;
  padding: 0 1.25rem 3rem;
  margin: 0 auto;
  color: #333;
  font-family: 'Gmarket Sans TTF', var(--font-family);
  font-size: 3rem;
  font-weight: 700;
}

.content_service {
  background-color: #eee;
}
.content_service ul{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 2rem 1rem;
  justify-content: space-around;
}
.content_service ul li {
  padding: 40px 30px;
  height: 23rem;
  color: #666;
  background-color: #fff;
}
li .title{
  font-size: 1.4rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.88rem;
  text-align: center;
}
li .content{
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem; /* 133.333% */
  padding: 0.625rem;
  text-align: justify;
}
.content_partners ul{
  justify-content: flex-start;
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 220px));
}

footer{
  padding: 3.3rem 1.25rem;
  width: 73.75rem;
  margin: 0 auto;
}
.inner_warp {
  width: 73.75rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-right: 10px;
  align-items: center;
  position: relative;
}
.menu_wrap {
  display: flex;
  width: 36.25rem;
  padding: 1.875rem 0rem 1.25rem 0rem;
  justify-content: space-between;
  align-items: flex-start;
}
.menu_wrap_m {
  display: none;
}
.menu_wrap_m img{
  height: 60px;
}

.main_text{
  color: #FFF;
  font-family:   'Gmarket Sans TTF', var(--font-family);
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  margin: 0 auto;
  width: 63rem;
  max-width: 95%;
  text-align: center;
  gap: 0.625rem;
  padding-top: 9rem;
}

.contact_text {
  width: 73rem;
  margin: 0 auto;
  color: #000;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact_text img{
  vertical-align: middle;
  padding-right: 10px;
}

@media screen and (max-width: 1180px) {
  .content_service ul{ padding: 0 1rem 2rem;}
  .contact_text{ padding: 0 1rem 2rem;}
  .content_partners ul{ justify-content: space-around}
}

@media screen and (max-width: 540px){
  .main_text {font-size: 2rem;}
  .content_title {font-size: 2.5rem; padding: 0 1.25rem 3rem;}
  .menu_wrap {display: none}
  .menu_wrap_m{display: block}
  #menu_m {
    display: none;
    flex-flow: column;
    gap: 0.5rem;
    position: absolute;
    align-items: center;
    right: 0;
    width: 140px;
    top: 55px;
    padding: 25px 0;
    background-color: #fff;
  }
}