* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  body {
    font-size: 18px;
  }
}

h1, .h1, h2, .h2, h3, .h3,
h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
}

h1, .h1 {
  font-size: 36px;
  font-weight: 700;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 50px;
  }
}
@media (min-width: 1400px) {
  h1, .h1 {
    font-size: 72px;
  }
}

h2, .h2 {
  font-size: 28px;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 38px;
  }
}
@media (min-width: 1400px) {
  h2, .h2 {
    font-size: 50px;
  }
}

h4, .h4 {
  font-size: 18px;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 21px;
  }
}
@media (min-width: 1400px) {
  h4, .h4 {
    font-size: 24px;
  }
}

p {
  margin-bottom: 1rem;
}

a {
  outline: 0;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

form {
  display: block;
}

.form-control {
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: normal;
  border-radius: 3px;
  padding: 15px 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FAFAFA;
}
.form-control::-moz-placeholder {
  color: #6C757D;
}
.form-control::placeholder {
  color: #6C757D;
}
@media (max-width: 767px) {
  .form-control {
    padding: 10px 20px;
  }
}

.btn {
  font-size: clamp(16px, 5vw, 20px);
  font-weight: 600;
  line-height: 1;
  padding: 10px 35px;
  outline: 0;
  border-radius: 10px;
  color: #000000;
  background-color: #E8B31D;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.btn:hover {
  color: #000000;
  background-color: #E8B31D;
}

section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
}
.header .hright {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .hmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}
.header .hmenu ul li a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .header {
    background-color: #222;
    padding: 15px 0;
  }
  .header .hright {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: #222;
  }
  .header .hright.show {
    flex-direction: column;
    display: flex;
  }
  .header .hmenu ul {
    flex-direction: column;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .header .hlogo img {
    width: 60px;
  }
}

.banner {
  background: url("../img/banner-bg.png") no-repeat center;
  background-size: cover;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: white;
}
.banner h4 {
  line-height: 1.5;
  padding: 20px 0;
  color: inherit;
}
.banner h1 {
  color: inherit;
}

.section2 {
  background-color: #F7F8FA;
}

.section3 {
  background: #010D25;
  color: #fff;
}
.section3 h2, .section3 h4, .section3 p {
  color: inherit;
}

.section5 {
  background: #010D25;
  color: #fff;
}
.section5 h2, .section5 p {
  color: inherit;
}

.section7 {
  background: #010D25;
  color: #fff;
}
.section7 h2, .section7 p {
  color: inherit;
}
.section7 .accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section7 .accordion .card {
  padding: 0;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 24.556px 32.742px -14.734px rgba(149, 149, 149, 0.25);
  color: #5C5C5C;
  font-size: inherit;
}
.section7 .accordion .card .card-header {
  background-color: transparent;
  padding: 10px 25px;
  font-weight: 500;
  cursor: pointer;
}
.section7 .accordion .card .card-header .fa-circle-plus {
  font-size: 30px;
}
.section7 .accordion .card:has(> .show) .card-header .fa-circle-plus::before {
  content: "\f056";
}

.section8 {
  position: relative;
  background: #010D25;
}
.section8::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 991px) {
  .section8::before {
    width: 100%;
  }
}

.section9 {
  background: linear-gradient(90deg, #FCCE50 0%, #FACA44 51.92%, #F8C538 100%);
  padding: 50px 0 25px;
}
.section9 small {
  color: #555;
  font-size: 16px;
}
.section9 p {
  color: #000;
  font-weight: 500;
  letter-spacing: 0.18px;
  margin-top: 5px;
}

.footer {
  background: #000;
  color: #fff;
}
.footer h4, .footer p, .footer ul {
  color: inherit;
}
.footer h4 {
  margin: 30px 0;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.footer ul li {
  margin-bottom: 20px;
}
.footer ul li a {
  color: #fff;
  text-decoration: none;
}
.footer ul li a:hover {
  color: #fff;
}
.footer .ftop {
  padding: 50px 0;
}
.footer .fsocial {
  display: flex;
  gap: 18px;
}
.footer .fsocial a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #544A2F;
  color: #fff;
  text-decoration: none;
}
.footer .fcontact a {
  display: flex;
  gap: 15px;
}
.footer .fcontact a i {
  margin-top: 8px;
}
.footer .copy {
  text-align: center;
  padding: 8px 0 20px;
}/*# sourceMappingURL=style.css.map */