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

:root {
  --white: #ffffff;
  --black: #000000;
  --brand: #ec3237;
  --lightblue: #e9f7ff;
}

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

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

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

body {
  margin: 0;
  background: var(--white);
  font-family: Verdana, sans-serif;
  letter-spacing: -1px;
}
body .button {
  cursor: pointer;
  border-radius: 72px;
  background: #27b562;
  background: var(--brand);
  padding: 27px 72px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  transition: background 0.2s;
}
body .button:hover {
  box-shadow: 0px 0px 16px 2px rgba(17, 23, 35, 0.3);
  color: var(--brand);
  background: var(--white);
}
body .navbar {
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 20px;
  --transparency: 1;
  display: flex;
  gap: 15px;
  align-items: end;
  justify-content: center;
  background-image: linear-gradient(to left, rgba(238, 71, 71, var(--transparency)), rgba(214, 44, 104, var(--transparency)), rgba(174, 42, 128, var(--transparency)), rgba(120, 52, 140, var(--transparency)), rgba(51, 57, 136, var(--transparency)));
  --logo_color1: var(--brand);
  --logo_color1: var(--white);
  --logo_color2: var(--white);
  --logo_color3: transparent;
  transition: all 0.3s linear;
}
body .navbar .txt {
  color: var(--logo_color2);
  font-size: 32px;
  font-weight: 500;
  white-space: nowrap;
  text-align: justify;
}
body .navbar .txt > div {
  text-align: justify;
}
@media screen and (max-width: 1000px) {
  body .navbar .txt {
    font-size: 24px;
  }
}
body .navbar .txt .txt1 {
  margin: -6px 0 0 0;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}
body .navbar svg,
body .navbar img {
  height: 53px;
  width: auto;
  margin: 3px 0 0 0;
}
body .section1 {
  background-image: linear-gradient(to left, #ee4748, #d62c68, #ae2a80, #78348c, #333988);
  color: var(--white);
  padding: 155px 20px 60px 20px;
  padding: 55px 20px 60px 20px;
  text-align: center;
}
body .section1 .container {
  max-width: 650px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  body .section1 .container {
    flex-direction: column;
  }
}
body .section1 .container .txt {
  width: 100%;
}
body .section1 .container .video {
  width: 100%;
}
body .section1 .container .video iframe {
  width: 100%;
  aspect-ratio: 560/315;
  border-radius: 10px;
  overflow: hidden;
  height: auto;
  margin: 0 0 20px 0;
}
body .section1 .container .build_your_own_app {
  font-size: 51.4px;
  font-style: normal;
  font-weight: 800;
  line-height: 60px;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 1000px) {
  body .section1 .container .build_your_own_app {
    font-size: 45px;
  }
}
body .section1 .container .build_your_own_app_todo {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.6px;
  margin: 0 0 34px 0;
}
body .section1 .container .build_your_own_app_todo .items:not(:last-child) {
  margin: 0 0 17px 0;
}
body .section2 {
  padding: 70px 20px 80px 20px;
}
body .section2 .container {
  max-width: 720px;
  margin: 0 auto;
}
body .section2 .container .title {
  text-align: center;
  color: #7c7c85;
  color: #888;
  font-size: 45.2px;
  font-style: normal;
  font-weight: 900;
  line-height: 52.8px;
  max-width: 650px;
  padding: 0 15px;
  text-align: center;
  margin: 0 auto 40px auto;
}
body .section2 .container .title span {
  color: var(--brand);
}
body .section2 .container .cards_group {
  padding: 0 0 65px 0;
}
body .section2 .container .cards_group .card {
  padding: 30px;
  border-radius: 12px;
  background: var(--card_bg);
  display: flex;
  align-items: center;
  gap: 30px;
}
body .section2 .container .cards_group .card:not(:last-child) {
  margin: 0 0 20px 0;
}
body .section2 .container .cards_group .card .card_image {
  width: 101.863px;
  background-image: var(--card_img);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}
body .section2 .container .cards_group .card .card_image img {
  border-radius: 10px;
  max-width: 100%;
  max-height: 100%;
}
body .section2 .container .cards_group .card .card_txt .card_title {
  color: var(--card_title_color);
  font-size: 31.3px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
  margin: 0 0 10px 0;
}
body .section2 .container .cards_group .card .card_txt .card_desc {
  color: var(--card_desc_color);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.2px;
}
body .section2 .container .cards_group .card .card_txt {
  width: calc(100% - 101.863px);
}
body .section2 .container .cards_group .card.card1 {
  --card_bg: #dee9e3;
  --card_title_color: #209740;
  --card_desc_color: #4b7357;
}
body .section2 .container .cards_group .card.card2 {
  --card_bg: #e2e8fb;
  --card_title_color: #4441fb;
  --card_desc_color: #6564a8;
}
body .section2 .container .cards_group .card.card3 {
  --card_bg: #f5ebe1;
  --card_title_color: #ffa114;
  --card_desc_color: #aa7d2a;
}
body .section3 {
  background: #2b3545;
}
body .section3 .container {
  max-width: 720px;
  margin: 0 auto;
}
body .section3 .slider {
  display: flex;
  overflow-x: hidden;
  width: 100%;
  align-items: center;
  padding: 36px 0;
}
body .section3 .slider .slider_main {
  display: flex;
  height: 100%;
  animation: slider 15s infinite linear;
}
@keyframes slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
body .section3 .slider .slider_main .slide {
  scroll-snap-align: start;
  width: 100px;
  display: flex;
}
@media screen and (max-width: 1000px) {
  body .section3 .slider .slider_main .slide {
    height: 30px;
  }
}
body .section3 .slider .slider_main .slide img {
  width: 100%;
  height: auto;
  filter: brightness(2);
  margin: 0 50px 0 0;
}
body .section4 {
  padding: 80px 20px;
}
body .section4 .container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
body .section4 .container .title {
  color: #838389;
  font-size: 50.6px;
  font-style: normal;
  font-weight: 800;
  line-height: 60px;
  letter-spacing: -1.8px;
  margin: 0 0 35px 0;
}
body .section4 .container .image {
  margin: 0 auto 20px auto;
  background-image: url("https://d1muf25xaso8hp.cloudfront.net/https%3A%2F%2F1af015be19cc14f6be50b30c67dcb403.cdn.bubble.io%2Ff1695686044140x525648944973820700%2FAFQ7HTNx_400x400.png?w=192&h=192&auto=compress&fit=crop&dpr=1");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 99px;
  border: 3px solid #fff;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat, rgba(255, 255, 255, 0);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  width: 160px;
  height: 160px;
}
body .section4 .container .name {
  color: #3e4fe6;
  font-size: 31.2px;
  font-style: normal;
  font-weight: 800;
  line-height: 42px;
  letter-spacing: -1.4px;
  margin: 0 auto 10px auto;
}
body .section4 .container .designation {
  margin: 0 auto 20px auto;
  color: #3e4fe6;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  letter-spacing: -1.4px;
  max-width: 320px;
}
body .section4 .container .short_bio {
  margin: 0 auto 55px auto;
  max-width: 320px;
  color: #6f7176;
  font-size: 16.4px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px; /* 175.61% */
  letter-spacing: -0.7px;
}
body .copyright {
  text-align: center;
  background-color: #ecf3ff;
  padding: 40px 0;
  color: #69768b;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 18.2px;
}
body .form {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease-in-out;
  color: #000;
}
body .form .form_bg {
  filter: blur(3px);
  background-color: rgba(237, 240, 245, 0.97);
  position: absolute;
  inset: 0;
  z-index: -1;
}
body .form .form_main {
  z-index: 1;
  box-shadow: rgba(50, 55, 62, 0.14) 0px 10px 30px 0px;
  background-color: var(--white);
  margin: 0 auto 0 auto;
  width: calc(100% - 20px);
  height: auto;
  border: 1px solid rgba(73, 79, 94, 0.3);
  border-radius: 16px;
  max-width: 356px;
  position: relative;
}
body .form .form_main .form_header {
  background-color: #ffd5d7;
  color: rgb(137, 137, 172);
  display: flex;
  align-items: center;
  padding: 23px 23px 38px 53px;
  overflow: hidden;
}
body .form .form_main .form_header .txt {
  margin: 0 auto;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
body .form .form_main .close {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  cursor: pointer;
  display: flex;
  background: var(--white);
  box-shadow: rgba(50, 55, 62, 0.14) 0px 10px 30px 0px;
  border: 1px solid #aeaeae;
  padding: 5px;
  border-radius: 50%;
}
body .form .form_main .close svg {
  width: 20px;
  height: 20px;
}
body .form .form_main .close:hover svg {
  color: var(--brand);
}
body .form .form_main .form_body .form_summary {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
body .form .form_main .form_body .title {
  padding: 30px 20px 30px 20px;
  color: #ec3237;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  background: #ffd5d7;
}
body .form .form_main .form_body .form_input {
  padding: 27px 20px;
}
body .form .form_main .form_body .form_input .form_input_flex {
  display: flex;
  gap: 15px;
  margin: 0 0 15px 0;
}
body .form .form_main .form_body .form_input .error {
  color: red;
  font-size: 12px;
}
body .form .form_main .form_body .form_input .error-border {
  border: 1px solid black !important;
}
body .form .form_main .form_body .form_input .custom_select {
  width: 100%;
  padding: 12px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(42, 43, 45, 0.24);
  font-size: 14px;
  line-height: 2;
  font-weight: 300;
  color: rgb(43, 43, 46);
  border-radius: 10px;
  outline: 0;
}
body .form .form_main .form_body .form_input .custom_select:focus-visible, body .form .form_main .form_body .form_input .custom_select:hover {
  border: 1px solid var(--brand);
}
body .form .form_main .form_body .form_input .custom_select::-moz-placeholder {
  color: #95959a;
}
body .form .form_main .form_body .form_input .custom_select::placeholder {
  color: #95959a;
}
body .form .form_main .form_body .form_input input {
  width: 100%;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(42, 43, 45, 0.24);
  border-radius: 10px;
  font-size: 14px;
  line-height: 2;
  font-weight: 300;
  padding: 12px;
  color: rgb(43, 43, 46);
  outline: 0;
}
body .form .form_main .form_body .form_input input:focus-visible, body .form .form_main .form_body .form_input input:hover {
  border: 1px solid var(--brand);
}
body .form .form_main .form_body .form_input input::-moz-placeholder {
  color: #95959a;
}
body .form .form_main .form_body .form_input input::placeholder {
  color: #95959a;
}
body .form .form_main .form_body .notif {
  color: rgb(132, 134, 137);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
}
body .form .form_main .form_footer {
  padding: 0 20px 20px 20px;
}
body .form .form_main .form_footer .form_submit {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  background: var(--brand);
  color: var(--white);
  box-shadow: 0px 7px 30px -10px rgba(31, 105, 255, 0.1);
  padding: 12px 24px;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
}
body .text_group {
  font-size: 20px;
  padding: 0 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
body .text_group span {
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 1px;
}
body .text_group > div {
  margin: 0 0 20px 0;
}
body .thankyou {
  padding: 50px 20px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  body .thankyou {
    flex-direction: column;
  }
}
body .thankyou .video_container {
  width: 60%;
}
@media screen and (max-width: 1000px) {
  body .thankyou .video_container {
    width: 100%;
  }
}
body .thankyou .video_container .video_player {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .thankyou .video_container .video_player iframe {
  width: 100%;
  aspect-ratio: 560/315;
  border-radius: 10px;
  overflow: hidden;
}
body .thankyou .video_container .video_text_group {
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(174, 174, 174, 0.4784313725);
  border-radius: 10px;
  margin: 20px 0 0 0;
}
body .thankyou .video_container .video_text_group .title {
  font-size: 18px;
  font-weight: 700;
}
body .thankyou .video_container .video_text_group .sub_txt {
  font-size: 16px;
  letter-spacing: 0.5px;
  margin: 10px 0 20px 0;
  color: rgba(51, 51, 51, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}
body .thankyou .video_container .video_text_group .about .sub_txt {
  margin-bottom: 0;
}
body .thankyou .video_container .video_text_group .about .sub_txt > div {
  padding: 0 0 10px 0;
}
body .thankyou .video_container .video_text_group .about .sub_txt span {
  color: #000;
  font-weight: 600;
}
body .thankyou .video_container .video_text_group #download_link {
  width: 100%;
}
body .thankyou .video_container .video_text_group #download_link .document {
  border: 1px solid #f4f3f4;
  width: 100%;
  border-radius: 20px;
  margin: 20px 0 0 0;
  display: flex;
  gap: 10px;
  padding: 20px;
  background: rgba(245, 244, 245, 0.7803921569);
}
body .thankyou .video_container .video_text_group #download_link .document .txt .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 0.3px;
}
body .thankyou .video_container .video_text_group #download_link .document .txt .title svg {
  height: 25px;
  width: -moz-fit-content;
  width: fit-content;
}
body .thankyou .video_container .video_text_group #download_link .document .txt .txt2 {
  letter-spacing: 0.2px;
  color: #95959a;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 600;
}
body .thankyou .video_container .video_text_group #download_link .document a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  text-decoration: unset;
  color: #000000;
  border: 2px solid rgba(215, 215, 215, 0.6705882353);
  background: #fff;
  border-radius: 10px;
  font-weight: 600;
  margin: 0 0 0 auto;
  letter-spacing: 0.2px;
}
body .thankyou .parts {
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 100px;
  width: 40%;
  border-radius: 10px;
  padding: 3px;
  box-shadow: 0 0 10px 0 rgba(174, 174, 174, 0.4784313725);
  padding: 3px 0;
}
@media screen and (max-width: 1000px) {
  body .thankyou .parts {
    width: 100%;
    position: unset;
  }
}
body .thankyou .parts .items {
  cursor: pointer;
  border-radius: 7px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px 15px;
  opacity: 0.6;
  transition: background 0.2s linear, transform 0.2s linear;
  transform: translateX(0) scale(1);
}
body .thankyou .parts .items img {
  height: 13px;
}
body .thankyou .parts .items .title {
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 16px;
  margin: 0 0 4px 0;
}
body .thankyou .parts .items .video_title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  color: #000000;
}
body .thankyou .parts .items.active {
  opacity: 1;
  background: #fbdfe0;
  transform: translateX(0px) scale(1.1);
  border: 1px solid rgba(105, 118, 139, 0.4980392157);
}
@media screen and (max-width: 1000px) {
  body .thankyou .parts .items.active {
    transform: translateX(0px) scale(1);
  }
}
body .thankyou .parts .items.active img {
  transform: rotate(180deg);
}

.thankyou_page .navbar {
  background: var(--white);
  --logo_color2: var(--black);
}
.thankyou_page .navbar svg path {
  fill: var(--brand);
}