﻿@import url('../font/font.css');

:root {
  --font-main: 'Museo Sans Cyrl', -apple-system, BlinkMacSystemFont, sans-serif;
  --title-space: 130px;
  --container-padding: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: var(--font-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin: 0;
  font-family: var(--font-main);
  background: #F7F8FA;
}

a {
  text-decoration: none;
  display: block;
  color: #fff;
}




body._no-scroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
}


header {
  height: 453px;
  width: auto;
  position: relative;
  overflow: hidden;

  background: linear-gradient(165deg,
      #2b2c91 0%,
      #2a4a9b 25%,
      #1f74b2 50%,
      #179dbf 75%,
      #1bbac7 100%);

}


button {
  -webkit-tap-highlight-color: transparent;
}


* {
  -webkit-tap-highlight-color: transparent;
}




.arrow2 {
  display: none;
}

.header-menu {
  display: flex;
  align-items: flex-start;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 60px;
  box-sizing: border-box;
  width: 100%;
}

a.phone-link {
  color: white;
  text-decoration: none;
  user-select: none;
  font-weight: 900;
  font-size: 20px;
}

.nav-logo {
  flex: 1;
}

.nav-logo img {
  height: 56px;
}

.nav-right {
  display: flex;
  
  gap: 70px;
}

.nav-menu {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  white-space: nowrap;
}

.nav-menu a {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;

  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(.45, 1, .4, 1);
}


.nav-menu a:hover::after,
.nav-menu a:focus::after {
  transform: scaleX(1);
}

.nav-phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nav-phone img {
  height: 20px;
}

.nav-phone span {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes phone-ring {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-18deg);
  }

  20% {
    transform: rotate(18deg);
  }

  30% {
    transform: rotate(-12deg);
  }

  40% {
    transform: rotate(12deg);
  }

  50% {
    transform: rotate(-8deg);
  }

  60% {
    transform: rotate(8deg);
  }

  70% {
    transform: rotate(-4deg);
  }

  80% {
    transform: rotate(4deg);
  }

  90% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.nav-phone:hover img,
.phone-link:hover~img,
.nav-phone:focus-within img {
  animation: phone-ring 0.7s cubic-bezier(.36, .07, .19, .97) both;
}



.nav-schedule {
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
}




.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title__big {
  color: #fff;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  margin-left: calc(-1 * var(--title-space));
}

.hero-title__big {
  animation: floatY2 8.1s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-title__small {
  color: #fff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  margin-left: var(--title-space);
}

.hero-title__small {
  animation: floatX 20.0s ease-in-out infinite;
  animation-delay: 1s;
  opacity: 1 !important;
}


#the_girl {
  position: relative;
  

  top: -362px;

  transform: translateX(-150%);
  animation: sliceIn 2.2s cubic-bezier(0.05, 0.1, 0.1, 1) forwards;
}

@keyframes sliceIn {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


.hero-btn {
  width: 296px;
  height: 54px;
  background: #FFDE00;
  border: none;
  border-radius: 10px;
  
  color: #1C1C1C;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.85px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #FFCF10;
}




.promo-girl {
  position: absolute;
  left: calc(50% - 600px);
  top: 56px;

}

.promo-gift {
  position: absolute;
  left: calc(50% + 500px);
  top: 294px;
  z-index: 3;
}



.promo-card1 {
  position: absolute;
  left: calc(50% + 250px);
  top: 100px;
  z-index: 2;

}

.promo-card1 img {
  width: 251px;
  height: 215px;
}

.promo-card2 {
  position: absolute;
  left: calc(50% + 330px);
  top: 200px;
  z-index: 1;

}

.promo-card2 img {
  width: 322px;
  height: 211px;
}


.promo-shadow2 {
  position: absolute;
  left: calc(50% + 330px);
  top: 370px;
  z-index: 0;
  opacity: 0.8;


}

.promo-shadow2 img {


  filter: blur(5px);
}

.promo-girl img {

  width: 368px;
  height: 397px;

}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

.promo-card1 {
  animation: floatY2 3.1s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes floatY2 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.promo-card1 {
  animation: floatY 6.2s ease-in-out infinite;
  animation-delay: 0s;
}

.promo-card2 {
  animation: floatY2 6.2s ease-in-out infinite;
  animation-delay: 0s;
}

@keyframes floatX {
  0% {
    transform: translateX(0);
    opacity: 0.9;
  }

  50% {
    transform: translateX(-10px);
    opacity: 0.7;
  }

  100% {
    transform: translateX(0);
    opacity: 0.9;
  }
}

.promo-shadow2 {
  animation: floatX 4.2s ease-in-out infinite;
  animation-delay: 1s;
}

.promo-shadow2 {
  animation: floatX 4.2s ease-in-out infinite;
  animation-delay: 1s;
}




video {
  position: absolute;
  left: calc(50% - 415px);
  top: 161px;
  z-index: 10;
  width: 94px;
  

  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 90%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}


.promo-art-arrow {
  position: absolute;
  left: calc(50% + 180px);
  top: 150px;
  z-index: 11;

}



#card1 {
  transform: translate(145%, 45%);
  animation: sliceIn2 1.2s cubic-bezier(0.05, 0.1, 0.1, 1) forwards;
}

@keyframes sliceIn2 {
  0% {
    transform: translate(145%, 45%);
  }

  100% {
    transform: translate(0, 0);
  }
}


#card2 {
  transform: translate(145%, 0);
  animation: sliceIn3 2.2s cubic-bezier(0.05, 0.1, 0.1, 1) forwards;
}

@keyframes sliceIn3 {
  0% {
    transform: translate(145%, 0);
  }

  100% {
    transform: translate(0, 0);
  }
}

#shadow,
#btn1 {
  transform: translate(105%, 0);
  animation: sliceIn4 2.2s cubic-bezier(0.05, 0.1, 0.1, 1) forwards;
}

@keyframes sliceIn4 {
  0% {
    transform: translate(105%, 0);
  }

  100% {
    transform: translate(0, 0);
  }
}

#gift {
  transform: translate(20%, 50px) scale(1);
  animation: sliceIn5 0.8s cubic-bezier(0.05, 0.1, 0.1, 1) forwards;
  animation-delay: 1.0s;
  opacity: 0;

  
}

#gift img {
  width: 136px;
  height: 144px;
}

@keyframes sliceIn5 {
  0% {
    transform: translate(20%, 50px) scale(0.4);
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}


#hero {
  transform: translate(20%, 50px) scale(1);
  animation: sliceIn6 0.8s cubic-bezier(0.05, 0.1, 0.1, 1) forwards;
  
  opacity: 0;
  
}

@keyframes sliceIn6 {
  0% {
    transform: translate(20%, 50px) scale(0.4);
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

#arrow {
  transform: translate(-20%, 0px) scale(1);
  animation: sliceIn6 0.4s cubic-bezier(0.05, 0.1, 0.1, 1) forwards;
  animation-delay: 2.0s;
  opacity: 0;
  
}

@keyframes sliceIn6 {
  0% {
    transform: translate(-20%, 0px) scale(0.4);
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

#title2 {
  transform: translate(-20%, 0px) scale(1);
  animation: sliceIn6 0.4s cubic-bezier(0.05, 0.1, 0.1, 1) forwards;
  animation-delay: 0.6s;
  opacity: 0;
  
}

@keyframes sliceIn6 {
  0% {
    transform: translate(-20%, 0px) scale(0.4);
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}




h2 {
  color: #0070C0;
  text-align: center;

  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: var(--Headline-Medium-Line-Height, 36px);
}

#days {
  margin-top: 80px;
}

#days-container {
  width: 1320px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px auto 0 auto;
}

.day-card {
  position: relative;
  width: 203px;
  height: 308px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.05));
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}




.day-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220.32px;
  height: 212.26px;
  background-image: url('../img/cards/bg_bottom.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  pointer-events: none;
  z-index: 1;
}

.day-card img {
  width: 100%;
  height: 308px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.day-card:hover img {
  transform: scale(1.15);
}

.day-card p {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  line-height: 48px;

  text-align: center;
  margin: 0;
  padding: 0 16px;
  z-index: 10;
  top: -60px;
  color: #3D3D47;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;


}



@keyframes zoomInEase {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    border-radius: 90px;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-radius: 20px;
  }
}


.day-card {


  transform-origin: center center;
  opacity: 0;
  border-radius: 20px;
}

.day-card.animate {
  animation: zoomInEase 0.7s ease-out forwards;
  animation-delay: var(--d, 0s);
}



.day-card.noanimate {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-radius: 20px;
  animation-delay: 0;
}







#info-blocks {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 424px;
}

.info-wrapper h3 {
  color: #0070C0;
  text-align: center;

  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  
  margin-bottom: 30px;
}

.nav-right-mob {
  display: none;
}


.tablet_port,
.alt_title {
  display: none;
}

.info-card {
  width: 100%;
  height: 511px;
  background-color: #fff;
  border-radius: 20px;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.05));
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;

  margin-bottom: 30px;
}

.info-card.animate {
  animation: zoomInEase 0.7s ease-out forwards;
}

.info-card.noanimate {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-radius: 20px;
}





.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  
  scale: 1.0;
  will-change: opacity, transform;
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    scale 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}


.slider-image.visible {
  opacity: 1;
  z-index: 2;
}

.slider-image:hover {
  opacity: 1;
  scale: 1.2;
}



.country-name {
  position: absolute;
  width: 100%;
  top: 20px;
  color: #FFF;
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  z-index: 3;
  
  transition: none;
  will-change: transform, opacity;
}

.price-tag {
  position: absolute;
  width: 100%;
  top: 73px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  z-index: 3;
  
  transition: none;
  will-change: transform, opacity;
}




.country-spinner-wrapper {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 4;
  width: 29px;
  height: 29px;
  opacity: 0.8;
}

.country-spinner {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  
}

.spinner-circle {
  transform-origin: 14.5px 14.5px;
  transition: stroke-dashoffset 0.1s ease;
  will-change: stroke-dashoffset;
  animation-fill-mode: none;
}


.country-arrow {
  position: absolute;
  top: 9.5%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  opacity: 1.0;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
}

.country-arrow-left {
  left: 20px;
}

.country-arrow-right {
  right: 20px;
}


.country-arrow:hover {
  opacity: 1 !important;
  
}

.country-arrow:active {
  
  transform: translateY(-50%) scale(1.00);
  
}


.country-arrow svg {
  width: 100%;
  height: 100%;
  
}


@keyframes countrySpinnerRotate {
  0% {
    stroke-dashoffset: 63.66;
    
  }

  99% {
    stroke-dashoffset: 0;
    
  }

  100% {
    stroke-dashoffset: 63.66;
    
  }
}

@keyframes countrySpinnerSlow {
  0% {
    stroke-dashoffset: 0;
    animation-timing-function: ease-out;
  }

  100% {
    stroke-dashoffset: -6.366;
    
    animation-timing-function: ease-in;
  }
}

@keyframes countrySpinnerAccelerate {
  0% {
    stroke-dashoffset: -6.366;
    animation-timing-function: ease-in;
  }

  100% {
    stroke-dashoffset: -70.026;
    
    animation-timing-function: ease-out;
  }
}


.country-spinner-wrapper:hover {
  opacity: 1;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

.info-card {
  overflow: hidden;

}



.card-wrap.animate {
  opacity: 0;
  transform: translateX(-250px);
  animation: fadeIn 0.6s ease-out forwards;

}

.card-wrap.noanimate {
  opacity: 1;
  transform: translateX(0);

}


@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



.hand_card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hand_card {
  display: block;
  pointer-events: none;
  width: 380px;
  height: 282px;
  transform: translate(0, 0) scale(1) rotate(0deg);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.07, .62, .25, 1);
  will-change: transform;
}




#hand_card_offer:hover .hand_card {
  transform: translate(-130px, 35px) scale(1.55) rotate(13deg);

}

#hand_card_offer:hover .cont3 {
  margin-top: -10px;

}


.cont3 {
  margin-top: -50px;
  padding: 0 40px;
  transition: margin-top 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cont3_text {
  color: #3D3D47;

  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.21px;
}

.cont3_row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}


.form-card {

  background: linear-gradient(180deg,
      #1F4B9E 0%,
      #0E6FB2 33%,
      #2C9AC3 66%,
      #53B4B5 100%);


}





.step {
  width: 100%;
  height: 100%;
  padding: 40px;


}

.step p {
  color: #FFF;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.step .sub-control {
  opacity: 0.75;
  padding-bottom: 20px;
}



.btn-group {
  padding: 10px 0 20px 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}


.btn-group button.active {
  border-radius: 10px;
  border: 1px solid #DCBF00;
  background: #FFDE00;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  width: calc(50% - 5px);
  height: 50px;
  flex-shrink: 0;

  color: #3D3D47;
  text-align: center;

  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

}

.btn-group button.active::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 13px;
  background: url('../img/icons/vote.svg') no-repeat center / contain;
  margin-right: 8px;
  vertical-align: middle;
}


.btn-group button:not(.active) {
  border-radius: 10px;
  border: 1px solid #EAEBED;

  background: #FFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  width: calc(50% - 5px);
  height: 50px;
  flex-shrink: 0;

  color: #3D3D47;
  text-align: center;

  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;

}

.step input,
.step textarea {
  margin: 10px 0 5px 0;
  width: 100%;
  height: 50px;
  color: #3D3D47;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 10px;
  border: 0;
  padding: 0 40px 0 20px;
}
.step textarea {
  padding: 14px 40px 10px 20px;
    transition: none; 
  resize:none;
  
}


.step textarea.one-line {
  
  overflow:hidden;
  text-overflow:ellipsis;
  resize:none;
  scrollbar-width:none; 
  white-space:nowrap;
 

}


.step textarea.multi-line {
  white-space: normal;
  overflow: auto;

}

.step textarea.one-line::-webkit-scrollbar{ width:0; height:0; }

.step input:focus,
.step textarea:focus {
  font-weight: 500;
  letter-spacing: 1.00px;

}

.step input::placeholder,
.step textarea::placeholder  {
  color: #A1A3AF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.step input:focus, 
  .step textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
}


.amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 45px;
}

.amount_btn {
  border-radius: 10px;
  border: 1px solid #EAEBED;
  background: #FFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  height: 50px;
  color: #3D3D47;
  text-align: center;

  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.75px;
  cursor: pointer;
  transition: background 0.3s ease;
  
}

.amount_btn:hover {
  background: #FFFBDF;

}

.next-btn.full {
  position: relative;
  background: #FFDE00;
  height: 50px;
  width: 100%;
  border: 0;
  border-radius: 10px;

  color: #1C1C1C;
  text-align: center;

  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.85px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 5;

}


.next-btn.full:hover {
  background: #FFCF10;
}


.next-btn.full {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s, visibility 0s linear 0.5s;
}

.next-btn.full:not(.disabled) {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}


.next-btn.disabled {
  
  
  
  visibility: hidden;
  transition-delay: 0.1s;

}


.buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.back-btn {
  width: 50px;
  height: 50px;
  border: 2px solid white;
  box-sizing: border-box;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
}

.back-btn img {
  width: 10.28px;
  height: 18.19px;
  filter: brightness(0) invert(1);
  display: block;
}


.next-btn.full.part {
  flex: 1;
}


.inp {
  position: relative;
  height: 70px;
}



.input-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  z-index: 30;
  width: 24px;
  cursor: pointer;
  opacity: 0.35;
}

.step3 input {
  margin-bottom: 10px;
}

.step3 .buttons {
  margin-top: 26px;

}



.palm {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0) scale(0.5);
  transition: transform 0.65s ease;
  width: 388px;
  height: 111px;
}

.palm.slide-down {
  transform: translate(-50%, 80px) scale(0.5);
  
}

.form-card:hover .palm {
  transform: translate(-70%, -5px) scale(0.7);
  
}

.form-card:hover .palm.slide-down {
  transform: translate(-50%, 80px) scale(0.7);
  
}





.designs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 0 20px 0;
}

.designs img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}



.designs img.active {
  outline: 3px solid white;
  outline-offset: -3px;
}

.step.step4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.step p.form-final {
  font-size: 26px;
  text-align: center;
}



#FAQ {
  margin-top: 80px;
  width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 200px;

}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 0 20px #0000000d;
  width: 1320px;

  transition: all 0.4s ease;
  cursor: pointer;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  color: #0070C0;
  margin-top: 60px;
  margin-bottom: 60px;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.faq.animate {
  margin-top: 40px;
  transition: margin 0.5s ease;
}

.faq.noanimate {
  margin-top: 40px;
}

.faq-question.animate {
  margin: 0;
  transition: margin 0.5s ease;
}

.faq-question.noanimate {
  margin: 0;

}

.faq-icon {
  transition: transform 0.3s ease;
  width: 22px;
  height: 14px;
}

.faq-icon.rotated {
  transform: rotate(90deg);
}

.faq-title {
  flex: 1;
}

.faq-answer-wrapper {
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer-wrapper {
  opacity: 1;
}

.faq-icon {
  transition: transform 0.8s ease;
}

.faq-icon.rotated {
  transform: rotate(90deg);
}

.faq-answer p {
  margin: 20px 30px 10px 30px;
  color: #3D3D47;

  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

}

.faq-item:hover {
  width: 1260px;
  margin-left: 30px;
}




.footer {
  margin-top: 280px;
  position: relative;
  display: flex;
  width: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;

}


footer {
  overflow: hidden;
}




.foot-img {
  position: absolute;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -30px;
  transition: margin 0.5s ease-in-out;
  transition: margin 0.5s cubic-bezier(0.65, 0, 0.35, 1);

  width: 1700px;
  height: auto;

  z-index: -1;


}

.left,
.right {
  flex: 1;
  height: 150px;
}


.foot-img.animate {
  margin-top: -230px;
  animation: zFix 0s forwards;
  animation-delay: 0.35s;

}

.foot-img.noanimate {
  margin-top: -230px;

}

@keyframes zFix {
  to {
    z-index: 2;
  }
}

.left {
  background: #005BBF;
}

.right {
  background: #F8ED08;
}


.center {
  width: auto;
  
  justify-content: center;
  width: 1700px;
  height: 150px;
  background: linear-gradient(90deg, #005BBF, #006DD3, #109DE4, #4AC8BE, #ADE15B, #F8ED08);

}

.sub-center {
  display: flex;
  justify-content: center;

}

.copyright {
  
  height: 54px;
  background: #1C1C1C;
  background: linear-gradient(90deg, #0050AA, #0061BE, #108DCC, #46BDB0, #9FD457, #E2DE0C);
  display: flex;
  justify-content: center;
  align-items: center;

  color: #FFF;
  text-align: center;

  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}


.footer_content {
  position: relative;
}

.footer_bar {
  position: absolute;
  top: 300px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1320px;
  height: 120px;
  
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  color: white;
}

.footer_bar_center {
  margin-right: 100px;
  
}


.main-nav.bar {
  margin-top: -60px;
}


[x-cloak] {
  display: none !important;
}

.promo-shadow2.shadow1 {
  filter: blur(8px);
  opacity: 0.8;
  margin-left: -100px;
  animation: sliceInShadow 1.6s cubic-bezier(0.05, 0.1, 0.1, 1) forwards;

}

@keyframes sliceInShadow {
  from {
    
    transform: translateX(200px);
    
  }

  to {
    
    transform: translateX(0);
  }
}

.promo-shadow2 img {
  mix-blend-mode: darken;
  opacity: 0.65;
  
}

.mob_foot {
  display: none;
}



.container {
  overflow-x: hidden;
}

.adr_dn {
 height: auto;
}

.spaces  {

    flex: 1; 
  min-height: 0;
}

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