/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

/* Colour system
Main Colour: #E67529;
Grey Colour: #343a40;
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;

}

body {
    font-family: sans-serif;
    line-height: 1;
    font-weight: 300;
    color: #555;

}

strong {
    font-weight: 500;
    font-style: italic;
}

a {
    text-decoration: none;
    color: #e67529;
}

/* GRID, FLEX EL & CONTAINER */
.container {
    margin: 0 auto;
    height: 100%;
}

.grid {
    display: grid;
    height: auto;
}

.grid--2-cols {
    grid-template-columns: 1fr 1fr;
}

.grid--3-cols {
    grid-template-columns: repeat(3) 1fr;
}

.grid--4-cols {
    grid-template-columns: repeat(4) 1fr;
}

.grid--5-cols {
    grid-template-columns: repeat(5) 1fr;
}

.flex {
    display: flex;

}

.flex--column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex--center {
    justify-content: center;
}

/* HEADINGS */
.heading--h2 {
    /* text-transform: capitalize; */
    font-size: 3rem;
    font-weight: 600;
    color: #e67529;

}

.body--p {
    text-align: left;
    font-size: 1.8rem;
    color: #555;
    margin: 2.8rem 0;
}

.align-text {
    text-align: center;
}

.italic {
    font-style: italic;
}

.bolder {
    font-weight: 700;
}

.parrow {
    font-size: 2.8rem;
    font-weight: 500;
    color: #eb9154;
}

/* BUTTONS */
/* BASIC BTN */
.btn {
    display: flex;
    padding: 1rem;
    background-color: #e67529;
    color: #fff;
    border-radius: 12px;
    transition: all 0.3s;
    margin: 0.8rem 0;
    font-size: 1.6rem;
    font-weight: 600;
    align-items: center;
    box-shadow: 0 10px 10px rgba(10, 10, 10, 0.1);
    cursor: pointer;
    justify-content: center;
}

.btn:link,
.btn:visited {}

.btn:hover,
.btn:active {
    background-color: #eb9154;
    color: #fff;
}


/* HEADER NAV BTN */
.btn-nav {
    text-decoration: none;
    color: #e67529;
    padding: 1rem;
    border-radius: 12px;
    transition: all 300ms;
}

.btn-nav:link,
.btn-nav:visited {}

.btn-nav:hover,
.btn-nav:active {

    background-color: #e67529;
    color: #eee;
    box-shadow: 0 10px 10px rgba(10, 10, 10, 0.1);
}

.arrow--btn {
    display: inline-block;
    position: absolute;
    text-decoration: none;
    bottom: 15px;
    right: 50%;
    color: #e67529;
    font-size: 1.4rem;
    padding: .8rem;


}

.w-6h-6 {
    height: 3.6rem;
    transition: all 0.3s;
}

.w-6h-6:link,
.w-6h-6:visited {
    color: #e67529;
}

.w-6h-6:hover,
.w-6h-6:active {
    color: #fff;
}


/* HEADER AND FOOTERS */
/* HEADERS */
.head-container {
    contain: content;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, .05));
    color: #fff;

}

.head-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: .8rem;

}

.head-logo-box {
    display: flex;
    align-items: center;
}

.img-container {
    display: flex;

    border-radius: 12px;


}

.logo {
    max-height: 8rem;

}

/* NAVIGATION */

.head-nav-box {
    display: flex;
    flex-direction: column;
    width: 70%;

}

.mobile-nav {
    display: none;
}

.navigation {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    align-items: center;
    margin-right: .8rem;
}


.nav-list {
    display: flex;
    list-style: none;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    margin-right: 0.8rem;

}


.nav-list-item {
    margin: 0.8rem 0;
    padding: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;

}

.head-text-container {
    position: fixed;
}

.head-text {
    /*  */
    position: absolute;
    top: 70px;
    right: 10px;
    display: flex;
    padding: 2rem;
    background-color: rgba(250, 227, 212, 0.425);
    /* border-top-left-radius: 12px;
    border-bottom-left-radius: 12px; */
    border-radius: 12px;

    /* color: #e67529; */
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-right: 0;
    justify-content: space-evenly;
    align-items: center;

}

.head-text--p {
    margin-right: 1.4rem;
    text-transform: uppercase;
}


/* FOOTERS */