:root {
  --navy: #071126;
  --navy-soft: #0a1830;
  --ink: #0d1428;
  --muted: #667386;
  --line: #dfe5ec;
  --light: #f4f6f8;
  --white: #ffffff;
  --pink: #e74e65;
  --teal: #27b8c2;
  --gold: #ffc107;
  --shadow: 0 18px 40px rgba(8, 17, 38, .12);
  --heading: 'Barlow Condensed', Impact, sans-serif;
  --body: 'Montserrat', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 15px;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

a,
button {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.container {
  max-width: 1260px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0 10px;
  background: rgba(7, 17, 38, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 150px;
  margin: 0 auto;
}

.brand img {
  width: 100%;
}

.hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(108px, 14vh, 160px) 0 clamp(64px, 8vh, 96px);
  color: var(--white);
  background-color: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7, 17, 38, .98) 0%, rgba(7, 17, 38, .86) 42%, rgba(7, 17, 38, .28) 100%), url('../images/hero-network.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center, right center;
  opacity: .95;
}

.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-copy {
  max-width: 780px;
}

.hero h1,
.section-heading h2,
.why-panel h2,
.course-card h3,
.reason-card h3,
.lead-form h2,
.why-item h3,
.student strong {
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 30px;
  font-size: 74px;
  line-height: .98;
}

.hero h1 span {
  color: var(--pink);
}

.hero p {
  max-width: 720px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.65;
}

.btn {
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(231, 78, 101, .28);
}

.btn-primary,
.btn-primary:not(:disabled):not(.disabled):active {
  background: var(--pink);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #da435b;
  color: var(--white);
}

.btn-secondary,
.btn-secondary:not(:disabled):not(.disabled):active {
  background: var(--teal);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #1faab4;
  color: var(--white);
}

.btn-wide {
  min-width: 330px;
  padding: 18px 28px;
  font-size: 16px;
}

.btn-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 720px);
  min-height: 64px;
  margin: 44px auto 0;
  font-size: 21px;
  gap: 14px;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-light {
  background: var(--light);
}

.section-white {
  background: var(--white);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 58px;
  line-height: 1;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 112px;
  height: 5px;
  margin: 26px auto 0;
  border-radius: 999px;
  background: var(--teal);
}

.section-heading p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.course-grid {
  margin-right: -18px;
  margin-left: -18px;
}

.course-grid > [class*="col-"] {
  display: flex;
  padding-right: 18px;
  padding-left: 18px;
  margin-bottom: 28px;
}

.course-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 18px rgba(8, 17, 38, .08);
}

.course-image {
  position: relative;
  height: 282px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-body {
  display: flex;
  flex: 1;
  min-height: 260px;
  flex-direction: column;
  padding: 36px 38px 34px;
}

.course-body h3 {
  margin: 0 0 22px;
  font-size: 31px;
  line-height: 1.08;
}

.course-body p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.course-body .btn {
  margin-top: auto;
  padding: 14px 18px;
  font-size: 15px;
}

.course-body .btn i {
  margin-left: 16px;
}

.why-home {
  padding-top: 56px;
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
  gap: 50px;
  align-items: center;
  padding: 64px 88px;
  border-radius: 8px;
  background: linear-gradient(110deg, #071126 0%, #08152c 70%, #2a172f 100%);
  color: var(--white);
}

.why-panel h2 {
  margin: 0 0 38px;
  font-size: 52px;
  line-height: 1;
}

.why-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 36px;
}

.why-item span {
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(231, 78, 101, .22);
  color: var(--pink);
  font-size: 23px;
  font-weight: 800;
}

.why-item:nth-child(3) span {
  background: rgba(39, 184, 194, .18);
  color: var(--teal);
}

.why-item h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 28px;
}

.why-item p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 16px;
  line-height: 1.6;
}

.why-image img {
  width: 100%;
  border-radius: 8px;
}

.site-footer {
  padding: 70px 0 32px;
  color: rgba(255, 255, 255, .72);
  text-align: center;
  background: var(--navy);
}

.footer-logo {
  width: 210px;
  margin: 0 auto 36px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  font-size: 20px;
}

.footer-contact i {
  margin-right: 18px;
  color: var(--teal);
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--white);
  text-decoration: none;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.instagram-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  text-decoration: none;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 24px;
  text-align: left;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, .4);
  font-size: 16px;
}

.copyright-brand {
  display: inline-flex;
  flex: 0 0 auto;
  margin-left: 24px;
  opacity: .62;
}

.copyright-brand:hover {
  opacity: 1;
}

.webdezan {
  width: 154px;
  height: auto;
}

.hero-course {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(108px, 14vh, 160px);
  padding-bottom: clamp(64px, 8vh, 96px);
}

.hero-course .hero-copy {
  max-width: 860px;
}

.hero-course h1 {
  max-width: 1020px;
  margin-bottom: 42px;
  font-size: 78px;
}

.lead-form {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  padding: 52px 48px 48px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin: 0 0 18px;
  font-size: 38px;
}

.lead-form p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.lead-form label {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.lead-form .form-control {
  height: 58px;
  margin-bottom: 22px;
  border: 0;
  border-radius: 6px;
  background: #f7f8fa;
  color: var(--ink);
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(8, 17, 38, .08);
}

.lead-form .btn {
  min-height: 62px;
  margin-top: 18px;
  font-size: 20px;
}

.form-feedback {
  min-height: 24px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
}

.form-feedback.is-success {
  color: #149a6b;
}

.learn-section {
  padding-top: 112px;
  padding-bottom: 120px;
}

.learn-grid {
  display: grid;
  max-width: 1370px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 56px;
}

.learn-item {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 22px;
  padding: 24px 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 14px rgba(8, 17, 38, .08);
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

.learn-item i {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal);
  font-size: 13px;
}

.reasons-section {
  padding-top: 118px;
  padding-bottom: 118px;
}

.reasons-section .section-heading h2::after {
  background: var(--pink);
}

.reason-grid > [class*="col-"] {
  margin-bottom: 30px;
}

.reason-card {
  height: 100%;
  min-height: 280px;
  padding: 0 36px 34px;
  border-radius: 8px;
  background: #fbfcfd;
  text-align: center;
}

.reason-card span {
  display: inline-flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  margin: -43px auto 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 6px 13px rgba(8, 17, 38, .1);
  font-size: 29px;
  font-weight: 800;
}

.reason-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.08;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.testimonials-section {
  padding-top: 112px;
  padding-bottom: 112px;
  background: var(--navy);
  color: var(--white);
}

.heading-dark h2 {
  color: var(--white);
}

.heading-dark h2::after {
  display: none;
}

.heading-dark p {
  color: rgba(255, 255, 255, .58);
}

.testimonial-slider {
  position: relative;
  padding-bottom: 82px;
}

.testimonial-grid > [class*="col-"] {
  display: flex;
  margin-bottom: 30px;
}

.testimonial-card {
  display: flex;
  width: 100%;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 46px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.stars {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0;
}

.stars i {
  margin-right: 7px;
}

.testimonial-card > p {
  margin: 0 0 36px;
  color: #404757;
  font-size: 19px;
  font-style: italic;
  line-height: 1.75;
}

.student {
  display: flex;
  align-items: center;
  gap: 20px;
}

.student img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.student-avatar {
  display: inline-flex;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(231, 78, 101, .14);
  color: var(--pink);
  font-size: 18px;
  font-weight: 800;
}

.student-avatar-teal {
  background: rgba(39, 184, 194, .14);
  color: var(--teal);
}

.student strong {
  display: block;
  font-size: 20px;
}

.student div span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 16px;
}

.testimonial-indicators {
  position: static;
  margin: 10px 0 0;
  align-items: center;
  justify-content: center;
}

.testimonial-indicators li {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .36);
  opacity: 1;
}

.testimonial-indicators .active {
  width: 28px;
  border-radius: 999px;
  background: var(--pink);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.testimonial-control {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.testimonial-control:hover,
.testimonial-control:focus {
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  text-decoration: none;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--fade-delay, 0ms);
  will-change: opacity, transform;
}

.fade-in-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 136px;
  }

  .hero h1,
  .hero-course h1 {
    font-size: 62px;
  }

  .hero p {
    font-size: 17px;
  }

  .lead-form {
    padding: 40px 34px;
  }

  .why-panel {
    padding: 54px 42px;
  }

  .learn-grid {
    gap: 24px;
  }
}

@media (max-width: 991.98px) {
  .hero,
  .hero-course {
    min-height: 100vh;
    min-height: 100svh;
    padding: 120px 0 72px;
  }

  .hero::before {
    background-size: cover, auto 100%;
    background-position: center, 65% center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-course .lead-form {
    margin: 36px auto 0;
  }

  .why-panel {
    grid-template-columns: 1fr;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    padding: 8px 0;
  }

  .brand {
    width: 84px;
  }

  .hero,
  .hero-course {
    min-height: 100vh;
    min-height: 100svh;
    padding: 96px 0 52px;
  }

  .hero h1,
  .hero-course h1 {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .hero p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero .container,
  .hero .row,
  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .hero-course .row {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-course .row > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }

  .btn-wide,
  .btn-large {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 15px 18px;
    font-size: 15px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .why-panel h2 {
    font-size: 38px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .course-image {
    height: 220px;
  }

  .course-body {
    min-height: 0;
    padding: 26px 20px 24px;
  }

  .course-body h3 {
    font-size: 26px;
  }

  .course-body p {
    font-size: 14px;
  }

  .why-panel {
    padding: 34px 20px;
  }

  .why-item {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }

  .why-item span {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .lead-form {
    max-width: 100%;
    padding: 26px 18px;
  }

  .lead-form h2 {
    font-size: 31px;
  }

  .lead-form p,
  .lead-form label,
  .lead-form .form-control {
    font-size: 14px;
  }

  .learn-item {
    min-height: 76px;
    gap: 14px;
    padding: 18px;
    font-size: 16px;
  }

  .reason-card {
    min-height: 220px;
    padding: 0 22px 28px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-card > p {
    font-size: 16px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-contact {
    font-size: 15px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .copyright-brand {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-element {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

*,
*::before,
*::after,
img {
  border: 0 !important;
  border-radius: 0 !important;
}
