@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #fead53;
  --text-dark: #333333;
  --text-light: #ffffff33;
  --extra-light: #f3f4f6;

  --max-width: 1300px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

input::placeholder {
  color: var(--extra-light);
}

body {
  font-family: "Open Sans", sans-serif;
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

nav {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: var(--max-width);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--extra-light);
  justify-content: center;
  align-items: center;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav__links .link {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--extra-light);
  cursor: pointer;
  transition: 0.3s;
}

.nav__links .link:hover {
  color: var(--primary-color);
}

.search__box {
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--extra-light);
  display: flex;
  align-items: center;
}

.search__box input {
  color: var(--extra-light);
  background-color: transparent;
  outline: none;
  border: none;
}

.search__box i {
  color: var(--extra-light);
  font-size: 1.2rem;
  cursor: pointer;
}

.container {
  display: flex;
  flex-wrap: wrap;
  min-height: 20vh;
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem;
  padding-top: 20px;
  position: relative;
}

.container__right,
.container__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;

}
.image_app {
    width:600px;height:600px;   align-items: center;
        justify-content: center;
  }

.container__right {
  order: 1;
}

.container__left {
  order: 2;
}

.container__right .content {
  max-width: 260px;
  display: grid;
  gap: 1rem;
}

.content h4 {
  font-size: 4rem;
  line-height: 4rem;
  color: var(--extra-light);
  font-weight: 700;
}

.content p {
  color: var(--extra-light);
}

.btns {


}

.btns button {

}

button.read__more {
 
}

button.our__blogs:hover {
 
}

.chevrons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.chevrons span {
  height: 40px;
  width: 40px;
  font-size: 1.5rem;
  color: var(--extra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--extra-light);
  cursor: pointer;
  transition: 0.3s;
}

.chevrons span:hover {
 
}

form {
  width: 100%;
  max-width: 350px;
  margin: auto;
  display: grid;
  border-radius: 5px;
  background-color: var(--text-light);
  color: var(--extra-light);
  padding: 1rem;
}

form h4 {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2rem;
}

.form__group {
  display: grid;
  padding: 0 2rem;
  margin-bottom: 1rem;
}



/* Media Queries */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .nav__logo {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    
  }

  .nav__links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .nav__links .link {
    font-size: 1rem;
  }

  .search__box {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
  }

  .container {
    flex-direction: column;
    padding: 1rem;
  }

  .image_app {
    width:260px;height:260px;   align-items: center;
        justify-content: center;
  }

  .container__left,
  .container__right {
    order: initial;
    flex: 1 1 100%;
  }

  .container__left .content {
    max-width: 100%;
  }

  .content h4 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .btns {
   
  }

  form h4 {
    padding: 1rem;
  }

  .form__group {
    padding: 0 1rem;
  }

  .bottom__tracker {
    flex-direction: column;
    align-items: center;
  }

  .bottom__tracker span {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .btns button {
   
  }

  form h4 {
    font-size: 1rem;
  }

  .form__group input {
    font-size: 0.9rem;
  }

  form button {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .chevrons span {
    height: 30px;
    width: 30px;
    font-size: 1.2rem;
  }

  .bottom__tracker span {
    width: 40px;
  }
}
