@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

:root{
  --o-1: #3c479c;
  --o-2: #9c3c3c;
  --o-3: #3c9c41;
  --o-4: #9c763c;
  --o-5: #9c3c82;
  --o-6: #52c0c4;
  --o-7: #46db6b;
  --o-8: #d9db35;
  --o-9: #c933a1;
  --o-10: #d11b1b;
  --accent: var(--o-1);
  --g-1: linear-gradient(120deg, #353A5F 0%, #191C33 100%);
  --g-2: linear-gradient(120deg, #5f3535 0%, #331919 100%);
  --g-3: linear-gradient(120deg, #3e5f35 0%, #193319 100%);
  --g-4: linear-gradient(120deg, #5f5335 0%, #332c19 100%);
  --g-5: linear-gradient(120deg, #5f3551 0%, #331930 100%);
  --g-6: linear-gradient(120deg, #5bb8bb 0%, #227a77 100%);
  --g-7: linear-gradient(120deg, #60ca7a 0%, #459b34 100%);
  --g-8: linear-gradient(120deg, #ced050 0%, #b9b11a 100%);
  --g-9: linear-gradient(120deg, #c75da4 0%, #99228b 100%);
  --g-10: linear-gradient(120deg, #ce3939 0%, #811d15 100%);
  --bg: var(--g-1);
  --white: #fff;
  --black: #0a1b16;
  --transition: 0.3s linear;
  --grey: #939598;
}

html {
  scroll-behavior: smooth;
}

body{
  box-sizing: border-box;
  font-family: 'Noto Sans Display', 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: 15px;
  font-size: 13px;
  line-height: 1.5;
}

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

li {
  margin-bottom: 7px;
}

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

.module{
  padding: 64px 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-30,
.col-70,
.col-2,
.col-3,
.col-4,
.col-5{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.header{
  background-image: var(--bg);
  position: relative;
  overflow: hidden;

  .lqd-custom-shape{
    width: 200%;
    position: absolute;
    bottom: -2px;
  }
}

.nav{
  padding: 15px 0;
}

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

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

  &:hover,
  &:focus{
    transform: translateX(-2px);
  }
}

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

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

.logo-title{
  margin: 0;
  color: var(--white);
  display: inline-block;
  font-size: 18px;
}

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

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

    &:hover,
    &:focus{
      transform: translateX(-2px);
    }
  }
}

.banner{
  padding: 100px 0 200px;
  position: relative;
  z-index: 1;
}

.banner-title{
  color: var(--white);
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 23px;
}

.banner-icon{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background-color: #ffffff46;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);

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

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

.banner-phone{
  position: absolute;
  bottom: 32%;
  left: 20%;
  animation: banner-icon linear;
  animation-duration: 2s;
}

.banner-mail{
  position: absolute;
  bottom: 26%;
  left: 50%;
  animation: banner-icon linear;
  animation-duration: 2.5s;
}

.banner-wa{
  position: absolute;
  bottom: 36%;
  left: 79%;
  animation: banner-icon linear;
  animation-duration: 1.8s;
}

@keyframes banner-icon{
  0%{
    opacity: 0;
    transform: translateY(50px);
  }
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}

.title{
  font-size: 22px;
  text-transform: inherit;
  background: linear-gradient(0deg, var(--accent) 50%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  display: table;
  margin: 0 auto 25px;
  max-width: 700px;
  text-align: center;
  font-weight: 900;
  word-break: break-word;
}

.reas-box{
  display: flex;
  flex-direction: column;
  gap:  19px;
  padding:  19px;
}

.reas-img{
  width: 80%;
  height: 172px;
  margin: 0 auto;

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

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

.reas-col{
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}


.footer-svg{
  width: 100%;
  height: auto;
  position: relative;
  bottom: -19px;
}

.footer{
  background: var(--accent);
  padding: 50px 0;
}

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

.privacy-item{
  a{
    color: var(--white);
    transition: var(--transition);
    display: inline-block;
    
    &:hover,
    &:focus{
      transform: translateX(-5px);
    }
  }
}

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

  p{
    margin: 0;
  }
}

#scrollTopBtn {
  display: none;
  position: fixed; 
  bottom: 23px; 
  right: 23px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: #555;
  color: white; 
  cursor: pointer; 
  padding: 19px; 
  border-radius: 30px; 
  font-size: 16px; 
}

#scrollTopBtn:hover {
  background-color: #333; 
}

.main-img{
  width: 100%;
  height: 420px;
  border-radius: 5px;
  padding: 19px;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--accent);

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
  }
}

.main-box{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.main-svg{
  transform: rotate(317deg);
  width: 150%;
  height: 520px;
  position: absolute;
  top: -28px;
  left: -26px;
}

.price{
  font-size: 22px;
  text-transform: inherit;
  text-align: center;
  font-weight: 900;
  background: var(--bg);
  display: table;
  color: white;
  border-radius: 5px;
  mix-blend-mode: multiply;
  padding: 5px 15px;
}

.products{
  position: relative;

  &::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-color: var(--accent);
    opacity: 0.2;
    width: 100%;
    height: 100%;
  }
}

.serv-box{
  background-color: var(--white);
  border-radius: 5px;
  padding: 19px;
  position: relative;
  display: flex;
  flex-direction:  column;
  gap: 19px;
  align-items: center;
  height: 100%;
}

.serv-img{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  transition: var(--transition);

  svg{
    width: 39px;
    height: 39px;
  }
  
  &:hover,
  &:focus{
    transform: translateX(-5px);
  }
}

.serv-title{
  font-size: 22px;
  text-transform: inherit;
  background: linear-gradient(0deg, var(--accent) 50%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  display: table;
  font-weight: 900;
  transition: var(--transition);
  
  &:hover,
  &:focus{
    transform: translateX(-5px);
  }
}

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

.art-box{
  display: flex;
  flex-direction: column;
  gap: 19px;
  background-color: var(--white);
  border-radius: 5px;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.art-img{
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
  }
}

.art-img::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  pointer-events: none;
  transition: all 0.5s ease;
  opacity: 0;
}

.art-img:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.art-img:hover::before {
  top: -100%;
  left: 100%;
  opacity: 1;
}

.art-content{
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 0 19px 19px;
}

.art-title{
  font-size: 22px;
  text-transform: inherit;
  background: linear-gradient(0deg, var(--accent) 50%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  display: table;
  font-weight: 900;
  transition: var(--transition);
  
  &:hover,
  &:focus{
    transform: translateX(-5px);
  }
}

.art-description{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.tarif-title{
  font-size: 22px;
  text-transform: inherit;
  text-align: center;
  font-weight: 900;
  background: var(--bg);
  display: table;
  color: white;
  border-radius: 5px;
  mix-blend-mode: multiply;
  padding: 5px 15px;
}

.tarif-box{
  border-radius: 5px;
  padding:  19px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 19px;

  .button-1{
    border-color: var(--accent);
    color: var(--accent);

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

  .button-5{
    color: var(--accent);
  }
  .button-3{
    span{
      color: var(--white);
    }
  }

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

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

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

.tarif-price{
  text-align: center;
  font-size: 27px;
  font-weight: 900;
  text-transform: inherit;
}

.tarif-text{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.tarif-icon{
  color: var(--accent);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;

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

.stat-list{
  display: flex;
  flex-direction: row;
  height: 100%;
  flex-wrap: wrap;
}

.stat-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding:  19px;
  gap: 15px;
  border: 2px solid rgba(0, 0, 0, .1);
  flex: 1;
}

.stat-num{
  font-size: 56px;
  font-weight: 400;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-fill-color: transparent !important;  background-image: linear-gradient(180deg, var(--accent) 0%, #F2DFDF 100%);
}

.stat-title{
  height: 100%;

  .title{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-bottom: 0;
  }
}

.stat-icon{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;

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

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

.quize-container {
  padding: 23px;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;

}

.question{
  flex: 1;
  display: flex;
  flex-direction: column;
  opacity: 0.5;
}

.question.current-step {
  display: block;
  padding: 19px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid rgba(0, 0, 0, .1);
  opacity: 1;

  .option-button:hover {
    background-color: var(--accent);
    color: var(--white);
  }

  .quize-question-title{
    opacity: 1;
  }
}

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

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

.quize-question-title{
  opacity: 0.3;
}

.kwiz-thx,
.quize-question-title{
  margin-bottom: 25px;
  font-size: 22px;
  text-align: center;
}

.form{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap:  19px;

  .button-1{
    border-color: var(--accent);
    color: var(--accent);

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

  .button-5{
    color: var(--accent);
  }

  .button-3{
    padding: 0;

    span{
      color: var(--white);
    }
  }

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

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

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

.contact-page-form > input,
.contact-page-form > textarea,
.input-btn_box_item,
.textarea-btn_box_item{
  width: 100%;
  padding: 19px;
  box-sizing: border-box;
  border: 2px solid rgba(0, 0, 0, .1);
}

.form-img-box{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

  &:hover,
  &:focus{
    transform: translateX(5px);
  }
}

.form-box{
  padding: 0  19px;
}


.modal {
  display: none;
  position: fixed;
  z-index: 2;
  padding-top: 63px;
  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: 90px;
  right: 35px;
  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: 16px;
  margin-top: -50px;
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 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);
}

.parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  }

  .parent > div{
    cursor: pointer;
    overflow: hidden;
    position: relative;

    img{
      display: block;
      transition: transform 0.5s ease, filter 0.5s ease;
    }
  }


.parent>div::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  pointer-events: none;
  transition: all 0.5s ease;
  opacity: 0;
}

.parent>div:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

  
  .div1 { 
    grid-area: 1 / 1 / 3 / 3;
    width: 100%;
    height: 100%;

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

  .div2 { 
    grid-area: 2 / 3 / 3 / 4;
    width: 100%;
    height: 200px;

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

  .div3 { 
    grid-area: 2 / 4 / 3 / 5;
    width: 100%;
    height: 200px;

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

  .div4 { 
    grid-area: 1 / 3 / 2 / 5;
    width: 100%;
    height: calc(200px - 4px);

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

   .map{
    width: 100%;
    height: 320px;

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

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

   .contact-page-item{
    a{
      color: var(--black);
      transition: var(--transition);
      display: inline-block;
      word-break: break-all;
      text-align: center;

      &:hover,
      &:focus{
        transform: translateX(5px);
      }
    }
   }

   .adres{
    text-align: center;
   }


   .slider {
    width: 80%;
    margin: 0 auto;
    height: 360px;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
  }
  
  .slider__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide {
    width: 100%;
    height: 100%; 
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.6s, opacity 0.6s;
    background-color: #ffffff;
    padding: 23px;
    box-shadow: 0px 5px 19px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
  }
  
  .slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 4;
  }
  
  .slide + .slide {
    transform: translateY(20px); 
    z-index: 3;
    opacity: 1;
  }
  
  .slide + .slide + .slide {
    transform: translateY(40px); 
    z-index: 2;
    opacity: 1;
  }
  .slide + .slide + .slide + .slide{
    transform: translateY(60px); 
    z-index: 1;
    opacity: 1;
  }

  .prev-ar{
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--accent);
    z-index: 5;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
    transition: var(--transition);

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

    &:hover,
    &:focus{
      background-color: var(--accent);
      color: var(--white);
    }
  }
  .next-ar{
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--accent);
    z-index: 5;
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translate(0, -50%);
    transition: var(--transition);

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

    &:hover,
    &:focus{
      background-color: var(--accent);
      color: var(--white);
    }
  }
  .com-box{
    padding:  19px;
    display: flex;
    flex-direction: column;
    gap: 19px;
    height: 100%;
    justify-content: center;
  }

  .com-author-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 19px;
  }
  .author-img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;

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

  .comment{
    text-align: center;
  }

  .gallery{
    direction: ltr;
  }

@media (max-width: 575px){
  .banner-icon{
    display: none;
  }

  .header{
    .lqd-custom-shape{
      width: 300%;
    }
  }

  .module{
    padding: 50px 0;
  }

  .main-svg{
    width: 200%;
    left: -86px;
  }

  .slider {
    height: 450px;
  }

  .author-name{
    text-align: center;
  }

  .stat-list{
    flex-direction: column;
  }
}

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

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

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

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

  .price,
  .title{
    font-size: 21px;
  }

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

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

@media (max-width: 767px){
  .nav-box{
    justify-content: center;
    gap: 19px;
  }

  .quize-container{
    .row-4{
      flex-direction: column !important;
    }
  }

  .form-box{
    padding: 23px 0;
  }
}


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


  .header{
    .lqd-custom-shape{
      width: 100%;
    }
  }

  .banner{
    padding: 200px 0 300px;
  }

  .banner-title{
    font-size: 29px;
  }

  .price,
  .title{
    font-size: 29px;
  }

  .reas-col{
    border-top: none;
    border-bottom: none;
    border-left: 2px solid var(--accent);
    border-right: none;
  }

  .quize-container{
    .row-4{
      flex-direction: row !important;
    }
  }

}

@media (min-width: 767px) and (max-width: 991px){
  .main-svg{
    width: 200%;
    left: -63px;
  }

  .serv-box{
    flex-direction: column;
  }
}

@media(max-width: 991px){
  .stat{
    .row-2{
      flex-direction: column !important;
    }
  }

  #comments{
    .row-2{
      flex-direction: column !important;
    }
  }
}

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

  .price,
  .title{
    font-size: 32px;
  }

  .reas-col{
    border-right: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
  }

  .serv-col{
    --w-1: calc(33.333% - 19px);
    --w-2: calc(50% - 19px);
    width: var(--w-2);
  }

  .art-col{
    --w-1: calc(25% - 19px);
    --w-2: calc(50% - 19px);
    width: var(--w-2);
  }

  .art-col-t{
    width: calc(50% - 19px) !important;
  }

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

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

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

  .price,
  .title{
    font-size: 42px;
  }

}


.btn-box{
  margin: 0 auto;
  text-align: center;
}


.button-1 {
  padding: 19px 23px;
  border: 2px solid var(--white);
  border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
  color: var(--white);
  background: none;
  cursor: pointer;
  margin-top: 19px;
  font-size: 22px;
  transition: all .2s linear;
  display: inline-block;
}

.button-1:hover {
  border-radius: 4% 95% 6% 95% / 95% 4% 92% 5%;
  border: 2px dashed var(--white);
}


.button-2 {
  padding: 19px;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
  cursor: pointer;
  background: var(--bg);
  border: 2px solid var(--accent);
  color: #ffffff;
  font-size: 16px;
  transition: var(--transition);
  font-weight: 400;

  &:hover,
  &:focus{
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.5) -12.74%,
      rgba(226, 226, 226, 0.25) 56.76%
    );
  }
}


.button-3 {
  --button_radius: 0.75em;
  --button_color: #e8e8e8;
  --button_outline_color: #000000;
  font-size: 17px;
  font-weight: 400;
  border: none;
  border-radius: var(--button_radius);
  background: var(--button_outline_color);
  display: inline-block;

  span {
    display: block;
    box-sizing: border-box;
    border: 2px solid var(--button_outline_color);
    border-radius: var(--button_radius);
    padding: 15px 23px;
    background: var(--bg);
    color: var(--button_outline_color);
    transform: translateY(-0.2em);
    transition: transform 0.1s ease;
  }
}

.button-3:hover span {
transform: translateY(-0.33em);
}


.button-4 {
  transition: all .3s linear;
  padding: 19px;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  outline: none;
  background-color: #020202;
  border-radius: 30px;
  border: 0px;
  position: relative;
  z-index: 99;
  cursor: pointer;
}

.button-4::after,
.button-4::before {
  content: '';
  position: absolute;
  background-color: #020202;
  width: 100%;
  opacity: 0;
  height: 100%;
  left: 0;
  border-radius: 100px;
  bottom: 0;
  z-index: -2;
  transition: all .3s linear;
}

.button-4 span {
  font-size: 16px;
  font-weight: 400;
  transition: all .3s linear;
  color: #fff;
  text-transform: capitalize;
}

.button-4:hover {
  transform: translate(-12px, -12px);
}

.button-4:hover:after {
  transform: translate(6px, 6px);
  opacity: .5;
}

.button-4:hover::before {
  transform: translate(12px, 12px);
  opacity: .3;
}

.button-4:hover span {
  animation: storm .4s linear both;
}

@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }

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


.button-5 {
  background: transparent;
  color: #fff;
  text-transform: inherit;
  font-weight: 400;
  border: none;
  padding: 23px 25px;
  perspective: 30rem;
  border-radius: 30px;
  box-shadow: 0 5px 19px rgba(0, 0, 0, 0.308);
  display: inline-block;
  text-align: center;
}

.button-5::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30px;
  background: linear-gradient(320deg, rgba(255, 255, 255, 0.678), rgba(9, 0, 9, 0.308));
  z-index: 1;
  transition: background 3s;
}

.button-5:hover::before {
  animation: rotate 1s infinite;
  transition: all .5s;
}

@keyframes rotate {
  0% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}