.main-banner{
  background-image: url(/img/bg-banner.webp);
  background-size: cover;
  padding: 160px 0 64px;
}
.main-banner__left-block{
  width: 50%;
  display: flex;
  flex-direction: column;
}
.main-banner__right-block{
  width: 50%;
  display: flex;
  justify-content: center;
}.main-banner__img{
  width: 100%;
}
.main-banner__h1{
  font-size: 40px;
  line-height: 48px;
}
.main-banner__div{
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  margin-top: 8px;
  color: #000;
  line-height: 32px;
}
.main-banner__link{
  margin-top: 24px;
  width: 200px;
  background : linear-gradient(270deg, #d02ddd 2.44%, #723cde 100%), #f51575;
  box-shadow: inset 0px 0px 20px rgba(255, 255, 255, 0.64);
  display: flex;
  align-items: center;
  color: white;
  justify-content: center;
  height: 60px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  transition: 3s background ease;
}
.main-banner__link:hover{
  background: linear-gradient(270deg, #ce0fdd 2.44%, #ff1741 100%),
  linear-gradient(270deg, #d02ddd 2.44%, #723cde 100%), 
  linear-gradient(180deg, #fff387 0%, #ffc554 100%);
}
.main-banner__link::before{
  position: absolute;
  background: linear-gradient(270deg, #d02ddd 2.44%, #723cde 100%), #f51575;
  content: "";
  opacity: 0.49;
  filter: blur(22px);
  border-radius: 72px;
  height: 48px;
  color: white;
  top: 35px;
  z-index: -1;
  left: 26px;
  width: 159px;
}
@media (max-width:1000px){
  .flex{
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .main-banner__left-block{
    align-items: center;
    width: 90%;
    margin-bottom: 50px;
  }
  .main-banner__h1{
    text-align: center;
    font-size: 36px;
    line-height: 44px;
  }
  .main-banner__div{
    font-size: 20px;
    line-height: 28px;
  }
  .main-banner__link{
    margin-top: 16px;
  }
}
@media (max-width:500px){
  .main-banner__h1{
    font-size: 32px;
    line-height: 1.4;
  }
  .main-banner__left-block{
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
  .main-banner{
    padding:100px 0px;
  }
  .main-banner__div{
    font-size: 16px;
    line-height: 24px;
  }
  .main-banner__right-block{
    width: 100%;
  }
}