.header {
  margin-top: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9999;
}

.header__content {
  width: 600px;
}

.header__content h1 {
  font-size: 32px;
}

.header__content p {
  font-size: 23px;
  width: 500px;
  margin-top: 25px;
  line-height: 30px;
}

.header__content button {
  border-radius: 6px;
  margin-top: 35px;
  width: 210px;
  background-color: #C147E9;
  height: 55px;
  border: none;
  outline: none;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -1px;
  color: #fff;
  font-size: 20px;
  box-shadow: 0px 4px 85px 4px rgba(229, 184, 244, 0.395);
  transition: all .2s;
}

.header__img .circle {
  width: 330px;
  height: 330px;
  background-color: #C147E9;
  box-shadow: 0px 0px 85px 4px rgba(229, 184, 244, 0.395);
  border-radius: 1000%;
}

.header__img .circle .swiper {
  width: 85%;
}

.header__img .circle img {
  width: 100%;
}

.header__content button:hover {
  background-color: #fff;
  box-shadow: 0px 4px 85px 4px rgba(255, 255, 255, 0.395);
  color: #000;
}

@media (max-width: 980px) {
  .header__img .circle {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 830px) {
  .header {
    margin-top: 90px;
  }

  .header__content {
    width: 400px;
  }

  .header__content h1 {
    font-size: 25px;
  }

  .header__content p {
    font-size: 19px;
    width: 100%;
  }

  .header__content button {
    width: 170px;
    height: 50px;
    font-size: 17px;
  }
}

@media (max-width: 710px) {
  .header {
    margin-top: 60px;
  }
  .header__img .circle {
    width: 200px;
    height: 200px;
  }
  
  .header__content {
    width: 350px;
  }
}

@media (max-width: 600px) {
  .header {
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
  }
  .header__content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  .header__content button {
    margin: 35px auto;
  }
}

@media (max-width: 480px) {
  .header__content {
    /* text-align: left; */
  }
  .header__content button {
    /* margin: 0; */
    /* margin-top: 35px;
    margin-bottom: 35px; */
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
  }
  
  .header__content h1 {
    font-size: 20px;
  }

  .header__content p {
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
  }

  
  .header__content {
    width: 290px;
  }
}