@import url('https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&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-2);
  --o-1: #27aae1;
  --o-2: #e12727;
  --o-3: #27e19a;
  --o-4: #6e27e1;
  --o-5: #e1c527;
  --accent: var(--o-2);
  --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-2);
  --white: #fff;
  --black: #060606;
  --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: 'Vollkorn', 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: 5px;
  font-size: 13px;
  line-height: 1.3;
}

ul, ol {
  margin-bottom: 5px;
  padding-left: 13px;
}

li {
  margin: 5px;
}

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: 110px 0;
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  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: 15px;
}

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

.header{
  visibility: hidden;
  transform: translateY(-51px);
  background-color: #231F20;
  position: fixed;
  left: 0;
  right: 0;
  transition: .4s 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: 15px 0;
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

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

.logo-box{
  display: inline-flex;
  flex-direction: row;
  gap: 5px;
  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: 28px;
  height: 28px;

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

.logo-title{
  color: var(--white);
  font-size: 25px;
  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('thumbnails/thumbnails_header_695d31ed1c24d0.75703849.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 555px;
  display: flex;

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

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

  &::after{
    content: "";
    border-color: var(--accent) transparent transparent;
    border-style: solid;
    border-width: 31px 134px 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: 30px;
  }
}

.slogan{
  text-align: center;
}

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

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

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

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

.input-main-fieldelement,
.textarea-main-fieldelement{
  padding: 13px;
  border-radius: 15px;
  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:  15px;
}

.ben-icon{
  background: var(--bg-gradient), url('thumbnails/visuals_header_695d31ed1c2676.97044683.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  margin: auto;
  border: 6px solid var(--white);
  box-shadow: var(--box-shadow);
  font-size: 38px;
  color: var(--white);
  line-height: 101px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.arrows {
  width: 65px;
  height: 75px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -95px;
}

.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: 'Bakbak One', sans-serif;
  font-size: 25px;
  text-align: center;
  color: #cbcbcb;
  min-block-size: 24px;
}

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

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


  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: var(--box-shadow);
    background: var(--bg-gradient), url('thumbnails/thumbnails_header_695d31ed1c26e4.88274982.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 13px;
  }
}

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

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

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

.serv-img{
  background: var(--bg-gradient), url('thumbnails/illustrations_header_695d31ed1c2731.54771162.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  width: 161px;
  height: 161px;
  border-radius: 50%;
  margin: auto;
  border: 6px 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: 43px;
    height: 43px;
  }

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

.serv-box-title{
  font-family: 'Bakbak One', sans-serif;
  font-size: 25px;
  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: 15px;
}

.art-img{
  width: 100%;
  height: 240px;
  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: 15px;
  font-family: 'Bakbak One', sans-serif;
  font-size: 25px;
  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: 4;
  -webkit-box-orient: vertical;
}

.quize{
  background: url('thumbnails/graphics_header_695d31ed1c2770.25818319.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 110px 0;

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

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

.quize-container {
  background-color: var(--accent);
  max-width: 601px;
  min-height: 601px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 0 13px 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: 15px;
  height: 100%;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.options .option-button {
  display: block;
  flex-grow: 1;
  padding: 13px;
  box-shadow: 0px 15px 43px 0px rgba(255, 255, 255, 0.545);
  color: var(--white);
  border: none;
  border-radius: 0px;
  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: 28px;
  font-size: 22px;
  text-align: center;
  color: var(--white);
}

.tarif{
  overflow: hidden;
}

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

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

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

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

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

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

.tarif-title{
  margin-top: -57px;
  background: var(--bg-gradient), url('thumbnails/depictions_header_695d31ed1c27b4.61871300.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 161px;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  font-size: 25px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.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:  28px;
  gap:  13px;
}

.gallery-item{
  width: 274px;
  height: 154px;
  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: 64px;
  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: 64px;
  right: 34px;
  color: var(--white);
  font-size: 38px;
  font-weight: 800;
  transition: 0.3s;
  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: 15px;
  margin-top: -43px;
  color: var(--white);
  font-weight: 800;
  font-size: 19px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

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

.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: 15px;
}

.history-img{
  background: var(--bg-gradient), url('thumbnails/icons_header_695d31ed1c2807.93695288.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;

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

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

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

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

  p{
    margin: 0;
  }
}

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

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

.author-img{
  width: 126px;
  height: 126px;
  overflow: hidden;
  border-radius: 50%;
  border: 6px 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: 5px;
}

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

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

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

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

  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('thumbnails/renders_header_695d31ed1c2852.23345930.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);

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

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

.adres{
  text-align: center;
}

.map{
  margin-top: 31px;
  width: 100%;
  height: 410px;
  border: 6px 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('thumbnails/photos_header_695d31ed1c2893.48368065.jpg') 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: 13px;
  border-radius: 15px;
  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: 15px;

  .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: 24px;
  gap: 13px;

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

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

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

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

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

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

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

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

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

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

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

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

  .quize{
    margin-bottom: 0;
  }

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

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

  .close{
    top: 171px;
  }

  .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;
  }

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

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

  .title{
    font-size: 42px;
  }

  .main-img{
    width: 410px;
    height: 310px;
    margin: 0 auto;
  }
}

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

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

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

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

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

  .title{
    font-size: 64px;
  }

  .main-img{
    float: right;
  }

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

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

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

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

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

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

 .title{
  font-size: 76px;
 }

 .main-img{
  width: 601px;
  height: 501px;
 }

 .gallery-item{
  height: 210px;
 }

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

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

  .title{
    font-size: 101px;
  }

  .banner-box{
    width: 391px;

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

}

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

.button-1 {
  position: relative;
  overflow: hidden;
  padding: 15px;
  border-radius: 1.4rem;
  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: 13px 28px;
 border: 1px solid;
 border-radius: 1000px;
 display: inline-block;
 transition: all .2s;
 position: relative;
 text-align: center;
 background-color: transparent;
}

.button-2:hover {
 transform: translateY(-4px);
 box-shadow: 0 13px 24px rgba(255, 255, 255, 0.5);
}

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

.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: 15px;
  border: none;
  position: relative;
  background: #100720;
  transition: 0.1s;
  display: inline-block;
  padding: 15px;
  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(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

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

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

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


.button-5 {
  padding: 15px;
  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: 0px;
  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: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  z-index: -1;
  background: linear-gradient(90deg,#03a9f4,#ffeb3b,#f441af,#03a9f4);
  border-radius: 0px;
  filter: blur(24px);
  opacity: 0;
  transition: 0.4s;
}

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