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

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 30px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

:root {
  font-family: "Poppins", sans-serif;
  --primary-color: #ffb900;
}

body {
  background-color: #ffb900;
  background-image: linear-gradient(180deg, #ffdd64 0%, #bfbcb3 100%);
}

.content {
  max-width: 1170px;
  margin: auto;
}

.sticky {
  padding-bottom: 26px;
  position: fixed;
  padding-top: 10px;
  top: 0px;
  width: 100%;
  background-color: #ffdd64;
  z-index: 1;
}
.sticky .header {
  margin: auto;
  padding-top: 26px;
  height: 50px;
  width: 1170px;
  max-width: calc(100% - 48px);
  display: flex;
  align-items: center;
}
.sticky .header img {
  border-radius: 50%;
  height: 36px;
  width: 36px;
  line-height: 1.3;
}
.sticky .header p {
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #14464b;
  margin-left: 5px;
}
.sticky .header ul {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  margin-right: 70px;
  list-style-type: none;
}
.sticky .header a {
  padding: 10px;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  /* identical to box height, or 175% */
  text-align: center;
  color: #5f5b53;
  border-radius: 10px;
}
.sticky .header a:hover {
  color: #171100;
  border: solid 1px rgba(67, 53, 17, 0.7843137255);
  box-shadow: 1px 0.5px 1px 1px #333;
}
.sticky .header button {
  padding: 11px 41px;
  border-radius: 24.5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  /* identical to box height, or 175% */
  text-align: center;
  border: none;
}
.sticky .header .btn {
  color: rgba(0, 0, 0, 0.714);
  border: 1px solid rgba(0, 0, 0, 0.714);
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
}
.sticky .header .btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.714);
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}
.sticky .header .btn:hover {
  color: white;
}
.sticky .header .btn:hover::before {
  transform: translateX(0);
}

.block1 {
  min-height: 1000px;
  width: 100%;
}
.block1 .block1__body {
  padding: 150px 0 65px 0;
  display: flex;
  align-items: center;
  gap: 70px;
}
.block1 .block1__body .left {
  width: 60%;
}
.block1 .block1__body .left .title {
  font-weight: 800;
  font-style: italic;
  font-size: 100px;
  color: #14464b;
  line-height: 1.5;
}
.block1 .block1__body .left .desc {
  font-size: 45px;
  font-weight: 300;
  background-color: #a7cffa;
  width: 85%;
  text-align: center;
  margin-left: 10px;
  margin-top: 20px;
  border-radius: 5px;
}
.block1 .block1__body .right {
  flex-grow: 1;
}
.block1 .block1__body .right img {
  width: 100%;
  box-shadow: -3px 5px 5px 10px #4a3807;
  border-radius: 6px;
}

.conversion {
  width: 100%;
}
.conversion .box-icon {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}
.conversion .box-icon img {
  height: 70px;
}
.conversion .box-icon p {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 30px;
}
.conversion .box-icon span {
  margin-left: 15px;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 2px;
}
.conversion .box-icon .text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.block2 {
  width: 100%;
  min-height: 100vh;
  padding: 150px 0 65px 0;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.block2 .item {
  position: relative;
}
.block2 i.play {
  background-color: #fff;
  padding: 20px;
  border-radius: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 36px !important;
  position: absolute;
  top: 125px;
}
.block2 .contain-items {
  width: 100%;
  display: flex;
  gap: 10px;
  row-gap: 50px;
  flex-wrap: wrap;
}
.block2 .contain-items .item {
  border-radius: 10px;
  background-color: #fff;
  width: calc(33.33% - 6.7px);
}
.block2 .contain-items .item img {
  border-radius: 10px 10px 0px 0px;
  width: 100%;
  height: 250px;
}
.block2 .contain-items .item .text-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.block2 .contain-items .item i,
.block2 .contain-items .item p {
  font-size: 12px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background: #2e2307;
  color: white;
  padding: 96px 0px 36px 0px;
}
footer .box-top {
  display: flex;
  gap: 20px;
}
footer .box-top .left {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .box-top .left p {
  max-width: 90%;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #bfbcb2;
}
footer .box-top .left .box-icon {
  display: flex;
  gap: 20px;
}
footer .box-top .right {
  display: flex;
  gap: 20px;
}
footer .box-top .right li {
  list-style: none;
}
footer .box-top .right li:first-child {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 30px;
  color: white;
  position: relative;
}
footer .box-top .right li:first-child::after {
  content: "";
  background-color: #bfbcb2;
  width: 100%;
  max-width: 150px;
  left: 0;
  height: 1px;
  position: absolute;
  bottom: -12px;
}
footer .box-top .right .desc {
  margin-top: 10px;
  font-weight: 4 0;
  font-size: 14px;
  line-height: 26px;
  color: #bfbcb2;
  font-family: "Poppins";
  font-style: normal;
}

.blur {
  display: none;
}

@media only screen and (max-width: 800px) {
  body {
    position: relative;
    overflow: hidden;
  }
  body .blur {
    display: block;
    position: absolute;
    background-color: rgba(51, 51, 51, 0.8980392157);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
  }
  body .blur p {
    color: #ccc;
    font-size: 25px;
    box-shadow: 1px 1px 1px 1px rgba(54, 50, 50, 0.526);
    text-align: center;
    padding: 30px;
  }
}/*# sourceMappingURL=index.css.map */