#testimonial {
    color: #fff;
    background-image: url(../img/testimonials_bg.png);
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 50px 0 0;
}

#testimonial .container {
    position: relative;
    padding-bottom: 50px;
}

#testimonial .top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

#testimonial .top img {
    width: 300px;
    position: relative;
    bottom: auto;
    right: auto;
}

#testimonial h1 {
    color: #fff;
    font-family: 'Futura Std Condensed';
    font-size: 5rem;
    font-weight: 700;
}

#testimonial h2 {
    color: #fff;
    font-family: 'Futura Std Condensed';
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
}

#testimonial h3 {
    color: #fff;
    font-family: 'Futura Std Condensed';
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

#testimonial li {
    font-size: 1rem;
    line-height: 1.25rem;
}

#testimonial li a {
    color: #fff;
    text-decoration: underline;
}

#testimonial p a {
    color: #fff;
    text-decoration: underline;
}

#testimonial h1 span {
    display: inline-block;
    background-color: #EEB927;
    color: #fff;
    padding: 5px;
    transform: rotate(-3deg);
}

#testimonial p {
    font-size: 1rem;
    line-height: 1.25rem;
}

#testimonial img {
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 35%;
}

#testimonial .btn {
    margin-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #EEB927;
}

#testimonial .form {
    margin-top: 30px;
}

#testimonial .form-control {
    color: #fff;
    background: none;
    border: solid 1px rgba(255, 255, 255, .5)
}

#testimonial .form-select {
    color: #fff;
    background-color: transparent;
    border: solid 1px rgba(255, 255, 255, .5)
}

#testimonial .form option {
    color: #000;
}

#testimonial .form-text {
    font-size: .8rem;
    color: #fff
}

#testimonial .form-label {
    font-size: 1rem;
    color: #fff
}

#testimonial textarea.form-control {
    min-height: 150px;
}

#testimonial ::placeholder {
    color: #fff;
    opacity: 1;
    /* Ensures full color in Firefox */
}

/* Mozilla Firefox (older versions) */
#testimonial :-moz-placeholder {
    color: #fff;
    opacity: 1;
}

/* WebKit browsers (Chrome, Safari, older Edge) */
#testimonial ::-webkit-input-placeholder {
    color: #fff;
}

/* Internet Explorer 10 and 11 */
#testimonial :-ms-input-placeholder {
    color: #fff;
}

#testimonial .error {
    margin-top: 5px;
    font-size: .8rem;
    color: #ff0000;
    display: block;
    background-color: #fff;
    padding: 5px
}

#testimonial .error:empty {
    display: none;
}

@media (orientation: portrait) {
    #testimonial .top {
        display: block;
    }
    #testimonial h1{
        margin-bottom: 15px;
        font-size: 2.5rem;
    }
}