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

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .logo {
  width: 200px;
  height: auto;
}
@media screen and (min-width: 768px) {
  header .logo {
    width: 300px;
  }
}
header nav {
  display: none;
  align-items: center;
}
@media screen and (min-width: 768px) {
  header nav {
    display: flex;
  }
}
header nav a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}
header nav a + a {
  margin-left: 15px;
}
header .side-icon {
  position: relative;
  top: 5px;
  width: 30px;
  height: 2px;
  background-color: white;
}
header .side-icon::before {
  content: "";
  width: 30px;
  position: absolute;
  top: -12px;
  left: 0;
  height: 2px;
  display: block;
  background-color: white;
}
header .side-icon::after {
  content: "";
  width: 30px;
  position: absolute;
  bottom: -12px;
  left: 0;
  height: 2px;
  display: block;
  background-color: white;
}
@media screen and (min-width: 768px) {
  header .side-icon {
    display: none;
  }
}
header .side-bar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  margin: auto;
  opacity: 1;
  transition: 0.5s opacity;
}
@media screen and (min-width: 768px) {
  header .side-bar {
    display: none;
  }
}
header .side-bar.hide {
  opacity: 0;
  z-index: -10;
}
header .side-bar .menu-list {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  padding: 60px 0;
}
header .side-bar .menu-list .close-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: auto;
}
header .side-bar .menu-list a {
  text-decoration: none;
  color: black;
  font-size: 26px;
  display: block;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 15px;
}
header .side-bar .menu-list a + a {
  margin-top: 15px;
}

.home-block {
  background-image: url(./assets/main-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100vh;
  position: relative;
}
.home-block .home-content {
  color: white;
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-block .home-title1 {
  font-size: 16px;
  border: 1px solid white;
  padding: 10px;
  margin-bottom: 20px;
}
.home-block .home-title2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.home-block .home-title3 {
  font-size: 14px;
}

.services-block {
  background-image: url(./assets/main-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: -1px;
  text-align: center;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .services-block {
    padding: 100px 0;
  }
}
.services-block .services-title {
  font-size: 60px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .services-block .services-title {
    font-size: 74px;
  }
}
.services-block .services-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
@media screen and (min-width: 768px) {
  .services-block .services-row {
    flex-wrap: nowrap;
  }
}
.services-block .services-row .services-item {
  width: 50%;
  text-align: center;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .services-block .services-row .services-item {
    width: 25%;
  }
}
.services-block .services-row .services-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.services-block .services-row .services-item .title {
  font-size: 26px;
  color: white;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .services-block .services-row .services-item .title {
    font-size: 36px;
  }
}
.services-block .services-row .services-item .content {
  color: white;
  line-height: 28px;
  font-size: 16px;
}

.about-block {
  background-image: url(./assets/main-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.about-block .about-section {
  padding: 54px 0;
}
@media screen and (min-width: 768px) {
  .about-block .about-section {
    padding: 96px 0;
    display: flex;
  }
}
.about-block .about-section .about-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-block .about-section .about-left {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
}
.about-block .about-section .about-left .about-title {
  color: white;
  font-weight: bold;
  margin-bottom: 48px;
  font-size: 47px;
  line-height: 52px;
}
@media screen and (min-width: 768px) {
  .about-block .about-section .about-left .about-title {
    margin-bottom: auto;
    font-size: 68px;
    line-height: 75px;
  }
}
.about-block .about-section .about-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.about-block .about-section .about-content {
  width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about-block .about-section .about-content {
    width: 50%;
    margin-top: 0;
    margin-left: 56px;
  }
}
.about-block .about-section .about-content .about-item {
  border-radius: 10px;
  padding: 32px;
  background-image: linear-gradient(rgba(232, 254, 240, 0), #fff6ee);
  background-color: #f7fafc;
}
.about-block .about-section .about-content .about-item .num {
  color: #ff822e;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.about-block .about-section .about-content .about-item .title {
  font-size: 27px;
  margin-bottom: 20px;
}
.about-block .about-section .about-content .about-item .content {
  font-size: 16px;
}
.about-block .about-section .about-content .about-item + .about-item {
  margin-top: 24px;
}

.payouts-block {
  background-image: url(./assets/main-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 54px 0 36%;
}
@media screen and (min-width: 768px) {
  .payouts-block {
    padding: 96px 0;
  }
}
.payouts-block .payouts-title1 {
  font-size: 40px;
  line-height: 44px;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 24px;
}
.payouts-block .payouts-title2 {
  font-size: 23px;
  line-height: 34px;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .payouts-block .payouts-row {
    display: flex;
    align-items: center;
  }
}
.payouts-block .payouts-row .payouts-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .payouts-block .payouts-row .payouts-left {
    width: 65%;
  }
}
.payouts-block .payouts-row .payouts-left .payouts-item img {
  display: block;
  margin-bottom: 10px;
  width: 40px;
}
.payouts-block .payouts-row .payouts-left .payouts-item .payouts-item-title {
  color: white;
  font-size: 27px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}
.payouts-block .payouts-row .payouts-left .payouts-item .payouts-item-content {
  font-size: 20px;
  line-height: 28px;
  color: white;
}
.payouts-block .payouts-row .payouts-left .payouts-item + .payouts-item {
  margin-top: 48px;
}
.payouts-block .payouts-row .payouts-content {
  width: 65%;
  margin-top: 48px;
  margin-left: 22%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .payouts-block .payouts-row .payouts-content {
    width: 40%;
    transform: translate(0, -15%);
    margin-top: 0;
    margin-left: 15%;
  }
}
.payouts-block .payouts-row .payouts-content img {
  width: 100%;
  height: auto;
  display: block;
}
.payouts-block .payouts-row .payouts-content .bg2 {
  position: absolute;
  top: 30%;
  left: -30%;
  width: 100%;
  height: auto;
  display: block;
}/*# sourceMappingURL=style.css.map */