@import url('https://fonts.googleapis.com/css2?family=Gothic+A1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

:root{
    --white: #fff;
    --c-1: #111111;
    --c-2: #151414;
    --c-3: #0f0f13;
    --c-4: #0f0206;
    --c-5: #030b03;
    --black: var(--c-1);
    --a-1: #1f2be3;
    --a-2: #e31f8b;
    --a-3: #1fe398;
    --a-4: #e31f46;
    --a-5: #e3d61f;
    --hover: var(--a-1);
    --transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --box-color: #1e1e1e;
}

body{
  box-sizing: border-box;
  font-family: 'Gothic A1', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;
  direction: ltr;
  background-color: var(--black);
}

*{
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

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

.module{
  padding: 60px 0;
  color: var(--white);
}

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

.nav-box{
  padding:  14px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap:   14px;
}

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

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

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

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

.logo-title{
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  text-transform: inherit;
  transition: var(--transition);
}

.menu-nav{
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}

.menu-item{
  transition: var(--transition);
  display: inline-flex;

  a{
    color: var(--white);
    transition: var(--transition);
    padding: 14px 20px;
  }

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

  &:hover,
  &:focus{
    background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
    border-radius: 14px;
    box-sizing: border-box;
  }
}

.drop{
  color: var(--white);
  transition: var(--transition);
  padding: 14px 20px;

  &:hover .drop-menu,
  &:focus .drop-menu{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    background: #1a1a1a;
    padding: 14px;
    top: 4px;
    left: 0;
    inset-inline-start: 0;
    border-radius: 14px;
  }

  &:hover,
  &:focus{
    background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
    border-radius: 14px;
    box-sizing: border-box;
    color: var(--hover);
  }
}

.drop-menu{
  display: none;
}

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

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

.nav-wr{
  background-color: #1e1e1e;
}

.hero{
  background: url('media/dark-overlay_IX0.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0;
  color: var(--white);
}

.hero-box{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title{
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  animation: hero 4s linear;
}

@keyframes hero{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

.hero-video{
  display: block;
  width: 100%;
  height: 300px;
  background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
  border-radius: 14px;
  box-sizing: border-box;
  padding: 3px;

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

.title{
  text-transform: inherit;
  font-weight: 500;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}

.stat-row{
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 26px 0;
  flex-direction:  column-reverse;
  gap: 20px;
}

.stat-col{
  box-sizing: border-box;
  width: 100%;
  transition: var(--transition);
  background-color: var(--box-color);
  border-radius: 14px;
  padding: 32px;
  flex-grow: 1;

  &:hover,
  &:focus{
    background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
  }
}

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

.stat-num{
  font-size: 42px;
  font-weight: 700;
}

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

.serv-row{
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 26px 0;
  flex-direction:  column-reverse;
  gap: 20px;
}

.serv-col{
  width: 100%;
  box-sizing: border-box;
  transition: var(--transition);
  background-color: var(--box-color);
  border-radius: 14px;
  padding: 32px;
  flex-grow: 1;
}

.serv-box{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.serv-img{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background-color: var(--black);
  width: 72px;
  height: 72px;

  svg{
    width: 32px;
    height: 32px;
    color: var(--hover);
    transition: var(--transition);
  }

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

.serv-title{
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  transition: var(--transition);

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

.art-row{
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 26px 0;
  flex-direction:  column-reverse;
  gap: 20px;
}

.art-col{
  width: 100%;
  box-sizing: border-box;
  background-color: var(--box-color);
  border-radius: 14px;
  padding: 32px;
  flex-grow: 1;
}

.art-box{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.art-img{
  width: 100%;
  --randHeight-1: 300px;
  --randHeight-2: 200px;
  height: var(--randHeight-2);

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

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

.com-row{
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 26px 0;
  flex-direction:  column-reverse;
  gap: 20px;
}

.com-col{
  width: 100%;
  box-sizing: border-box;
  background-color: var(--box-color);
  border-radius: 14px;
  padding: 32px;
  flex-grow: 1;
  transition: var(--transition);

  &:hover,
  &:focus{
    background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
    border-radius: 14px;
    box-sizing: border-box;
  }
}

.com-box{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 20px;
}

.delimeter{
  width: 100%;
  height: 2px;
  background-color: #ffffff82;
}

.com-author-box{
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: space-between;

  div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 4px;
  }
}

.com-text{
  padding-bottom: 40px;
}

.avatar{
  width: 70px;
  height: 70px;
  background-color: var(--black);
  padding: 3px;
  border-radius: 100%;

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

.rating{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hover);
  flex-direction: row;
  gap: 3px;
}

.workers-row{
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 26px 0;
  flex-direction:  column-reverse;
  gap: 20px;
}

.workers-col{
  width: 100%;
  box-sizing: border-box;
  background-color: var(--box-color);
  border-radius: 14px;
  flex-grow: 1;
  overflow: hidden;
  transition: var(--transition);

  &:hover,
  &:focus{
    background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
    border-radius: 14px;
    box-sizing: border-box;
  }
}

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

.work-img{
  width: 100%;
  height: 300px;
  padding: 3px;

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

.work-desc{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap:  20px;
  padding: 20px;
}

.work-name{
  color: var(--hover);
  font-weight: 700;
}

.main-box{
    background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
    border-radius: 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap:  20px;
    padding: 26px;
}

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

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

.price{
  color: var(--hover);
  font-weight: 700;
  font-size: 32px;

  span{
    display: inline-block;
    animation: price 4s linear infinite;
  }
}

@keyframes price{
  0%{
    transform: scale(1);
    opacity: 0.8;
    color: var(--white);
  }
  50%{
    transform: scale(1.1);
    opacity: 1;
    color: var(--hover);
  }
  100%{
    transform: scale(1);
    opacity: 0.8;
    color: var(--white);
  }
}

.faq-box{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  transition: 0.4s linear;
  box-sizing: border-box;

  &:hover,
  &:focus{
    background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
    border-radius: 14px;
    box-sizing: border-box;
  }
}

.question{
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  background-color: var(--box-color);
  padding: 7px 20px;
  margin: 4px;
  transition: 0.4s linear;

  span{
    color: var(--hover);
    transition: var(--transition);
  }
}

.answer {
  display: none;
  transition: var(--transition);
  padding: 7px 20px;
}

.faq-item:hover .answer,
.faq-item:focus .answer {
  display: block;
  animation: answer 2s linear;
}

.faq-item:hover .question > span,
.faq-item:focus .question > span{
  display: none;
}

@keyframes answer{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.form-wr{
    background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
    border-radius: 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap:  20px;
    padding: 26px;
}

.form{
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  color: var(--white);
}

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

.contact-page-form > input,
.contact-page-form > textarea,
.input-custom-groupelement,
.textarea-custom-groupelement{
  width: 100%;
  padding: 20px;
  background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
  border: none;
  outline: none;
  box-sizing: border-box;
  color: var(--white);
}

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

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

.footer{
  background-color: var(--box-color);
  padding: 48px 0;
}

.footer-row{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-col{
  width: 100%;
  box-sizing: border-box;
}

.copyright{
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  color: #ffffff86;
  margin-top: 20px;

  p{
    margin: 0;
  }
}

.footer-menu-nav{
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}

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

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

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

.contact-serv-box{
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  color: #ffffff9c;
  height: 100%;

  a{
    color: var(--white);
    transition: var(--transition);
    word-break: break-all;
  }

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

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

.map{
  width: 100%;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  
  iframe{
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: 500px;
}

.gallery-item{
  transition: var(--transition);

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

  &:hover,
  &:focus{
    background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
  }
}

.div1 { 
  grid-area: 2 / 2 / 5 / 5;
  width: 100%;
  height: 100%;
}
.div2 { 
  grid-area: 1 / 3 / 2 / 4;
  height: 100px;
 }

.div3 { 
  grid-area: 1 / 1 / 2 / 3;
  height: 100px;
}
.div4 { 
  grid-area: 1 / 4 / 2 / 6;
  height: 100px;
}
.div5 { 
  grid-area: 2 / 1 / 5 / 2;
  height: 100%;
}
.div6 { 
  grid-area: 5 / 1 / 6 / 3;
  height: 100px;
}
.div7 { 
  grid-area: 5 / 3 / 6 / 4;
  height: 100px;
}
.div8 { 
  grid-area: 5 / 4 / 6 / 6;
  height: 100px;
}
.div9 { 
  grid-area: 2 / 5 / 5 / 6;
  height: 100%;
}

.faq{
  display: block;
}

.footer-video{
  display: block;
  width: 100%;
  height: 100px;
  background: linear-gradient(var(--box-color), var(--box-color)) 50% 50% / calc(100% - 6px) calc(100% - 4px) no-repeat, linear-gradient(38deg, var(--hover) 0%, rgba(30, 43, 226, 0) 50%, var(--hover) 100%);
  border-radius: 14px;
  box-sizing: border-box;
  padding: 3px;

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

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

@media (max-width: 575px){
  .menu-item{
    a{
      padding: 7px 20px;
    }
  }

  .drop{
    padding: 7px 20px;
  }
}

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

  .nav-box{
    align-items: center;
  }

  .menu-nav{
    align-items: center;
  }

  .drop{
    text-align: center;
  }

  .stat-row{
    flex-direction: row;
  }

  .stat-col{
    width: calc(50% - 20px);
  }

  .com-author-box{
    flex-direction: row;
  }

  .main-img{
    width: 100%;
    height: 300px;
  }

  .copyright{
    flex-direction: row;
  }

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

  .drop{
    position: relative;

    &:hover .drop-menu,
    &:focus .drop-menu{
      position: absolute;
      top: 100%;
      width: 300px;
    }
  }
}

@media (max-width: 767px){
  .gallery{
    display: none;
  }
}

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

  .serv-row{
    flex-direction: row;
  }

  .serv-col{
    width: calc(50% - 20px);
  }

  .workers-row{
    flex-direction: row;
  }

  .workers-col{
    width: calc(50% - 20px);
  }

  .footer-row{
    flex-direction: row;
  }

  .footer-col{
    width: calc((100% / 3) - 20px);
  }


}

@media (max-width: 991px){
 
  .menu-nav{
    gap: 0;
  }
}

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

  .nav-box{
    flex-direction: row;
  }

  .hero{
    padding: 200px 0;
  }

  .hero-title{
    font-size: 32px;
  }

  .stat-col{
    width: calc((100% / 4) - 20px);
  }

  .art-row{
    flex-direction: row;
  }

  .art-col{
    --randwidth-1: 50%;
    --randwidth-2: 100%;
    width: calc(var(--randwidth-2) - 20px);
  }

  .com-row{
    flex-direction: row;
  }

  .com-col{
    width: calc(50% - 20px);
  }

  .main-img{
    height: 400px;
  }

  .form{
    width: 80%;
    margin: 0 auto;
  }
}

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

  .serv-col{
    width: calc(25% - 20px);
  }

  .workers-col{
    width: calc(25% - 20px);
  }
}

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

.button-1{
  background-color: var(--hover);
  color: var(--white);
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 24px;
  margin: 0;
  font-size: 17px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-transform: inherit;
  align-items: center;
  text-align: center;
  letter-spacing: 0.4px;
  outline: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  z-index: 1;
  transition: color 300ms ease-in-out;
  border: 2px solid var(--hover);
  display: inline-block;

  &:hover,
  &:focus{
    background-color: transparent;
    border-color: var(--white);
  }
}

.button-2 {
  --color: #560bad;
  font-family: inherit;
  display: inline-block;
  padding: 4px 20px;
  line-height: 2.5em;
  margin: 23px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color);
  transition: color .4s;
  z-index: 1;
  font-size: 17px;
  border-radius: 30px;
  font-weight: 500;
  color: var(--color);
  display: inline-block;
  text-align: center;
}

.button-2:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.button-2:hover {
  color: #fff;
}

.button-2:before {
  top: 100%;
  left: 100%;
  transition: all .7s;
}

.button-2:hover:before {
  top: -26px;
  left: -26px;
}

.button-2:active:before {
  background: #3a0ca3;
  transition: background 0s;
}

.button-3 {
  font-size: 17px;
  background: transparent;
  border: none;
  padding: 1em 1.5em;
  color: #ffedd3;
  text-transform: inherit;
  position: relative;
  transition: 0.4s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.button-3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--hover);
  transition: 0.4s ease;
}

.button-3:hover {
  color: #1e1e2b;
  transition-delay: 0.4s;
}

.button-3:hover::before {
  width: 100%;
}

.button-3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: var(--hover);
  transition: 0.4s ease;
  z-index: -1;
}

.button-3:hover::after {
  height: 100%;
  transition-delay: 0.4s;
  color: aliceblue;
}

.button-4 {
  touch-action: manipulation;
  display: inline-block;
  outline: none;
  font-family: inherit;
  font-size: 17px;
  box-sizing: border-box;
  border: none;
  border-radius: 30px;
  text-transform: inherit;
  padding: 0 23px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
    inset 0 -2px 4px 2px rgba(139, 66, 8, 1),
    inset 0 -2px 2px 3px rgba(250, 227, 133, 1);
  background-image: linear-gradient(
    160deg,
    #a54e07,
    #b47e11,
    #fef1a2,
    #bc881b,
    #a54e07
  );
  border: 2px solid #a55d07;
  color: rgb(120, 50, 5);
  text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-size: 100% 100%;
  background-position: center;
  text-align: center;
  padding: 4px;
}

.button-4:focus,
.button-4:hover {
  background-size: 150% 150%;
  box-shadow: 0 14px 23px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23),
    inset 0 -2px 4px 2px #b17d10, inset 0 -2px 2px 3px rgba(250, 227, 133, 1);
  border: 2px solid rgba(165, 93, 7, 0.6);
  color: rgba(120, 50, 5, 0.8);
}

.button-4:active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
    inset 0 -2px 4px 2px #b17d10, inset 0 -2px 2px 3px rgba(250, 227, 133, 1);
}

.button-5 {
  padding: 14px 23px;
  border: none;
  font-size: 17px;
  color: #fff;
  border-radius: 30px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: inherit;
  transition: 0.4s;
  transition-property: box-shadow;
  display: inline-block;
  text-align: center;
}

.button-5 {
  background: var(--hover);
  box-shadow: 0 0 26px var(--hover);
}

.button-5:hover {
  box-shadow: 0 0 4px var(--hover),
              0 0 26px var(--hover),
              0 0 49px var(--hover),
              0 0 100px var(--hover);
}