/*Custom Fonts Classes*/

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/*Hero Image Section*/

.hero-container {
  position: relative;
  max-width: 1366px;
  height: auto;
  /* Set your desired height */
  overflow: hidden;
  margin: 0 auto;
}

.logo {
  position: absolute;
  top: 8%;
  left: 66px;
  /* Adjust the left position as needed */
  transform: translateY(-50%);
  z-index: 2;
  /* Ensure the logo is above the hero image */
}

.text-overlay {
  color: #FFFFFF;
  /* Set text color */
  font-family: Poppins, Arial;
  font-size: 42px;
  /* Set text font size */
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  position: absolute;
  top: 34%;
  left: 300px;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Ensure the text is above the hero image */
  max-width: 470px;
  height: auto;
}

.text-overlay-small {
  color: rgba(255, 255, 255, 0.60);
  /* Set text color */
  font-family: Poppins, Arial;
  font-size: 20px;
  /* Set text font size */
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  position: absolute;
  top: 58%;
  left: 280px;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Ensure the text is above the hero image */
  max-width: 440px;
  height: auto;
}

.hero-button {
  font-family: Poppins, Arial;
  font-size: 14px;
  color: #070E20;
  background-color: #FFDE02;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  white-space: nowrap;
  /* Prevent line breaks */
  font-style: normal;
  font-weight: 500;
  line-height: 22.152px;
  /* 158.228% */
  letter-spacing: -0.07px;
  position: absolute;
  top: 74%;
  left: 118px;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Ensure the text is above the hero image */
  max-width: 440px;
  height: auto;
}

.hero-button-vi {
  left: 134px;
}


.hero-image {
  width: 100%;
  height: auto;
  z-index: 1;
  /* Ensure the hero image is at the bottom */
}

/*Hero Content RTL*/

.logo-rtl {
  position: absolute;
  top: 8%;
  right: 60px;
  /* Adjust the left position as needed */
  transform: translateY(-50%);
  z-index: 2;
  /* Ensure the logo is above the hero image */
}

.text-overlay-rtl {
  color: #FFFFFF;
  /* Set text color */
  font-family: Poppins, Arial;
  font-size: 52px;
  /* Set text font size */
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  position: absolute;
  top: 34%;
  right: -80px;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Ensure the text is above the hero image */
  max-width: 470px;
  height: auto;
}

.text-overlay-small-rtl {
  color: rgba(255, 255, 255, 0.60);
  /* Set text color */
  font-family: Poppins, Arial;
  font-size: 24px;
  /* Set text font size */
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  position: absolute;
  top: 52%;
  right: -34px;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Ensure the text is above the hero image */
  max-width: 440px;
  height: auto;
}

.hero-button-rtl {
  font-family: Poppins, Arial;
  font-size: 14px;
  color: #070E20;
  background-color: #FFDE02;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  white-space: nowrap;
  /* Prevent line breaks */
  font-style: normal;
  font-weight: 500;
  line-height: 22.152px;
  /* 158.228% */
  letter-spacing: -0.07px;
  position: absolute;
  top: 70%;
  right: 28px;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Ensure the text is above the hero image */
  max-width: 440px;
  height: auto;
}


/* Hero Image for smaller screens */

@media (max-width: 1100px) {

  .text-overlay {
    font-size: 38px;
    /* Set text font size */
    line-height: 50px;

  }

  .text-overlay-small {
    font-size: 16px;
    /* Set text font size */
    left: 250px;
  }
  
  .hero-button {
   top: 84%;
  }
}




@media (max-width: 900px) {

  .text-overlay {
    font-size: 34px;
    /* Set text font size */
    line-height: 44px;
  }

  .text-overlay-small {
    font-size: 16px;
    /* Set text font size */
  }

   .logo-rtl {
    right: 50px;
   }

  .text-overlay-rtl {
    font-size: 40px;
    /* Set text font size */
    line-height: 50px;
    right: -56px;
  }

  .text-overlay-small-rtl {
    font-size: 18px;
    /* Set text font size */
    right: -20px;
    top: 56%;
  }

   .hero-button-rtl {
    right: 20px;
 }

}

@media (max-width: 780px) {

  .text-overlay {
    font-size: 28px;
    /* Set text font size */
    max-width: 370px;
    line-height: 40px;
    position: absolute;
    top: 34%;
    left: 250px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 14px;
    /* Set text font size */
    max-width: 370px;
    position: absolute;
    top: 60%;
    left: 230px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .logo {
    width: 100px;
  }

  .logo-rtl {
      right: 50px;
     }

    .text-overlay-rtl {
      font-size: 40px;
      /* Set text font size */
      line-height: 50px;
      right: -56px;
    }

    .text-overlay-small-rtl {
      font-size: 18px;
      /* Set text font size */
      right: -20px;
      top: 56%;
    }

}


@media (max-width: 720px) {

  .text-overlay {
    font-size: 24px;
    /* Set text font size */
    max-width: 370px;
    line-height: 40px;
    position: absolute;
    top: 34%;
    left: 226px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 14px;
    /* Set text font size */
    max-width: 370px;
    position: absolute;
    top: 56%;
    left: 204px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .logo {
    width: 100px;
    left: 40px;
  }

  .logo-rtl {
    right: 50px;
   }

  .text-overlay-rtl {
    font-size: 32px;
    /* Set text font size */
    line-height: 40px;
    right: -36px;
  }

  .text-overlay-small-rtl {
    font-size: 18px;
    /* Set text font size */
    right: -20px;
    top: 56%;
  }

.hero-button {
left: 90px;
}

   .hero-button-rtl {
    padding: 8px 20px;
    top: 80%;
   }
}


@media (max-width: 640px) {
  .text-overlay {
    font-size: 22px;
    /* Set text font size */
    max-width: 370px;
    line-height: 30px;
    position: absolute;
    top: 34%;
    left: 210px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 14px;
    /* Set text font size */
    max-width: 370px;
    position: absolute;
    top: 56%;
    left: 210px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .logo {
    width: 100px;
  }

  .hero-button {
    font-size: 12px;
    padding: 8px 16px;
    position: absolute;
    left: 84px;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Ensure the text is above the hero image */
    max-width: 440px;
    height: auto;
  }

  .text-overlay-rtl {

  }

  .text-overlay-small-rtl {

  }

  .logo-rtl {

  }

  .hero-button-rtl {
    font-size: 12px;
    padding: 8px 16px;
    position: absolute;
    top: 80%;
    right: 26px;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Ensure the text is above the hero image */
    max-width: 440px;
    height: auto;
  }


}


@media (max-width: 580px) {
  .text-overlay {
    font-size: 20px;
    /* Set text font size */
    max-width: 370px;
    line-height: 30px;
    position: absolute;
    top: 34%;
    left: 210px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 14px;
    /* Set text font size */
    max-width: 370px;
    position: absolute;
    top: 60%;
    left: 206px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-rtl {
      font-size: 24px;
      line-height: 32px;
      right: -10px;
    }

  .logo {
    width: 80px;
    left: 46px;
  }

  .hero-button {
    font-size: 10px;
    padding: 6px 12px;
    position: absolute;
    top: 80%;
    left: 80px;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Ensure the text is above the hero image */
    max-width: 440px;
    height: auto;
  }
}


@media (max-width: 480px) {

  .text-overlay {
    font-size: 26px;
    /* Set text font size */
    line-height: 38px;
    max-width: 240px;
    position: absolute;
    top: 18%;
    left: 154px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-rtl {
    font-size: 32px;
    /* Set text font size */
    line-height: 34px;
    max-width: 240px;
    position: absolute;
    top: 18%;
    right: -52px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 16px;
    position: absolute;
    top: 26%;
    left: 154px;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 240px;
    margin-top: 10px;
  }

  .text-overlay-small-rtl {
    font-size: 18px;
    position: absolute;
    top: 26%;
    right: -36px;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 240px;
    margin-top: 10px;
  }

  .logo {
    width: 80px;
    position: absolute;
    top: 5%;
    left: 34px;
    transform: translateY(-50%);
    z-index: 2;
  }

  .logo-rtl {
    width: 80px;
    position: absolute;
    top: 5%;
    right: 34px;
    transform: translateY(-50%);
    z-index: 2;
  }

  .hero-button {
    font-size: 16px;
    padding: 8px 16px;
    position: absolute;
    top: 40%;
    left: 80px;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Ensure the text is above the hero image */
    max-width: 440px;
    height: auto;
  }

  .hero-button-vi {
    left: 110px;
  }

  .hero-button-rtl {
    font-size: 16px;
    padding: 8px 16px;
    position: absolute;
    top: 40%;
    right: 0px;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Ensure the text is above the hero image */
    max-width: 440px;
    height: auto;
  }
}

@media (max-width: 380px) {
   .text-overlay {
    font-size: 22px;
    /* Set text font size */
    line-height: 34px;
    max-width: 240px;
    position: absolute;
    top: 18%;
    left: 146px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 16px;
    position: absolute;
    top: 28%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 240px;
    margin-top: 10px;
  }

  .hero-button {
    font-size: 14px;
    padding: 6px 14px;
    position: absolute;
    top: 44%;
    left: 80px;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Ensure the text is above the hero image */
    max-width: 440px;
    height: auto;
  }

 .hero-button-vi {
    left: 100px;
  }


}

@media (max-width: 360px) {
 .text-overlay {
    font-size: 22px;
    /* Set text font size */
    line-height: 34px;
    max-width: 240px;
    position: absolute;
    top: 18%;
    left: 140px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 16px;
    position: absolute;
    top: 30%;
    left: 140px;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 240px;
    margin-top: 10px;
  }

}

@media (max-width: 350px) {
  .text-overlay {
    font-size: 22px;
    /* Set text font size */
    line-height: 34px;
    max-width: 240px;
    position: absolute;
    top: 18%;
    left: 140px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 16px;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 240px;
    margin-top: 10px;
  }
}



@media (max-width: 340px) {
  .text-overlay {
    font-size: 22px;
    /* Set text font size */
    line-height: 34px;
    max-width: 240px;
    position: absolute;
    top: 18%;
    left: 134px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 16px;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 240px;
    margin-top: 10px;
  }
}

@media (max-width: 320px) {
  .text-overlay {
    font-size: 20px;
    /* Set text font size */
    line-height: 34px;
    max-width: 240px;
    position: absolute;
    left: 130px;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .text-overlay-small {
    font-size: 12px;
    position: absolute;
    left: 130px;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 240px;
    margin-top: 10px;
  }

  .hero-button {
    padding: 6px 16px;
    font-size: 14px;
  }
}




/*Paragraph Content Section*/
.paragraph {
  color: rgba(7, 14, 32, 0.60);
  text-align: center;
  font-family: Poppins, Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.045px;
  padding: 10px 10px 35px 10px;
  max-width: 800px;
  margin: 0 auto;
}

.text-overlay-black {
  color: #070E20;
  /* Set text color */
  text-align: center;
  font-family: Poppins, Arial;
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  /* 107.692% */
  letter-spacing: -1.04px;
}

.text-overlay-black-1 {
  margin-top: 80px;
  margin-bottom: 25px;
}

.text-overlay-black-2 {
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.text-overlay-black-3 {
  margin-top: 80px;
  margin-bottom: 25px;
}

.text-overlay-black-4 {
  margin-top: 55px;
  margin-bottom: 25px;
}

.text-overlay-black-5 {
  margin-top: 55px;
  margin-bottom: 25px;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.body-button {
  font-family: Poppins, Arial;
  text-align: center;
  font-size: 18px;
  color: #070E20;
  background-color: #FFDE02;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  white-space: nowrap;
  /* Prevent line breaks */
  font-style: normal;
  font-weight: 500;
  line-height: 22.152px;
  /* 158.228% */
  letter-spacing: -0.07px;
  max-width: 440px;
  height: auto;
}

.paragraph-1 {
  margin-top: 80px;
  margin-bottom: 45px;
}



@media (max-width: 700px) {
  .paragraph-1 {
    margin-top: 50px;
  }

  .paragraph-2 {
    padding-top: 30px;
  }

  .paragraph-3 {
    padding-top: 30px;
  }

  .paragraph-4 {
    padding-top: 30px;
  }
  


}



@media (max-width: 640px) {
  .text-overlay-black-2 {
    margin-right: 10px;
    margin-left: 10px;
  }

  .text-overlay-black-3 {
    margin-right: 10px;
    margin-left: 10px;
  }

  .text-overlay-black-4 {
    margin-right: 10px;
    margin-left: 10px;
  }

  .text-overlay-black-5 {
    margin-right: 10px;
    margin-left: 10px;
  }
}

@media (max-width: 600px) {
  .paragraph-1 {
    margin-top: 30px;
  }

  .paragraph-2 {
    padding-top: 20px;
  }

  .paragraph-3 {
    padding-top: 20px;
  }

  .paragraph-4 {
    padding-top: 20px;
  }

  .text-overlay-black-2 {
    margin-top: 20px;
  }

  .text-overlay-black-4 {
    margin-top: 80px;
  }

  .text-overlay-black-5 {
    margin-top: 80px;
  }
}

@media (max-width: 500px) {
  .paragraph-1 {
    margin-top: 10px;
  }

  .paragraph-2 {
    padding-top: 10px;
  }

  .paragraph-3 {
    padding-top: 10px;
  }

  .paragraph-4 {
    padding-top: 10px;
  }

  .body-button {
    font-family: Poppins, Arial;
    text-align: center;
    font-size: 16px;
    color: #070E20;
    background-color: #FFDE02;
    padding: 12px 24px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    white-space: nowrap;
    /* Prevent line breaks */
    font-style: normal;
    font-weight: 500;
    line-height: 22.152px;
    /* 158.228% */
    letter-spacing: -0.07px;
    max-width: 440px;
    height: auto;
  }



}

@media (max-width: 480px) {

  .paragraph-2 {
    padding-top: 10px;
  }

  .paragraph-3 {
    padding-top: 10px;
  }

  .paragraph-4 {
    padding-top: 10px;
  }

.text-overlay-black-1 {
  margin-top: 50px;
}

.text-overlay-black-3 {
  margin-top: 50px;
}

}

@media (max-width: 680px) {
  .paragraph {
    padding-right: 50px;
    padding-bottom: 30px;
    padding-left: 50px;
  }
}

@media (max-width: 480px) {

  .paragraph {
    color: rgba(7, 14, 32, 0.60);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }

  .text-overlay-black {
    color: #070E20;
    text-align: center;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    /* 112.5% */
    letter-spacing: -0.64px;
  }

  .text-overlay-black-2 {
    margin-top: 30px;
  }

  .text-overlay-black-4 {
    margin-top: 30px;
  }

  .text-overlay-black-5 {
    margin-top: 30px;
  }



}

@media (max-width: 380px) {
  .paragraph {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .paragraph {
    font-size: 14px;
  }
}

/*flex columns universal A*/

.digitA {
  font-family: Poppins, Arial;
  font-size: 18px;
  color: #000000;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 23.4px */
  padding-top: 10px;
  padding-bottom: 20px;
}

.columnLeftA {
  border-radius: 8px 8px 8px 8px;
  margin-right: 13px;
  border: 1px solid rgba(7, 14, 32, 0.20);
}

.columnMiddleA {
  border-radius: 8px 8px 8px 8px;
  margin-left: 13px;
  margin-right: 13px;
  border: 1px solid rgba(7, 14, 32, 0.20);
}

.columnRightA {
  border-radius: 8px 8px 8px 8px;
  margin-left: 13px;
  border: 1px solid rgba(7, 14, 32, 0.20);
}

@media (max-width: 899px) {
  .columnRightA {
    margin-top: 26px;
  }
}


@media (max-width: 618px) {
  .columnLeftA {
    margin: 8px 13px 8px 0px;
  }

  .columnMiddleA {
    margin: 8px 0px 8px 13px;
  }

  .columnRightA {
    margin: 26px 0px 8px 0px;
  }
}

@media (max-width: 605px) {
  .columnLeftA {
    margin: 8px 0px 8px 0px;
  }

  .columnMiddleA {
    margin: 8px 0px 8px 13px;
  }

  .columnRightA {
    margin: 26px 0px 8px 0px;
  }
}

@media (max-width: 592px) {
  .columnLeftA {
    margin: 8px 4px 8px 0px;
  }

  .columnMiddleA {
    margin: 8px 0px 4px 0px;
  }

  .columnRightA {
    margin: 8px 0px 8px 0px;
  }
}

@media (max-width: 583px) {
  .columnLeftA {
    margin: 8px 0px 8px 0px;
  }

  .columnMiddleA {
    margin: 8px 4px 4px 0px;
  }

  .columnRightA {
    margin: 8px 0px 4px 0px;
  }
}

@media (max-width: 578px) {
  .columnLeftA {
    margin: 8px 0px 8px 0px;
  }

  .columnMiddleA {
    margin: 8px 0px 8px 0px;
  }

  .columnRightA {
    margin: 8px 0px 8px 0px;
  }
}



@media (max-width: 380px) {
  .columnLeftA {
    border-radius: 8px 8px 8p 8p;

  }

  .columnMiddleA {
    border-radius: 8px 8px 8p 8p;

  }

  .columnRightA {
    border-radius: 8p 8p 8px 8px;
  }
}

/*Flex Three Columns A*/

.containerA {
  display: flex;
  flex-wrap: wrap;
  max-width: 940px;
  /* Set your desired max-width for the container */
  margin: 0 auto;
  padding: 20px;
  justify-content: center;
}

.columnA {
  color: rgba(7, 14, 32, 0.60);
  font-family: Poppins, Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 133.333% */
  margin-bottom: 0px;
  background-color: white;
  padding: 27px 27px 27px 27px;
  box-sizing: border-box;

}

@media (max-width: 912px) {
  .columnLeftA {
    padding: 27px 27px 27px 27px;
  }
}

@media (max-width: 544px) {
  .columnLeftA {
    padding: 27px 27px 27px 27px;
  }
}

@media (max-width: 380px) {
  .columnA {
    width: 100%;
    /* Stack columns on smaller screens */
  }
}








/*flex columns universal B*/

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  /* Set your desired max-width for the container */
  margin: 0 auto;
  padding: 0px;
  justify-content: center;
}

.published {
  font-family: Poppins, Arial;
  font-size: 20px;
  color: #141D22;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.column {

  margin-bottom: 0px;
  font-family: Poppins, Arial;
  background-color: #E1EBE54D;
  padding: 27px 27px 27px 27px;
  box-sizing: border-box;
  border-radius: 8px 8px 8px 8px;
  margin: 12px;
}

.column-description {
  color: rgba(20, 29, 34, 0.60);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

@media (max-width: 912px) {
  .column {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}



@media (max-width: 380px) {
  .column {
    width: 100%;
    /* Stack columns on smaller screens */
  }
}


/*Personal Targets Table*/


.pt-container {
  position: relative;
  width: 100%;
  max-width: 1226px;
  margin: 0 auto;
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 340px;
}

.image-container-exc1 img {
  margin-bottom: 360px;
}

.image-container-exc2 img {
  margin-bottom: 360px;
}


.personal-target-table {
  font-family: "Poppins", sans-serif;
  color: white;
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -10%);
  background-color: #47667B;
  padding: 20px 60px 20px 60px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 700px;
  z-index: 10;
  /* Ensures the table is above the image */
}

.personal-target-table table {
  width: 100%;
  border-collapse: collapse;
}

.personal-target-table th,
.personal-target-table td {
  padding: 6px 10px 6px 80px;
  border: none;
  /* Remove the cell borders */
}

.personal-target-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  /* Add row borders */
}

.personal-target-table tr:last-child {
  border-bottom: none;
  /* Remove the border from the last row */
}


.pt-header {
  color: #FFFFFF;
  text-align: center;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.6px;
  margin-bottom: 24px;

}

table th {
  color: #FFFFFF;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}

table td {
  color: rgba(255, 255, 255, 0.60);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}


@media (max-width: 900px) {
  .personal-target-table {
    max-width: 600px;
  }

.personal-target-table th,
.personal-target-table td {
  padding: 6px 10px 6px 60px;
  border: none;

}

}

@media (max-width: 800px) {
  .personal-target-table {
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .personal-target-table {
    max-width: 440px;
  }

.personal-target-table th {
    padding: 6px 30px 6px 40px;
  }

.personal-target-table td {
    padding: 6px 30px 6px 40px;
  }


}

@media (max-width: 580px) {
  .personal-target-table {
    max-width: 360px;
  }

.personal-target-table th {
    padding: 6px 30px 6px 20px;
  }

.personal-target-table td {
    padding: 6px 30px 6px 20px;
  }


}



@media (max-width: 480px) {
  .personal-target-table {
    top: 100%;
    padding: 20px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .personal-target-table th {
    padding: 6px 30px 6px 10px;
  }
}

@media (max-width: 480px) {
  .personal-target-table td {
    padding: 6px 10px 6px 10px;
  }
}







@media (max-width: 1200px) {
  .image-container img {
    margin-bottom: 340px;
  }
.image-container-exc1 img {
  margin-bottom: 380px;
}

.image-container-exc2 img {
  margin-bottom: 380px;
}



}

@media (max-width: 1000px) {
  .image-container img {
    margin-bottom: 360px;
  }

.image-container-exc1 img {
  margin-bottom: 420px;
}

.image-container-exc2 img {
  margin-bottom: 420px;
}


}

@media (max-width: 900px) {
  .image-container img {
    margin-bottom: 400px;
  }

.image-container-exc1 img {
  margin-bottom: 440px;
}
}

@media (max-width: 800px) {
  .image-container img {
    margin-bottom: 420px;
  }

.image-container-exc1 img {
  margin-bottom: 480px;
}

.image-container-exc2 img {
  margin-bottom: 720px;
}


}

@media (max-width: 700px) {
  .image-container img {
    margin-bottom: 440px;
  }
.image-container-exc1 img {
  margin-bottom: 490px;
}

.image-container-exc2 img {
  margin-bottom: 720px;
}

}

@media (max-width: 600px) {
  .image-container img {
    margin-bottom: 460px;
  }
.image-container-exc1 img {
  margin-bottom: 520px;
}
.image-container-exc2 img {
  margin-bottom: 720px;
}
}

@media (max-width: 580px) {
.image-container-exc2 img {
  margin-bottom: 860px;
}
}


@media (max-width: 500px) {
  .image-container img {
    margin-bottom: 460px;
  }
.image-container-exc1 img {
  margin-bottom: 540px;
}
.image-container-exc2 img {
  margin-bottom: 880px;
}
}

@media (max-width: 480px) {
  .image-container img {
    margin-bottom: 540px;
  }
.image-container-exc1 img {
  margin-bottom: 580px;
}
.image-container-exc2 img {
  margin-bottom: 820px;
}
}

@media (max-width: 410px) {
.image-container-exc2-2 img {
margin-bottom: 860px;
}
}

@media (max-width: 400px) {
.image-container-exc2-2 img {
margin-bottom: 900px;
}
}

@media (max-width: 392px) {
.image-container-exc2-2 img {
margin-bottom: 960px;
}
}

@media (max-width: 390px) {
.image-container-exc2-2 img {
margin-bottom: 1040px;
}
}


@media (max-width: 380px) {
  .image-container img {
    margin-bottom: 580px;
  }
.image-container-exc1 img {
  margin-bottom: 640px;
}
.image-container-exc2 img {
  margin-bottom: 1040px;
}


}

@media (max-width: 360px) {
  .image-container img {
    margin-bottom: 600px;
  }

  .image-container-exc1 img {
   margin-bottom: 640px;
  }
.image-container-exc2 img {
  margin-bottom: 1060px;
}
}

@media (max-width: 353px) {
.image-container-exc2 img {
  margin-bottom: 1080px;
}
}



@media (max-width: 350px) {

.image-container-exc2 img {
  margin-bottom: 1140px;
}
}

@media (max-width: 340px) {
  .image-container img {
    margin-bottom: 660px;
  }
.image-container-exc2 img {
  margin-bottom: 1200px;
}
}

@media (max-width: 340px) {
.image-container-exc2 img {
  margin-bottom: 1120px;
}
}

@media (max-width: 330px) {
  .image-container img {
    margin-bottom: 700px;
  }
.image-container-exc2 img {
  margin-bottom: 1200px;
}

.image-container-exc2 img {
  margin-bottom: 1140px;
}
}

@media (max-width: 320px) {
  .image-container img {
    margin-bottom: 740px;
  }
.image-container-exc2 img {
  margin-bottom: 1260px;
}
.image-container-exc2 img {
  margin-bottom: 1140px;
}
}

/*What does EXD mean */

.pt-container-2 {
  position: relative;
  width: 100%;
  max-width: 1226px;
  margin: 0 auto;
}

.image-container-2 {
  position: relative;
}

.image-container-2 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 80px;
  margin-bottom: 180px;
}

.personal-target-table-2 {
  font-family: "Poppins", sans-serif;
  color: white;
  position: absolute;
  top: 86%;
  left: 50%;
  transform: translate(-50%, -10%);
  background-color: #F5F5F5;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1100px;
  z-index: 10;
  /* Ensures the table is above the image */
}

.pt-header-2 {
  color: #070E20;
  text-align: center;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}

.pt-paragraph-2 {
  color: rgba(7, 14, 32, 0.60);
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 24px;
  max-width: 800px;
  margin: 0 auto;
}


@media (max-width: 900px) {

.personal-target-table-2 {
  max-width: 740px;
}

.image-container-2-exception img {
  margin-bottom: 240px;
}

}

@media (max-width: 800px) {

.personal-target-table-2 {
  max-width: 640px;
}

.image-container-2-exception img {
  margin-bottom: 240px;
}


}

@media (max-width: 720px) {

.personal-target-table-2 {
  max-width: 560px;
}
.image-container-2 img {
margin-bottom: 260px;
}

}

@media (max-width: 640px) {

.personal-target-table-2 {
  max-width: 500px;
}

.image-container-2-exception img {
  margin-bottom: 300px;
}


}


@media (max-width: 580px) {

.personal-target-table-2 {
  max-width: 420px;
}
}


@media (max-width: 500px) {
.personal-target-table-2 {
  max-width: 380px;
}
.image-container-2 img {
margin-bottom: 300px;
}

.image-container-2-exception img {
  margin-bottom: 360px;
}

}

@media (max-width: 480px) {
 .personal-target-table-2 {
  max-width: 312px;
  }
.image-container-2 img {
margin-bottom: 380px;
}

.image-container-2-exception img {
  margin-bottom: 420px;
}

}

@media (max-width: 420px) {
 .personal-target-table-2 {
  max-width: 280px;
  }
}

@media (max-width: 400px) {
 .personal-target-table-2 {
  max-width: 260px;
  }

.image-container-2-exception img {
  margin-bottom: 480px;
}
}

@media (max-width: 380px) {
 .personal-target-table-2 {
  max-width: 240px;
  }

.image-container-2 img {
margin-bottom: 420px;
}

.image-container-2-exception img {
  margin-bottom: 500px;
}


}

/*Youtube Area*/

@media (max-width: 1000px) {
  iframe {
    max-width: 800px;
    max-height: 450px;
  }
}

@media (max-width: 800px) {
  iframe {
    max-width: 600px;
    max-height: 340px;
  }
}

@media (max-width: 600px) {
  iframe {
    max-width: 460px;
    max-height: 260px;
  }
}

@media (max-width: 480px) {
  iframe {
    max-width: 360px;
    max-height: 200px;
  }
}

@media (max-width: 360px) {
  iframe {
    max-width: 300px;
    max-height: 170px;
  }
}





/*Footer logo*/
.footer {
 margin-top: 135px; 
 margin-bottom: 10px;

}

.footer-logo {
  display: flex;
  flex-wrap: wrap;
  max-width: 1366px;
  /* Set your desired max-width for the container */
  margin: 0 auto;
  padding: 0px 20px 20px 20px;
}

.footer-disclaimer {
  display: flex;
  flex-wrap: wrap;
  max-width: 1366px;
  /* Set your desired max-width for the container */
  margin: 0 auto;
  color: rgba(20, 29, 34, 0.60);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.105px;
  padding: 20px 20px 20px 20px;
}

@media (max-width: 830px) {
  .footer {
    padding: 20px 20px 40px 20px;
  }

}

  @media (max-width: 380px) {
    .footer-disclaimer {
      margin-bottom: 20px;
    }

    .footer-disclaimer {
      font-size: 10px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
      letter-spacing: 0.075px;
    }
  }