/*
Theme Name: ATM On Demand
Theme URI:
Author:
Author URI: 
Description:
Version: 1.0
*/

/* Root
------------------------------ */

:root {
    /* Main Colors */
    --white: #fff;
    --black: #000;
    --light: #f3f4f5;
    --text-color: #808b98;
    --main: #081a15;
    --highlight: #40916c;
    --highlight-dark: #2e6a50;
    --dark-border: #e5e7e9;

    /* Fonts */
    /* --font-main: "Montserrat", sans-serif; */
    --font-main: "Outfit", sans-serif;
    --font-awesome: "Font Awesome 6 Pro";

    /* Text Sizes */
    --text-2xs: 10px;
    --text-xs: 14px;
    --text-sm: 16px;
    --text-base: 18px;
    --text-lg: 20px; 
    --text-xl: 24px;
    --text-2xl: 32px;
    --text-3xl: 40px;
    --text-4xl: 48px;

    /* Box Shadow */
    --shadow: 0px 0px 1.6px rgba(0, 0, 0, 0.044), 0.1px 0px 4.4px rgba(0, 0, 0, 0.06), 0.3px 0px 10.6px rgba(0, 0, 0, 0.066), 1px 0px 35px rgba(0, 0, 0, 0.08);
}

/* General
------------------------------ */

body, html {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: var(--text-base);
    color: var(--main);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
}
p {
    line-height: 1.625em;
    color: var(--text-color);
}
a {
    text-decoration: none;
}
.container {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}
.section-container {
    position: relative;
    padding: 50px 30px;
    box-sizing: border-box;
}
.section-partial {
    position: relative;
    z-index: 1;
}
.main-title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}
.main-title h2 {
    margin: 0;
    margin-bottom: 10px;
    font-size: var(--text-base);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--highlight);
}
.main-title h2::before,
.main-title h2::after {
    content: "—";
}
.main-title h2::before {
    padding-right: 5px;
}
.main-title h2::after {
    padding-left: 5px;
}
.main-title h3 {
    margin: 0;
    font-size: var(--text-2xl);
    color: var(--main);
}
.main-title.light h2 {
    color: var(--white);
}
.main-title.light h3 {
    color: var(--text-light);
}

/* Section Content
------------------------------ */

.section-content {
    position: relative;
}
.section-content :first-child {
    margin-top: 0;
}
.section-content :last-child {
    margin-bottom: 0;
}
.section-content h1,
.section-content h2 {
    font-size: var(--text-2xl);
    color: var(--main);
}
.section-content h3,
.section-content h4,
.section-content h5,
.section-content h6 {
    color: var(--main);
}
.section-content a {
    color: var(--highlight);
}
.section-content a:hover {
    color: var(--highlight-dark);
}
.section-content ul,
.section-content ol {
    font-weight: 500;
    color: var(--text-color);;
}
.section-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.section-content blockquote {
    display: block;
    margin: 0;
    padding: 30px;
    font-size: 16px;
    border-radius: 10px;
    background-color: var(--light);
}
.section-content blockquote :first-child {
    margin-top: 0;
}
.section-content blockquote :last-child {
    margin-bottom: 0;
}
.section-content hr {
    border: none;
    border-bottom: 2px solid var(--light);
}

/* Buttons
------------------------------ */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    line-height: 48px;
    border: 1px solid;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
}
.cta-button::after {
    position: relative;
    content: "\f061";
    padding-left: 15px;
    font-family: var(--font-awesome);
    font-size: var(--text-sm);
    font-weight: 600;
}
.cta-button.no-icon::after {
    content: unset;
}
.cta-button.phone::after {
    content: "\f879";
}
.cta-button.locations::after {
    content: "\f3c5";
}
.cta-button strong {
    font-weight: 800;
}
.cta-button.nohover {
    cursor: default;
}
.cta-button.highlight {
    border-color: var(--highlight);
    color: var(--white);
    background-color: var(--highlight);
}
.cta-button.highlight:hover {
    border-color: var(--highlight-dark);
    background-color: var(--highlight-dark);
}
.cta-button.highlight.nohover{
    border-color: var(--highlight) !important;
    background-color: var(--highlight) !important;
}

/* Header
------------------------------ */
.header {
    position: relative;
}
.header .section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    height: 75px;
}
.nav-locations {
	display: flex;
	column-gap: 15px;
	align-items: center;
}
.nav-links {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-links a {
	color: var(--main);
}
.nav-links a:hover {
	color: var(--highlight);
}
.nav-logo {
    height: 42px;
    font-size: var(--text-2xl);
    color: var(--white);
}
.nav-logo img {
    height: 100%;
}

/* About
------------------------------ */
.about {
    position: relative;
}

/* Locations
------------------------------ */
.locations {
    position: relative;
    background-color: var(--light);
}
.locations.white {
    background-color: transparent !important; 
}
.locations-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
    column-gap: 30px;
}
.location-item {
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--dark-border);
}
.location-item:first-child {
    border: none;
}
.location-title h3 {
    text-align: center;
    margin: 15px 0;
	color: var(--main) !important;
}
.location-images {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    outline: none;
}
.location-images img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.location-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 10px;
    bottom: 10px;
    left: 50%;
    border-radius: 10px;
    transform: translateX(-50%);
    box-shadow: var(--shadow);
    background-color: var(--white);
}
.location-info p {
    color: var(--text-color);
}
.info-block {
    position: relative;
    display: block;
}
.info-block p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--text-color);
}
.info-title {
    display: inline-block;
    margin: 0;
    margin-bottom: 5px;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--highlight);
}
.info-block .address {
    margin-left: 18px;
}
.info-block .address::before {
    position: absolute;
    content: "\f3c5";
    left: 0;
    font-family: var(--font-awesome);
    font-weight: 900;
    color: var(--highlight);
}
.info-block .phone {
    margin-left: 18px;
}
.info-block .phone::before {
    position: absolute;
    content: "\f879";
    left: 0;
    font-family: var(--font-awesome);
    font-weight: 900;
    color: var(--highlight);
}

/* Map
------------------------------ */
.map {
    position: relative;
    background-color: var(--light);
}
.map-container iframe {
	width: 100% !important;
}

/* FAQs / FAQ
------------------------------ */

.faqs {
    position: relative;
}
.faqs-grid {
    position: relative;
    display: grid;
    row-gap: 30px;
}
.faq-item {
    position: relative;
    overflow: hidden;
    background-color: var(--light);
    border-radius: 10px;
}
.faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    cursor: pointer;
}
.faq-item.active .faq-question {
    color: var(--highlight);
}
.faq-question h3 {
    margin: 0;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--main);
}
.faq-button {
    position: relative;
    margin-left: 30px;
    cursor: pointer;
}
.faq-button::before {
    display: block;
    content: "\2b";
    width: 20px;
	font-family: var(--font-awesome);
	font-weight: 900;
    position: relative;
    font-size: var(--text-2xs);
    text-align: center;
    line-height: 20px;
    border-radius: 100%;
    color: var(--white);
    background-color: var(--main);
}
.faq-question:hover h3{
    color: var(--highlight);
}
.faq-question:hover ::before {
    background-color: var(--highlight);
}
.faq-item.active .faq-question h3 {
    color: var(--highlight);
}
.faq-item.active .faq-button::before {
    content: "\f068";
    background-color: var(--highlight);
}
.faq-answer {
    position: relative;
    display: none;
    padding: 30px;
    border-top: 2px solid var(--dark-border);
}
.faq-answer p {
    margin: 0;
    font-size: var(--text-sm);
}

/* Footer
------------------------------ */
footer {
    position: relative;
    background-color: var(--main);
}
footer .section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--white);
}
.footer-info {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
footer .info-block p {
    color: var(--white);
}
.footer-phone {
    position: fixed;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 48px;
    border: 1px solid var(--highlight);
    font-family: var(--font-main);
    font-size: var(--text-base);
    font-weight: 500;
    box-sizing: border-box;
    color: var(--white);
    background-color: var(--highlight);
}

/* Safety
------------------------------ */
.safety {
    position: relative;
    text-align: center;
    background-color: var(--highlight);
}
.safety h3 {
    margin: 0;
    margin-bottom: 5px;
    font-size: var(--text-2xl);
    color: var(--white);
}
.safety p {
    margin: 0;
    color: var(--dark);
}
.safety a {
    color: var(--white);
}

/* Media Queries
------------------------------ */

@media screen and (max-width: 550px) {
    .header .section-container {
        justify-content: center;
    }
    .nav-locations {
        display: none;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    footer {
        margin-bottom: 50px;
    }
    .footer-phone {
        display: block;
    }
}