:root {
    --blue: hsla(222, 63%, 44%, 1); /* 2a55b7*/
    --dark-green: hsla(147, 96%, 20%, 1);
    --light-green: hsla(130, 92%, 51%, 0.14);
    --red: hsla(2, 73%, 57%, 1);
    --grey: hsla(0, 0%, 31%, 1);
    --light-grey: hsla(210, 17%, 98%, 1);

    --light-blue-footer: hsla(251, 99%, 34%, 1);
    --dark-blue-footer: hsla(251, 100%, 10%, 1);

    --our-blue-color: var(--blue);/*#2a55b7;*/
    --our-green-color: var(--dark-green);/*#02642e;*/
    --our-red-color: var(--red); /*#e24742;*/
    --our-grey-color: var(--grey);/*#505050;*/
    --our-light-grey-color: var(--light-grey);/*#f8f9fa;*/
    --our-white-color: var(--white);/*#fff;*/
    --our-black-color: var(--black);/*#000;*/
    --our-light-green-color: var(--light-green);
}

#main {
    min-height: 820px;
    width: calc( 100vw - var(--scroll_width) );
    background: var(--white);
    font-size: 1.37em;
    font-weight: normal;
    /*border: solid 1px red;*/
}
#site_logo {
    margin-top: -21px;
    width: 300px;
    /*border: solid 1px red;*/
}
.web_section {
    width: calc( 100vw - var(--scroll_width) );
    /*border: 1px solid black;*/
}
.web_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*border: solid 1px black;*/
}
.web_content {
    margin: 60px 0 0 0;
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*border: 1px solid blue;*/
}
@media all and (min-width: 650px) {
    .web_content {
        width: 85%
    }
}
@media all and (min-width: 900px) {
    .web_content {
        width: 80%
    }
}
@media all and (min-width: 1400px) {
    .web_content {
        width: 70%
    }
}
.bold_text {
    font-weight: 500;
    color: var(--primary-color);
}
.small_text {
    font-size: 0.85em;
}

/* -- New a target = _blank start -----------------------------------------------------------
a[target="_blank"] {
    position: relative;
    /*border: solid 1px red;
}
a[target="_blank"]:after {
    position: absolute;
    margin-left: 15px;
    content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
    /*border: solid 1px blue;
}
a[target="_blank"]:before {
    position: absolute;
    content: " ";
    /*border: solid 1px red;
}
 -- New a target = _blank start ----------------------------------------------------------- */
.generic_button_new {
    margin: 0 0 0 10px;
    display: flex;
    justify-content: center;
    text-align: center;
    /*border: solid 1px green;*/
}
.generic_button_new a {
    padding: 7px 32px;
    color: var(--white);
    background-color: var(--primary-color);
    font-size: 1.6rem;
    /*font-weight: 500;*/
    text-decoration: none;
    border-radius: 3.8rem;
    /*border: solid 1px red;*/
}
.generic_button_new a::after {
    font-family: "Font Awesome 5 Free"; /* Do not delete */
    content: '\f35a';
    display: inline-block;
    padding-left: 35px;
    vertical-align: middle;
    font-weight: 900;
    color: var(--white);
}
.generic_button_new a:hover {
}
.generic_button_new a:hover:after {
    color: var(--secondary-background);
    transform: scale(1.5, 1.7);
}
/* -- Old buttons start ----------------------------------------------------------- */
.generic_button {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.generic_button a {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--our-white-color);
    font-size: 1em;
    background-color: var(--our-green-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration: none;
    text-align: center;
}
.generic_button a:hover {
    color: var(--our-green-color);
    background: linear-gradient(180deg, var(--our-light-grey-color) 0%, var(--our-white-color) 100%);
    /*color: var(--our-white-color);*/
    /*background-color: var(--our-grey-color);*/
    transition-duration: 0.2s;
}
input[type=submit].generic_button {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--our-white-color);
    font-size: 1em;
    background-color: var(--our-green-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration: none;
    text-align: center;
}
input[type=submit].generic_button:hover {
    color: var(--our-green-color);
    background: linear-gradient(180deg, var(--our-light-grey-color) 0%, var(--our-white-color) 100%);
    /*color: var(--our-white-color);*/
    /*background-color: var(--our-grey-color);*/
    transition-duration: 0.2s;
}
@media (min-width: 576px) {
    .generic_button {
        margin: 50px 0;
    }
}
@media (min-width: 1200px) {
    .generic_button {
        margin: 50px 0;
    }
    .generic_button a {
        padding: 10px 30px;
        font-size: 1.2em;
    }
    input[type=submit].generic_button {
        padding: 10px 30px;
        font-size: 1.2em;
    }
}
/* -- Old buttons end ----------------------------------------------------------- */
#to_top {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}
#to_top:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}
