.custom-tab {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.custom-tab.fixed {
  position: fixed;
  z-index: 2;
}
.custom-tab.fixed .custom-nav-first {
  background-color: white;
}
.custom-tab .custom-nav-first {
  width: 33.33%;
  text-align: center;
  height: 55px;
  padding: 18px 0px;
  border-bottom: 1px solid #efeded;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: -0.15px;
  text-align: center;
  color: #2f2f2f;
  text-decoration: none;
  border-right: 1px solid #efeded;
  background: white;
}
.custom-tab a.custom-nav-first:hover,
.custom-tab a.custom-nav-first.active {
  background: linear-gradient(97deg, #daa595, #fff 49%, #daa595 100%);
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .course-panel {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .custom-tab {
    flex-direction: column;
  }
  .custom-tab .custom-nav-first {
    width: 100%;
    border-right: none;
  }
  .custom-nav-first {
    position: relative;
  }
  .course-panel {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background: linear-gradient(97deg, #daa595, #fff 49%, #daa595 100%);
  }
  .custom-nav-second {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  a.custom-nav-second:last-child {
    padding-bottom: 30px;
  }
  a.custom-nav-second:first-child {
    padding-top: 10px;
  }

  .course-accordion {
    transition: 0.4s;
  }
  .course-accordion.actived {
    border-bottom: none;
  }
  /*button not active*/
  .course-accordion .navArrow {
    display: inline-block;
    width: 12px;
    height: 15px;
    background: url(https://cdn.shopify.com/s/files/1/2730/3248/files/Down_Caret.svg?v=1646829818)
      no-repeat 50% 50%;
    background-size: contain;
    transform: translate(10px, 3px);
  }

  /* minus button */
  .course-accordion.actived .navArrow {
    transform: rotate(270deg) translateX(-2px, 10px);
  }

  div.course-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .custom-tab a.custom-nav-first:hover,
  .custom-tab a.custom-nav-first.actived {
    background: white;
  }
  .custom-tab a.custom-nav-first.active {
    background: linear-gradient(97deg, #daa595, #fff 49%, #daa595 100%)!important;
  }
}
.custom-nav-second {
  border-bottom: none !important;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: -0.15px;
  text-align: center;
  color: #2f2f2f;
  text-decoration: none;
}
.custom-nav-second:hover {
  background: unset;
}
a.custom-nav-second:hover,
a.custom-nav-second.active {
  background: transparent;
  font-weight: normal;
}
.course-panel{
  background: white;
}
.course-panel.active-div{
  background: linear-gradient(97deg, #daa595, #fff 49%, #daa595 100%)!important;
}