* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root {
    --red: #A23136;
    --gray: #333333;
    --light-gray: #6A6B6F;
    --dark-red: #651F19;
}
body {
    color: #FFF;
    background-color: #FFF;
    font-family: "mundial", sans-serif;
    background-image: url(../images/redStick-BG.png);
    background-position: 75% 0;
    background-attachment: fixed;
    background-size: cover;
}
ul {
  list-style-position: inside;
  padding-left: 12px;
}
section {
    width: 100%;
    padding: 40px 0;
}
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}
a {
    text-decoration: none;
}
.spacer {
    padding-top: 200px;
}
.spacer-160 {
    padding: 280px 0;
}

nav {
    background-color: transparent;
    width: 100%;
    position: fixed;
    z-index: 10;
    box-shadow: 2px 4px 6px transparent;
    transition: all .4s linear;
    
}
nav.scrolled {
    background-color: var(--red);
    box-shadow: 2px 4px 6px rgb(0 0 0 / .35);
}
nav.different {
    background-color: var(--red);
}
.nav-bar {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 16px 8px;
    transition: all .4s linear;
    
}
.nav-bar.active {
    width: 90%;
}
.nav-brand {
    width: 100%;
    max-width: 230px;
    transition: all .4s linear;
}
.nav-brand.scrolled {
    max-width: 140px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-menu a {
    color: #FFF;
    text-transform: uppercase;
    font-weight: bold;
}
.main-logo {
    width: 100%;
    display: block;
    opacity: 1;
    transition: all .4s linear;
}
.alt-logo {
    width: 100%;
    display: none;
    opacity: 0;
    transition: all .4s linear;
}
.main-logo.scrolled {
    opacity: 0;
    display: none;
}
.alt-logo.scrolled {
    opacity: 1;
    display: block;
}
.red-link {
    background-color: var(--dark-red);
    padding: 16px;
    border-radius: 5px;
}
.fa-bars {
    color: #FFF;
    font-size: 30px;
}
.toggle-btn {
    display: none;
    position: absolute;
    top: 23px;
    right: 10px;
    
}

.main-home-area {
    background-image: linear-gradient(180deg, rgb(0 0 0 / .55), rgb(0 0 0 / .30)), url(../images/stick-house-3.jpg);
    background-position: 10% 45%;
    background-size: cover;
    background-repeat: none;
    min-height: 85vh;
    position: relative;
}
.main-home-area .container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: -63%;
}
.left-area {
    width: 100%;
    max-width: 650px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.left-area h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
.left-area p {
    font-size: 1.55rem;
}
.left-btn-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.left-btn-area a {
    background-color: #FFF;
    padding: 16px;
    color: #000;
    text-transform: uppercase;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 5px;
}
.right-area {
    width: 100%;
    max-width: 700px;
    padding: 12px;
}
.tip-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    background-color: #FFF;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 2px 4px 6px rgb(0 0 0 / .35);
}
.tip-card-video {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.youtube-video {
    width: 100%;
    height: 100%;
}
.card-info-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card-info-area h2 {
    color: var(--gray);
    font-size: 2.1rem;
}
.card-info-area p {
    font-size: 1.55rem;
    color: var(--light-gray);
}
.video-card-btn {
    font-size: 1.5rem;
    color: var(--light-gray);
    text-transform: uppercase;
    align-self: center;
}
.moto-area {
    background-color: var(--red);
    padding: 60px 0;
    
}
.p-special {
    font-style: italic;
    font-size: 2.25rem !important;
}


.review {
    height: 100vh;
}

.location-set, .privacy-area {
    padding-top: 205px;
}
.location-set .container {
    display: flex;
    justify-content: space-evenly;
}
.location-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.location-area a {
    color: #3e3e3e;
    padding: 6px;
    border: 1px solid #3e3e3e;
    cursor: pointer;
    background-color: transparent;
    text-transform: uppercase;
    border-radius: 5px;
    width: 220px;
    text-align: center;
}
.location-left {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #3e3e3e;
}

.location-right {
    width: 100%;
    max-width: 800px;
}
.g-mapped {
    border: 4px solid var(--red);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 2px 4px 8px rgb( 0 0 0 / .35);
}

.contact-us {
    background-image: linear-gradient(rgb( 0 0 0 / .55), rgb( 0 0 0 / .55)), url(../images/couple-finance.jpg);
    background-position: 55% 40%;
    background-size: cover;
    background-repeat: no-repeat;
    
}
.contact-us .container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.contact-us .left-area {
    justify-content: center;
}
.left-area h3 {
    font-size: 2.8rem;
}
.contact-us .left-area p {
    font-size: 2rem;
}
#contact-card {
    width: 100%;
    max-width: 600px;
    background-color: #FFF;
    padding: 16px;
    color: var(--gray);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 5px;
    box-shadow: 2px 4px 6px rgb(0 0 0 / .35);
}
.contact-logo {
    display: block;
    align-self: center;
    width: 100%;
    max-width: 220px;
}
#contact-card h4 {
    font-size: 2rem;
}
.form-input {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.form-input.stack {
    display: flex;
    flex-direction: column;
    gap: 3px !important;
}
#contact-card label {
    width: 100%;
}
#contact-card input[type="text"], #contact-card input[type="tel"] {
    width: 50%;
    padding: 12px 8px;
}
#contact-card input[type="email"], #contact-card select, #contact-card textarea {
    width: 100%;
    padding: 12px 8px;
}
#contact-card input[type="submit"] {
    width: 100%;
    background-color: var(--red);
    color: #FFF;
    padding: 12px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}



.page-headers {
    background-color: var(--red);
    
}



/***MORTGAGE PAGE***/
.mortgage-area {
    
    background-color: #FFF;
}
.martgage-area iframe {
    background-color: transparent;
}



.privacy-area {
    color: #000000;
}
.privacy-area h2 {
    font-size: 1.85rem;
}
.privacy-area p {
    padding: 4px 0 10px;
}
.privacy-area ul {
    padding: 12px;
}
.area-title {
    font-size: 1.25rem;
    padding: 8px 0;
}

.to-top-btn {
    background-color: var(--red);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 3%;
    right: 3%;
    transition: all .4s linear;
    cursor: pointer;
}
.ti-top-btn svg {
    fill: #FFF;
}
.to-top-btn.scrolled {
    display: flex;
}

footer {
    background-color: var(--gray);
    padding: 80px 8px 20px;
    
}
footer .container {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
}
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-left p {
    padding: 6px;
    font-weight: bold;
    background-color: #FFF;
    color: var(--gray);
    border-radius: 3px;
}
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-menu {
    display: flex;
    align-items: center;
    align-self: end;
    gap: 20px;
}
.footer-menu a, .footer-special a {
    color: #FFF;
    font-size: .85rem;
}
.footer-bottom {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 2px solid #CCC;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-special {
    display: flex;
    align-items: center;
    gap: 8px;
}
.designer-tag {
    display: flex;
    align-items: center;
    gap: 4px;
}
.designer-logo {
    display: block;
    width: 45px;
}

.get-the-notice {
    position: fixed;
    left: 0;
    bottom: -100%;
    width: 100%;
    background-image: linear-gradient(rgb(0 0 0 / .75));
    transition: bottom 1s;
}
.get-the-notice.active {
    bottom: 0;
}
.get-the-notice .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.2rem;
}

.privacy-btn {
    background-color: #FFF;
    font-size: 1.05rem;
    width: 100%;
    max-width: 180px;
    padding: 12px 16px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgb( 0 0 0 / .35);
    cursor: pointer;
}
.more-details {
    display: none;
}
.message-area {
    text-align: center;
    width: 100%;
    background-color: #FFE6E5;
    border-radius: 5px;
    padding: 12px 8px;
    animation: goAway 3s linear forwards;
    
}
.success-text {
    color: #3f943b;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    
}

@keyframes goAway {
    0%, 90% {
        opacity: 1;
        
    }
    100% {
        opacity: 0;
        
    }
}

@keyframes navChange {
    from {
        max-width: 1400px;
    }
    to {
        max-width: 1600px;
    }
}

@media screen and (max-width: 1250px) {
    nav {
        background-color: var(--red);
        box-shadow: 2px 4px 6px rgb(0 0 0 / .35);
    }
    .nav-bar {
        width: 90%;
        flex-direction: column;
        gap: 1rem;
    }
    .nav-brand {
        max-width: 140px;
        align-self: flex-start;
    }
    .main-logo {
        opacity: 0;
        display: none;
    }
    .alt-logo {
        opacity: 1;
        display: block;
    }
    .toggle-btn {
        cursor: pointer;
        display: inherit;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
    }
    .nav-menu.active {
        display: flex;
    }
    .main-home-area {
        min-height: 85vh;    
    }
    .main-home-area .container {
        position: static;
        left: 0;
        transform: translate(0, 0);
        bottom: 0;
        padding-top: 90px;
    }
    .location-set .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .location-set, .privacy-area {
        padding-top: 100px;
    }
    .spacer {
        padding-top: 80px;
    }
}
@media screen and (max-width: 1000px) {
    .main-home-area .container {
        flex-direction: column;
        align-items: center;
    }
    .contact-us .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .left-area {
        align-items: center;
    }
    .right-area {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 900px) {
    .left-area h3 {
        font-size: 2.4rem;
    }
    footer .container {
        flex-direction: column;
        justify-content: center;
    }
    .footer-menu {
        align-self: center;
    }
}
@media screen and (max-width: 480px) {
    .left-area h1 {
        font-size: 2.85rem;
    }
    .footer-left {
        width: 100%;
        max-width: 480px;
        display: flex;
        
        align-items: center;
        justify-content: center;
        
    }
    .footer-logo {
        width: 90%;
        display: block;
        margin: 0 auto;
    }
    .footer-menu {
        gap: 8px;
    }
    .footer-right p {
        font-size: .80rem;
    }
    .footer-menu a {
        font-size: .80rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
    .left-area h3 {
        font-size: 1.95rem;
    }
    .card-info-area {
       text-align: center;
    }
    .card-info-area h2 {
        font-size: 1.85rem;
    }
    .card-info-area p {
        font-size: 1.25rem;
    }
    .privacy-area h2 {
        font-size: 1.5rem;
    }
}
