.hero {
    background-image: url(/assets/swartberg-02.jpg);
}

.moreAboutus {
    background-image: url(/assets/Swartberg03.jpg);
    padding: 5rem 0;
}

.hero,
.moreAboutus {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero {
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.aboutus-section {
    background-color: var(--beige);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 6rem 0;
}

.hero-cta {
    width: 20%;
    background-color: var(--beige);
    border: solid #000 2px;
    border-radius: 50px;
    padding: 1rem 0;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 2rem;
}

.aboutus-info {
    width: 45%;
    min-height: 60svh;
    /* background-color: pink; */
}

.aboutus-logo {
    width: 50%;
}

.aboutus-content {
    font-size: 2rem;
    line-height: 1.5;
    text-wrap: balance;
}

.aboutus-img {
    width: 40%;
    /* max-height: 60svh; */
    object-fit: cover;
}

.button-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20%;
    /* justify-content: space-between; */
    padding: 2rem 0;
}

.aboutus-cta {
    background-color: #000;
    text-decoration: none;
    text-align: center;
    color: #fff;
    padding: 2rem 0;
    width: 35%;
    border-radius: 50px;
}

.moreAboutus {
    display: flex;
    align-items: center;
    justify-content: center;
}

.moreAboutus-overlay {
    width: 60%;
    /* min-height: 70svh; */
    background-color: var(--beige);
    padding: 4rem;
}

.moreAboutus-heading {
    font-size: 3rem;
    /* margin-left: 2rem; */
}

.moreAboutus-paragraph {
    font-size: 2rem;
    line-height: 1.6;
    text-wrap: balance;
}

.tours-section {
    background-color: var(--brown);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 4rem 0;
}

.tours-heading {
    color: var(--beige);
    font-size: 6rem;
}

.tours-row {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    column-gap: 1%;
    row-gap: 4rem;
}

.single-tour {
    width: 320px;
    background-color: var(--beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3rem;

}

.single-tour-info {
    min-height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.tours-image-block {
    width: 100%;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.single-tour-name {
    margin: 0 0 0 2rem;
    font-size: 2,5rem;
}

.single-tour-price {
    margin: 0 0 2rem 2rem;
}

.single-tour-name,
.single-tour-price {
    -webkit-text-stroke: #000 .8px;
    color: var(--beige);
}

.single-tour-list {
    width: 70%;
    padding: 0;
}

.single-tour-item {
    padding: .5rem 0;
}

.single-tour-cta {
    width: 80%;
    padding: 2rem 0;
    background-color: #000;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.why-section {
    background-color: var(--beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 6rem 0;
}

.why-heading {
    width: 80%;
    font-size: 6rem;
    text-align: center;
    /* look for tours heading */
}

.why-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    row-gap: 4rem;
    /* background-color: purple; */
}

.single-why {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* background-color: green; */
}

.why-img {
    width: 30%;
    height: 150px;
    object-fit: contain;
}

.why-content {
    padding: 0 2rem;
    /* background-color: blue; */
}

.single-why-heading {
    font-size: 3rem;
    margin-bottom: .5rem;
}

.single-why-text {
    font-size: 2rem;
    line-height: 1.6;
    margin-top: .5rem;
}