@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;0,700;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap");
body {
  margin: 0;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p {
  margin: 0;
}
main ol {
  padding-bottom: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

main h2,
main h3,
main h4,
main h5 {
  line-height: 120%;
}
main h2 {
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media (max-width: 1200px) {
  main h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  main h2 {
    font-size: 2rem;
    letter-spacing: 0.01em;
  }
}
main h3 {
  font-size: 2.5rem;
}
@media (max-width: 1200px) {
  main h3 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  main h3 {
    font-size: 36px;
  }
}
main h4 {
  font-size: 30px;
}
@media (max-width: 1200px) {
  main h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  main h4 {
    font-size: 24px;
  }
}
main h5 {
  font-size: 1.75rem;
  font-weight: 500 !important;
}
@media (max-width: 1200px) {
  main h5 {
    font-size: 1.5rem;
  }
}
main p {
  line-height: 150%;
  color: white;
}
main span {
  line-height: 1em;
}
main img {
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}
main video {
  vertical-align: middle;
}
main .container {
  max-width: 1200px;
  padding: 120px 0;
  width: 90%;
}
@media (max-width: 767px) {
  main .container {
    padding: 64px 16px;
    width: 100%;
  }
}

h2.title {
  color: white;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
h2.title svg {
  margin-right: 16px;
}
@media (max-width: 767px) {
  h2.title svg {
    width: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  h2.title {
    margin-bottom: 32px;
  }
}

.show-pc {
  display: block;
}
@media (max-width: 767px) {
  .show-pc {
    display: none;
  }
}

.show-mb {
  display: none;
}
@media (max-width: 767px) {
  .show-mb {
    display: block;
  }
}

.btn-primary {
  display: inline-block;
  padding: 10px 24px;
  color: black !important;
  border: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
}
.btn-primary:hover {
  color: #fff !important;
  background-color: transparent;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 24px;
  color: #fff !important;
  border: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.6em;
}
.btn-secondary:hover {
  color: black !important;
  background-color: #fff;
}
.btn-secondary--disabled {
  pointer-events: none;
}

.btn-register {
  position: fixed;
  bottom: 60px;
  z-index: 3;
  background-color: #009C49;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  right: calc(50% - 700px);
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
  filter: drop-shadow(0px 2px 5px rgba(0, 73, 30, 0.2078431373));
}
.btn-register svg {
  fill: white;
}
@media (max-width: 1440px) {
  .btn-register {
    right: 16px;
  }
}
@media (max-width: 767px) {
  .btn-register {
    right: 8px;
  }
}
.btn-register span {
  color: white;
  padding-top: 10px;
}
.btn-register:hover {
  transform: scale3d(1.05, 1.05, 1.05);
}

.badge {
  background-color: black;
  padding: 4px;
  border-radius: 4px;
  margin-left: 4px;
  color: white;
  font-size: 14px;
  opacity: 0.5;
}

.nav-item .badge {
  background-color: #009C49;
  opacity: 1;
  letter-spacing: 0;
}

.btn-social {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.btn-social svg path {
  fill: #7CC400;
}
.btn-social:hover svg path {
  fill: #00491F;
}

.tab-buttons {
  border-bottom: 1px solid #009C49;
  display: flex;
  margin: 0 auto;
  margin-bottom: 48px;
}
.tab-buttons .tab-btn {
  display: inline-block;
  width: 50%;
  text-align: center;
  font-size: 18px;
  padding: 12px 30px;
  cursor: pointer;
  color: #888;
}
.tab-buttons .tab-btn.active {
  font-weight: bold;
  border-bottom: 3px solid #009C49;
  color: #009C49;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-content .note {
  font-style: italic;
  text-align: center;
  color: #7CC400;
}

.intro {
  background-repeat: no-repeat !important;
  background-position: center top !important;
  overflow: hidden;
  text-align: center;
  position: relative;
  min-height: 100vh;
}
.intro .container {
  padding-bottom: 140px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .intro .container {
    padding-top: 8.3vw;
  }
}
@media (max-width: 992px) {
  .intro .container {
    padding-top: 180px;
  }
}
@media (max-width: 767px) {
  .intro .container {
    padding-top: 96px;
    padding-bottom: 120px;
  }
}
.intro h1 {
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 96px;
  margin-bottom: 32px;
  font-weight: 500 !important;
  letter-spacing: -0.04em;
}
@media (max-width: 1920px) {
  .intro h1 {
    font-size: 5vw;
  }
}
@media (max-width: 1200px) {
  .intro h1 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .intro h1 {
    font-size: 10.5vw;
  }
}
.intro h1 .highlight {
  color: #00A94F;
}
.intro__logo {
  max-width: 330px;
  margin: 0 auto;
  width: 30%;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .intro__logo {
    width: 190px;
  }
}
.intro__content {
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 36px;
}
@media (max-width: 1200px) {
  .intro__content {
    margin-bottom: 24px;
  }
}
.intro__content p {
  line-height: 180%;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .intro__content p {
    font-size: 15px;
  }
}
.intro__slogan h2 {
  color: rgb(255, 255, 255);
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 48px;
  letter-spacing: 0;
  margin-bottom: 24px;
}
@media (max-width: 1920px) {
  .intro__slogan h2 {
    font-size: 2.5vw;
  }
}
@media (max-width: 767px) {
  .intro__slogan h2 {
    font-size: 7vw;
    margin-bottom: 16px;
  }
}

.nav {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: black;
  box-shadow: 0 1px 0 #141414;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}
.nav a {
  color: white !important;
}
@media (max-width: 992px) {
  .nav {
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .nav {
    flex-direction: column;
    padding: 0;
    align-items: flex-start;
    padding-top: 16px;
  }
}
.nav .nav-logo {
  position: absolute;
  left: 1.5rem;
  width: 96px;
}
@media (max-width: 767px) {
  .nav .nav-logo {
    position: static;
    padding-left: 16px;
  }
}

.sub-nav {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .sub-nav {
    justify-content: start;
    width: 100%;
    overflow-x: scroll;
    padding-left: 16px;
  }
}
.sub-nav p {
  line-height: inherit;
  margin: 0 24px;
}
.sub-nav p.on a {
  color: white !important;
}
@media (max-width: 1440px) {
  .sub-nav p {
    margin: 0 16px;
  }
}
@media (max-width: 992px) {
  .sub-nav p {
    margin: 0 12px;
  }
}
@media (max-width: 767px) {
  .sub-nav p {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .sub-nav p:nth-child(1) a {
    padding-left: 0;
  }
}
.sub-nav a {
  font-size: 18px;
  color: #808080 !important;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 18px 8px;
  line-height: 150%;
  display: inline-block;
}
.sub-nav a:hover {
  color: white !important;
}
@media (max-width: 1200px) {
  .sub-nav a {
    font-size: 15px;
    padding: 14px 2px;
  }
}
@media (max-width: 1200px) {
  .sub-nav a {
    padding: 14px 0px;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .sub-nav a {
    padding: 16px 10px;
  }
}

.course {
  background-color: #0A0A0A;
  overflow: hidden;
}
@media (max-width: 767px) {
  .course .container {
    padding: 64px 0 64px 16px;
  }
}
.course__bn {
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .course__bn {
    width: 200%;
    transform: translateX(-14%);
  }
}
.course__bn img {
  width: 100%;
}
.course__bn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 67%;
  bottom: 0;
  background: linear-gradient(0deg, #0A0A0A 0%, rgba(10, 10, 10, 0) 100%);
}
.course__main {
  position: relative;
  margin-top: -14vw;
}
@media (max-width: 767px) {
  .course__main {
    margin-top: -30vw;
  }
}
.course__main .container {
  padding-top: 0;
}
.course__table {
  width: 80%;
  max-width: 960px;
  color: white;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .course__table {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .course__table {
    overflow-x: scroll;
    padding-right: 16px;
  }
}
.course__table table {
  width: 100%;
}
.course__table th,
.course__table td {
  vertical-align: middle;
}
.course__table th {
  border: 0;
  background-color: #00491F;
  padding: 16px 16px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .course__table th {
    padding: 16px 6px;
  }
}
.course__table td {
  border: 0;
  border-bottom: 1px solid #3D3D3D;
  padding: 20px 16px;
  color: #8F8F8F;
}
.course__table td a {
  color: #8F8F8F;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .course__table td {
    padding: 16px 6px;
    min-width: 120px;
  }
}
.course__table .date {
  min-width: 80px;
  display: inline-block;
}
@media (max-width: 767px) {
  .course__table .date {
    margin-bottom: 4px;
    min-width: auto;
  }
}
.course__table .time {
  white-space: nowrap;
}
.course__table .course-day {
  color: #8F8F8F;
}
@media (max-width: 767px) {
  .course__table .course-day {
    width: 110px;
  }
}
.course__table .course-detail p {
  display: inline-block;
}
@media (max-width: 767px) {
  .course__table .course-detail p {
    display: block;
  }
}
@media (max-width: 767px) {
  .course__table .course-content {
    min-width: 260px;
  }
}
.course__table .course-content ul {
  padding-bottom: 0;
}
.course__table .course-content ul > li {
  color: white;
}
.course__table .course-primary,
.course__table .course-secondary {
  margin-right: 8px;
}
.course__table .course-primary {
  color: #009C49;
}
.course__table .course-secondary {
  color: #7CC400;
}
.course__table .row-highlight {
  background: rgba(255, 255, 255, 0.1);
}

.gift {
  background-color: #0A0A0A;
}
.gift__item {
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gift__item {
    width: 100%;
  }
}
.gift__intro {
  text-align: center;
  width: 100%;
  font-style: italic;
  background-color: #292929;
  padding: 0 16px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .gift__intro {
    padding: 12px 8px 32px;
  }
}
.gift__intro h3 {
  color: white;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .gift__intro h3 {
    font-size: 24px;
  }
}
.gift__intro .note {
  color: #8F8F8F;
  font-size: 14px;
  font-style: normal;
}
.gift__intro .note a {
  color: #8F8F8F;
  text-decoration: underline;
}

.audition {
  background-color: #141414;
}
.audition__list {
  padding: 0;
}
.audition__item {
  display: flex;
  margin-bottom: 48px;
  overflow: hidden;
  background-color: #00491F;
}
@media (max-width: 992px) {
  .audition__item {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 48px;
  }
}
.audition__item:nth-child(1) .audition__img {
  background-image: url("../images/audition-lifestyle-1.jpg");
}
.audition__item:nth-child(2) .audition__img {
  background-image: url("../images/audition-lifestyle-2.jpg");
}
.audition__item:nth-child(3) .audition__img {
  background-image: url("../images/audition-lifestyle-3.jpg");
}
@media (max-width: 767px) {
  .audition__item:nth-child(3) .audition__img {
    background-position-y: 20%;
  }
}
.audition__img {
  width: 40%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .audition__img {
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .audition__img {
    height: 70vw;
  }
}
.audition__body {
  background-color: #fff;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 64px;
}
@media (max-width: 992px) {
  .audition__body {
    width: 100%;
    padding: 16px 40px 48px !important;
  }
}
@media (max-width: 767px) {
  .audition__body {
    padding: 16px 24px 48px !important;
  }
}
.audition__body::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  border-style: solid;
  border-width: 0 96px 600px 0;
  border-color: transparent #fff transparent transparent;
}
@media (max-width: 992px) {
  .audition__body::after {
    top: -120px !important;
    left: 0px !important;
    border-width: 0 0 120px 768px !important;
    border-color: transparent transparent #fff transparent;
  }
}
.audition__title {
  background-color: #009C49;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 24px;
  padding: 0 10px;
  padding-bottom: 2px;
}
@media (max-width: 1200px) {
  .audition__title {
    margin-bottom: 16px;
  }
}
@media (max-width: 992px) {
  .audition__title {
    margin: 0 auto;
    margin-bottom: 16px;
  }
}
.audition__infoItem {
  line-height: 180%;
  font-size: 16px;
  list-style-type: decimal;
}
@media (max-width: 767px) {
  .audition__infoItem {
    font-size: 15px;
  }
}
.audition__item--reverse {
  flex-direction: row-reverse;
  background-color: #fff;
}
@media (max-width: 992px) {
  .audition__item--reverse {
    flex-direction: column;
  }
}
.audition__item--reverse .audition__body {
  background-color: #00491F;
  padding-left: 64px;
  padding-right: 32px;
}
@media (max-width: 1200px) {
  .audition__item--reverse .audition__body {
    padding-left: 40px;
    padding-right: 8px;
  }
}
.audition__item--reverse .audition__body::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  border-style: solid;
  border-width: 800px 0 0 128px;
  border-color: transparent transparent transparent #00491F;
}
@media (max-width: 992px) {
  .audition__item--reverse .audition__body::after {
    border-color: transparent transparent #00491F transparent;
  }
}
.audition__item--reverse .audition__title {
  background-color: #fff;
  color: #00491F;
}
.audition__item--reverse .audition__infoItem {
  color: #fff;
}
.audition__step .audition__infoList {
  padding: 0;
}
.audition__step .audition__infoItem {
  list-style-type: none;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  font-size: 18px;
}
@media (max-width: 767px) {
  .audition__step .audition__infoItem {
    font-size: 16px;
  }
}
.audition__step .audition__infoItem:nth-child(2), .audition__step .audition__infoItem:nth-child(3) {
  align-items: flex-start;
}
.audition__step .audition__infoItem:nth-last-child(1) {
  margin-bottom: 0;
}
.audition__step p {
  color: black;
}
.audition__step .circle {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: #fff;
  border: 1px solid #009C49;
  color: #009C49;
  text-align: center;
  font-size: 18px;
  line-height: 100%;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
@media (max-width: 767px) {
  .audition__step .circle {
    margin-right: 16px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.audition__step .audition__button {
  text-decoration: underline;
}
.audition__step .audition__button:hover {
  opacity: 0.8;
}

.coach {
  background-color: white;
}
.coach h2.title {
  color: black;
}
.coach__item {
  display: flex;
  justify-content: space-between;
}
.coach__item:nth-child(1) {
  margin-bottom: 160px;
}
@media (max-width: 767px) {
  .coach__item:nth-child(1) {
    margin-bottom: 80px;
  }
}
.coach__item:nth-child(2) {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .coach__item:nth-child(2) {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .coach__item {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.coach__item--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .coach__item--reverse {
    flex-direction: column-reverse;
  }
}
.coach__body {
  padding-top: 130px;
  width: 44%;
}
@media (max-width: 1200px) {
  .coach__body {
    padding-top: 72px;
  }
}
@media (max-width: 992px) {
  .coach__body {
    padding-top: 52px;
  }
}
@media (max-width: 767px) {
  .coach__body {
    width: 100%;
    padding-top: 32px;
  }
}
.coach__title {
  margin-bottom: 8px;
  white-space: nowrap;
}
.coach__job {
  color: #009C49;
}
.coach__name {
  color: #009C49;
}
.coach__specialty {
  font-size: 1.75rem;
  line-height: 150%;
  padding: 2px 10px;
  padding-bottom: 0px;
  background-color: #009C49;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 32px;
  color: white;
}
@media (max-width: 1200px) {
  .coach__specialty {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .coach__specialty {
    font-size: 1.125rem;
    padding-bottom: 2px;
    margin-bottom: 10px;
  }
}
.coach__resumeItem {
  color: #3D3D3D;
  line-height: 180%;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .coach__resumeItem {
    font-size: 15px;
  }
}
.coach__img {
  width: 44%;
  position: relative;
  padding-left: 72px;
}
@media (max-width: 1200px) {
  .coach__img {
    padding-left: 64px;
  }
}
@media (max-width: 992px) {
  .coach__img {
    width: 46%;
    padding-left: 36px;
  }
}
@media (max-width: 767px) {
  .coach__img {
    width: 100%;
    max-width: 390px;
    padding: 0 24px;
  }
}
.coach__deco {
  position: absolute;
  left: -6px;
  bottom: -12px;
}
.coach__deco p {
  font-family: "Oswald", roboto, sans-serif;
  color: #00491F;
  font-weight: 600;
  text-transform: uppercase;
}
.coach__deco--en {
  font-size: 155px;
  line-height: 90%;
}
@media (max-width: 1200px) {
  .coach__deco--en {
    font-size: 120px;
  }
}
@media (max-width: 992px) {
  .coach__deco--en {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .coach__deco--en {
    font-size: 26.6vw;
  }
}
.coach__item--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .coach__item--reverse {
    flex-direction: column-reverse;
  }
}
.coach .btn-social svg path {
  fill: #009C49;
}
.coach .btn-social:hover svg path {
  fill: #00491F;
}

.member h2.title {
  color: black;
}
@media (max-width: 767px) {
  .member h2.title {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .member .container {
    padding: 64px 0;
  }
}
.member__list {
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  width: 90%;
  max-width: 990px;
  justify-content: space-between;
  margin-left: auto;
}
@media (max-width: 767px) {
  .member__list {
    padding: 0 16px;
    width: 100%;
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto;
  }
}
.member__item {
  flex: 0 0 47%;
  display: flex;
  flex-flow: column;
  margin-bottom: 96px;
  padding: 0px 16px;
}
@media (max-width: 767px) {
  .member__item {
    flex: 0 0 270px;
    margin-bottom: 64px;
  }
}
.member__img {
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .member__img {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .member__img {
    margin-bottom: 18px;
  }
}
.member__intro {
  display: flex;
  align-items: flex-end;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .member__intro {
    flex-direction: column;
    align-items: flex-start;
  }
}
.member__title {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .member__title {
    margin-bottom: 6px;
  }
}
.member__name {
  color: #009C49;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 600 !important;
  line-height: 150%;
}
@media (max-width: 1200px) {
  .member__name {
    font-size: 44px;
  }
}
.member__job {
  color: #009C49;
  font-size: 30px;
  margin-left: 4px;
}
@media (max-width: 1200px) {
  .member__job {
    font-size: 24px;
  }
}
.member__goal {
  background-color: black;
  font-size: 15px;
  margin-left: 8px;
  margin-bottom: 10px;
  padding: 3px 5px;
  padding: 3px 12px;
}
@media (max-width: 1200px) {
  .member__goal {
    font-size: 14px;
    margin-bottom: 7px;
    margin-left: 6px;
    padding: 2px 8px;
  }
}
@media (max-width: 992px) {
  .member__goal {
    margin-left: 0;
    font-size: 15px;
    padding: 4px 12px;
  }
}
.member__quote {
  font-style: italic;
  font-size: 20px;
  color: #00491F;
}
@media (max-width: 992px) {
  .member__quote {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .member__quote {
    font-size: 18px;
  }
}

.product {
  background-color: #141414;
}
.product__item {
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 400px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .product__item {
    width: 100%;
    margin-bottom: 16px;
    background-size: 302%;
  }
}
.product__name {
  margin-bottom: 16px;
  color: #fff;
  font-weight: 400 !important;
}
.product__button {
  margin: 0 auto;
}
.product__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  max-width: 420px;
}
@media (max-width: 767px) {
  .product__img {
    width: 85%;
  }
}

.trainee {
  background-color: #f2f2f2;
}
.trainee h2.title {
  color: black;
}
@media (max-width: 767px) {
  .trainee h2.title {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .trainee .container {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .trainee .tab-buttons {
    background-color: #f2f2f2;
  }
}
.trainee__list {
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  padding: 0;
}
@media (max-width: 767px) {
  .trainee__list {
    padding: 0 16px;
    display: block;
  }
}
.trainee__item {
  flex: 0 0 25%;
  display: flex;
  flex-flow: column;
  margin-bottom: 96px;
  padding: 0px 24px;
}
@media (max-width: 1200px) {
  .trainee__item {
    flex: 0 0 33.3%;
  }
}
@media (max-width: 992px) {
  .trainee__item {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .trainee__item {
    flex-direction: row;
    margin-right: 0;
    padding: 0;
    margin-bottom: 56px;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .trainee__body {
    padding-left: 20px;
  }
}
.trainee__title {
  color: #009C49;
  margin-bottom: 18px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .trainee__title {
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .trainee h4.trainee__title {
    font-size: 27px;
  }
}
.trainee__resumeList {
  list-style-type: disc;
}
@media (max-width: 767px) {
  .trainee__resumeList {
    padding: 0px 0 12px 16px;
  }
}
.trainee__resumeItem {
  color: #666;
  line-height: 180%;
}
@media (max-width: 767px) {
  .trainee__resumeItem {
    font-size: 14px;
    line-height: 160%;
  }
}
.trainee__img {
  margin: 0 auto;
  margin-bottom: 40px;
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}
@media (max-width: 992px) {
  .trainee__img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .trainee__img {
    width: 45%;
    max-width: 175px;
    margin: 0;
  }
}
.trainee__quote {
  font-style: italic;
  font-size: 18px;
  color: #00491F;
}
@media (max-width: 767px) {
  .trainee__quote {
    font-size: 16px;
  }
}

.gallery {
  background-color: #0A0A0A;
  text-align: center;
}
.gallery__list {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .gallery__list {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .gallery__list {
    flex-direction: column;
  }
}
.gallery__item {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
  position: relative;
  width: 500px;
  width: calc(33.3333333333% - 16px);
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
  margin: 0 8px;
  margin-bottom: 32px;
}
.gallery__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  opacity: 0.8;
  width: 100%;
  height: 39%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.8) 64%, #000 100%);
  z-index: 1;
}
@media (max-width: 1200px) {
  .gallery__item {
    width: calc(33.3333333333% - 8px);
    margin: 0 4px;
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .gallery__item {
    width: calc(50% - 16px);
    max-width: 330px;
  }
}
@media (max-width: 767px) {
  .gallery__item {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 24px;
    max-width: 400px;
  }
}
.gallery__item:hover {
  transform: scale3d(1.01, 1.01, 1.01);
}
.gallery__item:hover .icon-more {
  opacity: 1;
}
.gallery__item:hover .gallery__cover {
  opacity: 1;
}
.gallery__item .icon-more {
  position: absolute;
  top: 14px;
  right: 14px;
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}
@media (max-width: 1200px) {
  .gallery__item .icon-more {
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .gallery__item .icon-more {
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
  }
}
.gallery__cover {
  opacity: 0.8;
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}
.gallery__name {
  top: 80%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 8px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.gallery__name h4 {
  color: white;
  margin-bottom: 4px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .gallery__name h4 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .gallery__name h4 {
    margin-bottom: 2px;
  }
}
.gallery__name p {
  font-size: 14px;
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .gallery__name p {
    font-size: 13px;
  }
}

.partner {
  background-color: #f2f2f2;
}
.partner h2.title {
  color: black;
}
.partner ul li {
  list-style: none;
}
.partner ul {
  padding: 0;
}
.partner__logoList {
  display: flex;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.partner__logoList:last-child {
  margin-bottom: 0;
}
.partner__logoList li {
  max-width: 180px;
  margin: 0 20px 18px;
}
@media (max-width: 1200px) {
  .partner__logoList li {
    margin: 0 16px 16px;
  }
}
@media (max-width: 992px) {
  .partner__logoList li {
    margin: 0 12px 12px;
  }
}
@media (max-width: 767px) {
  .partner__logoList li {
    max-width: 125px;
    margin: 0px 16px;
  }
}

.interview {
  padding-top: 64px;
}
.interview__content {
  color: white;
}
.interview__list {
  display: flex;
  flex-wrap: wrap;
}
.interview__item {
  width: 20%;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .interview__item {
    width: 50%;
  }
}
.interview .interview-phone {
  color: #8F8F8F;
}

.find-golf {
  background-image: url("../images/find-my-garmin-golf.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  max-height: 600px;
  height: 28.4vw;
}
@media (max-width: 992px) {
  .find-golf {
    height: 50vw;
    min-height: 320px;
  }
}
.find-golf__content {
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .find-golf__content {
    padding-left: 1rem;
  }
}
.find-golf__content h3 {
  margin-bottom: 24px;
  color: white;
}

.subcoach {
  background-color: white;
}
.subcoach h2.title {
  color: black;
}
@media (max-width: 767px) {
  .subcoach h2.title {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .subcoach .container {
    padding: 64px 0;
  }
}
.subcoach__list {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  padding: 0;
}
@media (max-width: 767px) {
  .subcoach__list {
    padding: 0 16px;
    flex-flow: row nowrap;
    justify-content: start;
    overflow-x: scroll;
  }
}
.subcoach__item {
  flex: 0 0 30%;
  display: flex;
  flex-flow: column;
  padding: 0px 16px;
}
@media (max-width: 992px) {
  .subcoach__item {
    flex: 0 0 50%;
    margin-bottom: 96px;
  }
}
.subcoach__item:nth-last-child(1) {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .subcoach__item {
    flex: 0 0 270px;
    margin-bottom: 16px;
    margin-right: 16px;
  }
}
.subcoach__title {
  color: #009C49;
  margin-bottom: 18px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .subcoach__title {
    margin-bottom: 8px;
  }
}
.subcoach__resumeList {
  list-style-type: disc;
}
.subcoach__resumeItem {
  color: #3D3D3D;
  line-height: 180%;
}
.subcoach__img {
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .subcoach__img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .subcoach__img {
    width: 100%;
  }
}
.subcoach__quote {
  font-style: italic;
  font-size: 18px;
  color: #00491F;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}/*# sourceMappingURL=all-ggc.css.map */