* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: .2s;
  scroll-behavior: smooth;
}
*::after {
  transition: .2s;
}
.italianno-regular {
  font-family: "Italianno", serif;
  font-weight: 400;
  font-style: normal;
}


        body {
            font-family: "Inter", serif;
            margin: 0;
           
        }
       header {
         height: 100vh;
         position: relative;
         width: 100%;
         top: 0;
         left: 0;
       }
       header video {
        
        
         width: 100%;
         height: 100vh;
         pointer-events: none;
       }
       .video-cover {
         height: 100vh;
         width: 100vw;
         position: fixed;
         top: 0;
         left: 0;
       }
       .header-content {
         background: #00000052;
         height: 100vh;
         width: 100vw;
         position: fixed;
         top: 0;
         left: 0;
         display: flex;
         justify-content: center;
         align-items: center;
         flex-direction: column;
       }
       .header-content p {
         color: #daff99;
         font-weight: bold;
         font-size: 1.4em;
       }
       .header-content h1 {
         color: #fff;
         font-size: 6em;
       }
       .header-content h1 span {
         font-size: 2em;
       }
       
       
      
/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

/* Styling */
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: absolute;
  width: 90%;
  bottom: 1em;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slide {
    height: 100px;
    width: 250px;
    display: flex
;
    justify-content: center;
    align-items: center;
}
nav {
  height: 4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 3em;
}
nav .logo {
   color: #daff99;
}
nav ul {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 1.2em;
  list-style: none;
}
nav ul li a {
  color: #ffffffb3;
  font-weight: bold;
  text-decoration: none;
}
nav ul li a:hover {
  color: #fff;
}
nav .cta {
  color: #f0f0f0;
  border: 2px solid #f0f0f0;
  border-radius: 9999px;
  height: 3em;
  width: 10em;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
nav .cta:hover {
  background: #daff99; 
  color: #000;
}
.float {
      backdrop-filter: blur(21px);
    background-color: rgba(33, 74, 50, 0.5);
    max-width: 90%;
    width: 100%;
    border-radius: 41px;
    transform: none;
    transform-origin: 50% 50% 0px;
    top: 1.5em;
    left: 5%;
}

.body {
  background: #052d23;
  min-height: 200vh;
  padding: 3em;
  position: sticky;
  top: 0;
  border-radius: 2em 2em 0 0;
  color: #fff;
}
.selected-work {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.selected-work h2 {
  text-align: center;
}
.how-it-works {
  background: #fff;
  min-height: 50vh;
  border-radius: 2em;
  padding: 3em 4em;
  width: 100%;
  color: #000;
  margin-top: 10em;
}
.intro {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 15vw;
  text-align: center;
}
.intro p {
  color: #052d23;
  line-height: 2em;
  font-weight: 100 !important;
  max-width: 70%;
}
.intro h1 {
  font-size: 5em;
  text-align: center;
}
.intro span.italianno-regular {
  font-weight: 900;
  font-size: 1.2em;
}
.tag {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 9999px;
  padding: .5em 1em;
  width: auto;
  font-size: .8em;
}
.how-it-works h1 {
  font-size: 5em;
  text-align: center;
}
.line {
  background-color: #011a13;
    flex: 1 0 0px;
    height: 2px;
    overflow: hidden;
    position: relative;
    width: 1px;
}
.t-animated {
    transition: transform 0.2s linear;
    font-weight: 900;
    letter-spacing: -.1em;
        -webkit-text-stroke: 0em currentcolor;
}
.t-animated:hover {
  font-weight: 900 !important;
  display: inline-block;
      -webkit-text-stroke: .1em currentcolor;
}
.box-flex {
  display: flex;
  gap: 2em;
  margin-top: 5em;
}
.circle {
  height: 7em;
  width: 7em;
  border-radius: 50%;
  background: rgb(5, 45, 35);
  opacity: 0.3;
  transform: scale(0.5);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  margin-bottom: 1em;
}

.circle.visible {
  transform: scale(1);
  opacity: 1;
}

.box-flex .element:nth-child(2) .circle {
  height: 7em;
  width: 7em;
  border-radius: 50%;
  background: transparent;
  border: 2em solid #111;
}
.box-flex .element {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 3em;
  border-radius: 1em;
  text-align: left;
}
.box-flex .element h2 { 
  font-size: 2em;
  text-align: left;
  cursor: default;
}
.box-flex .element p { 
  line-height: 2em;
}
.box-flex .element:nth-child(1) {
  background: #daff99;
}
.box-flex .element:nth-child(2) {
  background: #dbd7ff;
}
.box-flex .element:nth-child(3) {
  background: #daeafd;
}
.numbering {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-slider {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2em;
  background-color: #ffebe1;
  height: 7em;
  border-radius: 1em;
}

.service-list {
  display: flex;
  animation: scrollLeft 30s linear infinite;
}
.service-list:hover {
   animation-play-state: paused;
}
.service-list span {
  padding: .5em 2rem;
  font-size: .9rem;
  white-space: nowrap;
  border: 1px solid #000;
  border-radius: 9999px;
  margin-right: 1em;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-80%);
  }
}
.case-study {
  margin-top: 5em;
}
.case-study h2 {
  text-align: center;
  margin-bottom: 2em;
}
.case-study .element {
  height: 34em;
  border-radius: 1em;
  background: #fff;
  color: #000;
  padding: 4em 2em;
  display: flex;
  gap: 2em;
  margin-bottom: 1em;
}
.case-study .element .text,
.case-study .element .thumbnail {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-study .element .thumbnail img {
  width: 100%;
  border-radius: 1em;
}
.case-study .element h1 {
 margin-bottom: 1em; 
}
.link-wrap {
    flex: 1;
    display: flex
;
}
.case-study .element a, .bare-link {
 color: #000;
 background: #f0f0f0;
 height: 4em;
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 text-decoration: none;
 align-self: end;
 border-radius: 9999px;
 gap: 1em;
}
.case-study .element .text p {
  font-weight: 100 !important;
  line-height: 2em;
}
.animated-arrow {
  overflow: hidden;
  height: auto;
  width: 0;
}
a:hover .animated-arrow {
  width: 2em;
}

.wishlist {
  margin-top: 6em;
  background: #ffebe1;
  border-radius: 1em;
  padding: 3em 2em;
  color: #222;
}
.wishlist h1 spn.italianno-regular {
  font-size: 2em;
}
.wishlist .intro p {
  color: #052d23;
  line-height: 2em;
}
.bare-link {
  margin-top: 2em;
}
.bare-link:hover {
  border: 2px solid #052d23;
}
.body .slider {
    margin-top: 5em;
    position: relative;
}
.pricing 
{
  background: #daff99;
  padding: 4em;
  padding-top: 8em;
  color: #001a13;
  border-radius: 1em;
}

.pricing-list {
  display: flex;
  gap: 2em;
  margin-top: 3em;
}
.pricing-list .element {
  padding-top: 2em;
  background: #fff;
  border: 1px solid #052d23;
  border-radius: 1em;
  width: 100%;
  color: #052d23;
}
.pricing-list .element .sub {
  padding: 2em;
}
.pricing-list .element:nth-child(2) {
 background: #dbd7ff; 
}
.pricing-list .element h2 {
 margin-bottom: .5em; 
}
.pricing-list .element h1 {
 margin-top: 1em;
 margin-bottom: .5em;
 font-weight: 900;
}
.info {
  opacity: .5;
  margin-bottom: .6em;
}
.pricing-list .element a {
 color: #052d23; 
 display: block;
 text-align: center;
}
.pricing-list .element a.subscribe {
  background: #052d23;
  color: #fff !important;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 9999px;
  margin-bottom: .4em;
  margin-top: 2em;
}
.what-you-get {
  border-top: 1px solid #052d23;
  border-radius: 1em 1em 0 0;
  padding: 2em;
}
.what-you-get ul {
    list-style: inside;
    list-style-type: square;
}
.what-you-get ul li {
    line-height: 2em;
}

.project-based {
  background: #fff;
  border-radius: 1em;
  border: 1px solid #052d23;
  padding: 2em;
  margin-top: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;
}
.project-based a {
  color: #052d23;
}
.project-based .request-quote {
  background: #052d23;
  color: #fff;
  height: 3em;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
}

.closing {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5em 4em;
  margin-top: 3em;
}
.closing img {
  height: 5em;
  width: 5em;
  border-radius: 50%;
}
.closing .intro {
  margin: 0 5vw;
}
.closing .intro p {
  color: #ffebe1;
  font-size: 1.4em;
}
.cta-link {
  background: #ffebe1;
  height: 3.5em;
  width: 15em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #052d23;
  margin-top: 4em;
  font-size: 2em;
  font-weight: bold;
  border-radius: 9999px;
}
.cta-link:hover {
  width: 100%;
}
#toggleNav {
  display: none;
}
label[for="toggleNav"] {
  display: none;
}

@media (max-width: 58em) {
      label[for="toggleNav"] {
        display: flex
;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 1px solid #fff;
        height: 2em;
        width: 2em;
        color: #fff !important;
    }
  .box-flex {
    flex-wrap: wrap;
}
.pricing-list {
    flex-wrap: wrap;
}
.intro h1 {
    font-size: 3em;
    text-align: center;
}
a.cta-link {
    width: 100%;
    font-size: 1em;
}
.closing {
  padding: 0;
}
.pricing {
    padding: 4em 1em;
}
.body {
    padding: 3em 1em;
}
.how-it-works {
    padding: 3em 1em;
}
.header-content h1 {
    color: #fff;
    font-size: 2em;
    max-width: 90%;
}
.header-content p {
    color: #daff99;
    font-weight: bold;
    font-size: 1em;
    max-width: 90%;
    text-align: center;
}
.case-study .element {
    flex-direction: column;
}
.how-it-works h1 {
    font-size: 3em;
    text-align: center;
}
.intro {
    margin: 0;
}
nav {
  flex-direction: column;
}
nav ul {
     
  height: 0;
  border-radius: 0 0 1em 1em;
  
  flex-direction: column;
  width: 90%;
  padding-top: 0;
}
nav .cta {
  display: none;
}
nav {
  overflow: hidden;
  padding: 0 1em;
}
nav .logo {
  height: 4em;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#toggleNav:checked ~ nav {
  height: 60vh;
  background: #052d23;
  border-radius: 0 0 1em 1em;
}
#toggleNav:checked ~ nav.float {
  height: 60vh;
  backdrop-filter: blur(21px);
    background-color: rgba(33, 74, 50, 0.5);
  border-radius: 1em;
}
#toggleNav:checked ~ nav ul {
 padding-top: 2em;
 height: 50vh;
}
}