* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00b1fd;
  --secundary: #11161f;
  --white: #ffffff;
}
a,
ul {
  text-decoration: none;
  list-style-type: none;
}

.btn {
  border: none;
  padding: 0.7rem 1.7rem;
  border-radius: 16px;
  cursor: pointer;
  transform: scale(0.98);
  transition: all ease 0.3s;
}

.btn:hover {
  transform: scale(1);
}
.btn:active {
  transform: scale(0.99);
}
body {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

main {
  width: 100%;
}

main header {
  position: relative;
  padding: 0 6rem;
  width: 100%;
  height: 97vh;
  display: flex;
  flex-direction: column;
  background-color: var(--secundary);
}

header .brand-box {
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 0.3rem;
  margin: 4rem 0;
}

.brand-box .brand {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
}

header .header-content-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.header-content-box .content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.header-content-box h1 {
  font-size: 2.3rem;
  font-weight: 800;
}

h1 span {
  color: var(--primary);
}

.header-content-box .header-cta-box .cta {
  background-color: var(--primary);

  font-size: 1.6rem;
  font-weight: 600;
  color: var(--secundary);

  border-bottom: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}

.header-content-box .header-cta-box .cta:hover {
  border-bottom: 3px solid var(--white);
  border-right: 3px solid var(--white);
}

header .efect-play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.efect-play::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.efect-play .play {
  padding: 1.5rem;
  background-color: var(--primary);
  border-radius: 50%;
}
.play:hover {
  border: 4px solid var(--white);
}
.play i {
  font-size: 3rem;
}

.last-video-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 6rem 6rem;
  color: var(--secundary);
}

.last-video-section h3 {
  display: flex;
  flex-direction: column;
  align-items: center;

  font-size: 2.5rem;
}
.last-video-section > p {
  font-size: 1.3em;
}

#line {
  width: 96%;
  height: 4px;
  margin: 0.7rem 0;
  background-color: var(--primary);
}
.last-video-section .video-section-wrapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;

  margin: 1rem 0 3rem 0;
}
.last-video-section .videos-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 300px;
}

.videos-section .video-title,
.videos-section .video-descript {
  margin-left: 0.5rem;
}

.videos-section .video-box {
  width: 320px;
  height: 200px;
  background-color: #26343f;
  border-bottom: 4px solid var(--primary);
}

.last-video-section .video-cta .btn {
  width: 300px;
  font-size: 1.4rem;
  font-weight: 600;
  border-right: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  background-color: var(--primary);

  transition: all 0.3s ease;
}

.last-video-section .video-cta .btn:hover {
  border-right: 4px solid var(--secundary);
  border-bottom: 4px solid var(--secundary);
}

.highlight-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 6rem 6rem;
  background-color: #0f2636;
}

.highlight-section h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 2.5rem;
}
.highlight-section > p {
  font-size: 1.3em;
}

.highlight-section #line {
  width: 75%;
  height: 4px;
  margin: 0.7rem 0;
  background-color: var(--primary);
}

.highlight-section .highlight-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 2rem;

  margin-top: 4rem;
}

.highlight-box .highlight-items {
  position: relative;
  display: flex;
  align-items: center;

  background-color: #26343f;
  border-radius: 20px;
  border-bottom: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
}

.highlight-items:nth-child(4) {
  align-self: center;
}
.highlight-content {
  padding: 3rem;
}
.highlight-content .hight-step {
  position: absolute;
  top: -32px;
  left: 7px;

  border-radius: 50%;
  border: 4px solid var(--white);
  background-color: var(--primary);

  padding: 1rem;
}

.hight-step i {
  font-size: 1.5rem;
  font-weight: 700;
}

.calendar-month-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 6rem 6rem;
  background-color: var(--secundary);
}

.calendar-month-section h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 2.5rem;
}
.calendar-month-section > p {
  text-align: center;
  width: 60%;
  font-size: 1.3rem;
}

.calendar-month-section #line {
  width: 100%;
  height: 4px;
  margin: 0.7rem 0;
  background-color: var(--primary);
}

.calendar-month-section .calendar-month-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.calendar-month-box .calendar-month-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.calendar-month-items .calendar-date {
  width: 100%;

  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);

  padding: 0.5rem 1rem;
  border-radius: 20px;
  border-bottom: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
}
.calendar-month-items .calendar-content {
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calendar-content .calendar-video-box {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  background-color: #0f2636;
}
.calendar-content h5 {
  font-size: 1.4rem;
  font-weight: 600;
}
.calendar-content .calendar-video-title,
.calendar-video-descript {
  margin-left: 0.5rem;
}
.calendar-month-items .calendar-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-cta .btn {
  width: 100%;
  font-size: 1.3rem;
  font-weight: 600;

  background-color: var(--primary);
  border-right: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);

  transition: all 0.3s ease;
}
.calendar-cta .btn:hover {
  border-right: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
}

.testimonial-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 6rem 6rem;
  color: var(--secundary);
}

.testimonial-section h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 2.5rem;
}
.testimonial-section > p {
  text-align: center;
  width: 60%;
  font-size: 1.3em;
}

.testimonial-section .testimonial-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;

  margin-top: 2rem;
}

.testimonial-box .testimonial-items {
  height: 200px;
  padding: 2rem;

  border-radius: 16px;
  border-bottom: 4px solid var(--primary);
  background-color: #f6f9fb;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.testimonial-items .testimonial-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.testimonial-info .testimonial-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-stars {
  display: flex;
  gap: 0.5rem;
}

.testimonial-stars i {
  font-size: 1.7rem;
}
.testimonial-stars i.ph-fill {
  color: #fffb2c;
}

.form-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 6rem 6rem;
  background-color: var(--secundary);
}

.form-section h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 2.5rem;
}
.form-section > p {
  text-align: center;
  width: 50%;
  font-size: 1.3em;
}

.form-section .form-section-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-section-box .form-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 4rem;
}

.form-box form {
  position: relative;
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;

  height: 400px;
  width: 400px;
  border-radius: 20px;
  border-left: 3px solid var(--primary);
  border-top: 3px solid var(--primary);
}

form .form-cta {
  position: absolute;
  width: 80%;
  top: -3rem;
  padding: 1rem;
  border-radius: 24px;
  background-color: var(--primary);

  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: var(--secundary);
}

form .form-input-box {
  width: 80%;
  display: flex;
}

.form-input-box input {
  height: 50px;
  width: 100%;
  text-indent: 1rem;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 20px;
  border: 0;
  outline: 0;
  background-color: transparent;
  border-bottom: 4px solid var(--primary);
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.form-input-box input::placeholder {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.form-input-box input:focus,
input:active {
  border-right: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
}

.form-button-box {
  width: 80%;
  display: flex;
}
.form-button-box button {
  width: 100%;
  height: 50px;

  background-color: var(--primary);
  font-size: 1.6rem;
  font-weight: 700;
}

.form-button-box button:hover,
.form-button-box button:active {
  border-right: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
}

main footer {
  position: relative;
  padding: 4rem 6rem;
  width: 100%;
  height: 97vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--secundary);
}

footer .footer-content-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
}

header .footer-content-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-content-box .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-content-box h1 {
  font-size: 2.3rem;
  font-weight: 800;
}

h1 span {
  color: var(--primary);
}

.footer-content-box .footer-cta-box .btn.cta {
  width: 270px;
  height: 60px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--secundary);

  background-color: var(--primary);
  border-bottom: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}

.footer-content-box .footer-cta-box .cta:hover {
  border-bottom: 3px solid var(--white);
  border-right: 3px solid var(--white);
}

footer .info {
  text-align: center;
  font-weight: 500;
}

/* Breack Points */

/* SMALL */
@media only screen and (min-width: 590px) {
}

/* MEDIUN */
@media only screen and (max-width: 768px) {
  /* LARGE */
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 76%;
  }
  main {
    width: 100%;
  }
  main header {
    position: relative;
    padding: 0 3rem;
    width: 100%;
    height: 97vh;
    display: flex;
    flex-direction: column;
    background-color: var(--secundary);
  }
  header .brand-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    margin: 4rem 0;
  }
  header .header-content-box {
    width: 100%;
    display: grid;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  header .efect-play {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .last-video-section > p {
    font-size: 1.3em;
    text-align: center;
  }

  .last-video-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 6rem 3rem;
    color: var(--secundary);
  }

  .last-video-section .video-section-wrapp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
  }

  .highlight-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 6rem 3rem;
    background-color: #0f2636;
  }

  .highlight-section > h3 {
    text-align: center;
  }
  .highlight-section > p {
    font-size: 1.3em;
    text-align: center;
  }

  .highlight-section .highlight-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 4rem;

    margin-top: 4rem;
  }

  .calendar-month-section > p {
    text-align: center;
    width: 100%;
    font-size: 1.3rem;
  }

  .calendar-month-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 6rem 3rem;
    background-color: var(--secundary);
  }

  .calendar-month-section .calendar-month-box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 6rem 3rem;
    color: var(--secundary);
  }
  .testimonial-section > p {
    text-align: center;
    width: 100%;
    font-size: 1.3em;
  }
  .testimonial-section .testimonial-box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;

    margin-top: 2rem;
  }

  .form-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 6rem 3rem;
    background-color: var(--secundary);
  }

  .form-section > p {
    text-align: center;
    width: 100%;
    font-size: 1.3rem;
  }

  .form-section .form-section-box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-section-box .form-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
  }
  .form-box form {
    position: relative;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  
    height: 400px;
    width: max-content;
    border-radius: 20px;
    border-left: 3px solid var(--primary);
    border-top: 3px solid var(--primary);
  }
  form .form-cta {
    position: absolute;
    width: 60%;
    top: -3rem;
    padding: 1rem;
    border-radius: 24px;
    background-color: var(--primary);
  
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: var(--secundary);
  }

  main footer {
    position: relative;
    padding: 4rem 3rem;
    width: 100%;
    height: 97vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--secundary);
  }

  footer .footer-content-box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 4rem;
    text-align: center;
  }

  footer .info {
    text-align: center;
  }
}
