/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,200&amp;display=swap'); */

/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html, button, input, select, textarea,
.pure-g [class *= "pure-u"] {
    /* Set your content font stack here: */
    font-family: "Montserrat", serif;
}


.pure-g > div.center {
    padding: 2rem 3rem;
    justify-content: center;
    align-items: center;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #040f30;
    background: #ffffff;

    display:flex;
    flex-direction:column;

    height:100vh; margin:0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* color: #040f30; */
    font-weight: 700;
}

a {
    color: #48b64a;
    text-decoration: none;
}

a:hover {
    color: #48f727;
}

pre {
    background: #F0F0F0;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 1rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

.center {
    justify-content: center;
    text-align: center;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-vertical {
    writing-mode: vertical-lr; /* sideways-lr - don't work; */
}

/* ANIMATIONs */

html {
    scroll-behavior: smooth;
}
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* FORMs */
.button-success,
.button-error,
.button-warning,
.button-secondary {
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.button-success {
    background: rgb(28, 184, 65);
    /* this is a green */
}

.button-error {
    background: rgb(202, 60, 60);
    /* this is a maroon */
}

.button-warning {
    background: rgb(223, 117, 20);
    /* this is an orange */
}

.button-secondary {
    background: rgb(66, 184, 221);
    /* this is a light blue */
}

/* Cards BLOG images */
div.card {
    padding:20px;
}
div.card-image {
    border-radius: 10px;
    overflow: hidden;
}
div.card-image a {
    transition: all 0.3s ease-in-out;
}
div.card-image img {
    vertical-align: middle;
    border-style: none;
    width: 100%;
    height: auto;

    transition: all 0.9s linear;
}
div.card-image a:hover img {
    transform: scale(1.1);
}

div.card-header h2 {
    color: #13355e;
    font-size: 16px;
    font-weight: 600;
}

div.card-body {

}

/* System Notice */
#body .notices {
    padding: 15px 15px 15px 30px;
    margin: 0;
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(50, 50, 50, 0.3);
}

/* Cookie Notice Consent Box */
#cookieNotice {

    border-top: 2px solid #fff;

    letter-spacing: 0;
    text-align: center;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;

    position: fixed;
    min-width: 100%;
    height: auto;
    z-index: 100000;

    left: 0;
    bottom: 0;

    background-color: rgba(10,58,83,1);
}

#cookieNotice, #cookieNotice * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#cookieNotice .cookie-notice-container {
    display: block;
    color: #ffffff;
    padding: 2% 10%;
    text-align: center;
    width: 100%;
    z-index: 2;
}

#cookieNotice .cn-button {
    margin: 0 0 0 10px;
    border: none;
    width: 150px;
    margin: 0 auto;
    border-radius: 25px;

    color: #ffffff;
    background: #48b64a;

}
