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

/*********************** General *************************/
html {
    font-family: 'Roboto', sans-serif !important;
    -ms-text-size-adjust: 100%;
}

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

body {
    background-color: #f4f4f4;
    font-size: 16px;
    line-height: 1.4;
    color: #1f1f1f;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

:root {
    --pale-blue: #55DDE0;
    --blue: #A2C1D8;
    --navy: #33658A;
    --dark-blue: #2F4858;
    --light-grey: #f1f1f1;
    --form-grey: #7B7B7B;
    --red: #FF4141;
    --orange: #C3AB2B;
    --light-green: #4EDC49;
    --green: #FF906A;
    --white: #FFFFFF;
    --black: #1f1f1f;
    --hour7-blue: #161F4D;
    --hour7-light-blue: #4E5A98;
    --hour7-gold: #d9bd35;
    --hour7-grey: #C9C6CC;
    --hour7-dark-grey: #707070;
}

.red { background-color: var(--red); }
.orange { background-color: var(--orange); }
.light_green { background-color: var(--light-green); }
.green { background-color: var(--green); }
.pale_blue { background-color: var(--pale-blue); }
.blue { background-color: var(--blue); }
.navy { background-color: var(--navy); }
.dark_blue { background-color: var(--dark-blue); }
.h_blue { background-color: var(--hour7-blue); }
.h_light_blue { background-color: var(--hour7-light-blue); }

/*********************** Fonts ************************/
h1, h2, h3, h4 {
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: var(--hour7-blue);
}

h1 {
    font-size: 70px;
    line-height: 1.3;
    margin-top: 70px;
    text-align: center;
}

@media (max-width: 650px) {
    h1 {
        font-size: 52px;
    }
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 26px;
}


p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

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

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

.subheading {
	padding: 7px 15px;
	background-color: var(--hour7-grey);
	color: var(--black);
	border-radius: 5px;
	width: max-content;
	font-weight: 500;
	margin-bottom: 15px;
}

@media (max-width: 650px) {
    .subheading {
        margin: 0 auto 15px;
    }
}

/*********************** Wrappers ************************/
.wrapper_large, .wrapper_small {
    position: relative;
    max-width: 85%;
    margin: 0 auto;
}

.wrapper_large {
    width: 1500px;
}

.wrapper_small {
    max-width: 45%;
    width: 900px;
}

@media (max-width: 1350px) {
    .wrapper_large {
        max-width: calc(100% - 50px);
    }
}

@media (max-width: 1150px) {
    .wrapper_small {
        max-width: 60%;
    }
}

@media (max-width: 900px) {
    .wrapper_large {
        max-width: calc(100% - 40px);
    }

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

@media (max-width: 650px) {
    .wrapper_small {
        max-width: calc(100% - 40px);
    }
}

.wrapper_small h1 {
    text-align: center;
}

.page {
    width: 100%;
}

.tox-tinymce {
    width: 100% !important;
}

/*********************** Buttons ************************/
.buttons_container {
    display: flex;
    align-items: stretch;
}

.buttons_container .button:first-of-type {
    margin-right: 20px;
}

.button,
.button_2,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 46px !important;
    background-color: var(--hour7-gold);
    text-align: center;
    color: var(--hour7-blue);
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0px 3px 10px #0000000D;
    transition: 0.1s all ease-in-out;
}

.button_2 {
    background-color: var(--hour7-blue) !important;
    color: var(--white) !important;
}

.intervention_button {
    background-color: var(--hour7-light-blue) !important;
    color: var(--white) !important;
}

.article_button {
    background-color: var(--hour7-grey) !important;
    color: var(--black) !important;
}

.case_study_button {
    background-color: var(--hour7-dark-grey) !important;
    color: var(--white) !important;
}

.square_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 3px 10px #0000000D;
    transition: 0.1s all ease-in-out;
}

.danger_button {
    background-color: var(--red) !important;
    color: var(--white) !important;
}

.button i,
.button_2 i,
input[type="submit"] i,
input[type="reset"] i,
input[type="button"] i {
    margin-right: 8px;
}

.button:hover,
.button_2:hover,
.square_button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    opacity: 0.9;
    transition: 0.15s all ease-in-out;
}

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

@media (max-width: 500px) {
    .buttons_container {
        display: block;
    }

    .button,
    .button_2,
    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        width: 100%;
        margin-left: 0;
    }
}


/*********************** Text Blocks ************************/
.text_block {
    margin: 100px auto;
}

.text_block h1 {
    margin-bottom: 50px;
}

.text_block h3 {
    color: var(--hour7-light-blue);
    margin-bottom: 10px;
}

.text_block a {
    color: var(--hour7-gold);
    font-weight: 700;
}