html,
body {
    height: 100%;
    font-family: "Radley", serif;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 100%;
}

button {
    border-radius: 30px;
    opacity: 70%;
}

button:hover {
    opacity: 100%;
}

footer {
    background-color: #090909;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: white;
    flex-shrink: 0;
    padding: 20px;
}

footer a {
    color: white;
}

h2 {
    font-weight: 500;
    font-size: 1.75rem;
}

h3 {
    font-weight: 400;
    font-size: 1.4rem;
}

input {
    max-width: 400px;
    width: 35vw;
}

textarea {
    max-width: 400px;
    width: 40vw;
}

ul {
    list-style-type: none;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    filter: invert(1);
    height: 3rem;
    transform: translateY(-50%);
    width: 3rem;
}

.carousel-item a {
    color: black;
    font-size: larger;
    font-weight: 700;
}

.carousel-item a:hover {
    color: #3d843a;
    transition: 0.25s ease;
}

.service-container {
    text-align: center;
}

.topnav {
    align-items: center;
    background-color: #1c1c1c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: white;
    display: flex;
    font-style: normal;
    font-weight: 400;
    min-height: fit-content;
    height: 8vh;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 2;
}

.topnav-left-side {
    align-items: center;
    display: flex;
    font-size: 40px;
}

.topnav-left-side img {
    height: 6vh;
    width: auto;
}

.topnav-right-side a {
    align-items: center;
    color: white;
    font-size: 1.75rem;
    padding: 2vw;
}

.topnav-right-side a:hover {
    color: #3d843a;
    transition: 0.25s ease;
}

.review_stars {
    color: black;
    font-size: 2rem;
}

#about-lesser {
    font-size: 1.2rem;
    padding: 20px;
    text-align: center;
}

#about-main {
    font-size: 1.5rem;
    padding: 40px;
    text-align: center;
}

#contact a {
    color: #3d843a;
}

#contact form {
    text-align: center;
}

#content {
    padding-top: 8vh;
    flex: 1;
}

#content div {
    padding-top: 5vh;
}

#footer-contact {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

#footer-logo {
    height: 100px;
    width: auto;
}

#footer-nav {
    padding: 20px;
    text-align: center;
}

#home {
    padding-top: calc(8vh + 6vh);
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 5vh;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    color: black;
}

#home::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, white 100%);
    background-size: cover;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

#home::before {
    background-image: url("home_background.jpg");
    background-position: center;
    background-size: cover;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
}

#patient-info h3 {
    padding-top: 20px;
}

#patient-info,
#home#patient-info,
#contact {
    margin: 5vh 5vw;
}

#practice h2,
#practice p {
    margin: 5vh 5vw;
}

#practice {
    position: relative;
    min-height: fit-content;
    height: 90vh;
    overflow: hidden;
}

#practice::after {
    background: linear-gradient( to bottom, white 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, white 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

#practice::before {
    background-image: url("practice_background.jpg");
    background-position: center;
    background-size: cover;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
}

#review-carousel {
    text-align: center;
}

#short-intro {
    color: black;
    margin: 1vh 1vw;
    padding: 50px;
    padding-top: 15vh;
    text-align: center;
}

#short-intro p {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}