@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&display=swap');

:root{
  --a-1: #fd7030;
  --a-2: #5bcf13;
  --a-3: #05ab9d;
  --a-4: #5630fd;
  --a-5: #fd3063;
  --accent: var(--a-2);
  --white: #fff;
  --black: #180707;
  --transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --text: #828385;
}

html {
  scroll-behavior: smooth;
}

body{
  box-sizing: border-box;
  height: 100vh;
  font-family: 'Lato', sans-serif !important;
  font-size: 15px;
  margin: 0;
  padding: 0px;
  direction: ltr;
  position: relative;
  height: 100%;
  min-height: 100vh;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('files/img/bg-2025-04-10_19-390.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
    background-attachment: fixed;
  }
}

*{
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
}

ul, ol {
  margin-bottom: 15px;
  padding-left: 35px;
}

li {
  margin-bottom: 10px;
}

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

h5{
  font-size: 18px;
}

.module{
  padding: 104px 0 0;
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
  padding-top: 56px;
  padding-bottom: 35px;
}


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


.body-row{
  position: relative;
  display: flex;
  flex-direction: column;
}

.body-col-30{
  box-sizing: border-box;
  left: inherit;
  width: 100%;
  border-radius: 35px 0 0 0;
}

.body-col-70{
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px 56px;
  background-color: var(--white);

}

.hero-video{
  max-width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;

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

.side-bar{
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-video-wr{
  padding: 64px 22px 22px;
}

.logo-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  justify-content: center;
  padding: 0 15px;
  transition: var(--transition);

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

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

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

.logo-title{
  color: var(--accent);
  transition: var(--transition);
  font-size: 18px;
}

.nav-list{
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.nav-item{
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);

  &:last-child{
    border: none;
  }

  a{
    text-align: start;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 14px;
    align-items: center;
    flex-direction: row;
    gap: 15px;
    transition: var(--transition);
    display: inline-flex;

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

.nav-icon{
  width: 22px;
  height: 22px;
  color: inherit;

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

.copyright{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  filter: brightness(0);
  -webki-filter: brightness(0);
  gap: 4px;
  color: var(--text);
  margin-top: 22px;

  p{
    margin: 0;
  }
}

.active{
  a{
    color: var(--accent);
  }
}

.slogan{
  text-align: center;
  padding: 15px;
}

.head-title{
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1.5px;
  font-weight: 600;
}


.progress-container {
  width: 100%;
  box-sizing: border-box;
  background-color: #e0e0e0;
  overflow: hidden;
  margin: 14px 0;
}

.progress-bar {
  height: 14px;
  background-color: var(--accent);
  width: 0;
  transition: width 0.3s ease;
}

.title{
  font-size: 18px;
  text-transform: inherit;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}

.stat-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-item{
  padding: 14px;
  border-radius: 14px;
  border: 8px solid #e9e9e9;
  transition: var(--transition);

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

.stat-text{
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: start;
}

.ben-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ben-item{
  display: flex;
  flex-direction: row;
  cursor: context-menu;
  gap: 15px;
  transition: var(--transition);

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

.ben-icon{
  width: 29px;
  height: 29px;
  color: var(--accent);

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

.hw-num{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--accent);
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hw-title{
  margin-top: 35px;
}

.hw-col{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    border: 8px solid #e9e9e9;
    background-color: #f2f2f2;
    padding: 14px;
  }
}

.au-img{
  width: 100%;
  height: auto;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    border: 8px solid #e9e9e9;
  }
}

.price{
  color: var(--accent);
  font-weight: 600;
  font-size: 20px;
}

.serv-box{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 14px;
  border: 8px solid #e9e9e9;
  padding: 14px;
  gap: 14px;
  transition: var(--transition);

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

.serv-img{
  width: 120px;
  height: 120px;

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

.serv-title{
  text-align: center;
  color: var(--accent);
  margin: 0;
}

.serv-content{
  text-align: center;
  color: var(--text);
  -webkit-box-orient: vertical;
  display: block;
  display: -webkit-box;
  overflow: hidden !important;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.art-box{
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
  width: 100%;
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.art-img{
  width: 100%;
  height: 100%;
  overflow: hidden;

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

.art-title{
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  transition: var(--transition);
  color: var(--accent);
  padding: 0 14px;

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

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

.art-content-box{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  gap: 15px;
  transform: translateX(100%);
  transition: 0.5s linear;
  opacity: 0;
  border: 8px solid #e9e9e9;
}

.art-box:hover .art-content-box,
.art-box:focus .art-content-box{
  transform: translateY(0);
  opacity: 1;
}

.main{
  display: flex;
  flex-direction: column;
  gap: 15px;

  .title{
    margin-bottom: 0;
  }
}

.column{
  display: flex;
  flex-direction: column;
}

.tarif-row{
  gap: 0 !important;
}

.tarif-col{
  border: 2px solid #e9e9e9;
  padding: 14px;
}

.tarif-box{
  display: flex;
  flex-direction: column;
  gap:  14px;
  height: 100%;

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

.tarif-title{
  line-height: 22px;
  background: var(--accent);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 14px;
  text-transform: inherit;
  text-align: center;
  transition: var(--transition);
  margin-top: 22px;
}

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

.survey-container {
  border-radius: 14px;
  border: 8px solid #e9e9e9;
  padding: 14px;
  margin-top: 22px;
  height: 100%;
}

.question {
  display: none;
}

.question.current-step {
  display: block;
}

.options label {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  position: relative;
}

.options input[type="radio"] {
  display: none;
}

.options input[type="radio"] + label:before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  border: 3px solid var(--accent);
  border-radius: 50%; 
  background-color: white; 
  padding: 3px;
  flex: none;
}

.options input[type="radio"]:checked + label:before {
  background-color: var(--accent);
  border-color: var(--accent);
}

.error-message {
  color: rgba(255, 0, 0, 0.723);
  display: none;
}

.kwiz-thx{
  color: var(--accent);
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-video{
  border-radius: 14px;
  border: 8px solid #e9e9e9;
  margin-top: 22px;
  width: 100%;
  height: 100%;

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


.modal {
  display: none;
  position: fixed;
  z-index: 1;
  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: 704px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 31px;
  font-weight: 700;
  transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.modal-img{
  border-radius: 14px;
  border: 8px solid #e9e9e9;
  width: 100%;
  height: 220px;

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

    &:hover,
    &:focus{
      opacity: 0.7;
    }
  }
}

.gallery{
  direction: ltr !important;
}

.slider {
  width: 100%; 
  overflow: hidden;
  position: relative;
  direction: ltr !important;
}

.slides {
  background-color: #fafafa;
  display: flex;
  width: 600%; 
  height: 100%;
  transition: transform 1s ease;
}

.slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 56px 15px;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 14px;
  width: 100%;
}

.dot {
  width: 14px;
  height: 4px;
  margin: 0 4px;
  background-color: #bbb;
  display: inline-block;
  cursor: pointer;
}

.dot.focused {
  background-color: var(--accent);
}

.com-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-img{
  width: 114px;
  height: 114px;
  position: relative;
  margin-bottom: 35px;
  
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  }

    &::before{
      content: '';
      position: absolute;
      left: 50%;
      margin-left: -35px;
      bottom: -22px;
      width: 64px;
      border-bottom: 3px solid var(--accent);
    }

    &::after{
      content: '';
      position: absolute;
      left: 50%;
      margin-left: -8px;
      bottom: -35px;
      border: 8px solid rgba(0, 0, 0, 0);
      border-top: 8px solid var(--accent);
    }
}

.comment{
  font-style: italic;
  text-align: center;
}

.author-name{
  margin-bottom: 22px;
  text-transform: inherit;
  font-weight: 600;
}

.form{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.contact-page-form > input,
.contact-page-form > textarea,
.input-group__element-section,
.textarea-group__element-section{
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #eeedf2;
}

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

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

.s-con-box{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-box{
  display: flex;
  flex-direction: column;
  gap: 15px;

  .title{
    margin-bottom: 0;
  }
}

.contact-box{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 8px solid #e9e9e9;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.map{
  border-radius: 14px;
  border: 8px solid #e9e9e9;
  width: 100%;
  height: 320px;
  margin-top: 22px;

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

.contact-link{
  color: var(--black);
  font-weight: 600;
  transition: var(--transition);
  word-break: break-all;
  text-align: center;

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

.contact-name{
  color: var(--text);
  text-align: center;
}

.adres{
  text-align: center;
}

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

@media (max-width: 480px){
  .nav-item{
    a {
      text-align: center;
    }
  }
}
@media (max-width: 575px){
  .serv-box{
    flex-direction: column !important;
  }
}

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

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

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

@media (max-width: 767px){
  .art-content-box{
    transform: translateY(0);
    opacity: 0.8;
  }
}

@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% - 15px);
  }
 
  .col-5{
    width: calc(33.333% - 15px);
  }

  .col-30{
    width: 30%;
    flex-grow: 1;
  }
  .col-70{
    width: 70%;
    flex-grow: 1;
  }

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

  .au-img,
  .main-img{
    width: 100%;
    height: 320px;
  }

  .dot {
    width: 22px;
    height: 8px;
  }
}

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

  .footer{
    background-color: #fafafa;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    .nav-item{
      border: nonee;
    }
  }

  .nav-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .nav-item{
    border-bottom: none;
  }
}

@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);
  }

  .body-row{
    flex-direction: row;
    gap: 0;
  }

  .body-col-30{
    box-sizing: border-box;
    left: inherit;
    border-radius: 41px 0 0 41px;
    overflow: hidden;
    position: sticky;
    top: 0;
    width: 30%;
    height: fit-content;
    border-right: 2px solid #f6f6f6;
    margin-top: 35px;
    margin-bottom: 35px;
  }
  
  .body-col-70{
    width: 70%;
    box-sizing: border-box;
    padding-bottom: 120px;
  }

  .hero-video{
    max-width: 240px;
    height: 240px;
  }
  
  .footer{
    display: none;
  }

  .wrapper{
    padding-top: 74px;
    padding-bottom: 41px;
  }

  .nav-item{
    overflow: hidden;

    a{
      width: 100%;
      padding: 15px;
    }
  }

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

  
.active{
  position: relative;

  &::before{
      position: absolute;
      top: -15px;
      right: -22px;
      transform: rotate(45deg);
      width: 41px;
      height: 29px;
      background-color: var(--accent);
      content: "";
  }
}


.main-img{
  height: 420px;
}

.au-img{
  width: 80%;
  margin: 0 auto;
  height: 420px;
}

.slide{
  padding: 41px;
}

.dot {
  width: 29px;
  height: 8px;
}

#serv-row{
  flex-direction: column-reverse;
}
}

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

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

}

.btn-box{
  text-align: center;
  margin: 35px auto 22px;
}

.button-1 {
  --width: 150px;
  --timing: 2s;
  border: 0;
  padding: 15px;
  padding-block: 22px;
  color: #fff;
  font-weight: 700;
  background: #fd7030;
  transition: all 0.3s;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.button-1:hover {
  background-image: linear-gradient(
    to right,
    rgb(250, 82, 82),
    rgb(250, 82, 82) 16.65%,
    rgb(190, 75, 219) 16.65%,
    rgb(190, 75, 219) 33.3%,
    rgb(76, 110, 245) 33.3%,
    rgb(76, 110, 245) 49.95%,
    rgb(64, 192, 87) 49.95%,
    rgb(64, 192, 87) 66.6%,
    rgb(250, 176, 5) 66.6%,
    rgb(250, 176, 5) 83.25%,
    rgb(253, 126, 20) 83.25%,
    rgb(253, 126, 20) 100%,
    rgb(250, 82, 82) 100%
  );
  animation: var(--timing) linear dance6123 infinite;
  transform: scale(1.1) translateY(-1px);
}

@keyframes dance6123 {
  to {
    background-position: var(--width);
  }
}

.button-2 {
  padding: 15px 35px;
  border: 2px solid #439c0b;
  background-color: #5dc81b;
  color: #ffffff;
  cursor: pointer;
  border-radius: 35px;
  transition: all 0.5s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}

.button-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.button-2:hover::after {
  transform: scale(4);
}

.button-2:hover {
  border-color: #666666;
  background: #292929;
}

.button-3 {
  padding: 14px 22px;
  font-weight: bold;
  color: #fff;
  background-color: #30fdec;
  border: none;
  border-radius: 41px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-align: center;
}

.button-3::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-color: hsla(175, 98%, 59%, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  z-index: -1;
}

.button-3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-size: 29px 29px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.button-3:hover {
  background-color: #27eada;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.3);
}

.button-3:hover::before {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.button-3:hover::after {
  opacity: 1;
}


.button-4 {
  cursor: pointer;
  color: white;
  margin: 0 auto;
  position: relative;
  text-decoration: none;
  font-weight: 200;
  border-radius: 102px;
  overflow: hidden;
  padding: 3px;
  isolation: isolate;
  display: inline-block;
  text-align: center;
  display: inline-block;
  text-align: center;
}

.button-4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  background: linear-gradient(115deg, #d1d1d1, #5630fd, #a7bfde);
  background-size: 25% 100%;
  animation: an-at-keyframe-css-at-rule-that-translates-via-the-transform-property-the-background-by-negative-25-percent-of-its-width-so-that-it-gives-a-nice-border-animation_-We-use-the-translate-property-to-have-a-nice-transition-so-it_s-not-a-jerk-of-a-start-or-stop
    0.75s linear infinite;
  animation-play-state: running;
  translate: -5% 0%;
  transition: translate 0.25s ease-out;
}

.button-4:hover::before {
  animation-play-state: running;
  transition-duration: 0.75s;
  translate: 0% 0%;
}

@keyframes an-at-keyframe-css-at-rule-that-translates-via-the-transform-property-the-background-by-negative-25-percent-of-its-width-so-that-it-gives-a-nice-border-animation_-We-use-the-translate-property-to-have-a-nice-transition-so-it_s-not-a-jerk-of-a-start-or-stop {
  to {
    transform: translateX(-25%);
  }
}

.button-4 span {
  position: relative;
  display: block;
  padding: 15px 22px;
  background: #5630fd;
  border-radius: 102px;
  height: 100%;
}

.button-5 {
  cursor: pointer;
  padding: 15px;
  border: 0;
  background-color: #fd3063;
  color: white;
  box-shadow: 0px 14px 0px 0px #e52656;
  transition: all 0.9s ease-in-out;
  font-weight: 600;
  position: relative;
  display: inline-block;
  text-align: center;
}

.button-5:hover {
  box-shadow: 0px 14px 0px 0px #d441659c;
  background-color: rgb(209 32 77);
}

.button-5::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  box-shadow: 0px 14px 0px 0px rgb(229, 104, 9);
  width: 0;
  height: 14px;
  transition: all 0.9s ease-in-out;
}
.button-5:hover::before {
  width: 100%;
}



