@import url('https://fonts.cdnfonts.com/css/outfit?styles=138058,138054,170154,138062,138055,138057,138059,138060,138061,138056');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  list-style-type: none;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  color: #1d1e1c;
}

body{
  background: #fffff6;
}

.wrapper {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}

.header{
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding: 26px 0;
  z-index: 10;
}

.header.scroll{
  backdrop-filter: blur(5px);
}

.header__content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav{
  display: flex;
  gap: 40px;
}

.nav__el{
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  transition: .3s;
}

.nav__el:hover{
  color: #bcff33;
}

.main{
  padding: 145px 0 38px;
}

.main-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main__title{
  max-width: 900px;
  font-weight: 900;
  font-size: 80px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
}

.main__title span{
  background-image: linear-gradient(to top, transparent 0%, #bcff33 0% 57%, transparent 35%);
}

.main__link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 355px;
  height: 78px;
  border-radius: 60px;
  background: #bcff33;
  transition: .3s;
  font-weight: 600;
  font-size: 24px;
  margin-top: 58px;
}

.main__link:hover{
  background: #1d1e1c;
  color: #fff;
}

.main__info-scroll{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  margin-top: 62px;
}

.animate-circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  white-space: nowrap;
  animation: move 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes move {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section-title{
  font-weight: 900;
  font-size: 68px;
  line-height: 154%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 56px;
}

.why-us{
  padding: 120px 0;
}

.why-us-info-list{
  display: flex;
  flex-wrap: wrap;
  gap: 51px;
}

.why-us-el{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: calc(100% / 3 - 102px / 3);
}

.why-us-el__i{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #bcff33;
}

.why-us-el__title{
  font-weight: 600;
  font-size: 32px;
  text-align: center;
}

.why-us-el__text{
  font-weight: 300;
  font-size: 28px;
  text-align: center;
  color: #1d1e1c;
}

.contact{
  padding: 120px 0;
}

.contact-list{
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.contact-el{
  width: calc(50% - 56px / 2);
  border: 1px solid rgba(29, 30, 28, 0.16);
  border-radius: 20px;
  background: #fff;
  padding: 46px;
  text-align: center;
}

.contact-el__title{
  display: inline;
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  color: #1d1e1c;
  background-image: linear-gradient(to top, transparent 0%, #bcff33 0% 57%, transparent 35%);
}

.contact-el__text{
  font-weight: 300;
  font-size: 28px;
  text-align: center;
  color: #1d1e1c;
  margin-top: 25px;
}

.contact-el__link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 263px;
  height: 63px;
  border-radius: 60px;
  color: #fff;
  background: #1d1e1c;
  transition: .3s;
  margin: 44px auto 0;
  font-weight: 600;
  font-size: 20px;
}

.contact-el__link:hover{
  background: #bcff33;
  color: #1d1e1c;
}

.footer{
  padding: 48px 0;
  border-top: 1px solid rgba(29, 30, 28, 0.15);
}

.footer__content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy{
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgba(29, 30, 28, 0.4);
}

.footer-privacy{
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgba(29, 30, 28, 0.4);
  transition: .3s;
}

.burger{
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 30, 28, 0.1);
  border-radius: 100px;
  width: 44px;
  height: 44px;
}

.nav-cross{
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 30, 28, 0.1);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}

@media (max-width: 1024px) {
  .why-us-el,
  .contact-el{
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer{
    margin-top: 32px;
  }

  .footer__content{
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .footer-copy{
    line-height: 143%;
  }

  .main__title{
    font-size: 58px;
    line-height: 117%;
    letter-spacing: -0.01em;
  }

  .header{
    padding: 10px 0;
  }

  .logo svg{
    width: 138px;
    height: 44px;
  }

  .burger,
  .nav-cross{
    display: flex;
  }

  .nav{
    width: 100%;
    height: 100vh;
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    align-items: center;
    transition: .3s;
    background: #fffff6;
    padding-top: 10px;
  }

  .nav.active{
    left: 0;
  }

  .main{
    padding: 111px 0 57px;
  }

  .section-title{
    font-size: 50px;
    line-height: 120%;
    margin-bottom: 32px;
  }

  .why-us-el__title{
    font-size: 30px;
  }

  .why-us-el__text{
    font-size: 24px;
    line-height: 117%;
  }

  .contact{
    padding: 48px 0;
  }

  .contact-el{
   padding: 24px;
  }

  .contact-el__title{
   font-size: 30px;
  }

}