:root {
  --swiper-navigation-color: white;
  --swiper-pagination-color: white;
}

.nav-box{
  position: fixed;  /* 메뉴바를 고정으로 설정 */
  top: 0;  /* 상단에 위치 */
  left: 0;  /* 왼쪽에 위치 */
  right: 0;  /* 오른쪽에 위치 */
  background-color: white;  /* 배경색 추가 */
  z-index: 1000;  /* 다른 요소 위에 표시되도록 설정 */
}
.logo{
  width: 1100px;
  max-width: 100%;
  padding: 20px 0;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo i{
  display: none;
  font-size: 25px;
  padding-right: 3%;
}
.logo img{
  width: 130px;
}

.navbar{
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}
.menu{
  width: 1100px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.menu a{
  padding: calc(20px - 4px) 10px;
  margin: 0 30px;
  font-weight: bold;
}
.menu a:hover{
  color: red;
  border-bottom: 2px solid red;
  transition: 0.3s ease;
}
.line{
  padding: 20px 10px;
}

@media screen and (max-width:1165px) {
  .logo {
    width: calc(100% - 5%);
    max-width: 100%;
    justify-content: space-between;
    padding-left: 5%;
  }
  .logo img{
    width: 100px;
  }

  .logo i {
    display: block;
    cursor: pointer;
  }

  .navbar {
    display: none;
  }

  .menu {
    width: 100%;
    position: fixed;
    top: 106px;
    right: -100%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    transition: right 0.5s ease;
  }

  .menu a {
    margin: 10px 0;
    padding: 10px;
    font-weight: bold;
    margin-left: 15px;
  }

  .menu.show {
    right: 0;
  }

  .menu .line {
    display: none;
  }
}


/* 슬라이더 */
.main-slide{
  padding-top: 181px;
}
swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media screen and (max-width:1165px){
  .main-slide{
    padding-top: 106px;
    height: 25vh;
  }
}

/* 수익실현 */
.bold{
  font-weight: bold;
  margin-right: 40px;
}

.vip{
  position: relative;
  width: 100%;
}

.vip-img-pc{
  display: block;
  width: 100%;
}
.vip-img-m{
  display: none;
  width: 100%;
}
.marquee {
  position: absolute;
  top: 31%;
  left: 31%;
  width: 68%;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-content {
  display: inline-block;
  animation: marquee 60s linear infinite;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width:1165px){
  .marquee {
    font-size: 6px;
    top: 31%;
    left: 26%;
    width: 72%;
  }
  .vip-img-pc{
    display: none;
  }
  .vip-img-m{
    display: block;
  }
}
/* 가입-상담 */
.join{
  position: fixed;
  top: 30%;
  right: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.join img{
  width: auto;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width:1165px){
  .join{
    display: none;
  }
}
/* 메인이미지 */
.main{
  padding: 3% 0;
}
.main-flex{
  width: 1100px;
  max-width: 100%;
  display: flex;
  margin: 0 auto;
  gap: 20px ;
}
.main-img{
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 40px;
}
.main img{
  display: block;
  width: 100%;
}
@media screen and (max-width:1165px){
  .main{
    padding: 3% ;
  }
  .main-flex{
    flex-direction: column;
    gap: 10px ;
  }
  .main-img{
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 10px;
  }
}

/* 이미지-슬라이더 */
.img-slide {
  width: 1100px;
  max-width: 100%;
  display: flex;
  margin: 0 auto;
  position: relative;
}

.img-slide img {
  width: 40%;
}
.img-slide-m {
  display: none;
}

.img-slide .btn1{
  position: absolute;
  width: 12%;
  height: 10%;
  left: 2%;
  top: 79%;
}
.img-slide .mySwiper {
  width: 60%;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
}

.img-slide .mySwiper swiper-slide img {
  display: block;
  width: 100%;

  object-fit: contain;
  object-position: top;
  background-color: black;
}
.img-slide-text{
  display: none;
}
@media screen and (max-width:1165px){
  .img-slide {
    flex-direction: column;
  }
  .img-slide img {
    width: 100%;
  }
  .img-slide-pc{
    display: none;
  }
  .img-slide-m{
    display: block;
  }
  .img-slide .mySwiper {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    right: 0;
  }

  .img-slide-text{
    display: block;
    text-align: center;
    padding: 20px 0;
    background-color: #1E1C2A;
    color: red;
    font-size: 14px;
    text-decoration: underline;
  }
}
:root {
  --swiper-theme-color: red !important;
}
/* 유튜브 */
.youtube{
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 3% 0;
}
.youtube-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.youtube-title h1{
  font-size: 28px;
  font-weight: bold;
}
.youtube-title a{
  padding-bottom: 5px;
  border-bottom: 1px solid black;
}

.videos{
  display: flex;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}

iframe{
  width: calc(25% - 20px);
  max-width: 100%;
  height: 250px;
  border-radius: 25px;
  padding: 10px;
}

@media screen and (max-width:1165px) {
  .youtube-title{
    justify-content: center;
  }
  .youtube-title h1{
    font-size: 18px;
  }
  .youtube-title a{
    display: none;
  }

  .videos{
    flex-direction: column;
    justify-content: center;
  }
  iframe{
    width: calc(100% - 20px);
  }
}
/* 카톡상담 */
.kakao{
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.kakao-pc{
  display: block;
  width: 100%;
  max-width: 100%;
}
.kakao-m{
  display: none;
  width: 100%;
  max-width: 100%;
}
.kakao .btn2{
  position: absolute;
  width: 13%;
  height: 11%;
  left: 30%;
  top: 71%;
}
.kakao .btn3{
  position: absolute;
  width: 24%;
  height: 67%;
  left: 57%;
  top: 18%;
}
@media screen and (max-width:1165px){
  .kakao-pc{
    display: none;
  }
  .kakao-m{
    display: block;
  }
  .kakao .btn2{
    position: absolute;
    width: 74%;
    height: 7%;
    left: 13%;
    top: 46%;
  }
  .kakao .btn3{
    position: absolute;
    width: 94%;
    height: 38%;
    left: 3%;
    top: 60%;
  }
}
/* 행정기관 */
.administration{
  width: 100%;
  margin: 0 auto;
}
.administration img{
  width: 100%;
}
.administration-m{
  display: none;
}
@media screen and (max-width:1165px){
  .administration-pc{
    display: none;
  }
  .administration-m{
    display: block;
  }
}
/* 푸터 */
.footer{
  background-color: #21282e;;
  text-align: center;
}
.footer-nav{
  border-top: 1px solid #626262;
  border-bottom: 1px solid #626262;
}
.footer-menu{
  width: 1100px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.footer-menu a{
  padding: calc(20px - 4px) 10px;
  margin: 10px 30px;
  font-weight: bold;
  color: #ccc;
  font-size: 12px;
}
.footer-logo{
  padding: 30px 0;
}
.footer-logo img{
  width: 150px;
  display: block;
  margin: 0 auto;
}
.footer-text{
  color: #acacac;
  font-size: 12px;
  padding-bottom: 230px;
}
.footer-text span{
  line-height: 1.5;
}
.footer-text-pc{
  display: block;
}
.footer-text-m{
  display: none;
}
@media screen and (max-width:1165px) {
  .footer-menu a{
    padding: calc(20px - 4px) 10px;
    margin: 0;
    font-weight: lighter;
    color: #ccc;
    font-size: 10px;
  }
  .footer-text{
    padding-bottom: 100px;
  }
  .footer-text-pc{
    display: none;
  }
  .footer-text-m{
    display: block;
  }
}

/* 픽시드 */
.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.fixed-pc{
  display: block;
  width: 100%;
}
.fixed-m{
  display: none;
  width: 100%;
}
@media screen and (max-width:1165px) {
  .fixed-pc{
    display: none;
  }
  .fixed-m{
    display: block;
  }
}

/* index2 */
/* 소개 */
.info{
  width: 100%;
  max-width: 100%;
  padding-top: 181px;
}
.info-pc{
  width: 100%;
  max-width: 100%;
  display: block;
}
.info-m{
  display: none;
  width: 100%;
  max-width: 100%;
}
.i2-main{
  
}
.i2-main-img{
  width: 100%;
  max-width: 100%;
}
.i2-main-img-pc{
  display: block;
  width: 100%;
  max-width: 100%;
}
.i2-main-img-m{
  display: none;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width:1165px){
  .info{
    padding-top: 106px;
  }
  .info-m{
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .info-pc{
    display: none;
  }
  .i2-main-img-pc{
    display: none;
  }
  .i2-main-img-m{
    display: block;
  }
}
/* index3 */
/* 메인 */
.i3-main{
  padding-top: 181px;
}
.i3-main-img{
  width: 100%;
  max-width: 100%;
}
.i3-main-img-pc{
  display: block;
  width: 100%;
  max-width: 100%;
}
.i3-main-img-m{
  display: none;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width:1165px){
  .i3-main{
    padding-top: 106px;
  }
  .i3-main-img-pc{
    display: none;
  }
  .i3-main-img-m{
    display: block;
  }
}
/* index4 */
/* 수익인증 텍스트 */
.revene-text{
  width: 1100px;
  max-width: calc(100% - 20px);
  margin: 0 auto;
  padding: 60px 0 20px 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.revene-text img{
  display: flex;
  justify-content: start;
}
@media screen and (max-width:1165px){
  .revene-text img{
    width: 120px;
  }
}
/* 수익인증 */
.revene {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}

.revene-flex {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 0;
}

.revene-flex img {
  width: 32%;
}
@media screen and (max-width:1165px){
  .revene-flex {
    display: block;
    padding: 0;
  }
  
  .revene-flex img {
    width: calc(100% - 20px);
    padding: 10px;
  }
}

/* 유튜브 후기  */
.main-video{
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
.main-video iframe{
  width: calc(100% - 20px);
  max-width: 100%;
  height: 550px;
  border-radius: 25px;
  padding: 10px;
}


@media screen and (max-width:1165px){
  .main-video iframe{
    width: calc(100% - 20px);
    height: 250px;
    margin: 0 auto;
  }
}