@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Montserrat', -apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif;
    scroll-behavior: smooth;
}

li {
    text-decoration: none;
    list-style: none;
}

a,
input,
button {
    outline: none;
    text-decoration: none;
}

.display__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align__center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.space__between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

body {
    font-size: 18px;
    font-family: 'Montserrat', -apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif;
    font-weight: 400;
    position: relative;
    background: #FFFFFF;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.body--hidden {
    overflow: hidden;
}

.container {
    max-width: var(--content-width);
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

.flex-spacer {
    flex: 1;
}

.centred {
    text-align: center;
}

.online {
    position: relative;
    text-transform: uppercase;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*::after,
*::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}


.btn {
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    padding: 15px 34px;
    text-align: center;
    color: #fff;
    background-color: var(--theme-second-color);
    -webkit-box-shadow: 5px 5px 15px rgba(255, 124, 51, 0.15);
    box-shadow: 5px 5px 15px rgba(255, 124, 51, 0.15);
    border-radius: 10px;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.btn:hover {
    opacity: 0.8;
}



.hero__bg {
    width: 100vw;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0px;
    bottom: 0px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    z-index: -1;
}

main.main {
    margin-top: var(--header-height);
    flex: 1;
}

.main > .container {
    padding-bottom: var(--block-offset);
    padding-top: calc(var(--block-offset)/2);
}

h1 {
    color: var(--title-color);
    margin-bottom: 12px;
}

.link {
    color: var(--theme-second-color);
    cursor: pointer;
}

.link:hover {
    opacity: 0.8;
}