.hero {
    padding: 100px 64px;
}

.subhead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subhead p {
    font-weight: 500;
}

.green {
    background-color: #10d07f;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.heading {
    font-weight: 600;
    font-size: 75px;
    max-width: 900px;
    margin-top: 30px;
    line-height: 1.2em;
}

.heading span {
    background: linear-gradient(90deg, rgba(16, 208, 127, .32), rgba(16, 208, 127, .04));
    border-left: 4px solid #10d07f;
    padding: 0px 8px;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 12.5px;
}

.links a {
    background-color: #1b1b1b;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 100px;
    font-weight: 500;
    padding: 20px 32px;
    transition: 0.3s
}

.links a:hover {
    padding: 20px 42px;
    background-color: rgb(57, 57, 57);
}

.links a i {
    color: white;
    font-size: 21px;
}

.links a:nth-child(2) i {
    color: #1b1b1b;
}

.links a:nth-child(1) {
    box-shadow: 0 6px 12px rgba(27, 27, 27, .25);
}

.links a:nth-child(2) {
    border: 1px solid #eeeeee;
    background: rgb(244, 244, 244);
    color: #1b1b1b;
    font-weight: 500;
}

.links a:nth-child(2):hover {
    background: rgb(234, 234, 234);
}

.video {
    display: flex;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(27, 27, 27, .1);
    border-radius: 40px;
    height: 640px;
    margin-top: 100px;
}

.video video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}