@import url('https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root{
  --b-1: #ffb3cb;
  --b-2: #b23319;
  --b-3: #ffb06b;
  --b-4: #e31d70;
  --b-5: #6f41b1;
  --accent: var(--b-5);
  --white: #fff;
  --bg: #f7f8fa;
  --black: #060606;
  --transition: 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

body{
  direction: ltr;
  font-family: 'Vollkorn', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
  position: relative;
}


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

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.nav{
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 8%;
  right: 0;
  z-index: 1;
}

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

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

.nav-item{
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end; 
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
  margin-left: auto;
  transform: translateX(calc(100% - 50px));

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

.nav-text{
  height: 41px;
  display: flex;
  align-items: center;
  display: none;
  transition: var(--transition);
}

.nav-item:hover .nav-text,
.nav-item:focus .nav-text{
  display: flex;
  transition: var(--transition);
}

.nav-item:nth-child(1){
  .nav-icon{
    background-color: #384259;
  }

  .nav-text{
    background-color: rgb(60, 68, 84);
  }
}
.nav-item:nth-child(2){
  .nav-icon{
    background-color: #f73859;
  }

  .nav-text{
    background-color: rgb(220, 48, 77);
  }
}

.nav-item:nth-child(3){
  .nav-icon{
    background-color: #c4edde;
  }

  .nav-text{
    background-color: #aacfc1;
  }
}


.nav-text{
  padding: 0 15px;
}

.hero{
  background: url('assets/img/cccircular-5.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.hero-box{
  padding: 207px 0;
}

.logo-title{
  font-family: 'Pacifico', sans-serif;
  font-size: 41px;
  font-weight:  700;
  color: var(--accent);
  margin-bottom:  20px;
}

.logo-box{
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 0px 2px rgba(0, 0, 0, 0.575));
}

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

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

.hero-text{
  text-align: center;
  color: var(--white);
  filter: drop-shadow(2px 0px 2px rgba(0, 0, 0, 0.575));
}

.basket{
  display: flex;
  justify-content: end;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}

.ho-module{
  background-color: var(--bg);
}

.ho-box{
  background-color: var(--white);
  box-shadow: 00px 24px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
  border-radius: 36px;

  .row-3{
    transform: translateY(-100px);
    margin-top: 108px;
  }
}

.module{
  padding: 108px 0;
}

.row-3{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 20px;
}

.col-3{
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  padding: 20px;
}

.ho-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ho-img{
  width: 207px;
  height: 207px;
  margin: 0 auto;
  position: relative;
  
  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
  }
 

  &:hover > img,
  &:focus > img{
    transform: scale(1.1);
  }
}

.ho-num{
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 41px;
  font-weight:  700;
}

.ho-title{
  font-family: 'Pacifico', sans-serif;
  font-size: 20px;
  line-height: 23px;
  font-weight:  700;
}

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

.row-2{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 20px;
}

.col-2{
  box-sizing: border-box;
  flex-grow: 1;
  padding: 20px;
  width: 100%;
}

.au-img{
  display: flex;
  width: 100%;
  height: 350px;

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

.title{
  font-family: 'Pacifico', sans-serif;
  font-size: 20px;
  line-height: 23px;
  font-weight:  700;
  color: var(--accent);
  margin-bottom: 20px;
}

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

.video-player{
  width: 100%;
  height: 350px;
  object-fit: cover;
  box-shadow: 00px 20px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
  border-radius: 36px;
}

.bubbles-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  border-radius: 50%;
  box-shadow: none;
  height: 5px;
  position: absolute;
  width: 5px;
}

.x1 {
  -webkit-animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 6%;
  top: 45%;
  background: #ffb739;
}


.x2 {
  -webkit-animation: animateBubble 10s linear infinite,sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 10s linear infinite,sideWays 4s ease-in-out infinite alternate;
  left: 5%;
  top: 80%;
  background: #fc4fdd
}

.x3 {
  -webkit-animation: animateBubble 18s linear infinite,sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 18s linear infinite,sideWays 2s ease-in-out infinite alternate;
  left: 10%;
  top: 40%;
  background: #5ed5cb;
}

.x4 {
  -webkit-animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
  left: 20%;
  top: 0;
  background: #3de4a3
}

.x5 {
  -webkit-animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
  left: 30%;
  top: 50%;
  background: #fc4fb1
}

.x6 {
  -webkit-animation: animateBubble 11s linear infinite,sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 11s linear infinite,sideWays 2s ease-in-out infinite alternate;
  left: 50%;
  top: 0;
  background: #2c4aff
}

.x7 {
  -webkit-animation: animateBubble 10s linear infinite,sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 10s linear infinite,sideWays 2s ease-in-out infinite alternate;
  left: 65%;
  top: 70%;
  background: #ffb739
}

.x8 {
  -webkit-animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
  left: 80%;
  top: 10%;
  background: #8f3de4
}

.x9 {
  -webkit-animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
  left: 90%;
  top: 50%;
  background: #fff339
}

.x10 {
  -webkit-animation: animateBubble 16s linear infinite,sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 16s linear infinite,sideWays 2s ease-in-out infinite alternate;
  left: 80%;
  top: 80%;
  background: #fc4f4f
}



@keyframes animateBubble {
  0% {
    margin-top: 20%;
  }

  to {
    margin-top: -30%;
  }
}

@keyframes sideWays {
  0% {
    margin-left: 0;
  }

  to {
    margin-left: 24px;
  }
}

.p-0{
  padding: 0;
}

.row-main{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 20px;
}

.col-main{
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1;
  box-shadow: 00px 24px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
  border-radius: 36px;
  overflow: hidden;
}
  
.main-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  height: 100%;
  justify-content: space-between;
}

.main-img{
  width: 100%;
  height: 232px;
  display: inline-block;
  overflow: hidden;

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

  &:hover > img,
  &:focus > img{
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

.main-title{
  font-family: 'Pacifico', sans-serif;
  color: var(--accent);
  transition: var(--transition);
  text-align: center;
  
  h3{
    margin: 0;
  }

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

.price,
.main-price{
  font-size: 20px;
  font-weight:  700;
  font-family: 'Pacifico', sans-serif;
  color: var(--accent);
}

.content{
  text-align: center;
}

.extra-info{
  display: none;
}

.extra-info.active{
  display: block;
  transition: var(--transition);
}

.extra-title-list{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap:  20px;
}

.extra-title-item{
  cursor: pointer;
  padding: 15px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  transition: var(--transition);
  border-radius: 36px;
  box-shadow: 0px 24px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
  border-color: #FFFFFF00;
}

.extra-title-item.active{
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--accent);
  transition: var(--transition);
  color: var(--accent);
  transform: translateX(-20px);
}

.extra-info{
  background-color: var(--white);
  box-shadow: 00px 23px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
  border-radius: 36px;
  transition: var(--transition);

  .main-box{
    height: 100%;
  }
}

.stat-module{
  background: url('static/images/bg-overlay_q8290.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.row-4{
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  flex-direction: column-reverse;
  gap: 20px;
}

.col-4{
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1;
  padding: 20px;
}

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

.stat-box-1{
  .stat-num{
    color: var(--b-1);
  }

  .progress-bar{
    background-color: var(--b-1);
  }
}

.stat-box-2{
  .stat-num{
    color: var(--b-2);
  }

  .progress-bar{
    background-color: var(--b-2);
  }
}
.stat-box-3{
  .stat-num{
    color: var(--b-3);
  }

  .progress-bar{
    background-color: var(--b-3);
  }
}
.stat-box-4{
  .stat-num{
    color: var(--b-4);
  }

  .progress-bar{
    background-color: var(--b-4);
  }
}
.stat-num{
  font-size: 60px;
  font-weight:  700;
}

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

.stat-progress{
  width: 80%;
  height: 15px;
  border-radius: 3px;
  background-color: #E7EFF3;
  overflow: hidden;
  box-shadow: 00px 24px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
}

.progress-bar{
  height: 100%;
  width: 0;
  transition: width 2s ease;
}

.comment-img {
  cursor: pointer;
  width: 108px;
  height: 108px;
  border-radius: 100%;
  overflow: hidden;
  transition: var(--transition);

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

.comment-img.active-comment {
  border: 4px solid var(--accent);
  transition: var(--transition);
}

.comment-info{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.comment-item {
  display: none;
  height: 100%;
  transition: var(--transition);
}

.comment-item.active-comment {
  display: block;
  transition: var(--transition);
}

.comment-box{
  position: relative;
  min-height: 350px;
}

.com-img-1{
  position: absolute;
  top: 0;
  left: 59%;
  width: 141px;
  height: 141px;
}

.com-img-2{
  position: absolute;
  top: 8%;
  left: 2%;
  width: 60px;
  height: 60px;
}
.com-img-3{
  position: absolute;
  top: 35%;
  left: 28%;
  width: 115px;
  height: 115px;
}
.com-img-4{
  position: absolute;
  top: 58%;
  left: 70%;
  width: 86px;
  height: 86px;
}
.com-img-5{
  position: absolute;
  top: 54%;
  left: 0%;
  width: 56px;
  height: 56px;
}
.com-img-6{
  position: absolute;
  top: 84%;
  left: 26%;
  width: 60px;
  height: 60px;
}

.comment{
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--white);
  box-shadow: 00px 24px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
  border-radius: 36px;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

.comment-name{
  color: var(--accent);
}

.form-module{
  background-color: #252971;
  color: var(--white);
}

.form-page,
.form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.input-control__containerinput,
.textarea-control__containerinput{
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  background-color: transparent;
  border: 1px solid var(--white);
  border-radius: 36px;
  padding: 20px;
}

.form-page .input-control__containerinput {
  color: #000;
}
.form-page .textarea-control__containerinput {
  color: #000;
}
.form-page{
  .inquiry-form-box{
    width: 100%;
  }

  .inquiry-form-box > input,
  .inquiry-form-box > textarea,
  .input-control__containerinput,
  .textarea-control__containerinput{
    color: #000;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent;
    border: 1px solid var(--accent);
    border-radius: 36px;
    padding: 20px;
  }

  .privacy{
    color: var(--black);
  }
}

.form-title-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

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

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

.footer{
  background-color: #0D183F;
  color: var(--white);
  padding: 45px 0;
}

.footer-contact-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;

  .inquiry-link{
    color: var(--white);
    transition: var(--transition);
    word-break: break-all;

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

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

.footer-contact-icon{
  width: 28px;
  height: 28px;
  color: var(--accent);

  svg{
    width: 100%;
    height: 100%;
  }
}

.footer-contact-row{
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.footer-privacy-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

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

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

.page-image{
  width: 100%;
  height: auto;
  padding: 20px;

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

.page-summary{
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--white);
  box-shadow: 00px 24px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
  border-radius: 36px;
  padding: 20px;
}

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

.inquiry-item{
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--white);
  box-shadow: 00px 24px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
  border-radius: 36px;
  padding: 20px;
}

.map{
  width: 100%;
  height: 100%;
  box-shadow: 00px 24px 90px 0px rgba(18.000000000000014, 27.999999999999975, 109, 0.13);
  border-radius: 36px;
  overflow: hidden;

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

.inquiry-link{
  color: var(--black);
  font-weight:  700;
  transition: var(--transition);
  word-break: break-all;

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

.inquiry-adres{
  color: var(--black);
  font-weight:  700;
}

.pay-text{
  word-break: break-word;
}

@media (max-width: 575px){
  .com-img-1{
    width: 108px;
    height: 108px;
  }

  .logo-title{
    text-align: center;
  }
}
@media (min-width: 576px) {
  .wrapper {
    max-width: 536px;
  }

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

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

@media (max-width: 767px){
  .extra-main{
    display: none !important;
  }
}

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

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

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

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

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

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

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

  .main-wrapper{
    display: none;
  }

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

  .page-image{
    height: 350px;
    margin: 0 auto;
  }

  
.hero{
  background-size: 105% 105%;
  animation: bgsize 7s linear infinite;
}

@keyframes bgsize{
  0%{
    background-size: 105% 105%;
  }
  50%{
    background-size: 100% 100%;
  }
  100%{
    background-size: 105% 105%;
  }
}
}

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

  .ho-img{
    width: 241px;
    height: 232px;
  }

  .au-img{
    height: 356px;
  }

  .video-player{
    height: 356px;
  }

  .col-main{
    --w-1: 50%;
    --w-2: 33.33%;
    width: calc(var(--w-1) - 20px);
  }

  .page-image{
    width: 356px;
    height: 356px;
    float: none;
  }
}

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

  .page-image{
    width: 415px;
    height: 415px;
  }
}

.button-1 {
  padding: 20px 28px;
  border: 2px solid #2c2c2c;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 36px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}

.button-1::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-1:hover::after {
  transform: scale(4);
}

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

.button-2 {
  text-decoration: none;
  padding: 20px 41px;
  font-size: 13px;
  position: relative;
  border: none;
  background-color: #26caf8;
  font-weight: 400;
  display: inline-block;
  text-align: center;
}

.button-2 {
  overflow: hidden;
  color: #fff;
  border-radius: 36px;
  box-shadow: 0 0 0 0 rgba(143, 64, 248, 0.5), 0 0 0 0 rgba(39, 200, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-2::after {
  content: "";
  width: 356px;
  height: 356px;
  position: absolute;
  top: -41px;
  left: -108px;
  background-color: #ff3cac;
  background-image: linear-gradient(225deg, #27d86c 0%, #26caf8 50%, #c625d0 100%);
  z-index: -1;
  transition: transform 0.5s ease;
}

.button-2:hover {
  transform: translate(0, -6px);
  box-shadow: 15px -15px 25px 0 rgba(143, 64, 248, 0.5),  -15px 15px 25px 0 rgba(39, 200, 255, 0.5);
}

.button-2:hover::after {
  transform: rotate(150deg);
}

.button-3 {
  display: inline-block;
  padding: 20px 28px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(130deg, #ff6b6b, #c94d4d, #8e3636);
  border-radius: 60px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  border-style: solid;
  border-width: 2px;
}

.button-3:before,
.button-3:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.button-3:before {
  left: 100%;
  background: linear-gradient(130deg, #ff6b6b, #c94d4d, #8e3636);
  z-index: -1;
}

.button-3:hover:before {
  transform: translateX(-50%);
  opacity: 1;
}

.button-3:after {
  right: 100%;
  background: linear-gradient(130deg, #ff6b6b, #c94d4d, #8e3636);
  z-index: -1;
}

.button-3:hover:after {
  transform: translateX(50%);
  opacity: 1;
}


.button-4 {
  padding: 20px 28px;
  font-weight:  700;
  font-size: 18px;
  background-color: rgb(40, 40, 40);
  border-radius: 15px;
  border: 1px solid rgb(232, 97, 124);
  color: aliceblue;
  box-shadow: 0 0 25px rgb(232, 97, 124),
              0 0 25px rgb(232, 97, 124),
              0 0 5px rgb(232, 97, 124) inset;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.button-4:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgb(232, 97, 124),
              0 0 28px rgb(232, 97, 124),
              0 0 10px rgb(232, 97, 124) inset;
}

.button-5 {
display: inline-block;
padding: 20px;
  border: none;
  color: white;
  font-weight: 400;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  cursor: pointer;
  background: linear-gradient(-45deg, #6bc5f8, #cf59e6, #6bc5f8, #cf59e6);
  background-size: 1000% 1000%;
  animation: gradient 5s ease infinite;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.247);
  transition-duration: .1s;
  text-align: center;
}

@keyframes gradient {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.button-5::before {
  content: "";
  position: absolute;
  width: 41px;
  height: 100%;
  left: -68px;
  top: 0;
  background-color: rgba(214, 199, 255, 0.329);
  filter: blur(15px);
  transition-duration: .3s;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

.button-5:hover::before {
  transform: translateX(250px);
  transition-duration: .3s;
}



.market-txt__{rclass_basket}__style-buttons-container {
  overflow: hidden;
}

.inquiry-box{
  max-width: 600px;
  margin: 0 auto;
}