
html {

    scroll-behavior: smooth;

    font-family: 'Raleway', sans-serif;
    background-color: var(--bg);
    color: var(--white);

    /*color*/
    --white: #fff;
    --bg: #212224;
    --text: #D4D7DE;    
    --price: #FF813B;
    --border-color: #B2FA66;
    --bg-light: #2C2E32;
    --green-gradient: linear-gradient(92deg, #B2FA66 2.87%, #79FDE0 95.62%);
    --btn-text: #01301C;
    --divider: #42454A;

    /*radius*/
    --radius: 20px;
    
    /*margin*/
    --section-bottom: 110px; 
    --section-top: 90px; 

    /*fonts*/
    --light: 300;
    --medium: 600;
    --bold: 800;

    overflow-x: hidden;
}

section {
  margin-bottom: var(--section-bottom);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s;
}

h1 {
  font-size: calc(32px + 32 * (100vw / 1920));
  font-weight: var(--bold);
}

h2 {
  font-size: calc(32px + 32 * (100vw / 1920));
  font-weight: var(--medium);
  margin-bottom: 0;
  margin-top: 0;
}

h3 {
  font-size: calc(32px + 8 * (100vw / 1920));
  font-weight: var(--medium);
  margin-bottom: 0;
  margin-top: 0;
}

h4 {
  font-weight: var(--medium);
  margin-bottom: 0;
  font-size: 18px;
}

p {
  color: var(--text);
  line-height: 24px;
  font-weight: var(--light);
  font-variant-numeric: lining-nums;
}

.h2-description {
  font-size: calc(15px + 10 * (100vw / 1920));
  font-weight: var(--light);
  margin-bottom: 50px;
  line-height: 140%;
}

.h3-description {
  font-size: calc(21px + 2 * (100vw / 1920));
  font-weight: var(--light);
}

hr {
  margin-bottom: 20px;
  border-color: #8a8988;
  border-bottom: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 999;
  display: none;
}


.menu-close {
  height: 40px;
  width: 40px;
  background: red;
  display: block;
}

.menu .container {
  background: var(--white);
}


.popup {
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 999;
  display: none;
  backdrop-filter: blur(5px);
}

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

.popup-close {
  height: 40px;
  width: 40px;
  display: block;
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  margin-bottom: 80px;
}

.popup-close-menu {
  display: none;
}

.popup-close:after {
  content: "";
  height: 40px;
  width: 2px;
  background: var(--green-gradient);
  display: block;
  position: absolute;
  transform: rotate(45deg);
  left: 20px;
  transition: all 0.4s ease-in-out
}

.popup-close:before {
  content: "";
  height: 40px;
  width: 2px;
  background: var(--green-gradient);
  display: block;
  position: absolute;
  transform: rotate(-45deg);
  left: 20px;
  transition: all 0.4s ease-in-out;
}

.popup-close:hover.popup-close:before   {
  transform: rotate(-90deg);
}

.popup-close:hover.popup-close:after   {
  transform: rotate(90deg);
}

.popup .container {
  background: var(--bg);
  padding: 80px;
  text-align: center;
  border-radius: var(--radius);
  max-width: 800px;
}

form {
  display: flex;
  gap: 20px;
  justify-content: center;
}

input {
  outline: none;
  background: transparent;
  border: 1px solid var(--divider);
  height: 60px;
  color: var(--white);
  border-radius: var(--radius);
  padding: 0 20px;
  width: 280px;
  box-sizing: border-box;
}

button {
  border: none;
  cursor: pointer;
  width: 280px;
  box-sizing: border-box;
}

/*--------------------------------------------*/

.header {
    display: flex;
    justify-content: center;
    z-index: 999;
    position: relative;
}

header {
    background-color: var(--bg-light);
    min-width: 90%;
    margin:  40px auto;
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    transition: all 0.4s;
}

.header_scrolled {
  min-width: 100%;
  margin:  0;
  border-radius: 0px;
  box-sizing: border-box;
}

.logo {
  max-width: 150px;
}

nav a:hover {
  color: var(--border-color);
}

nav a::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--border-color);
  width: 0%;
  transition: all 0.4s ease-in-out;
}

nav a:hover::after {
  width: 100%;
}

.navigation {
    display: flex;
    align-items: center;
}

.navigation ul {
    display: flex;
    margin-right: 20px;
}

.navigation li {
    list-style: none;
    margin: 0 15px;
    color: var(--white);
    white-space: nowrap
}

.btn-outline {
    border: 1px solid;
    border-color: var(--border-color);
    display: block;
    height: 60px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--border-color);
    font-weight: 800;
    line-height: 60px;
    background: var(--bg);
    padding: 0 40px;
    white-space: nowrap;
    transition: all 0.4s ease-in-out;
}

.btn-outline:hover {
  background: var(--green-gradient);
  color: var(--btn-text);
}

.btn-bright {
    display: block;
    height: 60px;
    max-width: max-content;
    border-radius: var(--radius);
    text-align: center;
    color: var(--btn-text);
    font-weight: 800;
    line-height: 60px;
    padding: 0 40px;
    background: var(--green-gradient);
    white-space: nowrap;
    transition: all 0.4s ease-in-out;
}

.btn-bright:hover {
  box-shadow: 0px 5px 25px 0px rgba(151, 252, 162, 0.45);
}

.burger {
  width: 50px;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.burger-line {
  width: 34px;
  height: 2px;
  background: var(--green-gradient);
  border-radius: 10px;
  margin-left: auto;
  transition: all 0.4s;
}

.burger:hover  .burger-line:nth-child(2n) {
  width: 25px;
  margin-left: auto;
}

.hidden {
  display: none;
}

h1 span {
  background: linear-gradient(90deg, #D6FFAB 66.33%, #B1FFEE 90.13%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h1-desription {
  font-size: 28px;
  font-size: calc(16px + 24 * (100vw / 1920));
  font-weight: var(--medium);
  line-height: inherit;
}

.h1-desription span{
  background: linear-gradient(90deg, #D6FFAB 66.33%, #B1FFEE 90.13%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sale-price {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.price-old {
  font-size: calc(21px + 21*(100vw / 1920));
  text-decoration-line: line-through;
  color: var(--text);
  margin: 0;
}

.price-new {
  font-weight: var(--bold);
  color: var(--white);
  font-size: calc(28px + 28*(100vw / 1920));
  color: #FF813B;
  margin: 0;
}

.first-screen {
  display: flex;
  justify-content: space-between;
  height: 85vh;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
}

.first-screen-left {
  width: 42%;
}

.first-screen-right {
  position: relative;
  width: 420px;
  height: 480px;
}

.fs-img-mob {
  display: none;
}

.fs-img {
  position: absolute;
}

.fs-img-message {
  top: 70%;
}

.fs-img-idea {
  top: 14%;
  left: 63%;
}

.fs-img-flag {
  top: 0;
  left: 25%;
  opacity: 0;
  animation: animation-flaq 1s ease-out forwards 6s;
}

.fs-img-wallet {
  top: 55%;
  left: 85%;
}

.fs-img-step1 {
  top: 75%;
  left: 45%;
}

.fs-img-step2 {
  top: 59%;
  left: 34%;
}

.fs-img-step3 {
  top: 45%;
  left: 25%;
}

.fs-img-step4 {
  top: 32%;
  left: 18%;
}

.fs-img-step5 {
  top: 19%;
  left: 10%;
}

.fs-img-stephuman-left1 {
  top: 86%;
  left: 58%;
  animation: animation-step 1s ease-out forwards;
}

.fs-img-stephuman-right1 {
  top: 65%;
  left: 55%;
  opacity: 0;
  animation: animation-step 1s ease-out forwards 1s;
}

.fs-img-stephuman-left2 {
  top: 54%;
  left: 36%;
  opacity: 0;
  animation: animation-step 1s ease-out forwards 2s;
}

.fs-img-stephuman-right2 {
  top: 36%;
  left: 37%;
  opacity: 0;
  animation: animation-step 1s ease-out forwards 3s;
}

.fs-img-stephuman-left3 {
  top: 27%;
  left: 17%;
  transform: scale(0.9);
  opacity: 0;
  animation: animation-step 1s ease-out forwards 4s;
}

.fs-img-stephuman-right3 {
  top: 22%;
  left: 28%;
  transform: scale(0.9);
  opacity: 0;
  animation: animation-step 1s ease-out forwards 5s;
}

@keyframes animation-step {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes animation-flaq {
  0% {
    top: -5%;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

.about {
  border-radius: 20px;
  background: rgba(44, 46, 50, 0.40);
  backdrop-filter: blur(7.5px);
  padding: 60px;
  box-sizing: border-box;
}

.about-all {
  display: flex;
  gap: 100px;
}

.whom-all {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  margin-bottom: 80px;
  position: relative;
  background: rgba(44, 46, 50, 0.40);
  backdrop-filter: blur(7.5px);
  z-index: 1;
}

.whom-one {
  width: 33.3%;
  padding: 30px;
  box-sizing: border-box;
}

.whom-one:nth-child(1),
.whom-one:nth-child(2),
.whom-one:nth-child(4),
.whom-one:nth-child(5),
.whom-one:nth-child(7),
.whom-one:nth-child(8)  {
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.whom-one:nth-child(3),
.whom-one:nth-child(6) {
  border-bottom: 1px solid var(--divider);
}

.whom-one:nth-child(7),
.whom-one:nth-child(8)  {
  border-bottom: none;
}

.sale-block {
  padding: 50px;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  display: flex;
  gap: 50px;
  position: relative;
  background: rgba(44, 46, 50, 0.40);
  backdrop-filter: blur(7.5px);
}

.sale-block-img {
  width: 70%;
}

.sale-block-img img{
  width: 100%;
}


.why {
    border-radius: 20px;
    background: rgba(44, 46, 50, 0.40);
    backdrop-filter: blur(7.5px);
    padding: 60px;
    box-sizing: border-box;
  }

.why-all {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}
  
  .why-one {
    width: 30%;
}

.program {
    display: flex;
    gap: 150px;
}

.program .h2-description {
    margin-bottom: 40px;
}

.program {
    position: relative;
}

.program-cta {
    position: sticky;
    top: 120px;
    max-width: 50%;
    height: 200px;
    background: var(--bg);
    z-index: 2;
}

.program-day {
  color: var(--divider);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Raleway;
  font-size: 21px;
  font-style: normal;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}


.program-day::before {
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    background: var(--green-gradient);
    position: absolute;
    left: -100px;
    border-radius: 100px;
    z-index: 1;
}

.program-list-all {
    position: relative;
}

.program-list-all:before {
    content: "";
    display: block;
    position: absolute;
    left: -91px;
    top: 25px;
    height: calc(100% - 91px);
    width: 1px;
    background: var(--divider);
}

.program-list-one {
    margin-bottom: 60px;
    position: relative;
}

.program-list-one:last-child:before {
  background: var(--bg);
  content: "";
  display: block;
  height: 100%;
  width: 50px;
  position: absolute;
  left: -100px;
  top: 21px;
}

.program-text {
    margin-left: 0;
    padding-left: 0;
}

.program-text li {
    list-style: none;
    color: var(--text);
    margin: 12px 0;
}

.test {
    height: 800px;
    background: #fff;
}

.understand {
  text-align: center;
  position: relative;
}

.understand h2{
  margin-bottom: 60px;
}

.understand-all {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
  gap: 40px;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}

.understand-one {
  width: 30%;
  padding: 50px 30px;
  box-sizing: border-box;
  border-radius: var(--radius);
  background: rgba(44, 46, 50, 0.40);
  backdrop-filter: blur(7.5px);
}

.me {
  border-radius: var(--radius);
  background: rgba(44, 46, 50, 0.40);
  backdrop-filter: blur(7.5px);
  padding: 60px;
  box-sizing: border-box;
}

.me-all {
  display: flex;
  gap: 100px;
}

.me-text p:first-child {
  margin-top: 0;
}

.me-text-bright {
  padding: 30px 20px 20px 30px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.me-text-bright p{
  font-weight: 600;
  color: var(--white);
}

.me-img img{
  border-radius: 25px;
}

.testimonial {
  margin: 0 auto;
}

.testimonial h2,
.testimonial .h2-description {
  text-align: center;
}



.swiper {
  max-width: 1280px;
  cursor: pointer;
  padding: 40px;
}

.swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  background-color: var(--white);
  transition: all 0.4s;
}

.swiper-pagination-bullet-active {
  background-color: var(--border-color);
  width: 24px;
  border-radius: 11px;
}

.swiper-slider .h2-description {
  margin-bottom: 0;
}

.testimonial-one {
  border-radius: var(--radius);
  background: rgba(44, 46, 50, 0.40);
  backdrop-filter: blur(7.5px);
  padding: 40px 40px 20px 40px;
  box-sizing: border-box;
}

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

.testimonial-avtor-about {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-avtor-about p,
.testimonial-avtor-about h4 {
  margin: 0;
}

.testimonial-avtor img{
  width: 90px;
  height: 90px;
}

.garantie {
  position: relative;
}

.testimonial hr {
  margin-bottom: 20px;
}

.faq-all {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 150px;
}

.faq-one {
  width: 48%;
  border-radius: var(--radius);
  background: rgba(44, 46, 50, 0.40);
  backdrop-filter: blur(7.5px);
  padding: 10px 30px;
  box-sizing: border-box;
}

.faq-bright{
  border: 1px solid #42454A;
  background:  #222226;
  display: flex;
  align-items: center;
}

.faq-bright h4 {
  margin-bottom: 20px;
  font-size: 21px;
}

footer {
  background: var(--bg-light);
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius);
  max-width: 90%;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.develompent {
  display: flex;
  align-items: center;
  gap: 8px;
}


footer a::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--border-color);
  width: 0%;
  transition: all 0.4s ease-in-out;
}

footer a:hover {
  color: var(--border-color);
}

footer a:hover::after {
  width: 100%;
}

.after-footer {
  margin: 20px 40px;
  text-align: center;
  font-size: 14px;
}



/*-------------------decoration-------------------------*/

.first-screen:after {
  content: "";
  height: 227px;
  width: 227px;
  background-image: url(../img/circle.png);
  background-size: 227px;
  position: absolute;
  right: -150px;
  bottom: -200px;
  z-index: -999;
}

.first-screen:before {
  content: "";
  height: 200px;
  width: 227px;
  background-image: url(../img/triangle.png);
  background-size: 227px;
  position: absolute;
  left: -320px;
  top: 150px;
  z-index: -999;
}

.whom-all:after {
  content: "";
  height: 150px;
  width: 150px;
  background-image: url(../img/circle.png);
  background-size: 150px;
  position: absolute;
  left: -100px;
  bottom: -40px;
  z-index: -999;
}


.why-all:after {
  content: "";
  height: 380px;
  width: 380px;
  background-image: url(../img/bomb.png);
  background-size: 380px;
  position: absolute;
  right: -100px;
  bottom: -200px;
  z-index: -999;
}

.understand:after {
  content: "";
  height: 380px;
  width: 380px;
  background-image: url(../img/gym.png);
  background-size: 380px;
  position: absolute;
  right: -200px;
  top: 0px;
  z-index: -999;
}

.garantie:after {
  content: "";
  height: 380px;
  width: 380px;
  background-image: url(../img/bomb.png);
  background-size: 380px;
  position: absolute;
  left: -200px;
  top: -100px;
  z-index: -999;
}

.section-succcess {
  height: 100vh;
  margin-bottom: 0;
}

.succcess-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
  justify-content: center;
  text-align: center;
}

.succcess-page h4{
  margin-top: 0;
}

.succcess-page h1{
  margin-bottom: 0;
}

.offerta-page h4{
    font-size: 24px;
}

.offerta-page p{
  font-size: 18px;
  line-height: 150%;
}

.offerta-page a {
  color: var(--border-color);
  display: inline-block;
}


.offerta-page a::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--border-color);
  width: 0%;
  transition: all 0.4s ease-in-out;
}

.offerta-page a:hover::after {
  width: 100%;
}



/*-------------------decoration-------------------------*/
