@import url('./reset.css');

/* Event Modal */
.main-event-modal {
  width: 500px;
  height: 550px;
  position: absolute;
  z-index: 99999;
  top: 180px;
  left: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-event-modal.hidden {
  display: none;
}
.main-event-modal .modal-content {
  position: relative;
  width: 100%;
  height: 550px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 5px 5px rgba(0,0,0,0.2);
  background-color: white;
  /* overflow-y: auto; */
}
.main-event-modal .modal-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: var(--sub-color-blue);
}
.main-event-modal .modal-top .close-btn {
  position: absolute;
  z-index: 999;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: #fff;

  cursor: pointer;
}
.main-event-modal .modal-content-inner {
  margin-top: 50px;
  width: 100%;
  /* height: 100%; */
  font-size: 0;
}
.main-event-modal .modal-content-inner img {
  width: 100%;
}
.main-event-modal .modal-bottom {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.main-event-modal .modal-bottom p {
  padding: 0.5rem 1rem;
  background-color: rgba(0,0,0,0.65);

  display: flex;
  justify-content: center;
  align-items: center;
}
.main-event-modal .modal-bottom p a {
  font-size: var(--font-size-smallText);
  color: #fff;
}

/* === Main Slide === */
.main-slide {
  position: relative;
  margin: 0px auto;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.main-slide img {
  position: absolute;
  /* width: inherit; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;

  transition: 0.5s;
}
.main-slide img.show {
  opacity: 1;
}

/* === Mid Navigation === */
#mid-nav-content {
  border-bottom: 1px solid #ddd;
}
.mid-nav {
  margin: 0 auto;
  /* padding: 30px 0; */
  padding: 3rem 0;
  max-width: 1200px;
}
.mid-nav ul {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
  gap: 7vw;
}
.mid-nav ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
  gap: 1rem;
}
.mid-nav ul li a .mid-nav-icon {
  position: relative;
  /* width: 60px; */
  width: 6rem;
}
.mid-nav ul li a .mid-nav-icon::before {
  content: '';
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  z-index: 1;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: var(--main-color-yellow); 
  transform: scale(0);
  transform-origin: center;
  transition: 0.3s;
}
.mid-nav ul li a:hover .mid-nav-icon::before {
  transform: scale(1);
}
.mid-nav ul li a .mid-nav-icon img {
  position: relative;
  z-index: 2;
  width: inherit;
}
.mid-nav ul li a p {
  /* font-size: 16px; */
  font-size: 1.6rem;
  font-weight: 600;
}

/* === gbg Event Content === */
.gbg-event-inner {
  /* padding: 15rem 0 10rem; */
  padding: 20rem 0 10rem;
  overflow: hidden;
  text-align: center;
}
.gbg-event-inner .articleTitle h4 {
  display: inline-block;
  position: relative;
}
.gbg-event-inner .articleTitle h4::before {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: -7.5rem;
  left: -14rem;
  width: 13rem;
  height: 13rem;
  background: url('../images/02_title.png') no-repeat center;
  background-size: cover;
}
.gbg-event-box {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}
.gbg-event-box::before {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: -80px;
  left: calc((100% - 1100px) / 2 - 24.5rem);
  width: 25rem;
  height: 26rem;
  background: url('../images/02_gbgEvent_bg_1.png') no-repeat;
  background-size: cover;
}
.gbg-event-box::after {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: -1;
  bottom: -80px;
  right: calc((100% - 1100px) / 2 - 24.5rem);
  width: 25rem;
  height: 26rem;
  background: url('../images/02_gbgEvent_bg_2.png') no-repeat;
  background-size: cover;
}

.gbg-event-day, .gbg-event-night {
  position: relative;
  padding-top: 8rem;
  width: 550px;
  height: 740px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem ;
}
.gbg-event-day {
  margin-left: 3rem;
  background-color: #F5EAD7;
  color: #355B49;
}
.gbg-event-night {
  margin-right: 3rem;
  background-color: #35436C;
  color: #fff;
}
.gbg-event-day img, .gbg-event-night img {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.gbg-event-day img.pc, .gbg-event-night img.pc {
  display: block;
}
.gbg-event-day img.mo, .gbg-event-night img.mo {
  display: none;
}
.gbg-event-title h5 {
  position: relative;
  z-index: 1;
  font-family: 'yg-jalnan';
  font-size: 3.5rem;
}
.gbg-event-title p {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -1px;
}
.gbg-event-moreView {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  position: relative;
  z-index: 1;
  width: 18rem;
  height: 4.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #355B49;
  border: 2px solid #355B49;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s;
}
.gbg-event-moreView i {
  font-size: 1.6rem;
}
.gbg-event-day .gbg-event-moreView:hover {
  background-color: #355B49;
  color: #fff;
  font-weight: 600;
}
.gbg-event-day .gbg-event-title h5::before {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: -25px;
  left: -40px;
  width: 6rem;
  height: 6rem;
  background: url('../images/02_gbgEvent_day_sun.png') no-repeat;
  background-size: cover;
}
.gbg-event-night .gbg-event-title h5::before {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: -25px;
  right: -40px;
  width: 6rem;
  height: 6rem;
  background: url('../images/02_gbgEvent_night_moon.png') no-repeat;
  background-size: cover;
}
.gbg-event-night .gbg-event-moreView {
  border: 2px solid #fff;
  color: #fff;
}
.gbg-event-night .gbg-event-moreView:hover {
  background-color: #fff;
  color: #35436C;
  font-weight: 600;
}

/* === Monthly Event === */
#monthlyEvent-content {
  margin: 0 auto;
  /* padding: 5rem 0 20rem; */
  padding: 10rem 0 20rem;
  display: flex;
  flex-direction: column;
  /* gap: 6rem; */
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  /* max-width: 70vw; */
  max-width: 1200px;
}
#monthlyEvent-content .articleTitle h4 {
  display: inline-block;
  position: relative;
}
#monthlyEvent-content .articleTitle h4::before {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: -7.5rem;
  left: -14rem;
  width: 13rem;
  height: 13rem;
  background: url('../images/03_title.png') no-repeat center;
  background-size: cover;
}
/* Calendar */
.monthlyEvent-calendar {
  margin-bottom: 4rem;
  /* width: 100%; */
  width: calc(100% - 2rem);
  height: 10rem;
  border: 1px solid var(--main-color-yellow);

  display: flex;
  border-radius: 7rem;
  justify-content: flex-start;
  align-items: center;
}
.monthlyEvent-calendar .calendar-title {
  flex: 2;
  min-width: 20rem;
  height: 100%;
  text-align: center;
  border-radius: 7rem 0 0 7rem;
  background-color: var(--main-color-yellow);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.monthlyEvent-calendar .calendar-title span,
.monthlyEvent-calendar .calendar-title a, .monthlyEvent-calendar .calendar-title a i {
  font-weight: bold;
  font-size: var(--font-size-subDesc);
  color: #fff;
}

/* 달력 버튼 */
.monthlyEvent-calendar .calendar-control {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 10rem;
  gap: 1rem;
}
.monthlyEvent-calendar .calendar-control::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 2rem;
  opacity: 0.5;
  background-color: var(--font-color-subTitle);
  display: inline-block;
}
.monthlyEvent-calendar .calendar-control button {
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  color: var(--font-color-subTitle);
}
          /* 년, 월 표시 */
.monthlyEvent-calendar .calendar-control .year-wrap {
  text-align: center;
}
.monthlyEvent-calendar .calendar-control .year-wrap .month {
  font-size: var(--font-size-subDesc);
  font-weight: bold;
  color: var(--main-color-yellow);
  padding: 0;
  margin: 0;
}
.monthlyEvent-calendar .calendar-control .year-wrap .year {
  padding: 0;
  margin: 0;
}
.monthlyEvent-calendar .calendar {
  width: 100%;
  flex: 8;
  height: 100%;
}
.monthlyEvent-calendar .calendar tbody a {
  font-size: var(--font-size-smallText);
  font-weight: 500;
}

/* 오늘 날짜 표시 */
.today {
  position: relative;
  text-align: center;
}
.today::before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  display: block;
  /* background-color: var(--sub-color-blue); */
  background-color: var(--main-color-yellow);
  /* background-color: #dedede; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%,-45%);
  border-radius: 50%;
  z-index: -1;
}
.today a {
  color: #fff;
}


/* PC calendar */
.monthlyEvent-calendar .calendar thead {
  display: none;
}
.monthlyEvent-calendar .calendar .mobile-calendar {
  display: none;
}

.monthlyEvent-calendar .calendar .pc-calendar tr{
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items:center;
  justify-content: space-between;
  gap:1.3rem;
  flex-wrap: wrap;
  align-content: center;
}
.monthlyEvent-calendar .calendar .pc-calendar tr td {
  text-align: center;
  display: inline-block;
  margin: auto 0;
}


/* === Monthly Event slide === */
.monthlyEvent-slide {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.slide-wrap {
  width: 100%;
  overflow: hidden;
  padding: 1rem;
}
.slide-items {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 1rem 0;
  position: relative;
  left: 0;
  top: 0;
}
.slide-items.move {
  transition: 0.5s ease-out;
}
.slide-items li {
  overflow: hidden;
  margin-right: var(--gap-size-normal);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  /* border-radius: 2rem; */
  border: 1px solid #eee;
  border-radius: 8px;
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.slide-items .event-item {
  background-color: #fff;

  display: flex;
  flex-direction: column;
  /* gap: 2rem; */
  align-items: center;
  justify-content: center;

}
.slide-items .event-item img {
  margin-bottom: 4rem;
  width: 100%;
  /* height: 23vh; */
  object-fit: cover;
}
.slide-items .event-item h3{
  margin-bottom: 0.8rem;
  font-size: 2rem;
}
.slide-items .event-item p {
  margin-bottom: 2rem;
  color: var(--font-color-subTitle);
}
.slide-items .event-item .item-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
}
.slide-items .event-item .item-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
}
.slide-items .event-item span {
  margin-bottom: 4rem;
}
.slide-items .event-item p,
.slide-items .event-item span {
  font-size: 1.6rem;
} 
.slide-items .event-item h3,
.slide-items .event-item p,
.slide-items .event-item span, 
.slide-items .event-item button {
  display: block;
  width: 75%;
}
.slide-items .event-item span i {
  padding-left: 2px;
  margin-right: 1rem;
}
.slide-items .event-item .view-more {
  margin-bottom: 4rem;
  padding: 1rem;
  /* border-radius: 3rem; */
  border-radius: 5px;
  background-color: var(--main-color-yellow);
  border: 1px solid var(--main-color-yellow);
  font-size: var(--font-size-subDesc);
  font-weight: bold;
}
.slide-items .event-item .view-more a{
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  color: #fff;
  display: block;
}
.item-control {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  /* justify-content: space-around; */
}
.item-control button {
  position: relative;
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  background:none;
  /* border: 3px solid var(--font-color-subDesc); */
  border: 3px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.item-control button i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  /* color: var(--font-color-subDesc); */
  color: #aaa;
  border-radius: 50%;
}
.item-control .item-prev-btn {
  position: absolute;
  left: -7rem;
}
.item-control .item-next-btn {
  position: absolute;
  right: -7rem;
}

/* === Footer Slide */
#footerSlide-content .articleTitle h4 {
  display: inline-block;
  position: relative;
}
#footerSlide-content .articleTitle h4::before {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: -7.5rem;
  left: -14rem;
  width: 13rem;
  height: 13rem;
  background: url('../images/04_title.png') no-repeat center;
  background-size: cover;
}
.footerSlide-inner {
  position: relative;
  padding-bottom: 10rem;
  width: 100%;
  background-color: var(--bg-color-gray);
  border-bottom: 1px solid #ddd;
}
.footerSlide-inner::before {
  content: '';
  position: absolute;
  z-index: -99;
  top: -55rem;
  display: block;
  width: 100%;
  height: 800px;
  background: url('../images/04_footerImg.png') no-repeat center;
  background-size: contain;
}
.swiper-wrapper {
  margin: 2rem 0;
  transition-timing-function: linear;
  display: flex;
  gap: 20px;
}
.swiper-slide {
width: 357px;
height: 100%;
background-color: #fff;
border-radius: 0.5rem;
overflow: hidden;
object-fit: cover;

display: flex;
align-items: center;
justify-content: center;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



  /* PC 달력 정렬  space-between  >>> flex-start*/
@media all and (max-width:1600px) {
  /* PC 달력 정렬  space-between  >>> flex-start*/
  .monthlyEvent-calendar .calendar .pc-calendar tr {
    justify-content: flex-start;
  }
}

/* monthlyEvent Button */
@media all and (max-width:1400px) {
  .slide-wrap {
    position: relative;
    top: -5rem;
    overflow:hidden;
  }
  .slide-items {
    margin: 4rem 0 3rem 0;
    width: calc(100% - 3rem);
  }
  .slide-items li {
    height: auto;
  }
  .slide-items .event-item {
    width: 100%;
  }
  .item-control  {
    position: relative;
    justify-content: center;
    gap: 3rem;
    top: -3rem;
  }
  .item-control button {
    border-radius: 0;
  }
  .item-control button i {
    position: relative;
    /* top:0; */
    top: 1px;
    left: 0;
    transform: translate(0%, 0%);
  }
  .item-control .item-prev-btn {
    position: static;

  }
  .item-control .item-next-btn {
    position: static;
    /* width: calc(100% - 30px); */
  }
}

/* === Tablet Size === */
@media all and (max-width:1024px) {

  .gbg-event-inner .articleTitle h4::before {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: -5rem;
    left: -11rem;
    width: 10rem;
    height: 10rem;
    background: url('../images/02_title.png') no-repeat center;
    background-size: cover;
  }

  /* === gbg Event Content === */
  .gbg-event-box {
    margin: 0 auto;
    width: calc(100% - 5rem);
  }
  .gbg-event-day, .gbg-event-night {
    width: 50%;
    height: 600px;
  }

  /* === Montly Event === */
  #monthlyEvent-content  {
    /* max-width: 95vw; */
    max-width: 100vw;
  }
  #monthlyEvent-content .articleTitle h4::before {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: -5rem;
    left: -11rem;
    width: 10rem;
    height: 10rem;
    background: url('../images/03_title.png') no-repeat center;
    background-size: cover;
  }

  /*      Calendar      */
  .monthlyEvent-calendar {
    margin-bottom: 0;
    /* width: calc(100% - 3rem); */
    width: calc(100% - 5rem);
    flex-direction: column;
    border-radius: 0;
    gap: 2rem;
    height: auto;
  }
  .monthlyEvent-calendar .calendar-title {
    flex:auto;
    width: 100%;
    border-radius: 0;
    height: 6rem;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
  }
  .monthlyEvent-calendar .calendar-control {
    padding: 2rem 3rem;
    width: 100%;
    justify-content: space-between;
  }
  .monthlyEvent-calendar .calendar-control::after {
    background: none;
  }
  .monthlyEvent-calendar .calendar-control .year-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 2rem;
  }
  .monthlyEvent-calendar .calendar-control .year-wrap .year {
    position: relative;
  }
  .monthlyEvent-calendar .calendar-control .year-wrap .year::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 100%;
    background-color: var(--main-color-yellow);
    position: absolute;
    right: -1rem;
  }
  .monthlyEvent-calendar .calendar {
    width: 100%;
    height: 100%;
  }

  .monthlyEvent-calendar .calendar thead {
    display: block;
  }
  .monthlyEvent-calendar .calendar thead tr {
    display: flex;
    justify-content: space-evenly;
  }
  .monthlyEvent-calendar .calendar thead tr td {
    text-align: center;
  }

  .monthlyEvent-calendar .calendar thead th,
  .monthlyEvent-calendar .calendar .mobile-calendar td {
    display: inline-block;
    width: 4rem;
    height: 4rem;
  }
  .monthlyEvent-calendar .calendar .mobile-calendar {
    display: block;
    width: 100%;
    text-align: center;
  }
  .monthlyEvent-calendar .calendar .mobile-calendar tr {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 1.5rem 0;
  }
  .monthlyEvent-calendar .calendar .mobile-calendar tr td:first-child a {
    color: red;
  }
  .monthlyEvent-calendar .calendar .mobile-calendar tr td:last-child a {
    color: blue;
  }
  .monthlyEvent-calendar .calendar .pc-calendar {
    display: none;
  }
  .today::before {
    width: 4rem;
    height: 4rem;
    transform: translate(-50%,-65%);
  }

  /* Event slide */
  .monthlyEvent-slide {
    width: calc(100% - 3rem);
    margin-top: 6rem;
    flex-direction: column;
    gap: 3rem;
  }

  .slide-wrap {
    position: relative;
    top: -5rem;
    overflow:hidden;
  }
  .slide-items {
    width: calc(100% - 3rem);
  }
  .slide-items li {
    height: auto;
  }
  .slide-items .event-item {
    width: 100%;
  }
  .item-control  {
    position: relative;
    justify-content: center;
    gap: 3rem;
    top: -3rem;
  }
  .item-control button {
    border-radius: 0;
  }
  .item-control button i {
    position: relative;
    /* top:0; */
    top: 1px;
    left: 0;
    transform: translate(0%, 0%);
  }
  .item-control .item-prev-btn {
    position: static;

  }
  .item-control .item-next-btn {
    position: static;
    /* width: calc(100% - 30px); */
  }

  /* footer slide*/
  #footerSlide-content .articleTitle h4::before {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: -5rem;
    left: -11rem;
    width: 10rem;
    height: 10rem;
    background: url('../images/04_title.png') no-repeat center;
    background-size: cover;
  }
}

/* === Mobile Size ===  */
@media all and (max-width:768px){
  /* Event Modal */
  .main-event-modal {
    display: none;
  }

  /* === Main Slide === */
  .main-slide {
    height: 48rem;
  }
  /* === Mid Navigation === */
  .mid-nav {
    padding: 4rem 0;
  }
  .mid-nav ul {
    flex-wrap: wrap;
  }
  .mid-nav ul li {
    width: 20%;
  }
  .mid-nav ul li a .mid-nav-icon {
    width: 5rem;
  }

  /* === gbg Event Content === */
  .gbg-event-inner {
    padding: 10rem 0 10rem;
  }
  .gbg-event-box {
    flex-direction: column;
  }
  .gbg-event-day, .gbg-event-night {
    margin: 0;
    padding-top: 6.5rem;
    width: 100%;
    height: 420px;
  }
  .gbg-event-day img.pc, .gbg-event-night img.pc {
    display: none;
  }
  .gbg-event-day img.mo, .gbg-event-night img.mo {
    display: block;
  }
  .gbg-event-title h5 {
    font-size: 3.2rem;
    font-weight: normal;
    letter-spacing: 1px;
  }
  .gbg-event-day .gbg-event-title h5::before {
    top: -1.8rem;
    left: -20px;
    width: 5rem;
    height: 5rem;
  }
  .gbg-event-night .gbg-event-title h5::before {
    top: -2rem;
    right: -25px;
    width: 5rem;
    height: 5rem;
  }
  .gbg-event-moreView {
    height: 4rem;
  }


  /* Monthly Event */
  .monthlyEvent-calendar .calendar thead th,
  .monthlyEvent-calendar .calendar .mobile-calendar td {
    display: inline-block;
    width: 4rem;
    height: 4rem;
  }
  .today::before {
    top: 50%;
  }
  .slide-items li {
    height: auto;
  }
  .slide-items .event-item {
    height: inherit;
    justify-content: flex-start;
  }
  .slide-items .event-item h3 {
    /* font-size: var(--font-size-mainText) */
    font-size: 2.3rem;
  }
  .slide-items .event-item p,
  .slide-items .event-item span, 
  .slide-items .event-item button {
    font-size: 1.8rem;
  }
  .slide-items .event-item .view-more {
    padding: 1.5rem;
  }
  .slide-items .event-item img {
    width: 100%;
    object-fit:cover;
    height: 25vh;
  }
  #monthlyEvent-content {
    padding: 5rem 0 10rem;
  }

  /* Footer Slide */
  .footerSlide-inner {
    /* padding: 5rem 0 4rem; */
    padding-bottom: 4rem;
  }
  .footerSlide-inner::before {
    top: -48rem;
  }
}

/* === Small Mobile Size ===  */
@media all and (max-width:550px){
  .gbg-event-day, .gbg-event-night {
    padding-top: 6rem;
    height: 380px;
  }
}
@media all and (max-width:400px){
  .gbg-event-day, .gbg-event-night {
    height: 350px;
  }
  .footerLogo img {
    height: 2.8rem;
  }
}

/* Big Pc Size */
@media all and (min-width:2000px) {
  .mid-nav ul {
    gap: 6vw;
  }
}