@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
img {
  width: 100%;
  height: auto;
}

h1 {
  font-size: 90px;
  font-weight: 700;
  text-transform: uppercase;
}
a {
  text-decoration: none;
}
a,
p {
  color: #fff;
  font-size: 18px;
}

body {
  color: #fff;
}

.my-30 {
  margin: 30px 0;
}
.ic-banner {
  background: url("../images/banner.jpg") no-repeat center center/cover;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  text-align: center;
}

.ic-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.529);
  z-index: -1;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
}

.ic-section-middle {
  display: flex;
  align-items: center;
  height: 100vh;
}

.ic-banner-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ic-logo img {
  max-width: 300px;
  height: auto;
}
form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

input {
  width: 400px;
  height: 45px;
  border-radius: 8px;
  padding: 0 15px;
  border: none;
  font-size: 16px;
}

input:focus {
  outline: none;
}

button {
  background-color: #0078c3;
  color: white;
  border: none;
  height: 45px;
  padding: 0 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #0078c3;
}

button:hover {
  background-color: transparent;
  color: #0078c3;
}

.ic-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.ic-contact a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.ic-copyright {
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

@media (max-width: 1399.98px) {
  h1 {
    font-size: 80px;
  }
  .my-30 {
    margin: 25px 0;
  }
  input {
    width: 380px;
  }
  .ic-logo img {
    max-width: 280px;
  }
}
@media (max-width: 1199.98px) {
  h1 {
    font-size: 70px;
  }
  .my-30 {
    margin: 20px 0;
  }
  input {
    width: 360px;
  }
  .ic-logo img {
    max-width: 260px;
  }
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 60px;
  }
  .my-30 {
    margin: 15px 0;
  }
  input {
    width: 340px;
  }
  .ic-logo img {
    max-width: 240px;
  }
  a,
  p {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 50px;
  }

  p {
    font-size: 16px;
  }

  input {
    width: 320px;
  }
  .ic-logo img {
    max-width: 220px;
  }

  .container {
    padding: 0 15px;
  }

  .ic-logo img {
    max-width: 180px;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 40px;
  }
  input {
    width: 300px;
  }
  .ic-logo img {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  a,
  p {
    font-size: 14px;
  }

  input,
  button {
    height: 40px;
    width: 100%;
  }

  .ic-copyright {
    font-size: 12px;
  }
  .ic-contact {
    flex-direction: column;
    text-align: center;
  }
  .ic-contact {
    gap: 10px;
 }
}

@media (max-width: 375.98px) {
  h1 {
    font-size: 30px;
  }
}
