body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: #F8F3EB;
}
a {
    text-decoration: none;
    color: inherit;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

.vertical-line {
    min-height: 0;
    width: 1px;
    background: black;
    margin: 0 auto;
}

/* Hero / Home */
#home {
    background: #f8f3eb url('../img/hero-bg-overlay.webp') no-repeat bottom center;
    background-size: cover;
    min-height: 800px;
    width: 100%;
}
#home .navbar-brand img {
    max-width: 200px;
}
@media screen and (max-width: 768px) {
    #home {
        background-position: top left;
    }
}

/* Four steps section */
#four-steps {
    background: linear-gradient(to bottom, #F8E4B5, #F8F3EB);
}
.step-number {
    position: relative;
}
.step-number-inner {
    z-index: 1;
    position: relative;
    font-size: 4rem;
    font-weight: 800;
    color: #4c4840;
    left: 15px;
    bottom: -10px;
}
.step-number::before {
    content: '';
    position: absolute;
    z-index: 0;
    width: 70px;
    height: 70px;
    left: -20px;
    bottom: 0;
    background: #74B8BE;
    border-radius: 50%;
}

/* Services / Attorney accent */
.bg-accent {
    background-color: #CADFDC;
}

/* Calendly embed */
#calendly-embed {
    position: relative;
}
#calendly-embed::before {
    content: '';
    position: absolute;
    top: -30px;
    right: 0;
    width: 150px;
    height: 250px;
    background-color: #CADFDC;
    border-radius: 5px;
}
.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
}

/* Testimonials */
.box-testi {
    background: url('../img/box-testi.png') no-repeat center left;
    position: relative;
}
.box-testi .card {
    background-color: #74B8BE;
    border: none;
}
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 50px;
    right: 0;
}
.arrow-navs {
    background-color: transparent;
    border: 1px solid #DAC099;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 2rem;
    color: #94572F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact */
.bg-contact-info {
    background: url('../img/bg-contact-info.png') no-repeat bottom right;
    background-size: cover;
    border-radius: 10px;
}
.bg-contact-info .hr-opacity-1 {
    opacity: 1;
}

/* Contact form */
#contactForm .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid black;
    padding: 10px;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 300;
    color: #4c4840;
}