@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --primary: #f5f5f5;
  --text: #212529;
  --secondary: rgb(0, 0, 0);
  /* --secondary: #003775; */
  --accent: #ff4400f0;
  --a1: #ff4400e4;
  /* --accent: #2D7FAE; */
}

.baner {
  position: relative;
  background-image: url("https://img.freepik.com/free-photo/engineers-with-hard-hats-working-nuclear-power-plant_23-2150957670.jpg?t=st=1716008668~exp=1716012268~hmac=7daf2f4ca3dfbdcfe7ae84587b227bb4f74edfcfb19c31ea2b418516d64744f0&w=1060");
  width: 100vw;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  h1 {
    color: var(--primary);
    font-size: 7vw;
    text-align: center;
    z-index: 2;
    span {
      color: var(--accent);
    }
  }
}
.baner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  filter: blur(15px);
  height: 70vh;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.41);
  z-index: 1;
}

.head {
  display: flex;
  text-wrap: nowrap;
  justify-content: center;
}
.heading {
  text-align: center;
  width: fit-content;
  border-bottom: 4px solid var(--accent);
  margin: 3vw 0;
  font-size: 3.2vw;
}


.first {
  min-height: 10vh;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

/* Info */
.firsthalf {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.firsthalf div{
  padding: 0 4rem 2rem 4rem;
  display: flex;
  gap: 1rem;
  align-items: center;

}

.firsthalf p{
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.firsthalf div a{
  text-decoration: none;
}

.firsthalf div span{
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

.first i{
  color: var(--a1);
  font-size: 2em;
}


/* Form */
.secondhalf {
  width: 100%;
  padding: 2rem;

}

.secondhalf h2{
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.partOne {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 1rem;
}

.partOne div {
  width: 100%;
  display: flex;
  gap: 0.5rem;
}

.partOne input, textarea {
  width: 100%;
  font-size: 1rem;
  border: 0;
  border-bottom: 1.5px solid var(--a1);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  height: 2rem;
  outline: 0;
}

.partOne input:hover, textarea:hover{
  border-bottom: 2px solid var(--a1);
}

.partOne select, option{
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #757575;
}

.partOne textarea{
  resize: none;
  height: 5rem;
}

.sb-button {
  align-items: center;
  background-color: #fff;
  border: 2px solid var(--a1);
  box-sizing: border-box;
  color: var(--a1);
  cursor: pointer;
  display: inline-flex;
  fill: var(--a1);
  font-family: "Inter", sans-serif;
  width: 100%;
  font-size: 1rem;
  border-radius: 2px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.sb-button:hover {
  border-color: #757575;
  color: #757575;
  fill: #757575;
}

.sb-button:active {
  border-color: #757575;
  color: #757575;
  fill: #757575;
}

@media (min-width: 768px) {
  .sb-button {
    min-width: 170px;
  }
}

@media screen and (max-width: 948px){
  .firsthalf div{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .secondhalf{
    padding: 1rem;
  }
}

@media screen and (max-width: 670px){
  .first{
    flex-direction: column;
  }
  .secondhalf{
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media screen and (max-width: 400px){
  .secondhalf{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .firsthalf div{
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
