/*
  Reset
*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input,
select,
textarea {
  -webkit-appearance: none;
}

:root {
  --white: #ffffff;
  --gray-500: #d4d4d4;
  --gray-800: #4a4a4a;
  --gray-900: #121214;
  --gold: #daa520;
  --header-height: 6.25rem;
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 87.5%;
  }
}

body,
input,
textarea,
select,
button {
  font: 400 1rem "Poppins", sans-serif;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.title-config {
  text-align: center;
}

.title-config h2 {
  text-transform: uppercase;
  max-width: 530px;
  margin: 0 auto;
  font-size: 1.9375rem;
}

.title-config span {
  width: 88.57px;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, color-stop(-37.08%, #daa520), color-stop(96.98%, rgba(218, 165, 32, 0)));
  background: linear-gradient(270deg, #daa520 -37.08%, rgba(218, 165, 32, 0) 96.98%);
  border-radius: 43px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.button-config {
  padding: 1.4rem 2.81rem;
  background: linear-gradient(95.44deg, #daa520 -14.89%, #ad7f09 117.01%);
  border-radius: 1rem;
  color: var(--white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4rem;
}

.button-config:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

/* swiper */
.swiper-slide {
  height: auto;
  padding: 4rem 1rem;
}

.swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
}

.button-wp {
  position: fixed;
  right: 1rem;
  bottom: -4rem;
  z-index: 998;
  width: 2.3rem;
  height: 2.3rem;
  -webkit-transition: bottom 0.2s;
  transition: bottom 0.2s;
}

.button-wp img {
  width: 100%;
}

.button-wp.show {
  bottom: 1rem;
}

/*
  end Reset
*/
/*
  Header
*/
#header {
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  z-index: 999;
  border-bottom: 1px solid var(--gray-500);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  top: 0;
}

#header.scroll {
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

#header a {
  background-image: url("../img/logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 12rem;
  height: 5rem;
}

/*
  end Header
*/
/*
  Banner
*/
#banner {
  margin-top: var(--header-height);
  height: calc(100vh - var(--header-height));
  width: 100%;
}

@media (max-width: 900px) {
  #banner {
    height: auto;
    padding: 5rem 0;
  }
}

#banner .banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  height: 100%;
}

#banner .banner-content > div {
  width: 50%;
}

@media (max-width: 900px) {
  #banner .banner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #banner .banner-content > div {
    width: 100%;
  }
}

#banner .banner-content .banner-data {
  text-align: center;
}

#banner .banner-content .banner-data h3,
#banner .banner-content .banner-data h2 {
  text-transform: uppercase;
  color: var(--gray-900);
}

#banner .banner-content .banner-data h3 {
  font-size: 1.2rem;
}

#banner .banner-content .banner-data h2 {
  font-size: 1.8rem;
}

#banner .banner-content .banner-data i {
  color: var(--gold);
  font-size: 2.8rem;
  margin: 2.25rem 0 1.75rem 0;
}

#banner .banner-content .banner-data a {
  margin-top: 2.25rem;
  padding: 24px 78px;
  background: linear-gradient(90.07deg, #daa520 30.22%, #a57b11 228.97%);
  border-radius: 40px 0px 40px 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--white);
  font-weight: 500;
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}

#banner .banner-content .banner-data a:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

#banner .banner-content .banner-data p {
  max-width: 361px;
  margin: 0 auto;
  text-align: center;
  color: var(--gray-900);
  opacity: 0.76;
  font-weight: 500;
}

#banner .banner-content .banner-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#banner .banner-content .banner-image img {
  width: 100%;
}

@media (max-width: 1400px) {
  #banner .banner-content .banner-image img {
    width: 90%;
  }
}

@media (max-width: 900px) {
  #banner .banner-content .banner-image img {
    width: 80%;
    margin-top: 2rem;
  }
}

/*
  end Banner
*/
/*
  Player
*/
#player {
  background-image: url("../img/background.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10rem 0;
  width: 100%;
  text-align: center;
}

#player .video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 127px;
}

#player .video video {
  width: 100%;
  border-radius: 0.25rem;
}

@media (max-width: 900px) {
  #player .video video {
    height: 500px;
  }
}

#player .video i {
  color: var(--gold);
  font-size: 4rem;
  margin: 4rem 0;
  position: relative;
  -webkit-animation: animationFigure infinite 0.8s;
          animation: animationFigure infinite 0.8s;
}

@-webkit-keyframes animationFigure {
  0% {
    top: 0;
  }
  50% {
    top: 10px;
  }
  60% {
    top: 5px;
  }
  100% {
    top: 0;
  }
}

@keyframes animationFigure {
  0% {
    top: 0;
  }
  50% {
    top: 10px;
  }
  60% {
    top: 5px;
  }
  100% {
    top: 0;
  }
}

#player .video img {
  cursor: pointer;
}

@media (max-width: 900px) {
  #player .video img {
    width: 100%;
  }
}

#player a {
  position: relative;
  top: 40px;
}

@media (max-width: 900px) {
  #player a {
    top: 60px;
  }
}

/*
  end Player
*/
/*
  About
*/
#about {
  width: 100%;
  padding: 13rem 0;
}

@media (max-width: 900px) {
  #about {
    padding: 9rem 0;
  }
}

#about .about-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#about .about-content > div {
  width: 50%;
}

@media (max-width: 900px) {
  #about .about-content img {
    width: 90%;
  }
}

@media (max-width: 900px) {
  #about .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #about .about-content > div {
    width: 100%;
    text-align: center;
  }
}

#about .about-content .about-data {
  text-align: right;
}

@media (max-width: 900px) {
  #about .about-content .about-data {
    margin-top: 6rem;
    text-align: center;
  }
}

#about .about-content h2 {
  font-size: 2.25rem;
  color: var(--gray-900);
}

#about .about-content h2 span {
  color: var(--gold);
}

@media (max-width: 1400px) {
  #about .about-content h2 {
    font-size: 1.9rem;
  }
}

#about .about-content p {
  margin-top: 1.75rem;
  color: var(--gray-900);
  opacity: 0.8;
  max-width: 526px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/*
  end About
*/
/*
  Benefits
*/
#benefits {
  background: linear-gradient(102.18deg, #121214 -5.03%, #2b2b2c 101.08%);
  padding: 9rem 0;
}

#benefits .benefits-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  margin-top: 9rem;
}

@media (max-width: 900px) {
  #benefits .benefits-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

#benefits .benefits-content .benefit-single p {
  color: var(--white);
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  #benefits .benefits-content .benefit-single p {
    text-align: center;
  }
}

#benefits .benefits-content .benefit-single p + p {
  margin-top: 8.5rem;
}

#benefits .benefits-content .benefit-single p span {
  color: var(--gold);
}

#benefits .benefits-content .benefit-single > .circle {
  position: relative;
}

@media (max-width: 900px) {
  #benefits .benefits-content .benefit-single > .circle {
    display: none;
  }
}

#benefits .benefits-content .benefit-single > .circle + .circle {
  margin-top: 1.8rem;
}

#benefits .benefits-content .benefit-single > .circle + .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -28.8px;
  width: 2px;
  height: 28.8px;
  background: var(--white);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#benefits .benefits-content .benefit-single > .circle span {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 93px;
  height: 93px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.benefits-button {
  text-align: center;
  position: relative;
  top: -40px;
}

/*
  end Benefits
*/
/*
  Course
*/
#courses {
  padding: 9rem 0;
}

#courses > .container > h2 {
  text-align: center;
  font-size: 1.9rem;
  max-width: 704px;
  margin: 0 auto;
  color: var(--gray-900);
}

#courses > .container > h2 > span {
  color: var(--gold);
}

#courses i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--gold);
  font-size: 4rem;
  margin: 4.1rem 0 3.4rem 0;
}

#courses .courses-content {
  margin-top: 8rem;
}

#courses .courses-content .courses-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 900px) {
  #courses .courses-content .courses-single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#courses .courses-content .courses-single:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 6rem;
}

@media (max-width: 900px) {
  #courses .courses-content .courses-single:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#courses .courses-content .courses-single div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#courses .courses-content .courses-single p {
  color: var(--gray-900);
  font-weight: 600;
  font-size: 1.2rem;
  opacity: 0.8;
}

#courses .courses-content .courses-single p span {
  color: var(--gold);
}

#courses .courses-content .courses-single p.ml {
  margin-left: 3rem;
}

@media (max-width: 900px) {
  #courses .courses-content .courses-single p.ml {
    margin-left: 0;
  }
}

#courses .courses-content .courses-single img {
  width: 500px;
  height: 540px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 900px) {
  #courses .courses-content .courses-single img {
    width: 100%;
    margin-top: 4rem;
  }
}

/*
  end Course
*/
/*
  Schedule
*/
#schedule {
  background-image: url("../img/background-reverse.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20rem 0 5rem 0;
  width: 100%;
}

#schedule .button-schedule {
  text-align: center;
  margin-top: 4rem;
}

#schedule .course .course-content {
  background: var(--gold);
  padding: 2rem;
  border-radius: 0.25rem;
}

#schedule .course .course-content .course-title {
  color: var(--white);
  text-align: center;
}

#schedule .course .course-content .course-title h2 {
  font-size: 1.4rem;
  font-weight: 500;
}

#schedule .course .course-content .course-title span {
  font-size: 0.8rem;
  opacity: 0.8;
}

#schedule .course .course-content .course-data {
  text-align: left;
  margin-top: 2rem;
}

#schedule .course .course-content .course-data ul {
  list-style: disc;
  list-style-position: inside;
  color: var(--white);
}

/*
  end Schedule
*/
/*
  Direct
*/
#direct {
  padding: 9rem 0;
}

#direct > .container > p {
  color: var(--gray-800);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-top: 2rem;
}

#direct > .container > p > span {
  color: var(--gold);
  font-weight: 600;
}

#direct .button-direct {
  text-align: center;
  margin-top: 6rem;
}

#direct .price-formatted {
  text-align: center;
  margin-top: 3rem;
}

#direct .price-formatted h3 {
  color: var(--gold);
  font-size: 2rem;
}

#direct .price-formatted h3 span {
  position: relative;
  padding: 0 0.5rem;
}

#direct .price-formatted h3 span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background: var(--gold);
}

#direct .price-formatted h4 {
  color: var(--gray-800);
}

#direct .direct-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  margin-top: 6rem;
}

@media (max-width: 900px) {
  #direct .direct-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

#direct .direct-content .direct-single {
  text-align: center;
  padding: 3rem;
}

#direct .direct-content .direct-single:last-child {
  border: 2px solid var(--gold);
  border-radius: 0.25rem;
}

#direct .direct-content .direct-single h2 {
  color: var(--gray-900);
}

#direct .direct-content .direct-single p {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  color: var(--gray-800);
  font-weight: 500;
}

#direct .direct-content .direct-single p span {
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--gold);
}

#direct .direct-content .direct-single i {
  color: var(--gold);
  font-size: 2.5rem;
  margin: 2rem 0;
}

#direct .direct-content .direct-single h3 {
  color: var(--gray-800);
  opacity: 0.8;
}

/*
  end Direct
*/
/*
  Footer
*/
#footer {
  background: var(--gray-900);
  padding: 1rem 0;
}

#footer .footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
}

@media (max-width: 900px) {
  #footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#footer .footer-content .footer-image {
  background: var(--white);
  padding: 1.3rem;
  position: relative;
  top: -1rem;
  border-radius: 0 0 0.5rem 0.5rem;
}

#footer .footer-content .footer-image img {
  width: 240px;
}

#footer .footer-content span {
  margin-left: 1rem;
}

@media (max-width: 900px) {
  #footer .footer-content span {
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer .footer-content span + span {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}

/*
  end Footer
*/
/*
  Form
*/
.form {
  margin-top: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh - var(--header-height));
}

.form form {
  width: 650px;
  padding: 0 2rem;
}

.form form h2 {
  text-align: center;
  font-size: 1.7rem;
  color: var(--gray-900);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.form form h2 span {
  color: var(--gold);
}

.form form .form-single {
  margin-top: 15px;
}

.form form .form-single input[type="text"],
.form form .form-single input[type="email"],
.form form .form-single input[type="tel"],
.form form .form-single input[type="submit"],
.form form .form-single input[type="password"] {
  width: 100%;
  height: 44px;
  border: 2px solid;
  border-color: #ccc;
  padding-left: 15px;
  border-radius: 0.25rem;
  font-size: 1rem;
  outline: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.form form .form-single input[type="text"]:focus,
.form form .form-single input[type="email"]:focus,
.form form .form-single input[type="tel"]:focus,
.form form .form-single input[type="submit"]:focus,
.form form .form-single input[type="password"]:focus {
  border-color: var(--gold);
}

.form form .form-single select {
  width: 100%;
  height: 44px;
  padding-left: 15px;
  border: 2px solid;
  border-color: #ccc;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0.25rem;
  color: var(--gray-800);
}

.form form .form-single select:focus {
  border-color: var(--gold);
}

.form form .form-single input[type="submit"] {
  background: var(--gold);
  color: var(--white);
  border: 0;
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
  cursor: pointer;
}

.form form .form-single input[type="submit"]:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.form form .form-single textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: 2px solid;
  border-color: #ccc;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  padding: 15px;
  border-radius: 0.25rem;
  outline: none;
  display: none;
}

.form form .form-single textarea:focus {
  border-color: var(--gold);
}

.form form .form-single textarea.showText {
  display: block;
}

/*
  end Form
*/
/*
  Testimonials
*/
#testimonials {
  width: 100%;
  padding-bottom: 5rem;
}

.testimonial-content {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.testimonial-content .testimonial-single iframe {
  width: 100%;
  height: 300px;
  border-radius: 0.25rem;
}

@media (max-width: 768px) {
  .testimonial-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

/*
  end Testimonials
*/
/*# sourceMappingURL=style.css.map */