

h1 {
    margin: 1rem 0rem;
    font-weight: lighter;
    font-size: 4.3em;
    line-height: 1em;
    letter-spacing: -1px;
}

    h1.themed {
        color: var(--pri) !important;
    }

h2 {
    margin: 1.5rem 0rem .6rem 0rem;
    font-size: 2.6em;
    font-weight: 200;
    line-height: 1.25em;
}

    h2.themed {
        color: var(--pri) !important;
    }

    h2 strong {
        font-weight: 600;
    }

h3 {
    margin: 1.25rem 0rem 1rem 0rem;
    font-weight: 200;
    font-size: 2.3em;
    line-height: 1.5em;
}

    h3.themed {
        color: var(--pri) !important;
    }

h4 {
    margin: 1.25rem 0rem 1rem 0rem;
    font-weight: 200;
    font-size: 1.35em;
    line-height: 1.5em;
}

h5 {
    font-size: 1.3em;
    line-height: 1.5em;
    font-weight: 300;
    margin: 1.25rem 0rem 1rem 0rem;
}

p {
    margin: 1rem 0rem;
}

b, strong {
    font-weight: 700;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
p:first-child {
    margin-top: 0px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
p:last-child {
    margin-bottom: 0px;
}

a,
a:link,
a:active,
a:visited {
    color: #000;
    text-decoration: none;
    transition: all .1s;
}

    a:hover {
        color: var(--pri-dark);
        cursor: pointer;
        text-decoration: underline;
    }

    a img {
        border: 0px;
    }

    a.pdf {
        display: inline-block;
        padding-left: 22px;
        background: url('../../images/pdf.png') left 2px no-repeat;
    }

    a.word {
        display: inline-block;
        padding-left: 22px;
        background: url('../../images/doc.png') left 2px no-repeat;
    }

    .btn,
    a.btn {
        background-color: var(--black);
        color: var(--white);
        border-radius: 14px;
        padding: 9px 45px;
        font-size: .9em;
        margin: 0 5px;
        font-weight: 500;
        min-width: 220px;
        transition: all .3s ease;
    }

        .btn:hover,
        a.btn:hover,
        .btn.outline {
        }


            .btn.outline:hover {
                border-color: transparent;
                background-color: var(--pink);
                color: #000 !important;
            }


        .btn.cancel_btn {
            background-color: #d91b1b;
        }

            .btn.cancel_btn:hover {
                background-color: #ea3c3c;
            }

.white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white p, .white a,
.white ul li {
    color: #FFFFFF;
}

.white ul li:before {
    background: #FFFFFF !important;
}
/*-----------------------------------------------------------------------------------------------*/

.clearer {
    clear: both;
    height: 0px;
    overflow: hidden;
    font-size: 0px;
    line-height: 0px;
}

.clear:after {
    content: " ";
    clear: both;
    display: block;
}

hr {
    height: 1px;
    overflow: hidden;
    color: #000;
    border: none;
    background-color: #000;
}

.spacer {
    margin-top: 15px;
    margin-bottom: 15px;
}

.spacer_top {
    margin-top: 15px;
}

.spacer_bottom {
    margin-bottom: 15px;
}

.padder {
    padding-left: 15px;
    padding-right: 15px;
}

.padder_left {
    padding-left: 15px;
}

.padder_right {
    padding-right: 15px;
}

.nopadding {
    padding: 0px !important;
}

.nopadding_right {
    padding-right: 0px !important;
}

.nopadding_left {
    padding-left: 0px !important;
}

.push_right {
    float: right;
}

.push_left {
    float: left;
}

img.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 4px;
    display: block;
}

img.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 4px;
    display: block;
}

img.aligncenter {
    text-align: center;
    margin: 1em auto 5px auto;
    clear: both;
    display: block;
}

img.fullwidth {
    margin: 0px;
    display: block;
}

/*-----------------------------------------------------------------------------------------------*/

html {
    font-size: 16px;
}

body {
    margin: 0px;
    color: #000;
    background-color: var(--pri);
    color: #000000;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3em;
    min-height: 100vh;
    font-family: 'Epilogue', Arial, sans-serif;
    overflow-y: overlay;
}

    body > form {
        margin: 0px;
    }

    body.dragging {
        cursor: grabbing !important;
    }

    body.cursor-progress {
        cursor: progress !important;
    }

.blur {
    -webkit-filter: blur(7px);
    -moz-filter: blur(7px);
    filter: blur(7px);
}

/*-----------------------------------------------------------------------------------------------*/

#header {
    top: 0;
    width: 100%;
}

    #header .container {
        position: relative;
    }

    #header .logo {
        display: block;
        float: left;
        line-height: 0px;
    }

        #header .logo img {
            height: 130px;
        }

    #header .container .row {
        display: flex;
    }

    #header .header-actions {
        padding: 7px 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0 20px;
    }

        #header .header-actions .navbar_profile_link {
            line-break: anywhere;
        }

        #header .header-actions .info-container {
            flex-basis: 100%;
        }

        #header .header-actions .info_icon {
            text-align: right;
            width: fit-content;
            float: right;
        }

            #header .header-actions .info_icon img {
                width: 15px;
            }

body:not(.master_private) #header .header-actions {
    display: none;
}

#content {
    margin-top: 30px;
    opacity: 0;
    transition: opacity .5s;
}

#page.loaded #content {
    opacity: 1;
}

/*-----------------------------------------------------------------------------------------------*/

.content_grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
}

    .content_grid .sidebar {
        grid-column: 1 / 2;
    }

    .content_grid .main-content {
        grid-column: 3 / 10;
    }

    .content_grid .middle-content {
        grid-column: 3 / 6;
    }

    .content_grid .right-content {
        grid-column: 7 / 10;
    }
/*-----------------------------------------------------------------------------------------------*/
/*--- Homepage ---*/


.page_home #content {
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.container.overlay {
    padding: 0 15px !important;
}

.demo_callout {
    position: fixed;
    bottom: 20px;
    height: 100px;
    width: 100px;
    background-size: contain;
    color: #FFFFFF !important;
    padding: 12px 20px;
    z-index: 3;
}

    .demo_callout .bg {
        background-image: url(../../images/demo-bg.png);
    }

    .demo_callout h4,
    .demo_callout p {
        margin: 0;
    }

    .demo_callout:hover span {
        text-decoration: underline;
    }


/*-----------------------------------------------------------------------------------------------*/

.lower_banner {
    height: 135px;
    overflow: hidden;
}

    .lower_banner h1,
    .lower_banner p {
        margin-top: 58px;
        font-weight: 900;
    }

.page_title {
    margin-bottom: 30px;
}

/*-----------------------------------------------------------------------------------------------*/

.master_public #content {
    margin-top: 0;
    position: relative;
}

/*-----------------------------------------------------------------------------------------------*/

.page_title {
    margin-top: 38px;
}



.sub_one {
    grid-column: 3 / 6;
}

.sub_two {
    grid-column: 7 / 10;
}

.subscription_block {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin: 30px auto 0;
    width: 400px;
    height: 400px;
    padding: 40px 30px;
    text-align: center;
}

    .subscription_block .bg {
        background-image: url(../../images/block.png);
        background-size: calc(100% - 10px) calc(100% - 10px);
    }

    .subscription_block .price {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: end;
    }

        .subscription_block .price h1 {
            font-size: 4.5em;
            margin: 0;
            line-height: 1em;
        }

        .subscription_block .price span {
        }

    .subscription_block:hover strong {
        text-decoration: underline;
    }

.subscription_features,
.subscription_packages {
    display: flex;
    align-items: flex-end;
    width: 100%;
    gap: 7px;
    margin-bottom: 15px;
    margin-top: 15px;
}

    .subscription_features h2,
    .subscription_packages h2 {
        margin-bottom: 0;
        line-height: .9em;
    }

    .subscription_features .package,
    .subscription_packages .package {
        text-align: center;
        font-weight: bold;
        margin: 0;
    }

        .subscription_features .package:first-of-type,
        .subscription_packages .package:first-of-type {
            margin-left: auto;
        }

.subscription_features {
    margin-top: 50px;
}

    .subscription_features .package {
        margin: 4px 15px 0;
        width: 50px;
    }

.subscription_packages {
    gap: 7px;
}

    .subscription_packages .package {
        height: 50px;
        width: 50px;
        margin: 0 15px;
        padding: 18px 0;
        color: #fff !important;
    }

        .subscription_packages .package .bg {
            background-image: url(../../images/demo-bg.png);
        }


/*-----------------------------------------------------------------------------------------------*/

.about_text {
    margin: 30px -70px;
    padding: 40px 70px;
    background: #fff;
}

.about_callout {
    position: relative;
    margin-top: 150px;
}

    .about_callout::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -30px;
        background: url(../../images/demo-bg.png);
        background-size: auto;
        background-size: contain;
        display: block;
        height: 200px;
        width: 200px;
        z-index: -1;
    }

/*-----------------------------------------------------------------------------------------------*/

.services {
    display: flex;
    justify-content: space-between;
}

    .services .service {
        padding: 3em;
        height: 320px;
        width: 320px;
        background: #FFF;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: space-between;
        text-align: center;
    }

        .services .service h1 {
            font-size: 5em;
        }

        .services .service h2 {
            font-weight: bold;
        }

            .services .service h2:first-of-type {
                color: hotpink;
            }


/*-----------------------------------------------------------------------------------------------*/
.breadcrumb {
    padding: 0px;
    background-color: transparent;
}

    .breadcrumb > li + li:before {
        color: #000000;
    }

    .breadcrumb > .active {
        color: #000000;
    }

    .breadcrumb.white > li + li:before,
    .breadcrumb.white > .active {
        color: #fff;
    }
/*-----------------------------------------------------------------------------------------------*/


#page.loaded + #footer {
    opacity: 1;
}

#footer {
    margin-top: 0;
    padding: 20px 0px;
    color: #fff;
    background: var(--black);
    opacity: 0;
    transition: opacity .5s;
}

    #footer > .container {
        display: flex;
    }

        #footer > .container::before,
        #footer > .container::after{
            content: none;
        }

        #footer > .container > div {
            flex: 1 1 0px;
        }

    #footer p {
        font-size: 1em;
    }

    #footer a{
        color: var(--white);
    }

    #footer .menu .side_menu {
        list-style: decimal-leading-zero;
    }
        #footer .menu .side_menu a {
            padding-left: 2px;
            font-weight: 600;
        }

    #footer .footer_contact .content {
        max-width: 215px;
        margin-left: auto;
    }

    #footer .footer_contact .copyright a {
        display: block;
    }
/*.page_home #footer,
.master_public #footer {
    margin-top: 0;
    padding: 40px 0px;
}

#footer {
    margin-top: 0;
    padding: 20px 0px;
    color: #FFFFFF;
    background-color: #000;
    opacity: 0;
    transition: opacity .5s;
}

#page.loaded + #footer {
    opacity: 1;
}

#footer .footer_left {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

#footer .footer_news {
    grid-column: 3 / 7;
}

#footer .footer_contact {
    grid-column: 8 / 10;
    display: flex;
    gap: 10px;
}

    #footer .footer_contact > div:first-of-type {
        flex-basis: 60%;
    }

#footer .footer_menu {
    margin-left: 10px;
}

#footer a {
    color: #fff;
}

#footer .copyright {
    opacity: .8;
}

    #footer .copyright p {
        margin: 0;
        font-size: 13px;
    }

    #footer .copyright a {
        display: block;
    }*/


/*-----------------------------------------------------------------------------------------------*/

#modal_edit .modal-dialog,
#modal_fullsize_image .modal-dialog {
    display: block;
    max-width: 80%;
    width: fit-content;
}

#modal_fullsize_image img {
    background: white;
    margin: 0 auto;
}

/*-----------------------------------------------------------------------------------------------*/

.flex-align-right {
    margin-left: auto;
}

.flex-align-left {
    margin-right: auto;
}

.flex-align-center {
    margin-left: auto;
    margin-right: auto;
}

.dropdown.dd_map_type {
    max-width: 200px;
}

    .dropdown.dd_map_type .dd-selected {
        padding-right: 40px;
    }

    .dropdown.dd_map_type .dd-values {
        right: -80px;
        top: 45px;
    }

        .dropdown.dd_map_type .dd-values li {
            min-width: 310px;
        }
