:root {
  /* --main-color: #e3a177; */
  --light-section-bg: #f5f5ef;
  --main-color: #000000;
  --main-title-color: #000000;
  --hover-color: #e3a177;
}

@font-face {
  font-family: 'SeasonsRegular';
  src: url('../fonts/seasons-reg.otf') format('opentype');
}

@font-face {
  font-family: 'SeasonsLight';
  src: url('../fonts/seasons-light.otf') format('opentype');
}

@font-face {
  font-family: 'SeasonsBold';
  src: url('../fonts/seasons-bold.otf') format('opentype');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-exp-line {
  font-family: 'SeasonsRegular', 'Poppins', sans-serif;
  font-size: 60px;
  letter-spacing: 8px;
  margin-top: 24px;
}

.hero-logo {
  filter: brightness(0) invert(1);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: '';
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--main-color);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.main-button-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  font-weight: bold;
}

.main-button-wrapper a {
  padding: 16px 48px;
  border: 0;
  background-color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 60px;
  z-index: 996;
  background: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background-color: var(--hover-color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Send whatsapp button
--------------------------------------------------------------*/

.send-whatsapp {
  position: fixed;
  visibility: visible;
  opacity: 1;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #25d366;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.send-whatsapp i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.send-whatsapp:hover {
  background-color: #20ba5a;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 40, 40, 0.9);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url('../img/hero.jpg') top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: '';
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 0px;
  position: relative;
  text-align: center;
}

#hero h1 {
  line-height: 36px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #8fffd6;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--main-color);
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 15px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--main-color);
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.btn-learn-more {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  transition: 0.3s;
  line-height: 1;
  color: #ffffff;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: var(--main-color);
  text-transform: uppercase;
}

.btn-learn-more:hover {
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# courses
--------------------------------------------------------------*/
.courses {
  background-color: var(--light-section-bg) !important;
}

.courses .section-title {
  color: var(--main-title-color) !important;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'SeasonsBold', 'Poppins', sans-serif;
}

.courses .section-title p {
  color: var(--main-title-color) !important;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  font-size: 17px;
  font-weight: 500;
}
.courses .icon-box {
  padding: 40px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 16px;
}

.courses .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.courses .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

.courses .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.courses .icon-box:hover {
  transform: translateY(-10px);
  border-color: var(--main-color);
}

.courses .icon-box:hover h4 a {
  color: var(--main-color);
}

.courses .image-container {
  width: 240px;
  height: 240px;
  overflow: hidden;
}

.courses .image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/*--------------------------------------------------------------
# How it works
--------------------------------------------------------------*/
.how {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../img/steps.jpg') fixed center center;
  background-size: cover;
  padding: 40px 0;
  height: 500px;
}

@media (max-width: 992px) {
  #how {
    height: auto;
  }
}

.how h3 {
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 120px;
  font-family: 'SeasonsBold', 'Poppins', sans-serif;
}

.how p {
  color: #fff;
}

@media (max-width: 1024px) {
  .how {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .how .how-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.how .icon-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.how .icon-box p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 32px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 32px;
  color: var(--main-color);
  float: left;
  line-height: 1;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #282828;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #5b5b5b;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0f0f0f;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
}

.unique-section {
  background-color: var(--light-section-bg);
}
.unique-section h2 {
  font-family: 'SeasonsBold', 'Poppins', sans-serif;
  font-size: 35px;
  color: #000000;
  margin-bottom: 36px;
}

.unique-images-wrapper {
  height: 500px;
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.unique-first-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 350px;
}

.unique-second-image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 350px;
}

@media (max-width: 500px) {
  .unique-first-image {
    height: 200px;
  }

  .unique-second-image {
    height: 200px;
  }

  .unique-images-wrapper {
    height: 340px;
  }
}

@media (max-width: 400px) {
  .unique-first-image {
    height: 180px;
  }

  .unique-second-image {
    height: 180px;
  }
}

.unique-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
}

.steps-number {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  font-weight: bold;
  padding: 24px;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  color: #ffffff;
}

.seasons-tilde {
  font-family: 'SeasonsRegular', 'Poppins', sans-serif;
  font-weight: 400;
}

.hero-thanks {
  background-image: url('../img/hero-thanks.png') !important;
  max-height: 100vh;
}

.hero-subtitle-thanks {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  #hero .hero-subtitle-thanks {
    font-size: 16px;
    line-height: 24px;
  }
}
