@import url(./style.css);

/* Section One */

.sec_one {
  height: 110vh;
  display: grid;
  background-size: cover;
  background-position: right;
  grid-template-columns: repeat(2, 1fr);
  background-image: url(../images/rocket.png);
}

.sec_one .right {
  display: flex;
  margin-left: 3rem;
  align-items: center;
  justify-content: center;
}

/* Section Two */

.sec_two {
  margin-top: 5rem;
  text-align: center;
}

.sec_two .inner {
  width: 60%;
  margin: auto;
}

/* Section Three */

.sec_three {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}

.sec_three .right {
  margin-right: 5rem;
}

.sec_three .line {
  z-index: -2;
  position: relative;
}

.sec_three .line:before {
  left: 0;
  top: 50%;
  height: 2px;
  width: 50px;
  content: " ";
  display: block;
  position: absolute;
  background: white;
}

.sec_three .line:after {
  content: "We Believe in Quality";
  margin-left: 55px;
}

.sec_three .left {
  gap: 2rem;
  display: grid;
  margin: 0 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.sec_three .box {
  z-index: -2;
  padding: 1rem;
  border-radius: 5px;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.sec_three .box img {
  width: 2.5rem;
}

/* Section Four */

.sec_four {
  margin: 5rem 0;
}

.sec_four h2 {
  text-align: center;
}
