@charset "utf-8";
/* CSS File */

/************ General *************/
html {
    font-family: 'Open Sans', sans-serif !important;
    -ms-text-size-adjust: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

html, body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/************ Colours *************/
:root {
    --black: #000000;
    --blue: #393D58;
    --green: #368F8B;
    --grey: #C5C4D4;
    --light_grey: #EBEDF0;
    --white: #FFFFFF;
}

/************ Wrappers *************/
.wrapper_large {
    position: relative;
    max-width: 70%;
    width: 1100px;
    margin: 0 auto;
    z-index: 10;
}

.wrapper_small {
    position: relative;
    max-width: 50%;
    width: 750px;
    margin: 0 auto;
    z-index: 10;
}

@media (max-width: 1200px) {
    .wrapper_large {
        max-width: 90%;
    }

    .wrapper_small {
        max-width: 70%;
    }
}

@media (max-width: 950px) {
    .wrapper_small {
        max-width: 90%;
    }
}

@media (max-width: 900px) {
    .wrapper_small {
        width: 90%;
    }
}

/************ Headers & Fonts *************/
h1 {
    font-family: 'Open Sans', sans-serif;
}

ul, li {
    list-style: none;
    padding-inline-start: 0px;
}

a {
    display: inline-block;
    text-decoration: none;
}

p {
    line-height: 1.5;
}

/*********************** Buttons ************************/
.button,
.button_2,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    font-family: 'Open Sans', sans-serif !important;
    background-color: var(--blue);
    color: var(--white);
    padding: 10px 30px;
    min-width: 130px;
    text-align: center;
    opacity: 1;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    border: 2px solid var(--blue);
    box-sizing: border-box;
    border-radius: 30px;
    outline: none;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.20);
    transition: 0.1s all ease-in-out;
}

.button_2 {
    background-color: transparent;
    color: var(--blue);
    box-shadow: none !important;
    margin-left: 15px;
}

.button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    box-shadow: 0px 20px 25px 1px rgba(0, 0, 0, 0.21);
    transition: 0.15s all ease-in-out;
}

.button_2:hover {
    background-color: var(--blue);
    color: var(--white);
}

.button:active,
.button_2:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    transform: scale(0.96);
    outline: none;
    background-position: 500px;
    box-shadow: 0px 8px 30px 1px rgba(0, 0, 0, 0.23);
    transition: 0.1s all ease-in-out;
}

@media (max-width: 600px) {
    .button,
    .button_2,
    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        width: 100%;
    }

    .button_2 {
        margin-top: 30px;
        margin-left: 0;
    }
}

/*************** Page Content ********************/
#page_content {
    position: absolute;
    margin-top: -70px;
}