/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');

/* Global Resets */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Helper Classes */
.mx {
    margin: 0 auto;
}

.ml-2 {
    margin-left: 2rem;
}

.mb-3 {
    margin-bottom: 3.5rem;
}

.mt {
    margin-top: .75rem;
}

.mb {
    margin-bottom: .75rem;
}

.pl-20 {
    padding-left: 20px;
}

.line-orange {
    content: '';
    background-color: #CA9231;
    height: 2px;
    width: 102px;
}

.thick-line-orange {
    content: '';
    background-color: #CA9231;
    height: 3px;
    width: 50px;
}

.line-gray {
    content: '';
    background-color: #D1D3D4;
    height: 2px;
    width: 102px;
}

.line-sm {
    content: '';
    background-color: #CA9231;
    height: 2px;
    width: 60px;
}

.text-center {
    text-align: center;
}

.color-off-white {
    color: #C7CDD3;
}

/* Global styles */
html {
    font-family: Cinzel, Sans-Serif;
    font-weight: 700;
}

body {
    background-color: #F6F6F7;
}

a {
    text-decoration: none;
}

p {
    line-height: 1.6;
}

li {
    list-style: none;
}

i {
    transition: 0.4s all;
}

/* Home Page styles */

.nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 4rem 0 4rem;
    position: absolute;
    width: 100%;
    align-items: center;
    z-index: 5;
}

.nav-items {
    margin-left: auto;
    cursor: pointer;
    z-index: 5;
}

.nav-items > ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-items > ul > li > a {
    text-decoration: none;
    color: #FEFFFE;
    transition: 0.4s all;
}

.nav-items > ul > li > a:hover {
    transition: 0.4s all;
    color: #cbcccb;
}

#dropdown-icon {
    /* Makes closing dropdown transition smooth */
    transition: 0.4s all;
}

.dropdown > li > a {
    text-decoration: none;
    color: #FEFFFE;
    transition: 0.4s all;
}

.dropdown > li > a:hover {
    color: #cbcccb;
    transition: 0.4s all;
}

.dropdown-btn {
    margin-right: 1rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 22.5rem;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.show {
    display: block;
}

.dropdown-link {
    color: #334C68;
    text-decoration: none;
    padding: .8rem;
    display: block;
    text-align: left;
    transition: 0.4s all;
}

.dropdown-link:hover {
    color: #293d53;
    transition: 0.4s all;
}

.rotate {
    transform: rotate(180deg);
    transition: 0.4s all;
}

.rotateX {
    transform: rotateX(180deg);
    transition: 0.4s all;
}

.logo > a > img {
    height: 60px;
    width: auto;
}

.btn {
    background-color: #CA9230;
    padding: .75rem;
    transition: 0.4s all;
}

.btn:hover {
    background-color: #b6832b;
    transition: 0.4s all;
}

.hero {
    background: linear-gradient(90deg, rgba(24, 49, 78, 1) 0%, rgba(24, 49, 78, .75) 50%, rgba(24, 49, 78, .25) 100%), url(../assets/images/utah-retirement-plan-options.png) center center / cover no-repeat;
    height: 100vh;
    max-height: 920px;
    color: #fff;
    min-height: 600px;
}

.hero-content {
    position: relative;
    margin-left: 14rem;
    margin-right: 14rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 600px;
    top: 0 !important;
}

.hero-content > h1 {
    font-size: clamp(4rem,4.5vw,5rem);
}

.hero-paragraph {
    font-weight: 500;
    font-size: .95rem;
}

.consultation-btn {
    text-decoration: none;
    color: #fff;
    padding: .75rem 1rem .75rem 1rem;
    max-width: fit-content;
}

.about-section {
    padding: 10rem;
    min-height: 600px;
    display: flex;
    color: #334C68;
    justify-content: center;
    align-items: center;
}

.about-content > h1 {
    margin-bottom: 2rem;
    max-width: 600px;
}

.about-content > p {
    font-family: 'PT Serif', serif;
    margin-top: 1.25rem;
    margin-right: 12rem;
    margin-bottom: 3.25rem;
    color: #707F91;
}

.learn-more-btn {
    font-family: 'PT Serif', serif;
    text-decoration: none;
    color: #CA9231;
    font-weight: 700;
    transition: 0.4s all;
}

.learn-more-btn:hover {
    transition: 0.4s all;
    color: #b6832c;
}

.process-section {
    background-color: #23405D;
}

.process {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.process-section > h1 {
    color: #FEFFFE;
    font-family: 'PT Serif', serif;
    font-size: 2.75rem;
    padding-top: 8.313rem;
    padding-bottom: 5.75rem;
    margin-left: 18.25rem;
}

.card-process {
    background-color: #fff;
    max-width: 280px;
    /*max-height: fit-content;*/
    margin-bottom: 10rem;
    height: 465px;
}

.card-process > .container > h3 {
    color: #26425F;
    margin-bottom: 1rem;
}

.card-process > .container > p {
    font-size: .9rem;
    font-family: 'PT Serif', serif;
    color: #637587;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.card-process > .container > a {
    font-family: 'PT Serif', serif;
    font-weight: bold;
    text-decoration: none;
    color: #CA9231;
    transition: 0.4s all;
}

.card-process > .container > a:hover {
    color: #b6832c;
    transition: 0.4s all;
}

.container {
    margin: 1.25rem;
}

#read-btn, #read-btn1, #read-btn2 {
    transition: 0.4s all;
}

#read-btn:hover, #read-btn1:hover, #read-btn2:hover {
    cursor: pointer;
    color: #b6832c;
    transition: 0.4s all;
}

#more, #more1, #more2 {
    display: none;
}

.card-img {
    width: 100%;
    max-width: 283px;
    max-height: 160px;
}

.meet-section {
    margin: 9rem 14.75rem;
    display: flex;
    gap: 6rem;
    justify-content: center;
    align-items: center;
}

.meet-img > img {
    max-width: 345px;
    height: auto;
    margin-bottom: -.1rem;
}

.meet-content > h3 {
    color: #26425F;
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
}

.meet-content > p {
    margin-top: 1.875rem;
    margin-bottom: 2.375rem;
    color: #8492A1;
}

.meet-link {
    text-decoration: none;
    color: #CA9231;
    transition: 0.4s all;
}

.meet-link:hover {
    color: #b6832c;
    transition: 0.4s all;
}

.reviews-section {
    padding-top: 4.813rem;
    padding-bottom: 5.563rem;
    background-color: #FEFFFE;
    min-height: 490px;
}

.reviews-section > h1 {
    color: #23405D;
}

.reviews-section > p > span {
    color: #23405D;
}

.reviews-paragraph {
    font-family: 'PT Serif', serif;
    color: #99A2B0;
}

.stars-text {
    color: #CB9330;
}

.stars-img {
    max-height: 16px;
    margin-right: 1rem;
}

.reviews {
    margin-top: 5.375rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.card-review {
    /*max-height: 348px;*/
    /*max-width: 432px;*/
    height: 348px;
    width: 432px;
    box-shadow: 1px 7px 10px 0px rgba(0, 0, 0, 0.39);
    -webkit-box-shadow: 1px 7px 10px 0px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: 1px 7px 10px 0px rgba(0, 0, 0, 0.39);
    /* For testing */
    overflow: hidden;
}

.card-review > img {
    /*width: 100%;*/
    max-width: 92px;
    height: auto;
    border-radius: 50%;
    margin: 2rem;
}

.reviewer-name {
    color: #26425F;
}

.reviewer-subheading {
    color: #445A71;
    font-weight: 500;
}

.reviews-text {
    font-family: 'PT Serif', serif;
    color: #445A71;
    padding: 2rem 2rem 3rem 2rem;
}

.contact-section {
    min-height: 31.563rem;
    background: linear-gradient(90deg, rgba(24, 49, 78, 1) 0%, rgba(24, 49, 78, .7) 100%), url(../assets/images/regents-park-advisors.jpeg) center center / cover no-repeat;
}

.contact-section > h3 {
    font-size: 1.75rem;
    color: #FEFFFE;
    padding-top: 6.25rem;
    margin-bottom: 1.438rem;
}

.contact-section > p {
    color: #D6DADF;
    margin-bottom: 1.875rem;
    font-size: .75rem;
}

.contact-form {
    display: flex;
    gap: .75rem;
    flex-direction: column;
    align-items: center;
}

.contact-form > input[type=text], input[type=email], .contact-form > textarea {
    font-family: 'PT Serif', serif;
    width: 40%;
    padding: .5rem;
}

.contact-form > input[type=submit] {
    padding: .75rem 1rem .75rem 1rem;
    border: none;
    color: #fff;
    margin-top: 1.438rem;
    margin-bottom: 5.875rem;
    font-family: 'Cinzel', sans-serif;
}

.contact-form > input[type=submit]:hover {
    cursor: pointer;
}

.footer {
    background-color: #18304F;
    font-family: 'PT Serif', serif;
    color: #C7CDD3;
    display: flex;
    justify-content: space-around;
    padding-top: 2.938rem;
    padding-bottom: 3.188rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.footer-info > h4 {
    font-size: .90rem;
    font-family: 'Cinzel', sans-serif;
    color: #FEFFFE;
}

.services > h4, .contact > h4 {
    font-size: .9rem;
    font-family: 'Cinzel', sans-serif;
    margin-bottom: .25rem;
}

.footer-link {
    font-size: .9rem;
    font-weight: normal;
    text-decoration: underline;
    transition: 0.4s all;
}

.footer-link:hover {
    color: #9fa4a9;
    transition: 0.4s all;
}

.footer-nav {
    display: flex;
    gap: 5rem;
}

.footer-icon {
    margin-right: .5rem;
    height: 10px;
}

.footer-line {
    content: '';
    background-color: #304761;
    height: 2px;
    width: 75%;
    margin: 0 auto 1.125rem;
}

.designed-by-section {
    background-color: #18304F;
    font-family: 'PT Serif', serif;
    font-size: .75rem;
    font-weight: normal;
    padding-bottom: 1.125rem;
}

/* About Page */
.hero-about {
    background: linear-gradient(90deg, rgba(24, 49, 78, 1) 0%, rgba(24, 49, 78, .7) 100%), url(../assets/images/regents-park-insurance-professionals.jpg) center center / cover no-repeat;
    height: 350px; !important;
    min-height: 350px !important;
}

.hero-about .hero-content {
    min-height: 350px !important;
    padding-top: 70px;
}

.employee-about-section {
    margin-top: 7rem;
    margin-bottom: 7rem;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.card-about {
    max-height: fit-content;
    max-width: 432px;
    box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}

.card-about > img {
    max-width: 92px;
    height: auto;
    border-radius: 50%;
    margin: 2rem;
}

.card-about > a > img {
    max-width: 25px;
    height: auto;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.employee-info > img {
    max-width: 92px;
    height: auto;
    border-radius: 50%;
    margin: 2rem;
}

.employee-info {
    display: flex;
    align-items: center;
}

.about-name {
    color: #26425F;
}

.about-title {
    color: #455A70;
    font-weight: 500;
}

.about-text {
    font-family: 'PT Serif', serif;
    color: #445A71;
    padding: 2rem 2rem 3rem 2rem;
}

.more-about-us-section {
    background: linear-gradient(90deg, rgba(24, 49, 78, 1) 0%, rgba(24, 49, 78, .7) 100%), url(../assets/images/regents-park-advisors.jpeg) center center / cover no-repeat;
    max-height: fit-content;
    padding: 7.063rem 49.688rem 5.438rem 9.688rem;
}

.more-about-us-section > h2 {
    font-size: 2.5rem;
    color: #FEFFFE;
    font-family: 'PT Serif', serif;
    margin-bottom: 2.688rem;
    width: 700px;
    max-width: calc(100vw - 20rem);
}

.more-about-us-section > p {
    font-weight: normal;
    color: #FFFFFE;
    font-family: 'PT Serif', serif;
    margin-top: 1.75rem;
    margin-bottom: 2.25rem;
    width: 700px;
    max-width: calc(100vw - 20rem);
}

.more-about-us-section > a {
    font-family: 'PT Serif', serif;
    color: #CA9231;
    transition: 0.4s all;
    display: inline-block;
    width: 700px;
    max-width: calc(100vw - 20rem);
}

.more-about-us-section > a:hover {
    color: #b6832c;
    transition: 0.4s all;
}

.questions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.question {
    border: 2px solid #27425E;
    padding: 1rem;
    background-color: #F6F7F6;
    color: #27425E;
    transition: 0.4s all;
    width: 30rem;
    cursor: pointer;
}

.question-height {
    height: 57.6px;
    max-height: fit-content;
}

.question > i {
    float: right;
    padding-top: 3px;
}

.question-text {
    font-family: 'PT Serif', serif;
    font-weight: normal;
    color: #54687E;
    margin-bottom: .75rem;
}

.hidden {
    display: none;
}

/* Contact Page */
.hero-contact {
    background: linear-gradient(90deg, rgba(24, 49, 78, 1) 0%, rgba(24, 49, 78, .7) 100%), url(../assets/images/regents-park-advisors.jpeg) center center / cover no-repeat;
    height: 350px; !important;
    min-height: 350px !important;
}

.hero-contact .hero-content {
    min-height: 350px !important;
    padding-top: 70px;
}

.contactpage-section {
    background-color: #F6F6F7;
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
}

.contact-links {
    color: #26425F;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.info {
    margin-top: 8rem;
}

.info > img {
    width: 200px;
    height: auto;
}

.contact-page-card {
    background-color: #FEFFFE;
    display: inline-block;
    padding: .75rem;
    margin: 1rem .5rem 0;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 3px 8px;
}

#address {
    max-width: 16rem;
}

.faq-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #FEFFFE;
}

.faq-section > h2 {
    color: #27425E;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form {
    background-color: #FEFFFE;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 2rem;
    min-width: 30rem;
}

.form > h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-page-form {
    display: flex;
    gap: .75rem;
    flex-direction: column;
    align-items: center;
}

.contact-page-form > input[type=text], .contact-page-form > input[type=email], .contact-page-form > textarea {
    font-family: 'PT Serif', serif;
    width: 100%;
    padding: .5rem;
}

#contact-page-name, #contact-page-email {
    font-family: 'PT Serif', serif;
    width: 100%;
    padding: .5rem;
}

.contact-page-form > input[type=submit] {
    padding: .75rem 1rem .75rem 1rem;
    border: none;
    color: #fff;
    margin-top: 1.438rem;
    font-family: 'Cinzel', sans-serif;
}

.contact-page-form > input[type=submit]:hover {
    cursor: pointer;
}

.google-map-section {
    background: url(../assets/images/regents-park-salt-lake-city-utah.png) center center / cover no-repeat;
    min-height: 20rem;
}

/* Google Ad Page */
.ad-hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 600px;
}

.ad-hero-content > h1 {
    font-size:clamp(4rem,4vw,5rem);
}

.ad-hero-content > p {
    font-size: 1rem;
}

.ad-hero-content > .line-orange {
    margin: 1rem auto;
}

.ad-hero-content > .quote-btn {
    color: white;
    padding: .8rem;
}

.ad-hero-paragraph {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.review-bar {
    margin-top: -60px;
    background-color: #18314E;
}

.review-bar > p {
    color: #FEFFFE;
    padding: 1.25rem;
}

.quote-directions {
    text-align: center;
    padding: 4rem 30rem 6rem 30rem;
}

.quote-directions > p {
    font-family: 'PT Serif', serif;
    font-size: .9rem;
    text-align: center;
    color: #455A70;
}

.quote-directions > ol {
    font-family: 'PT Serif', serif;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin: 3.5rem auto;
    max-width: 50%;
    text-align: left;
    font-size: .9rem;
    color: #455A70;
    counter-reset: my-awesome-counter;
    list-style: none;
}

.quote-directions > ol > li {
    counter-increment: my-awesome-counter;
    position: relative;
}

.quote-directions > ol > li::before {
    content: counter(my-awesome-counter);
    color: #FEFFFE;
    font-size: .8rem;
    font-weight: bold;
    font-family: 'Cinzel', sans-serif;
    position: absolute;
    --size: 25px;
    left: calc(-1 * var(--size) - 25px);
    line-height: var(--size);
    width: var(--size);
    height: var(--size);
    top: 0;
    background: #CA9230;
    border-radius: 50%;
    text-align: center;
}

.quote-directions > ol > li::after {
    content: "";
    background: #CA9230;
    position: absolute;
    width: 3px;
    top: 24px;
    bottom: -82px;
    left: -40px;
}

.quote-directions > ol > li:last-child:after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
}

.quote-directions > .quote-btn {
    color: white;
    font-size: .8rem;
}

.quote-contact {
    min-height: 31.563rem;
    background: linear-gradient(90deg, rgba(24, 49, 78, 1) 0%, rgba(24, 49, 78, .7) 100%), url(../assets/images/regents-park-advisors.jpeg) center center / cover no-repeat;
}

.quote-contact > h2 {
    font-size: 1.75rem;
    color: #FEFFFE;
    padding-top: 6.25rem;
    margin-bottom: 1.438rem;
}

.quote-contact > p {
    color: #D6DADF;
    margin-bottom: 1.875rem;
    font-size: .75rem;
}

.quote-contact-btn {
    font-weight: bold;
}

/* Media Queries */
@media screen and (max-width: 1065px) {
    .hero-content {
        margin-left: 8rem;
    }

    .form {
        margin-top: 30px;
    }

    .hero-content > h1 {
        font-size: 4rem;
    }

    .hero-content > p {
        font-size: .9rem;
    }

    .consultation-btn {
        font-size: min(1.2rem,4vw);
    }

    .about-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-content {
        text-align: center;
    }

    .about-content > h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .about-content > .line-orange {
        margin: 0 auto;
    }

    .about-content > p {
        margin-right: 0;
        text-align: center;
    }

    .learn-more-btn {
        display: inline-block;
        margin-bottom: 1.25rem;
    }

    .process-section > h1 {
        margin-left: 0;
        text-align: center;
        font-size: 1.75rem;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .more-about-us-section > h2 {
        font-size: 2rem;
    }

    .more-about-us-section > p {
        font-size: .95rem;
    }

    .questions {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .questions-left > .question {
        width: 33.5rem;
        max-width: 33.5rem;
    }
}

@media screen and (max-width: 1290px) {
    .quote-directions {
        padding: 4rem 20rem 6rem 20rem;
    }
}

@media screen and (max-width: 1000px) {

    .nav-items {
        margin-left: 0;
    }
    .logo > a > img {
        height: 50px;
    }

    .nav {
        align-items: center;
    }

    .nav-list {
        font-size: .9rem;
    }

    .nav-items > ul {
        gap: 1rem;
    }

    .process-section {
        padding-bottom: 5rem;
    }

    .process {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .card-process {
        margin-bottom: 0;
    }

    .meet-section {
        flex-direction: column;
    }

    .meet-content {
        text-align: center;
    }

    .meet-content > h3 {
        text-align: center;
    }

    .meet-content > .line-gray {
        margin: 0 auto;
    }

    .meet-content > p {
        text-align: center;
    }

    .contact-form > input[type=text], input[type=email], .contact-form > textarea {
        width: 60%;
    }

    .quote-directions {
        padding: 4rem 10rem 6rem 10rem;
    }
}

@media screen and (max-width: 800px) {
    .nav {
        flex-direction: column;
        gap: 1.75rem;
    }

    .hero-content {
        margin-left: 5rem;
        margin-right: 5rem;
        top: 40px;
    }

    .hero-content > h1 {
        font-size: min(3.5rem,13vw);
    }

    .hero-content > p {
        font-size: 1.2rem;
    }

    .hero-paragraph {
        margin-bottom: 2rem;
    }

    .contact-form > input[type=text], input[type=email], .contact-form > textarea {
        width: 60%;
    }

    .footer {
        padding: 2rem;
    }

    .more-about-us-section > p {
        font-size: 0.75rem;
    }

    .question {
        font-size: .8rem;
    }

    .questions-left > .question {
        width: 29.5rem;
        max-width: 29.5rem;
    }

    .questions-right > .question {
        width: 29.5rem;
        max-width: 29.5rem;
    }

    .contactpage-section {
        flex-direction: column;
        align-items: center;
    }

    .info {
        margin: 3rem auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #hero-contact {
        margin-left: 11rem;
    }

    .quote-directions>ol>li {
        width: 700px;
        max-width: 200px;
    }

    .quote-directions>.quote-btn {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 670px) {
    .hero-content {
        margin-left: 6rem;
    }
    .hero-about h1 {
        font-size: 2rem;
    }
    .hero-contact h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 460px) {
    .nav {
        padding: 2rem 0 0 0;
    }

    .nav-list {
        font-size: .7rem;
    }

    .hero-content {
        margin-left: 2.5rem;
        margin-right: 2.5rem;
        top: 193px;
    }

    .about-section {
        padding: 4rem 4rem 2rem;
    }

    .about-title {
        padding-right: 0.25rem;
    }

    .process-section>h1 {
        padding-top: 3.313rem;
        padding-bottom: 2.75rem;
    }

    .meet-section {
        margin: 4.188rem 0 3.188rem 0;
        gap: 2rem;
    }

    .contact-section {
        padding-left: .5rem;
        padding-right: .5rem;
    }

    .contact-form > input[type=text], input[type=email], .contact-form > textarea {
        width: 90%;
    }

    .footer {
        padding: 1rem;
    }

    .employee-about-section {
        padding: 1rem;
    }

    .more-about-us-section > h2 {
        text-align: center;
    }

    .more-about-us-section > p {
        max-width: calc(100vw - 8rem);
        margin-left: -85px;
    }

    .more-about-us-section > a {
        max-width: calc(100vw - 8rem);
        margin-left: -85px;
    }

    #hero-contact {
        margin-left: 5rem;
    }

    .form {
        min-width: 20rem;
    }

    .questions-left > .question {
        width: 20.5rem;
        max-width: 20.5rem;
    }

    .questions-right > .question {
        width: 20.5rem;
        max-width: 20.5rem;
    }

    .ad-hero-content > h1 {
        font-size: 3rem;
    }

    .quote-directions {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .quote-directions>p {
        width: 700px;
        max-width: 250px;
    }

    .quote-directions > .quote-btn {
        display: inline-block;
        width: 150px;
    }

    #dropdown-icon {
        padding-top: 4px;
    }

    .dropdown-content {
        font-size: .6rem;
        min-width: 0;
        right: 9.75rem;
        margin-top: 0.2rem;
    }

    .more-about-us-section {
        padding: 2.063rem 49.688rem 2.438rem 8.688rem;
    }

    .footer-nav {
        gap: 2rem;
    }
}