@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200;300;400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;500;600;700&display=swap');


@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v128/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

@font-face {
    font-family: "oldeEnglish";
    src: url("/stylesheets/OldeEnglish.ttf");
}

* {
    box-sizing: border-box;
}

:root {
    --display-font: 'oldeEnglish', 'Bebas Neue', cursive;
    --alternate-font: 'Montserrat', sans-serif;
    --thick-font: 'Montserrat', sans-serif;

    --main-bg-colour: #f9f9f7;
    --theme-colour: #f0f0f0;
    --main-general-colour: #425b45;
    --main-general-colour-darker: rgb(207, 221, 227);
    --main-accent-colour: #2a4124;
    --main-accent-colour-lighter: rgb(155, 166, 173);

    --top-bg-colour: var(--main-bg-colour);
    --top-position: unset
    --top-text-colour: rgb(0,0,0);
    --text-colour: #383838;
    --text-header-colour: #feffff;
    --footer-bg-colour: #425b45;

    --header-not-scrolling-height: 100px;
    --header-scrolling-height: max-content;

    --box-shadow-lighter: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    --box-shadow-darker: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    --border-radius: 6px;
    --padding-deep: 28px;
    --padding-normal: 16px;
}

a {
    cursor: pointer;
}

html {
    font-size: 1rem;
}

html,
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: var(--main-bg-colour);
    font-family: 'Lora', serif;
}

.top-contact-btn {
    background-color: var(--main-general-colour);
    padding: 0.5em 1em;
    border-radius: 50px;
    color: var(--main-bg-colour);
}

.displayFont {
    font-family: var(--display-font);
    font-weight: 600;
}

.altenate {
    font-family: var(--alternate-font);
}

.accent {
    color: var(--main-accent-colour);
}

body {
    overflow-x: hidden;
}

input[name=brisk_form_name] {
    display: none;
}

.inline-img-cont {
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.inline-img-cont > img {
    max-width: 100%;
    min-width: 50%;
    max-height: 12rem;
    margin-left: 0;
    margin-right: auto;
    border-radius: 6px;
    object-fit: cover;
}

#headerWrapper {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#topIcon {
    width: 3.5em;
    height: 3.5em;
}

.notification {
    width: 100%;
    height: fit-content;
    background-color: #fca311;
    color: #14213d;
    padding: 1.2vh 4vh 1.2vh 6vh;
    display: grid;
    grid-template-columns: 1fr 4vh;
}

.notification>p {
    margin: 0;
}

.notification>span {
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    background-image: url('/defaultMedia/close.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1em 1em;
}

.notification>span:hover {
    transform: scale(1.1);
}

.popupContainer {
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    display: grid;
    place-items: center;
    position: relative;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.popupContainer>.closePopup {
    position: absolute;
    top: 8%;
    right: 8%;
    height: 28px;
    width: 28px;
    cursor: pointer;
}

.popupContainer>.closePopup:hover {
    transform: rotate(90deg);
}

.popupContainer>.popupImage {
    max-height: 80vh;
    max-width: 70vw;
    object-fit: contain;
}

#top {
    height: fit-content;
    user-select: none;
}

header {
    width: 100%;
    display: flex;
    padding: 12px 5%;
    flex-direction: column;
    justify-content: center;
    /* height: var(--header-not-scrolling-height); */
    background-color: var(--top-bg-colour);
    border-bottom: 2px var(--text-colour) solid;
}

header a {
    text-decoration: none;
    color: inherit;
}

.headerScrolling {
    height: var(--header-scrolling-height);
}

#headerTop {
    align-content: center;
    font-family: var(--display-font);
    display: flex;
    justify-content: space-between;
}

#menu_icon {
    display: none;
    width: 10vh;
    height: 100%;
    cursor: pointer;
}

#menu_icon>div {
    width: 6vh;
    height: 6vh;
    background-image: url("/defaultMedia/menu.png");
}

#headerBtm {
    width: 100%;
    height: fit-content;
    display: flex;
    align-content: center;
}

#headerBtm * {
    margin: 1vh;
    margin-top: 0;
    margin-left: 0;
    font-size: 1.1em;
    color: #14213d;
    font-weight: 500;
}

#pageBody {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.pageBodyNotScrolling {
    /* padding-top: var(--header-not-scrolling-height); */
}

.pageBodyScrolling {
    /* padding-top: var(--header-scrolling-height); */
}

aside {
    width: 20%;
    height: fit-content;
    min-height: 10vh;
    margin: 0 auto;
    display: none;
    border-radius: 1vh;
    position: sticky;
    top: 1.5rem;
}

aside li {
    list-style: none;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
}

aside a {
    text-decoration: none;
}

aside a:hover {
    text-decoration: underline;
}

aside * {
    color: rgb(43, 45, 51);
}

main {
    width: 100%;
    height: max-content;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 155%;
}

.fill {
    width: 100%;
    height: 100%;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertPadding {
    padding-top: 5%;
    padding-bottom: 5%;
}

h1 {
    color: var(--top-text-colour);
    font-size: 2em;
    letter-spacing: 0.2vh;
}

#nav {
    position: relative;
    font-size: 1.2rem;
    display: flex;
    gap: 0.8em;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#topLogo {
    display: flex;
}

.get-in-contact-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    gap: 1em;
}

item {
    padding: 1rem;
    position: relative;
    text-align: center;
}

item>* {
    transition: 0.2s;
}

item>a {
    white-space: nowrap;
    text-decoration: none;
    color: var(--top-text-colour);
    font-family: var(--display-font);
    cursor: default;
}

dropDown {
    width: max-content;
    background-color: var(--top-bg-colour);
    z-index: 999;
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.4s;
    border: 2px var(--main-accent-colour-lighter) solid;
    padding: 15px;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    display: none;
}

dropDown>ul {
    margin: 0;
    padding: 0;
}

dropDown>ul>li {
    margin-bottom: 2.5vh;
    text-align: left;
    list-style: none;
}

dropDown>ul a {
    text-align: left;
    text-align: left;
    border-bottom: 1px var(--top-text-colour) solid;
    cursor: pointer;
    color: var(--top-text-colour);
    text-decoration: none;
}

item:hover>a {
    text-decoration: underline;
}

item>dropDown>ul {
    opacity: 0;
    transition: 0.4s;
}

item:hover>dropDown>ul {
    opacity: 1;
}

dropDown>ul a:hover {
    border-bottom: 1px var(--main-accent-colour) solid;
    color: var(--main-accent-colour);
}

item:hover>dropDown {
    visibility: visible;
    height: fit-content;
    opacity: 1;
    display: block;
}

a>img {
    max-height: 100%;
    max-width: 100%;
}

.spanner {
    width: 100vw;
    height: 100vh;
    margin: 0;
}


/* FOOTER STYLING */

footer {
    width: 100%;
    padding: 2rem 5% 0 5%;
    background-color: var(--footer-bg-colour);
    border-top: var(--main-accent-colour-lighter) 1px solid;
    display: flex;
    flex-direction: column;
    color: var(--text-header-colour);

    position: relative;
}

footer>div[footer_mid] {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column-reverse;

}

footer>div[footer_btm] {
    padding-top: 2rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
}

footer>div[footer_btm] a {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    text-decoration: none;
}

footer>div[footer_btm] a>.edigital_icon {
    height: 1.6em;
    width: 1.6em;
    background-image: url("https://edigital.org.uk/images/logo_light.svg");
    background-position: center;
    background-size: 90%;
    background-repeat: no-repeat;
}

footer>div[footer_btm] a>p {
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0;
    font-size: 1em;
}

footer div[sitemap] {
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

footer div[sitemap] ul {
    list-style-type: none;
    margin: 0;
    max-width: 20%;
}

footer div[sitemap] ul * {
    color: var(--text-header-colour);
    font-size: 1em;
    text-decoration: none;
    transition: 0.25s;
}

footer div[sitemap] ul li:first-child>a {
    font-family: var(--display-font);
    font-size: 1.4em;
    font-weight: 800;
    cursor: pointer;
}

footer div[sitemap] ul li:not(:first-child) {
    display: none;
}

footer div[sitemap] ul li {
    margin-bottom: 8px;
    margin: 8px 0;
}

footer div[socials] {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 16px 45px;
    padding-bottom: 0;
    background-color: var(--footer-bg-colour);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateY(-100%) translateX(-50%);
    width: fit-content;
}


/* SOCIAL MEDIA ICON STYLING FOR FOOTER */

a[social] {
    width: 3em;
    height: 3em;
    background-position: center;
    background-size: 90%;
    background-repeat: no-repeat;
    border-radius: 50%;
}

a[social]:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

a[social=facebook] {
    background-image: url("/defaultMedia/Facebook.svg");
}

a[social=instagram] {
    background-image: url("/defaultMedia/Instagram.svg");
}

a[social=linkedin] {
    background-image: url("/defaultMedia/LinkedIn.svg");
}

a[social=pinterest] {
    background-image: url("/defaultMedia/Pinterest.svg");
}

a[social=twitter] {
    background-image: url("/defaultMedia/Twitter.svg");
}

a[social=youtube] {
    background-image: url("/defaultMedia/YouTube.svg");
}

a.inline-btn-2 {
    display: block !important;
    width: max-content;
    margin: auto;
    background-color: var(--main-general-colour) !important;
    border-radius: 4px;
}

.inlineIcon {
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 1em;
    margin: 0;
    margin-right: 0.4em;
    display: inline-block;
}

.icon {
    width: 1em;
    height: 1em;
    object-fit: contain;
    display: inline;
}


/* THESE ARE THE SYLES FOR THE USER-SET PAGE ELEMENTS */

.spanW {
    height: max-content;
    width: 100%;
}

.imgBanner {
    width: 100%;
    height: 40vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.textPadding {
    padding-left: 16%;
    padding-right: 16%;
}

main {
    color: var(--text-colour);
    padding-bottom: 10vh;
}

h1,
h2,
h3,
h4,
h5,
p,
a {
    margin: 0;
    line-height: 175%;
}

main p {
    font-size: 1em;
}

main h1,
main h2,
main h3,
main h4,
main h5 {
    font-weight: 800;
    letter-spacing: -.025em;
}

main h1 {
    font-size: 2.5em;
    letter-spacing: -0.01em;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

main h2 {
    font-size: 2em;
}

*[element-type="default.heading"] {
    font-family: var(--display-font);
    font-weight: 300;
    font-size: 1.8rem;
}

*[element-type="default.paragraph"] h4 {
    font-family: var(--display-font);
    font-weight: 300;
}

main h3 {
    padding: 20px 0;
    font-size: 1.6em;
}

main a {
    color: inherit;
}


h4 {
    font-size: 1.6em;
    color: inherit;
}

h5 {
    font-size: 1.4em;
    color: inherit;
}

main hr {
    margin-right: auto;
    margin-left: 0;
    width: 75%;
    border: 0;
    height: 3px;
    background-color: var(--main-general-colour);
}

[element-type="default.line_break"] {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

a[type=button] {
    padding: 0.4em 1em;
    background-color: var(--main-accent-colour);
    color: var(--main-bg-colour);
    cursor: pointer;
    display: inline-block;
    transition: 0.2s;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Lora', serif !important;
}

a[type=button]:hover {
    box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
    transform: translateY(-4px) translateX(-4px);
}

a[type=button].green-btn {
    background-color: var(--main-general-colour);
}

span[type=accent] {
    color: var(--main-accent-colour);
}
  
.material-icons {
    font-family: 'Material Icons';
    color: inherit;
    font-weight: normal;
    font-style: normal;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: normal;
    text-transform: none;
    display: inline;
    vertical-align: bottom;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.linkBtn {
    display: flex;
    padding-top: 4vh;
    padding-bottom: 4vh;
}

.linkBtn>a {
    padding: 1em 2em;
    border-radius: 0.4vh;
    border: 2px var(--top-text-colour) solid;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    text-decoration: none;
}

.linkBtn>a:hover {
    background-color: rgba(54, 74, 117, 0.25);
}

.image_left_of_text {
    width: 55%;
    display: flex;
    padding: 5vh;
    height: fit-content;
    margin-bottom: 4vh;
    border: 0.1em var(--top-text-colour) solid;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.img {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 0.4vh;
}

.image_left_of_text>.img {
    width: 30%;
    padding-bottom: 30%;
}

.image_left_of_text>.txt {
    width: 75%;
    height: fit-content;
    padding: 1.5em;
}

.image_left_of_text>.txt>p {
    color: #14213d;
    font-size: 1.3em;
}

.spanW.textPadding .regularImg {
    width: 100%;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: var(--box-shadow-darker);
    border-radius: 8px;
}

.spanW.textPadding.smallerImg {
    padding-top: 4%;
    padding-bottom: 4%;
    display: flex;
    justify-content: center;
}

.spanW.textPadding.smallerImg>img {
    width: unset;
    max-height: 60vh;
}

.alt {
    color: rgb(147, 147, 147);
    font-size: 0.8em;
    padding: 0;
    font-family: var(--alternate-font);
    text-align: center;
}

.fixedImage {
    width: 100%;
    height: 84vh;
    padding: 7%;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.fixedImage>.infoBox {
    padding: 5vh;
    height: fit-content;
    background-color: #e5e5e5;
    clip-path: polygon(90% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
}

.fixedImage>.infoBox>b {
    font-size: 1.3em;
    border-bottom: 0.1vh #14213d solid;
}

.row-normal {
    flex-direction: row;
}

.row-reverse {
    flex-direction: row-reverse;
}

.row-normal>.bannerImgCont {
    justify-content: right;
}

.row-reverse>.bannerImgCont {
    justify-content: left;
}


.darkBanner [lbl=text] {
    width: 100%;
    display: inline-block;
}

.darkBanner.vertPadding {
    padding-top: 1%;
    padding-bottom: 1%;
}

.textPadding.banner > [lbl=text] {
    width: 50%;
}

.banner {
    display: flex;
    gap: 10vh;
    margin: 0;
    min-height: 300px;
    padding: 0;
    margin-bottom: 40px;
    margin-top: 40px;
    background-color: var(--main-general-colour);
    color: white;
}

.banner span[type=accent] {
    text-shadow: 0.5px 0.5px rgb(33, 33, 33);
}

.banner [element_type="inline"] hr {
    background-color: currentColor;
    height: 2px;
}

.banner [lbl=text] {
    display: inline-block;
    width: 60%;
    padding: 6%;
}

.row-normal .banner [lbl=text] {
    padding-left: 8%;
}

.row-reverse .banner [lbl=text] {
    padding-right: 8%;
}

.banner .bannerImgCont {
    width: 50%;
    display: flex;
}

.banner .bannerImgCont>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.darkBanner {
    display: flex;
    margin: 0;
    gap: 2em;
}

.darkBanner .bannerImgCont {
    width: 50%;
    display: flex;
}

.darkBanner .bannerImgCont>img {
    max-height: 80%;
    max-width: 100%;
    min-height: 140px;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    object-fit: contain;
}

.centeredLineBreak {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centeredLineBreak>hr {
    width: 50%;
    margin-right: 0;
}

.textCenter {
    text-align: center;
}

.spanW.textPadding.textCenter {
    padding-top: 6vh;
    padding-bottom: 6vh;
}

.imgTxtBoxCont {
    padding: 22px;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.imgTxtBoxCont>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    text-align: center;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.imgTxtBoxCont>div>img {
    margin: 16px;
    height: 30vh;
    width: 35%;
    object-fit: contain;
    border-radius: 12px;
    transition: 0.6s;
}

.imgTxtBoxCont>div:hover>img {
    transform: translateY(-10px);
}

.imgTxtBoxCont>div p {
    padding: 1em 0;
}

*[element-type='default.important_message'] {
    padding-left: 0;
    padding-right: 0;
}

.important_message {
    padding: 2.8em;
    padding-left: 16%;
    padding-right: 16%;
    color: var(--main-bg-colour);
    background-color: var(--main-general-colour);

    background-image: url('/defaultMedia/logo.svg');
    background-position: right;
    background-size: 50%;
    background-repeat: no-repeat;
}

/* EXTENSION SPECIFIC STYLES */


/* FORMS */

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 4px;
}

form h3 {
    display: none;
}

form p, form h3 {
    width: 100%;
}

form .responseText {
    font-weight: bold;
    padding-bottom: 2vh;
}

form input,
form select,
form textarea {
    width: 100%;
    margin-bottom: 1.6em;
    padding: 14px;
    background-color: rgb(255, 255, 255);
    border: 1px gray solid;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
}

form input[type=checkbox],
form input[type=date] {
    margin-bottom: 0;
    width: fit-content;
    margin-left: 1em;
}

form .radioInputCont {
    cursor: pointer;
}

form .radioInputCont label {
    font-size: 0.9em;
    color: rgb(81, 81, 81);
}

form input[type=radio] {
    width: unset;
    margin: 0;
    margin-right: 1em;

}

form textarea {
    min-height: 150px;
    min-width: 100%;
    transition: 0;
}

form .submitCont {
    position: relative;
    width: 100%;
}

form input[type=submit] {
    cursor: pointer;
    width: fit-content;
    background-color: var(--text-colour);
    background-size: 0;
    color: white;
    border-radius: 4px;
    transition: 0.2s;
    padding: 1rem 1.6rem;
}

form input[type=submit]:hover {
    background-color: black;
    background-image: url("/brisk-resources/sparkles.gif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

form .hp-inpt {
    display: none;
}

form .shortInpt,
form input[type=date],
form input[type=tel] {
    width: 48%;
}

form .mediumInpt {
    width: 100%;
    margin-bottom: 1.6em;
}

form div.mediumInpt {
    margin-bottom: 1.8em;
    margin-top: 1em;
}

.mobile-menu-toggle {
    background-color: transparent;
    border: none;
    align-items: center;
    padding: 6px;
    display: none;
}

.mobile-menu-toggle > img {
    width: 1rem;
    height: 1rem;
}

#nav .mobile-menu-toggle {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: none;       
}


@media screen and (max-width:30cm) {
    .textPadding {
        padding-left: 8%;
        padding-right: 8%;
    }
    .textPadding.banner, .textPadding.darkBanner, .textPadding-min {
        padding-left: 8%;
    }
    .banner [lbl="text"] {
        padding: 4%;
    }
    .banner .bannerImgCont>img {
        border-radius: 0;
    }
}


@media screen and (max-width:24cm) {
    #pageBody {
        flex-direction: column-reverse;
        align-items: center;
    }
    .textPadding {
        padding-left: 6%;
        padding-right: 6%;
    }
    p[lbl=desc] > a[type=button] {
        width: 100%;
    }
    #nav {
        z-index: 100000;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        flex-direction: column;
        color: white;
        justify-content: center;
    }
    #nav a {
        font-size: 2rem;
    }
    #nav.mobileNavOpen {
        display: flex;
    }
    .mobile-menu-toggle,
    #nav .mobile-menu-toggle {
        display: flex;
    }
    aside {
        width: 100%;
    }
    aside > ul {
        display: flex;
        gap: 2rem;
        padding-left: 10%;
        flex-wrap: wrap;
    }
    header {
        padding-left: 1.5rem;
        padding-right: 2rem;
    }
    #topIcon {
        width: 2.5rem;
        height: 2.5rem;
    }
    .fill.center {
        display: none;
    }
    footer {
        padding: 4vh;
    }
    footer div[sitemap] {
        display: none;
    }
    footer div[socials] {
        width: 100%;
    }
    footer div[footer_btm] {
        position: relative;
        bottom: 0;
    }
    header .fill.center {
        display: none;
    }
    #menu_icon {
        display: flex;
    }
    /* USER-SET ELEMENTS */
    .image_left_of_text {
        width: 100%;
    }
    .textPadding.banner > [lbl=text],
    .banner>.bannerImgCont {
        padding: 0;
        width: 100%;
    }
    .textPadding.banner {
        padding-left: 8%;
        padding-right: 8%;
    }
    .banner,.darkBanner {
        flex-direction: column-reverse;
        padding-top: var(--padding-normal);
        padding-bottom: var(--padding-normal);
    }
    .darkBanner>p,
    .darkBanner>.bannerImgCont {
        width: 100%;
    }
    .banner .bannerImgCont>img {
        max-height: 8rem;
        border-radius: 6px;
        box-shadow: 4px 4px rgba(33, 33, 33, 0.6);
    }
    .imgTxtBoxCont {
        grid-template-columns: unset;
    }
    .imgTxtBoxCont>div>img {
        height: unset;
        max-height: 30vh;
    }
    .important_message {
        background-position: left;
        background-size: 175%;
    }
    *[element-type='default.important_message'] {
        padding-left: 0;
        padding-right: 0;
    }
    main h1 {
        font-size: 1.5em;
    }
    form .shortInpt,
    input[type=email],
    input[type=tel] {
        width: 100%;
    }
}


/* ANIMATIONS */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}