/* TopBar */
.topbar{
    background: #404A53;
    padding-top: 5px;
    padding-bottom: 5px;
}

.topbar a{
    color: #FFFFFF;
}

/* Navbar */
nav.navbar{
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 4px solid #F77C0B;
}

img.logo{
    width: 140px;
}

/* Hero */
.hero_section{
    background: linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ),
    url('../images/hero.webp') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-white{
    color: #FFFFFF;
}

/* Services */
.services{
    background: #F77C0B;
    padding-top: 20px;
    padding-bottom: 20px;
}

.border-left{
    border-left: 1px solid #fff;
}

.border-right{
    border-right: 1px solid #fff;
}

.services a{
    color: #FFFFFF;
}

/* Parking Solutions */
.no-border{
    border: none;
    border-radius: 0px;
}

.bg-gray{
    background: #404A53;
}

.gray-card{
    padding: 30px;
}

.gray-card h3{
    color: #FFFFFF;
}

.gray-card p{
    color: #FFFFFF;
}

.white-card{
    padding: 30px;
}

.white-card h3{
    color: #404A53;
}

.white-card p{
    color: #404A53;
}

.card-height{
    height: 135px;
}

/* CTA */
.cta{
    background: #F77C0B;
    padding-top: 2%;
    padding-bottom: 2%;
}

.btn-white, .btn-white:hover{
    background: #FFFFFF;
    border-radius: 10px;
    padding: 10px 30px;
}

.btn-orange, .btn-orange:hover{
    background: #F77C0B;
    border-radius: 10px;
    padding: 10px 30px;
    color: #FFFFFF;
}

/* Footer */
.footer{
    background: #404A53;
}

.footer a, .footer p{
    color: #FFFFFF;
}

/* Terms and Conditions Page */
.tandc p{
    padding-bottom: 7px;
}

.padding_left{
    padding-left: 5%;
}

@media screen and (max-width:1366px) {
    .card {
        height: 169px;
    }
}

@media screen and (max-width:1024px) {
    .card {
        height: 200px;
    }

    .hero_section{
        height: 50vh;
    }
}

@media screen and (max-width:768px) {
    .services a{
        font-size: 15px;
    }

    .gray-card, .white-card {
        padding: 20px;
    }

    .card {
        height: 222px;
    }

    .hero_section h1{
        font-size: 35px;
    }

    .cta{
        padding-top: 5%;
        padding-bottom: 5%;
    }
}

#show_mobile{
    display: none;
}

@media screen and (max-width: 520px) {
    #show_mobile{
        display: block;
    }

    #hide_mobile{
        display: none;
    }

    .services{
        padding: 40px 20px;
    }

    .card {
        height: 140px;
    }

    .cta {
        padding-top: 10%;
        padding-bottom: 10%;
    }

    .mobile_padding{
        padding-top: 4%;
    }

    .hero_section h1 {
        font-size: 30px;
    }

    .mobile_width{
        width: 50%;
    }

    .topbar a{
        font-size: 11px;
    }

    .padding_top{
        padding-top: 4%;
    }
}

/* Contact Us Page */
.title_section{
    background: linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ),
    url('../images/hero.webp') center/cover no-repeat;
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
}