main {
    margin: 0;
}

/* HERO */

div.hero {
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--wp--preset--color--thrifty-main);
}

div.hero {
    display: flex;
    height: 50vh;
}

.hero-image {
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

div.hero-tag-container {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}

div.hero-tag-spacer {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
}

div.hero-tag-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 130px;
    color: white;
}

.hero-tag {
    font-size: 4rem;
}

.hero-desc {
    font-family: 'Avenir';
    font-size: 1.3rem;
}

div.hero-tag-right {
    display: flex;
    align-items: center;
}

img.northernterritory {
    height: 80%;
}

@media (max-width: 600px) {
    .hero-desc {
        font-size: 1.2rem;
    }

    .hero-tag {
        font-size: 3rem
    }

    div.hero-tag-left {
        padding-top: 70px;
    }
}

@media (max-width: 1000px) {
    div.hero-tag-right {
        position: absolute;
        width: 100%;
        right: -30%;
        bottom: -20%;
    }

    img.northernterritory {
        width: 100%;
        opacity: 20%;
    }
}

/* Subtext sections */

div.outback-camping p.subtext,
div.locations p.subtext,
div.itineraries p.subtext {
    padding-top: 60px;
    font-family: 'Avenir';
    font-size: 1.2rem;
}

/* Outback Camping */

div.outback-camping {
    margin-top: 100px;
    text-align: center;
}

div.outback-camping p.subtext strong {
    font-weight: 600;
}

div.outback-camping-tips.container {
    /* margin-top: 20px; */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    row-gap: 50px;
    margin-block-start: 100px;
    font-family: 'Avenir';
}

div.outback-camping-tips > a{
    width: 45%;
    max-width: 280px;
}

@media (max-width: 600px) {
    div.outback-camping-tips.container {
        margin-block-start: 50px;
    }

    div.outback-camping-tips > a{
        width: 100%;
        max-width: unset;
    }
}

div.tips-card {
    border-radius: 20px;
    border: 1px solid #DEDEDE;
    cursor: pointer;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img.tips-image {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

div.tips-text {
    padding: 5px 0;
    font-size: 1.2rem;
}

/* Locations (explore nt) + Itinerary Commons */

div.locations {
    text-align: center;
    background-color: #F8F1E9;
    padding-top: 100px;
    padding-bottom: 100px;
}

div.outback-itineraries.container,
div.outback-locations.container {
    margin-top: 70px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-family: 'Avenir';
    row-gap: 30px;
}

div.it-card,
div.loc-card {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    max-width: 46%;
    cursor: pointer;
}

@media (max-width: 600px) {
    div.it-card,
    div.loc-card {
        max-width: unset;
    }
}

div.it-image-container,
div.loc-image-container {
    position: relative;
    display: flex;
    width: 100%;
    aspect-ratio: 1.573;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid #DEDEDE;
}

img.it-image,
img.loc-image {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    position: relative;
}

img.loc-copyright-ico,
img.it-copyright-ico{
    width: 15px;
    height: 15px;
}

div.loc-details {
    margin-top: 15px;
}

div.loc-text{
    margin-bottom: 5px;
}

div.loc-copyright,
div.it-copyright {
    font-size: 0.8rem;
    opacity: 40%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}


/* Itineraries (specific, except common stuff to Locations) */

div.itineraries {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

div.it-shadow{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .9) 100%);
}

div.it-text {
    position: absolute;
    font-weight: 800;
    color: white;
    font-size: 1.6rem;
    /* bottom: 20%; */
}

div.it-copyright {
    margin-top: 15px;
}