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

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

button,
input,
textarea {
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

strong,
b {
  font-weight: inherit;
}

em,
i {
  font-style: inherit;
}

body {
  background-color: #FEF7E7;
  color: #000;
  line-height: 1.5;
  font-family: "Roboto Flex", sans-serif;
}

img {
  max-width: 100%;
}

.fixNav {
  padding-top: 85px;
}

.header {
  position: relative;
  width: 100%;
}
.header.yellowBackground::before {
  content: " ";
  width: 100%;
  height: 1000px;
  position: absolute;
  top: -500px;
  background-color: #FFC700;
  border-radius: 50%;
  right: 50%;
  transform: translateX(50%);
  z-index: -1;
}
.header .mainTitle {
  font-family: "Spicy Rice", cursive;
  font-size: 112px;
  font-weight: 400;
}
.header .navBar {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 24px;
  font-size: 24px;
  font-weight: bold;
}
.header .navBar .active {
  position: relative;
}
.header .navBar .active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #FF6F55;
  left: 0;
  bottom: -8px;
}
.header .navBar.fix {
  background-color: #FEF7E7;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.header .icon1 {
  position: absolute;
  top: 30px;
  left: 30px;
}
.header .icon2 {
  position: absolute;
  top: 310px;
  left: 300px;
}
.header .icon3 {
  position: absolute;
  top: 310px;
  right: 300px;
}
.header .icon5 {
  position: absolute;
  top: 23px;
  left: 51px;
}
.header .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 195px;
}
.header .content .text {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .content .text .title {
  font-size: 128px;
  font-weight: 400;
  font-family: "Spicy Rice", cursive;
}
.header .content .name {
  color: #FF6F55;
  font-size: 128px;
  font-weight: 400;
  font-family: "Spicy Rice", cursive;
}
.header .content .description {
  font-size: 26px;
  margin: 0 19%;
  text-align: justify;
}
@media screen and (max-width: 1440px) {
  .header .icon2 {
    left: 13%;
  }
  .header .icon3 {
    right: 13%;
  }
}
@media screen and (max-width: 1273px) {
  .header .content .text .title {
    font-size: 100px;
  }
  .header .content .name {
    font-size: 85px;
  }
  .header .content .mainTitle {
    font-size: 85px;
  }
  .header .content .description {
    font-size: 18px;
  }
}
@media screen and (max-width: 1025px) {
  .header .content .text .title {
    font-size: 64px;
  }
  .header .content .name {
    font-size: 64px;
  }
  .header .content .mainTitle {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .header .icon2 {
    left: 5%;
    top: 137px;
    width: 47px;
  }
  .header .icon3 {
    right: 5%;
    top: 137px;
    width: 47px;
  }
  .header .content {
    margin-top: 10px;
  }
  .header.yellowBackground::before {
    height: 851px;
  }
}
@media screen and (max-width: 450px) {
  .header .icon1 {
    width: 25px;
  }
  .header .icon2 {
    width: 37px;
    top: 137px;
  }
  .header .icon3 {
    width: 37px;
    top: 137px;
  }
  .header .icon5 {
    top: 19px;
    left: 20px;
    width: 30px;
  }
  .header .navBar {
    font-size: 16px;
  }
  .header .content {
    gap: 8px;
    margin-top: 0;
    padding: 24px 37px;
  }
  .header .content .text img {
    width: 70px;
  }
  .header .content .text .title {
    font-size: 34px;
  }
  .header .content .name {
    font-size: 34px;
  }
  .header .content .description {
    width: 90%;
    font-size: 14px;
  }
  .header .content .mainTitle {
    font-size: 34px;
  }
  .header.yellowBackground::before {
    height: 400px;
    top: -172px;
  }
}

.projects {
  display: flex;
  padding: 24px 64px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1710px;
  margin: 0 auto;
}
.projects.back::after {
  content: "";
  background: url("/images//project1Back.png");
  position: absolute;
  width: 737px;
  height: 56px;
  right: 0;
  bottom: 26px;
}
.projects .textBox {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.projects .textBox .title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 96px;
  font-weight: bold;
  font-family: "Spicy Rice", cursive;
}
.projects .textBox .titleIcon {
  width: 105px;
}
.projects .subTitle {
  font-size: 40px;
  font-weight: bold;
}
.projects .description {
  font-size: 32px;
}
.projects .button {
  width: 450px;
  height: 80px;
  background-color: #746BEB;
  line-height: 80px;
  color: #fff;
  border-radius: 20px;
  font-size: 36px;
  display: block;
  text-align: center;
  margin-top: 26px;
}
.projects:nth-child(3) .button {
  background-color: #FF6F55;
}
.projects:nth-child(4) .textBox .button {
  background-color: #05B491;
}
@media screen and (max-width: 1024px) {
  .projects .textBox {
    max-width: 60%;
  }
  .projects .textBox .title {
    font-size: 66px;
  }
}
@media screen and (max-width: 540px) {
  .projects {
    flex-wrap: wrap;
    align-items: center;
    padding: 24px;
  }
  .projects .textBox {
    max-width: 100%;
  }
  .projects .textBox .title {
    font-size: 38px;
  }
  .projects .textBox .titleIcon {
    width: 60px;
  }
  .projects .subTitle {
    font-size: 28px;
  }
  .projects .description {
    font-size: 20px;
  }
  .projects .button {
    width: 280px;
    font-size: 24px;
    height: 60px;
    line-height: 60px;
  }
  .projects .imageBox {
    margin: 16px auto;
  }
}

.content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 64px;
  max-width: 1710px;
  margin: 0 auto;
}
.content .titleBox {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}
.content .titleBox p {
  font-size: 96px;
  font-weight: bold;
  font-family: "Spicy Rice", cursive;
}
.content .description {
  width: 70%;
  margin: 0 auto;
}
.content .text {
  font-size: 20px;
  text-align: justify;
  line-height: 40px;
}
.content .table {
  display: flex;
  justify-content: center;
}
.content .title {
  font-size: 36px;
  font-weight: bold;
}
.content .subTitle {
  font-size: 30px;
  font-weight: bold;
}
.content .titleIcon {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.content .titleIcon p {
  font-size: 32px;
  font-weight: bold;
}
.content .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.content .section .block {
  width: 100%;
}
.content .section .text {
  font-size: 26px;
}
.content .section .subtitle {
  font-size: 26px;
  font-weight: bold;
  line-height: 40px;
}
.content .section .list {
  margin: 28px 8px;
  width: 400px;
}
.content .section .list li {
  padding-left: 16px;
}
.content .section .box {
  width: 350px;
  height: 285px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 44px;
}
.content .section .box p {
  font-size: 25px;
}
.content .section .box .descriptionBox {
  width: 331px;
  height: 127px;
  background-color: #fff;
  border: 2px solid #746BEB;
  padding: 0 40px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 24px;
}
.content .section .box .descriptionBox.green {
  border-color: #05B491;
}
.content .section .box .descriptionBox p {
  font-size: 16px;
  text-align: justify;
}
.content .section .box .descriptionBox .badge {
  width: 132px;
  height: 40px;
  position: absolute;
  bottom: -11px;
  right: -38px;
  background-color: #FFC700;
  border: 2px solid;
  border-radius: 9px;
  padding: 0 24px;
}
.content .section .box .descriptionBox .badge p {
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}
.content .section .orangeBox {
  width: 450px;
  height: 580px;
  border: 4px solid #FF6F55;
  border-radius: 50px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.content .section .orangeBox .titleBox {
  display: flex;
  align-items: center;
  gap: 24px;
}
.content .section .orangeBox .titleBox .title {
  font-size: 28px;
  font-weight: bold;
}
.content .section .orangeBox .titleBox .subtitle {
  font-size: 15px;
}
.content .section .orangeBox .circle {
  min-width: 57px;
  height: 57px;
  border-radius: 50%;
  border: 2px solid;
  background-color: #FF6F55;
}
.content .section .orangeBox .circle.small {
  min-width: 21px;
  height: 21px;
}
.content .section .orangeBox .name {
  font-size: 18px;
  font-weight: bold;
}
.content .section .orangeBox .textRow {
  display: flex;
  gap: 16px;
  flex: 1;
}
.content .section .orangeBox .textRow p {
  font-size: 18px;
}
.content .section .numberBoxWrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.content .section .numberBoxWrapper.withTitle .numberBox {
  height: 340px;
}
.content .section .numberBoxWrapper .numberBox {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 240px;
  width: 300px;
}
.content .section .numberBoxWrapper .numberBox .number {
  font-size: 82px;
  font-weight: bold;
}
.content .section .numberBoxWrapper .numberBox .number .red {
  color: #D53F52;
}
.content .section .numberBoxWrapper .numberBox .number .orange {
  color: #E3663F;
}
.content .section .numberBoxWrapper .numberBox .number .green {
  color: #236633;
}
.content .section .numberBoxWrapper .numberBox .number .yellow {
  color: #DBAA3C;
}
.content .section .numberBoxWrapper .numberBox .text {
  text-align: left;
  font-size: 24px;
}
.content .section .numberBoxWrapper .numberBox .title {
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .content .section {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.content .boxWrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  width: 70%;
  margin: 20px auto;
}
.content .boxWrapper .box {
  width: 270px;
  height: 350px;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.content .boxWrapper .box p {
  text-align: center;
}
.content .boxWrapper .box .title {
  font-size: 28px;
  font-weight: bold;
}
.content .boxWrapper .box .text {
  font-size: 25px;
}
.content .darkBoxWrapper {
  display: flex;
  gap: 64px;
}
.content .darkBoxWrapper .darkBox {
  width: 320px;
  height: 220px;
  background-color: #746BEB;
  border: 2px solid;
  padding: 0 40px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 24px;
  margin-top: 24px;
}
.content .darkBoxWrapper .darkBox li {
  color: #fff;
}
.content .darkBoxWrapper .darkBox .badge {
  padding: 0 10px;
  height: 40px;
  position: absolute;
  top: -11px;
  left: -15px;
  background-color: #FFC700;
  border: 2px solid;
  border-radius: 9px;
}
.content .darkBoxWrapper .darkBox .badge p {
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .content .darkBoxWrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.content .bigImage {
  display: block;
  margin: 35px auto;
}
.content .greenBox .box {
  height: 360px;
}
@media screen and (max-width: 1641px) {
  .content .section .box {
    width: 22%;
    height: 360px;
  }
  .content .section .box .descriptionBox {
    width: 100%;
    height: 170px;
  }
  .content .greenBox .box {
    height: 420px;
  }
}
@media screen and (max-width: 1025px) {
  .content .section .box {
    width: 300px;
    height: 360px;
  }
  .content .section .box .descriptionBox {
    width: 280px;
    height: 170px;
  }
}
@media screen and (max-width: 768px) {
  .content {
    padding: 24px;
  }
  .content .titleBox p {
    font-size: 48px;
  }
  .content .titleBox img {
    width: 40px;
  }
  .content .description {
    width: 100%;
  }
  .content .title {
    font-size: 30px;
  }
  .content .subTitle {
    font-size: 24px;
  }
  .content .text {
    font-size: 16px;
  }
  .content .titleIcon p {
    font-size: 20px;
  }
  .content .section .box {
    gap: 24px;
  }
  .content .section .box .descriptionBox {
    max-width: 90%;
    min-height: fit-content;
    padding: 16px;
    padding-bottom: 30px;
  }
  .content .section .box p {
    font-size: 18px;
    text-align: center;
  }
  .content .section .text {
    font-size: 16px;
  }
  .content .section .list {
    width: auto;
  }
  .content .section .numberBoxWrapper {
    justify-content: center;
  }
  .content .section .numberBoxWrapper .numberBox {
    justify-content: center;
    text-align: center;
  }
  .content .section .numberBoxWrapper .numberBox .text {
    text-align: center;
  }
}

footer {
  padding: 24px 0;
  width: 100%;
}
footer p {
  font-size: 24px;
  text-align: center;
  line-height: 40px;
}
@media screen and (max-width: 450px) {
  footer p {
    font-size: 18px;
    text-align: center;
    line-height: 28px;
  }
}

/*# sourceMappingURL=style.css.map */
