#hero {
    width: 100%;
    height: 657px;
    position: relative;
}
#hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;left:0;
    z-index: -1;
}
#hero::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;left: 0;
    z-index: 1;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));

}
#hero-content {
    position: relative;
    z-index: 100;
    padding-top: 90px;
}

#hero-content small, #hero-content p, #hero-content b, #hero-content h1 {
    color: var(--white);
    font-family: inherit;
}
#hero-content small {
    font-size: 16px;
    font-weight: 300;
}

#hero-content h1 {
    font-size: 71px;
}
#hero-content p {
    font-size: 22px;
    margin: 20px 0;
}

#hero-content .atd-main > a {
	width: fit-content;
    height: 44px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 9px;
    padding: 0 10px;
	cursor: pointer;
	margin: 20px 0;
}