/* this file contains style for editor */
@import url("buttons.css");

body, body.cke_editable {
    color: var(--base-color);
    font-family: Heebo, Helvetica, Arial, sans-serif;
    font-size: var(--base-font-size);
    font-weight: 400;
    line-height: 1.8;
}

hr {
    background: var(--gradient);
    border: none;
    box-sizing: content-box;
    clear: both;
    display: block;
    height: 2px;
    margin: 40px 0;
    text-align: center;
    overflow: visible;
}

/** BE editor */
body.cke_editable, body.cke_ltr {
    font-size: var(--base-font-size);
}

/** sizes */
big, .big {
    font-size: 18px;
}

/** link */
a {
    color: var(--primary-color);
    transition: all .2s ease;
}

a:hover {
}

a, a:hover, a:focus, a:visited {
}

.ce-bodytext a {
    text-decoration: underline;
}

a.email,
a.phone {
    color: inherit;
}

p.address::before,
a.email::before,
a.phone::before {
    color: var(--primary-color);
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 15px;
}

a.email::before {
    content: "\f0e0";
}

a.phone::before {
    content: "\f095";
}

p.address::before {
    content: "\f276";
}

/* external link */
a.external {
}

/* a.more */
a.more:not(.btn) {
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 55px 0 0;
    position: relative;
    text-decoration: none;
}

a.more::after {
    content: "\f30b";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    right: 20px;
    transition: all .3s ease;
}

a.more.scrolltocontent {
    font-weight: 600;
}

a.more.scrolltocontent::after {
    content: "\f30b";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    right: 20px;
    transition: all .3s ease;
    transform: rotate(90deg);
}

a.more:hover::after {
    right: 10px;
}

a.more.scrolltocontent:hover::after {
    right: 20px;
    bottom: 3px;
}

/** paragraphs */
p {
    margin: 0 0 15px;
}

p:first-child {
}

p:last-child {
    margin-bottom: 0;
}

body.cke_editable .hide-text {
    opacity: .5;
}


/** lists */
.cke_editable ul:not(:last-child),
.ce-bodytext ul:not(:last-child),
.cke_editable ol:not(:last-child),
.ce-bodytext ol:not(:last-child) {
    margin-bottom: 40px;
}

/** quotes */
blockquote,
.blockquote {
    font-style: normal;
    quotes: none;
    font-size: 24px;
    font-weight: 600;
    margin: 20px 30px;
    padding: 90px 0 0;
    color: #153EA7;
    line-height: 1.1;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
    blockquote,
    .blockquote {
        background: -webkit-linear-gradient(360deg, var(--gradient-color-left) 0%, var(--gradient-color-middle) 50%, var(--gradient-color-right) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 #00000000;
        background-clip: text;
        color: rgba(0, 0, 0, 0.00001);
    }
}

blockquote::before,
.blockquote::before,
blockquote::after,
.blockquote::after {

    color: var(--primary-color);
    font-family: 'Cardo';
    font-size: 150px;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    -webkit-text-fill-color: var(--primary-color);
}

blockquote::before,
.blockquote::before {
    content: "„";
    left: 0;
    bottom: -70px;
}

blockquote::after,
.blockquote::after {
    content: "“";
    top: 0;
    right: 0;
}

.blockquote ::selection,
blockquote ::selection {
    -webkit-text-fill-color: #FFF;
}

.frame-bg_gradient blockquote,
.frame-bg_gradient .blockquote,
.frame-bg_gradient blockquote::before,
.frame-bg_gradient .blockquote::before,
.frame-bg_gradient blockquote::after,
.frame-bg_gradient .blockquote::after {
    background: none;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

@media screen and (min-width: 768px) {
    .site-content .frame.frame-type-header:first-child + .frame {
        /*margin-top: -50px;*/
    }

    body {
        /*font-size: 22px;*/
        line-height: 1.5;
    }

    big, .big {
        font-size: 25px;
    }

    p {
        margin: 0 0 30px;
    }
}

@media screen and (min-width: 835px) {
    body .site-content {
        /*font-size: 22px;*/
    }
}

@media screen and (min-width: 1024px) {
    blockquote,
    .blockquote {
        font-size: 28px;
    }
}

@media screen and (min-width: 1400px) {
    blockquote,
    .blockquote {
        font-size: 45px;
    }
}


/* text-bg */
.text-bg--blue {
    background: var(--primary-color-light);
    color: #FFF;
}

/** eof */
