body {
    background-color: var(--brandColour);
}

.p-mainSection {
    width: 100%;
    height: 100vh;
    background-color: var(--brandColour);
    position: relative;
}

.p-mainSection-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #166BAC;
    background: linear-gradient(0deg, rgba(22, 107, 172, 0.8) 0%, rgba(22, 107, 172, 0.5) 100%);
    opacity: 0%;
    transition: 1s ease;
}

.navbar {
    background-color: transparent;
}

.p-mainSection-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url("https://images.pexels.com/photos/17824128/pexels-photo-17824128.jpeg");
    opacity: 0%;
    transition: 1s ease;
    z-index: 2;
}

.p-mainSection-bottom {
    position: absolute;
    z-index: 3;
    bottom: 75px;
    left: 75px;
    right: 75px;
    color: white;
}

.p-mainSection-bottom-text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 4;
}

.p-mainSection-bottom-text-title {
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
    opacity: 0%;
    transition: 0.3s ease;
}

.p-mainSection-bottom-text-title-small {
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-mainSection-bottom-text-title-logo {
    height: 45px;
    margin-top: 25px;
}

.p-contentSection {
    margin: 50px 100px;
    color: white;
}

.p-contentSection-title {
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
    font-family: var(--font2);
    letter-spacing: 5px;
}

.p-contentSection-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 50px;
    margin-top: 25px;
}

.p-contentSection-grid-item {
    cursor: pointer;
}

.p-contentSection-grid-item-image {
    width: 100%;
    height: var(--imageHeights);
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.p-contentSection-grid-item-image-item {
    width: 100%;
    display: inline-block;
    background-size: cover;
    background-position: center;
}

.p-contentSection-grid-item-name {
    font-size: 20px;
    line-height: 20px;
    color: white;
    font-weight: 600;
    margin-top: 25px;
}