* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
    line-height: normal !important;
    font-family: 'Lato',sans-serif !important;
}
/* Font Family */
.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  
/* End Font Family */
.navbar {
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}
.font-lanto{
    font-family: 'Lato', sans-serif;
}


.text {
    font-weight: var(--font-weight, normal);
}

/* Use attribute selectors to set the CSS variable */
.text[data-font-weight="100"] {
    --font-weight: 100;
}

.text[data-font-weight="200"] {
    --font-weight: 200;
}

.text[data-font-weight="300"] {
    --font-weight: 300;
}

.text[data-font-weight="400"] {
    --font-weight: 400;
}

.text[data-font-weight="500"] {
    --font-weight: 500;
}

.text[data-font-weight="600"] {
    --font-weight: 600;
}

.text[data-font-weight="700"] {
    --font-weight: 700;
}

.text[data-font-weight="800"] {
    --font-weight: 800;
}

.text[data-font-weight="900"] {
    --font-weight: 900;
} 
.section-1 {
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #2A6D99;
    gap: 50px;
    padding-bottom: 30px;
}

.section-1 div {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.section-1-1 {
    justify-content: end;
    align-items: end;
    padding-top: 10px;
}
.section-1-1 h1 {
    background-color: yellow;
}

.section-1-1 img {
    margin-top: 20px;
}

.section-1-1 ul {
    list-style-type: none;
    width: 400px;
}

.section-1-1 ul li {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    text-align: left;
    gap: 20px;
}
.section-1-1-img{
    width: 400px;
    /* height: 139px; */
}

.section-1-1 li h2 {
    color: #FAE176;
    font-size: 20px;
    text-align: left;
    width: 100%;
    padding-bottom: 5px;
    padding-top: 5px;
}

.section-1-1 li div {
    text-align: left;
}

.section-1-2 {
    justify-items: start;
    align-items: center; /* Aligns items at the start */
    background-color: #374958;
    padding: 10px 20px; /* Add padding if necessary */
}


.section-1-2 h1 {
    text-align: center;
    font-size: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.section-1-2 img {}
.section-1-2>.form {
    align-items: center;
    width: 80%;
}

.dotted-line {
    border-bottom: 6px dotted #ffffff; /* Dotted line */
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.white-text {
    color: #F4F4F4;
}

.yellow-text {
    color: #F9FF95;
}

.form-fields-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin: 10px 0px;
}

.form-fields-container > input,
.form-fields-container > button {
    width: 100%;
    padding: 20px 20px;
    border-radius: 5px;
    outline: none;
}

.form-fields-container > input {
    border: 1px solid rgb(255, 253, 253); /* Default border color */
    color: rgba(14, 13, 13, 0.5);
}

.form-fields-container > input:focus {
    color: rgba(14, 13, 13, 1);
    border-color: #FFCC00; /* Border color on focus */
}

.form-fields-container > input::placeholder {
    color: rgba(128, 128, 128, 0.966);
}

.form-fields-container > button {
    background-color: #FFAC0B;
    border: 0px;
    color: white;
}

.form-fields-container > button:hover {
    background-color: #ffae0ba4;
}

.justify-text{
    text-align: center;
}


/*      Section 2  */

.section-2{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
    padding: 40px 0px;  
}

.section-2-item{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.section-2-item>div>h3{
    text-align: center;
}

 /* .section-3{
    background-color: #EAEAEA;
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-3>h1{
    text-align: center;
    margin-bottom: 20px;
}
.section-3>div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    text-align: center;
    gap:30px;
    margin: 0px auto;
    flex-wrap: wrap;
}
.section-3 img {
    width: 200px;
    height: 140px;
}
.section-3 p {
 padding:40px 0px;
} */

.section-3 {
    background-color: #EAEAEA;
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-3 > h1 {
    text-align: center;
    margin-bottom: 20px;
}
.section-3 > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 30px;
    width: 80%;
    margin: 0px auto;
    text-align: center;
}
.section-3 img {
    width: 200px;
    height: 140px;
}
.section-3 p {
    padding: 40px 0px;
}

/* 2 per row for medium screens */
@media (max-width: 850px) {
    .section-3 > div {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1 per row for small screens */
@media (max-width: 500px) {
    .section-3 > div {
        grid-template-columns: 1fr;
    }
}

  
.button {
    padding: 30px 60px;
    border: 1px solid #FF712C;
    background-color: rgb(255, 113, 44);
    border-radius: 50px;
    margin: 20px 0px;
    color: white;
    box-shadow: 0px 4px 2px -2px rgb(122, 54, 20);
}
.section-4{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-4-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 30px auto;
}


/* Responsive design for screens 800px and below */
@media (min-width:600px) and ( max-width: 850px) {
    .section-1{
        width: 100%;
        padding: 0%;
        gap: 0;
       }
       
}

/* Responsive design for screens 600px and below */
@media (max-width: 650px) {
   .section-1{
        flex-direction: column;
   }
   .section-1-1{
        align-items: center;
   }
   .section-2{
    flex-direction: column;
    align-items: start;
        gap: 10px;
   }
   .section-2-item>div>h3{
    text-align: left;
   }
   .section-4-content{
    flex-direction: column;
   }
}

@media (max-width: 500px) {
    
    .section-1-1-img{
        width: 300px;
        height: 200px;
    }

    .section-1-1 ul{
        width: 100%;
    }
}
