@font-face {
    font-family: 'Matter';
    src: url('../fonts/Matter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Matter';
    src: url('../fonts/Matter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Matter';
    src: url('../fonts/Matter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'Matter', sans-serif;
}


@keyframes wave-animation {
    0% {
        transform: rotate(0.0deg)
    }

    10% {
        transform: rotate(14.0deg)
    }

    20% {
        transform: rotate(-8.0deg)
    }

    30% {
        transform: rotate(14.0deg)
    }

    40% {
        transform: rotate(-4.0deg)
    }

    50% {
        transform: rotate(10.0deg)
    }

    60% {
        transform: rotate(0.0deg)
    }

    100% {
        transform: rotate(0.0deg)
    }

}

.animate-wave {
    animation-name: wave-animation;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    transform-origin: 70% 70%;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
}

@media (max-width: 800px) {}

@media (min-width: 1601px) {
    
}

.text-slate {
    color: #64748B;
}

.who-we-are {
    font-size: 5rem;
    font-weight: 300;
    text-align: center;
}


@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.animate-scroll-left {
    animation: scroll-left 40s linear infinite;
}

.animate-scroll-right {
    animation: scroll-right 40s linear infinite;
}

.our-process-path {
    top: 26%;
    left: 10%;
    width: 900px;
}

.process-block-1 {
    height: 12rem;
    width: 11rem;
    background-color: #131518;
}

.process-block-2 {
    height: 16.5rem;
    width: 15rem;
    background-color: #F04014;
}

.process-block-3 {
    height: 23rem;
    width: 19rem;
    background-color: #131518;
}

.process-block-4 {
    height: 32rem;
    width: 23rem;
    background-color: #F04014;
}

.process-block-1>svg {
    height: 44px;
    width: 44px;
}

.process-block-2>svg {
    height: 66px;
    width: 66px;
}

.process-block-3>svg {
    height: 99px;
    width: 99px;
}

.process-block-4>svg {
    height: 149px;
    width: 149px;
}


.process-block-text {
    margin-top: 0.2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
}

.our-process-block-div {
    display: flex;
    align-items: end;
    justify-content: center;
}

.our-process-path>svg {
    width: 900px;
    height: 500px;

}