/*  typography */
body {
    line-height: 1.7;
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #2a3558;
    font-size: 1.05rem;
}

p, .paragraph {
    font-weight: 400;
    color: #2a3558;
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #2a3558;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

::-moz-selection {
    background: #3b5f91;
    color: #fff;
}

::selection {
    background: #3b5f91;
    color: #fff;
}

a,
button,
select {
    cursor: pointer;
    transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover {
    color: #3b5f91;
}

/*Navbar*/
.active-menu-item, a.navbar-item:focus, a.navbar-item:focus-within,
a.navbar-item:hover, a.navbar-item.is-active, .navbar-link:focus,
.navbar-link:focus-within, .navbar-link:hover, .navbar-link.is-active {
    background-color: #f2f2f2 !important;
    color: #3b5f91 !important;
}

.navbar.has-centered-menu .navbar-start {
    flex-grow: 1;
    justify-content: center;
}

.navbar {
    background-color: #e8e8e8;
}

.header {
    background-color: #2a3558;

}

.header-logo {
    text-align: center;
    flex-grow: 1;
    justify-content: center;
    line-height: 0;
    margin: 0.25rem 0 0.25rem 0;
}

/*Footer*/
.footer-opt {
    background-color: #2a3558;
}

.footer-bottom {
    color: #ffffff;
    background-color: #2a3558;
}

.footer-bottom a {
    color: #91cdff;
}

.input:focus {
    outline: 0;
    box-shadow: none;
    border-color: #2a3558;
}

.input::-moz-placeholder {
    font-size: 80%;
}

.input::placeholder {
    font-size: 80%;
}


.content * {
    word-break: break-word;
    overflow-wrap: break-word;
}

.content a:hover {
    color: #2a3558;
}

.field {
    margin-bottom: 20px !important;
}

.field label {
    font-size: 13px;
    color: #2a3558;
}

.field .input {
    border-color: #ddd;
}

.field .input:focus {
    outline: 0;
    box-shadow: none;
    border-color: #2a3558;
}

.field textarea.input {
    height: 120px;
}

.subscription .input {
    background-color: #f0f0f0;
    border: 0;
    margin-bottom: 10px;
    padding-left: 40px;
}

.subscription .email-icon {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 18px;
    color: #2a3558;
    z-index: 2;
}

.to-top {
    align-items: center;
    background-color: rgb(42, 53, 88);
    opacity: 0.8;
    bottom: 16px;
    color: #fff;
    display: flex;
    justify-content: center;
    position: fixed;
    right: 16px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    outline: none !important;
    border: 1px solid #cccccc57;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/*Blog*/
.blog-post {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0px 0 1px rgb(10 10 10 / 2%);
}

.post-card:hover {
    box-shadow: 0 0.75em 1.5em -0.125em rgb(10 10 10 / 30%), 0 0px 0 1px rgb(10 10 10 / 4%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/*Breadcrumbs*/
.breadcrumb {
    background-color: #f5f5f5;
    padding: 0.25rem 0 0.25rem 1rem;
    width: fit-content;
    border-radius: 6px;
}

.main-content {
    background-color: #f5f5f5;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/*Slider homepage*/
.slide-item {
    position: relative;
    max-height: 100vh;
}


/*Fixes*/
.v-h {
    display: none;
}

/*Responsive*/
@media (max-width: 768px) {

    .slide-item {

    }

    .footer-bottom {
        text-align: center;
    }

    .navbar {
        border-bottom: 0.07rem solid #2a3558;
    }
}

