
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend Deca', sans-serif;
}

.main {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    grid-template-rows: repeat(10, 1fr);
    text-transform: uppercase;
}

.home {
    padding: 50px;
    grid-column: 1 / 2;
    grid-row: 1 / 10;
}

.home h1 {
    font-weight: 800;
    font-size: 4.5rem;
}

.home .key {
    font-weight: 300;
    font-size: 1.125rem;
}

.home h3 {
    margin: 1rem 0;
    font-weight: 600;
    font-size: 1.5rem;
}

.home button {
    padding: 1rem 2.5rem;
    background-color: #D93A31;
    border: none;
    offset: none;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    margin: 1rem 0;
}

.home button:hover {
    cursor: pointer;
}

.home > div > p {
    text-transform: initial;
    font-weight: 300;
    font-size: 1.125rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 4rem 0;
}

.stats > div > p:nth-child(1) {
    font-size: 0.875rem;
    font-weight: 300;
}

.stats > div > p:nth-child(2) {
    font-weight: 800;
    font-size: 5rem;
}

.stats > div > p:nth-child(3) {
    font-weight: 600;
    font-size: 0.875rem;
}

.price {
    grid-column: 2 / 4;
    grid-row: 1 / 4;
    place-self: end;
    align-self: start;
    padding: 50px;
}

.price p {
    font-size: 1.25rem;
    font-weight: 400;
}

.price p:first-child {
    color: #9497A8;
}

.trek {
    grid-row: 4 / 10;
}

.trek img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.circle2 {
    border-radius: 100%;
    background-color: #404049;
    width: 60%;
    height: 60%;
    z-index: 1;
}

.circle1 {
    border-radius: 100%;
    background-color: #53535b;
    width: 45%;
    height: 45%;
    z-index: 2;
}

.backpack > img {
    z-index: 3;
    width: 50%;
    object-fit: cover;
}

.backpack > * {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.backpack-container .bag-model {
    position: absolute;
    top: 90%;
    text-align: center;
    transform: translate(0, -50%);
    width: 100%;
}

.backpack-container .bag-model > p {
    color: #ffffff;
    font-weight: 400;
    font-size: 0.875rem;
    text-decoration: underline;
}

.backpack-container {
    position: relative;
    display: inline-block;
    grid-row: 4 / 8;
    align-self: end;
}

.backpack-container > img {
    width: 100%;
}

.traveller {
    position: relative;
    display: inline-block;
    grid-row: 8 / 11;
}

.traveller img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.traveller > .logo {
    position: absolute;
    width: 20%;
    height: auto;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.footer-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin: 1rem 10px;
}

.footer-card > img {
    object-fit: cover;
    width: 3.75rem;
}

.footer-card p {
    margin: 5px;
    color: white;
}

.footer-card p:first-child {
    font-size: 0.875rem;
    font-weight: 400;
}

.footer-card p:last-child {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer {
    display: flex;
    background-color: #2B2B35;
    height: auto;
    grid-row: 10 / 11;
    grid-column: 1 / 3;
}


@media only screen and (max-width: 1000px) {
    
    .home {
        grid-row: 1 / 6;
        grid-column: 1 / 4;
        padding: 20px;
    }

    .home h1 {
        font-size: 3rem;
    }

    .trek {
        grid-row: 6 / 10;
    }

    .backpack-container {
        grid-row: 6 / 8;
        grid-column: 2 / 4;
    }

    .traveller {
        grid-row: 8 / 10;
        grid-column: 2 / 4;
    }

    .footer {
        grid-row: 10 / 11;
        grid-column: 1 / 4;
    }

    .stats > div > p:nth-child(2) {
        font-size: 3rem;
    }

    .backpack-container > p {
        font-size: 0.5rem;
    }

    .footer-card {
        width: 40%;
    }

    .footer {
        justify-content: space-evenly;
    }

    .footer-card p:first-child {
        font-size: 0.5rem;
    }
    
    .footer-card p:last-child {
        font-size: 1rem;
    }

}