@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    --pulse-animation-duration: 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

body {
    position: relative;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
}

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

.hero {
    position: relative;
    margin-bottom: 6.5rem;
    padding: 2rem 0;
}

.video-wrap {
    text-align: center;
}

.separator {
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: -.45rem;
    padding: 8px;
    border-radius: 8px;
    background: rgba(244, 244, 244, 1);
    border: 0.84px solid rgba(221, 221, 221, 1);
}

.step__count {
    position: relative;
    bottom: 8px;
    font-weight: 400;
    font-size: 10.11px;
    line-height: 15.87px;
    letter-spacing: 2.86px;
    text-transform: uppercase;
    color: rgba(3, 185, 85, 1);
}

.step__desc {
    font-weight: 400;
    font-size: 16.85px;
    line-height: 15.87px;
    letter-spacing: .2px;
}

.step__desc span {
    font-weight: 700;
    color: rgba(3, 185, 85, 1);
}

.card {
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0px 16px 34.6px 0px rgba(0, 0, 0, 0.1);
}
    
.card__img-wrap {
    border-left: 1px solid rgba(229, 229, 229, 0);
    border-right: 1px solid rgba(229, 229, 229, 0);
}

.card__img-wrap img {
    height: 50vw;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card__title {
    padding: .8rem 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: rgba(3, 185, 85, 1);
}

.card__content {
    padding: 0 20px 1rem 20px;
    border-left: 1px solid rgba(229, 229, 229, 1);
    border-bottom: 1px solid rgba(229, 229, 229, 1);
    border-right: 1px solid rgba(229, 229, 229, 1);
    line-height: 25px;
    color: rgb(122, 122, 122);
}

.card__desc {
    font-size: 15px;
    line-height: 25px;
    color: rgba(13, 41, 12, .6);
}

.cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 96%;
    padding: 15px 16.23px;
    font-size: 30px;
    line-height: 42px;
    font-weight: 700;
    color: #fff;
    background: rgba(3, 185, 85, 1);
    border-radius: 1000px;
    transition: all 0.3s ease;
    animation: pulse var(--pulse-animation-duration) ease-in-out infinite;
    will-change: transform;
    box-shadow: 0px 4px 21.3px 0px rgba(116, 160, 255, 0.25);
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 2rem;
}

footer a {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: rgba(13, 41, 12, .6);
    text-align: center;
}