/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */

:root {
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
    --red: #ff0000;
}
/* variables*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: Consolas,"Segoe UI",Arial,"Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Header */
.header {
    font-family: "Segoe UI",Arial,"Poppins", sans-serif;
    font-size: 20px;
    background-color: var(--white);
    box-shadow: 1px 1px 5px 0px var(--gray);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 500;
}
/*footer*/
.sticky-footer {
    font-family: "Segoe UI",Arial,"Poppins", sans-serif;
    font-size: 18px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}
/* Logo */
.logo {
    display: inline-block;
    color: var(--white);
    font-size: 60px;
    margin-left: 10px;
}

/* Nav menu */
.nav {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--white);
    overflow: hidden;
}

.menu a {
    display: block;
    padding: 30px;
    color: var(--black);
    background-color: transparent;
    text-decoration: none;
}

    .menu a:hover {
        background-color: var(--gray);
    }

.nav {
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */
.hamb {
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}
/* Style label tag */

.hamb-line {
    background: var(--red);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
}
    /* Style span tag */

    .hamb-line::before,
    .hamb-line::after {
        background: var(--red);
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }

    .hamb-line::before {
        top: 5px;
    }

    .hamb-line::after {
        top: -5px;
    }

.side-menu {
    display: none;
}
    /* Hide checkbox */

    /* Toggle menu icon */
    .side-menu:checked ~ nav {
        max-height: 100%;
    }

    .side-menu:checked ~ .hamb .hamb-line {
        background: transparent;
    }

        .side-menu:checked ~ .hamb .hamb-line::before {
            transform: rotate(-45deg);
            top: 0;
        }

        .side-menu:checked ~ .hamb .hamb-line::after {
            transform: rotate(45deg);
            top: 0;
        }

/* Responsiveness */
@media (min-width: 768px) {
    .nav {
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }

    .menu li {
        float: left;
    }

    .menu a:hover {
        background-color: transparent;
        color: var(--gray);
    }

    .hamb {
        display: none;
    }
}



/* google map */
.google-map {
    /*padding-bottom: 50%;*/
    height: 100%;
    position: relative;
}

    .google-map iframe {
        height: 600px;
        width: 100%;
        left: 0;
        top: 0;
        position: relative;
    }

/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

html {
    box-sizing: border-box
}

*, *:before, *:after {
    box-sizing: inherit
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
    display: block
}

summary {
    display: list-item
}

audio, canvas, progress, video {
    display: inline-block
}

progress {
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

/*ul {
    list-style-type: square;
}*/

/*a {
    background-color: transparent
}*/

    a:active, a:hover {
        outline-width: 0
    }

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b, strong {
    font-weight: bolder
}

dfn {
    font-style: italic
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

figure {
    margin: 1em 40px
}

img {
    border-style: none
}

code, kbd, pre, samp {
    font-family: monospace,monospace;
    font-size: 1em
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

button, input, select, textarea, optgroup {
    font: inherit;
    margin: 0
}

optgroup {
    font-weight: bold
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

button, [type=button], [type=reset], [type=submit] {
    -webkit-appearance: button
}

    button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
        border-style: none;
        padding: 0
    }

    button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
        outline: 1px dotted ButtonText
    }

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

textarea {
    overflow: auto
}

[type=checkbox], [type=radio] {
    padding: 0
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

    [type=search]::-webkit-search-decoration {
        -webkit-appearance: none
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}
/* End extract */

html {
    overflow-x: hidden
}

h1 {
    font-size: 36px
}

h2 {
    font-size: 30px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

.rh-serif {
    font-family: serif
}

.rh-sans-serif {
    font-family: sans-serif
}

.rh-cursive {
    font-family: cursive
}

.rh-monospace {
    font-family: monospace
}

h1, h2, h3, h4, h5, h6 {
    font-family: Consolas,"Segoe UI",Arial,sans-serif;
    font-weight: 400;
    margin: 10px 0
}

.rh-wide {
    letter-spacing: 4px
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0
}

.rh-image {
    max-width: 100%;
    height: auto
}

img {
    vertical-align: middle
}

a {
    color: inherit
}

.rh-table, .rh-table-all {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    display: table
}

.rh-table-all {
    border: 1px solid #ccc
}

    .rh-bordered tr, .rh-table-all tr {
        border-bottom: 1px solid #ddd
    }

.rh-striped tbody tr:nth-child(even) {
    background-color: #f1f1f1
}

.rh-table-all tr:nth-child(odd) {
    background-color: #fff
}

.rh-table-all tr:nth-child(even) {
    background-color: #f1f1f1
}

.rh-hoverable tbody tr:hover, .rh-ul.rh-hoverable li:hover {
    background-color: #ccc
}

.rh-centered tr th, .rh-centered tr td {
    text-align: center
}

.rh-table td, .rh-table th, .rh-table-all td, .rh-table-all th {
    padding: 8px 8px;
    display: table-cell;
    text-align: left;
    vertical-align: top
}

    .rh-table th:first-child, .rh-table td:first-child, .rh-table-all th:first-child, .rh-table-all td:first-child {
        padding-left: 16px
    }

.rh-btn, .rh-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap
}

    .rh-btn:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)
    }

.rh-btn, .rh-button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .rh-disabled, .rh-btn:disabled, .rh-button:disabled {
        cursor: not-allowed;
        opacity: 0.3
    }

        .rh-disabled *, :disabled * {
            pointer-events: none
        }

        .rh-btn.rh-disabled:hover, .rh-btn:disabled:hover {
            box-shadow: none
        }

.rh-badge, .rh-tag {
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center
}

.rh-badge {
    border-radius: 50%
}

/*.rh-ul {
    list-style-type: none;
    padding: 0;
    margin: 0
}

    .rh-ul li {
        padding: 8px 16px;
        border-bottom: 1px solid #ddd
    }

        .rh-ul li:last-child {
            border-bottom: none
        }*/

.rh-tooltip, .rh-display-container {
    position: relative
}

.rh-tooltip .rh-text {
    display: none
}

.rh-tooltip:hover .rh-text {
    display: inline-block
}

.rh-ripple:active {
    opacity: 0.5
}

.rh-ripple {
    transition: opacity 0s
}

.rh-input {
    padding: 8px;
    display: block;
    border: none;
    border-bottom: 1px solid #ccc;
    width: 100%
}

.rh-select {
    padding: 9px 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc
}

.rh-dropdown-click, .rh-dropdown-hover {
    position: relative;
    display: inline-block;
    cursor: pointer
}

    .rh-dropdown-hover:hover .rh-dropdown-content {
        display: block
    }

    .rh-dropdown-hover:first-child, .rh-dropdown-click:hover {
        background-color: #ccc;
        color: #000
    }

        .rh-dropdown-hover:hover > .rh-button:first-child, .rh-dropdown-click:hover > .rh-button:first-child {
            background-color: #ccc;
            color: #000
        }

.rh-dropdown-content {
    cursor: auto;
    color: #000;
    background-color: #fff;
    display: none;
    position: absolute;
    min-width: 160px;
    margin: 0;
    padding: 0;
    z-index: 1
}

.rh-check, .rh-radio {
    width: 24px;
    height: 24px;
    position: relative;
    top: 6px
}

.rh-sidebar {
    height: 100%;
    width: 200px;
    background-color: #fff;
    position: fixed !important;
    z-index: 1;
    overflow: auto
}

.rh-bar-block .rh-dropdown-hover, .rh-bar-block .rh-dropdown-click {
    width: 100%
}

    .rh-bar-block .rh-dropdown-hover .rh-dropdown-content, .rh-bar-block .rh-dropdown-click .rh-dropdown-content {
        min-width: 100%
    }

    .rh-bar-block .rh-dropdown-hover .rh-button, .rh-bar-block .rh-dropdown-click .rh-button {
        width: 100%;
        text-align: left;
        padding: 8px 16px
    }

.rh-main, #main {
    transition: margin-left .4s
}

.rh-modal {
    z-index: 3;
    display: none;
    padding-top: 100px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4)
}

.rh-modal-content {
    margin: auto;
    background-color: #fff;
    position: relative;
    padding: 0;
    outline: 0;
    width: 60px
}

.rh-bar {
    width: 100%;
    overflow: hidden
}

.rh-center .rh-bar {
    display: inline-block;
    width: auto
}

.rh-bar .rh-bar-item {
    padding: 8px 16px;
    float: left;
    width: auto;
    border: none;
    display: block;
    outline: 0
}

.rh-bar .rh-dropdown-hover, .rh-bar .rh-dropdown-click {
    position: static;
    float: left
}

.rh-bar .rh-button {
    white-space: normal
}

.rh-bar-block .rh-bar-item {
    width: 100%;
    display: block;
    padding: 8px 16px;
    text-align: left;
    border: none;
    white-space: normal;
    float: none;
    outline: 0
}

.rh-bar-block.rh-center .rh-bar-item {
    text-align: center
}

.rh-block {
    display: block;
    width: 100%
}

.rh-responsive {
    display: block;
    overflow-x: auto
}

.rh-container:after, .rh-container:before, .rh-panel:after, .rh-panel:before, .rh-row:after, .rh-row:before, .rh-row-padding:after, .rh-row-padding:before,
.rh-cell-row:before, .rh-cell-row:after, .rh-clear:after, .rh-clear:before, .rh-bar:before, .rh-bar:after {
    content: "";
    display: table;
    clear: both
}

.rh-col, .rh-half, .rh-third, .rh-twothird, .rh-threequarter, .rh-quarter {
    float: left;
    width: 100%
}

    .rh-col.s1 {
        width: 8.33333%
    }

    .rh-col.s2 {
        width: 16.66666%
    }

    .rh-col.s3 {
        width: 24.99999%
    }

    .rh-col.s4 {
        width: 33.33333%
    }

    .rh-col.s5 {
        width: 41.66666%
    }

    .rh-col.s6 {
        width: 49.99999%
    }

    .rh-col.s7 {
        width: 58.33333%
    }

    .rh-col.s8 {
        width: 66.66666%
    }

    .rh-col.s9 {
        width: 74.99999%
    }

    .rh-col.s10 {
        width: 83.33333%
    }

    .rh-col.s11 {
        width: 91.66666%
    }

    .rh-col.s12 {
        width: 99.99999%
    }

@media (min-width:601px) {
    .rh-col.m1 {
        width: 8.33333%
    }

    .rh-col.m2 {
        width: 16.66666%
    }

    .rh-col.m3, .rh-quarter {
        width: 24.99999%
    }

    .rh-col.m4, .rh-third {
        width: 33.33333%
    }

    .rh-col.m5 {
        width: 41.66666%
    }

    .rh-col.m6, .rh-half {
        width: 49.99999%
    }

    .rh-col.m7 {
        width: 58.33333%
    }

    .rh-col.m8, .rh-twothird {
        width: 66.66666%
    }

    .rh-col.m9, .rh-threequarter {
        width: 74.99999%
    }

    .rh-col.m10 {
        width: 83.33333%
    }

    .rh-col.m11 {
        width: 91.66666%
    }

    .rh-col.m12 {
        width: 99.99999%
    }
}

@media (min-width:993px) {
    .rh-col.l1 {
        width: 8.33333%
    }

    .rh-col.l2 {
        width: 16.66666%
    }

    .rh-col.l3 {
        width: 24.99999%
    }

    .rh-col.l4 {
        width: 33.33333%
    }

    .rh-col.l5 {
        width: 41.66666%
    }

    .rh-col.l6 {
        width: 49.99999%
    }

    .rh-col.l7 {
        width: 58.33333%
    }

    .rh-col.l8 {
        width: 66.66666%
    }

    .rh-col.l9 {
        width: 74.99999%
    }

    .rh-col.l10 {
        width: 83.33333%
    }

    .rh-col.l11 {
        width: 91.66666%
    }

    .rh-col.l12 {
        width: 99.99999%
    }
}

.rh-rest {
    overflow: hidden
}

.rh-stretch {
    margin-left: -16px;
    margin-right: -16px
}

.rh-content, .rh-auto {
    margin-left: auto;
    margin-right: auto
}

.rh-content {
    max-width: 980px
}

.rh-auto {
    max-width: 1140px
}

.rh-cell-row {
    display: table;
    width: 100%
}

.rh-cell {
    display: table-cell
}

.rh-cell-top {
    vertical-align: top
}

.rh-cell-middle {
    vertical-align: middle
}

.rh-cell-bottom {
    vertical-align: bottom
}

.rh-hide {
    display: none !important
}

.rh-show-block, .rh-show {
    display: block !important
}

.rh-show-inline-block {
    display: inline-block !important
}

@media (max-width:1205px) {
    .rh-auto {
        max-width: 95%
    }
}

@media (max-width:600px) {
    .rh-modal-content {
        margin: 0 10px;
        width: auto !important
    }

    .rh-modal {
        padding-top: 30px
    }

    .rh-dropdown-hover.rh-mobile .rh-dropdown-content, .rh-dropdown-click.rh-mobile .rh-dropdown-content {
        position: relative
    }

    .rh-hide-small {
        display: none !important
    }

    .rh-mobile {
        display: block;
        width: 100% !important
    }

    .rh-bar-item.rh-mobile, .rh-dropdown-hover.rh-mobile, .rh-dropdown-click.rh-mobile {
        text-align: center
    }

        .rh-dropdown-hover.rh-mobile, .rh-dropdown-hover.rh-mobile .rh-btn, .rh-dropdown-hover.rh-mobile .rh-button, .rh-dropdown-click.rh-mobile, .rh-dropdown-click.rh-mobile .rh-btn, .rh-dropdown-click.rh-mobile .rh-button {
            width: 100%
        }
}

@media (max-width:768px) {
    .rh-modal-content {
        width: 500px
    }

    .rh-modal {
        padding-top: 50px
    }
}

@media (min-width:993px) {
    .rh-modal-content {
        width: 900px
    }

    .rh-hide-large {
        display: none !important
    }

    .rh-sidebar.rh-collapse {
        display: block !important
    }
}

@media (max-width:992px) and (min-width:601px) {
    .rh-hide-medium {
        display: none !important
    }
}

@media (max-width:992px) {
    .rh-sidebar.rh-collapse {
        display: none
    }

    .rh-main {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .rh-auto {
        max-width: 100%
    }
}

.rh-top, .rh-bottom {
    position: fixed;
    width: 100%;
    z-index: 1
}

.rh-top {
    top: 0
}

.rh-bottom {
    bottom: 0
}

.rh-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2
}

.rh-display-topleft {
    position: absolute;
    left: 0;
    top: 0
}

.rh-display-topright {
    position: absolute;
    right: 0;
    top: 0
}

.rh-display-bottomleft {
    position: absolute;
    left: 0;
    bottom: 0
}

.rh-display-bottomright {
    position: absolute;
    right: 0;
    bottom: 0
}

.rh-display-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%)
}

.rh-display-left {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%,-50%);
    -ms-transform: translate(-0%,-50%)
}

.rh-display-right {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%)
}

.rh-display-topmiddle {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%)
}

.rh-display-bottommiddle {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%)
}

.rh-display-container:hover .rh-display-hover {
    display: block
}

.rh-display-container:hover span.rh-display-hover {
    display: inline-block
}

.rh-display-hover {
    display: none
}

.rh-display-position {
    position: absolute
}

.rh-circle {
    border-radius: 50%
}

.rh-round-small {
    border-radius: 2px
}

.rh-round, .rh-round-medium {
    border-radius: 4px
}

.rh-round-large {
    border-radius: 8px
}

.rh-round-xlarge {
    border-radius: 16px
}

.rh-round-xxlarge {
    border-radius: 32px
}

.rh-row-padding, .rh-row-padding > .rh-half, .rh-row-padding > .rh-third, .rh-row-padding > .rh-twothird, .rh-row-padding > .rh-threequarter, .rh-row-padding > .rh-quarter, .rh-row-padding > .rh-col {
    padding: 0 8px
}

.rh-container, .rh-panel {
    padding: 0.01em 16px
}

.rh-panel {
    margin-top: 16px;
    margin-bottom: 16px
}

.rh-code, .rh-codespan {
    font-family: Consolas,"courier new";
    font-size: 16px
}

.rh-code {
    width: auto;
    background-color: #fff;
    padding: 8px 12px;
    border-left: 4px solid #4CAF50;
    word-wrap: break-word
}

.rh-codespan {
    color: crimson;
    background-color: #f1f1f1;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 110%
}

.rh-card, .rh-card-2 {
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)
}

.rh-card-4, .rh-hover-shadow:hover {
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)
}

.rh-spin {
    animation: rh-spin 2s infinite linear
}

@keyframes rh-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(359deg)
    }
}

.rh-animate-fading {
    animation: fading 10s infinite
}

@keyframes fading {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.rh-animate-opacity {
    animation: opac 0.8s
}

@keyframes opac {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.rh-animate-top {
    position: relative;
    animation: animatetop 0.4s
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.rh-animate-left {
    position: relative;
    animation: animateleft 0.4s
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 0
    }

    to {
        left: 0;
        opacity: 1
    }
}

.rh-animate-right {
    position: relative;
    animation: animateright 0.4s
}

@keyframes animateright {
    from {
        right: -300px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

.rh-animate-bottom {
    position: relative;
    animation: animatebottom 0.4s
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

.rh-animate-zoom {
    animation: animatezoom 0.6s
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.rh-animate-input {
    transition: width 0.4s ease-in-out
}

    .rh-animate-input:focus {
        width: 100% !important
    }

.rh-opacity, .rh-hover-opacity:hover {
    opacity: 0.60
}

.rh-opacity-off, .rh-hover-opacity-off:hover {
    opacity: 1
}

.rh-opacity-max {
    opacity: 0.25
}

.rh-opacity-min {
    opacity: 0.75
}

.rh-greyscale-max, .rh-grayscale-max, .rh-hover-greyscale:hover, .rh-hover-grayscale:hover {
    filter: grayscale(100%)
}

.rh-greyscale, .rh-grayscale {
    filter: grayscale(75%)
}

.rh-greyscale-min, .rh-grayscale-min {
    filter: grayscale(50%)
}

.rh-sepia {
    filter: sepia(75%)
}

.rh-sepia-max, .rh-hover-sepia:hover {
    filter: sepia(100%)
}

.rh-sepia-min {
    filter: sepia(50%)
}

.rh-tiny {
    font-size: 10px !important
}

.rh-small {
    font-size: 12px !important
}

.rh-medium {
    font-size: 15px !important
}

.rh-large {
    font-size: 18px !important
}

.rh-xlarge {
    font-size: 24px !important
}

.rh-xxlarge {
    font-size: 32px !important
}

.rh-xxxlarge {
    font-size: 48px !important
}

.rh-jumbo {
    font-size: 64px !important
}

.rh-left-align {
    text-align: left !important
}

.rh-right-align {
    text-align: right !important
}

.rh-justify {
    text-align: justify !important
}

.rh-center {
    text-align: center !important
}

.rh-border-0 {
    border: 0 !important
}

.rh-border {
    border: 1px solid #ccc !important
}

.rh-border-top {
    border-top: 1px solid #ccc !important
}

.rh-border-bottom {
    border-bottom: 1px solid #ccc !important
}

.rh-border-left {
    border-left: 1px solid #ccc !important
}

.rh-border-right {
    border-right: 1px solid #ccc !important
}

.rh-topbar {
    border-top: 6px solid #ccc !important
}

.rh-bottombar {
    border-bottom: 6px solid #ccc !important
}

.rh-leftbar {
    border-left: 6px solid #ccc !important
}

.rh-rightbar {
    border-right: 6px solid #ccc !important
}

.rh-section, .rh-code {
    margin-top: 16px !important;
    margin-bottom: 16px !important
}

.rh-margin {
    margin: 16px !important
}

.rh-margin-top {
    margin-top: 16px !important
}

.rh-margin-bottom {
    margin-bottom: 16px !important
}

.rh-margin-left {
    margin-left: 16px !important
}

.rh-margin-right {
    margin-right: 16px !important
}

.rh-padding-small {
    padding: 4px 8px !important
}

.rh-padding {
    padding: 8px 16px !important
}

.rh-padding-large {
    padding: 12px 24px !important
}

.rh-padding-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important
}

.rh-padding-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important
}

.rh-padding-32 {
    padding-top: 32px !important;
    padding-bottom: 32px !important
}

.rh-padding-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important
}

.rh-padding-64 {
    padding-top: 64px !important;
    padding-bottom: 64px !important
}

.rh-padding-128 {
    padding-top: 128px !important;
    padding-bottom: 128px !important
}

.rh-padding-top-64 {
    padding-top: 64px !important
}

.rh-padding-top-48 {
    padding-top: 48px !important
}

.rh-padding-top-32 {
    padding-top: 32px !important
}

.rh-padding-top-24 {
    padding-top: 24px !important
}

.rh-left {
    float: left !important
}

.rh-right {
    float: right !important
}

.rh-button:hover {
    color: #000 !important;
    background-color: #ccc !important
}

.rh-transparent, .rh-hover-none:hover {
    background-color: transparent !important
}

.rh-hover-none:hover {
    box-shadow: none !important
}
/* Colors */
.rh-amber, .rh-hover-amber:hover {
    color: #000 !important;
    background-color: #ffc107 !important
}

.rh-aqua, .rh-hover-aqua:hover {
    color: #000 !important;
    background-color: #00ffff !important
}

.rh-blue, .rh-hover-blue:hover {
    color: #fff !important;
    background-color: #2196F3 !important
}

.rh-light-blue, .rh-hover-light-blue:hover {
    color: #000 !important;
    background-color: #87CEEB !important
}

.rh-brown, .rh-hover-brown:hover {
    color: #fff !important;
    background-color: #795548 !important
}

.rh-cyan, .rh-hover-cyan:hover {
    color: #000 !important;
    background-color: #00bcd4 !important
}

.rh-blue-grey, .rh-hover-blue-grey:hover, .rh-blue-gray, .rh-hover-blue-gray:hover {
    color: #fff !important;
    background-color: #607d8b !important
}

.rh-green, .status-available, .rh-hover-green:hover {
    color: #fff !important;
    background-color: #4CAF50 !important
}

.rh-light-green, .rh-hover-light-green:hover {
    color: #000 !important;
    background-color: #8bc34a !important
}

.rh-indigo, .rh-hover-indigo:hover {
    color: #fff !important;
    background-color: #3f51b5 !important
}

.rh-khaki, .rh-hover-khaki:hover {
    color: #000 !important;
    background-color: #f0e68c !important
}

.rh-lime, .rh-hover-lime:hover {
    color: #000 !important;
    background-color: #cddc39 !important
}

.rh-orange, .rh-hover-orange:hover {
    color: #000 !important;
    background-color: #ff9800 !important
}

.rh-deep-orange, .rh-hover-deep-orange:hover {
    color: #fff !important;
    background-color: #ff5722 !important
}

.rh-pink, .rh-hover-pink:hover {
    color: #fff !important;
    background-color: #e91e63 !important
}

.rh-purple, .rh-hover-purple:hover {
    color: #fff !important;
    background-color: #9c27b0 !important
}

.rh-deep-purple, .rh-hover-deep-purple:hover {
    color: #fff !important;
    background-color: #673ab7 !important
}

.rh-red, .status-reserved, .rh-hover-red:hover {
    color: #fff !important;
    background-color: #f44336 !important
}

.rh-sand, .rh-hover-sand:hover {
    color: #000 !important;
    background-color: #fdf5e6 !important
}

.rh-teal, .rh-hover-teal:hover {
    color: #fff !important;
    background-color: #009688 !important
}

.rh-yellow, .status-onhold, .rh-hover-yellow:hover {
    color: #000 !important;
    background-color: #ffeb3b !important
}

.rh-white, .rh-hover-white:hover {
    color: #000 !important;
    background-color: #fff !important
}

.rh-black, .rh-hover-black:hover {
    color: #fff !important;
    background-color: #000 !important
}

.rh-grey, .rh-hover-grey:hover, .rh-gray, .rh-hover-gray:hover, .status-adopted {
    color: #000 !important;
    background-color: #9e9e9e !important
}

.rh-light-grey, .rh-hover-light-grey:hover, .rh-light-gray, .rh-hover-light-gray :hover {
    color: #000 !important;
    background-color: #f1f1f1 !important
}

.rh-dark-grey, .rh-hover-dark-grey:hover, .rh-dark-gray, .rh-hover-dark-gray:hover {
    color: #fff !important;
    background-color: #616161 !important
}

.rh-pale-red, .rh-hover-pale-red:hover {
    color: #000 !important;
    background-color: #ffdddd !important
}

.rh-pale-green, .rh-hover-pale-green:hover {
    color: #000 !important;
    background-color: #ddffdd !important
}

.rh-pale-yellow, .rh-hover-pale-yellow:hover {
    color: #000 !important;
    background-color: #ffffcc !important
}

.rh-pale-blue, .rh-hover-pale-blue:hover {
    color: #000 !important;
    background-color: #ddffff !important
}

.rh-text-amber, .rh-hover-text-amber:hover {
    color: #ffc107 !important
}

.rh-text-aqua, .rh-hover-text-aqua:hover {
    color: #00ffff !important
}

.rh-text-blue, .rh-hover-text-blue:hover {
    color: #2196F3 !important
}

.rh-text-light-blue, .rh-hover-text-light-blue:hover {
    color: #87CEEB !important
}

.rh-text-brown, .rh-hover-text-brown:hover {
    color: #795548 !important
}

.rh-text-cyan, .rh-hover-text-cyan:hover {
    color: #00bcd4 !important
}

.rh-text-blue-grey, .rh-hover-text-blue-grey:hover, .rh-text-blue-gray, .rh-hover-text-blue-gray:hover {
    color: #607d8b !important
}

.rh-text-green, .rh-hover-text-green:hover {
    color: #4CAF50 !important
}

.rh-text-light-green, .rh-hover-text-light-green:hover {
    color: #8bc34a !important
}

.rh-text-indigo, .rh-hover-text-indigo:hover {
    color: #3f51b5 !important
}

.rh-text-khaki, .rh-hover-text-khaki:hover {
    color: #b4aa50 !important
}

.rh-text-lime, .rh-hover-text-lime:hover {
    color: #cddc39 !important
}

.rh-text-orange, .rh-hover-text-orange:hover {
    color: #ff9800 !important
}

.rh-text-deep-orange, .rh-hover-text-deep-orange:hover {
    color: #ff5722 !important
}

.rh-text-pink, .rh-hover-text-pink:hover {
    color: #e91e63 !important
}

.rh-text-purple, .rh-hover-text-purple:hover {
    color: #9c27b0 !important
}

.rh-text-deep-purple, .rh-hover-text-deep-purple:hover {
    color: #673ab7 !important
}

.rh-text-red, .rh-hover-text-red:hover {
    color: #f44336 !important
}

.rh-text-sand, .rh-hover-text-sand:hover {
    color: #fdf5e6 !important
}

.rh-text-teal, .rh-hover-text-teal:hover {
    color: #009688 !important
}

.rh-text-yellow, .rh-hover-text-yellow:hover {
    color: #d2be0e !important
}

.rh-text-white, .rh-hover-text-white:hover {
    color: #fff !important
}

.rh-text-black, .rh-hover-text-black:hover {
    color: #000 !important
}

.rh-text-grey, .rh-hover-text-grey:hover, .rh-text-gray, .rh-hover-text-gray:hover {
    color: #757575 !important
}

.rh-text-light-grey, .rh-hover-text-light-grey:hover, .rh-text-light-gray, .rh-hover-text-light-gray:hover {
    color: #f1f1f1 !important
}

.rh-text-dark-grey, .rh-hover-text-dark-grey:hover, .rh-text-dark-gray, .rh-hover-text-dark-gray:hover {
    color: #3a3a3a !important
}

.rh-border-amber, .rh-hover-border-amber:hover {
    border-color: #ffc107 !important
}

.rh-border-aqua, .rh-hover-border-aqua:hover {
    border-color: #00ffff !important
}

.rh-border-blue, .rh-hover-border-blue:hover {
    border-color: #2196F3 !important
}

.rh-border-light-blue, .rh-hover-border-light-blue:hover {
    border-color: #87CEEB !important
}

.rh-border-brown, .rh-hover-border-brown:hover {
    border-color: #795548 !important
}

.rh-border-cyan, .rh-hover-border-cyan:hover {
    border-color: #00bcd4 !important
}

.rh-border-blue-grey, .rh-hover-border-blue-grey:hover, .rh-border-blue-gray, .rh-hover-border-blue-gray:hover {
    border-color: #607d8b !important
}

.rh-border-green, .rh-hover-border-green:hover {
    border-color: #4CAF50 !important
}

.rh-border-light-green, .rh-hover-border-light-green:hover {
    border-color: #8bc34a !important
}

.rh-border-indigo, .rh-hover-border-indigo:hover {
    border-color: #3f51b5 !important
}

.rh-border-khaki, .rh-hover-border-khaki:hover {
    border-color: #f0e68c !important
}

.rh-border-lime, .rh-hover-border-lime:hover {
    border-color: #cddc39 !important
}

.rh-border-orange, .rh-hover-border-orange:hover {
    border-color: #ff9800 !important
}

.rh-border-deep-orange, .rh-hover-border-deep-orange:hover {
    border-color: #ff5722 !important
}

.rh-border-pink, .rh-hover-border-pink:hover {
    border-color: #e91e63 !important
}

.rh-border-purple, .rh-hover-border-purple:hover {
    border-color: #9c27b0 !important
}

.rh-border-deep-purple, .rh-hover-border-deep-purple:hover {
    border-color: #673ab7 !important
}

.rh-border-red, .rh-hover-border-red:hover {
    border-color: #f44336 !important
}

.rh-border-sand, .rh-hover-border-sand:hover {
    border-color: #fdf5e6 !important
}

.rh-border-teal, .rh-hover-border-teal:hover {
    border-color: #009688 !important
}

.rh-border-yellow, .rh-hover-border-yellow:hover {
    border-color: #ffeb3b !important
}
00
.rh-border-white, .rh-hover-border-white:hover {
    border-color: #fff !important
}

.rh-border-black, .rh-hover-border-black:hover {
    border-color: #000 !important
}

.rh-border-grey, .rh-hover-border-grey:hover, .rh-border-gray, .rh-hover-border-gray:hover {
    border-color: #9e9e9e !important
}

.rh-border-light-grey, .rh-hover-border-light-grey:hover, .rh-border-light-gray, .rh-hover-border-light-gray:hover {
    border-color: #f1f1f1 !important
}

.rh-border-dark-grey, .rh-hover-border-dark-grey:hover, .rh-border-dark-gray, .rh-hover-border-dark-gray:hover {
    border-color: #616161 !important
}

.rh-border-pale-red, .rh-hover-border-pale-red:hover {
    border-color: #ffe7e7 !important
}

.rh-border-pale-green, .rh-hover-border-pale-green:hover {
    border-color: #e7ffe7 !important
}

.rh-border-pale-yellow, .rh-hover-border-pale-yellow:hover {
    border-color: #ffffcc !important
}

.rh-border-pale-blue, .rh-hover-border-pale-blue:hover {
    border-color: #e7ffff !important
}

* {
    box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
.column {
    float: left;
    padding: 64px;
    min-height: 100%;
    max-height: none;
    /*height: 100%;*/ /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.ch_link a:link {
    color: #551A8B;
    background-color: transparent;
    text-decoration: none;
}

.ch_link a:visited {
    color: #0000EE;
    background-color: transparent;
    text-decoration: none;
}

.ch_link a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}

.ch_link a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}

.ch-button-black {
    color: #fff !important;
    background-color: gray !important
}
.ch-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap
}
.ch-display-left {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%,-50%);
    -ms-transform: translate(-0%,-50%)
}

.ch-display-right {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%)
}

.ch-display-container {
    position: relative
}

.ch-display-container:hover .ch-display-hover {
    display: block
}

.ch-display-container:hover span.ch-display-hover {
    display: inline-block
}

.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* start magnifier */
* {
    box-sizing: border-box;
}

.zoom {
/*    padding: 50px;*/
    background-color: gray;
    transition: transform .2s;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

    .zoom:hover {
        -ms-transform: scale(1.5); /* IE 9 */
        -webkit-transform: scale(1.5); /* Safari 3-8 */
        transform: scale(3);
    }
/* end magnifier */

.mch-container {
    position: relative;
/*    width: 50%;*/
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 80%;
    left: 20%;
    width: 80%;
    /*    transform: translate(-50%, -50%);*/
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    transform: rotate(315deg);
}

.mch-container:hover .image {
    opacity: 1;
}

.mch-container:hover .middle {
    opacity: 1;
}

.text {
    background-color: #ff0000;
    color: white;
    font-size: 24px;
    padding: 8px 8px;
}

.article__heading {
    margin: 0 0 24px
}

.article__excerpt {
    margin: 0 0 20px
}

.article__content {
    margin-bottom: 48px
}

    .article__content > figure {
        display: block;
        height: auto;
        margin: 0 0 48px
    }

    .article__content figcaption {
        display: block;
        padding-top: 8px;
        font-weight: 500
    }

    .article__content > p, .article__content > ul, .article__content > ol {
        margin: 0 0 20px
    }
        .article__content > ul{
            list-style-type: disc;
            padding-left: 40px;
        }
        .article__content > p:last-child {
            margin-bottom: 0
        }

        .article__content > ul:last-child {
            margin-bottom: 0
        }

        .article__content > ol:last-child {
            margin-bottom: 0
        }

    .article__content > .wp-block-image {
        max-width: 818px;
        margin: 0 auto 20px
    }

.wp-block-separator {
    border: none;
    border-top: 2px solid
}