.hero {
   padding: 80px 0;
   font-family: 'Montserrat', sans-serif;
}

.hero * {
   font-family: 'Montserrat', sans-serif;
}

.hero-wrapper {
   width: 1320px;
   max-width: 100%;
   padding-left: 20px;
   padding-right: 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-left: auto;
   margin-right: auto;
}

.hero-left {
   width: 492px;
}

.hero-right {
   width: calc(100% - 538px);
}

.hero-right img {
   display: block;
   width: 100%;
   height: auto;
}

.hero-title {
   color: #FFF;
   font-size: 42px;
   font-style: normal;
   font-weight: 700;
   line-height: 110%;
   margin-bottom: 16px;
   text-align: left;
}

.hero-title strong {
   background: linear-gradient(180deg, #9567FF 0%, #DE8BFF 100%);
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-weight: 700;
}

.hero-text {
   color: #F6F6FC;
   font-size: 16px;
   font-style: normal;
   font-weight: 500;
   line-height: 150%;
   text-align: left;
   margin-bottom: 40px;
}

.hero-btn {
   width: fit-content;
   max-width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 8px;
   background: #FFF;
   padding: 17.5px 32px;
   max-width: 100%;
   color: #1F2428;
   text-align: center;
   font-size: 16px;
   font-style: normal;
   font-weight: 700;
   line-height: 120%;
   transition: 0.25s;
   opacity: 1;
   text-decoration: none;
}

.hero-btn-wrapper {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
}

.hero-btn-2 {
   width: fit-content;
   max-width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 8px;
   padding: 17.5px 32px;
   max-width: 100%;
   color: #fff;
   text-align: center;
   font-size: 16px;
   font-style: normal;
   font-weight: 700;
   line-height: 120%;
   transition: 0.25s;
   opacity: 1 ;
   text-decoration: none;
   border: 1px solid #FFF;
}

@media screen and (min-width: 992px) {
   .hero-btn:hover {
      opacity: 0.7;
   }

   .hero-btn-2:hover {
      opacity: 0.7;
   }
}

@media screen and (max-width: 992px) {
   .hero-wrapper {
      padding-left: 16px;
      padding-right: 16px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
   }

   .hero-left {
      width: 100%;
   }

   .hero-right {
      width: 100%;
   }

   .hero {
      padding: 60px 0;
   }

   .hero-title {
      text-align: center;
   }

   .hero-text {
      text-align: center;
   }

   .hero-btn,
   .hero-btn-2 {
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      max-width: 100%;
   }

   .hero-right {
      margin-top: 40px;
   }
}