.hero {
    position: relative;
    outline: 10px solid white;
    outline-offset: -10px;
    height: calc(100vh - 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero .container.show-menu {
   z-index: 0;
}

.hero h1 {
    font-size: 3.1rem;
    color: white;
    width: 50rem;
}

.hero p {
    font-size: 1.1rem;
    color: white;
    width: 40rem;
}

.hero a {
    background: #fff;
    color: #000;
    padding: 14px 54px 12px;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    height: fit-content;
    align-self: flex-end;
    transition: 0.2s all;
    width: 100%;
    text-align: center;
}

.hero-form-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    width: 22rem;
    transition: 0.2s all;
}
.hero-form-wrap.active {
    bottom: calc(-5rem + 10px);
}
.request-quote.active {
    border-radius: 6px 6px 0 0px;
}
.slide-form {
    display: none;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    background: rgba(0, 0, 0, 0.55);
    padding: 1rem 2rem 0.5rem;
    z-index: 1;
    width: 22rem;
}
.slide-form .gform_wrapper form {
    background: transparent;
    border-radius: 0;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

.hero .slide-form p.gform_description {
    font-size: 0.8rem;
    padding: 0 2rem;
    width: auto;
    line-height: 140%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.hero .slide-form .gform_wrapper.gravity-theme .gfield input.large,
.hero .slide-form .gform_wrapper.gravity-theme .gfield textarea {
    width: 100%;
    color: white !important;
    border: 1px solid rgba(9, 9, 9, 0.30);
    background: rgba(255, 255, 255, 0.08);
    padding: 12px !important;
}

body .hero .slide-form .gform_wrapper.gravity-theme .gfield_label, body .hero .slide-form body .gform_wrapper.gravity-theme .ginput_complex label {
    margin-bottom: 0;
    color: white;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

body .hero .slide-form .gfield--type-textarea {
    margin-top: 0;
}

/* SERVICES */

.boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.box {
    position: relative;
    height: 15rem;
}
.box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    z-index: -1;
}
.box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    border-radius: 6px;
    background: rgba(0,0,0,0.5);
}
.box-content {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box-content p {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.44px;
}
.box-content a {
    background: #CAD2D2;
    border-radius: 50px;
    display: flex;
    width: 43px;
    height: 43px;
    justify-content: center;
    align-items: center;
    transition: 0.2s all;
}
.box-content a:hover {
    width: 50px;
}

.box-bullets {
    margin: 0;
    margin-top: 0.5rem;
    border-radius: 6px;
    background: rgba(202, 210, 210, 0.20);
    padding: 10px 15px 10px 30px;
    gap: 5px;
    list-style-position: outside;
    font-size: 0.85rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    line-height: 128%;
}

/* TESTIMONIALS */
.testimonials {
    width: 38rem;
}
.testimonial {
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 6rem;
    color: white;
    position: relative;
    height: 30rem;
    width: 38rem;
}
.testimonial .testimonial-box {
    background: white;
    padding: 3rem 1rem;
    border-radius: 16px;
    border: 2px solid #CAD2D2;
    width: 100%;
    height: 100%;
    position: relative;
    font-size: 0.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: black;
}
.testimonial i.fa-quote-left {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(0% - 37px);
    height: 64px;
    width: 64px;
    text-align: center;
    font-size: 2rem;
    color: white;
    background: #CAD2D2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonial .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.8rem;
}
.testimonial .testimonial-box p {
    font-size: 0.85rem;
    margin-top: 1rem;
}