@charset "UTF-8";
@import url(reset-min.css);

/* common */
html {
  scroll-behavior: smooth;
}


strong {
  font-weight: 700;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear:after {
  content: "";
  display: block;
  clear: both;
}
img {
  width: 100%;
}
.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  color: transparent;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0 0, 0 0, 0 0);
}
.radioBtn input,
.checkBox input {
  display: none;
}
input,
button {
  letter-spacing: inherit;
  font-size: inherit;
}

/* font style */
/* font-weight */
.fw-300 {
  font-weight: 300 !important;
} /* light */
.fw-350 {
  font-weight: 350 !important;
} /* demilight */
.fw-500 {
  font-weight: 500 !important;
} /* medium */
.fw-600 {
  font-weight: 600 !important;
} /* semibold */
.fw-700 {
  font-weight: 700 !important;
} /* bold */
.fw-900 {
  font-weight: 900 !important;
} /* black */

/*  background-color */
.bc-red {
  background-color: #FF5151 !important;
}
.bc-yellow {
  background-color: #FFC327 !important;
}
.bc-pupple {
  background-color: #B300D0 !important;
}
.bc-blue {
  background-color: #741FFF !important;
}
.bc-orange {
  background-color: #FF4713 !important;
}

/* text-align */
.txt-left {
  text-align: left !important;
}
.txt-center {
  text-align: center !important;
}
.txt-right {
  text-align: right !important;
}
.txt-just {
  text-align: justify !important;
}

/* text-deco */
.underline {
  text-decoration: underline;
}

/* line */
.hr_line {
  width: 100%;
  height: 1px;
  margin: 4.6875vw 0;
  background-color: #e2e2e2;
  border: 0;
}

/* description */
.desc,
.desc > * {
  display: inline-block;
}




/* title */
.tit {
  font-family: "Panton";
  font-weight: 700;
  font-size: 7.5rem;
  color: #fff;
}

.tit,
.tit > * {
  font-weight: 700;
}

.txt_visual {
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: -22vh;
}


/* button */
.butn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 3em;
  color: #fff;
  vertical-align: middle;
  width: 15.625rem;
  height: 3.75rem;
}

.butn img {
  height: 1.875rem;
}

.butn:not(.noTxt):not(.round) {
  min-width: 36vw;
}
.butn.round {
  padding: 0.6667em;
  border-radius: 1vw;
}

.butn.noTxt {
  position: relative;
  width: 7.5vw;
  height: 7.5vw;
  padding: 0;
  border-radius: 7.5vw;
  color: transparent;
}
.butn.noTxt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate(-50%, -50%);
}
.butn.insta::before {
  width: 3.44vw;
  height: 3.44vw;
  background-image: url(../images/ico_insta.webp);
}
.butn.share::before {
  width: 3.75vw;
  height: 4.065vw;
  background-image: url(../images/ico_share.svg);
  background-position: center cente;
}
.butn.insta:not(.noTxt) {
  background: #833ab4; /* fallback for old browsers */
  background: -webkit-linear-gradient(130deg, #833ab4 15%, #fd1d1d 55%, #fcb045 100%); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    130deg,
    #833ab4 15%,
    #fd1d1d 55%,
    #fcb045 100%
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 2 6+, Opera 12+, Safari 7+ */
  font-weight: 900;
}
.butn.insta:not(.noTxt)::before {
  content: "";
  width: 5vw;
  height: 5vw;
  margin-right: 2.1875vw;
  background-image: url(../images/ico_insta_big.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.wrap_butn {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 4;
}


/* layout */
.wrap {
  position: relative;
  font-size: 4.0625vw;
  line-height: 1.46;
  letter-spacing: -0.02em;
  word-break: keep-all;
  box-sizing: border-box;
  overflow: hidden;
  color: #fff;
} /* 가로화면 width가 320px 기준 font-size 13px */

/* popup, alert */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
}
.popup .popup_layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 8.75vw);
  height: calc(100% - 9.062vw);
  max-height: 1000px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  font-weight: 300;
  font-size: 3.4375vw;
  line-height: 1.727275;
  color: #333;
  box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, 0.15);
  letter-spacing: -0.25px;
  word-break: keep-all;
}
.popup .pop_head {
  padding: 1.7187vw 11vw 1.7187vw 4.6875vw;
  border-bottom: 1px solid #e2e2e2;
}
.popup .pop_head .pop_tit {
  font-weight: 700;
  font-size: 1.09091em;
  line-height: 2;
  color: inherit;
}
.popup .pop_foot {
  padding: 6.25vw;
  text-align: center;
}
.popup .pop_cont {
  height: calc(100% - 32.97vw);
  padding: 3.4375vw 4.6875vw;
  font-size: 1em;
  color: inherit;
  overflow-x: hidden;
  overflow-y: auto;
}
.popup .pop_cont .pop_cont_tit {
  font-weight: 500;
}
.popup .pop_cont * + .pop_cont_tit {
  margin-top: 1.45454em;
}
.popup .butn {
  min-width: 25vw !important;
  line-height: 1.16667;
  font-size: 1.09091em;
}
.popup .pop_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 11vw;
  height: 11vw;
  border: 0;
  background-color: transparent;
}
.popup .pop_close::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  display: block;
  width: 28.43%;
  height: 28.43%;
  background: transparent url(../images/butn_pop_close.webp) no-repeat center;
  background-size: cover;
  transform: translate(50%, -50%);
  cursor: pointer;
}

.alert .popup_layer {
  width: 65.626vw;
  height: auto;
}
.alert .pop_cont {
  display: grid;
  align-content: center;
  height: auto;
  min-height: 19.124vw;
  margin-top: 3.125vw;
  padding: 0 3.125vw 3.125vw;
  line-height: 1.461535;
  font-size: 1.18182em;
  text-align: center;
  font-weight: 350;
}
.alert .pop_cont > * {
  font-weight: inherit;
}
.alert .pop_foot {
  padding: 0 4.6875vw 4.6875vw;
}
.alert .butn {
  min-width: 22vw !important;
}

/* logo */
.logo {
  width: 35.939vw;
  height: 7.188vw;
  background: url(../images/logo_w.svg) no-repeat center;
  background-size: contain;
  color: transparent;
}
.logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.logo.white {
  background-image: url(../images/logo_w.svg);
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  background-color: rgb(255 255 255 / 10%);
  transform: translateX(-50%);
  z-index: 100;
}
.header .wrap_inner {
  display: grid;
  padding: 3.4375vw 4.6875vw 0;
}
.header .logo {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.header .wrap_sns {
  grid-row: 1 / 2;
  line-height: 0;
  text-align: right;
}
.header .wrap_sns * + * {
  margin-left: 2.2vw;
}
.gnb {
  grid-column: 1 / 4;
  grid-row: 2 / 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.4375vw;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #e1ddd5;
  text-align: center;
}
.gnb a {
  display: inline-block;
  line-height: 3.625;
  font-weight: 700;
  font-size: 0.92308em;
  border-bottom: 3px solid transparent;
  color: #333;
}
.gnb .on a {
  border-color: #ff4713;
  color: #ff4713;
}

/* footer */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-size: 0.846155em;
  z-index: 99;
  position: relative;
}
.footer .wrap_inner {
  padding: 9.375vw 4.6875vw 25vw;
}
.footer .logo {
  display: inline-block;
}
.footer dl > * {
  display: inline-block;
}
.footer .footer_menu {
  display: inline-flex;
  margin: 4.6875vw 0 3.125vw;
}
.footer .footer_menu li:not(:first-child) {
  margin-left: 0.5em;
}
.footer .footer_menu a {
  font-size: 1.090909em;
  font-weight: 500;
}

.copyright {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.70);
}

/* top, fix menu */
.btn_pageTop {
  position: fixed;
  right: 4.6875vw;
  bottom: 17.1875vw;
  display: none;
  width: 8.75vw;
  height: 8.75vw;
  background: url(../images/butn_top.svg) no-repeat center;
  background-size: cover;
  z-index: 100;
}
.btn_pageTop.fix {
  display: block;
}

.fixed_link a:first-child {
  background-color: #1f1646;
}

/* content */
.content > section:nth-child(odd) {
  background-color: #000;
}
.content > section:nth-child(even) {
  background-color: #000;
}
.content .wrap_inner {
  /* padding: 25.3125vw 4.6875vw 8.125vw; */
  height: 100%;
}
.content .wrap_visual .wrap_inner {
  /* padding-top: 40vw; */
  text-align: center;
}
.content .introduce .wrap_inner {
  padding-top: 32.5vw;
  padding-bottom: 19vw;
  text-align: center;
}
.content .wrap_visual,
.content .introduce {
  overflow: hidden;
  height: 100vh;
}
.content .txt_bg_logo {
  margin-bottom: 4.0625vw;
}
.content * + .txt_bg_logo {
  margin-top: 6.875vw;
}
.content .txt_bg_logo::before {
  content: "WE\00a0LOVE\00a0 DOGS";
  position: absolute;
  top: 30vh;
  left: 50%;
  display: inline-block;
  z-index: 2;
  transform: translate(-50%, 1vw);
  line-height: 1;
  font-family: "Panton";
  font-size: 14vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  /* text-shadow: -1px 0 #FFA1A1, 0 1px #FFA1A1, 1px 0 #FFA1A1, 0 -1px #FFA1A1; */

}

.pc_row {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.bg-main {
  width: 100%;
}

.bg-1 {
  width: 30vw;
  position: absolute;
  top: -7%;
  right: -10px;
  z-index: 1;
}

.bg-2 {
  width: 50%;
  position: absolute;
  top: 17%;
  left: -15%;
  z-index: 1;
}


.bg-main img  {
  width: 100%;
}

.bg-3 {
  width: 40%;
  position: absolute;
  top: 54%;
  right: -10%;
  z-index: 1;
}



/* visual */
.wrap_visual .txt_bg_logo {
  margin-bottom: 2.9688vw;
}
.wrap_visual .visual {
  margin-top: 7vw;
}

.crown {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-crown {
  width: 25VW;
}

.main-crown img {
  animation-name: crown;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  transition-timing-function: linear;
}


@keyframes crown {
  from {
      transform: translateY(5px);
  }
  25% {
      transform: translateY(-7px);
  }
  50% {
      transform: translateY(5px);
  }
  75% {
      transform: translateY(-7px);
  }
  to {
      transform: translateY(5px);
  }
}


.celdog {
  position: relative;
  height: 100%;
}

.celdog_inner {
  padding: 12.125rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  
}

.celdog_tit {
  font-family: NanumSquareNeo;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.5px;
  z-index: 3;
}

.swiper-container {
  width: 100%;
  height: 100%;
}



.celdog_list {
  display: flex;
  align-items: center;
  /* gap: 1.875rem; */
}

.celdog_card {
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.20);
  display: flex !important;
  padding: 1.875rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  z-index: 3;
  width: 21.375rem;
}

.celdog_img {
  border-radius: 20px;
  width: 100%;
  display: flex;
}

.celdog_profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8;
}

.celdog_name {
  color: var(--white, #FFF);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
}

.celdog_id {
  color: var(--white, #FFF);
  font-size: 1rem;
  font-weight: 400;
}


.with-us {
  position: relative;
  height: 100%;
}

.bg-4 {
  width: 50%;
  position: absolute;
  top: 50%;
  left: -24%;
  z-index: 1;
}

.with-us_inner {
  padding: 7.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.25rem;
  
}


.with-us_inner .app_screen {
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.20);
  display: flex !important;
  padding: .625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  z-index: 1;
  width: 16.5rem;
  margin-bottom: 1.5rem;
}

.app_screen img {
  width: 100%;
}


.with-us_tit {
  color: #fff;
}


.with-us_tit h2 {
  font-family: NanumSquare Neo OTF;
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.with-us_txt {
  font-family: NanumSquare Neo OTF;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: -0.5px;
}

.with-us_img {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.celi {
  width: 15rem;
  height: 15rem;
}

.celi img {
  width: 100%;
}

/* 반응형 common */
.br {
  display: inline;
}
.br_mo {
  display: inline-block;
}
.mo_only,
.slick-slide img.mo_only {
  display: block;
}
.pc_only,
.slick-slide img.pc_only {
  display: none;
}
@media (min-width: 1020px) {
  .wrap_slide {
    display: none;
  }
  .br {
    display: block;
  }
  .br_mo {
    display: inline;
  }
  .mo_only,
  .slick-slide img.mo_only {
    display: none;
  }
  .pc_only,
  .slick-slide img.pc_only {
    display: block;
  }

  
}

@media (max-width: 1019px) {

  .header .wrap_inner {
    padding: 1.5rem;
  }

  .content .txt_bg_logo::before {
    position: absolute;
    top: 32vh;
    left: 50%;
  }

  .crown {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.main-crown {
  width: 60vw;
}
  
.txt_visual {
  margin-top: -15vh;
}


.tit {
  font-family: "Panton";
  font-weight: 700;
  font-size: 3.375rem;
  color: #fff;
  z-index: 3;
}



.bg-1 {
  width: 60%;
  position: absolute;
  top: -5%;
  right: -10px;
  z-index: 1;
}

.bg-2 {
  width: 100%;
  position: absolute;
  top: 55vh;
  left: -46%;
  z-index: 1;
}

.bg-3 {
  width: 80%;
  position: absolute;
  top: 30%;
  right: -30%;
  z-index: 1;
}


.bg-4 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: -34%;
  z-index: 1;
}




.celdog_tit {
  font-size: 2rem;
}

.swiper-container{
  padding: 1.5rem;
}




.with-us_inner {
  padding: 10rem 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  
}

.with-us_tit {
  color: #fff;
}

.with-us_tit h2 {
  font-family: NanumSquare Neo OTF;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.with-us_txt {
  font-family: NanumSquare Neo OTF;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.5px;
}

.with-us_img {
  display: flex;
  align-items: flex-end;
  z-index: 3;
}

.celi {
  /* width: 50vw;
  height: 50vw; */
  margin: 0 auto;
}

.celi img {
  width: 100%;
  height: 100%;
}




.footer .wrap_inner {
  padding: 9.375vw 4.6875vw ;
}

.footer .footer_menu {
  flex-direction: column;
  gap: .875rem;
  margin: 4.6875vw 0 5.5vw;
}



.footer .footer_menu a,
.wrap_com_info,
.footer p {
  font-family: NanumSquareNeo;
  font-size: .875rem;
  line-height: 1.5rem;
}

.footer .footer_menu li:not(:first-child) {
  margin-left: 0;
}

.copyright {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.70);
}

  .wrap_slide {
    margin-top: 1rem;
    width: 100%;
    height: auto;
    box-sizing:border-box;
  }

  .slideshow-container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .screen-con {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }

  .screen-text {
    width: 70vw;
    padding: 14px 0;
  }


  .mySlides{
    display: none;
  }

  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #D5D8E1;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

.active, .dot:hover {
  background-color: #ff4713;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
}

@media (min-width: 1020px) {
  .wrap {
    font-size: 1.23288vw;
    line-height: 1.5555;
    letter-spacing: -0.25px;
  } /* 가로 1460px 기준 font-size 18px; */

  .wrap_inner {
    width: calc(100% - 120px);
    margin: 0 60px;
  }
  .logo {
    width: 13.494vw;
    height: 2.672vw;
  }

  /* text style */
  .txt_goods .wrap_img {
    width: 4.445em;
  }

  /* line */
  .hr_line {
    margin: 27px 0;
  }

  /* title */
  .tit {
    font-size: 7.5rem;
    color: #fff;
  }
  .tit.type2 {
    line-height: 1.33334;
    font-size: 2.33333em;
  }
  .tit.type3 {
    line-height: 1.5;
    font-size: 2em;
  }
  .tit,
  .tit > * {
    font-weight: 700;
  }

  /* button */
  .butn + .butn {
    margin-left: 0.6em;
  }
  .butn {
    padding: 1em 1.5em;
    line-height: 1;
    font-size: 1.11111em;
    border-radius: 3em;
  }
  .butn.round {
    padding: 1em;
    border-radius: 0.5em;
  }
  .butn.noTxt {
    width: 2em;
    height: 2em;
    border-radius: 2em;
  }
  .butn.insta::before {
    width: 1.1em;
    height: 1.1em;
  }
  .butn.share::before {
    width: 1.2em;
    height: 1.3em;
  }
  .butn:not(.noTxt):not(.round) {
    min-width: 10em;
  }
  .butn.insta:not(.noTxt)::before {
    width: 1.6em;
    height: 1.6em;
    margin-right: 0.5em;
  }



  /* popup, alert */
  .popup .popup_layer {
    width: 720px;
    height: calc(100% - 50px);
    max-height: 810px;
    background-color: #fff;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 1.75;
  }
  .popup .pop_head {
    padding: 11px 70px 11px 30px;
    border-bottom: 1px solid #e2e2e2;
  }
  .popup .pop_head .pop_tit {
    font-size: 1.5em;
    line-height: 2;
    color: inherit;
  }
  .popup .pop_foot {
    padding: 30px;
  }
  .popup .pop_cont {
    height: calc(100% - 177px);
    padding: 24px 30px;
  }
  .popup .pop_cont .pop_cont_tit {
    font-weight: 500;
  }
  .popup .pop_cont * + .pop_cont_tit {
    margin-top: 7px;
  }
  .popup .butn {
    min-width: 120px !important;
    padding: 14px;
    line-height: 1;
    font-size: 1.125em;
    cursor: pointer;
  }
  .popup .pop_close {
    width: 70px;
    height: 70px;
  }
  .popup .pop_close::before {
    width: 20px;
    height: 20px;
  }

  .alert .popup_layer {
    width: 280px;
    height: auto;
  }
  .alert .pop_cont {
    min-height: 74px;
    margin-top: 10px;
    padding: 0 20px 10px;
    line-height: 1.5;
    font-size: 1em;
  }
  .alert .pop_foot {
    padding: 0 20px 20px;
  }
  .alert .butn {
    min-width: 80px !important;
    padding: 10px 14px;
    font-size: 1em;
  }

  /* header */
  .header .wrap_inner {
    padding: 1.5rem 0;
  }
  .header .logo {
    grid-column: 1 / 1;
    grid-row: none;
  }
  .header .wrap_sns {
    grid-row: none;
  }
  .header .wrap_sns * + * {
    margin-left: 16px;
  }
  .gnb {
    margin-top: 0;
    border: 0;
    grid-row: none;
    grid-column: none;
  }
  .gnb a {
    line-height: 2;
    font-size: 1.11111em;
    border-bottom: 2px solid transparent;
  }

  /* footer */
  .footer {
    text-align: left;
    font-size: 0.888888em;
    line-height: 2;
  }
  .footer .pc_row {
    padding: 31px 0 28px;
    align-items: flex-start;
    gap: 10px;
  }

  .footer .footer_menu {
    margin: 0;
  }
  .footer .footer_menu li:not(:first-child) {
    margin-left: 19px;
  }
  .footer .footer_menu a {
    display: block;
    font-size: inherit;
    line-height: 2;
  }
  .footer .wrap_com_info > * {
    display: inline-block;
    margin-right: 11px;
  }
  .btn_pageTop {
    width: 2.83333em;
    height: 2.83333em;
    bottom: 1.66666em;
    right: 1.66666em;
  }

  /* content */

  .content * + .txt_bg_logo {
    margin-top: -7.1233vw;
  }
  .content .txt_bg_logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    z-index: 2;
  }
  .content .txt_bg_logo::before {
    font-size: 14vw;
    
  }

  .crown {
    z-index: 3;
  }
  .main-crown {
    width: 36VW;
}

  .content .wrap_visual .wrap_inner,
  .wrap_visual .wrap_butn {
    text-align: left;
  }
  .wrap_visual .pc_row {
    position: relative;
  }
  .wrap_visual .pc_row .col + .col {
    margin-left: 1.55555em;
  }
  .wrap_visual .visual {
    margin-top: 0;
  }

  .wrap_visual .txt_visual p.pc_only {
    margin: 15px 0 35px;
  }



}

@media (min-width: 1366px) and (max-width: 1520px) {
  


}

@media (min-width: 1521px) {
  .wrap {
    font-size: 18px;
  }
  .wrap_inner {
    width: 1400px;
    margin: 0 auto;
  }
  .logo {
    width: 197px;
    height: 39px;
  }

  .main-crown {
    width: 25VW;
}

}

@media (min-width: 1920px) {
  .content .txt_bg_logo::before {
    font-size: 17.5rem;
  }
}


@media (max-width: 575px) {
  .wrap_visual .pc_row {
    margin-top: 8vh;
}

  .txt_visual {
    margin-top: -12vh;
    gap: 8vh;
}
.with-us_inner {
  padding: 5rem 1.5rem 0 1.5rem;
  gap: 3rem;
}

.with-us_inner .app_screen {
  width: 11.25rem;
  margin-bottom: 1.5rem;
}

.celi {
  width: 10rem;
  height: 10rem;
}

.with-us_img {
  gap:0
}

}



/* 가로모드 모바일 디바이스 (가로 해상도가 576px보다 크고 768px 보다 작은 화면에 적용)  */
@media (min-width: 576px) and (max-width: 767px) {

  
  }

  
  /*태블릿 디바이스 (가로 해상도가 768px보다 크고 991px 보다 작은 화면에 적용)  */
  @media (min-width: 768px) and (max-width: 991px) {

  .crown {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .tit {
    font-family: "Panton";
    font-weight: 700;
    font-size: 5.5rem;
    color: #fff;
    z-index: 3;
  }

  .celdog_tit {
    font-size: 3rem;
}

    .celdog_card {
      border-radius: 1.5rem;
      display: flex !important;
      padding: 20px;
      gap: 1.25rem;
      z-index: 3;
      width: 21.375rem;
    }
    
    .celdog_img {
      border-radius: 1.15rem;
      width: 100%;
      display: flex;
    }
    .celdog_img img{
      border-radius: 1.15rem;
    }
    
    .celdog_profile {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8;
    }
    
    .celdog_name {
      color: var(--white, #FFF);
      font-size: 1.125rem;
      font-style: normal;
      font-weight: 700;
    }
    
    .celdog_id {
      color: var(--white, #FFF);
      font-size: .875rem;
      font-weight: 300;
    }
    
    
.with-us_inner {
  padding: 30vh 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8vh;
  
}

.with-us_tit {
  color: #fff;
}

.with-us_tit h2 {
  font-family: NanumSquare Neo OTF;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.with-us_txt {
  font-family: NanumSquare Neo OTF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.5px;
}



.footer .footer_menu {
  flex-direction: column;
  gap: 0.875rem;
  margin: 4vw 0 5.5vw;
}



  }
  
  
  /* 데스크탑 (가로 해상도가 992px보다 크고 1199px 보다 작은 화면에 적용)  */
  @media (min-width: 992px) and (max-width: 1199px)  {


    .wrap_visual .pc_row {
      position: relative;
  }

  .crown {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .main-crown {
    width: 36vh;
  }

  .tit {
    font-family: "Panton";
    font-weight: 700;
    font-size: 5.5rem;
    color: #fff;
    z-index: 3;
  }

  .bg-1 {
    width: 50vw;
    position: absolute;
    top: -5%;
    right: -10px;
    z-index: 1;
  }
  
  .bg-2 {
    width: 100%;
    position: absolute;
    top: 55vh;
    left: -46%;
    z-index: 1;
  }
  
  .bg-3 {
    width: 80%;
    position: absolute;
    top: 30%;
    right: -30%;
    z-index: 1;
  }
  
  
  .bg-4 {
    width: 100%;
    position: absolute;
    top: 50%;
    left: -34%;
    z-index: 1;
  }


  .txt_visual {
    margin-top: -12vh;
}

.txt_visual {
  gap: 2rem;
}

    .celdog_card {
      border-radius: 1.5rem;
      padding: 20px;
      gap: 1.25rem;
      z-index: 3;
    }
    
    .celdog_img {
      border-radius: 1.15rem;
      width: 100%;
      display: flex;
    }
    .celdog_img img{
      border-radius: 1.15rem;
    }
    
    .celdog_profile {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8;
    }
    
    .celdog_name {
      color: var(--white, #FFF);
      font-size: 1.125rem;
      font-style: normal;
      font-weight: 700;
    }
    
    .celdog_id {
      color: var(--white, #FFF);
      font-size: .75rem;
      font-weight: 300;
    }

    .with-us_img {
      z-index: 3;
    }
    
  }
  
  @media (min-width: 1200px) and (max-width: 1340px) {
    

    .celdog_card {
      border-radius: 1.5rem;
      padding: 20px;
      gap: 1.25rem;
      z-index: 3;
    }

  }

  
  /* 큰화면 데스크탑 (가로 해상도가 1200px 보다 큰 화면에 적용)  */
  @media (min-width: 1200px) {

    
  }