* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: sans-serif;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  max-width: 140rem;
  width: 95%;
  margin: 0 auto;
  background-color: #dbe4ff;
}
nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:2rem 4rem;
}
.logo img {
  height: 100px;
  width: 200px;
  margin-left: 4rem;
}
.bar{
    display: none;
}
ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
.menu ul li {
  display: block;
  padding: 1rem 1.5rem;
  position: relative;
  text-align: center;
}
.menu ul li a {
  position: relative;
}
.menu ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  border-radius: 4rem;
  height: 100%;
  transition: 0.5s;
  transform-origin: center;
  background-color: #f44a0c;
}
.menu ul li:hover::before {
  width: 100%;
}
.menu ul li a {
  color: #000;
  font-weight: 700;
  font-size: 2.4rem;
  text-transform: capitalize;
}
.menu ul li:first-child a {
  color: #fa4a0c;
  opacity: 0.7;
}
.menu ul li:hover a{
    color:#f5f5f5;
    opacity: 1;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../img/bg.png);
  background-size: cover;
  padding: 10rem;
  color: #f5f5f5;
  height: 65rem;
}
.hero-info {
  text-align: center;
  width: 60%;
  margin: 3.4rem auto 0;
}
.hero h3 {
  font-size: 2rem;
  line-height: 2;
}
.hero h1 {
  font-size: 4.2rem;
  line-height: 1.4;
}
.hero p {
  margin-top: 2rem;
  font-size: 1.4rem;
  letter-spacing: 1.3px;
}
.hero-btn {
  width: 80%;
  margin: 5rem auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.hero-btn button:first-child {
  border: none;
  background-color: #fa4a0c;
  padding: 1.4rem 2.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 5rem;
}
.hero-btn button:last-child {
  border: 2px #f5f5f5 solid;
  background-color: transparent;
  padding: 1.4rem 2.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 5rem;
}
a:active,
a:link,
a:visited,
a:hover{
  color: #f5f5f5;
}
.hero-image img{
  width: 60%;
  object-fit: cover;
  margin: -34rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px rgba(0, 0, 0, 0.3) solid;
}
.hero-process {
  width: 100%;
  padding: 4rem;
}
.hero-process > h1 {
  font-size: 3.4rem;
  text-align: center;
}
.process {
  padding: 0 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  border-bottom: 2px rgba(0, 0, 0, 0.3) solid;
}
.process-img img {
  width: 100%;
}
.process-info {
  width: 80%;
  margin: 0 auto;
}
.process-info h3 {
  color: #fa4a0c;
  line-height: 1.5;
  opacity: 0.8;
  font-size: 2.4rem;
  font-weight: 800;
}
.process-info h1 {
  font-size: 3.4rem;
  line-height: 1.5;
  font-weight: 900;
  text-transform: capitalize;
}
.process-info p {
  margin-top: 1rem;
  font-size: 1.6rem;
}
.process:nth-child(odd) .process-info {
  order: -1;
}
.hero-finish {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #f5f5f5;
  background-image: url("../img/footer.png");
  background-size: cover;
  height: 50rem;
  text-align: center;
  padding: 8rem;
}
.hero-finish h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.5;
}
.hero-finish p {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 1.5px;
  word-spacing: 4px;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem;
  font-size: 2rem;
  color: #f44a0c;
}
i {
  color: #f44a0c;
  font-size: 3.4rem;
}

