@import url('https://fonts.googleapis.com/css2?family=Acme&family=Asul:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Asul:wght@400;700&family=Bree+Serif&family=Lato:wght@300&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@500;600&family=Raleway:wght@100;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
html {
    scroll-behavior: smooth;
  }
body {
    font-family: "Asul", sans-serif;
}
body::-webkit-scrollbar {
  display: none;
}
.container {
  height: 150vw;
  width: 100%;
}

.banner {
  height: 30vw;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner img {
  height: 30vw;
  width: 130%;
}
.text_part{
  height: 120vw;
  width: 100%;
}
.text_part .top_heading {
  text-transform: uppercase;
  color: #FD0707;
  font-weight: 800;
  font-size: 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4vw;
}
.text_part p {
  color: black;
  font-size: 1.6vw;
  margin: 3vw 4vw;
}
.sub_heading {
  color: #ED1F23;
  font-size: 2.5vw;
  margin: 3vw 4vw;
}
.text_part ul {
  list-style-type: disc; /* or circle if you prefer */
  margin-left: 5.5vw;
}

.text_part ul li {
  margin-bottom: 1vw; /* Spacing between list items */
}

.text_part ul li p {
  margin: 0 4vw 0 1vw; /* Remove margin from <p> inside <li> */
}

@media screen and (max-width: 480px) {
.container {
  height: 185vh;
  width: 100%;
}
.banner img {
  height: 60vw;
}
.text_part .top_heading {
  margin-top: 19vw;
}
.text_part p {
 font-size: 3.5vw;
 margin: 3vw 5vw;
}
.sub_heading {
 font-size: 5vw;
}
.text_part ul {
 margin-left: 9vw;
}
}
