/* Clear Presets*/
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Monserrat, Arial, sans-serif;
    text-align: center;
    line-height: 1.2;
}

h1 {
    margin: 0;
    padding: 0;
}

h2 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    transition: 0.3s;
}

/* Paddings */
.div-padding {
    padding: 60px 100px;
}

.brochure-padding {
    padding: 40px 100px;
}

.nav-padding {
    padding: 30px 100px;
}

.footer-padding {
    padding: 20px 100px;
}

.acc-padding {
    padding: 20px;
}

.panel-padding {
    padding: 0 20px;
}

.no-bottom-padding {
    padding-bottom: 0;
}

.no-top-padding {
    padding-top: 0;
}

.panel-text-padding {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Margins */
.margin-bottom {
    margin-bottom: 20px;
}

.margin-left {
    margin-left: 20px;
}

.margin-right {
    margin-right: 20px;
}

.margin-right-nav {
    margin-right: 10px;
}

.margin-acc {
    margin-top: 6px;
}

/* Text */
.text {
    font-size: 20px;
    line-height: 28px;
}

.heading {
    font-size: 40px;
    line-height: 44px;
}

.nav-text {
    font-size: 18px;
    line-height: 25px;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-large {
    font-size: 72px;
    line-height: 100px;
}

.text-med {
    font-size: 24px;
    line-height: 34px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-just {
    text-align: justify;
}

.font-bold {
    font-weight: 600;
}

/* Colours */
.text-red {
    color: #e70d2f;
}

.text-white {
    color: white;
}

.text-dark {
    color: #002a3e;
}

.hover-red:hover {
    color: #ee566e;
}

.hover-white:hover {
    color: white;
}

.hover-dark:hover {
    color: #002a3e;
}

.bg-white {
    background-color: white;
}

.bg-red {
    background-color: #e70d2f;
}

.bg-dark {
    background-color: #002a3e;
}

.active {
    color: #e70d2f;
}

/* Misc */
.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.flex-one {
    flex: 1;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.logo {
    max-width: 350px;
}

.about-image {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
}

.bg-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/cover-img.webp');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 60vh;
}

.brochure-btn {
    padding: 10px 20px;
    border-radius: 20px;
}

.accordion {
    background-color: #eee;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    border-radius: 2px;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Mobile */
@media screen and (max-width: 900px) {
    .flex-col {
        flex-direction: column;
    }
    .flex-margin {
        margin-top: 20px;
    }
    .about-image {
        display: none;
    }

    .div-padding {
        padding: 20px;
    }

    .brochure-padding {
        padding: 20px;
    }

    .nav-padding {
        padding: 20px;
    }

    .footer-padding {
        padding: 20px;
    }

    .text {
        font-size: 12px;
        line-height: 17px;
    }

    .heading {
        font-size: 22px;
        line-height: 24px;
    }

    .logo {
        max-width: 170px;
    }

    .nav-text {
        font-size: 11px;
        line-height: 15px;
    }

    .about-image {
        max-width: 200px;
        height: auto;
        border-radius: 10px;
    }

    .text-large {
        font-size: 36px;
        line-height: 50px;
    }

    .text-med {
        font-size: 14px;
        line-height: 20px;
    }

    .brochure-btn {
        padding: 5px 10px;
        border-radius: 10px;
    }

    .acc-padding {
        padding: 10px;
    }

    .panel-padding {
        padding: 0 10px;
    }

    .margin-bottom {
        margin-bottom: 10px;
    }

    .margin-left {
        margin-left: 10px;
    }

    .margin-right {
        margin-right: 10px;
    }

    .margin-right-nav {
        margin-right: 2px;
    }

    .margin-acc {
        margin-top: 3px;
    }

    .panel-text-padding {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}