* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    cursor: none;
    font-style: normal;
}
.cursor-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 0;
    height: 0;
}
.cursor {
    position: fixed;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    left: -100px;
    top: 50%;
    background-color: transparent;
    z-index: 10000;
    border: 3px solid #fff;
    height: 25px;
    width: 25px;
    mix-blend-mode: difference;
    transition: 
    width 0.3s ease, 
    height 0.3s ease, 
    border-color 0.3s ease,
    mix-blend-mode 0s ease;
}
.blue .cursor {
    mix-blend-mode: unset;
}
.blue.green .cursor,
.blue.navigationActive .cursor {
    mix-blend-mode: difference;
}
.cursor.hover {
    width: 40px;
    height: 40px;
    border-color: #fff;
}
.cursor.hover:after {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
}
.cursor-black.cursor {
    mix-blend-mode:normal;
    border-color: #000;
}
.cursor-black.cursor:after {
    background-color: #000;
}
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: #000;
    transition: background-color 1s ease;
}
body.navigationActive {
    overflow: hidden;
}
html {
    background-color: #000;
}

.banner-wrapper {
    background-color: black;
    width: 100%;
    height: 100vh;
}
.banner-wrapper video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.banner-text-wrapper {
    position: absolute;
    top: 50%;
    left: 22vw;
    transform: translate(0, -50%);
    height: 35vh;
}

.banner-text-wrapper .amplify-benefits {
    font-size: 6.667vw;
    background: linear-gradient(113deg, #9BE545 0%, #0CF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    border-bottom: 6px solid #fff;
    width: max-content;
    font-weight: 600;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.banner-text-wrapper p.amplify-benefits {
    position: relative;
}
.benefits-container {
    position: relative;
}
.amplify-benefits.active { 
    animation: rotate-text-up 2s; 
}

@keyframes rotate-text-up { 
  0% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  
  20%, 80% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  
  100% {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

.banner-text-wrapper .pretitle {
    font-size: 1.25vw;
    color: #fff;
}
.banner-text-wrapper .amplify {
    font-size: 6.667vw;
    line-height: 1.1;
    color: #fff;
    font-weight: 600;
}

.logo-wrapper {
    position: fixed;
    left: 3.8vw;
    top: 3.8vw;
    mix-blend-mode: difference;
    z-index: 999;
}
.hamby-wrapper {
    position: fixed;
    right: 3.8vw;
    top: 3.8vw;
    mix-blend-mode: difference;
    z-index: 999;
}
.blue header .logo-wrapper,
.blue header .hamby-wrapper,
.green header .logo-wrapper,
.green header .hamby-wrapper,
.green-back-only header .logo-wrapper,
.green-back-only header .hamby-wrapper,
.green-first header .logo-wrapper,
.green-first header .hamby-wrapper {
    mix-blend-mode: unset;
}
.green header path{
    fill: #000;
}
.green header .hamby span{
    background-color: #000;
}
.green-back-only header path {
    fill: #fff;
}
.green-back-only header .hamby span{
    background-color: #fff;
}
.navigationActive header .logo-wrapper {
    mix-blend-mode: unset;
}
.logo {
    width: 12vw;
    display: flex;
    mix-blend-mode: difference;
    position: relative;
    transform: translateX(-150%);
    animation: logo 1s 1s forwards;
}
@keyframes logo {
    0% {
        transform: translateX(-150%);
    }
    100% {
        transform: translateX(0);
    }
}
.logo svg {
    width: 100%;
}
.hamby {
    position: relative;
    width: 3.05vw;
    padding: 0.694vw;
    height: 2.22vw;
    display: flex;
    flex-flow: column;
    position: relative;
    transform: translate(calc(3.8vw + 150%));
    animation: hamby 1s 1s forwards;
}
@keyframes hamby {
    0% {
        transform: translateX(calc(3.8vw + 150%));
    }
    100% {
        transform: translateX(0);
    }
}
.hamby span {
    position: absolute;
    top: 0.694vw;
    width: calc(100% - 1.38vw);
    right: 0.694vw;
    height: 0.2vw;
    background-color: #fff;
    transition: top 0.3s ease, transform 0.4s ease 0.4s;
    transform-origin: center center;
    transform: rotate(0);
}

.hamby span:nth-of-type(2) {
    bottom: 0.694vw;
    top: unset;
    transition: width 0.3s ease;
    transition: bottom 0.3s ease, transform 0.4s ease 0.4s;
    transform-origin: center center;
    transform: rotate(0);
}
.hamby:hover span {
    width: calc(100% - 1.38vw);
}
.hamby.active span {
    top: 50%;
    transform: rotate(45deg);
    transform-origin: center center;
}

.hamby.active span:nth-of-type(2) {
    bottom: 50%;
    transform: rotate(-45deg);
    transform-origin: center center;
}
.hamby.ready span {
    transition: top 0.3s ease 0.5s, transform 0.4s ease;
}
.hamby.ready span:nth-of-type(2) {
    transition: bottom 0.3s ease 0.5s, transform 0.4s ease;
}


/* overlay navigation */
.overlay-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    right: -100%;
    background-color: #fff;
    z-index: 888;
    transition: right 1s ease-in-out;
}
.overlay-wrapper img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: -160%;
    transition: left 1s ease-in-out;
}
.navigationActive .overlay-wrapper {
    right: 0;
}
.navigationActive .overlay-wrapper img {
    left: 0;
}
.overlay-navigation {
    padding: 15vh 10vw 5vh 60%;
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    overflow-y: auto;
    height: 100vh;
}
.main-nav {
    width: 100%;
    display: flex;
    flex-flow: column;
}
.second-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0 25px;
    flex-wrap: wrap;
}
.main-nav a {
    color: #000;
    text-decoration: none;
    transition: color 0.5s ease;
    position: relative;
    width: fit-content;
    padding-right: 20px;
    bottom: -30px;
    opacity: 0;
    transition: scale 0.4 ease;
    transform-origin: center left;
    color: #000;
    font-size: 3vw;
    font-weight: 500;
    line-height: 1.8;
}
.main-nav a:nth-of-type(1) {
    transition: bottom 0.2s ease 0.8s, opacity 0.2s ease 0.8s;
}
.main-nav a:nth-of-type(2) {
    transition: bottom 0.2s ease 0.9s, opacity 0.2s ease 0.9s;
}
.main-nav a:nth-of-type(3) {
    transition: bottom 0.2s ease 1s, opacity 0.2s ease 1s;
}
.main-nav a:nth-of-type(4) {
    transition: bottom 0.2s ease 1.1s, opacity 0.2s ease 1.1s;
}
.main-nav a:nth-of-type(5) {
    transition: bottom 0.2s ease 1.2s, opacity 0.2s ease 1.2s;
}
.navigationActive .main-nav a:nth-of-type(1),
.navigationActive .main-nav a:nth-of-type(2),
.navigationActive .main-nav a:nth-of-type(3),
.navigationActive .main-nav a:nth-of-type(4),
.navigationActive .main-nav a:nth-of-type(5) {
    bottom: 0;
    opacity: 1;
}
.main-nav a:hover {
    scale: 1.1;
    font-weight: 600;
}
.second-top a {
    font-size: 24px;
    line-height: 2.08;
    color: #000;
    text-decoration: none;
    transition: color 0.5s ease;
    opacity: 0;
    position: relative;
    top: -40px;
}

.second-top a:nth-of-type(1) {
    transition: top 0.2s ease 0.8s, opacity 0.2s ease 0.8s;
}
.second-top a:nth-of-type(2) {
    transition: top 0.2s ease 0.9s, opacity 0.2s ease 0.9s;
}
.second-top a:nth-of-type(3) {
    transition: top 0.2s ease 1s, opacity 0.2s ease 1s;
}
.navigationActive .second-top a:nth-of-type(1),
.navigationActive .second-top a:nth-of-type(2),
.navigationActive .second-top a:nth-of-type(3){
    top: 0;
    opacity: 1;
}
.second-top a:hover,
.social-nav a:hover,
.second-bottom a:hover {
    color: #000;
}
.second-top {
    display: flex;
    flex-flow: column;
}
.social-nav {
    margin-top: 56px;
    display: flex;
    justify-content: space-between;
}
.social-nav a,
.second-bottom a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.88;
    color: #000;
    text-decoration: none;
    transition: color 0.5s ease;
}
.second-bottom {
    position: relative;
    opacity: 0;
    right: -40px;
    transition: right 0.2s ease 1s, opacity 0.2s ease 1s;
}
.navigationActive .second-bottom {
    right: 0;
    opacity: 1;
}
.navigationActive header .logo path {
    fill: #fff;
}
.blue.navigationActive header .hamby span {
    background-color: #000;
}

.second-nav h4 {
    color: #767676;
    font-size: 1vw;
    font-weight: 500;
    line-height: 138%;
    letter-spacing: 2%;
    text-transform: uppercase; 
}
.second-nav .contact {
    margin-right: 40px;
}

.second-nav .contact p {
    color: #000;
    font-size: 1.7vw;
    font-weight: 500;
    line-height: 138%;
    text-decoration: none;
    position: relative;
}
.second-nav .contact p:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 3px;
    background-color: #000;
    width: 0;
    transition: width 0.3s ease;
}
.second-nav .contact p:hover:after {
    width: 100%;
}
.contact-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.second-nav .social-media div,
.contact-form-wrapper .social-media div {
    display: flex;
    margin-top: 0.5vh;
}
.second-nav .social-media a,
.contact-form-wrapper .social-media a {
    display: flex;
    width: 1.53vw;
    margin-right: 1.3vw;
}
.second-nav  svg {
    width: 100%;
}

/**/
.partners-title,
.lets-talk {
    opacity: 0;
    position: relative;
    bottom: -5vh;
    transition: bottom 0.3s ease-in, opacity 0.3s ease-in;
}
.partners-title {
    font-weight: 600;
    margin-bottom: 15vh;
    font-size: 5.556vw;
}
.partners-title.active,
.lets-talk.active {
    bottom: 0;
    opacity: 1;
}
.partners-wrapper {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding: 15vh 5vw;
    background-color: #fff;
}
.partners-wrapper.gray-background {
    background-color: #FBFCFF;
}
.partners-transition {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: 100%;
}
.partners-container {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15vh;
}
.partners-container a {
    margin: 0 2vw;
    width: 12vw;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: relative;
    bottom: -5vh;
}
.partners-container a:nth-of-type(1) {
    transition: bottom 0.3s ease-in 0.1s, opacity 0.3s ease-in 0.1s;
}
.partners-container a:nth-of-type(2) {
    transition: bottom 0.3s ease-in 0.2s, opacity 0.3s ease-in 0.2s;
}
.partners-container a:nth-of-type(3) {
    transition: bottom 0.3s ease-in 0.3s, opacity 0.3s ease-in 0.3s;
}
.partners-container a:nth-of-type(4) {
    transition: bottom 0.3s ease-in 0.4s, opacity 0.3s ease-in 0.4s;
    width: 14vw;
}
.partners-container a:nth-of-type(5) {
    transition: bottom 0.3s ease-in 0.5s, opacity 0.3s ease-in 0.5s;
}
.partners-container.active a {
    opacity: 1;
    bottom: 0;
}
.partners-container img {
    width: 100%;
    height: fit-content;
    max-height: 6.5vh;
}
.services-v2-wrapper {
    background-color: #fff;
    padding: 6.94vw;
}

.lets-talk {
    background: linear-gradient(113deg, #9BE545 0%, #0CF 100%);
    color: #FFF;
    font-size: 1.12vw;
    font-weight: 800;
    padding: 16px 24px; 
    text-align: center;
    text-decoration: none;
    width: 14vw;
    text-transform: uppercase;
    height: 6vh;
    transition: border-radius 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0px transparent;
    transition: box-shadow 0.2s ease-in-out, color 0.2s ease-in-out, bottom 0.3s ease-in, opacity 0.3s ease-in;
}
.lets-talk:hover {
    box-shadow: inset 0 6vh 0px #000;
}

.what-we-do-wrapper,
.how-we-do-it-wrapper,
.about-us-wrapper {
    background-color: #000;
    min-height: 100vh;
    width: 100%;
    padding: 6.95vw;
    display: flex;
    flex-flow: column;
    justify-content: center;  
}
.about-us-wrapper {
    background-color: #fff;
}

.what-we-do-wrapper h1,
.how-we-do-it-wrapper h1,
.about-us-wrapper h1,
.contact-form-wrapper h1 {
    color: #FFF;
    font-size: 4.87vw;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 8vh;
}

.what-we-do-wrapper h1,
.contact-form-wrapper h1,
.about-us-wrapper h1,
.how-we-do-it-wrapper h1,
.contact-form-wrapper h1 {
    opacity: 0;
    position: relative;
    left: -10vw;
    transition: left 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.about-us-wrapper p,
.how-we-do-it-wrapper p {
    opacity: 0;
    position: relative;
    right: -10vw;
    transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.what-we-do-wrapper h1.active,
.contact-form-wrapper h1.active,
.about-us-wrapper.active h1,
.how-we-do-it-wrapper.active h1,
.contact-form-wrapper.active h1 {
    opacity: 1;
    left: 0;
}
.about-us-wrapper.active p,
.how-we-do-it-wrapper.active p {
    opacity: 1;
    right: 0;
}

.contact-form-wrapper h1 {
    width: 100%;
    margin-bottom: 10vh;
}
.about-us-wrapper h1 {
    color: #000;
}

.what-we-do-services {
    display: flex;
    justify-content: space-between;
    padding-left: 6.95vw;
}
.what-we-do-services div {
    width: 45%;
    opacity: 0;
    position: relative;
    bottom: -5vh;
    transition: bottom 0.3s ease-in, opacity 0.3s ease-in;
}
.what-we-do-services div:nth-of-type(2) {
    bottom: 0;
    top: -5vh;
    transition: top 0.3s ease-in, opacity 0.3s ease-in;
}
.what-we-do-services.active div {
    bottom: 0;
    opacity: 1;
}
.what-we-do-services.active div:last-of-type {
    top: 0;
}

.what-we-do-services h3,
.what-we-do-services h2 {
    color: #0CF;
    font-weight: 500;
    line-height: 160%;
    font-size: 2.1vw;
    margin-bottom: 1.3vw;
}

.what-we-do-services p,
.how-we-do-it-wrapper p,
.about-us-wrapper p {
    color: #FFF;
    font-size: 1.25vw;
    font-weight: 500;
    line-height: 188%; 
}
.about-us-wrapper p {
    color: #000;
}
.how-we-do-it-wrapper p,
.about-us-wrapper p  {
    width: 75%;
    padding-left: 6.95vw;
}
.how-we-do-it-wrapper a {
    text-decoration: none;
    font-weight: 700;
    color: inherit;
}

.services-wrapper {
    width: 100%;
    padding: 6.94vw 0;
}
.services-v2-wrapper > h1 {
    color: #000;
    font-size: 4.86vw;
    font-weight: 500;
    line-height: 110%;
    padding: 6.94vw;
}

.single-service-wrapper {
    padding: 6.94vw;
    display: flex;
    align-items: center;
    flex-flow: column;
}
body.blue,
body.blue.green-first{
    background-color: #0CF;
}
body.green,
body.blue.green,
body.blue.green-back-only,
body.green-first{
    background-color: #9BE545;
}
.single-service,
.single-service-v2,
.single-service-details {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single-service-v2.flex-start {
    align-items: flex-start;
}
.single-service-details {
    align-items: flex-start;
    width: 100%;
}
.second-service .single-service-details {
    flex-flow: row-reverse;
}
.single-service-details div {
    width: 45%;
    padding: 5vh 0 0;
}
.single-service-link {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-service-link a {
    color: #000;
    font-size: 1.25vw;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
    opacity: 0.5;
    margin-top: 24px;
}

.single-service-link a:hover {
    text-decoration: underline;
    opacity: 1;
}

.single-service img,
.single-service-v2 img {
    width: 45%;
    height: auto;
}
.single-service-v2.eu-info img {
    width: 60%;
    height: auto;
    margin-right: 10%;
    margin-bottom: 24px;
}
.eu-info-disclaimer {
    margin-top: 24px;
}
.single-service-wrapper {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.green-first .single-service-wrapper:first-of-type {
    opacity: 1;
}
.blue .single-service-wrapper:nth-of-type(2) {
    opacity: 1;
}
.green .single-service-wrapper:last-of-type,
.green-back-only .single-service-wrapper:last-of-type {
    opacity: 1;
}

.single-service div,
.single-service-v2 div {
    width: 45%;
}

.single-service h3,
.single-service h2 {
    color: #FFF;
    font-size: 1.67vw;
    font-weight: 500; 
    margin-bottom: 1vh;
}
.single-service-v2 h2 {
    color: #000;
    font-size: 1.112vw;
    font-weight: 500;
    text-transform: uppercase; 
    margin-bottom: 0.69vw;
}

.single-service h1 {
    color: #FFF;
    font-size: 4.167vw;
    font-weight: 500;
    line-height: 110%; 
    margin-bottom: 3vh;
}
.single-service-v2 h1 {
    color: #000;
    font-size: 2.77vw;
    font-weight: 500;
    line-height: 110%; 
    margin-bottom: 2.08vw;
}
.single-service p,
.single-service-details p,
.single-service-details li,
.single-service-details a {
    color: #FFF;
    font-size: 1.25vw;
    font-weight: 500;
    line-height: 166.667%; 
    margin-bottom: 3.5vh;
}
.single-service-details  {
    margin-bottom: 1vh;
}
.single-service-details li {
    margin-bottom: 0;
}
.single-service-details ul {
    padding-left: 2vw;
    margin-bottom: 3.5vh;
}
.single-service-v2 p {
    color: #000;
    font-size: 1.25vw;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.08vw;
}
.single-service-v2.eu-info p {
    font-size: 0.8vw;
    margin-bottom: 0.8vw;
}

.single-service-v2.eu-info p i {
    font-style: italic;
}
.single-service a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 1.74vw;
    height: 3.5vw;
    width: fit-content;
    color: #FFF;
    font-size: 1.112vw;
    font-weight: 700; 
    text-decoration: none;
    padding: 0 2vw;
}
.single-service-v2 a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.73vw;
    background-color: #0CF;
    height: 3.46vw;
    width: 10.42vw;
    color: #FFF;
    font-size: 1.112vw;
    font-weight: 700; 
    text-decoration: none;
}
.single-service-v2-wrapper:last-of-type a {
    background-color: #9BE545;
}

.product-details {
    display: flex;
    flex-flow: column;
    margin-top: 120px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: inherit;
}
.product-details h2 {
    color: #FFF;
    text-align: center;
    font-size: 1.39vw;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase; 
}
.product-icon p,
.product-details h4 {
    color: #FFF;
    text-align: center;
    font-size: 1.66vw;
    font-weight: 500;
    text-align: center;
}
.product-icon p{
    opacity: 1;
}
.product-icons > div:nth-of-type(1) .product-icon p {
    transition: opacity 0.3s ease;
}
.product-icons > div:nth-of-type(2) .product-icon p{
    transition: opacity 0.3s ease 1s;
}
.product-icons > div:nth-of-type(3) .product-icon p{
    transition: opacity 0.3s ease 2s;
}
.product-icons > div:nth-of-type(4) .product-icon p{
    transition: opacity 0.3s ease 3s;
}

.single-service-wrapper.active .product-icon p {
    opacity: 0;
}
.product-icon {
    position: relative;
}
.product-icon svg {
    width: 100%;
    height: 100%;
    max-width: 30%;
    max-height: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.product-icons > div:nth-of-type(3) svg {
    max-width: 40%;
}
.single-service-wrapper.active .product-icon svg {
    opacity: 1;
}

.product-icons > div:nth-of-type(1) svg {
    transition: opacity 0.3s ease;
}
.product-icons > div:nth-of-type(2) svg {
    transition: opacity 0.3s ease 1s;
}
.product-icons > div:nth-of-type(3) svg {
    transition: opacity 0.3s ease 2s;
}
.product-icons > div:nth-of-type(4) svg {
    transition: opacity 0.3s ease 3s;
}
.product-icons {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    position: relative;
    background-color: inherit;
}
.product-icons > div {
    display: flex;
    flex-flow: column;
    width: 13.88vw;
    align-items: center;
    margin-top: 4.16vw;
    background-color: inherit;
}
.product-icons > div::before {
    content: "";
    display: block;
}
.product-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.07vw solid #fff;
    width: 8.33vw;
    height: 8.33vw;
    border-radius: 50%;
    margin-bottom: 1.38vw;
    position: relative;
    z-index: 2;
    background-color: #0CF;
}
.single-service-wrapper:last-of-type .product-icon,
.single-service-wrapper:first-of-type .product-icon{
    background-color: #9BE545;
}
.product-icons::before {
    content: "";
    position: absolute;
    border-top: 0.14vw dashed #fff;
    opacity: 0.7;
    width: calc(100% - 13.88vw);
    left: 6.94vw;
    top: 8.33vw;
}
.product-icons::after {
    content: "";
    position: absolute;
    border-top: 0.2vw solid #fff;
    width: 0;
    left: 6.94vw;
    top: 8.3vw;
    transition: width 3s linear;
}
#ProductCatalog.active .product-icons::after {
    width: calc(100% - 13.88vw);
}
#Arrango.active .product-icons::after {
    width: calc(100% - 13.88vw);
}

.process-wrapper {
    min-height: 100vh;
    width: 100%;
    padding: 13.88vw 6.94vw;
    display: flex;
    background-color: #F9FAFF;
}

.process-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.process-animation {
    width: 35%;
}

.process-description {
    width: 35%;
    display: flex;
    flex-flow: column;
}

.process-description h1 {
    color: #000;
    font-size: 5.55vw;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 2.08vw;
}

.single-process {
    padding-left: 0.348vw;
}

.single-process:not(:last-of-type) {
    margin-bottom: 1.38vw;
    border-bottom: 0.07vw solid #d9d9d9;
    padding-bottom: 1.38vw;
}

.single-process h4 {
    color: #000;
    font-size: 1.112vw;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 0.69vw;
}

.single-process h2 {
    color: #000;
    font-size: 2.36vw;
    font-weight: 500; 
    margin-bottom: 1.042vw;
}
.single-process h2 span {
    display: none
}
.single-process p {
    color: #000;
    font-size: 1.25vw;
    font-weight: 400;
    line-height: 2; 
    transition: height 0.5s ease;
    height: 0;
    overflow: hidden;
}
.single-service-v2-wrapper {
    background-color: #F4F6FA;
    padding: 6.9vw;
    margin-bottom: 6.9vw;
}

.full-width-image {
    display: block;
    width: 100%;
    margin: auto;
    aspect-ratio: 2;
    max-height: 100vh;
    object-fit: cover;
}
.careers-wrapper {
    padding: 6.94vw 13.88vw;
    background-color: #fff;
}
.careers-container {
    margin: auto;
    width: 100%;
}
.career-openings {
    display: flex;
    flex-flow: column;
}

.career-opening {
    display: flex;
    margin-bottom: 30px;
    border-radius: 6px;
    background-color: #F1F3F9;
    flex-flow: column;
    padding: 0 2.43vw;
}

.career-opening h3 {
    color: #000;
    font-size: 1.66vw;
    font-weight: 500;
    line-height: 110%;
    position: relative;
    display: block;
    width: 100%;
    padding: 1.66vw 0;
}

.career-opening h3::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 8px;
    height: 8px;
}

.careers-container h2,
.careers-container p.careers-hello {
    color: #000;
    font-size: 2.64vw;
    font-weight: 500;
    line-height: 110%;
}
.careers-container p.careers-hello {
    text-decoration: underline;
    display: inline;
}
.careers-container h2 {
    margin-bottom: 100px;
}

.career-description {
    border-top: 1px solid #d9d9d9;
    transition: height .5s ease;
    overflow  : hidden;
}
.career-description:not(.active) {
    display: none;
}
.career-description > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.career-description > div:first-of-type {
    padding-top: 40px;
}
.career-description h4 {
    width: 20%;  
    min-width: 13.88vw;
    text-transform: uppercase;
    color: #000;
    font-size: 0.98vw;
    font-weight: 700;
    line-height: 2.4;
}
.career-description > div > div {
    flex: 1;
}
.career-description p,
.career-description li {
    color: #000;
    font-size: 1.12vw;
    font-weight: 400;
    line-height: 2; 
}
.career-description ul {
    padding-left: 20px;
}
.careers-container p.career-contact {
    display: flex;
    color: #FFF;
    font-size: 1.12vw;
    font-weight: 700; 
    padding: 0.97vw 1.53vw;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 40px;
    text-decoration: none;
    border-radius: 2vw;
    align-items: center;
    background-image: linear-gradient(113deg, #9BE545 0%, #0CF 100%);
    transition: border-radius 0.5s ease;
}
.careers-container p.career-contact span:nth-of-type(even) {
    display: none;
}
.careers-container p.career-contact:hover {
    border-radius: 0;
}
footer {
    background-color: #000;
    padding: 0 13.889vw;
    min-height: 100vh;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.tell-us-about-it { 
    padding-top: 20vh;
}
.tell-us-about-it h1 {
    color: #FFF;
    font-size: 4.86vw;
    font-weight: 500;
    line-height: 110%;
}
.tell-us-about-it a {
    color: #FFF;
    font-size: 4.86vw;
    font-weight: 300;
    line-height: 110%; 
    position: relative;
    text-decoration: none;
}
.tell-us-about-it a::after {
    content: "";
    position: absolute;
    bottom: -1vh;
    width: 0;
    height: 4px;
    left: 0;
    background-image: linear-gradient(113deg, #9BE545 0%, #0CF 100%);
    transition: width 0.3s ease 0.3s;
}
.tell-us-about-it.active a::after {
    width: 100%;
}
.amplibit-team-wrapper {
    width: 100%;
    padding: 25vh 0;
    background-color: #fff;
}
.amplibit-team-wrapper > h1 {
    color: #000;
    font-size: 4.86vw;
    font-weight: 500;
    line-height: 100%;
    padding: 0 6.94vw 5vh;
    opacity: 0;
    position: relative;
    left: -5vw;
    transition: left 0.3s ease-in, opacity 0.3s ease-in;
}
.amplibit-team-wrapper > h1.active {
    opacity: 1;
    left: 0;
}
.amplibit-team-wrapper > p {
    color: #000;
    font-size: 1.38vw;
    font-weight: 400;
    line-height: 160%;
    padding: 0 13.88vw 25vh;
    width: 80%;
}
.team-goals-wrapper {
    padding: 0 13.88vw 25vh;
    background-color: #fff;
}
.team-goals-wrapper > div > div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 5vh;
}
.team-goals-wrapper h3 {
    width: 20%;
    color: #000;
    font-size: 1.112vw;
    font-weight: 700;
    line-height: 2;
    text-transform: uppercase;
}
.team-goals-wrapper p {
    width: 70%;
    color: #000;
    font-size: 1.38vw;
    font-weight: 400;
    line-height: 1.6; 
}
.team-mosaic {
    display: flex;
    flex-flow: column;
}
.team-mosaic > div {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}
.team-mosaic > div:nth-of-type(2) {
    align-items: flex-start;
}
.team-mosaic > div > div {
    display: flex;
    margin: 0.7%;
    position: relative;
    overflow: hidden;
    transition: scale 0.3s ease;
}
.team-mosaic img {
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    width: 100%;
    min-height: 100%;
}
.team-mosaic > div > div:hover {
    scale: 1.02;
}
.team-mosaic > div > div:hover picture:nth-of-type(2) {
    opacity: 1;
}
.team-mosaic picture:nth-of-type(2) {
    opacity: 0;
    transition: opacity .4s ease;
}

.team-mosaic > div:first-of-type > div:nth-of-type(1),
.team-mosaic > div:first-of-type > div:nth-of-type(3) {
    width: 23.5%;
    aspect-ratio: 1.59;
}

.team-mosaic > div:first-of-type > div:nth-of-type(2),
.team-mosaic > div:first-of-type > div:nth-of-type(4),
.team-mosaic > div:last-of-type > div:nth-of-type(3)  {
    width: 14.8%;
    aspect-ratio: 0.76;
}

.team-mosaic > div:first-of-type > div:nth-of-type(5) {
    width: 14.8%;
    aspect-ratio: 1.35;
}

.team-mosaic > div:last-of-type > div:nth-of-type(1),
.team-mosaic > div:last-of-type > div:nth-of-type(5) {
    width: 6.5%;
    aspect-ratio: 0.69;
}

.team-mosaic > div:last-of-type > div:nth-of-type(2) {
    width: 23.5%;
    aspect-ratio: 1.45;
}
.team-mosaic > div:last-of-type > div:nth-of-type(4) {
    width: 23.5%;
    aspect-ratio: 1.47;
}
.team-mosaic .join-us {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(113deg, #9BE545 0%, #0CF 100%);
    width: 100%;
    height: 100%;
    padding: 10%;
    text-decoration: none;
}
.join-us h1 {
    color: #FFF;
    text-align: center;
    font-size: 1.95vw;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 1vh;
}
.join-us p {
    color: #FFF;
    font-size: 1.25vw;
    font-weight: 500;
    line-height: 158.5%; 
}
.join-us p span:nth-of-type(even) {
    display: none;
}

footer .contact-info p.text-hello {
    display: block;
    color: #FFF;
    font-size: 1.52vw;
    font-weight: 500;
    margin-bottom: 20px;
}

footer .contact-info p {
    color: #9B9B9B;
    font-size: 1.112vw;
    font-weight: 500;
    line-height: 142%;

}
.social-icon {
    text-decoration: none;
    margin-top: 2.5vh;
    display: inline-block;
    width: 1.53vw;
    margin-right: 1.3vw;
}
.social-icon svg {
    width: 100%;
    height: 100%;
}
.post-footer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6vh;
}
.post-footer a{
    color: #FFF;
    font-size: 1.112vw;
    font-weight: 500; 
    text-decoration: none;
    margin-top: auto;
    margin-right: 2.01vw;
}
.post-footer p {
    color: #9B9B9B;
    font-size: 1.112vw;
    font-weight: 500; 
}

.contact-fixed {
    position: fixed;
    bottom: 3.8vw;
    right: 3.8vw;
    color: #fff;
    font-size: 0.84vw;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.11vw;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    mix-blend-mode: difference;
    text-decoration: none;
    transform: translateX(calc(6vw + 200%)) rotate(180deg);
    z-index: 777;
    padding-top: 2.5vw;
    transition: letter-spacing 0.2s ease;
    animation: contact 1s 1s forwards;
}
@keyframes contact {
    0% {
        transform: translateX(calc(6vw + 200%)) rotate(180deg);
    }
    100% {
        transform: translateX(0) rotate(180deg);
    }
}
.blue .contact-fixed,
.green-first .contact-fixed {
    mix-blend-mode: unset;
}
.green .contact-fixed{
    color: #000;
    mix-blend-mode: unset;
}
.contact-fixed:hover {
    letter-spacing: 0.4rem;
}
.contact-fixed::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.52vw;
    height: 1.52vw;
    border: 0.1vw solid #fff;
    border-radius: 50%;
}
.contact-fixed::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.84vw;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5vw;
    height: 0.5vw;
    background-color: #fff;
    border-radius: 50%;
    transition: width 0.2s ease, height 0.2s ease;
    box-shadow: 0px 0px 1px 1px #0000001a;
    animation: pulse-animation 2s infinite;
}
.green .contact-fixed::before {
    border-color: #000;
}
.green .contact-fixed::after {
    background-color: #000;
}
.contact-fixed:hover::after {
    width: 1.52vw;
    height: 1.52vw;
}
.process-cycle {
    background: url(img/product-arrows.svg) no-repeat 50%;
    background-size: contain;
    width: 25vw;
    height: 25vw;
    margin: auto;
    position: relative;
    transition: transform 1s ease;
}
.process-icon {
    position: absolute;
    border: 0.69vw solid #dedede;
    border-radius: 50%;
    width: 55%;
    height: 55%;
    transition: transform 1s ease;
}
.process-icon:first-of-type {
    left: 110%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.process-icon:nth-of-type(2) {
    left: 15%;
    bottom: -5%;
    transform: translate(-50%, 50%);
}
.process-icon:last-of-type {
    left: 15%;
    top: -5%;
    transform: translate(-50%, -50%);
}
.process-icon div {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.process-icon.active {
    width: 75%;
    height: 75%;
    background-color: #fff;
}
.process-icon::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(113deg, #9BE545 0%, #0CF 100%);
    border-radius: 50%;
}
.process-icon.active::before {
    width: calc(100% + 1.5vw);
    height: calc(100% + 1.5vw);
    top: -0.75vw;
    left: -0.75vw;
    right: -0.75vw;
    bottom: -0.75vw;
}
.process-icon svg {
    flex: 0.5;
    margin-bottom: 5%;
}
.process-icon h1 {
    color: #000;
    font-size: 0.8vw;
    font-weight: 600;
    max-width: 80%;
    text-align: center;
}
.process-icon.active h1 {
    font-size: 1.25vw;
}
.process-cycle[data-active="2"] {
    transform: rotate(-120deg);
    background: url(img/product-arrows-4.svg) no-repeat 50%;
    background-size: contain;
}

.process-cycle[data-active="2"] .process-icon:last-of-type {
    left: 20%;
    top: -5%;
    transform: translate(-50%, -50%) rotate(120deg);
}
.process-cycle[data-active="2"] .process-icon:first-of-type {
    transform: translate(-50%, -50%) rotate(120deg);
}
.process-cycle[data-active="2"] .process-icon:nth-of-type(2) {
    transform: translate(-50%, 50%) rotate(120deg);
}

.process-cycle[data-active="3"] {
    transform: rotate(-240deg);
    background: url(img/product-arrows-7.svg) no-repeat 50%;
    background-size: contain;
}

.process-cycle[data-active="3"] .process-icon:last-of-type {
    left: 20%;
    top: -5%;
    transform: translate(-50%, -50%) rotate(240deg);
}
.process-cycle[data-active="3"] .process-icon:first-of-type {
    transform: translate(-50%, -50%) rotate(240deg);
}
.process-cycle[data-active="3"] .process-icon:nth-of-type(2) {
    left: 20%;
    bottom: -5%;
    transform: translate(-50%, 50%) rotate(240deg);
}
.process-icons-mobile {
    display: none;
    height: 200px;
    width: 100%;
    position: relative;
}
.process-icons-mobile div {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 10px;
    left: 25px;
    transition: opacity 0.3s ease;
}
.process-icons-mobile div.active {
    opacity: 1;
}
.process-icons-mobile svg {
    max-width: 60%;
    max-height: 150px;
}

  
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 1);
    }
    100% {
        box-shadow: 0 0 0 0.6vw rgba(255, 255, 255, 0);
    }
}


/* form */
.contact-form-wrapper {
    padding: 13.88vw 13.08vw 0;
    margin: auto;
}
.contact-form-wrapper img {
    width: 100%;
}
.contact-form-wrapper form {
    display: flex;
    justify-content: space-between;
    flex-flow: row;
    flex-wrap: wrap;
    width: 60%;
    margin-bottom: 10vh;
}
.input-container {
    width: 48%;
    position: relative;
    margin-bottom: 1.25vw;
}
.input-container.full-width {
    width: 100%;
}
.input-container input {
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 0.07vw solid #fff;
    line-height: 2.25;
    font-size: 1.38vw;
    color: #fff;
    transition: border-color 0.3s ease;
    padding-top: 0.69vw;
}
.input-container input span {
    color: #fff;
}
.input-container input:focus {
    outline: none;
}
.input-container label {
    position: absolute;
    left: 0;
    top: 0.69vw;
    color: #fff;
    font-size: 1.25vw;
    transition: font-size 0.3s ease-in, top 0.2s ease-in;
    cursor: text;
}
.input-container input:focus + label,
.input-container textarea:focus + label {
    font-size: 0.69vw;
    top: 0;
}
.input-container input:not([value=""]):not(:focus) + label,
.input-container textarea:not([value=""]):not(:focus) + label {
    font-size: 0.69vw;
    top: 0;
}
.input-container.empty input[name="name"],
.input-container.wrong input[name="name"],
.input-container.empty input[name="email"],
.input-container.wrong input[name="email"], 
.input-container.empty input[name="phone"],
.input-container.wrong input[name="phone"], 
.input-container.empty input[name="title"], 
.textarea-input.empty {
    border-color: red;
}
.input-container.success input[name="name"],
.input-container.success input[name="email"],
.input-container.success input[name="phone"],
.input-container.success input[name="title"], 
.textarea-input.success {
    border-color: lime;
}
.input-container.empty .validation-message span:first-of-type {
    opacity: 1;
    color: red;
}
.input-container.wrong .validation-message span:last-of-type {
    opacity: 1;
    color: red;
    position: absolute;
    left: 0.69vw;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active,
input:-internal-autofill-selected,
input:-internal-autofill-previewed {
    background-color: #000 !important;
    -webkit-box-shadow: 0 0 0 2.08vw #000 inset !important;
    color: #fff;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    box-shadow: inset 0 0 1.38vw 1.38vw #000;
}
.validation-message {
    line-height: 1;
    padding: 0.35vw 0.69vw;
    font-size: 0.97vw;
    position: relative;
}
.validation-message span {
    opacity: 0;
    left: 0;
}
textarea {
    resize: none;
    width: 100%;
    height: 5.55vw;
    background-color: transparent;
    border: none;
    outline: none;
    margin-top: 1.38vw;
    color: #fff;
    font-size: 1.38vw;
}
.email-sent {
    width: 100%;
    display: flex;
    height: 2.08vw;
    margin-bottom: 0;
    opacity: 0;
    transition: height 1s ease,margin-bottom 1s ease, opacity 2s ease;
}
.sent .email-sent {
    margin-bottom: 3.47vw;
    height: 1.38vw;
    opacity: 1;
}
.email-sent p {
    font-size: 1.25vw;
    display: none;
}
.sent .email-sent p.sent {
    color: #fff;
    display: block;
}
.failed .email-sent p.failed {
    color: red;
    display: block;
}
textarea:focus {
    outline: none;
}
.textarea-input {
    background-color: transparent;
    border-bottom: 1px solid #fff;
    margin-bottom: 2.08vw;
    color: #fff;
    transition: border-color 0.3s ease;
}
.submit-button {
    width: 15vw;
    height: 4.16vw;
    background: linear-gradient(113deg, #9BE545 0%, #0CF 100%);
    font-size: 1.25vw;
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    border: 0.14vw solid #000;
    box-shadow: inset 0 0 0px transparent;
    transition: box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
}
.submit-button:hover {
    box-shadow: inset 0 4.16vw 0px #fff;
    color: #000;
}
.contact-info-container p.text-hello {
    color: #FFF;
    font-size: 1.38vw;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 5%;
    display: block;
}
.contact-info-container p {
    color: #9B9B9B;
    font-size: 1.12vw;
    font-weight: 500;
    line-height: 142%;
    margin-bottom: 10%;
}
.contact-info-container {
    width: 25%;
}
.contact-text span:nth-of-type(even),
footer .text-hello span:nth-of-type(even),
.contact-info-container p.text-hello span:nth-of-type(even),
.careers-container p.careers-hello span:nth-of-type(even) {
    display: none;
}

@media screen and (max-width: 1280px) {
    .logo {
        width: 160px;
    }
    .banner-text-wrapper {
        left: 20vw;
        height: auto;
    }
    .banner-text-wrapper .amplify-benefits,
    .banner-text-wrapper .amplify {
        font-size: 96px;
    }
    .banner-text-wrapper .pretitle {
        font-size: 18px;
    }
    .partners-title {
        font-size: 80px;
        margin-bottom: 120px;
    }
    .partners-container {
        margin-bottom: 120px;
    }
    
    .lets-talk {
        font-size: 16px;
        width: 180px;
        text-transform: uppercase;
        height: 50px;
    }
    .what-we-do-wrapper h1,
    .how-we-do-it-wrapper h1,
    .about-us-wrapper h1,
    .contact-form-wrapper h1 {
        font-size: 70px;
        margin-bottom: 64px;
    } 
    .what-we-do-services h3,
    .what-we-do-services h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .what-we-do-services p,
    .how-we-do-it-wrapper p,
    .about-us-wrapper p {
        font-size: 18px;
    }
    .tell-us-about-it h1,
    .tell-us-about-it a {
        font-size: 70px;
    }
    .tell-us-about-it a::after {
        bottom: -10px;
    }
    footer .contact-info p.text-hello {
        font-size: 22px;
    }
    
    footer .contact-info p {
        font-size: 16px;
    }
    .social-icon {
        margin-top: 22px;
        width: 22px;
        margin-right: 14px;
    }
    .post-footer {
        margin-bottom: 45px;
    }
    .post-footer a {
        font-size: 16px;
        margin-right: 22px;
        margin-bottom: 10px;
        display: inline-block;
    }
    .navigation {
        margin-right: 50px;
    }
    .post-footer p {
        font-size: 16px;
    }
    footer {
        padding: 0 100px;
    }
    .main-nav a {
        font-size: 42px;
    }
    .second-nav h4 {
        font-size: 12px;
    }
    
    .second-nav .contact p {
        font-size: 22px;
    }
    .second-nav .social-media a,
    .contact-form-wrapper .social-media a {
        width: 22px;
        margin-right: 20px;
    }
    .overlay-wrapper img {
        width: 40%;
    }
    .overlay-navigation {
        padding: 15vh 5vw 5vh 50%;
    }
    .second-nav .social-media,
    .second-nav .contact,
    .contact-form-wrapper .social-media  {
        margin-top: 30px;
    }

    .join-us h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .join-us p {
        font-size: 18px;
    }
    
    .amplibit-team-wrapper {
        padding: 200px 0;
        overflow-x: hidden;
        position: relative;
    }
    .amplibit-team-wrapper > h1 {
        font-size: 70px;
        padding: 0 100px 45px;
    }
    .amplibit-team-wrapper > p {
        font-size: 20px;
        padding: 0 200px 200px;
    }
    .team-goals-wrapper {
        padding: 0 150px 200px;
    }
    .team-goals-wrapper > div > div {
        margin-bottom: 45px;
    }
    .team-goals-wrapper h3 {
        font-size: 16px;
    }
    .team-goals-wrapper p {
        font-size: 20px;
    }
    .team-mosaic-wrapper {
        overflow: auto;
        width: 100%;
        padding-bottom: 20px;
        position: relative;
    }
    .amplibit-team-wrapper:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        bottom: 200px;
        height: 20px;
        background-color: #fff;
    }
    .team-mosaic {
        width: 1200px;
        margin: auto;
    }
    .careers-container h2,
    .careers-container p.careers-hello {
        font-size: 38px;
    }
    .careers-wrapper {
        padding: 100px 10%;
    }
    .career-opening h3 {
        font-size: 24px;
        padding: 25px 0;
    }
    .career-opening {
        padding: 0 35px;
    }
    .career-description h4 {
        min-width: 200px;
        font-size: 14px; 
        letter-spacing: 0.56px; 
    }
    
    .career-description p,
    .careers-container p.career-contact,
    .career-description li {
        font-size: 16px;
    }
    .contact-fixed {
        font-size: 12px;
        bottom: 45px;
        right: calc(5vw + 10px);
        letter-spacing: 0.96px;
        padding-top: 35px;
    }
    
    .contact-fixed::before {
        width: 22px;
        height: 22px;
        border: 1px solid #fff;
    }
    .contact-fixed::after {
        top: 12px;
        width: 7px;
        height: 7px;
    }
    
    .contact-fixed:hover {
        letter-spacing: 0.2rem;
    }
    .contact-fixed:hover::after {
        width: 22px;
        height: 22px;
    }
    
    @keyframes pulse-animation {
        0% {
            box-shadow: 0 0 0 0px rgba(255, 255, 255, 1);
        }
        100% {
            box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
        }
    }
    .process-description h1 {
        font-size: 80px;
        margin-bottom: 30px;
    }
    
    .single-process {
        padding-left: 5px;
    }

    .single-process:not(:last-of-type) {
        margin-bottom: 20px;
        border-bottom: 1 solid #d9d9d9;
        padding-bottom: 20px;
    }

    .single-process h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .single-process h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }
    .single-process p {
        font-size: 18px;
    }
    .single-service-v2 h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }
    .single-service-v2 p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .single-service-link a {
        font-size: 16px;
    }

    .single-service-v2.eu-info p {
        font-size: 14px;
        margin-bottom: 0.8vw;
    }
    .single-service-v2 h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .single-service-v2-wrapper {
        padding: 50px;
        margin-bottom: 50px;
    }
    .services-v2-wrapper {
        padding: 100px;
    }
    .services-v2-wrapper > h1 {
        font-size: 70px;
        padding: 50px;
    }
    
    .single-service-wrapper {
        padding: 100px;
        display: flex;
        align-items: center;
        flex-flow: column;
    }
    .single-service-v2 a {
        border-radius: 25px;
        height: 50px;
        width: 150px;
        font-size: 16px;
    }
    
    .process-wrapper {
        padding: 200px 50px;
    }
    .process-container {
        justify-content: space-between;
    }
    .process-description {
        width: 45%;
    }
    .contact-info-container p.text-hello {
        font-size: 20px;
    }
    .contact-info-container p {
        font-size: 16px;
    }
    .input-container {
        margin-bottom: 18px;
    }
    .input-container input {
        border-bottom: 1px solid #fff;
        line-height: 45px;
        font-size: 20px;
        padding-top: 10px;
    }
    .input-container label {
        top: 10px;
        font-size: 18px;
    }
    .input-container input:focus + label,
    .input-container textarea:focus + label {
        font-size: 10px;
    }
    .input-container input:not([value=""]):not(:focus) + label,
    .input-container textarea:not([value=""]):not(:focus) + label {
        font-size: 10px;
    }
    .input-container.wrong .validation-message span:last-of-type {
        left: 10px;
    }
    input:-webkit-autofill,
    input:-webkit-autofill:hover, 
    input:-webkit-autofill:focus, 
    input:-webkit-autofill:active,
    input:-internal-autofill-selected,
    input:-internal-autofill-previewed {
        -webkit-box-shadow: 0 0 0 30px #000 inset !important;
    }
    input:-webkit-autofill,
    input:-webkit-autofill:hover, 
    input:-webkit-autofill:focus, 
    input:-webkit-autofill:active{
        box-shadow: inset 0 0 20px 20px #000;
    }
    .validation-message {
        padding: 5px 10px;
        font-size: 14px;
    }
    textarea {
        height: 80px;
        margin-top: 20px;
        font-size: 20px;
    }
    .email-sent {
        height: 30px;
    }
    .success .email-sent {
        margin-bottom: 50px;
        height: 20px;
    }
    .textarea-input {
        border-bottom: 1px solid #fff;
        margin-bottom: 30px;
    }
    .submit-button {
        width: 220px;
        height: 60px;
        font-size: 18px;
        border: 2px solid #1d1d1d;
    }
    .submit-button:hover {
        box-shadow: inset 0 60px 0px #f5f5f5;
    }
    .email-sent p {
        font-size: 18px;
    }
    
    .hamby {
        width: 44px;
        padding: 10px;
        height: 32px;
    }
    .hamby span {
        top: 10px;
        width: calc(100% - 20px);
        right: 10px;
        height: 3px;
    }
    
    .hamby span:nth-of-type(2) {
        bottom: 10px;
    }
    .hamby:hover span {
        width: calc(100% - 20px);
    }
    .careers-container p.career-contact {
        padding: 14px 22px;
        border-radius: 50px;
    }
}

@media screen and (max-width: 960px) {
    .cursor {
        display: none;
    }
    * {
        cursor: auto;
    }
    .banner-text-wrapper {
        left: 10vw;
        height: auto;
    }
    .banner-text-wrapper .amplify-benefits,
    .banner-text-wrapper .amplify {
        font-size: 82px;
    }
    .banner-text-wrapper .pretitle {
        font-size: 14px;
    }
    .partners-container {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 70px;
    }
    .partners-container a {
        margin: 0 5%;
        width: 22%;
        margin-bottom: 50px;
    }
    .what-we-do-wrapper {
        padding: 50px;
    }
    .what-we-do-services {
        padding-left: 50px;
        flex-flow: column;
    }
    .what-we-do-services div {
        width: 100%;
        margin-bottom: 50px;
    }
    .single-service-wrapper {
        padding: 100px 50px;
    }
    .single-service, 
    .single-service-v2 {
        flex-flow: column;
    }
    .single-service-wrapper:nth-of-type(2) .single-service{
        flex-flow: column-reverse;
    }

    .single-service img{
        width: 70%;
        margin-bottom: 50px;
    }
    .single-service-v2 img {
        width: 100%;
        margin-bottom: 50px;
    }
    .single-service div {
        width: 70%;
    }
    .single-service-v2 div {
        width: 100%;
    }
    .single-service h3,
    .single-service h2,
    .single-service-v2 h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .single-service h1,
    .single-service-v2 h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }
    .single-service p,
    .single-service-details p,
    .single-service-v2 p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .single-service-link a {
        font-size: 16px;
    }
    .single-service-details ul {
        padding-left: 25px;
        margin-bottom: 40px;
    }
    .single-service-details li,
    .single-service-details a {
        font-size: 18px;
    }

    .single-service a,
    .single-service-v2 a {
        border-radius: 25px;
        height: 50px;
        padding: 0 20px;
        font-size: 16px;
        font-weight: 700; 
    }
    .tell-us-about-it h1,
    .tell-us-about-it a {
        font-size: 50px;
    }
    .services-v2-wrapper {
        padding: 50px;
    }
    footer {
        padding: 0 50px;
    }
    .amplibit-team-wrapper > h1 {
        font-size: 50px;
    }
    .amplibit-team-wrapper > p {
        font-size: 20px;
        padding: 0 0 100px 200px;
    }
    .team-goals-wrapper {
        padding: 0 100px 150px;
    }
    .team-goals-wrapper h3 {
        min-width: 180px;
    }
    .product-details {
        margin-top: 20px;
    }
    .product-details h2 {
        font-size: 20px;
    }
    .product-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
    .product-icon {
        border: 1px solid #fff;
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    .product-icons > div {
        width: 45%;
        margin-top: 60px;
    }
    .product-icons::before,
    .product-icons::after {
        content: none;
    }
    .product-icon p,
    .product-details h4 {
        font-size: 24px;
    }
    .process-animation {
        display: none;
    }
    .process-description {
        width: 100%;
    }
    .process-icons-mobile {
        display: block;
    }
    .single-process h4 {
        display: none;
    }
    .single-process h2 {
        display: flex;
        align-items: center;
        position: relative;
        width: fit-content;
        padding-right: 40px;
    }
    .single-process h2 span {
        font-size: 20px;
        margin-right: 20px;
        font-weight: 500;
        display: block;
    }
    .single-process h2::after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-70%) rotate(45deg);
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        width: 8px;
        height: 8px;
        transition: transform 0.3s ease;
    }
    .single-process.active h2:after {
        transform: translateY(-30%) rotate(225deg);
    }
    .process-container {
        align-items: flex-start;
    }
    .contact-form-wrapper {
        padding: 150px 50px 0;
    }
    .contact-form-wrapper form {
        width: 100%;
        margin-bottom: 100px;
    }
    .contact-info-container {
        margin-bottom: 100px;
        width: 100%;
    }
    .what-we-do-title.active + .what-we-do-services div {
        bottom: 0;
        opacity: 1;
    }
    .what-we-do-title.active + .what-we-do-services div:last-of-type {
        top: 0;
    }
    .contact-info-container p {
        margin-bottom: 50px;
    }
    .main-nav a {
        font-size: 32px;
    }
    .single-service-details,
    .second-service .single-service-details {
        flex-flow: column;
    }
    .single-service-details > div {
        width: 70%;
        margin: auto;
        padding: 40px 0 0;
    }
}

@media screen and (max-width: 680px) {
    
    .navigationActive header .logo path {
        fill: #000;
    }
    .partners-title {
        font-size: 50px;
        margin-bottom: 80px;
    }

    .partners-wrapper {
        padding: 10vh 5vw;
    }

    .single-service img, 
    .single-service-v2 img {
        width: 100%;
        aspect-ratio: 1.6;
        object-fit: cover;
    }
    .single-service-v2.eu-info img {
        width: 75%;
        aspect-ratio: auto;
        object-fit: contain;
        margin: auto auto 24px auto;
    }
    
    .banner-text-wrapper .amplify-benefits,
    .banner-text-wrapper .amplify {
        font-size: 18vw;
    }
    .banner-text-wrapper .pretitle {
        font-size: 4vw;
    }

    .single-service div,
    .single-service-v2 div {
        width: 100%;
    }
    
    .single-service h3,
    .single-service h2,
    .single-service-v2 h2 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    .single-service h1,
    .single-service-v2 h1 {
        margin-bottom: 20px;
    }
    .single-service p,
    .single-service-v2 p,
    .single-service-details p,
    .single-service-details li,
    .single-service-details a {
        font-size: 16px;
    }

    .single-service-link a {
        font-size: 14px;
        margin-top: 12px;
    }
    .single-service a,
    .single-service-v2 a {
        font-size: 14px;
    }
    .post-footer {
        display: flex;
        flex-flow: column;
    }
    .navigation {
        margin-bottom: 80px;
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        margin-right: 0;
    }
    .navigation a {
        width: 50%;
        margin-right: 0;
        line-height: 1.8;
    }

    .amplibit-team-wrapper {
        padding: 100px 0;
    }
    .amplibit-team-wrapper > h1 {
        font-size: 40px;
        padding: 0 0 35px 25px;
    }
    .amplibit-team-wrapper > p {
        width: 90%;
        font-size: 18px;
        padding: 0 0 50px 50px;
    }
    .about-us-wrapper p {
        width: 90%;
    }
    .team-goals-wrapper {
        padding: 0 25px 100px;
    }
    .team-goals-wrapper div {
        flex-flow: column;
    }
    .team-goals-wrapper h3 {
        margin-bottom: 40px;
    }
    .team-goals-wrapper p {
        padding-left: 40px;
        width: 90%;
    }
    .careers-wrapper {
        padding: 100px 0 0;
        background-color: #F1F3F9;
    }
    .career-opening {
        border-radius: 0;
        margin: 0;
        padding: 0 25px;
    }
    .career-opening h3 {
        padding: 35px 0;
        border-top: 1px solid #d9d9d9;
    }
    .career-description {
        border: none;
    }
    .career-description > div:first-of-type {
        padding-top: 20px;
    }
    .career-description > div {
        flex-flow: column;
    }
    .partners-wrapper.gray-background {
        background-color: #fff;
    }
    .careers-container p.career-contact {
        margin-left: 0;
    }
    .careers-container h2 {
        padding: 0 25px;
        font-size: 24px;
    }
    .careers-container p.careers-hello {
        font-size: 24px;
    }
    .product-details {
        align-items: flex-start;
    }
    .product-icon {
        width: 96px;
        height: 96px;
    }
    .product-icons > div {
        width: 50%;
    }
    .product-icon p, .product-details h4 {
        font-size: 16px;
    }
    .product-details h2 {
        font-size: 16px;
        padding-bottom: 4px;
        border-bottom: 1px solid #fff;
    }
    .single-process h2 {
        font-size: 24px;
    }
    .single-process h2 span {
        font-size: 16px;
    }
    .process-description h1 {
        font-size: 40px;
    }
    .input-container {
        width: 100%;
    }
    .email-sent p {
        font-size: 16px;
    }
    .single-service-details > div {
        width: 100%;
    }
    .amplibit-team-wrapper:after {
        bottom: 100px;
    }
}

@media screen and (max-width: 580px) {
    
    .logo {
        width: 130px;
    }

    .banner-text-wrapper {
        transform: translate(0, -70%);
    }
    .partners-title {
        font-size: 40px;
        margin-bottom: 80px;
    }

    .partners-container {
        flex-flow: column;
    }

    .partners-container a {
        width: 100%;
        max-height: 30px;
        margin-bottom: 70px;
    }

    .partners-container img {
        width: fit-content;
        height: 100%;
        max-height: 6.5vh;
    }
    .partners-container {
        margin-bottom: 20px;
    }
    .what-we-do-wrapper {
        padding: 100px 25px;
    }
    
    .what-we-do-wrapper h1,
    .how-we-do-it-wrapper h1,
    .about-us-wrapper h1,
    .contact-form-wrapper h1 {
        font-size: 12vw;
        margin-bottom: 50px;
    } 
    .what-we-do-services {
        padding: 20px;
    }
    .single-service-wrapper {
        padding: 100px 25px;
    }
    .tell-us-about-it {
        padding-top: 150px;
        padding-bottom: 80px;
    }
    .tell-us-about-it h1,
    .tell-us-about-it a {
        font-size: 40px;
    }
    footer .contact-info p.text-hello {
        font-size: 20px;
    }
    
    footer .contact-info p {
        font-size: 15px;
    }
    .social-icon {
        margin-top: 20px;
        width: 20px;
        margin-right: 10px;
    }
    .post-footer {
        margin-bottom: 25px;
    }
    .post-footer a {
        font-size: 15px;
    }
    .post-footer p {
        font-size: 13px;
    }
    footer {
        padding: 0 25px;
    }
    .services-v2-wrapper {
        padding: 100px 25px;
    }
    .services-v2-wrapper > h1 {
        padding: 0;
        font-size: 40px;
    }
    .single-service-v2-wrapper {
        padding: 50px 0;
        margin-bottom: 50px;
        background-color: #fff;
    }
    .overlay-wrapper img {
        display: none;
    }
    .second-nav {
        flex-flow: column;
    }
    .overlay-navigation {
        padding: 15vh 7vw 10vh 10%;
    }
    .overlay-wrapper {
        transition: right 0.5s ease;
    }
    .main-nav a:nth-of-type(1) {
        transition: bottom 0.2s ease 0.3s, opacity 0.2s ease 0.3s;
    }
    .main-nav a:nth-of-type(2) {
        transition: bottom 0.2s ease 0.4s, opacity 0.2s ease 0.4s;
    }
    .main-nav a:nth-of-type(3) {
        transition: bottom 0.2s ease 0.5s, opacity 0.2s ease 0.5s;
    }
    .main-nav a:nth-of-type(4) {
        transition: bottom 0.2s ease 0.6s, opacity 0.2s ease 0.6s;
    }
    .main-nav a:nth-of-type(5) {
        transition: bottom 0.2s ease 0.7s, opacity 0.2s ease 0.7s;
    }
    .process-wrapper {
        padding: 100px 25px;
    }
    .contact-form-wrapper {
        padding: 150px 25px 0;
    }
    .contact-form-wrapper form {
        width: 100%;
        margin-bottom: 100px;
    }
    .contact-info-container {
        margin-bottom: 100px;
    }
}