@font-face {
    font-family: 'Baloo Regular';
    src: url('fonts/Baloo-Regular-webfont.woff') format('woff'),
    url('fonts/Baloo-Regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Caldina Regular';
    src: url('fonts/caldina_400-webfont.woff2') format('woff2'),
    url('fonts/caldina_400-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bs-body-color: #000;
    --bs-link-color: #333;
    --bs-link-hover-color: #000;
    --bs-link-color-rgb: #333;
    --bs-link-hover-color-rgb: #000;

}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #E7B156;
    --bs-btn-border-color: #E7B156;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #E7B156;
    --bs-btn-hover-border-color: #E7B156;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #E7B156;
    --bs-btn-active-border-color: #E7B156;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #555;
    --bs-btn-disabled-border-color: #555;
}

.btn-outline-primary {
    --bs-btn-color: #555;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #E7B156;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #E7B156;
    --bs-btn-hover-border-color: #E7B156;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #333;
    --bs-btn-active-border-color: #333;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #555;
    --bs-btn-disabled-border-color: #555;
}

html {
    overflow-x: hidden;
}

body {
    /*background-image: url("../img/wallpaper-3.webp");*/
    /*background-position: top center;*/
    /*background-size: contain;*/
    /*background-repeat: no-repeat;*/
    font-family: "Caldina Regular", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Baloo Regular", sans-serif;
    /*font-size: 1.8em;*/
    line-height: 1.2;
}

b, strong {
    font-weight: bold;
}

.btn {
    font-family: "Baloo Regular", sans-serif;
    padding: 0.6em 1.2em;
}

a.edit-content-element {
    font-family: "Caldina Regular", sans-serif;
    font-size: 14px;
}

/*p.lead, li.lead {*/
/*    font-size: 1.5em;*/
/*}*/
form.form p,
legend.lead {
    font-size: 1.25em;
}

.w-md-100 {
    width: 100% !important;
}

nav#header {
    background: #196984;
}

nav#header .logo {
    position: relative;
    top: -8px;
}

footer .nav a.nav-link,
nav#header .nav a.nav-link {
    color: #fff;
    font-family: "Baloo Regular", sans-serif;
    font-size: 1.4em;
    padding: 0.2em 0.4em;
}

footer .nav a.nav-link {
    font-size: 1.2em;
}

#services {
    position: relative;
}

#its-me {
    display: block;
    width: auto;
    height: 75vh;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

@media (min-width: 2000px) {
    #its-me {
        height: 50vh;
    }
}

@media (min-width: 2000px) {
    #its-me {
        right: 10%;
    }
}

.cta-container {
    background: #fff;
    border: 1px solid #a6a6a6;
    display: inline-block;
    padding: 0.3em;
    font-family: "Baloo Regular", sans-serif;
}

.cta-container .coffee {
    top: 7px;
    font-size: 1.8em;
    margin-right: 10px;
}

.cta-container span, .cta-container a {
    display: inline-block;
    font-size: 1.2em;
    position: relative;
}

.cta-container .btn {
    padding: 0.7em 1em;
}

.cta-container button {
    border-radius: var(--bs-border-radius-pill) !important;
    color: #fff !important;
    font-size: 1.25rem;
    font-family: "Baloo Regular", sans-serif;
    padding: 0.5em 0.8em !important;
    line-height: normal !important;
}

.section-bg-color {
    background: #438aa6;
    color: #fff;
}

a.color-primary {
    color: #196984;
}

ul {
    list-style: none;
}

ul li::before {
    content: "\2022";
    color: #438aa6;
    font-weight: bold;
    font-size: 30px;
    display: inline-block;
    width: 0.6em;
    margin-left: -0.6em;
}

.grayscale img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 750ms ease;
}

.grayscale img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

#menuToggle {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    top: 5px;
}

#menuToggle input {
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

#menuToggle span {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #fff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #fff;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: #438aa6;
    -webkit-font-smoothing: antialiased;
    transform: translate(9999px);
    opacity: 0;
}

#menu .nav-link {
    margin-bottom: 24px;
}

#menu li {
    padding: 10px 0;
    transition-delay: 2s;
}

#menuToggle input:checked ~ #menu {
    transition: opacity 0.5s linear;
    transform: translate(0);
    opacity: 1;
}

.mobile-nav a {
    color: #fff;
    font-family: 'Baloo Regular', sans-serif;
}

#wa-link {
    background: #25D366;
    position: fixed;
    bottom: 20px;
    color: #fff;
    display: block;
    right: 20px;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 100%;
    z-index: 9999;
}

#wa-link i {
    position: relative;
    top: 10px;
}

#wa-link .notification {
    background: red;
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    line-height: 18px;
    position: absolute;
    top: -4px;
    right: -4px;
    border-radius: 100%;
    font-size: 13px;
    font-weight: bold;
}

footer {
    background: #196984;
    margin-top: 100px;
}

.has-form footer,
.contact-page footer,
.blog-page footer,
.blog-post footer {
    margin-top: 0;
}

.border-bottom-85 {
    position: relative;
}

.border-bottom-85:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 85%;
    border-bottom: 1px solid #dee2e6;
}

.horizontal-padding-150 {
    padding-left: 1em;
    padding-right: 1em;
}

.font-size-20 {
    font-size: 20px;
}

.blog-thumbnail {
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: 115%;
    display: block;
}

.badge.bg-secondary {
    background-color: #438aa6 !important;
}

.text-wrap-balance {
    text-wrap: balance;
}

.o-livechat-root {
    position: absolute;
    z-index: 9999;
}

nav.pagination {
    display: block;
    text-align: center;
}

nav.pagination .pagination__item {
    background: #eee;
    display: inline-block;
    font-size: 1.2em;
    margin: 0 5px;
    padding: 2px 10px;
    border-radius: 4px;
}

nav.pagination a.pagination__item {
    background: #E7B156;
    color: #fff;
    text-decoration: none;
}

.zoom-on-hover {
    transition: transform .2s ease-in;
}

.zoom-on-hover:hover {
    transform: scale(1.2);
}

#mobile-footer {
    background: #196984;
    border-radius: 38px;
    margin: 10px;
}

#mobile-footer .nav-link {
    border-radius: 0;
    border-right: 1px solid #367e96;
    padding: 0.8em 0.4em;
    font-size: 1em;
    font-weight: bold;
}

#mobile-footer .nav-link:last-child {
    border-right: none;
}

#mobile-footer a {
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex-grow: 1;
}

.post-meta {
    margin-top: -100px;
}

.post-meta img {
    border: 4px solid #fff;
}

.form-block-honung {
    position: fixed;
    top: -200px;
    left: -200px;
}

@media only screen and (max-width: 480px) {
    #its-me {
        opacity: 0.4;
    }

    p.lead, li.lead {
        font-size: 1.2em;
    }

    .border-bottom-85:before {
        display: none;
    }

    .cursor {
        display: none;
    }

    .cta-container .coffee {
        top: 3px;
        font-size: 1.3em;
        margin-right: 4px;
    }

    .cta-container span, .cta-container a {
        font-size: 1em;
    }

    .cta-container button,
    .btn-lg {
        font-size: 1.2em;
        padding: 0.5em !important;
    }

    ul li::before {
        margin-left: -0.6em;
    }

    footer .nav a.nav-link {
        font-size: 1em;
    }

    .horizontal-padding-150 {
        padding-left: 1em;
        padding-right: 1em;
    }

    .blog-thumbnail {
        width: 100%;
        padding-top: 60%;
    }

    .w-md-100.w-75 {
        width: 75% !important;
    }

    .post-meta {
        margin-top: -45px;
    }

    .breadcrumb {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .breadcrumb-item {
        flex-shrink: 0;
    }
}