:root {
  --main-font: "Poppins", sans-serif;
  --black: #333333;
  --blue: #18a0fb;
  --background-gray: #ecedef;
  --shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  --shadow-2: rgba(50, 50, 93, 0.103) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  padding: 0 100px;
  background-color: var(--background-gray);
}

h1 {
  font-family: var(--main-font);
  font-size: 46px;
  font-weight: 700;
  line-height: 38px;
}

h2 {
  font-family: var(--main-font);
  font-size: 36px;
  font-weight: 700;
  line-height: 38px;
}

h3 {
  font-family: var(--main-font);
  font-size: 31px;
  font-weight: 700;
  line-height: 38px;
}

p {
  font-family: var(--main-font);
  color: var(--black);
  opacity: 0.7;
}

/*SEC 1*/

.sec-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(65, 65, 65, 0.141);
  height: 20vh;
}

.sec-1-2 ul {
  display: flex;
}

.sec-1-2 ul li {
  padding: 0 20px;
  list-style: none;
  font-family: var(--main-font);
}

.sec-1-2 ul li a {
  text-decoration: none;
  color: var(--black);
}

/*SEC 2*/

.sec-2 {
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 80vh;
}

.sec-2 img {
  width: 250px;
}

.sec-2 h1 {
}

.sec-2-1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec-2-2 {
  display: flex;
  flex-direction: column;
  width: 50%;
}

textarea {
  border-color: rgba(65, 65, 65, 0.141);
  border-radius: 20px;
  width: 100%;
  height: 250px;
  resize: none;
  padding: 25px;
  font-family: var(--main-font);
  color: var(--black);
}

textarea:focus-visible {
  outline: 0px var(--background-gray);
}

.sec-2-2-in {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.sec-2-2-in a {
  text-decoration: none;
  font-family: var(--main-font);
  font-size: 13px;
  background-image: linear-gradient(
    to right,
    #683be6 0%,
    #ae2ae4 51%,
    #cc2ddf 100%
  );
  color: var(--background-gray);
  padding: 7px;
  border-radius: 10px;
  width: 35%;
  text-align: center;
}

.sec-2-2-in h3 {
  width: 65%;
  text-align: center;
  font-size: 20px;
}

@media (max-width: 1000px) {
  body {
    padding: 0 4rem;
  }

  h1 {
    font-size: 36px;
  }

  .sec-1-2 {
    display: none;
  }
  .sec-2 {
  }

  .sec-2 {
    height: 1000px;
    padding: 0px 0px;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .sec-2-1 {
    width: 100%;
    align-items: center;
  }

  .sec-2 h1 {
    text-align: center;
    padding-top: 50px;
  }

  .sec-2 img {
    width: 200px;
  }

  .sec-2-2 {
    width: 100%;
    align-items: center;
  }

  .sec-2-2-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
    width: 100%;
  }

  .sec-2-2-in a {
    width: 100%;
  }

  .sec-2-2-in h3 {
    margin-top: 5px;
  }
}
