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

.hero_section:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero_section .container {
  padding-top: 80px;
}

.hero_section h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #124265;
  font-family: "Ubuntu", sans-serif;
}

.hero_section h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}

 .btn-get-started {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 15px;
  color: #fff;
  background: #5e72e4;
  text-transform: uppercase;
  width: 100%; /* Make the buttons full-width within the container */
  max-width: 400px; /* Optional, to prevent the buttons from being too wide */
  text-align: center;
}

 .btn-get-started:hover {
  background: #7987d7;
  color: #fff;
}

 .btn-get-started-secondary {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 15px;
  color: #fff;
  background: #9598a7;
  text-transform: uppercase;
  width: 100%; /* Make the buttons full-width within the container */
  max-width: 400px; /* Optional, to prevent the buttons from being too wide */
  text-align: center;
}

 .btn-get-started-secondary:hover {
  background: #bfbfc0;
  color: #fff;
}
.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the buttons */
  gap: 15px; /* Space between buttons */
}



.hero_section .icon-boxes {
  margin-top: 100px;
}

.hero_section .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.hero_section .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.hero_section .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

.hero_section .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.hero_section .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #5e72e4;
}

.hero_section .icon-box:hover {
  transform: scale(1.08);
}

.hero_section .icon-box:hover .title a {
  color: #5e72e4;
}

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

@media (max-height: 800px) {
  .hero_section {
    height: auto;
  }
}

@media (max-width: 992px) {
  .hero_section {
    height: auto;
  }

  .hero_section h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero_section h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

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

.section-bg {
  background-color: #f8fbfe;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}

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

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #5e72e4;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #5e72e4;
}
