@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  overflow-x: hidden !important;
}

header {
  min-height: 141px;
  background-color: #fff;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 219px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

header img.logo {
  width: 100px;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

header nav a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 25px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

header nav a.active {
  color: #51B950;
}

section.sec-1 {
  width: 100vw;
  position: relative;
  min-height: calc(686px + 141px);
  background: url("../images/sec_1_left.svg"), radial-gradient(#6B6767 0.5%, #000000 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px calc((100vw - 1680px)/2);
  padding-top: 141px;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-blend-mode: luminosity;
  overflow: hidden;
}

section.sec-1 .left-sec {
  z-index: 1;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 600px;
          flex: 1 1 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 19px;
}

section.sec-1 .left-sec img {
  width: 330px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  margin-bottom: 7px;
  left: 0;
}

section.sec-1 .left-sec h1 {
  max-width: 590px;
  text-align: left;
  font-size: 63px;
  font-weight: 600;
  line-height: 77px;
  color: #FFFFFF;
}

section.sec-1 .left-sec p {
  max-width: 650px;
  text-align: left;
  font-size: 41px;
  line-height: 57px;
  font-weight: 500;
  color: #FF166B;
}

section.sec-1 .right-sec {
  z-index: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 600px;
          flex: 1 1 600px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.sec-1 .right-sec .video {
  border: 8px solid #fff;
  max-width: 824px;
  max-height: 455px;
  position: relative;
}

section.sec-1 .right-sec .video img {
  position: relative;
  width: 100%;
  max-width: 851px;
  height: auto;
}

section.sec-1 .right-sec .video::before {
  content: url("../images/play_icon.svg");
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 217px;
  height: 217px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#FF5D98), to(#C80049));
  background: linear-gradient(90deg, #FF5D98, #C80049);
}

section.sec-1 .right-sec iframe {
  max-width: 824px;
  max-height: 455px;
  position: relative;
  width: 100%;
}

section.sec-1 .right-sec h1 {
  text-align: center;
  font-size: 45px;
  line-height: 51px;
  font-weight: 600;
  color: #FFCD32;
  max-width: 100%;
}

section.sec-1 .right-sec a {
  position: relative;
  margin: auto;
  max-width: 100%;
  margin-top: 10px;
  background-color: #FFCD32;
  text-decoration: none;
  width: 430px;
  padding: 10px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  border-radius: 18px;
  cursor: pointer;
}

@media only screen and (max-width: 500px) {
  section.sec-1 .right-sec a {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 30px;
  }
}

section.sec-1 .right-sec a i {
  font-size: 46px;
  display: block;
  color: #000;
}

section.sec-1 .right-sec a span {
  color: #000;
  padding-left: 10px;
  text-transform: uppercase;
  font-size: 1.26rem;
  text-align: center;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 500px) {
  section.sec-1 .right-sec a span {
    font-size: 1rem;
  }
}

section.sec-1 img.main-back {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: calc(50% + 141px);
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
  max-width: 548px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
  display: none;
}

@media only screen and (max-width: 1024px) {
  section.sec-1 img.main-back {
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
}

section.sec-2 {
  position: relative;
  width: 100vw;
  min-height: 1435px;
  background: radial-gradient(#FF5D98 0.5%, #C80049 50%);
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  row-gap: 145px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 85px calc((100vw - 1750px)/2) 20px;
}

section.sec-2 img.backgroud {
  position: absolute;
  bottom: 0px;
  right: -357px;
  overflow: hidden;
  z-index: 0;
}

section.sec-2 > div {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 600px;
          flex: 1 1 600px;
  z-index: 1;
}

section.sec-2 .item-1 h1 {
  font-size: 63px;
  font-weight: 600;
  line-height: 77px;
  color: #FFFFFF;
  max-width: 90%;
  text-align: left;
  margin-bottom: 30px;
}

section.sec-2 .item-1 p {
  position: relative;
  max-width: 801px;
  font-size: 34px;
  line-height: 51px;
  color: #FFFFFF;
}

section.sec-2 ul {
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}

section.sec-2 ul li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0 1fr;
      grid-template-columns: 0 1fr;
  gap: 34px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 30px;
  color: #FFFFFF;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

section.sec-2 ul li::before {
  content: url("../images/awesome-check.svg");
  font-size: 25px;
}

section.sec-2 .item-3 h1 {
  font-size: 90px;
  font-weight: 600;
  line-height: 77px;
  margin-bottom: 30px;
  color: #FFFFFF;
  max-width: 100%;
}

section.sec-3 {
  position: relative;
  width: 100vw;
  height: 1041px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../images/sec_3_back.svg"), #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: luminosity;
}

section.sec-3 h1 {
  font-size: 70px;
  font-weight: 600;
  line-height: 77px;
  text-align: center;
  max-width: 90%;
  color: #FFFFFF;
  margin-bottom: 57px;
}

section.sec-3 iframe {
  height: 695px;
  max-width: 90%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  border: 11px solid #FFFFFF;
}

section.sec-4 {
  width: 100vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  padding: 66px calc((100vw - 1750px)/2);
}

section.sec-4 .top-sec {
  position: relative;
  width: 100%;
  min-height: 2658px;
  border-radius: 47px;
  background-color: #FFECF3;
  padding: 70px 90px;
}

section.sec-4 .top-sec .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 340px 1fr;
      grid-template-columns: 340px 1fr;
  gap: 100px;
}

section.sec-4 .top-sec .grid .left-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

section.sec-4 .top-sec .grid .left-sec img {
  width: 336px;
  height: 336px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.sec-4 .top-sec .grid .left-sec p {
  font-size: 25px;
  font-weight: 600;
  line-height: 38px;
  color: #C80049;
  text-align: center;
}

section.sec-4 .top-sec .grid .right-sec h1 {
  font-size: 63px;
  line-height: 77px;
  font-weight: 600;
  max-width: 778px;
  margin-bottom: 30px;
}

section.sec-4 .top-sec p {
  font-size: 31px;
  line-height: 60px;
  color: #000000;
}

section.sec-4 .top-sec > p:not(:first-child) {
  margin-top: 90px;
}

section.sec-4 .top-sec iframe {
  max-width: 1000px;
  height: 751px;
  position: relative;
  margin: auto;
  display: block;
  margin-top: 51px;
  width: 100%;
}

section.sec-4 .top-sec iframe.top {
  margin-top: 0px;
}

section.sec-4 .top-sec .what {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  font-size: 40px;
}

section.sec-4 .top-sec .what h1 {
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 1400px) {
  section.sec-4 .top-sec .what h1 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 600px) {
  section.sec-4 .top-sec .what h1 {
    font-size: 25px;
    margin-bottom: 30px;
  }
}

section.sec-4 .bottom-sec {
  position: relative;
  max-width: 100%;
  margin: auto;
  margin-top: 60px;
}

section.sec-4 .bottom-sec > h1 {
  font-size: 90px;
  color: #000;
  line-height: 77px;
  font-weight: 600;
  max-width: 90%;
  text-align: center;
}

section.sec-4 .bottom-sec .flex-items {
  margin-top: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

section.sec-4 .bottom-sec .flex-items > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 600px;
          flex: 1 1 600px;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 60px;
}

section.sec-4 .bottom-sec .flex-items > div h1 {
  font-size: 54px;
  line-height: 77px;
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
}

section.sec-4 .bottom-sec .flex-items > div p {
  font-size: 28px;
  line-height: 37px;
  font-weight: 500;
  margin-bottom: 40px;
}

section.sec-4 .bottom-sec .flex-items .item-1 {
  background: url("../images/sec_4_1.svg"), #FBCA31;
  background-blend-mode: luminosity;
  min-height: 551px;
  background-repeat: no-repeat;
  background-size: cover;
}

section.sec-4 .bottom-sec .flex-items .item-1 h1, section.sec-4 .bottom-sec .flex-items .item-1 p {
  color: #000;
}

section.sec-4 .bottom-sec .flex-items .item-2 {
  background: url("../images/sec_4_2.svg"), #449E44;
  background-blend-mode: luminosity;
  min-height: 551px;
  background-repeat: no-repeat;
  background-size: cover;
}

section.sec-4 .bottom-sec .flex-items .item-2 h1, section.sec-4 .bottom-sec .flex-items .item-2 p {
  color: #000;
}

section.sec-4 .bottom-sec .flex-items .item-3 {
  background: url("../images/sec_4_3.svg"), #C20047;
  background-blend-mode: luminosity;
  min-height: 707px;
  background-repeat: no-repeat;
  background-size: cover;
}

section.sec-4 .bottom-sec .flex-items .item-3 h1, section.sec-4 .bottom-sec .flex-items .item-3 p {
  color: #fff;
}

section.sec-4 .bottom-sec .flex-items .item-4 {
  background: url("../images/sec_4_4.svg"), #383838;
  background-blend-mode: luminosity;
  min-height: 707px;
  background-repeat: no-repeat;
  background-size: cover;
}

section.sec-4 .bottom-sec .flex-items .item-4 h1, section.sec-4 .bottom-sec .flex-items .item-4 p {
  color: #fff;
}

section.sec-5 {
  position: relative;
  width: 100vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

section.sec-5 .top-sec {
  width: 100%;
  background-color: #000;
  padding: 83px calc((100vw - 1750px)/2) 130px;
  min-height: 1413px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.sec-5 .top-sec .left-sec {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1100px;
          flex: 1 1 1100px;
}

section.sec-5 .top-sec .left-sec h1 {
  font-size: 90px;
  line-height: 160px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 47px;
}

section.sec-5 .top-sec .left-sec p {
  font-size: 31px;
  line-height: 60px;
  font-style: italic;
  color: #FFCD32;
  margin-bottom: 100px;
}

section.sec-5 .top-sec .left-sec p.toppara {
  margin-bottom: 40px;
}

section.sec-5 .top-sec .left-sec ul {
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}

section.sec-5 .top-sec .left-sec ul li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0 1fr;
      grid-template-columns: 0 1fr;
  gap: 44px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 31px;
  color: #FFFFFF;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

section.sec-5 .top-sec .left-sec ul li::before {
  content: url("../images/awesome-check-pink.svg");
  font-size: 25px;
}

section.sec-5 .top-sec .right-sec {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 500px;
          flex: 1 1 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
          max-width: 100%;
          flex-direction: column;
}

@media only screen and (max-width: 1200px) {
  section.sec-5 .top-sec .right-sec {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

section.sec-5 .top-sec .right-sec img {
  max-width: 519px;
  height: auto;
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

section.sec-5 .bottom-sec {
  position: relative;
  background-color: #fff;
}

section.sec-5 .bottom-sec .content {
  position: relative;
  max-width: 1568px;
  width: 90%;
  margin: 84px auto 103px;
  border-radius: 47px;
  background-color: #FFECF3;
  padding: 50px 73px;
}

section.sec-5 .bottom-sec .content p:first-child {
  font-size: 31px;
  font-style: italic;
  line-height: 60px;
  color: #000000;
}

section.sec-5 .bottom-sec .content p:last-child {
  font-size: 31px;
  font-style: italic;
  line-height: 60px;
  color: #C80049;
  margin-top: 80px;
}

section.sec-5 .bottom-sec .content::after {
  content: url("../images/canister.svg");
  position: absolute;
  right: -97px;
  bottom: -95px;
}

section.testimonial {
  position: relative;
  width: 100vw;
  min-height: 1615px;
  background: radial-gradient(#FF5D98 0.5%, #C80049 50%);
  padding: 75px 0px;
}

section.testimonial h1 {
  font-size: 90px;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  margin: 0px auto 53px;
}

section.testimonial .swiper {
  max-width: 1611px;
  width: 90%;
  height: 100%;
  min-height: 100%;
}

section.testimonial .swiper .swiper-slide {
  background-color: #fff;
  border-radius: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 33px 40px;
  height: auto;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  height: auto !important;
}

section.testimonial .swiper .swiper-slide img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 154px;
          flex: 1 1 154px;
  width: 154px;
  height: 154px !important;
  max-width: 154px;
  position: relative;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 18px;
}

section.testimonial .swiper .swiper-slide > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 600px;
          flex: 1 1 600px;
}

section.testimonial .swiper .swiper-slide > div h2 {
  font-size: 30px;
  line-height: 46px;
  font-weight: 600;
  color: #51B950;
  margin-bottom: 40px;
}

section.testimonial .swiper .swiper-slide > div p {
  font-size: 26px;
  line-height: 39px;
  color: #2B2B2B;
  margin-bottom: 50px;
}

section.testimonial .swiper .swiper-slide > div p:last-child {
  margin-bottom: 0px;
}

section.sec-6 {
  position: relative;
  max-width: 1750px;
  width: 90%;
  margin: auto;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 43px 0px 96px;
  gap: 50px;
}

section.sec-6 .left-sec {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

section.sec-6 .left-sec h1 {
  font-size: 90px;
  line-height: normal;
  font-weight: 600;
  color: #000000;
  margin-bottom: 55px;
  text-align: left;
}

section.sec-6 .left-sec img {
  width: 723px;
  max-width: 90%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

section.sec-6 .right-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.sec-6 .right-sec h1 {
  font-size: 71px;
  line-height: 77px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 35px;
}

section.sec-6 .right-sec ul {
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 0.6rem;
}

section.sec-6 .right-sec ul li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0 1fr;
      grid-template-columns: 0 1fr;
  gap: 44px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 31px;
  color: #2D2D2D;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

section.sec-6 .right-sec ul li::before {
  content: url("../images/awesome-check-pink.svg");
  font-size: 25px;
}

section.sec-6 .right-sec h1.second {
  margin-top: 42px;
}

section.sec-7 {
  position: relative;
  padding: 138px calc((100vw - 1750px)/2);
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 1355px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.sec-7 > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

section.sec-7 .left-sec {
  position: relative;
  max-width: 980px;
}

section.sec-7 .left-sec p {
  font-size: 31px;
  line-height: 47px;
  color: #FFFFFF;
  margin-bottom: 50px;
}

section.sec-7 .left-sec p:last-child {
  color: #FFCD32;
  margin-bottom: 0px;
}

section.sec-7 .right-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 97px;
}

section.sec-7 .right-sec .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}

section.sec-7 .right-sec .flex > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 21px;
}

section.sec-7 .right-sec .flex > div span {
  font-size: 50px;
  line-height: 76px;
  font-style: italic;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
}

section.sec-7 .right-sec .flex > div img {
  width: 297px;
  height: 297px;
  -o-object-fit: contain;
     object-fit: contain;
}

section.sec-7 .right-sec > img {
  width: 544px;
  height: auto;
  max-width: 90%;
}

footer {
  position: relative;
  width: 100vw;
  min-height: 221px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ECF3F8;
}

footer img {
  width: 100px;
  height: auto;
}

a.more {
  background-color: #FFCD32;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  position: relative;
  margin: auto;
  max-width: 100%;
  margin-top: 20px;
  text-decoration: none;
  width: 430px;
  padding: 10px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  border-radius: 18px;
  cursor: pointer;
}
@media only screen and (max-width: 500px) {
  a.more {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
a.more i {
  font-size: 46px;
  display: block;
  color: #000;
}
a.more span {
  color: #000;
  padding-left: 10px;
  text-transform: uppercase;
  font-size: 1.26rem;
  text-align: center;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 500px) {
  a.more span {
    font-size: 1rem;
  }
}
a.more:hover {
  transform: scale(0.98);
}

@media only screen and (max-width: 1024px) {
  header {
    padding: 10px 50px;
  }
}

@media only screen and (max-width: 1024px) {
  header > nav {
    display: none;
  }
}

header input {
  display: none;
}

header label {
  display: none;
}

@media only screen and (max-width: 1024px) {
  header label {
    display: block;
  }
}

header label i {
  font-size: 50px !important;
}

header .mobile-nav {
  display: none;
  height: 100vh;
  background-color: #fff;
  width: 100vw;
  position: absolute;
  top: 0px;
  left: -100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

header .mobile-nav label i {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 50px;
}

header .mobile-nav label nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  gap: 40px;
}

header .mobile-nav label nav a {
  font-size: 24px;
}

header input[type="checkbox"]:checked + .mobile-nav {
  display: block;
  left: 0;
}

@media only screen and (max-width: 1800px) {
  section.sec-1 .left-sec h1 {
    font-size: 55px;
  }
  section.sec-1 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
  }
  section.sec-1 .left-sec p {
    font-size: 35px;
  }
  section.sec-1 .right-sec {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 300px;
            flex: 1 1 300px;
  }
  section.sec-1 .left-sec {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 500px;
            flex: 1 1 500px;
  }
  section.sec-1 .right-sec h1 {
    font-size: 35px;
  }
  section.sec-2 {
    padding: 85px 50px;
  }
  section.sec-2 .item-1 h1 {
    font-size: 55px;
  }
  section.sec-2 .item-1 p {
    font-size: 25px;
    line-height: 45px;
  }
  section.sec-2 ul li {
    font-size: 25px;
  }
  section.sec-2 .item-3 h1 {
    font-size: 60px;
  }
  section.sec-4 {
    padding: 70px 50px;
  }
  section.sec-4 .top-sec .grid .right-sec h1 {
    font-size: 55px;
  }
  section.sec-4 .top-sec p, section.sec-4 .top-sec p {
    font-size: 25px;
    line-height: 45px;
  }
  section.sec-4 .bottom-sec > h1 {
    font-size: 60px;
  }
  section.sec-4 .bottom-sec .flex-items > div h1 {
    font-size: 40px;
    line-height: 60px;
  }
  section.sec-4 .bottom-sec .flex-items > div p {
    font-size: 24px;
    line-height: 32px;
  }
  section.sec-4 .bottom-sec .flex-items > div {
    min-height: auto !important;
  }
  section.sec-5 .top-sec {
    padding-left: 50px;
    padding-right: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
  }
  section.sec-5 .top-sec .right-sec {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.sec-5 .top-sec .left-sec h1 {
    text-align: center;
  }
  section.sec-6 .left-sec h1 {
    font-size: 60px;
    line-height: normal;
    margin-bottom: 40px;
  }
  section.sec-6 .right-sec h1 {
    font-size: 60px;
    line-height: normal;
  }
  section.sec-7 {
    gap: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.testimonial h1 {
    font-size: 60px;
    line-height: normal;
  }
  section.testimonial .swiper .swiper-slide, section.testimonial {
    height: auto;
    min-height: auto;
  }
}

@media only screen and (max-width: 1400px) {
  section.sec-1 .right-sec .video::before {
    width: 100px;
    height: 100px;
  }
  section.sec-1 .right-sec {
    margin-bottom: 20px;
    max-width: 100%;
  }
  section.sec-3 iframe {
    height: 60%;
  }
  section.sec-4 .top-sec .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  section.sec-4 .top-sec .grid .right-sec h1 {
    text-align: center;
  }
  section.sec-4 .top-sec iframe {
    height: 500px;
  }
  section.sec-5 .top-sec .left-sec h1 {
    font-size: 60px;
    line-height: normal;
  }
  section.sec-5 .bottom-sec .content::after {
    right: -47px;
  }
  section.sec-6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.sec-6 h1 {
    text-align: center !important;
  }
  section.sec-7 .left-sec p {
    font-size: 25px;
    line-height: normal;
  }
  section.sec-7 .right-sec .flex > div img {
    width: 150px;
    height: 150px;
  }
  section.sec-7 .right-sec .flex > div span {
    font-size: 30px;
  }
  section.sec-7 .right-sec > img {
    width: 400px;
  }
  section.sec-7 {
    padding: 138px 50px;
  }
}

@media only screen and (max-width: 990px) {
  section.sec-1 .left-sec {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 600px;
            flex: 1 1 600px;
    margin-top: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.sec-1 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 35px;
  }
  section.sec-1 .right-sec {
    margin-bottom: 50px;
  }
  section.sec-1 .left-sec h1, section.sec-1 .left-sec p {
    text-align: center;
  }
  section.sec-3 iframe, section.sec-4 .top-sec iframe {
    height: 400px;
  }
  section.sec-3 h1 {
    font-size: 50px;
  }
  section.sec-3 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 80px 50px;
  }
  section.sec-4 .top-sec .grid {
    gap: 50px;
  }
  section.sec-4 .top-sec .grid .right-sec h1, section.sec-4 .bottom-sec > h1 {
    font-size: 40px;
    line-height: normal;
  }
  section.sec-5 .bottom-sec {
    overflow-x: hidden;
  }
  header {
    -webkit-box-shadow: 0px 5px 15px #777;
            box-shadow: 0px 5px 15px #777;
  }
  header, footer {
    min-height: auto;
  }
  footer {
    padding: 10px 0px;
  }
  header img.logo, footer img {
    width: 70px;
  }
  section.testimonial .swiper .swiper-slide h2 {
    font-size: 20px;
    line-height: normal;
  }
  section.testimonial .swiper .swiper-slide p {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 30px;
  }
  section.testimonial .swiper .swiper-slide img {
    width: 100px;
    height: 100px;
    min-height: auto;
  }
}

@media only screen and (max-width: 600px) {
  section.sec-1 .left-sec img {
    width: 200px;
  }
  section.sec-1 .right-sec iframe {
    height: auto;
  }
  section.sec-1 .left-sec h1 {
    font-size: 40px;
    line-height: normal;
  }
  section.sec-1 .left-sec p, section.sec-1 .right-sec h1 {
    font-size: 25px;
    line-height: normal;
  }
  section.sec-2 .item-1 h1 {
    max-width: 100%;
    font-size: 40px;
    text-align: center;
    line-height: normal;
  }
  section.sec-2 .item-1 p {
    text-align: center;
  }
  section.sec-2 ul li {
    font-size: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.sec-2 .item-3 h1 {
    font-size: 50px;
    text-align: center;
  }
  section.sec-2 img.backgroud {
    display: none;
  }
  section.sec-3 iframe, section.sec-4 .top-sec iframe {
    height: 200px;
  }
  section.sec-3 h1 {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: normal;
  }
  section.sec-4 .top-sec .grid .left-sec img {
    width: 150px;
    height: auto;
  }
  section.sec-4 .top-sec .grid .left-sec p {
    font-size: 20px;
    line-height: normal;
  }
  section.sec-4 {
    padding: 0px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  section.sec-4 .top-sec {
    padding: 20px;
  }
  section.sec-4 .top-sec .grid .right-sec h1, section.sec-4 .bottom-sec > h1 {
    font-size: 30px;
  }
  section.sec-4 .top-sec p, section.sec-4 .top-sec p {
    font-size: 18px;
    line-height: 35px;
    text-align: center;
  }
  section.sec-4 .top-sec > p:not(:first-child) {
    margin-top: 40px;
  }
  section.sec-4 .bottom-sec {
    padding: 0px 20px;
  }
  section.sec-4 .bottom-sec .flex-items > div h1 {
    font-size: 30px;
    line-height: 45px;
  }
  section.sec-4 .bottom-sec .flex-items > div p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  section.sec-5 .top-sec .left-sec h1 {
    font-size: 40px;
  }
  section.sec-5 .top-sec .left-sec p, section.sec-7 .left-sec p {
    font-size: 20px;
    line-height: 35px;
    text-align: center;
  }
  section.sec-5 .top-sec .left-sec ul li {
    font-size: 20px;
  }
  section.sec-5 .bottom-sec .content {
    padding: 50px 20px;
  }
  section.sec-5 .bottom-sec .content p:first-child, section.sec-5 .bottom-sec .content p:last-child {
    font-size: 20px;
    line-height: 35px;
    z-index: 2;
  }
  section.sec-5 .bottom-sec .content::after {
    display: none;
  }
  section.sec-5 {
    margin-top: 60px;
  }
  section.sec-6 .left-sec h1, section.sec-6 .right-sec h1 {
    font-size: 40px;
  }
  section.sec-6 .right-sec ul li {
    font-size: 20px;
  }
  section.testimonial h1 {
    font-size: 40px;
  }
}
/*# sourceMappingURL=style.css.map */