@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Rose:wght@300..700&display=swap');

:root{
  --o-1: #fecb1c;
  --o-2: #fe6f1c;
  --o-3: #13ee8f;
  --o-4: #6360ff;
  --o-5: #fe1c60;
  --accent: var(--o-4);
  --white: #fff;
  --black: #060606;
  --transition: 0.3s linear;
  --grey: #939598;
}

html {
  scroll-behavior: smooth;
}

body{
  box-sizing: border-box;
  font-family: 'Asap Condensed', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0;
  direction: ltr;
  position: relative;
  height: 100%;
}

*{
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

p {
  margin-bottom: 11px;
  font-size: 13px;
  line-height:1.3;
}

ul, ol {
  margin-bottom: 11px;
  padding-left: 19px;
}

li {
  margin-bottom: 9px;
}

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

.module{
  padding: 95px 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{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
  background-color: var(--black);
  color: var(--white);
  padding: 11px 0;
  transition: var(--transition);
}

.hiddenHeader{
  transform: translateY(-100%);
  transition: var(--transition);
}

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

.logo-icon{
  width: 74px;
  height: 74px;
  transition: var(--transition);

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

  &:hover,
  &:focus{
    filter: drop-shadow(2px 2px 2px var(--accent));
  }
}

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

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

    &:hover,
    &:focus{
      filter: drop-shadow(2px 2px 2px var(--accent));
    }
  }
}

.contact-link{
  background-color: var(--accent);
  padding: 9px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--transition);
  color: var(--white);


  &:hover,
  &:focus{
    transform: translateY(3px);
  }
}

.banner{
  background: url('graphics/background_ek2FA0.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.banner-box{
  padding: 303px 0 303px;
}

.logo-title{
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  word-break: break-all;
  text-transform: inherit;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  
  h1{
    margin: 0;
    position: relative;

    &::after{
      position: absolute;
      bottom: -11px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--accent);
      content: '';
    }
  }

  &:hover,
  &:focus{
    filter: drop-shadow(2px 2px 2px var(--accent));
  }
}

.slogan{
  color: var(--white);
  padding-top: 21px;
  text-align: center;
}

.hw{
  position: relative;

  &::before {
    position: absolute;
    content: "";
    width: 100%;
    background-color: var(--accent);
    height: 10rem;
    bottom: -2px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
    top: calc(-10rem + 1px);
  }

  .module{
    position: relative;
    width: 100%;
    background-color: var(--accent);
  }

  .row-3{
    margin-top: 22px;
  }
}

.hw-title{
  color: #000;
  font-size: 16px;
  text-transform: inherit;
  position: relative;
  font-weight: 500;
  z-index: 1;
}

.hw-num{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: var(--transition);

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('graphics/background_ek2FA1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    border-radius: 50%;
  }

  &::after{
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    left: -8px;
    padding: 8px;
    top: -7px;
    box-sizing: content-box;
    box-shadow: 3px 3px 0 #000;
    opacity: 1;
  }

  span{
    font-size: 42px;
    z-index: 2;
    color: var(--white);
  }

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

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

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

.au{
  position: relative;
  background: url('graphics/background_ek2FA2.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  &::before {
    position: absolute;
    content: "";
    width: 100%;
    background-color: var(--accent);
    height: 10rem;
    bottom: -2px;
    -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
    top: -2px;
  }

  &::after {
    position: absolute;
    content: "";
    width: 100%;
    background-color: var(--black);
    height: 100%;
    opacity: 0.8;
    top: 0;
    left: 0;
  }

  .module{
    padding: 10rem 0;
    position: relative;
    z-index: 1;
  }
}

.au-img{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 273px;
  height: 273px;
  border-radius: 50%;

  img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

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

  &::after{
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    left: -8px;
    padding: 8px;
    top: -7px;
    box-sizing: content-box;
    box-shadow: 3px 3px 0 var(--accent);
    opacity: 1;
  }
}

.au-title{
  color: var(--white);
  filter: drop-shadow(3px 3px 3px var(--black));
}

.au-text{
  color: var(--white);
  filter: drop-shadow(3px 3px 3px var(--black));
}

.au-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 19px;
}

.au-col{
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-img{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 273px;
  height: 273px;
  margin: 0 auto;
  padding: 19px;


  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    padding: 11px;
    background-color: #ffffff1f;
  }

}

.price{
  color: var(--white);
}

.au.products{
  background: var(--black);
  color: var(--white);

  .hw-title{
    color: var(--white);
  }

  .row-4{
    margin: 22px 0;
  }

  .module{
    padding-bottom: 103px;
  }
}

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

.serv-img{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 253px;
  height: 253px;
  border-radius: 50%;
  transition: var(--transition);

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

  &::after{
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    left: -8px;
    padding: 8px;
    top: -7px;
    box-sizing: content-box;
    box-shadow: 3px 3px 0 #ffffff;
    opacity: 1;
  }

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

.serv-box-title{
  color:var(--accent);
  text-align: center;
  transition: var(--transition);

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 3px var(--white));
  }
}

.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;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff1f;
  gap: 19px;
  position: relative;
  padding:  19px;
}

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

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

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

.art-title{
  text-align: center;
  color: var(--accent);
  transition: var(--transition);
  cursor: pointer;

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

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

.au.tarif{
  background: url('graphics/background_ek2FA3.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  &::before {
    background-color: var(--black);
  }
}

.tarif-box{
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
  background-color: #ffffff2b;
}

.tarif-content{
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  height: 100%;
  color: var(--white);

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

.tarif-price.hw-title{
  color: var(--accent);
}

.tarif-title{
  background-color: var(--black);
  width: 100%;
  color: var(--white);
  min-height: 103px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px;
}

.tarif-text{
  transition: var(--transition);
  cursor: default;

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

.form{
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  gap: 19px;

  .button-3{
    background-color: var(--black);
  }

  .button-2{
    color: var(--black);
    background-color: transparent;
  }

  .button-1{
    border: 2px solid var(--black);
    background-color: var(--black);
  }
}

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

.contact-page-form > input,
.contact-page-form > textarea,
.input-btn--container_control,
.textarea-btn--container_control{
  width: 100%;
  padding:  19px;
  border: 3px solid var(--black);
  border-radius: 8px;
  background-color: transparent;
  transition:  var(--transition);
  color: var(--white);
  
    &:focus,
    &:hover{
      outline: none;
      box-shadow: 0px 0px 0px 5px #ffffff5f;
    }
  }

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

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

  .contact-page-form > input::placeholder,
.contact-page-form > textarea::placeholder,
.input-btn--container_control::placeholder,
.textarea-btn--container_control::placeholder{
  color: #fff;
}

  .gallery-list{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }

  .gallery-item{
    width: 273px;
    height: 303px;
    transition: var(--transition);
    cursor: pointer;

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

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

.modal {
  display: none;
  position: fixed;
  z-index: 2;
  padding-top: 62px;
  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: 93px;
  right: 34px;
  color: var(--white);
  font-size: 40px;
  font-weight: 900;
  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: 19px;
  margin-top: -51px;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  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);
}


.quize-container {
  padding: 19px;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
  background-color: #ffffff2b;
}

.question {
  display: none;
}

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

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

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

.options .option-button:hover {
  box-shadow: 0 28px 51px 0 rgba(255, 255, 255, 0.599), 0 5px 11px 0 var(--accent);
}

.kwiz-thx,
.quize-question-title{
  margin-bottom: 28px;
  font-size: 21px;
  text-align: center;
  color: var(--white);
  filter: drop-shadow(2px 2px 2px var(--black));
}

.mt-2{
  margin-top: 22px;
}

.quize-mod{
  padding-bottom: 103px !important;
}

.footer{
  background-color: var(--black);
  padding: 51px 0;
  color: var(--white);
}

.logo-box{
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

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

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

.logo-title{
  color: var(--white);
}

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

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

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

.copyright{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  color: #ffffff6c;
}

.au-page-text{
  color: var(--black);
}

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

#stat{
  .module{
    padding-bottom: 100px !important;
  }

  .hw-num::before{
    background: var(--accent);
  }
}

.comment-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  padding: 19px;
  gap: 19px;
  height: 100%;
  background-color: #ffffff2b;
}

.author-img{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 253px;
  height: 253px;
  border-radius: 50%;
  transition: var(--transition);

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

  &::after{
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    left: -8px;
    padding: 8px;
    top: -7px;
    box-sizing: content-box;
    box-shadow: 3px 3px 0 #ffffff;
    opacity: 1;
  }
}

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

.comment-text{
  text-align: center;
  color: var(--white);
  filter: drop-shadow(3px 3px 3px var(--black));
}

.author-name{
  text-align: center;
  color: var(--white);
  filter: drop-shadow(3px 3px 3px var(--accent));
}

.map-col{
  display: flex;
  align-items: center;
  justify-content: center;
}

.map{
  position: relative;
  width: 273px;
  height: 273px;
  border-radius: 50%;
  transition: var(--transition);

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

  &::after{
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    left: -8px;
    padding: 8px;
    top: -7px;
    box-sizing: content-box;
    box-shadow: 3px 3px 0 #ffffff;
    opacity: 1;
  }
}

.contact-page-box{
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: 19px;
  flex-direction: column;
  border-radius: 8px;
  padding: 19px;
  background-color: #ffffff2b;
}

.contact-page-item{
  padding: 11px;

  div{
    color: #fff !important;
  }

  a{
    word-break: break-all;
    text-align: center;
    color: var(--white);
    font-size: 21px;
    font-weight: 500;
    filter: drop-shadow(2px 2px 2px var(--black));

    &:hover,
    &:focus{
      filter: drop-shadow(3px 3px 3px var(--accent));
    }
  }
}

.adres{
  text-align: center;
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
  filter: drop-shadow(2px 2px 2px var(--black));
}


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

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

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

  .header-list{
    justify-content: space-between;
  }
 
  .tarif-title,
  .hw-title,
  .logo-title{
    font-size: 22px;
  }

  .main-img,
  .au-img{
    width: 303px;
    height: 303px;
  }

  .map{
    width: 303px;
    height: 303px;
  }
}


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

  .tarif-title{
    font-size: 27px;
  }

  .hw-title,
  .logo-title{
    font-size:  21px;
  }
  
  .map{
    width: 353px;
    height: 353px;
  }
}

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

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

  .au{
    &::before {
      height: 16rem;
    }

    .module{
      padding: 16rem 0;
    }
  }
  .hw{
    &::before {
      height: 16rem;
      top: calc(-16rem + 1px);
    }
  }

  .main-img{
    width: 350px;
    height: 350px;
    float: right;
  }

  .serv-img{
    width: 223px;
    height: 223px;
  }

  .map{
    width: 453px;
    height: 453px;
  }
}

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

  .hw-title,
  .logo-title{
    font-size: 34px;
  }

  .au-img{
    width: 403px;
    height: 403px;
  }

  .main-img{
    width: 553px;
    height: 553px;
  }

  .serv-img{
    width: 253px;
    height: 253px;
  }

  .map{
    width: 523px;
    height: 523px;
  }

}

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

.button-1 {
  padding: 19px 28px;
  border:  2px solid var(--accent);
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: center;
  text-transform: inherit;
  font-size: 13px;
  transition: .3s;
  z-index: 1;
  font-family: inherit;
  color: var(--white);
  display: inline-block;
  text-align: center;
 }
 
 .button-1::before {
  content: '';
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  background: var(--accent);
  transition: .5s ease;
  display: block;
  z-index: -1;
 }
 
 .button-1:hover::before {
  width: 105%;
 }
 
 .button-1:hover {
  color: var(--white);
 }
 

.button-2 {
  border-radius: 15px;
  font-size: 13px;
  font-family: inherit;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 8px 8px 11px #c5c5c5, -8px -8px 11px #ffffff;
  display: inline-block;
  text-align: center;
  padding: 19px;
  color: var(--white);
 }
 
 .button-2::before {
  content: '';
  width: 0;
  height: 100%;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #fe6f1c 0%, #f9f047 100%);
  transition: .5s ease;
  display: block;
  z-index: -1;
 }
 
 .button-2:hover::before {
  width: 100%;
 }


.button-3 {
  position: relative;
  margin: 0;
  padding: 11px 22px;
  outline: none;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: inherit;
  background-color: #13ee8f;
  border-radius: 15px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.button-3:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.button-3:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.button-3::before,
.button-3::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.button-3:hover::before,
.button-3:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.button-3:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.button-3:hover::after {
  transform: translate(50%, 0) scale(1.1);
}


.button-4 {
  cursor: pointer;
  border-radius: 15px;
  color: rgb(219, 218, 218);
  border-style: solid;
  background-color: transparent;
  border-color: rgb(219, 218, 218);
  transition: 0.2s ease;
  text-transform: inherit;
  border-width: 2px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  display: inline-block;
  text-align: center;
  padding: 19px;
}

.button-4:hover {
  color: rgb(247, 247, 247);
  background-color: #6360ff;
  border-color: #6360ff;
  text-shadow: 0 0 40px white, 0 0 22px white, 0 0 19px white;
  box-shadow: 0 0 40px #6360ff, 0 0 28px #6360ff,
    0 0 51px #6360ff, 0 0 120px #6360ff;
  font-size: 18px;
  letter-spacing: 3px;
}

.button-5 {
  background-image: linear-gradient(to right bottom, #e300ff, #ff00aa, #ff5956, #ffb900, #fffe00);
  border: none;
  font-size: 18px;
  border-radius: 0;
  padding: 5px;
  transition: border-top-left-radius 0.2s ease-in, 
  border-top-right-radius 0.2s ease-in 0.15s, 
  border-bottom-right-radius 0.2s ease-in 0.3s,
  border-bottom-left-radius 0.2s ease-in 0.45s, 
  padding 0.2s ease-in;
  position: relative;
  display: inline-block;
  text-align: center;

  .button__int {
    background-color: #212121;
    color: white;
    border-radius: 0;
    padding: 11px 40px;
    transition: all 0.2s ease-in,
    border-top-left-radius 0.2s ease-in, 
    border-top-right-radius 0.2s ease-in 0.15s, 
    border-bottom-right-radius 0.2s ease-in 0.3s,
    border-bottom-left-radius 0.2s ease-in 0.45s,
    padding 0.2s ease-in;
    font-weight: 500;
    z-index: -1;
    box-shadow: -28px -11px 34px -5px rgba(225, 0, 255, 0.7),
    28px -11px 34px -5px rgba(255, 0, 212, 0.7),
    28px 11px 34px -5px rgba(255, 174, 0, 0.7),
      -28px 11px 34px -5px rgba(255, 230, 0, 0.7);
  }
}

.button-5:active .button__int {
  padding: 11px 34px;
}

.button-5:hover {
  border-radius: 15px;
}

.button-5:hover .button__int {
  border-radius: 15px;
}

.button-5:hover .button__int {
  box-shadow: -19px -11px 34px -5px rgba(225, 0, 255, 0.8),
  19px -11px 34px -5px rgba(255, 0, 212, 0.8),
  19px 11px 34px -5px rgba(255, 174, 0, 0.8),
    -19px 11px 34px -5px rgba(255, 230, 0.8);
}

.dop {
  display: none;
 margin: 153px 0;
}
.dop video {
  height: auto;
  width: 100%;
  z-index: 2;
}
.dop2 {
  display: none;
}

