@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root{
  --price: #ffabc3;
  --btn: #5A3956;
  --mob-text: #303030;
  --e-1: #EAC76F;
  --e-2: #FD85B2;
  --e-3: #A8A3D8;
  --e-4: #09C1DC;
  --e-5: #2eb8a6;
  --accent: var(--e-3);
  --d-1: #c5a24a;
  --d-2: #db608d;
  --d-3: #7b72c6;
  --d-4: #33adc0;
  --d-5: #1d9d8c;
  --extra: var(--d-3);
  --white: #fff;
  --black: #060606;
  --transition: 0.4s linear;
}

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

*{
  box-sizing: border-box;
}

a{
    text-decoration: none;
}

p {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.4
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 9px;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

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

.module{
  padding:  64px 0;
}

.ptm{
  padding-top:  64px;
}

.row-2,
.row-3,
.row-4,
.row-5{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

.column-2,
.column-3,
.column-4,
.column-5{
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1;
}

.header{
  background-color: var(--accent);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.wave{
  background-color: var(--accent);
  height:  64px;
  -webkit-mask-image: url('img/sweeny-wave-bottom.svg');
  -webkit-mask-size: 140%;
  -webkit-mask-position: bottom center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  top: -1px;
}

.nav{
  background-color: var(--white);
  padding: 20px 27px;
  border-radius: 20px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.open-hour{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px 0;
}

.discaunt,
.oh-box{
  display: flex;
  flex-direction: row;
  gap:  9px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.menu{
  width: 24px;
  height: 20px;
  position: relative;
  cursor: pointer;

  span {
    height: 2px;
    left: 0;
    background: var(--accent);
    display: inline-block;
    width: 100%;
    position: absolute;
    content: "";
    transition: var(--transition);
  }

  
  &:hover > span,
  &:focus > span{
    background: var(--black);
  }

  span:first-child {
    top: 0;
  }

  span:nth-child(2) {
    top: 52%;
    transform: translateY(-50%);
  }

  span:last-child {
    bottom: 0;
  }

  &.active span:nth-child(2) {
    transform: translateX(-9px) translateY(-50%);
  }
}

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

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

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

.logo-title{
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  transition: var(--transition);
}

.logo-box:hover .logo-title,
.logo-box:hover .logo-title{
  color: var(--black);
}

.nav-list{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.nav-item{
  a{
    color: var(--accent);
    transition: var(--transition);

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

.close-menu{
  color: var(--accent);
  transition: var(--transition);
  cursor: pointer;
  margin-left: auto;

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

.mob-list{
  display: flex;
  flex-direction: column;
}

.mob-nav-item{
  a{
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 20px;
    color: var(--mob-text);
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--white);
      background-color: var(--mob-text);
    }
  }
}

.delimeter{
  margin-top:  20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  gap: 20px;
  
  svg{
    width:  14px;
    height:  14px;
  }
}

.mobile-menu{
  direction: ltr !important;
  
  .nav-item > a{
    width: 100%;
    height: 100%;
    display: inline-block;
    padding:  14px 0;
    border-bottom: 1px solid var(--accent);

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

.hero{
  padding: 51px 0;
}

.hero-img{
  background-color: var(--white);
  -webkit-mask-image: url('img/ssspiral.svg');
  -webkit-mask-size: contain;
  height: 544px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
  transition: var(--transition);
}

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

.hero-text{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-img-box{
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}

.hero-main-img{
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  height: 445px;
  z-index: 1;
  animation: 2s heroOpacity linear;

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

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

.catalog{
  width: 127px;
  height: 127px;
  border-radius: 100%;
  background-color: var(--btn);
  color: var(--white);
  position: absolute;
  bottom: -5%;
  z-index: 1;
  transition: var(--transition);

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

  a{
    color: var(--white);
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(9px + 2px);
  }

  a::before{
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: 9px;
    bottom: 9px;
    margin: auto;
    width: auto;
    height: auto;
    border-radius: 100%;
    border: 1px dashed var(--white);
    animation: border-animation 14s linear infinite;
  }
}

.ar-down{
  position: absolute;
  bottom: 14px;
  width: 24px;
  height: 27px;
  animation: ar-down 3s linear infinite;

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

@keyframes ar-down{
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(9px);
  }
  100%{
    transform: translateY(0px);
  }
}

.catalog a:hover .ar-down,
.catalog a:focus .ar-down,
.catalog a:hover::before,
.catalog a:focus::before {
  animation-play-state: paused;
}

@keyframes border-animation{
  100%{
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
  }
}

.au-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 127px;
}

.title{
  color: var(--accent);
  font-weight: 800;
  text-transform: capitalize;
  text-align: center;
  font-size: 30px;
  margin-bottom: 27px;
}

.au-text{
  text-align: center;
  line-height: 1.4;
}

.ben-col{
  border-radius: 20px;
  padding: 20px;
  position: relative;
}

.ben-col:first-child{
  background: url('photos/visuals_header_684ddf556f6b59.95724978.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  &::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--e-1);
    opacity: 1;
    border-radius: 20px;
    transition: var(--transition);
  }

  &:hover::after{
    opacity: 0.8;
  }
}
.ben-col:nth-child(2){
  background: url('photos/graphics_header_684ddf556f6ca6.26759541.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  &::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--e-2);
    opacity: 1;
    border-radius: 20px;
    transition: var(--transition);
  }

  &:hover::after{
    opacity: 0.8;
  }
}
.ben-col:nth-child(3){
  background: url('photos/renders_header_684ddf556f6ce8.84304649.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  &::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--e-3);
    opacity: 1;
    border-radius: 20px;
    transition: var(--transition);
  }

  &:hover::after{
    opacity: 0.8;
  }
}
.ben-col:last-child{
  background: url('photos/illustrations_header_684ddf556f6d19.96421225.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

    &::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--e-4);
    opacity: 1;
    border-radius: 20px;
    transition: var(--transition);
  }

  &:hover::after{
    opacity: 0.8;
  }
}

.c1{
  background-color: var(--e-1);
}
.c2{
  background-color: var(--e-2);
}
.c3{
  background-color: var(--e-3);
}
.c4{
  background-color: var(--e-4);
}

.ben-icon-box{
  width: 101px;
  height: 101px;
  border-radius: 100%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0px);
  z-index: 2;
}

.ben-icon{
  border: 1px solid white;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);

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

.ben-box{
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  align-items: center;
  color: var(--white);
}

.ben-box::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 1px dashed var(--white);
  border-radius: 20px;
}

.ben-title{
  text-align: center;
  font-weight: 500;
}

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

.main{
  background-color: var(--accent);
  overflow: hidden;
}

.wave-rotate{
  transform: rotate(180deg);
  position: relative;
  bottom: -1px;
  top: 0;
}

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

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

.main-col-1,
.main-column-2{
  width: 100%;
  box-sizing: border-box;
}

.main-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-img{
  width: 100%;
  height: 369px;
  border-radius: 40px;
  display: inline-block;
  border: 1 solid white;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.main-btn-wr{
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.main-img:hover,
.main-img:focus{
  border-color: var(--extra);
}

.main-img:hover .main-btn-wr,
.main-img:focus .main-btn-wr{
  visibility: visible;
  opacity: 1;
  transition: var(--transition);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.425), rgba(0, 0, 0, 0.445));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.main-title{
  color: var(--white);
  transition: var(--transition);
  text-align: center;

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

.main-price{
  color: var(--price);
  text-align: center;
  font-size: 30px;
  font-weight: {font_weight_bold};
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.586));
}

.ho-wr{
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  &::before{
    content: '';
    position: absolute;
    background-color: var(--white);
    -webkit-mask-image: url('img/sssurf.svg');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    height: 100%;
    width: calc(100% - 20px);
    mask-position: left;
    -webkit-mask-position: left;
    left: 0;
    top: 0;
  }

  &::after{
    content: '';
    position: absolute;
    background-color: var(--white);
    -webkit-mask-image: url('img/sssurf.svg');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    height: 100%;
    width: calc(100% - 20px);
    mask-position: right;
    -webkit-mask-position: right;
    right: 0;
    top: 0;
  }
}

.ho-box{
  background-color: var(--white);
  padding: 51px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 20px;
  position: relative;
  z-index: 2;
  height: 100%;
}

.ho-num{
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.ho-num-1{
  color: var(--e-1);
}

.ho-num-2{
  color: var(--e-2);
}

.ho-num-3{
  color: var(--e-3);
}

.ho-text{
  font-weight: {font_weight_bold};
  margin-bottom: 14px;
}

.ho-item{
  padding: 20px 0;
  border-bottom: 2px dashed var(--mob-text);

  &:last-child{
    border: none;
  }
}

.ow-wr{
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  &::before{
    content: '';
    position: absolute;
    background-color: var(--extra);
    -webkit-mask-image: url('img/sssurf.svg');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    height: 100%;
    width: calc(100% - 20px);
    mask-position: left;
    -webkit-mask-position: left;
    left: 0;
    top: 0;
  }

  &::after{
    content: '';
    position: absolute;
    background-color: var(--extra);
    -webkit-mask-image: url('img/sssurf.svg');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    height: 100%;
    width: calc(100% - 20px);
    mask-position: right;
    -webkit-mask-position: right;
    right: 0;
    top: 0;
  }
}

.ow-box{
  background-color: var(--extra);
  padding: 51px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
  position: relative;
  z-index: 2;
  height: 100%;
  gap: 20px;

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

  .contact-adres{
    text-align: center;
    color: white;
  }

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

.main-col-1{
  display: none; 
  flex-direction: column;
  gap: 20px; 
}

.worker-box{
  background-color: var(--accent);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  gap: 20px; 
  padding: 27px; 
  color: var(--white);

  &:hover .worker-avatar > span{
    transform: scale(0.9);
  }
}

.worker-box::after{
  content: '';
  position: absolute;
  top:  14px;
  left:  14px;
  bottom:  14px;
  right:  14px;
  border: 3px dashed var(--white);
  border-radius: 20px;
}

.worker-avatar{
  span{
    mask-image: url('img/Team-mask.svg');
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transform: scale(1.01);
    width: 2 40px;
    height: 2 40px;
    display: inline-block;
    transition: var(--transition);

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

.worker-name{
  font-weight: {font_weight_bold};
  font-size: 20px;
}

.worker-prof{
  margin-bottom: 14px;
}

.free-delivery-wave-1{
  background-color: var(--accent);
  height: 20px;
  -webkit-mask-image: url(img/sweeny-wave-bottom.svg);
  -webkit-mask-size: 15%;
  -webkit-mask-position: bottom center;
  -webkit-mask-repeat: repeat;
  position: relative;
  bottom: -2px;
  transform: rotate(180deg);
}
.free-delivery-wave-2{
  background-color: var(--accent);
  height: 20px;
  -webkit-mask-image: url(img/sweeny-wave-bottom.svg);
  -webkit-mask-size: 15%;
  -webkit-mask-position: bottom center;
  -webkit-mask-repeat: repeat;
  position: relative;
  top: -2px;
}

.free-delivery-box{
  height: 69px;
  background-color: var(--accent);
}

.marquee-container {
  width: 100%; 
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: marquee 20s linear infinite;
}

.marquee p {
  display: inline-block;
  padding-right: 40px; 
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
  margin: 0;
}


@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-box{
  width: 100%;
  height: 101px;
  background-color: var(--accent);
  position: relative;
  border-radius: 20px;
  padding: 20px;

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

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

.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  }
  
  .div1 { 
    grid-area: 1 / 1 / 2 / 3;
    height: 140px;
  }
  
  .div2 { 
    grid-area: 2 / 1 / 3 / 2;
    height: 140px;
  }
  
  .div3 { 
    grid-area: 2 / 2 / 3 / 3;
    height: 140px;
  }
  
  .div4 { 
    grid-area: 1 / 3 / 3 / 4;
    height: 100%;
  }
  
  .div5 { 
    grid-area: 1 / 4 / 2 / 5;
    height: 100%;
  }
  
  .div6 { 
    grid-area: 1 / 5 / 2 / 6;
  }
  
  .div7 { 
    grid-area: 2 / 4 / 3 / 6;
    height: 140px;
  }
  
.parent > div{
  border-radius: 20px;
  overflow: hidden;

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

  &:hover > img,
  &:hover > img{
    opacity: 0.8;
  }
}

 .modal {
  display: none;
  direction: ltr !important;
  position: fixed;
  z-index: 1;
  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: 917px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

.close {
  position: absolute;
  top: 14px;
  right: 31px;
  color: #f1f1f1;
  font-size: 36px;
  font-weight: 800;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

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

.form-img{
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 445px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.contact-form-video{
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 445px;

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

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

.support-form-box{
  width: 100%;
}

.support-form-box > input,
.support-form-box > textarea,
.input-main__element__part,
.textarea-main__element__part{
  width: 100%;
  box-sizing: border-box;
  padding: 20px 14px;
  border-radius: 20px;
  background-color: var(--accent);
  border: none;
  outline: none;
  color: white;
}

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

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

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

.com-img{
  position: relative;
  z-index: 1;

  span{
    mask-image: url('img/Team-mask.svg');
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transform: scale(1.01);
    width: 220px;
    height: 220px;
    display: inline-block;
    transition: var(--transition);

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

  &:hover > span,
  &:focus > span{
    transform: scale(0.9);
  }
}

.slider {
  direction: ltr !important;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 27px;
  background-color: var(--white);
  border-radius: 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;

  &::after{
    content: '';
    position: absolute;
    top:  14px;
    left:  14px;
    bottom:  14px;
    right:  14px;
    border: 2px dashed var(--accent);
    border-radius: 20px;
  }
}

.dots {
  direction: ltr !important;
  text-align: center;
  margin-top: 27px;
}

.dot {
  display: inline-block;
  width:  14px;
  height:  14px;
  margin: 0 9px;
  background-color: var(--extra);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: var(--white);
}

.com-author{
  color: var(--accent);
  font-weight: {font_weight_bold};
}


.footer-wave{
  background-color: var(--extra);
}

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

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

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

.visa-img{
  width: 101px;
  height: 40px;

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

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

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

.footer-politik-privacy,
.footer-nav-item{
  a{
    color: var(--white);
    transition: var(--transition);

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

.ai{
  align-items: center;
}

.row-3{
  width: 100%;
}

.pt0{
  padding-top: 0;
}

.section-form{
  background-color: var(--accent);
}

.page-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-img{
  width: 100%;
  height: auto;
  border-radius: 40px;
  display: inline-block;
  border: 5px solid var(--extra);
  background-color: var(--accent);
  padding: 20px;
  overflow: hidden;

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

.page-price{
  color: var(--extra);
  font-size: 30px;
  font-weight: {font_weight_bold};
}

.page-row{
  width: 100%;
}

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

.similar-module{
  background-color: var(--accent);
}

.similar-wave{
  background-color: var(--white);
}

.contact-module{
  background-color: var(--accent);
}

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

.contact-page-item{
  background-color: var(--white);
  border-radius: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  padding: 27px 20px;
  position: relative;

  &:after{
    content: '';
    position: absolute;
    top:  14px;
    left:  14px;
    bottom:  14px;
    right:  14px;
    border: 2px dashed var(--accent);
    border-radius: 20px;
  }
}

.map{
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--accent);
  width: 100%;
  height: 100%;

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

.rg{
  row-gap: 20px;
}

.contact-link{
  color: var(--accent);
  transition: var(--transition);
  font-weight: {font_weight_bold};
  word-break: break-all;

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

.contact-adres{
  font-weight: {font_weight_bold};
  text-align: center;
}

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


@media (max-width: 479px){
  .logo-title{
    text-align: center;
  }

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

  .mobile-menu{
    width: 100% !important;
  }
}

@media(min-width: 480px){
  .nav{
    flex-direction: row;
  }
}

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

  .page-img{
    height: 335px;
  }

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

  .column-5{
    width: calc(50% - 20px);
  }
}

@media (max-width: 767px){
  .catalog{
    position: relative;
  }

  .hero-main-img {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .ben-col:nth-child(3){
    margin-bottom: 40px;
  }

  .free-delivery-wave-1,
  .free-delivery-wave-2{
    -webkit-mask-size: 30%;
  }
  
  .pp{
    border-top: 1px dashed var(--white);
    padding-top: 20px;

    .footer-nav-item{
      text-align: center;
    }
  }

  .au-row{
    flex-direction: column !important;
  }
}

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

  .row-2,
  .row-3,
  .row-4{
    flex-direction: row-reverse;
  }

  .column-2,
  .column-3,
  .column-4{
    width: calc(50% - 20px);
  }

  .open-hour{
    flex-direction: row-reverse;
  }

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

  .ho-wr{
    flex-grow: 1;
    width: 50%;
  }

  .ow-wr{
    flex-grow: 1;
    width: 50%;
    height: min-content;
  }

  .slide {
    min-width: calc(50% - 14px);
  }

  .slides{
    gap: 14px;
  }

  .footer-logo-box{
    margin-top: 27px;
  }

  .page-img{
    height: 340px;
  }

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

@media(max-width: 991px){
  .nav-list{
    display: none;
  }

  .mobile-menu{
    position: fixed;
    background-color: var(--white);
    box-shadow: 24px 0 20px -20px rgba(0, 0, 0, 0.45);
    width: 335px;
    top: 0;
    left: 0;
    inset-inline-start: 0;
    height: 100%;
    transform: translateX(-100%);
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 3;
  }

  .visible-nav{
    visibility: visible;
    transform: translateX(0%);
  }

  .ben-col:first-child,
  .ben-col:nth-child(2){
    margin-bottom: 540px 0px;
  }

  .footer-politik-privacy{
    text-align: center;
  }
  
  .pt{
    border-top: 1px dashed var(--white);
    padding-top: 20px;
  }

  .main-row{
    flex-direction: column-reverse !important;
  }
}

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

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

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

  .menu{
    display: none;
  }

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

  .mobile-menu{
    display: none;
  }

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

  .main-col-1{
    flex-direction: column;
    width: calc(30% - 20px);
  }

  .main-column-2{
    width: calc(70% - 20px);
  }

  .row-3{
    row-gap: 49px;
  }

  .ow-wr{
    width: 100%;
  }

  .ho-wr{
    width: 100%;
  }

  .slide {
    min-width: calc(33.3333% - 9px);
  }

  .page-img{
    height: 440px;
  }

  .column-5{
    width: calc((100% / 5) - 20px);
  }
}

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

  .page-img{
    height: 540px;
  }
}

@media (min-width: 1660px){
  .wave{
    -webkit-mask-size: 100%;
  }
}

.form-btn{
  text-align: center;

  .button-1{
    background: var(--extra);

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

  .button-3,
  .button-4,
  .button-5{
    background-color: var(--extra);
  }
}
.main-btn{
  text-align: center;
}

.button-1{
  cursor: pointer;
  background-color: var(--accent);
  color: var(--white);
  display: inline-block;
  padding: 20px;
  border-radius: 31px;
  transition: var(--transition);
  border: 2px solid var(--accent);

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

.button-2 {
  appearance: none;
  background-color: #000000;
  border: 1px solid #1A1A1A;
  border-radius: 20px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  min-height: 51px;
  min-width: 0;
  outline: none;
  padding: 20px 22px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.button-2:disabled {
  pointer-events: none;
}

.button-2:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-3 {
  background-color: var(--accent);
  border-radius: 101px;
  box-shadow: rgba(255, 255, 255, 0.2) 0 -24px 20px - 20px inset,rgba(255, 255, 255, 0.15) 0 1px 2rgba(255, 255, 255, 0.15) 0 2px 4px,rgba(255, 255, 255, 0.15) 0 4px 9px,rgba(255, 255, 255, 0.15) 0 9px  20px,rgba(255, 255, 255, 0.15) 0  20px 31px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 9px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 13px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-3:hover {
  color: #f02929;
  box-shadow: hsla(0, 45%, 52%, 0.35) 0 -24px  22px -20px inset,rgba(187, 73, 44, 0.25) 0 1px 2px,rgba(187, 63, 44, 0.25) 0 2px 4px,rgba(187, 70, 44, 0.25) 0 4px 9px,rgba(187, 58, 44, 0.25) 0 8px 20px,rgba(187, 73, 44, 0.25) 0 20px 32px;
  transform: scale(1.05) rotate(-1deg);
}


.button-4 {
  background-color: var(--accent);
  border: 0;
  border-radius:  51px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: 17px;
  font-weight: 500;
  outline: 0;
  padding: 20px 22px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-4:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 124px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.button-4:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 20px inset, rgba(0, 0, 0, .1) 0 3px 9px, rgba(0, 0, 0, .1) 0 14px 14px;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .button-4 {
    padding: 20px 31px;
  }
}

.button-5 {
  --c: #fff;
  background: linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p,100%)/300% no-repeat,
    var(--accent);
  color: #0000;
  border: none;
  transform: perspective(500px) rotateY(calc(20deg*var(--_i,-1)));
  text-shadow: calc(var(--_i,-1)* 0.08em) -.01em 0   var(--c),
    calc(var(--_i,-1)*-0.08em)  .01em 2px #0004;
  outline-offset: .1em;
  transition: 0.3s;
  margin: 0 20px;
  display: inline-block;
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  padding: 14px 20px;
}

.button-5:hover,
.button-5:focus-visible {
  --_p: 0%;
  --_i: 1;
}

.button-5:active {
  text-shadow: none;
  color: var(--c);
  box-shadow: inset 0 0 9e9q #0005;
  transition: 0s;
}
