.module1 {
  display: none;
  max-width: 100%;
  padding: 48px 5%;
  margin-top: 40px;
}
.module1_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.module1_header h1 {
  width: 50%;
  font-size: var(--font-size1);
}
.module1_header p {
  width: 50%;
  font-size: 20px;
  color: var(--para-color);
}
.module1_img {
  margin-top: 48px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.module1_img img {
  width: 100%;
  height: auto;
}
.module1_img img:hover {
  transform: scale(1.01);
  transition: all 0.3s ease-in-out;
}
.module2 {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 32px 0;
  margin-top: 60px;
}
.module2 h1 {
  font-size: var(--font-size2);
}
.grid_container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  padding: 20px 100px;
  margin: 48px 0 0 0;
  gap: 20px;
}
.grid_card {
  position: relative;
  height: auto;
  padding: 14px;
  text-align: left;
  border-radius: 12px;
  border: 1px solid #ececec;
}
.grid_card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.grid_card h3 {
  font-size: 16px;
  color: var(--black);
  margin: 16px 0 0 0;
  font-weight: var(--font-semibold);
}
.grid_card h3 span {
  font-size: 14px;
}
.grid_card p {
  margin: 16px 0 32px 0;
  color: var(--black);
  font-size: 14px;
  font-weight: var(--font-regular);
  text-overflow: ellipsis;
}
.grid_card a {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 16px 0 0 0;
  gap: 16px;
  text-decoration: none;
  color: #10528b;
}
.module3 {
  width: 100%;
  height: auto;
  padding: 64px 5%;
  background: var(--bg-gradient);
}
.newsletter-container {
  width: 100%;
  height: auto;
  text-align: center;
}
.newsletter-container h2 {
  font-size: var(--font-size2);
  font-weight: var(--font-medium);
  color: #fff;
}
.newsletter-container p {
  color: #d2d2d2;
  margin-block: 24px 48px;
}
.newsletter-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.newsletter-input button {
  width: 150px;
  padding: 16px;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-weight: var(--font-semibold);
}
.newsletter-input button:nth-child(1) {
  background: var(--btn-gradient);
}
.newsletter-input button:nth-child(2) {
  background-color: #fff;
  color: #000;
}
@media screen and (min-width: 1440px) {
  main p {
    font-size: 18px;
  }
  .module1 {
    height: auto;
    padding: 48px 5%;
  }
  .module1_header p {
    text-align: start;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  .module1 {
    width: 100%;
    height: auto;
    padding: 32px 5%;
  }
  .module1 h1,
  .module3 h1 {
    font-size: var(--font-size2);
  }
  .module1_img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .module1 {
    width: 100%;
    height: auto;
    padding: 32px 5%;
  }
  .module1_header h1 {
    font-size: var(--font-size2);
  }
  .module1_img img {
    width: 100%;
    height: auto;
  }
  .module3 h1 {
    font-size: 42px;
  }
  .grid_container {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 50px;
  }
}
@media screen and (min-width: 426px) and (max-width: 768px) {
  .module1 {
    height: auto;
    padding: 32px 5%;
  }
  .module1_header h1 {
    width: 100%;
    font-size: clamp(32px, 48px, 48px);
  }
  .module1_header p {
    width: 100%;
    font-size: var(--font-size4);
    margin: 14px 0 0 0;
  }
  .module1_img img {
    width: 100%;
    height: auto;
  }
  .module3 h1 {
    font-size: clamp(30px, 35px, 42px);
  }
  .grid_container {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 50px;
  }
}
@media screen and (max-width: 426px) {
  .module1 {
    width: 100%;
    height: auto;
  }
  .module1_header {
    flex-direction: column;
  }
  .module1_header h1 {
    font-size: clamp(24px, 32px, 36px);
    width: 100%;
  }
  .module1_header p {
    font-size: 14px;
    width: 100%;
    margin: 16px 0 0 0;
  }
  .module1_img {
    margin: 16px 0 0 0;
  }
  .module1_img img {
    width: 100%;
    height: auto;
  }
  .module2 h1,
  .module3 h1 {
    font-size: clamp(24px, 32px, 36px);
  }
  .grid_container {
    grid-template-columns: 1fr;
    padding: 20px 20px;
  }
}
