@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 0.5s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

header {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
  box-shadow: 0 6px 14px #0000001a;
}
.header-wrapper {
  max-width: 1224px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 35px;
  background-color: white;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 120px;
}
.nav {
  display: flex;
  gap: 32px;
}
.nava {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #f53636;
  font-size: 1rem;
}
.nava:hover,
.nava.active {
  color: #006aff;
  text-decoration: underline;
  text-underline-offset: 7px;
}
.button-container {
  display: flex;
  align-items: center;
}
.head-btn {
  padding: 16px 40px;
  background-color: #f53636;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
}
.head-btn a{
  color: white;
  font-size: 19px;
  font-weight: 500;
  text-decoration: none;
}
.head-btn:hover {
  background-color: #000;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f53636;
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  background: #fff;
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
  z-index: 1;
  pointer-events: none;
}

.mobile-nav a {
  margin-right: 20px;
}
.mobile-nav .head-btn {
  margin-right: 20px;
  margin-bottom: 20px;
}

.mobile-nav.active {
  max-height: 300px;
  pointer-events: auto;
}

.section1 {
  display: flex;
  justify-content: center;
  position: relative;
}
.section1-wrapper {
  max-width: 1224px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 16px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1d1e20;
  opacity: 0.65;
  z-index: 0;
}

.sec1-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 501px;
  align-items: center;
  font-family: "Open Sans", sans-serif;
}
.sec1-content h1 {
  color: white;
  font-size: 64px;
  font-weight: 600;
  line-height: 83.2px;
  text-align: center;
  margin: 0;
  margin-bottom: 50px;
}

.sec1-text-1 {
  color: white;
  font-size: 26px;
  font-weight: 600;
  line-height: 33.8px;
  max-width: 635px;
  text-align: center;
  margin-bottom: 30px;
}

.sec1-btn {
  padding: 16px 40px;
  font-size: 31px;
  background-color: #f53636;
  color: white;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 40px;
}

.sec1-btn a{
  color: white;
  font-size: 31px;
  font-weight: 500;
  text-decoration: none;
}
.sec1-btn:hover {
  background-color: #000;
}

.sec1-text-2 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  max-width: 400px;
  text-align: center;
}

.section2 {
  display: flex;
  justify-content: center;
}
.section2-wrapper {
  max-width: 1224px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 80px 35px;
}
.sec2-content {
  width: 30%;
}
.sec2-content h2 {
  color: #006aff;
  font-size: 48px;
  font-weight: 700;
  line-height: 62.4px;
  text-align: left;
  margin: 0;
  margin-bottom: 30px;
}

.sec2-text {
  color: #56585e;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  margin-bottom: 32px;
}

.sec2-btn {
  padding: 14px 30px;
  font-size: 31px;
  background-color: #f53636;
  color: white;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 500;
}
.sec2-btn a{
  color: white;
  font-size: 31px;
  font-weight: 500;
  text-decoration: none;
}
.sec2-btn:hover,
.sec2-btn-mob:hover {
  background-color: #006aff;
}

.sec2-btn-mob {
  padding: 14px 30px;
  font-size: 16px;
  background-color: #f53636;
  color: white;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 500;
  height: 56px;
  width: 164px;
  display: none;
}
.sec2-btn-mob a{
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.sec2-img {
  display: flex;
  gap: 10px;
}

.sec2-img img {
  max-width: 400px;
  width: 50%;
  height: auto;
  clip-path: polygon(0% 0%, 74% 0%, 100% 100%, 26% 100%);
}

.section3 {
  display: flex;
  justify-content: center;
}
.section3-wrapper {
  max-width: 1224px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0px 35px;
}

.sec3-head {
  margin: 0;
  color: #f53636;
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 62.4px;
  text-align: center;
  margin-bottom: 10px;
}

.sec3-text {
  font-size: 18px;
  line-height: 23.4px;
  color: #0d131a;
  text-align: center;
  margin-bottom: 5px;
}

.image-content-container {
  display: flex;
  gap: 2px;
}

.image-content img {
  max-width: 400px;
  width: 100%;
  height: auto;
  clip-path: polygon(0% 0%, 74% 0%, 100% 100%, 26% 100%);
  display: block;
}

.content-container {
  font-family: "Open Sans", sans-serif;
  height: 200px;
  max-width: 400px;
  background-color: #f53636;
  color: white;
  padding: 40px;
  box-sizing: border-box;
}
.content-container h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 23.4px;
  text-align: left;
  margin-bottom: 20px;
}

.span-content {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

.partner-section {
  display: flex;
  justify-content: center;
}
.partner-section-wrapper {
  max-width: 1224px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 35px 30px;
}
.partner-section-wrapper h2{
  margin: 0;
  color: #f53636;
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 62.4px;
  text-align: left;
  margin-bottom: 40px;
}
.partner-section-wrapper .partner-logos{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.partner-section-wrapper .partner-logos img{
  max-width: 200px;
  width: 100%;
  height: auto;
}

.section4 {
  display: flex;
  justify-content: center;
}
.section4-wrapper {
  max-width: 1224px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 35px;
}

.section4-wrapper-mob{
  max-width: 1224px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 35px;
  display: none;
}

.sec4-part1 h3 {
  margin: 0;
  color: #f53636;
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 62.4px;
  text-align: left;
  margin-bottom: 40px;
}

.sec4-p1-t1 {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #1d1e20;
  margin-bottom: 20px;
  max-width: 413px;
}
.sec4-part1 img {
  width: 458px;
  height: 347px;
  clip-path: polygon(0% 0%, 74% 0%, 100% 100%, 26% 100%);
  margin-bottom: 40px;
}

.sec4-p1-t2 {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #1d1e20;
  max-width: 438px;
  margin-left: 40px;
}

.sec4-part2 {
  padding-right: 60px;
}
.sec4-part2 h5,.sec4-part1 h5 {
  margin: 0;
  color: #f53636;
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 41.6px;
  text-align: center;
  margin-block: 20px;
}

.sec4-part2 form,.sec4-part1 form {
  box-sizing: border-box;
  background-color: #327de4;
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  padding: 31px;
  width: 400px;
  height: auto;
}
.sec4-part2 form label, .sec4-part1 form label {
  color: white;
  font-size: 25px;
  line-height: 35px;
}
.sec4-part2 form input, .sec4-part1 form input {
  color: #1a1a1a;
  font-size: 21px;
  background-color: #f1f1f1;
  padding: 16px;
  border: none;
  margin-bottom: 25px;
}
.sec4-part2 form textarea, .sec4-part1 form textarea {
  color: #1a1a1a;
  font-size: 21px;
  background-color: #f1f1f1;
  font-family: Arial, Helvetica, sans-serif;
  padding: 16px;
  border: none;
  min-height: 96px;
  margin-bottom: 25px;
  box-sizing: border-box;
}

.sec4-btn-container {
  display: flex;
  justify-content: center;
}

.sec4-btn {
  padding: 16px 40px;
  width: 148px;
  font-size: 22px;
  background-color: #f53636;
  color: white;
  border: none;
  border-radius: 28px;
  cursor: pointer;
}
.sec4-btn:hover {
  background-color: #000;
}

.section5 {
  display: flex;
  justify-content: center;
}
.section5-wrapper {
  max-width: 1224px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 35px;
}

footer {
  display: flex;
  justify-content: center;
  background-color: white;
}
.footer-wrapper {
  max-width: 1224px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 70px 35px 120px;
}

.footer-section1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-part1 h5 {
  color: #0d131a;
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 33.8px;
  text-align: left;
  margin: 0px 0px 20px;
}

.footer-p1-text {
  color: #0d131a;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  line-height: 18.2px;
  text-align: left;
  max-width: 297px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 19px;
}

.footer-part2 {
  display: flex;
  gap: 60px;
}

.footer-part2 h6 {
  color: #0d131a;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  text-align: left;
  margin: 0;
  margin-bottom: 20px;
}

.footer-part2 a {
  color: #0d131a;
  font-family: Tahoma, sans-serif;
  line-height: 24px;
  text-align: left;
}

.footer-p2-s1,
.footer-p2-s2,
.footer-p2-s2 form {
  display: flex;
  flex-direction: column;
}

.footer-p2-s2 form label {
  font-family: Tahoma, sans-serif;
  line-height: 24px;
}

.footer-p2-s2 form input {
  box-sizing: border-box;
  font-size: 16px;
  background-color: #ffffff;
  border: 1px solid #b8c0cc;
  width: 375px;
  border-radius: 10px;
  cursor: text;
  display: inline-block;
  overflow: clip;
  padding: 16px;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
  margin-bottom: 10px;
}

.footer-btn {
  align-items: center;
  background-color: #176be0;
  border-radius: 50px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  width: 247px;
  max-width: 100%;
  overflow: hidden;
  padding: 16px 40px;
  border: none;
}

.footer-section2 {
  width: 100%;
  box-sizing: border-box;
  color: #0d131a;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  line-height: 18.2px;
  text-align: left;
}

@media screen and (max-width: 1200px) {
  .content-container {
    height: 250px;
  }
}

@media screen and (max-width: 1024px) {
  .nav,
  .button-container {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }

  .sec1-content {
    max-width: 328px;
  }
  .sec1-content h1 {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 30px;
  }

  .sec1-text-1 {
    font-size: 20px;
    line-height: 26px;
    max-width: 328px;
  }

  .sec1-btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 400;
  }

  .section2-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    padding: 80px 35px;
  }
  .sec2-content {
    width: 328px;
  }
  .sec2-content h2 {
    font-size: 32px;
    line-height: 41.6px;
    margin-bottom: 10px;
  }
  
  .sec2-btn {
    display: none;
  }
  
  .sec2-btn-mob {
    display: block;
  }
  
  .sec2-img {
    flex-direction: column;
    align-items: center;
  }
  
  .sec2-img img {
    width: 328px;
    height: 224px;
  }

  .sec3-head {
      font-size: 36px;
      line-height: 46.8px;
      font-weight: 600;
    margin-bottom: 40px;
  }
  .sec3-text {
    margin-bottom: 40px;
    width: 321px;
  }
  
  .image-content-container {
    flex-direction: column;
    gap: 0px;
  }
  
  .image-content img {
    width: 328px;
    height: 264px;
    display: block;
  }
  
  .content-container {
    height: 200px;
    max-width: 328px;
    padding: 20px;
  }
  .content-container h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 31.2px;
    margin-bottom: 0px;
  }

  .partner-section-wrapper h2{
    font-size: 32px;
    font-weight: 600;
    line-height: 41.6px;
    margin-bottom: 10px;
    text-align: center;
  }
  .partner-section-wrapper .partner-logos{
    flex-direction: column;
    gap: 50px;
  }

  .section4-wrapper {
    display: none;
  }
  
  .section4-wrapper-mob{
    display: block;
  }

  .sec4-part1{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .sec4-part1 h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 41.6px;
    margin-bottom: 10px;
  }
  
  .sec4-p1-t1 {
    margin-bottom: 20px;
    max-width: 328px;
  }
  .sec4-part1 img {
    width: 328px;
    height: 168px;
    margin-bottom: 10px;
  }
  
  .sec4-p1-t2 {
    max-width: 328px;
    margin-left: 0px;
  }

  .sec4-part2 h5,.sec4-part1 h5 {
    font-size: 24px;
    line-height: 31.2px;
    margin-block: 10px;
  }
  
  .sec4-part2 form,.sec4-part1 form {
    width: 328px;
  }
  .sec4-part2 form label, .sec4-part1 form label {
    font-size: 16px;
  }
  .sec4-part2 form input, .sec4-part1 form input {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .sec4-part2 form textarea, .sec4-part1 form textarea {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .sec4-btn {
    padding: 14px 36px;
    width: 121px;
    font-size: 16px;
  }

  .footer-wrapper {
    gap: 60px;
    padding: 70px 35px 0px;
  }
  
  .footer-section1 {
    flex-direction: column;
    justify-content: space-between;
    width: 328px;
  }

  .footer-part1{
    margin-bottom: 40px;
  }
  
  .footer-part1 h5 {
    font-size: 20px;
    line-height: 26px;
    margin: 0px 0px 10px;
  }
  
  .footer-p1-text {
    font-size: 16px;
    line-height: 24px;
    max-width: 328px;
  }
  
  .footer-part2 {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-part2 h6 {
    margin-bottom: 10px;
  }
  
  .footer-part2 a {
    margin-bottom: 10px;
  }
  
  .footer-p2-s2 form input {
    font-size: 14px;
    width: 328px;
    margin-bottom: 20px;
  }
  
  .footer-btn {
    font-size: 16px;
    width: 265px;
    padding: 14px 36px;
  }
  
  .footer-section2 {
    font-size: 16px;
    line-height: 24px;
    width: 328px;
  }
}
