@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

:root{
  --g-1: linear-gradient(to bottom, rgba(43, 57, 144, .8), #27aae1 95%);
  --g-2: linear-gradient(to bottom, rgba(144, 43, 43, 0.8), #e12727 95%);
  --g-3: linear-gradient(to bottom, rgba(43, 144, 92, 0.8), #27e19a 95%);
  --g-4: linear-gradient(to bottom, rgba(94, 43, 144, 0.8), #6e27e1 95%);
  --g-5: linear-gradient(to bottom, rgba(144, 137, 43, 0.8), #e1c527 95%);
  --bg-gradient: var(--g-3);
  --o-1: #27aae1;
  --o-2: #e12727;
  --o-3: #27e19a;
  --o-4: #6e27e1;
  --o-5: #e1c527;
  --accent: var(--o-3);
  --p-1: 0 12px 12px rgba(39, 170, 225, 0.3);
  --p-2: 0 12px 12px rgba(225, 39, 39, 0.3);
  --p-3: 0 12px 12px rgba(39, 225, 166, 0.3);
  --p-4: 0 12px 12px rgba(154, 39, 225, 0.3);
  --p-5: 0 12px 12px rgba(225, 213, 39, 0.3);
  --box-shadow: var(--p-3);
  --white: #fff;
  --black: #212121;
  --transition: 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  --grey: #939598;
}

html {
  scroll-behavior: smooth;
}

body{
  box-sizing: border-box;
  font-family: 'IBM Plex Sans Arabic', sans-serif !important;
  font-size: 15px;
  margin: 0;
  padding: 0;
  direction: ltr;
  position: relative;
  height: 100%;
}

*{
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

p {
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.4;
}

ul, ol {
  margin-bottom: 6px;
  padding-left: 12px;
}

li {
  margin: 6px;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

img{
  width: 100%;
  display: block;
  box-sizing: border-box;
}

video{
  display: block;
  box-sizing: border-box;
}

h5{
  font-size: 17px;
}

.module{
  padding: 120px 0;
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 19px;
  padding-left: 19px;
  box-sizing: border-box;
}


.row-2,
.row-3,
.row-4,
.row-5{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 19px;
}

.col-2,
.col-3,
.col-4,
.col-5{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.header{
  visibility: hidden;
  transform: translateY(-52px);
  background-color: #231F20;
  position: fixed;
  left: 0;
  right: 0;
  transition: .5s ease-in-out;
  z-index: 99999;
  opacity: 0;
  transition: var(--transition);
}

.visible{
  visibility: visible;
  transform: translateY(0px);
  opacity: 1;
  transition: var(--transition);
}

.menu-nav{
  padding: 19px 0;
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 19px;
}

.menu-list{
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logo-box{
  display: inline-flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: scale(1.02);
  }
  &:hover .logo-title,
  &:focus .logo-title{
    color: var(--accent);
  }
}

.logo-img{
  width: 26px;
  height: 26px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.logo-title{
  color: var(--white);
  font-size: 22px;
  transition: var(--transition);
  margin: 0;
  transition: var(--transition);
}

.menu-item{
  a{
    color: var(--white);
    transition: var(--transition);
  }

  &:hover > a,
  &:focus > a{
    color: var(--accent);
  }
}

.banner{
  background: url('media/section-bg-B5Qx0.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 553px;
  display: flex;

  .wrapper{
    position: relative;
    width: 100%;
  }
}

.banner-box{
  background: var(--bg-gradient);
  position: absolute;
  width: 273px;
  min-height: 603px;
  top: 0;
  padding: 31px 26px;
  text-align: center;
  color: #fff;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  justify-content: space-evenly;

  &::after{
    content: "";
    border-color: var(--accent) transparent transparent;
    border-style: solid;
    border-width: 31px 135px 0;
    bottom: -31px;
    height: 0;
    left: 0;
    position: absolute;
    width: 0;
  }

  .logo-box{
    margin-right: 0;

    &:hover .logo-title,
    &:focus .logo-title{
      color: var(--white);
    }
  }

  .logo-title{
    font-size: 28px;
  }
}

.slogan{
  text-align: center;
}

.banner-video{
  width: 100%;
  height: 220px;

  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.form{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  width: 100%;
}

.form-title{
  font-size: 18px;
}

.input-user-component-section,
.textarea-user-component-section{
  padding: 12px;
  border-radius: 19px;
  background-color: var(--white);
  color: var(--grey);
  border: none;
  outline: none;
  box-sizing: border-box;
}

.privacy{
  color: var(--white);
  transition: var(--transition);
  display: inline-block;

  &:hover,
  &:focus{
    transform: scale(1.02);
  }
}

.ben-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:  19px;
}

.ben-icon{
  background: var(--bg-gradient), url('media/section-bg-B5Qx1.webp') no-repeat;
  background-size: cover;
  background-position: center;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  margin: auto;
  border: 4px solid var(--white);
  box-shadow: var(--box-shadow);
  font-size: 33px;
  color: var(--white);
  line-height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.ben-row{
  margin-top: 26px;
}

.banner{
  .wrapper{
    position: relative;
  }
}

.arrows {
  width: 63px;
  height: 73px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -93px;
}

.arrows path {
  stroke: var(--accent);
  fill: transparent;
  stroke-width: 1px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
}

.arrows path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
}

.arrows path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
}

.arrows path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.title{
  font-family: 'Staatliches', sans-serif;
  font-size: 30px;
  text-align: center;
  color: #cbcbcb;
  min-block-size: 21px;
}

.main{
  background: radial-gradient(#fff 50%, #EFEFEF 90%);
  padding-bottom: 102px;
}

.main-img{
  width: 100%;
  height: auto;
  padding: 19px;


  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: var(--box-shadow);
    background: var(--bg-gradient), url('media/section-bg-B5Qx2.webp') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 12px;
  }
}

.main-title{
  margin-bottom: 21px !important;
}

.price{
  font-family: 'Staatliches', sans-serif;
  font-size: 43px;
  text-align: center;
  color: var(--accent);
}

.serv-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 19px;
}

.serv-img{
  background: var(--bg-gradient), url('media/section-bg-B5Qx3.webp') no-repeat;
  background-size: cover;
  background-position: center;
  width: 234px;
  height: 234px;
  border-radius: 50%;
  margin: auto;
  border: 4px solid #fff;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  color: #fff;
  line-height: 101px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);

  svg{
    width: 44px;
    height: 44px;
  }

  &:hover,
  &:focus{
    transform: scale(1.03);
  }
}

.serv-box-title{
  font-family: 'Staatliches', sans-serif;
  font-size: 22px;
  text-align: center;
  color: #b8b8b8;
  display: inline-block;
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.serv-content{
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.art-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 19px;
}

.art-img{
  width: 100%;
  height: 250px;
  display: inline-block;
  background-color: var(--accent);
  overflow: hidden;
  position: relative;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  &:hover > img,
  &:focus > img{
    transform: scale(1.3) rotate(7deg);
    opacity: 0.2;
  }
}

.art-title{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  padding: 19px;
  font-family: 'Staatliches', sans-serif;
  font-size: 22px;
  text-align: center;
  color: #E6E7E8;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.art-img:hover > .art-title,
.art-img:focus > .art-title{
  visibility: visible;
  opacity: 1;
}

.art-content{
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.quize{
  background: url('media/section-bg-B5Qx4.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 120px 0;

  .wrapper{
    position: relative;
    height: 420px;
  }
}

.quize-box{
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
}

.quize-container {
  background-color: var(--accent);
  max-width: 602px;
  min-height: 602px;
  padding: 19px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question {
  display: none;
}

.question.current-step {
  display: block;
  padding: 19px;
  height: 100%;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.options{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: baseline;
  justify-content: center;
}

.options .option-button {
  display: block;
  flex-grow: 1;
  padding: 12px;
  box-shadow: 0px 19px 44px 0px rgba(255, 255, 255, 0.545);
  color: var(--white);
  border: none;
  border-radius: 35px;
  cursor: pointer;
  background-color: transparent;
  width: 100%;
  transition: var(--transition);
}

.options .option-button:hover {
  box-shadow: 0 26px 58px 0 rgba(255, 255, 255, 0.599), 0 5px 14px 0 rgba(255, 255, 255, 0.524);
}

.kwiz-thx,
.quize-question-title{
  margin-bottom: 26px;
  font-size: 20px;
  text-align: center;
  color: var(--white);
}

.tarif{
  overflow: hidden;
}

.tarif-box{
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 19px;
  box-shadow: var(--box-shadow);

  .btn-box{
    margin-top: auto;
  }

  .button-2{
    color: var(--accent);

    &:hover,
    &:focus{
      box-shadow: 0 12px 21px rgb(255 0 0 / 50%);
    }

    &:hover::after {
      background-color: var(--o-2);
    }
  }
}

.tarif-row{
  margin-top: 60px;
}

.tarif-title{
  margin-top: -60px;
  background: var(--bg-gradient), url('media/section-bg-B5Qx5.webp') no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 234px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  font-size: 22px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tarif-price{
  font-size: 22px;
  color: var(--accent);
  text-align: center;
}

.tarif-content{
  padding: 19px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.gallery{
  direction: ltr !important;
  background: radial-gradient(#fff 50%, #EFEFEF 90%);
}

.gallery-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top:  26px;
  gap:  12px;
}

.gallery-item{
  width: 275px;
  height: 155px;
  background-color: var(--accent);
  overflow: hidden;
  cursor: pointer;
  flex-grow: 1;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  &:hover > img,
  &:focus > img{
    transform: scale(1.3) rotate(7deg);
    opacity: 0.3;
  }
}


.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 65px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  width: 80%;
  max-width: 800px;
  display: block;
  width: 80%;
  max-width: 700px;
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 65px;
  right: 35px;
  color: var(--white);
  font-size: 33px;
  font-weight: 900;
  transition: 0.2s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 19px;
  margin-top: -44px;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 2px 2px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 2px 0 0 2px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0,0,0,0.8);
}

.history-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 19px;
}

.history-img{
  background: var(--bg-gradient), url('media/section-bg-B5Qx6.webp') no-repeat;
  background-size: cover;
  background-position: center;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;

  img{
    width: 44px;
    height: 44px;
    object-fit: contain;
  }
}

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

.footer{
  background-color: #231F20;
  padding: 19px 0;
}

.copyright{
  color: var(--grey);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;

  p{
    margin: 0;
  }
}

.comments{
  background: radial-gradient(#fff 50%, #EFEFEF 90%);
}

.comment-box{
  display: flex;
  flex-direction: row;
  gap: 19px;
}

.author-img{
  width: 142px;
  height: 142px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--box-shadow);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.comment{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.author-name{
  color: #d6d6d6;
  font-size: 18px; 
}

.au-video{
  width: 100%;
  height: 520px;

  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.contact-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;

  a{
    color: var(--black);
    transition: var(--transition);
    text-align: center;
    word-break: break-all;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.contact-icon{
  background: var(--bg-gradient), url('media/section-bg-B5Qx7.webp') no-repeat;
  background-size: cover;
  background-position: center;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);

  svg{
    width: 44px;
    height: 44px;
    object-fit: contain;
    color: var(--white);
  }

  &:hover,
  &:focus{
    transform: scale(1.03);
  }
}

.adres{
  text-align: center;
}

.map{
  margin-top: 31px;
  width: 100%;
  height: 420px;
  border: 4px solid var(--white);
  box-shadow: var(--box-shadow);

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
  }
}

.form-cont{
  width: 100%;
  margin: 0 auto;
  border: none;
}

.form-contact{
  background: var(--bg-gradient), url('media/section-bg-B5Qx8.webp') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-page-form{
  width: 100%;
}

.contact-page-form > input,
.contact-page-form > textarea{
  width: 100%;
  padding: 12px;
  border-radius: 19px;
  background-color: var(--white);
  color: var(--grey);
  border: none;
  outline: none;
  box-sizing: border-box;
}

.footer-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 19px;

  .logo-box{
    margin: auto !important;
  }
}

.au-footer{
  color: var(--white);
  text-align: center;
}

.privacy-content{
  word-break: break-all;
  overflow: hidden;
}

.privacy-list{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  margin-top: 21px;
  gap: 12px;

  &::before{
    content: "";
    background: var(--bg-gradient);
    height: 2px;
    width: 100%;
    top: -21px;
    position: absolute;
  }
}

.privacy-item{
  a{
    color: var(--white);
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

@media (max-width: 479px){
  .close{
    top: 202px;
  }

  .modal-content {
    width: 70%;
  }
}

@media (min-width: 480px){
  .banner-box{
    width: 340px;

    &::after{
      border-width: 31px 172px 0;
    }
  }

  .title{
    font-size: 33px;
  }
}

@media (max-width: 575px){
  .banner-box{
    margin: 0 auto;
    position: relative;

    .logo-title{
      font-size: 20px;
    }
  }

  .menu-nav{
    flex-direction: column;
  }

  .logo-box{
    margin-right: 0;
  }

  .quize{
    margin-bottom: 0;
  }

  .quize-container{
    border-radius: 0;
    min-height: 502px;
  }

  .question.current-step{
    width: 100%;
  }

  .close{
    top: 172px;
  }

  .comment-box{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .art-img{
    img{
      transform: scale(1.3) rotate(7deg);
      opacity: 0.2;
    }
  }

  .art-title{
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }

  .row-5{
    flex-direction: row-reverse;
  }

  .col-5{
    width: calc(50% - 19px);
  }

  .menu-nav{
    flex-wrap: wrap;
  }

  .title{
    font-size: 60px;
  }

  .main-img{
    width: 420px;
    height: 320px;
    margin: 0 auto;
  }
}

@media(max-width: 767px){
  .tarif-row{
    flex-direction: column !important;
  }

  .tarif-col:nth-child(2){
    margin-top: 60px;
  }
}

@media (min-width: 768px){
  .wrapper {
    max-width: 720px;
  }

  .row-2,
  .row-3,
  .row-4{
    flex-direction: row-reverse;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 19px);
  }
 
  .col-5{
    width: calc(33.333% - 19px);
  }

  .title{
    font-size: 65px;
  }

  .main-img{
    float: right;
  }

  .tarif-row{
    flex-direction: row !important;
  }
}

@media (max-width: 991px){
  .arrows{
    display: none;
  }

  .tarif-col:nth-child(3){
    margin-top: 62px;
  }
}

@media (min-width: 992px){
  .wrapper {
    max-width: 960px;
  }

  .col-3{
    width: calc(33.333% - 19px);
  }

  .col-4{
    width: calc(25% - 19px);
  }
  .col-5{
    width: calc(20% - 19px);
  }

 .title{
  font-size: 74px;
 }

 .main-img{
  width: 602px;
  height: 502px;
 }

 .gallery-item{
  height: 220px;
 }

 .form-cont{
  max-width: 800px;
 }
}

@media (min-width: 1200px){
  .wrapper {
    max-width: 1170px;
  }

  .title{
    font-size: 102px;
  }

  .banner-box{
    width: 392px;

    &::after {
      border-width: 31px 195px 0;
    }
  }

}

.btn-box{
  text-align: center;
  position: relative;
}

.button-1 {
  position: relative;
  overflow: hidden;
  padding: 19px;
  border-radius: 1.5rem;
  background: #3d3a4e;
  background-size: 400%;
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.button-1:hover::before {
  transform: scaleX(1);
}

.button-1 span {
  position: relative;
  z-index: 1;
}

.button-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    82.3deg,
    rgba(150, 93, 233, 1) 10.8%,
    rgba(99, 88, 238, 1) 94.3%
  );
  transition: all 0.475s;
}

.button-2 {
 text-transform: uppercase;
 text-decoration: none;
 color: rgb(255, 255, 255);
 padding: 12px 26px;
 border: 2px solid;
 border-radius: 1000px;
 display: inline-block;
 transition: all .2s;
 position: relative;
 text-align: center;
 background-color: transparent;
}

.button-2:hover {
 transform: translateY(-5px);
 box-shadow: 0 12px 21px rgba(255, 255, 255, 0.5);
}

.button-2::after {
 content: "";
 display: inline-block;
 height: 100%;
 width: 100%;
 border-radius: 102px;
 top: 0;
 left: 0;
 position: absolute;
 z-index: -1;
 transition: all .2s;
}

.button-2:hover::after {
 background-color: rgb(255, 255, 255);
 transform: scaleX(1.4) scaleY(1.5);
 opacity: 0;
}


.button-3 {
  cursor: pointer;
  color: #fff;
  border-radius: 19px;
  border: none;
  position: relative;
  background: #100720;
  transition: 0.1s;
  display: inline-block;
  padding: 19px;
  text-align: center;
  transition: var(--transition);
}

.button-3::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2% );
  filter: blur(19px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

.button-3:hover,
.button-3:focus{
  color: var(--accent);
}

.button-4 {
  padding: 19px 31px;
  color: white;
  border: none;
  border-radius: 35px;
  background-size: 200% 100%;
  background-image: linear-gradient(145deg, #ff53eb, #4b4bff, #5de7ff);
  box-shadow: 2px 2px 12px 2px #4b4bff, -2px -2px 12px 2px #ff53eb;
  transition: 0.5s;
  display: inline-block;
  text-align: center;
}

.button-4:hover {
  background-position: 99%;
  box-shadow: 2px 2px 12px 2px #5de7ff, -2px -2px 12px 2px #4b4bff;
}


.button-5 {
  padding: 19px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-family: sans-serif;
  box-sizing: border-box;
  background: linear-gradient(90deg,#03a9f4,#ffeb3b,#f441af,#03a9f4);
  background-size: 400%;
  border-radius: 35px;
  z-index: 1;
  border: none;
  outline: none;
  display: inline-block;
  text-align: center;
}

.button-5:hover {
  animation: animate 6s linear infinite;
}

@keyframes animate {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 400%;
  }
}

.button-5::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg,#03a9f4,#ffeb3b,#f441af,#03a9f4);
  border-radius: 35px;
  filter: blur(21px);
  opacity: 0;
  transition: 0.5s;
}

.button-5:hover::before {
  filter: blur(21px);
  opacity: 1;
  animation: animate 4s linear infinite;
}