@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Raleway;
  background: #f0f0f0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

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

.btn {
  display: inline-block;
  font-family: Raleway;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: none;
  outline: none;
  background: #FDCB50;
  cursor: pointer;
}
.btn:hover {
  transition: 0.2s;
  transform: scale(1.03, 1.03);
}
.btn:active {
  transition: 0.2s;
  transform: scale(0.98, 0.98);
}

.btn-primary {
  font-size: 16px;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: 10px;
}

.btn-secondary {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
}

.section-content {
  margin-bottom: 100px;
}
.section-content h2 {
  font-size: 68px;
  font-weight: 800;
  color: #FDCB50;
  text-align: center;
  margin-bottom: 40px;
}

header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding-top: 50px;
}
header .header-content .logo {
  justify-self: start;
}
header .header-content .logo img {
  width: 100%;
  max-width: 130px;
}
header .header-content nav {
  margin-left: auto;
  transition: 0.5s ease-in;
}
header .header-content nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
}
header .header-content nav a.btn {
  display: none;
}
header .header-content .hamburger {
  display: none;
  width: 35px;
  height: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
header .header-content .hamburger div {
  width: 100%;
  height: 3px;
  background: white;
}
header .header-content .hamburger::before {
  content: "";
  width: 100%;
  height: 3px;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.2s;
}
header .header-content .hamburger::after {
  content: "";
  width: 100%;
  height: 3px;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
}

.main-section {
  background: rgba(253, 203, 80, 0.5019607843);
  border-radius: 0 0 50px 50px;
}
.main-section .container {
  background-image: url("../images/bg-element.svg");
  background-repeat: no-repeat;
  background-position: -50px 0;
}
.main-section .container .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin-top: 100px;
  padding-bottom: 100px;
}
.main-section .container .section-content .text-content .tag {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 15px;
  padding: 10px 25px;
}
.main-section .container .section-content .text-content h1 {
  text-transform: uppercase;
  font-size: 64px;
  margin-bottom: 28px;
}
.main-section .container .section-content .text-content p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}
.main-section .container .section-content .image img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
}

.results .section-content .statistics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  text-align: center;
}
.results .section-content .statistics div {
  width: 100%;
  max-width: 350px;
}
.results .section-content .statistics div h3 {
  color: #FDCB50;
  font-size: 72px;
  margin-bottom: 16px;
}
.results .section-content .statistics div p {
  font-size: 32px;
  font-weight: 700;
}

footer {
  background: rgba(253, 203, 80, 0.5019607843);
  border-radius: 50px 50px 0 0;
  padding-top: 50px;
  padding-bottom: 50px;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
footer .footer-content .logo img {
  width: 100%;
  max-width: 130px;
}
footer .footer-content .social-media {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .footer-content .social-media svg {
  width: 40px;
  height: 40px;
}

@media (max-width: 940px) {
  .container {
    padding: 0 30px;
  }
  .btn-primary {
    font-size: 12px;
    padding: 15px 30px;
  }
  .btn-secondary {
    font-size: 10px;
  }
  .section-content {
    margin-bottom: 80px;
  }
  .section-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  header .header-content {
    padding-top: 35px;
  }
  header .header-content nav ul {
    gap: 40px;
    font-size: 16px;
  }
  .main-section .container {
    background-size: 350px, 100%;
    background-position: right 25px bottom, -80px -30px;
  }
  .main-section .container .section-content {
    margin-top: 80px;
    padding-bottom: 100px;
  }
  .main-section .container .section-content .tag {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .main-section .container .section-content h1 {
    max-width: 500px;
    font-size: 48px;
    margin-bottom: 16px;
  }
  .main-section .container .section-content .stat {
    top: 220px;
    right: 130px;
    gap: 20px;
    padding: 10px 15px;
  }
  .main-section .container .section-content .stat img {
    width: 30%;
  }
  .main-section .container .section-content .stat p:first-child {
    font-size: 18px;
  }
  .main-section .container .section-content .stat p:last-child {
    font-size: 16px;
  }
  .results .section-content .statistics div {
    max-width: 250px;
  }
  .results .section-content .statistics div h3 {
    font-size: 72px;
    margin-bottom: 16px;
  }
  .results .section-content .statistics div p {
    font-size: 24px;
  }
  footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  footer .footer-content .social-media {
    gap: 10px;
  }
  footer .footer-content .social-media svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 20px;
  }
  .btn-primary {
    font-size: 20px;
    padding: 12px 15px;
  }
  .btn-secondary {
    font-size: 14px;
  }
  .section-content {
    margin-bottom: 60px;
  }
  .section-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  header .header-content {
    padding-top: 20px;
    position: relative;
  }
  header .header-content .logo img {
    max-width: 100px;
  }
  header .header-content .hamburger {
    display: flex;
    z-index: 2;
  }
  header .header-content .active div {
    display: none;
  }
  header .header-content .active::before {
    top: 50%;
    rotate: -45deg;
    background: #000;
  }
  header .header-content .active::after {
    top: 50%;
    rotate: 45deg;
    background: #000;
  }
  header .header-content nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: calc(100% + 40px);
    position: absolute;
    top: 0;
    left: -20px;
    transform: translateY(-300px);
    z-index: 1;
    background: #fff;
    padding: 50px;
    box-sizing: border-box;
  }
  header .header-content nav ul {
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
  }
  header .header-content nav a.btn {
    display: block;
  }
  header .header-content .active {
    transform: translateY(0);
  }
  header .header-content a.btn {
    display: none;
  }
  .main-section .container {
    background-size: 0, 150%;
    background-position: 0, -80px -30px;
  }
  .main-section .container .section-content {
    text-align: center;
    margin-top: 80px;
    padding-bottom: 80px;
  }
  .main-section .container .section-content .tag {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .main-section .container .section-content h1 {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .main-section .container .section-content .stat {
    display: none;
  }
  .results .section-content h2 {
    margin-bottom: 10px;
  }
  .results .section-content .statistics div h3 {
    font-size: 60px;
    margin-bottom: 14px;
  }
  .results .section-content .statistics div p {
    font-size: 16px;
  }
  footer .footer-content .logo img {
    max-width: 100px;
  }
}/*# sourceMappingURL=course-info.css.map */