*{
  margin: 0;
  padding: 0; 
  font-family: "RecoletaRegular";
  color: white;
  touch-action: manipulation;
}

html{
  scroll-behavior: smooth;
  background-color: rgb(255, 248, 239);
}

button:hover {
  cursor: pointer;
}

.aligned-image {
  vertical-align: text-bottom;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  50% { transform: translateX(10px); }
  75% { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.5s ease;
}

.grad {
  background-image: linear-gradient(transparent, rgba(39, 23, 23, 0.9));
}

@font-face {
  font-family: 'GothamBold';
  src: url('/assets/fonts/gotham/Gotham-Bold.otf') format("opentype");
}

@font-face {
  font-family: 'GothamLight';
  src: url('/assets/fonts/gotham/Gotham-Light.otf') format("opentype");
}

@font-face {
  font-family: 'GothamMedium';
  src: url('/assets/fonts/gotham/Gotham-Medium.otf') format("opentype");
}

@font-face {
  font-family: 'GothamBook';
  src: url('/assets/fonts/gotham/Gotham-Book.otf') format("opentype");
}

@font-face {
  font-family: 'RecoletaBold';
  src: url('/assets/fonts/gotham/Recoleta-Bold.ttf') format("truetype");
}

@font-face {
  font-family: 'RecoletaRegular';
  src: url('/assets/fonts/gotham/Recoleta-Regular.ttf') format("truetype");
}

svg *{
  font-family: GothamBold !important;
}

.hide-on-desktop{
  display: block !important;
}

.hide-on-desktop-768{
  display: block !important;
}

.hide-on-desktop-flex{
  display: flex !important;
}

.hide-on-mobile{
  display: none !important;
}

.hide-on-mobile-768{
  display: none !important;
}

.hide-on-mobile-product{
  display: none !important;
}

.hide-on-desktop-product{
  display: block !important;
}

@media screen and (min-width: 1024px) {
  .hide-on-desktop{
    display: none !important;
  }
  
  .hide-on-mobile{
    display: flex !important;
  }
}

input[type="radio"]{
  appearance: none;
  cursor: pointer;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;

  background: rgb(255, 248, 239);
  border: 8px solid rgb(255, 248, 239);

  transition: all 0.15s;
}

input[type="radio"]:checked{
  background: #FFFFFF;
  border: 8px solid rgb(239, 92, 147);

  transition: all 0.15s;
}

input[type="checkbox"]{
  outline: none;
  box-shadow: none;
  border-style: solid;
  border-color: #531a31;
  border-width: 1px;
  border-radius: 5px;
  appearance: none;
  cursor: pointer;
  position: relative;
  width: 25px !important;
  height: 25px !important;
  aspect-ratio: 1/1 !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background: url("../img/icons/check.svg");
  background-size: 0% !important;
  transition: background-size 0.15s, background-color 0.15s, border-color 0.15s;
}

input[type="checkbox"]:checked{
  background-color: rgb(239, 92, 147);
  background-size: 65% !important;
  transition: background-size 0.15s, background-color 0.15s, border-color 0.15s;
  border-color: rgb(239, 92, 147);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

body{
  background-color: black;
}

#header-content div{
  display: flex;
  gap: 40px;
}

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

#main-header{
  width: 100%;
  position: fixed;
  z-index: 30;
}


#header-content div{
  display: flex;
  gap: 40px;
}

#header-content{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 27px 30px;
  align-items: center;
}

#logo-vitaldom{
  width: auto;
  height: 74px;
}

#header-content #logo-button{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
}

.cart-passive{
  display: none;
}

.cart-active{
  display: flex;
  background-color: black;
  position: fixed;
  height: 400px;
  width: 300px;
  right: 0;
  top: 100px;
}

#close-button img{
  width: 30px;
  height: 30px;
}

#delete-button{
  height: fit-content;
  width: auto;
  background-color: black;
  border: none;
}

#delete-button img{
  width: 30px;
  height: 30px;
}


#hero{
  background-color: rgb(255, 248, 239);
  position: relative;
  overflow: hidden;
}

#hero button{
  width: 320px;
  height: 60px;
  background-color: transparent;
  color:  white;
  border: none;
  background-color: rgb(230, 92, 147);
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: GothamBold;
  padding-top: 1px;
  z-index: 1;
}

#hero > img{
  position: absolute;
  bottom: 0;
  width: 400px;
  right: -120px;
  z-index: 10;
}

#hero .container{
  position: relative;
  z-index: 20;
}

#hero .container .hero-text{
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 120px;
  padding-top: 140px;
  align-items: center;
  max-width: 360px;
  margin: auto;
}

#product-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 60px;
  background-color: transparent;
  border: 2px solid;
  border-color:  rgb(230, 92, 147);
  background-color: rgb(230, 92, 147);
  color: white;
  border-radius: 30px;
  font-size: 18px;
  font-family: GothamBold;
  padding-top: 1px;
}

header{
  background-color: transparent;
}

header.scrolled{
  background-color: rgba(239, 92, 147, 0.9);
}

header a{
  font-family: RecoletaRegular;
  font-size: 24px;
  text-decoration: none;
  color: #e65c93;
  transition: 150ms ease-out;
}

header.scrolled a{
  color: white;
}

header a:hover{
  filter: brightness(1.3);
}

#menu-button{
  background-color: transparent;
  border: none;
}

#hero h1{
  font-size: 44px;
  text-align: center;
  color: rgb(239, 92, 147);
}

#hero h1 span{
  font-family: RecoletaBold;
  color: rgb(239, 92, 147);
}

#hero h1 u{
  font-family: GothamBold;
}

#hero div .flex-col{
  gap: 40px;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 140px;
  z-index: 20;
  padding-bottom: 200px;
}

#hero .hero-text > p{
  font-size: 20px;
  max-width: 360px;
  text-align: center;
  line-height: 28px;
  color: rgb(155, 76, 107);
  font-family: GothamBook;
}

#hero .hero-text > p span{
  font-family: GothamBold;
  color: rgb(155, 76, 107);
}

.hero-advantages{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.hero-advantage{
  width: 100px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  text-decoration: none
}

.hero-advantage img{
  height: 70px;
}

.hero-advantage p{
  font-family: RecoletaBold;
  color: #9b4c6b;
  font-size: 14px;
  width: 100%;
  line-height: 18px;;
  text-align: center;
}

.container{
  max-width: 320px;
  padding: 0px 20px;
  margin: auto;
}

#flex-image{
  margin-top: -50px;
  width: 320px;
  height: auto;
  filter: drop-shadow(0mm 20mm 9.75rem rgba(154, 149, 61, 0.324));
}

.product-benefit{
  font-family: RecoletaBold;
  position: absolute;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper{
  width: 100%;
}

#swiper-1{
  margin-top: 40px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
}

.swiper-pagination{
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

}

.swiper-pagination-bullet{
  width: 14px !important;
  height: 14px !important;
  border: 4px solid;
  border-color: rgb(239, 92, 147) !important;
  background-color: white !important;
  
}

.swiper-pagination-bullet-active {
  background-color: rgb(239, 92, 147) !important;
}

.swiper-box{
  vertical-align: middle;
  justify-content: center;
  height: 200px;
  width: auto;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.swiper-box p{
  color: rgb(104, 39, 65);
  font-weight: bold;
  text-align: center;
  font-size: 30px;
}

#product{
  background: linear-gradient(#f5adcb, #f5adcb);
  position: relative;
  overflow: hidden;
}

#product #scroll-to-product{
  position: absolute;
  top: 200px;
}

#swiper-info {
  font-size: 20px;
  max-width: 260px;
  margin: auto;
  text-align: center;
  background-color: transparent;
}

#swiper-info div p{
  color: rgb(155, 76, 107);
  font-family: GothamBook;
}

#swiper-info div{
  align-items: center;
  gap: 40px;
  padding-bottom: 100px;
}

#swiper-info div p span{
  font-family: GothamBold;
  text-decoration: underline;
  color: rgb(104, 39, 65);
}

#product-detail{
  justify-content: center;
  vertical-align: middle;
  align-items: center;
}

.product-image{
  width: 450px;
}

.column{
  text-align: center;
  font-weight: bold;
  gap: 95px;
  padding-top: 73px;
}

#product .flex-col{
  align-items: center;
  position: relative;
}

#product .flex-col #product-scroll{
  position: absolute;
  top: 300px;
}

#product-info{
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  width: auto;
}

#flex-image-box{
  width: fit-content;
  height: auto;
}

.swiper .swiper-wrapper div{
  display: flex;
}

.swiper-box div{
  height: 120px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(230, 92, 147);
  font-family: RecoletaBold;
  font-size: 40px;
}

#advantages{
  background: linear-gradient(#ffeee8, #ffffff);
  height: fit-content;
  position: relative;
}

h2 {
  font-size: 50px;
  text-align: center;
  font-family: RecoletaRegular;
  color: rgb(230, 92, 147);
}

h2 span{
  font-family: RecoletaBold;
  color: rgb(230, 92, 147);
}

#advantages > .container:first-of-type{
  padding-top: 100px;
}

#advantages .container p{
  font-size: 20px;
  text-align: center;
  padding-top: 40px;
  line-height: 28px;
  color: rgb(156, 76, 108);
}

#advantages .container .swiper p{
  padding-top: 40px;
  padding-bottom: 70px;
  margin: 0;
  font-weight: normal;
  line-height: 30px;
}

#advantages .container .swiper p b{
  color: rgb(205,171,134);
}

#preco-prave img{
  padding-left: 12px;
}

#swiper-2 .swiper-slide p span{
  color: #9c4c6c;
  font-family: RecoletaBold;
  font-size: 18px !important;
  padding-top: 20px;
}

#swiper-2{
  padding-bottom: 60px;
  padding-top: 40px;
  margin-bottom: 40px;
}

#swiper-2 .swiper-wrapper{
  height: 100% !important;
}

#swiper-2 .swiper-slide{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#swiper-2 .swiper-slide .img{
  margin-bottom: 20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #f5e3e2;
  position: relative;
}

#swiper-2 .swiper-slide .img img{
  height: 200px;
  margin-top: 20px;
}

#swiper-2 .swiper-slide img{
  width: 200px;
  aspect-ratio: 1/1;
}

#swiper-2 .swiper-slide p{
  padding: 0 !important;
  padding-bottom: 30px;
  font-size: 16px !important;
  line-height: 24px !important;
}


#swiper-2 .swiper-pagination{
  position: absolute !important;;
}

#preco-prave{
  display: flex;
  justify-content: center;
  align-items: center;
}

#advantages .container .contents{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#advantages .container .contents h2{
  font-family: RecoletaBold;
}

#advantages .container .contents p{
  color: #9c4c6c;
  font-family: GothamBook;
  font-size: 16px;
  padding-bottom: 80px;
}

#advantages .container .contents p span{
  color: #9c4c6c;
  font-family: GothamBold;
}

#advantages .container{
  z-index: 10;
  position: relative;
}

#pic-absolute1{
  position: absolute;
  z-index: 2;
  margin-top: -70px;
  margin-left: -25px;
  height: 150px;
  width: auto;
}

#pic-absolute2{
  position: absolute;
  z-index: 2;
  height: 235px;
  right: 0px;
  bottom: -100px;
}

#satisfied-users{
  background-color: rgb(32, 25, 17);
  transition: max-height 0.5s ease-in-out;
  position: relative;
  align-items: center;
  background-color: rgb(255, 248, 239);
}

h3{
  font-family: RecoletaBold;
  font-size: 50px;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 70px;
  color: rgb(155, 76, 107);
}

h3 span{
  font-family: RecoletaRegular;
  color: rgb(155, 76, 107);
}

.swiper-box-3{
  display: flex;
  flex-direction: column;
  height: 366px;
  width: 290px;
  background-color: white;
  border-radius: 35px;
  align-items: center;
}

#satisfied-users .swiper .swiper-wrapper {
  height: 366px;
}

.name{
  color: rgb(155, 76, 107);
  font-family: GothamBold;
  font-size: 20px;
}

.job{
  color: rgb(173, 160, 146);
  font-size: 16px;
  letter-spacing: 4px;
  text-align: center;
}

.profile{
  align-items: center;
  gap: 20px;
  padding-bottom: 50px;
  padding-top: 50px;
}

.statement{
  padding-top: 50px;
  color: rgb(230, 92, 147);
  font-size: 20px;
  text-align: center;
  padding-bottom: 50px;
}

#swiper-3 .swiper-pagination{
  padding-bottom: 100px;
  padding-top: 50px;
}

#h3-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#h3-box img{
  vertical-align: text-bottom;
}

#satisfied-users-desktop {
  display: flex;
  flex-direction: row;
  gap: 42px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease-in-out;
  transition: padding-bottom 0.5s ease-in-out;
  padding-bottom: 120px;
}

.updated-satisfied {
  max-height: 1600px !important;
  z-index: 1;
}

#show-more{
  display: flex;
  justify-content: center;
  width: 216px;
  height: 40px;
  align-items: center;
  background-color: rgb(255, 248, 239);
  border: 2px solid;
  border-color: rgb(104, 39, 65);
  color: rgb(104, 39, 65);
  border-radius: 30px;
  font-size: 16px;
  font-family: GothamBold;
  position: absolute;
  bottom: 100px;
  z-index: 3;
  padding-top: 1px;
}

.show-less {
  bottom: 40px !important;
}

.satisfied-users-column{
  gap: 40px;
  position: relative;
  height: fit-content;
}

#type-2{
  height: 297px;
}

#type-3{
  height: 400px;
}

#type-4{
  height: 297px;
}

.satisfied-users-column .swiper-box-3 .name{
  padding-top: 50px;
  text-align: center;

}

#order{
  background: linear-gradient(#f5accc, #f5accc);
  position: relative;
}

.group .circle, .group .num *{
  transition: fill 320ms ease-in;
  fill: #f5accb;
}

.group.active .circle{
  fill: #9b4c6b !important;
}

.group.active .num *{
  fill: white !important;
}

#order-box{
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  overflow-x: hidden;
  padding-left: 50px;
  padding-right: 50px;
}

#progress-bar{
  width: 100%;
  max-width: 960px;
}

#bar-segment{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.circle-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  overflow: visible;
}

.circle-passive{
  background-color: transparent;
  color: rgb(155, 76, 107);
}

.circle-active{
  border: 2px solid #9b4c6b;
  color: white;
  background-color: #9b4c6b;;
}

#bar-segment hr{
  width: 60px;
  height: 2px;
  border: 0;
  margin-bottom: 60px;
  transition: color,background-color 150ms ease-out;
}

.circle-box p{
  font-weight: bold;    
  font-size: 16px;
  padding-top: 18px;
  height: 40px;
  text-align: center;
  white-space: nowrap;
  width: 100px;
  font-family: GothamBold;
  color: rgb(155, 76, 107);;
}

.hr-active{
  color: #9b4c6b;
  background-color: #9b4c6b;
}

.hr-passive{
  color: rgb(155, 76, 107);;
  background-color: rgb(155, 76, 107);
}

#order-visual{
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 80px;
}

#order-description{
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

#description-title{
  color: #9b4c6b;
  text-align: center;
  font-family: GothamBold;
  font-size: 44px;
}

.price{
  font-family: GothamBold;
  font-size: 30px;
  color: #9c4d6c;
}

.price span{
  font-family: GothamBook;
  color: rgb(217, 145, 174);
  letter-spacing: 5px;
  margin-left: 10px;
}

#description{
  font-weight: normal;
  color: rgb(104, 39, 65);
  font-size: 20px;
  text-align: center;
  font-family: GothamBook;
  max-width: 320px;
}

#show-details{
  font-weight: normal;
  text-align: center;
  font-size: 20px;
  display: none;
}

#show-details u{
  color: rgb(104, 39, 65);
  font-family: GothamBook;
}

.number-button{
  width: 320px;
  background-color: white;
  height: 60px;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.number-button button{
  background: transparent;
  border: none;
  font-size: 18px;
  padding: 0px 30px;
  font-weight: bold;
  color: black;
}

.number-button p{
  font-weight: bold;
  font-size: 18px;
}

.order-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 60px;
  background-color: transparent;
  border: 2px solid;
  color: white;
  border-color: #e65c93;
  background-color: #e65c93;
  border-radius: 30px;
  font-size: 18px;
  font-family: GothamBold;
  padding-top: 1px;
}

.buttons-box{
  gap: 20px;
}

#black-box{
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 60px;
}

#desc-1{
  color: #9b4c6b;
}

.desc-active{
  color: #9b4c6b !important;
}

#green-box{
  padding: 40px 0px;
  background-color: #9b4c6b;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  position: relative;
}

.contacts-box{
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 20px;
  font-weight: bold;
}

#hand{
  position: relative;
  height: 260px;
  width: auto;
}

#black-box-bar{
  justify-content: center;
  align-items: center;
  gap: 55px;
  width: 966px;
  max-width: 100%;
}

#dividing-line{
  width: 100%;
  color: rgb(32, 25, 17);
  background-color: rgb(32, 25, 17);
  border: none;
  height: 1px;
}

#phone-number{
  text-decoration: none;
}

#hand-text{
  gap: 12px;
  position:absolute;
  font-size: 20px;
  font-weight: bolder;
  padding: 0;
  bottom: 120px;
  left: 20px;
}

#hand-text p{
  background-color: white;
  color: rgb(204, 170, 133);
  width: fit-content;
  font-size: 18px;
}

#pic-absolute3{
  position: absolute;
  width: fit-content;
  height: auto;
  right: 6%;
  margin-bottom: 20px;
}

.amountParagraph{
  color: black;
  font-family: GothamBook;
}

#grad-box{
  position:absolute;
  background-image: linear-gradient(transparent 10%,rgba(255, 246, 243, 1) 70%);
  height: 540px;
  width: 100%;
  bottom: 0;
  z-index: 2;
}

.updated-grad{
  display: none !important;
}

.step-active{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.step-passive{
  display: none;
}

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

#step-2 img{
  width: 370px;
  margin-left: 30px;
}

.step-2-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  flex-grow: 1;
  max-width: 966px;
}

.step-2-wrapper .price-2{
  font-size: 20px;
  color: #9b4c6b;
  font-family: GothamBold;
  margin-top: 40px;
}

.step-2-wrapper .shipping-summary{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.step-2-wrapper .shipping-summary *{
  font-size: 20px;
  color: #9b4c6b;
  font-family: GothamBold;
}

.step-2-wrapper .shipping-summary > p:first-child{
  font-family: GothamBook;
}

.step-2-wrapper .shipping-summary > p:last-child{
  font-size: 14px;
  font-family: GothamBook;
  width: 220px;
  text-align: center;
}

.step-2-title{
  font-weight: bold;
  font-size: 44px;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #9b4c6b;
  font-family: GothamBold;
}

.discount{
  display: flex;
  width: 320px;
  height: 60px;
  align-items: center;
  justify-content: space-between;
}

.discount input{
  border: none;
  background-color: white;
  width: 280px;
  height: 100%;
  padding: 0px 20px;
  margin-right: -150px;
  border-radius: 30px;
  color: rgb(127, 127, 127);
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
} 

.discount button{
  height: 60px;
  width: 150px;
  background-color: #9b4c6b;
  border: 2px solid #9b4c6b;
  border-radius: 30px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  font-family: GothamBold;
  transition: 120ms ease-out;
}

.discount button:hover{
  filter: brightness(1.3);
}

.discount-box{
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.price-info{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#discount-info{
  display: none;
}

#discount-info.active{
  display: block;
}

#discount-info{
  font-size: 14px;
  color: rgb(239, 92, 147);
}

.discount-wrapper p{
  font-family: GothamBook;
}

.price-total{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.price-total p{
  text-align: center;
  font-family: GothamBook;
  color: #9b4c6b;
}

.price-total #final-price{
  font-family: GothamBold;
}

.nav-buttons{
  width: 320px;
  gap: 20px;
  display: flex;
  flex-direction: column-reverse;
}

.nav{
  width: 100%;
  height: 60px;
  border-radius: 30px;
  font-size: 18px;
}

.nav-fd{
  background-color: #e65c93;
  color: white;
  border: 2px solid #e65c93;
  padding-top: 1px;
  font-family: GothamBold;
}

.nav-bd{
  background-color: transparent;
  color: #9b4c6b;
  border: 2px solid #9b4c6b;
  padding-top: 1px;
  font-family: GothamBold;
}

.title-box{
  justify-content: center;
  align-items: center;
}

.line-1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%}

.line-1-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.order-line{
  width: 100%;
  height: 2px;
  background-color: #d186a5;
  border: none;
}

.order-line.company-line{
  margin-top: 30px;
}

.error-message{
  position: absolute;
  font-size: 12px;
  bottom: -22px;
  left: 30px;
  color: #531a31;
}

.order-line-1{
  margin-top: 10px;
  margin-bottom: 10px;
}

.order-line-2{
  margin-bottom: 20px;
}

.order-line-3{
  margin-bottom: 60px;
  margin-top: 10px;
}

.step-1-row-wrapper{
  display: flex;
  flex-direction: column;
}

.step-3-wrapper{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
}

.radio-box{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.radio-input{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.radio-input label{
  color: #531a31;
  font-size: 20px;
  font-family: GothamBook;
}

.personal-info{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.personal-info-label{
  font-family: GothamBook;
  color: #531a31;
}

#company-info{
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

#gift-info{
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.input-box{
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 20px;
  position: relative;
}

.input{
  width: 260px;
  border-radius: 30px;
  height: 60px;
  color: black;
  font-size: 18px;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
}

input[type="text"]:focus, input[type="email"]:focus{
  border: none;
  outline: none;
}

.input::placeholder{
  color: rgb(127, 127, 127);
}

.input-box-wrapper{
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.checkbox{
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.checkbox label{
  width: calc(100% - 45px);
  line-height: 16px;
}

.step-3-wrapper .nav-buttons{
  margin-top: 30px;
}

.step-4-wrapper{
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.payment{
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  font-size: 20px;
}

.payment-method{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.payment-method .radio-input{
  padding: 24px 30px;
  display: flex;
  gap: 24px;
  background-color: #f8c5db;
}

.payment-method .radio-input p{
  font-size: 20px;
  font-family: GothamBook;
}

.payment-method div div{
  display: flex;
  width: calc(100% - 48px);
  justify-content: space-between;
}

.card-payment-img{
  gap: 20px;
  justify-content: normal !important;
  width: fit-content !important;
}

.card-payment-img img{
  height: 17px;
  width: auto;
}

.shipping{
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 20px;
  width: 320px;
}

.shipping div div{
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.terms{
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 320px;
}

.termsbox-wrapper{
  display: flex;
  flex-direction: column;
  position: relative;
}

.termsbox-wrapper .error-message{
  left: 45px;
}

.termsbox{
  display: flex;
  gap: 20px;
  align-items: center;
  line-height: 16px;
}

.termsbox label{
  font-size: 16px;
  line-height: 120%;
  width: calc(100% - 45px);
}

.payment-wrapper{
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
}

.payment-wrapper *{
  color: #531a31;
}

.shipping .flex-col{
  gap: 40px;
}

#nav-menu{
  width: 100%;
  height: 100%;
  background-color: rgba(255, 248, 239, 0.95);
  z-index: 29;
  position: fixed;
  margin-top: 83px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity ease-out 0.2s;
  pointer-events: none;
}

#close-button{
  display: none;
  background-color: transparent;
  border: none;
}

.menu-inner{
  display: flex;
  flex-direction: column;
  margin-bottom: 127px;
  gap: 60px;
}

.menu-inner a{
  text-decoration: none;
  font-size: 26px;
  font-family: GothamBold;
  color: rgb(239, 92, 147);
  text-align: center;
}

.step-1-img{
  width: 380px;
  height: auto;
}

.step-1-img-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}

.poitner-events-on{
  pointer-events: auto !important;
}

.amountParagraph{
  color: black;
  border: none;
  text-align: center;
  font-size: 16px;
  min-width: none;
}

.step-5-wrapper{
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.step-5-wrapper img{
  width: 370px;
  margin-left: 30px;
}

.finalization-text{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.success-title{
  text-align: center;
  color: rgb(104, 39, 65);
  font-size: 44px;
  font-family: GothamBold;
}

.success-text{
  text-align: center;
  font-size: 20px;
}

.bones{
  width: 300px;
}

.contacts-box a, .contacts-box p, .contacts-box a u{
  font-family: RecoletaBold;
}

.product-description{
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
}

.product-description .product-category{
  width: calc(100% - 40px) !important;
  padding: 20px;
  border-radius: 20px;
  background-color: #f8c5db;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.product-description .product-category img{
  padding-top: 20px;
  height: 120px;
  width: auto;
}

.product-description .product-category img.small{
  transform: scale(0.65);
}

.product-description .product-category p span{
  font-family: RecoletaBold;
  font-size: 32px;
  color: #9b4c6b;
}

.product-description .product-category p{
  font-family: RecoletaRegular;
  font-size: 18px;
  color: #9b4c6b;
}

.product-description .swiper-pagination.product{
  padding-top: 40px;
}

.moving-circle{
  display: none;
}

.moving-circle-2{
  display: none;
}

.shipping p.bold, .payment p.bold{
  font-family: GothamBold;
}

.shipping p span.bold{
  font-family: RecoletaBold;
}

#adress-info p{
  text-align: center;
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  padding-top: 100px;
  color: #531a31;
}

#adress-info p b{
  font-family: RecoletaBold;
  color: #531a31;
}

#terms-conditions{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#terms-conditions a{
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  color: #531a31;
}

.mobile-logo{
  width: 130px;
  height: 60px;
}

@media screen and (min-width: 768px) {
  .container{
    max-width: 768px;
  }
  #hero > img{
    width: 600px;
  }
  #hero .container .hero-text{
    padding-bottom: 220px;
  }
  #pic-absolute1{
    height: 250px;
  }
  #pic-absolute2{
    height: 400px;
  }

  .hide-on-desktop-768{
    display: none !important;
  }

  .hide-on-mobile-768{
    display: block !important;
  }
}

@media screen and (min-width: 650px) {
  #order-box{
    align-items: center;
  }
  #hero div .flex-col{
    margin-top: 160px;
  }
}