@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://protect-us.mimecast.com/s/jnVeCYEQMGi3QykxjcGzODc?domain=github.com
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article, aside, footer, header, nav, section {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
figcaption, figure, main {
  display: block;
}
figure {
  margin: 1em 0;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:active, a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: 1px #767676 dotted;
  text-decoration: none;
}
b, strong {
  font-weight: inherit;
}
b, strong {
  font-weight: 700;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
dfn {
  font-style: italic;
}
mark {
  background-color: #eee;
  color: #222;
}
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;
}
audio, video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
select {
  -webkit-appearance: none;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, html [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 #bbb;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  display: inline-block;
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  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-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details, menu {
  display: block;
}
summary {
  display: list-item;
}
canvas {
  display: inline-block;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
/*--------------------------------------------------------------
2.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}
/*--------------------------------------------------------------
3.0 Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*--------------------------------------------------------------
4.0 Clearings
--------------------------------------------------------------*/
.clear:before, .clear:after, .entry-content:before, .entry-content:after, .entry-footer:before, .entry-footer:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after, .nav-links:before, .nav-links:after, .pagination:before, .pagination:after, .comment-author:before, .comment-author:after, .widget-area:before, .widget-area:after, .widget:before, .widget:after, .comment-meta:before, .comment-meta:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after, .entry-content:after, .entry-footer:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after, .nav-links:after, .pagination:after, .comment-author:after, .widget-area:after, .widget:after, .comment-meta:after {
  clear: both;
}
/*--------------------------------------------------------------
5.0 Typography
--------------------------------------------------------------*/
body, button, input, select, textarea {
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5
}
h1, h2, h3 {
  clear: both;
  line-height: 1.25;
  margin: 0 0 1rem
}
h4, h5, h6 {
  clear: both;
  line-height: 1.25;
  margin: 0 0 1.25em
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  padding-top: 0
}
h1, .home h1 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 300
}
body:not(.home) h1 {
  font-size: 48px;
  font-size: 3rem
}
h2, .home.blog .entry-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic
}
h3 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400
}
h3 strong {
  font-weight: 700
}
h4 {
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase
}
.site-main h4 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 0 !important
}
h5 {
  color: gray;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase
}
h6 {
  color: #333;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 800
}
p {
  margin: 0 0 1.5em;
  padding: 0
}
dfn, cite, em, i {
  font-style: italic
}
blockquote {
  color: #666;
  font-size: 18px;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
  padding: 0
}
blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: .5em
}
address {
  margin: 0 0 1.5em
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em
}
code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: .9375rem
}
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help
}
mark, ins {
  background: #eee;
  text-decoration: none
}
big {
  font-size: 125%
}
blockquote {
  quotes: """"
}
q {
  quotes: "Ã¢â‚¬Å“""Ã¢â‚¬?""Ã¢â‚¬Ëœ""Ã¢â‚¬â„¢"
}
blockquote:before, blockquote:after {
  content: ""
}
:focus {
  outline: none
}
label {
  display: block;
  margin-bottom: .5em;
  color: #333;
  font-weight: 700
}
fieldset {
  margin-bottom: 1em
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select {
  color: #000;
  background: transparent;
  border: 1px solid #ccc;
  display: block;
  padding: .65625em;
  width: 100%
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
  color: #000
}
select {
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  height: 45px !important
}
input[type="radio"], input[type="checkbox"] {
  margin-right: .5em
}
input[type="radio"] + label, input[type="checkbox"] + label {
  font-weight: 400
}
button, input[type="button"], input[type="submit"] {
  border: none !important;
  background: #d51d35;
  background: linear-gradient(135deg, rgba(239, 77, 127, 0.8) 0%, rgba(255, 194, 14, 0.8) 100%);
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  padding: .5rem 2.25rem;
  -webkit-transition: background .4s;
  transition: background .4s;
  margin-right: 15px
}
input[type="reset"] {
  border: 1px solid #ddd;
  color: #212121;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  padding: .5rem 2.25rem;
  -webkit-transition: background .4s;
  transition: background .4s;
  margin-right: 15px
}
input + button, input + input[type="button"], input + input[type="submit"] {
  padding: .75em 2em
}
button.secondary, input[type="reset"], input[type="button"].secondary, input[type="reset"].secondary, input[type="submit"].secondary {
  background-color: #ddd;
  color: #222
}
button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #b99c7b
}
button.secondary:hover, button.secondary:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="button"].secondary:hover, input[type="button"].secondary:focus, input[type="reset"].secondary:hover, input[type="reset"].secondary:focus, input[type="submit"].secondary:hover, input[type="submit"].secondary:focus {
  background: #bbb
}
::-webkit-input-placeholder {
  color: #cbb390;
  font-family: 'Poppins', sans-serif
}
:-moz-placeholder {
  color: #cbb390;
  font-family: 'Poppins', sans-serif
}
::-moz-placeholder {
  color: #cbb390;
  font-family: 'Poppins', sans-serif;
  opacity: 1
}
:-ms-input-placeholder {
  color: #cbb390;
  font-family: 'Poppins', sans-serif
}
hr {
  background-color: #bbb;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em
}
ul, ol {
  margin: 0 0 1.5em;
  padding: 0 0 0 20px
}
ul {
  list-style: disc
}
ol {
  list-style: decimal
}
li > ul, li > ol {
  margin-bottom: 0;
  margin-left: 1.5em
}
dt {
  font-weight: 700
}
dd {
  margin: 0 1.5em 1.5em
}
table {
  border-collapse: collapse;
  margin: 0 0 1.5em;
  width: 100%
}
table table {
  margin: 0
}
thead th {
  border-bottom: 2px solid #bbb;
  padding-bottom: .5em
}
th {
  padding: .4em;
  text-align: left
}
.tableLine table tr {
  border-bottom: 1px solid #424242
}
.tableLine table tr:last-child {
  border-bottom: none
}
td {
  padding: .4em
}
th:first-child, td:first-child {
  padding-left: 0
}
th:last-child, td:last-child {
  padding-right: 0
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color .4s;
  transition: color .4s
}
a:focus {
  outline: thin dotted
}
a:hover, a:active {
  color: #d51d35;
  outline: 0;
  -webkit-transition: color .4s;
  transition: color .4s
}
.post-navigation a:focus .icon, .post-navigation a:hover .icon {
  color: #222
}
.post-thumbnail {
  margin-bottom: 1em
}
.post-thumbnail a img {
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity .4s;
  transition: opacity .4s
}
.post-thumbnail a:hover img, .post-thumbnail a:focus img {
  opacity: .7
}
.navigation-top {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0 !important;
  z-index: 3;
}
/*
@media(min-width: 768px) {
  .navigation-top {
    pointer-events: none
  }
}*/
.navigation-top .wrap {
  max-width: 1170px;
  padding-top: 20px;
}
.navigation-top a {
  color: #d51d35;
  -webkit-transition: color .4s;
  transition: color .4s;
  font-weight: 700;
}
.navigation-top .current-menu-item > a, .navigation-top .current_page_item > a {
  color: #d51d35
}
.main-navigation {
  clear: both;
  display: block;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0 15px;
  text-align: left
}
.js .main-navigation ul, .main-navigation .menu-item-has-children > a > .icon, .main-navigation .page_item_has_children > a > .icon, .main-navigation ul a > .icon {
  display: none
}
.main-navigation > div > ul {
  border-top: 1px solid #424242;
  padding-top: 80px;
  padding-left: 0px;
}
.js .main-navigation.toggled-on > div > ul {
  display: block
}
.main-navigation ul ul {
  padding: 0 0 0 1.5em
}
.main-navigation ul ul.toggled-on {
  display: block
}
.main-navigation ul ul a {
  letter-spacing: 0;
  padding: .85714285714286em 0;
  position: relative;
  text-transform: none
}
.main-navigation li {
  position: relative
}
.main-navigation li li, .main-navigation li:last-child {
  border: 0
}
.main-navigation a {
  display: block;
  padding: 10px 20px;
  text-decoration: none
}
@media screen and (max-width: 1140px) and (min-width: 768px) {
  .main-navigation a {
    padding: 10px 1.754385964912281vw
  }
}
.menu-toggle {
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #222;
  display: none;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 auto 0 0;
  padding: 1em;
  text-shadow: none
}
.js .menu-toggle {
  display: block
}
.main-navigation.toggled-on ul.nav-menu {
  display: block
}
.menu-toggle:hover, .menu-toggle:focus {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none
}
.menu-toggle:focus {
  outline: 1px dotted #212121
}
.menu-toggle .icon {
  margin-right: .5em;
  top: -2px
}
.toggled-on .menu-toggle .icon-bars, .menu-toggle .icon-close {
  display: none
}
.toggled-on .menu-toggle .icon-close {
  display: inline-block
}
.dropdown-toggle {
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #d51d35;
  display: block;
  font-size: 16px;
  right: -.5em;
  line-height: 1.5;
  margin: 0 auto;
  padding: .5em;
  position: absolute;
  text-shadow: none;
  top: 0;
  background: none;
}
.dropdown-toggle:hover, .dropdown-toggle:focus {
  background: transparent
}
.dropdown-toggle:focus {
  outline: thin dotted
}
.dropdown-toggle.toggled-on .icon {
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg)
}
.site-header .menu-scroll-down {
  display: none
}
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}
*, :before, :after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit
}
body {
  background-color: #FFF
}
#page {
  position: relative;
  word-wrap: break-word
}
.wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1170px;
  padding: 0 15px
}
.wrap:after {
  clear: both;
  content: "";
  display: block
}
#masthead {
  width: 100%;
  position: absolute;
  z-index: 100000;
  min-height: 135px
}
#masthead.scrollDown {
  background: rgba(255, 252, 249, 0.9);
  margin-top: -90px
}
#masthead.scrollDown .navigation-top a {
  color: #d51d35
}
#masthead.scrollDown .main-navigation li li.focus > a, #masthead.scrollDown .main-navigation li li:focus > a, #masthead.scrollDown .main-navigation li li:hover > a, #masthead.scrollDown .main-navigation li li a:hover, #masthead.scrollDown .main-navigation li li a:focus, #masthead.scrollDown .main-navigation li li.current_page_item a:hover, #masthead.scrollDown .main-navigation li li.current-menu-item a:hover, #masthead.scrollDown .main-navigation li li.current_page_item a:focus, #masthead.scrollDown .main-navigation li li.current-menu-item a:focus {
  color: #FFF
}
#masthead .wrap {
  position: relative
}
.site-header {
  position: relative
}
.scrollDown .site-branding {
  margin-top: 70px
}
.site-branding {
  padding: 20px 0 0;
  position: relative;
  -webkit-transition: margin-bottom .4s;
  transition: margin-bottom .4s;
  z-index: 3
}
.site-branding a {
  text-decoration: none;
  -webkit-transition: opacity .4s;
  transition: opacity .4s
}
.site-branding a:hover, .site-branding a:focus {
  opacity: .7
}
.site-title {
  clear: none;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .08em;
  margin: 0;
  padding: 0;
  text-transform: uppercase
}
.site-title, .site-title a {
  color: #d3c8b1;
  opacity: 1
}
body.has-header-image .site-title, body.has-header-video .site-title, body.has-header-image .site-title a, body.has-header-video .site-title a {
  color: #fff
}
.site-description {
  color: #666;
  font-size: 13px;
  font-size: .8125rem;
  margin-bottom: 0
}
body.has-header-image .site-description, body.has-header-video .site-description {
  color: #fff;
  opacity: .8
}
.custom-logo-link {
  display: inline-block;
  padding-right: 1em;
  vertical-align: middle;
  width: auto
}
.custom-logo-link img {
  display: inline-block;
  max-height: 80px;
  width: auto
}
body.home.title-tagline-hidden.has-header-image .custom-logo-link img, body.home.title-tagline-hidden.has-header-video .custom-logo-link img {
  max-height: 200px;
  max-width: 100%
}
.custom-logo-link a:hover, .custom-logo-link a:focus {
  opacity: .9
}
body:not(.title-tagline-hidden) .site-branding-text {
  display: inline-block;
  vertical-align: middle
}
.custom-header {
  position: relative
}
.has-header-image.rbhkgastyle-front-page .custom-header, .has-header-video.rbhkgastyle-front-page .custom-header, .has-header-image.home.blog .custom-header, .has-header-video.home.blog .custom-header {
  display: table;
  height: 300px;
  height: 75vh;
  width: 100%
}
.custom-header-media {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%
}
.custom-header-media:before {
  background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%);
  background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#4d000000", GradientType=0);
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2
}
.has-header-image .custom-header-media img, .has-header-video .custom-header-media video, .has-header-video .custom-header-media iframe {
  position: fixed;
  height: auto;
  left: 50%;
  max-width: 1000%;
  min-height: 100%;
  min-width: 100%;
  min-width: 100vw;
  width: auto;
  top: 50%;
  padding-bottom: 1px;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%)
}
.wp-custom-header .wp-custom-header-video-button {
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.6);
  height: 45px;
  overflow: hidden;
  padding: 0;
  position: fixed;
  right: 30px;
  top: 30px;
  -webkit-transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out;
  transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out;
  width: 45px
}
.wp-custom-header .wp-custom-header-video-button:hover, .wp-custom-header .wp-custom-header-video-button:focus {
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(34, 34, 34, 0.8);
  color: #fff
}
.admin-bar .wp-custom-header-video-button {
  top: 62px
}
.has-header-image:not(.rbhkgastyle-front-page):not(.home) .custom-header-media img {
  bottom: 0;
  position: absolute;
  top: auto;
  -ms-transform: translateX(-50%) translateY(0);
  -moz-transform: translateX(-50%) translateY(0);
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0)
}
body:not(.has-header-image):not(.has-header-video) .custom-header-media {
  display: none
}
.has-header-image.rbhkgastyle-front-page .site-branding, .has-header-video.rbhkgastyle-front-page .site-branding, .has-header-image.home.blog .site-branding, .has-header-video.home.blog .site-branding {
  display: table-cell;
  height: 100%;
  vertical-align: bottom
}
.rbhkgastyle-front-page .site-content {
  padding: 0
}
.rbhkgastyle-panel {
  overflow: hidden;
  position: relative
}
.panel-image {
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative
}
.panel-image:before {
  background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
  background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#4d000000", GradientType=0);
  bottom: 0;
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  top: 100px
}
.rbhkgastyle-front-page article:not(.has-post-thumbnail):not(:first-child) {
  border-top: 1px solid #ddd
}
.panel-content {
  position: relative
}
.panel-content .wrap {
  min-height: 100vh
}
.kingcomposer .panel-content .wrap {
  padding: 0
}
.rbhkgastyle-panel .edit-link {
  display: block;
  margin: .3em 0 0
}
.rbhkgastyle-panel .entry-header .edit-link {
  font-size: 14px;
  font-size: .875rem
}
.rbhkgastyle-front-page .panel-content .recent-posts article {
  border: 0;
  color: #333;
  margin-bottom: 3em
}
.recent-posts .entry-header {
  margin-bottom: 1.2em
}
.page .panel-content .recent-posts .entry-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none
}
.rbhkgastyle-panel .recent-posts .entry-header .edit-link {
  color: #222;
  display: inline-block;
  font-size: 11px;
  font-size: .6875rem;
  margin-left: 1em
}
.site-content-contain {
  position: relative
}
.site-content {
  padding: 295px 0 0
}
.site-content .wrap {
  min-height: calc(100vh - 330px)
}
.kingcomposer .site-content .wrap {
  padding: 0
}
.sticky {
  position: relative
}
.post:not(.sticky) .icon-thumb-tack {
  display: none
}
.sticky .icon-thumb-tack {
  display: block;
  height: 18px;
  left: -1.5em;
  position: absolute;
  top: 1.65em;
  width: 20px
}
.page .panel-content .entry-title, .page-title, body.page:not(.rbhkgastyle-front-page) .entry-title {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase
}
.entry-header .entry-title {
  margin-bottom: .25em
}
.entry-title a {
  color: #333;
  text-decoration: none;
  margin-left: -2px
}
.entry-title:not(:first-child) {
  padding-top: 0
}
.entry-meta {
  color: #767676;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .1818em;
  padding-bottom: .25em;
  text-transform: uppercase
}
.entry-meta a {
  color: #767676
}
.byline, .updated:not(.published) {
  display: none
}
.single .byline, .group-blog .byline {
  display: inline
}
.pagination, .comments-pagination {
  border-top: 1px solid #eee;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 800;
  padding: 2em 0 3em;
  text-align: center
}
.pagination .icon, .comments-pagination .icon {
  width: .666666666em;
  height: .666666666em
}
.comments-pagination {
  border: 0
}
.page-numbers {
  display: none;
  padding: .5em .75em
}
.page-numbers.current {
  color: #767676;
  display: inline-block
}
.page-numbers.current .screen-reader-text {
  clip: auto;
  height: auto;
  overflow: auto;
  position: relative !important;
  width: auto
}
.prev.page-numbers, .next.page-numbers {
  background-color: #ddd;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  padding: .25em .5em .4em;
  -webkit-transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out;
  transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out
}
.prev.page-numbers:focus, .prev.page-numbers:hover, .next.page-numbers:focus, .next.page-numbers:hover {
  background-color: #767676;
  color: #fff
}
.prev.page-numbers {
  float: left
}
.next.page-numbers {
  float: right
}
.entry-content blockquote.alignleft, .entry-content blockquote.alignright {
  color: #666;
  font-size: 13px;
  font-size: .8125rem;
  width: 48%
}
.blog .site-main > article, .archive .site-main > article, .search .site-main > article {
  padding-bottom: 2em
}
body:not(.rbhkgastyle-front-page) .entry-header {
  padding: 1em 0
}
body:not(.rbhkgastyle-front-page) .entry-header, body:not(.rbhkgastyle-front-page) .entry-content, body:not(.rbhkgastyle-front-page) #comments {
  margin-left: auto;
  margin-right: auto
}
body:not(.rbhkgastyle-front-page) .entry-header {
  padding-top: 0
}
.blog .entry-meta a.post-edit-link, .archive .entry-meta a.post-edit-link, .search .entry-meta a.post-edit-link {
  color: #222;
  display: inline-block;
  margin-left: 1em;
  white-space: nowrap
}
.search .page .entry-meta a.post-edit-link {
  margin-left: 0;
  white-space: nowrap
}
.taxonomy-description {
  color: #666;
  font-size: 13px;
  font-size: .8125rem
}
.entry-content .more-link:before {
  content: "";
  display: block;
  margin-top: 1.5em
}
.single-post:not(.has-sidebar) #primary, .page.page-one-column:not(.rbhkgastyle-front-page) #primary, .archive.page-one-column:not(.has-sidebar) .page-header, .archive.page-one-column:not(.has-sidebar) #primary {
  margin-left: auto;
  margin-right: auto;
  max-width: 1170px
}
.single-featured-image-header {
  height: 265px;
  overflow: hidden;
  margin-bottom: -265px;
  position: relative;
  background: #000
}
@media screen and (min-width: 560px) {
  .single-featured-image-header {
    height: 280px;
    overflow: hidden;
    margin-bottom: -280px;
    position: relative
  }
}
@media screen and (min-width: 768px) {
  .single-featured-image-header {
    height: 330px;
    overflow: hidden;
    margin-bottom: -330px;
    position: relative
  }
}
.single-featured-image-header img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  opacity: .75;
  mix-blend-mode: screen;
  object-fit: cover
}
.single-featured-image-header-common {
  height: 100%;
  background: url(../../uploads/home_bg-4.jpg);
  background-size: cover;
  background-position: center top
}
.page-links {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 800;
  padding: 2em 0 3em
}
.page-links .page-number {
  color: #767676;
  display: inline-block;
  padding: .5em 1em
}
.page-links a {
  display: inline-block
}
.page-links a .page-number {
  color: #222
}
.entry-footer {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  margin-top: 2em;
  padding: 2em 0
}
.entry-footer .cat-links, .entry-footer .tags-links {
  display: block;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .1818em;
  padding-left: 2.5em;
  position: relative;
  text-transform: uppercase
}
.entry-footer .cat-links + .tags-links {
  margin-top: 1em
}
.entry-footer .cat-links a, .entry-footer .tags-links a {
  color: #333
}
.entry-footer .cat-links .icon, .entry-footer .tags-links .icon {
  color: #767676;
  left: 0;
  margin-right: .5em;
  position: absolute;
  top: 2px
}
.entry-footer .edit-link {
  display: inline-block
}
.entry-footer .edit-link a.post-edit-link {
  background-color: #222;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 800;
  margin-top: 2em;
  padding: .7em 2em;
  -webkit-transition: background-color .4s ease-in-out;
  transition: background-color .4s ease-in-out;
  white-space: nowrap
}
.entry-footer .edit-link a.post-edit-link:hover, .entry-footer .edit-link a.post-edit-link:focus {
  background-color: #767676
}
.blog .format-status .entry-title, .archive .format-status .entry-title, .blog .format-aside .entry-title, .archive .format-aside .entry-title {
  display: none
}
.format-quote blockquote {
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  overflow: visible;
  position: relative
}
.format-quote blockquote .icon {
  display: block;
  height: 20px;
  left: -1.25em;
  position: absolute;
  top: .4em;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
  width: 20px
}
.post-navigation {
  font-weight: 800;
  margin: 3em 0
}
.post-navigation .nav-links {
  padding: 1em 0
}
.nav-subtitle {
  background: transparent;
  color: #767676;
  display: block;
  font-size: 11px;
  font-size: .6875rem;
  letter-spacing: .1818em;
  margin-bottom: 1em;
  text-transform: uppercase
}
.nav-title {
  color: #333;
  font-size: 15px;
  font-size: .9375rem
}
.post-navigation .nav-next {
  margin-top: 1.5em
}
.nav-links .nav-previous .nav-title .nav-title-icon-wrapper {
  margin-right: .5em
}
.nav-links .nav-next .nav-title .nav-title-icon-wrapper {
  margin-left: .5em
}
.page-header {
  padding-bottom: 2em
}
.page .entry-header .edit-link {
  font-size: 14px;
  font-size: .875rem
}
.search .page .entry-header .edit-link {
  font-size: 11px;
  font-size: .6875rem
}
.page-links {
  clear: both;
  margin: 0 0 1.5em
}
.page:not(.home) #content {
  padding-bottom: 30px
}
.error404 .page-content {
  padding-bottom: 4em
}
.error404 .page-content .search-form, .search .page-content .search-form {
  margin-bottom: 3em
}
.site-footer .wrap {
  padding-bottom: 30px;
  padding-top: 30px
}
.site-footer .footer-widget-4 {
  width: 100%;
  clear: both;
  font-size: .75rem;
  padding-top: 30px
}
.site-footer i.fal, .site-footer i.fa {
  margin-right: 15px
}
.site-footer a {
  color: #333
}
.site-footer p {
  margin-bottom: 0
}
.site-footer td, .site-footer table {
  margin: 0;
  padding: 0
}
.social-navigation {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 1em
}
.social-navigation ul {
  list-style: none;
  margin-bottom: 0;
  margin-left: 0
}
.social-navigation li {
  display: inline
}
.social-navigation a {
  background-color: #767676;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  height: 40px;
  margin: 0 1em .5em 0;
  text-align: center;
  width: 40px
}
.social-navigation a:hover, .social-navigation a:focus {
  background-color: #333
}
.social-navigation .icon {
  height: 16px;
  top: 12px;
  width: 16px;
  vertical-align: top
}
#comments {
  clear: both;
  padding: 2em 0 .5em
}
.comments-title {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 1.5em
}
.comment-list, .comment-list .children {
  list-style: none;
  margin: 0;
  padding: 0
}
.comment-list li:before {
  display: none
}
.comment-body {
  margin-left: 65px
}
.comment-author {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: .4em;
  position: relative;
  z-index: 2
}
.comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px
}
.comment-author .says {
  display: none
}
.comment-meta {
  margin-bottom: 1.5em
}
.comment-metadata {
  color: #767676;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 800;
  letter-spacing: .1818em;
  text-transform: uppercase
}
.comment-metadata a {
  color: #767676
}
.comment-metadata a.comment-edit-link {
  color: #222;
  margin-left: 1em
}
.comment-body {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  margin-bottom: 4em
}
.comment-reply-link {
  font-weight: 800;
  position: relative
}
.comment-reply-link .icon {
  color: #222;
  left: -2em;
  height: 1em;
  position: absolute;
  top: 0;
  width: 1em
}
.children .comment-author .avatar {
  height: 30px;
  left: -45px;
  width: 30px
}
.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
  border: 1px solid #333;
  padding: 2px
}
.no-comments, .comment-awaiting-moderation {
  color: #767676;
  font-size: 14px;
  font-size: .875rem;
  font-style: italic
}
.comments-pagination {
  margin: 2em 0 3em
}
.form-submit {
  text-align: right
}
#secondary {
  padding: 0 0 30px
}
.widget-title {
  display: none
}
h2.widget-title {
  color: #222;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .1818em;
  margin-bottom: 1.5em;
  text-transform: uppercase
}
#secondary h4 {
  color: #917a56;
}
.widget-title a {
  color: inherit
}
.widget select {
  width: 100%
}
.widget ul {
  list-style: none;
  margin: 0
}
.widget_text {
  word-wrap: break-word
}
.widget_text ul {
  list-style: disc;
  margin: 0 0 1.5em 1.5em
}
.widget_text ol {
  list-style: decimal
}
.widget_text ul li, .widget_text ol li {
  border: none
}
.widget_text ul li:last-child, .widget_text ol li:last-child {
  padding-bottom: 0
}
.widget_text ul li ul {
  margin: 0 0 0 1.5em
}
.widget_text ul li li {
  padding-left: 0;
  padding-right: 0
}
.widget_text ol li {
  list-style-position: inside
}
.widget_text ol li + li {
  margin-top: -1px
}
.widget_rss .widget-title .rsswidget:first-child {
  float: right
}
.widget_rss .widget-title .rsswidget:first-child:hover {
  background-color: transparent
}
.widget_rss .widget-title .rsswidget:first-child img {
  display: block
}
.widget_rss ul li {
  padding: 2.125em 0
}
.widget_rss ul li:first-child {
  border-top: none;
  padding-top: 0
}
.widget_rss li .rsswidget {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.4
}
.widget_rss .rss-date, .widget_rss li cite {
  color: #767676;
  display: block;
  font-size: 10px;
  font-size: .625rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase
}
.widget_rss .rss-date {
  margin: .5em 0 1.5em;
  padding: 0
}
.widget_rss .rssSummary {
  margin-bottom: .5em
}
.widget_contact_info .contact-map {
  margin-bottom: .5em
}
.widget-grofile h4 {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 0
}
.widget_recent_comments table, .widget_recent_comments th, .widget_recent_comments td {
  border: 0
}
.widget_recent_entries .post-date {
  display: block
}
.search-form {
  position: relative
}
.search-form .search-submit {
  bottom: 3px;
  padding: .5em 1em;
  position: absolute;
  right: 3px;
  top: 3px
}
.search-form .search-submit .icon {
  height: 24px;
  top: -2px;
  width: 24px
}
.tagcloud ul li {
  float: left;
  border-top: 0;
  border-bottom: 0;
  padding: 0;
  margin: 4px 4px 0 0
}
.tagcloud, .widget_tag_cloud, .wp_widget_tag_cloud {
  line-height: 1.5
}
.widget .tagcloud a, .widget.widget_tag_cloud a, .wp_widget_tag_cloud a {
  border: 1px solid #ddd;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  padding: 4px 10px 5px;
  position: relative;
  -webkit-transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out;
  transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out;
  width: auto;
  word-wrap: break-word;
  z-index: 0
}
.widget .tagcloud a:hover, .widget .tagcloud a:focus, .widget.widget_tag_cloud a:hover, .widget.widget_tag_cloud a:focus, .wp_widget_tag_cloud a:hover, .wp_widget_tag_cloud a:focus {
  border-color: #bbb;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none
}
.widget_calendar th, .widget_calendar td {
  text-align: center
}
.widget_calendar tfoot td {
  border: 0
}
img, video {
  height: auto;
  max-width: 100%
}
img.alignleft, img.alignright {
  float: none;
  margin: 0
}
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0
}
embed, iframe, object {
  margin-bottom: 1.5em;
  max-width: 100%
}
p > embed:only-child, p > iframe:only-child, p > object:only-child {
  margin-bottom: 0
}
.wp-caption, .gallery-caption {
  font-size: 12px;
  font-size: .75rem;
  line-height: .9375rem;
  max-width: 100%;
  position: absolute;
  top: 100%;
  padding-top: 5px;
  left: 0;
  right: 0;
  text-align: center
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto
}
.wp-caption .wp-caption-text {
  margin: .8075em 0
}
.mejs-container {
  margin-bottom: 1.5em
}
.mejs-controls a.mejs-horizontal-volume-slider, .mejs-controls a.mejs-horizontal-volume-slider:focus, .mejs-controls a.mejs-horizontal-volume-slider:hover {
  background: transparent;
  border: 0
}
.site-content .wp-playlist-light {
  border-color: #eee;
  color: #222
}
.site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-album {
  color: #333
}
.site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-artist {
  color: #767676
}
.site-content .wp-playlist-light .wp-playlist-item {
  border-bottom: 1px dotted #eee;
  -webkit-transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out;
  transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out
}
.site-content .wp-playlist-light .wp-playlist-item:hover, .site-content .wp-playlist-light .wp-playlist-item:focus {
  border-bottom-color: rgba(0, 0, 0, 0);
  background-color: #767676;
  color: #fff
}
.site-content .wp-playlist-light a.wp-playlist-caption:hover, .site-content .wp-playlist-light .wp-playlist-item:hover a, .site-content .wp-playlist-light .wp-playlist-item:focus a {
  color: #fff
}
.site-content .wp-playlist-dark {
  background: #222;
  border-color: #333
}
.site-content .wp-playlist-dark .mejs-container .mejs-controls {
  background-color: #333
}
.site-content .wp-playlist-dark .wp-playlist-caption {
  color: #fff
}
.site-content .wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-album {
  color: #eee
}
.site-content .wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-artist {
  color: #aaa
}
.site-content .wp-playlist-dark .wp-playlist-playing {
  background-color: #333
}
.site-content .wp-playlist-dark .wp-playlist-item {
  border-bottom: 1px dotted #555;
  -webkit-transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out;
  transition: background-color .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out
}
.site-content .wp-playlist-dark .wp-playlist-item:hover, .site-content .wp-playlist-dark .wp-playlist-item:focus {
  border-bottom-color: rgba(0, 0, 0, 0);
  background-color: #aaa;
  color: #222
}
.site-content .wp-playlist-dark a.wp-playlist-caption:hover, .site-content .wp-playlist-dark .wp-playlist-item:hover a, .site-content .wp-playlist-dark .wp-playlist-item:focus a {
  color: #222
}
.site-content .wp-playlist {
  padding: .625em .625em .3125em
}
.site-content .wp-playlist-current-item .wp-playlist-item-title {
  font-weight: 700
}
.site-content .wp-playlist-current-item .wp-playlist-item-album {
  font-style: normal
}
.site-content .wp-playlist-current-item .wp-playlist-item-artist {
  font-size: 10px;
  font-size: .625rem;
  font-weight: 800;
  letter-spacing: .1818em;
  text-transform: uppercase
}
.site-content .wp-playlist-item {
  padding: 0 .3125em;
  cursor: pointer
}
.site-content .wp-playlist-item:last-of-type {
  border-bottom: none
}
.site-content .wp-playlist-item a {
  padding: .3125em 0;
  border-bottom: none
}
.site-content .wp-playlist-item a, .site-content .wp-playlist-item a:focus, .site-content .wp-playlist-item a:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent
}
.site-content .wp-playlist-item-length {
  top: 5px
}
.icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  position: relative;
  top: -.0625em;
  vertical-align: middle;
  width: 1em
}
.gallery {
  font-size: 0;
  overflow: hidden
}
.gallery-item:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 50%
}
.gallery-item {
  display: inline-block;
  margin: 0 0 45px;
  width: 33%;
  position: relative
}
.gallery-preview .gallery-item {
  display: inline-block;
  margin: 0 !important
}
.gallery-preview {
  height: 150px;
  overflow: hidden
}
.gallery-item div, .gallery-item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex
}
.gallery-item img {
  height: 100%;
  max-width: 80%;
  object-fit: contain;
  margin: auto
}
.gallery-columns-1 .gallery-item {
  width: 100%
}
.gallery-columns-2 .gallery-item {
  max-width: 50%
}
.gallery-item a, .gallery-item a:hover, .gallery-item a:focus, .widget-area .gallery-item a, .widget-area .gallery-item a:hover, .widget-area .gallery-item a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  display: inline-block;
  max-width: 100%
}
.gallery-item a img {
  display: block;
  -webkit-transition: -webkit-filter .4s ease-in;
  transition: -webkit-filter .4s ease-in;
  transition: filter .4s ease-in;
  transition: filter .4s ease-in, -webkit-filter .4s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}
.gallery-item a:hover img, .gallery-item a:focus img {
  -webkit-filter: opacity(60%);
  filter: opacity(60%)
}
.highlight-front-sections.rbhkgastyle-customizer.rbhkgastyle-front-page .rbhkgastyle-panel:after {
  border: 2px dashed #0085ba;
  bottom: 1em;
  content: "";
  display: block;
  left: 1em;
  position: absolute;
  right: 1em;
  top: 1em;
  z-index: 1
}
.highlight-front-sections.rbhkgastyle-customizer.rbhkgastyle-front-page .rbhkgastyle-panel .panel-content {
  z-index: 2
}
.rbhkgastyle-customizer.rbhkgastyle-front-page .rbhkgastyle-panel .rbhkgastyle-panel-title {
  display: block;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3em;
  text-transform: uppercase;
  text-align: center
}
.highlight-front-sections.rbhkgastyle-customizer.rbhkgastyle-front-page .rbhkgastyle-panel:nth-of-type(1):after {
  border: none
}
.rbhkgastyle-front-page.rbhkgastyle-customizer #primary article.panel-placeholder {
  border: 0
}
.rbhkgastyle-panel > .customize-partial-edit-shortcut > button {
  top: 30px;
  left: 30px
}
.rbhkgastyle-panel .customize-partial-edit-shortcut-hidden:before {
  visibility: visible
}
.svg-fallback {
  display: none
}
.no-svg .dropdown-toggle {
  padding: .5em 0 0;
  right: 0;
  text-align: center;
  width: 2em
}
.no-svg .dropdown-toggle .svg-fallback.icon-angle-down {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg)
}
.no-svg .dropdown-toggle.toggled-on .svg-fallback.icon-angle-down {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0)
}
.no-svg .dropdown-toggle .svg-fallback.icon-angle-down:before {
  content: "\005E"
}
.no-svg .social-navigation a {
  background: transparent;
  color: #222;
  height: auto;
  width: auto
}
.no-svg .next.page-numbers .screen-reader-text, .no-svg .prev.page-numbers .screen-reader-text, .no-svg .social-navigation li a .screen-reader-text, .no-svg .search-submit .screen-reader-text {
  clip: auto;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  height: auto;
  position: relative !important;
  width: auto
}
@media screen and (min-width: 20em) {
  body.customize-partial-edit-shortcuts-shown .site-header .site-title {
    padding-left: 0
  }
}
@media screen and (min-width: 35em) {
  body:not(.home) h1, h1 {
    font-size: 60px;
    font-size: 3.75rem
  }
  h2 {
    font-size: 36px;
    font-size: 2rem
  }
  .home h2 {
    font-size: 48px;
    font-size: 3rem
  }
  img.alignleft {
    float: left;
    margin-right: 1.5em
  }
  img.alignright {
    float: right;
    margin-left: 1.5em
  }
  .panel-content .wrap {
    padding-bottom: 2em;
    padding-top: 3.5em
  }
  .panel-content .entry-header {
    margin-bottom: 4.5em
  }
  .panel-content .recent-posts .entry-header {
    margin-bottom: 0
  }
  .taxonomy-description {
    font-size: 14px;
    font-size: .875rem
  }
  .page-numbers.current {
    font-size: 16px;
    font-size: 1rem
  }
  .site-footer {
    font-size: 16px;
    font-size: 1rem
  }
  .gallery-item {
    max-width: 25%
  }
  .gallery-columns-1 .gallery-item {
    max-width: 100%
  }
  .gallery-columns-2 .gallery-item {
    max-width: 50%
  }
  .gallery-columns-3 .gallery-item {
    max-width: 33.33%
  }
  .gallery-columns-4 .gallery-item {
    max-width: 25%
  }
}
@media screen and (min-width: 768px) {
  body, button, input, select, textarea {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5
  }
  .entry-content blockquote.alignleft, .entry-content blockquote.alignright {
    font-size: 13px;
    font-size: .8125rem
  }
  .has-sidebar:not(.error404) #primary {
    float: left;
    width: 80.34188034188%
  }
  .has-sidebar #secondary {
    float: right;
    padding-top: 0;
    width: 19.65811965812%
  }
  .error404 #primary {
    float: none
  }
  #secondary {
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.6
  }
  .has-header-image.rbhkgastyle-front-page .site-branding, .has-header-video.rbhkgastyle-front-page .site-branding, .has-header-image.home.blog .site-branding, .has-header-video.home.blog .site-branding {
    bottom: 0;
    display: block;
    left: 0;
    height: auto;
    padding-top: 0;
    position: absolute;
    width: 100%
  }
  .has-header-image.rbhkgastyle-front-page .custom-header, .has-header-video.rbhkgastyle-front-page .custom-header, .has-header-image.home.blog .custom-header, .has-header-video.home.blog .custom-header {
    display: block;
    height: auto
  }
  .custom-header-media {
    height: 165px;
    position: relative
  }
  .rbhkgastyle-front-page.has-header-image .custom-header-media, .rbhkgastyle-front-page.has-header-video .custom-header-media, .home.blog.has-header-image .custom-header-media, .home.blog.has-header-video .custom-header-media {
    height: 0;
    position: relative
  }
  .has-header-image:not(.rbhkgastyle-front-page):not(.home) .custom-header-media, .has-header-video:not(.rbhkgastyle-front-page):not(.home) .custom-header-media {
    bottom: 0;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
  }
  .custom-logo-link {
    padding-right: 2em
  }
  .custom-logo-link img, body.home.title-tagline-hidden.has-header-image .custom-logo-link img, body.home.title-tagline-hidden.has-header-video .custom-logo-link img {
    max-width: 350px
  }
  .title-tagline-hidden.home.has-header-image .custom-logo-link img, .title-tagline-hidden.home.has-header-video .custom-logo-link img {
    max-height: 200px
  }
  .site-title {
    font-size: 36px;
    font-size: 2.25rem
  }
  .site-description {
    font-size: 16px;
    font-size: 1rem
  }
	/*
  .navigation-top {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 3
  }
  .site-navigation-fixed.navigation-top {
    bottom: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 7
  }
  .admin-bar .site-navigation-fixed.navigation-top {
    top: 32px
  }
  .js .menu-toggle, .js .dropdown-toggle {
    display: none
  }
  .main-navigation {
    width: auto;
  }
  .js .main-navigation ul, .js .main-navigation ul ul, .js .main-navigation > div > ul {
    display: block
  }
  .main-navigation ul {
    background: transparent;
    padding: 0
  }
  .main-navigation > div > ul {
    border: 0;
    margin-bottom: 0;
    padding: 0
  }
  .main-navigation li {
    border: 0;
    display: inline-block
  }
  .main-navigation li li {
    display: block
  }
  .main-navigation ul ul {
    background: rgba(255, 248, 242, 0.8);
    left: -999em;
    padding: 0;
    position: absolute;
    top: 100%;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    transition: opacity .6s;
  }
  .main-navigation ul ul:before {
    content: "";
    position: absolute;
    height: 35px;
    top: -35px;
    left: -1px;

  }
  .main-navigation ul ul ul:before {
    border-left: none;
  }
  .main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul {
    left: 0;
    right: auto;
    opacity: 1;
  }
  .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
    left: 100%;
    right: auto
  }
  .main-navigation ul ul a {
    padding: .75em 1.25em;
    width: 16em
  }
  .main-navigation li li {
    -webkit-transition: background-color .4s ease-in-out;
    transition: background-color .4s ease-in-out
  }
  .main-navigation li li:hover, .main-navigation li li.focus {
    background: #917a56
  }
  .main-navigation li li a {
    -webkit-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out;
    color: #917a56;
    font-weight: 400;
  }
  .main-navigation li li.current_page_item a, .main-navigation li li.current-menu-item a {
    color: #917a56
  }
  .main-navigation a:hover {
    color: #917a56;
    color: #d51d35;
  }
  .main-navigation #top-menu > li > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
    width: 0;
    border-bottom: 1px solid #917a56;
    transition: all .2s;
  }
  .main-navigation #top-menu > li > a:hover:after {
    width: 50px;
  }
  .main-navigation li li.focus > a, .main-navigation li li:focus > a, .main-navigation li li:hover > a, .main-navigation li li a:hover, .main-navigation li li a:focus, .main-navigation li li.current_page_item a:hover, .main-navigation li li.current-menu-item a:hover, .main-navigation li li.current_page_item a:focus, .main-navigation li li.current-menu-item a:focus {
    color: #FFF
  }
  .main-navigation .menu-item-has-children > a > .icon, .main-navigation .page_item_has_children > a > .icon {
    display: none;
    left: 5px;
    position: relative;
    top: -1px
  }
  .main-navigation ul ul .menu-item-has-children > a > .icon, .main-navigation ul ul .page_item_has_children > a > .icon {
    margin-top: -9px;
    left: auto;
    position: absolute;
    right: 1em;
    top: 50%;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
  }
  .main-navigation ul ul ul {
    left: -999em;
    top: 0;
  }
  .main-navigation ul ul li.menu-item-has-children.focus:before, .main-navigation ul ul li.menu-item-has-children:hover:before, .main-navigation ul ul li.menu-item-has-children.focus:after, .main-navigation ul ul li.menu-item-has-children:hover:after, .main-navigation ul ul li.page_item_has_children.focus:before, .main-navigation ul ul li.page_item_has_children:hover:before, .main-navigation ul ul li.page_item_has_children.focus:after, .main-navigation ul ul li.page_item_has_children:hover:after {
    display: none
  }
  .site-header .site-navigation-fixed .menu-scroll-down {
    display: none
  }
  .site-header .menu-scroll-down {
    display: block;
    padding: 1em;
    position: absolute;
    right: 0
  }
  .site-header .menu-scroll-down .icon {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
  }
  .site-header .menu-scroll-down {
    color: #fff;
    top: 2em
  }
  .site-header .navigation-top .menu-scroll-down {
    color: #767676;
    top: .7em
  }
  .menu-scroll-down:focus {
    outline: thin dotted
  }
  .menu-scroll-down .icon {
    height: 18px;
    width: 18px
  }
	*/
  .rbhkgastyle-front-page.has-header-image .site-branding, .rbhkgastyle-front-page.has-header-video .site-branding, .home.blog.has-header-image .site-branding, .home.blog.has-header-video .site-branding {
    margin-bottom: 70px
  }
  .rbhkgastyle-front-page.has-header-image .custom-header-media, .rbhkgastyle-front-page.has-header-video .custom-header-media, .home.blog.has-header-image .custom-header-media, .home.blog.has-header-video .custom-header-media {
    height: 1200px;
    height: 100vh;
    max-height: 100%;
    overflow: hidden
  }
  .rbhkgastyle-front-page.has-header-image .custom-header-media:before, .rbhkgastyle-front-page.has-header-video .custom-header-media:before, .home.blog.has-header-image .custom-header-media:before, .home.blog.has-header-video .custom-header-media:before {
    height: 33%
  }
  .admin-bar.rbhkgastyle-front-page.has-header-image .custom-header-media, .admin-bar.rbhkgastyle-front-page.has-header-video .custom-header-media, .admin-bar.home.blog.has-header-image .custom-header-media, .admin-bar.home.blog.has-header-video .custom-header-media {
    height: calc(100vh - 32px)
  }
  .panel-content .wrap {
    padding-bottom: 4.5em;
    padding-top: 6em
  }
  .panel-image {
    height: 100vh;
    max-height: 1200px
  }
  .background-fixed .panel-image {
    background-attachment: fixed
  }
  .page-two-column .panel-content .entry-header {
    float: left;
    width: 36%
  }
  .page-two-column .panel-content .entry-content {
    float: right;
    width: 58%
  }
  .page-two-column .panel-content .recent-posts {
    clear: right;
    float: right;
    width: 58%
  }
  .panel-content .recent-posts article {
    margin-bottom: 4em
  }
  .panel-content .recent-posts .entry-header, .page-two-column #primary .panel-content .recent-posts .entry-header, .panel-content .recent-posts .entry-content, .page-two-column #primary .panel-content .recent-posts .entry-content {
    float: none;
    width: 100%
  }
  .panel-content .recent-posts .entry-header {
    margin-bottom: 1.5em
  }
  .page .panel-content .recent-posts .entry-title {
    font-size: 26px;
    font-size: 1.625rem
  }
  .site-content {
    padding: 345px 0 0
  }
  .single-post .entry-title, .page .entry-title {
    font-size: 26px;
    font-size: 1.625rem
  }
  .comments-pagination, .post-navigation {
    clear: both
  }
  .post-navigation .nav-previous {
    float: left;
    width: 50%
  }
  .post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%
  }
  .nav-next, .post-navigation .nav-next {
    margin-top: 0
  }
  .sticky .icon-thumb-tack {
    height: 23px;
    left: -2.5em;
    top: 1.5em;
    width: 32px
  }
  body:not(.has-sidebar):not(.page-one-column) .page-header, body.has-sidebar.error404 #primary .page-header, body.page-two-column:not(.archive) #primary .entry-header, body.page-two-column.archive:not(.has-sidebar) #primary .page-header {
    float: left;
    width: 36%
  }
  .blog:not(.has-sidebar) #primary article, .archive:not(.page-one-column):not(.has-sidebar) #primary article, .search:not(.has-sidebar) #primary article, .error404:not(.has-sidebar) #primary .page-content, .error404.has-sidebar #primary .page-content, body.page-two-column:not(.archive) #primary .entry-content, body.page-two-column #comments {
    float: right;
    width: 58%
  }
  .blog .site-main > article, .archive .site-main > article, .search .site-main > article {
    padding-bottom: 4em
  }
  .navigation.pagination {
    clear: both;
    float: right;
    width: 58%
  }
  .has-sidebar .navigation.pagination, .archive.page-one-column:not(.has-sidebar) .navigation.pagination {
    float: none;
    width: 100%
  }
  .entry-footer {
    display: table;
    width: 100%
  }
  .entry-footer .cat-tags-links {
    display: table-cell;
    vertical-align: middle;
    width: 100%
  }
  .entry-footer .edit-link {
    display: table-cell;
    text-align: right;
    vertical-align: middle
  }
  .entry-footer .edit-link a.post-edit-link {
    margin-top: 0;
    margin-left: 1em
  }
  :not(.has-sidebar) .entry-content blockquote.alignleft {
    margin-left: -17.5%;
    width: 48%
  }
  :not(.has-sidebar) .entry-content blockquote.alignright {
    margin-right: -17.5%;
    width: 48%
  }
  .has-sidebar .entry-content blockquote.alignleft {
    margin-left: 0;
    width: 34%
  }
  .has-sidebar .entry-content blockquote.alignright {
    margin-right: 0;
    width: 34%
  }
  .has-sidebar #primary .entry-content blockquote.alignright.below-entry-meta {
    margin-right: -72.5%;
    width: 62%
  }
  .blog:not(.has-sidebar) .entry-content blockquote.alignleft, .rbhkgastyle-front-page.page-two-column .entry-content blockquote.alignleft, .archive:not(.has-sidebar) .entry-content blockquote.alignleft, .page-two-column .entry-content blockquote.alignleft {
    margin-left: -72.5%;
    width: 62%
  }
  .blog:not(.has-sidebar) .entry-content blockquote.alignright, .rbhkgastyle-front-page.page-two-column .entry-content blockquote.alignright, .archive:not(.has-sidebar) .entry-content blockquote.alignright, .page-two-column .entry-content blockquote.alignright {
    margin-right: 0;
    width: 36%
  }
  .format-quote blockquote .icon {
    left: -1.5em
  }
  .page.page-one-column .entry-header, .rbhkgastyle-front-page.page-one-column .entry-header, .archive.page-one-column:not(.has-sidebar) .page-header {
    margin-bottom: 4em
  }
  .error404 .page-content {
    padding-bottom: 9em
  }
  #comments {
    padding-top: 5em
  }
  .comments-title {
    margin-bottom: 2.5em
  }
  ol.children .children {
    padding-left: 2em
  }
  .nav-links .nav-title {
    position: relative
  }
  .nav-title-icon-wrapper {
    position: absolute;
    text-align: center;
    width: 2em
  }
  .nav-links .nav-previous .nav-title .nav-title-icon-wrapper {
    left: -2em
  }
  .nav-links .nav-next .nav-title .nav-title-icon-wrapper {
    right: -2em
  }
  .site-footer .widget-area {
    display: flex;
    width: 100%
  }
  .site-footer .widget-column.footer-widget-1, .site-footer .widget-column.footer-widget-2, .site-footer .widget-column.footer-widget-3 {
    flex: 1;
    float: left;
    width: 33%
  }

  .gallery-columns-5 .gallery-item {
    max-width: 20%
  }
  .gallery-columns-6 .gallery-item {
    max-width: 14.473684210526%;
    margin-right: 2.6315789473684%
  }
  .gallery-columns-6 .gallery-item:nth-child(6n) {
    margin-right: 0
  }
  .gallery-columns-7 .gallery-item {
    max-width: 14.28%
  }
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%
  }
  .gallery-columns-9 .gallery-item {
    max-width: 11.11%
  }
}
.sticky .icon-thumb-tack {
  font-size: 32px;
  font-size: 2rem;
  height: 22px;
  left: -1.25em;
  top: .75em;
  width: 32px
}
.page-numbers {
  display: inline-block
}
.page-numbers.current {
  font-size: 15px;
  font-size: .9375rem
}
.page-numbers.current .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px
}
.comment-body {
  margin-left: 0
}
}
@media screen and (min-width: 79em) {
  .has-sidebar .entry-content blockquote.alignleft {
    margin-left: -20%
  }
  .blog:not(.has-sidebar) .entry-content blockquote.alignright, .archive:not(.has-sidebar) .entry-content blockquote.alignright, .page-two-column .entry-content blockquote.alignright, .rbhkgastyle-front-page .entry-content blockquote.alignright {
    margin-right: -20%
  }
}
@media screen and (max-width: 48.875em) and (min-width: 48em) {
  .admin-bar .site-navigation-fixed.navigation-top, .admin-bar .site-navigation-hidden.navigation-top {
    top: 46px
  }
}
@media print {
  form, button, input, select, textarea, .navigation-top, .social-navigation, #secondary, .content-bottom-widgets, .header-image, .panel-image-prop, .icon-thumb-tack, .page-links, .edit-link, .post-navigation, .pagination.navigation, .comments-pagination, .comment-respond, .comment-edit-link, .comment-reply-link, .comment-metadata .edit-link, .pingback .edit-link, .site-footer aside.widget-area, .site-info {
    display: none !important
  }
  .entry-footer, #comments, .site-footer, .single-featured-image-header {
    border: 0
  }
  body {
    font-size: 12pt
  }
  h1 {
    font-size: 24pt
  }
  h2 {
    font-size: 22pt
  }
  h3 {
    font-size: 17pt
  }
  h4 {
    font-size: 12pt
  }
  h5 {
    font-size: 11pt
  }
  h6 {
    font-size: 12pt
  }
  .page .panel-content .entry-title, .page-title, body.page:not(.rbhkgastyle-front-page) .entry-title {
    font-size: 10pt
  }
  .wrap {
    padding-left: 5% !important;
    padding-right: 5% !important;
    max-width: none
  }
  .site-header {
    background: transparent;
    padding: 0
  }
  .custom-header-media {
    padding: 0
  }
  .rbhkgastyle-front-page.has-header-image .site-branding, .rbhkgastyle-front-page.has-header-video .site-branding, .home.blog.has-header-image .site-branding, .home.blog.has-header-video .site-branding {
    position: relative
  }
  .site-branding {
    margin-top: 0;
    margin-bottom: 1.75em !important
  }
  .site-title {
    font-size: 25pt
  }
  .site-description {
    font-size: 12pt;
    opacity: 1
  }
  .single-featured-image-header {
    background: transparent
  }
  .entry-meta {
    font-size: 9pt
  }
  body, .site {
    background: none !important
  }
  body, a, .site-title a, .rbhkgastyle-front-page.has-header-image .site-title, .rbhkgastyle-front-page.has-header-video .site-title, .rbhkgastyle-front-page.has-header-image .site-title a, .rbhkgastyle-front-page.has-header-video .site-title a {
    color: #222 !important
  }
  h2, h5, blockquote, .site-description, .rbhkgastyle-front-page.has-header-image .site-description, .rbhkgastyle-front-page.has-header-video .site-description, .entry-meta, .entry-meta a {
    color: #777 !important
  }
  .entry-content blockquote.alignleft, .entry-content blockquote.alignright {
    font-size: 11pt;
    width: 34%
  }
  .site-footer {
    padding: 0
  }
}
input {
  border-radius: 0;
}
.custom-logo-link {
  background: url(../../../../uploads/rbhkga-logo-2022.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 155px;
  height: 90px;
  background-size: 155px 90px;
}
/*
html[lang^="zh-"] .custom-logo-link {
	background: url(../../../../uploads/logo-date-tc.png);
	width: 150px;
	height: 150px;
	background-position: center center;
	background-size: 150px 150px;
	background-repeat: no-repeat;
}
*/
@media screen and (min-width: 768px) {
  .custom-logo-link {
    background: url(../../../../uploads/rbhkga-logo-2022.png);
    /*		width: 206px;
		height: 120px;
		background-size: 206px 120px;
*/
    width: 206px;
    height: 50px;
    background-size: 206px 50px;
    background-repeat: no-repeat;
    margin-top: 0;
  }
  /*
	html[lang^="zh-HK"] .custom-logo-link {
		background: url(../../../../uploads/logo-full-tc.png);	
		width: 150px;
		height: 268px;
		background-size: 150px 268px;
		margin-top: 0;
	}
	html[lang^="zh-Hans"] .custom-logo-link {
		background: url(../../../../uploads/logo-full-sc.png);	
		width: 150px;
		height: 268px;
		background-size: 150px 268px;
		margin-top: 0;
	}
	*/
}
.scrollDown .custom-logo-link {
  background: url(../../../../uploads/rbhkga-logo-mini@2x.png) !important;
  width: 240px !important;
  height: 45px !important;
  background-size: 240px 45px !important;
}
@media screen and (max-width: 767px) {
  .hideinmobile {
    display: none !important;
  }
}
#nav-icon3 {
  position: relative;
  height: 45px;
  width: 25px;
  cursor: pointer;
  overflow: hidden;
  z-index: 999999;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background: none;
}
#nav-icon3 span {
  background: #d51d35;
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out
}
#nav-icon3 span:nth-child(1) {
  top: 11px
}
#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
  top: 21px
}
#nav-icon3 span:nth-child(4) {
  top: 31px
}
#nav-icon3.open span:nth-child(1) {
  top: 21px;
  width: 0;
  left: 50%
}
#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -ms-transform: rotate(45deg)
}
#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg)
}
#nav-icon3.open span:nth-child(4) {
  top: 21px;
  width: 0;
  left: 50%
}
.main-navigation button {
  border: none
}
.menu-top-menu-container .header-widget {
  display: none;
}
#sitemap .menu-top-menu-container {
  position: relative;
}

/*
body.slidein1{
    -webkit-transform:translate3d(-260px, 0, 0);
    -moz-transform:translate3d(-260px, 0, 0);
    -o-transform:translate3d(-260px, 0, 0);
    transform:translate3d(-260px, 0, 0);
	-moz-transition: 	all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: 		all 200ms ease-in-out;
    transition: 		all 200ms ease-in-out;
}*/
.header-widget {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  text-align: right;
  padding-top: 20px;
  pointer-events: none;
}
.header-widget .widget {
  display: inline-block;
  margin-right: 15px;
  margin-left: 15px;
  color: #ffffff;
  pointer-events: all;
}
.header-widget .widget a {
  color: #d51d35;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  display: inline-block;
}
.header-widget .widget a:hover {
  color: #FFFFFF;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.header-widget p {
  margin-bottom: 0;
}
.entry-header {
  display: none
}
.header-widget .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 45px;
}

.rbhkga-date-header {
  height: 33px;
  width: auto;
  margin-top: 5px;
}
.homeBg {
  background: #000000;
  /*	gradient
  background: rgb(137, 32, 69);
  background: linear-gradient(135deg, rgba(137, 32, 69, 1) 0%, rgba(0, 0, 0, 1) 100%);
*/
}
.homeBg .kc_column, .homeBg .kc_column_inner {
  padding-right: 0;
  padding-left: 0
}
.homeBg .image_fadein_slider, .homeBg .image_fadein {
  overflow: hidden;
  height: 720px;
  width: 100vw;
}
.homeBg .image_fadein_slider {
  opacity: 0.75;
}
.homeBg .image_fadein_slider .image_fadein {
  height: 720px;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homeBg .image_fadein_slider .image_fadein img {
  object-fit: cover;
  width: 100vw;
  max-width: none;
  min-width: 100vw;
  height: 100%;
  transition: opacity ease 650ms;
}
.site-header {
  /*  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 100%);*/
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 248, 242, 0.7) 66%);
}
#Intro {
  color: #FFFFFF;
}
.home_banner-sketch {
  transform: translateY(-47%);
  width: 100vw;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_banner-sketch img {
  width: 100vw;
  min-width: 1280px;
  height: auto;
  max-width: 1920px;
}
/*
.homeBg .image_fadein_slider img {
	max-width: none;
	object-fit: cover!important;
	-webkit-filter: grayscale(100%); 
	filter: grayscale(100%);
	min-width: 100vw;
	position: absolute;
	top: -9999px;
	bottom: -9999px;
	left: -9999px;
	right: -9999px;
	margin: auto;
}
 */
.min-height-720 {
  min-height: 720px;
}
.button, .kc_button, .kc-cta-button a {
  line-height: 24px;
  padding: 0.8125rem 2.25rem !important;
  background: #917a56CC !important;
  border: none !important;
  color: #FFFFFF !important;
  -webkit-transition: all 0.4s !important;
  transition: all 1.4s !important;
  min-width: 210px;
  text-align: center;
  border-radius: 25px;
}
.button:hover, .kc_button:hover, .kc-cta-button:hover a {
  background: #917a56 !important;
}
/*
.button, .kc_button, .kc-cta-button a {
  font-size: 18px;
  border: none !important;
  background: rgb(255, 194, 14);
  background: linear-gradient(135deg, rgba(239, 77, 127, 0.8) 0%, rgba(255, 194, 14, 0.8) 100%) !important;
  padding: 0.8125rem 30px;
  min-width: 165px;
  color: #ffffff !important;
  margin-top: 6px;
  text-align: center;
  -webkit-transition: none;
  transition: none;
}
.button:hover, .kc_button:hover, .kc-cta-button a:hover {
  border: none !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(239, 77, 127, 1) 0%, rgba(255, 194, 14, 1) 100%) !important;
  -webkit-transition: none;
  transition: none;
}
.kc_button.blackButton {
  font-size: 18px;
  background-color: transparent;
  border: 1px solid #212121;
  padding: 0.5rem 2.25rem;
  min-width: 165px;
  color: #212121;
  margin-top: 6px;
}
.kc_button.blackButton:hover {
  color: #ffffff;
  background-color: rgba(33, 33, 33, 0.8)
}
*/
/*
a.gradButton, .gradButton a {
  padding: 0.8125rem 2.25rem;
  background: rgb(239, 77, 127);
  background: linear-gradient(135deg, rgba(239, 77, 127, 0.8) 0%, rgba(255, 194, 14, 0.8) 100%);
  border: none !important;
  color: #FFFFFF !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.gradButton:hover, .gradButton a:hover {
  background: linear-gradient(135deg, rgba(239, 77, 127, 1) 0%, rgba(255, 194, 14, 1) 100%);
  color: #FFFFFF !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}*/
#secondary a.gradButton, #secondary .gradButton a {
  padding: 0.8125rem 15px;
}
/* goldButton */
a.goldButton, .goldButton a {
  padding: 0.8125rem 2.25rem;
  background: #917a56CC;
  border: none;
  color: #FFFFFF;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 210px;
  text-align: center;
  border-radius: 25px;
}
a.goldButton:hover, .goldButton:hover a {
  background: #917a56;
}
#secondary a.goldButton, #secondary .goldButton a {
  padding: 0.8125rem 15px;
  display: block;
  max-width: 210px;
  background: #FFFFFF;
  color: #917a56;
  border: 1px solid #917a56CC;
}
#secondary a.goldButton:hover, #secondary .goldButton:hover a {
  color: #FFFFFF;
  background: #917a56;
}
header a.goldButton, header .goldButton a {
  padding: 0.8125rem 2.25rem;
  background: rgb(255, 194, 14, 0.8);
  border: none;
  color: #FFFFFF;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 210px;
  text-align: center;
}
header a.goldButton:hover, header .goldButton a:hover {
  background: rgb(255, 194, 14, 1);
  color: #FFFFFF;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
/*  */
.narrowContent {
  max-width: 660px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.normalWidthContent {
  width: 100% !important;
  max-width: 1170px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.floatnone {
  clear: both;
  float: none;
  display: block;
}
.aniloop {
  position: absolute;
  margin-left: -5px;
  animation: ani 2s infinite;
}
@keyframes ani {
  0% {
    margin-top: -5px;
  }
  50% {
    margin-top: 5px;
  }
  100% {
    margin-top: -5px;
  }
}
.gray, .kc_video_play {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%) alpha(opacity=50);
  opacity: 0.5;
}
.gray:hover, .kc_video_play:hover {
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%) alpha(opacity=100);
  opacity: 1;
}
.sectorImages img {
  margin-bottom: 10px;
}
.fix-kc_col-sm-1 .kc_col-sm-1 {
  width: 50%
}
@media screen and (max-width:767px) {
  .fix-kc_col-sm-1 .kc_col-sm-1 {
    width: 100%
  }
}
@media screen and (max-width:767px) {
  .force2col .kc_col-sm-1 {
    width: 50% !important
  }
  .force2col .kc_column_inner, .force2col .kc_col-sm-1 {
    width: 50% !important;
  }
  .force2col .kc_column_inner:nth-child(odd), .force2col .kc_col-sm-1:nth-child(odd) {
    clear: both
  }
}
.position-absolute {
  position: absolute;
  left: 28px;
  top: 90px;
}
/*.eventsSlider
.eventsSlider .owl-theme .owl-controls .owl-page span {
	width: 15px;
	height: 15px;
	margin: 5px 8px;
	background: #e6e6e6;
}
.home .eventsSlider .owl-controls {
	max-width: 525px;
}
.eventsSlider .owl-theme .owl-controls .owl-buttons div {
	color: transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.eventsSlider .owl-prev {
	position: absolute;
	left: -75px;
	top: 150px;
	width: 20px;
	height: 64px;
	background: url(../images/arrow-left.png)!important;
	background-repeat: no-repeat!important;

}
.eventsSlider .owl-next {
	position: absolute;
	right: -75px;
	top: 150px;
	width: 20px;
	height: 64px;
	background: url(../images/arrow-right.png)!important;
	background-repeat: no-repeat!important;
	z-index: 10;
}
.eventsSliderImgs ul {
	display: none
}
.eventsSliderImgs .kc_tab {
	float: none!important;
	width: 100%!important;
	height: auto!important;
	overflow: hidden
}
.eventsSliderImgs {
	height: 555px;
	position: relative;
	overflow: hidden;
	margin: 0;
}
.eventsSliderImgs .kc_single_image {
	height: 555px;
	overflow: hidden;
	display: flex;
}
.eventsSliderImgs .kc_single_image img {
	object-fit: cover;
}
.eventsSliderImgs .kc_tab.ui-tabs-body-active {
	border: none!important
}
.eventsSliderImgs .kc_wrapper {
	transition: all 450ms ease;
}
*/
/*home sectors*/
.sectorsSlider {
  max-width: 1050px;
  float: none;
  margin: auto;
}
.sectorsSlider .owl-prev {
  position: absolute;
  left: -20px;
  top: 150px;
  width: 20px;
  height: 64px;
  background: url(../images/arrow-left.png) !important;
  background-repeat: no-repeat !important;
}
.sectorsSlider .owl-next {
  position: absolute;
  right: -20px;
  top: 150px;
  width: 20px;
  height: 64px;
  background: url(../images/arrow-right.png) !important;
  background-repeat: no-repeat !important;
  z-index: 10;
}
.sectorsSlider .owl-theme .owl-controls .owl-buttons div {
  color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; /*	background: none;*/
}
.sectorsSlider .owl-theme .owl-controls .owl-page span {
  width: 15px;
  height: 15px;
  margin: 5px 8px;
  background: #e6e6e6;
}
.sectorsSlider .kc_tab {
  padding-left: 10px;
  padding-right: 10px;
}
.sectorsSlider .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F36A63;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin-top: 15px;
}
.sectorsSlider p {
  margin-bottom: 0;
}
.sectorsSlider .desc {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .sectorsSlider {
    min-height: 371px;
  }
  .sectorsSlider img {
    width: 200px;
    margin-top: 43px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sectorsSlider .title {
    font-size: 1rem;
  }
  .sectorsSlider .desc {
    font-size: 1rem;
    text-align: left;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .sectorsSlider .kc_tab_content:hover img /*, .sectorsSlider.initial .owl-item:first-child .kc_tab img */ {
    width: 100%;
    margin-top: 0;
  }
  .sectorsSlider .kc_tab_content:hover .title /*, .sectorsSlider.initial .owl-item:first-child .kc_tab .title*/ {
    font-size: 1.3125rem;
  }
  .sectorsSlider .kc_tab_content:hover .desc /*,.sectorsSlider.initial .owl-item:first-child .kc_tab .des*/ {
    opacity: 100;
  }
}
/*home Signature Events*/
.signatureEventsSlider {
  max-width: 1050px;
  float: none;
  margin: auto;
}
.signatureEventsSlider .owl-prev {
  position: absolute;
  left: -20px;
  top: 150px;
  width: 20px;
  height: 64px;
  background: url(../images/arrow-left-gold.png) !important;
  background-repeat: no-repeat !important;
}
.signatureEventsSlider .owl-next {
  position: absolute;
  right: -20px;
  top: 150px;
  width: 20px;
  height: 64px;
  background: url(../images/arrow-right-gold.png) !important;
  background-repeat: no-repeat !important;
  z-index: 10;
}
.signatureEventsSlider .owl-theme .owl-controls .owl-buttons div {
  color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; /*	background: none;*/
}
.signatureEventsSlider .owl-theme .owl-controls .owl-page span {
  width: 15px;
  height: 15px;
  margin: 5px 8px;
  background: #e6e6e6;
}
.signatureEventsSlider .title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #F36A63;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin-top: 15px;
}
.signatureEventsSlider p {
  margin-bottom: 0;
}
.signatureEventsSlider .signatureImg {
  max-width: 240px;
  margin: auto;
  float: none;
}
.signatureEventsSlider .signatureImg a img {
  max-width: none;
}
.signatureEventsSlider .kc_tab {
  padding-left: 10px;
  padding-right: 10px;
}
.signatureEventsSlider .overlay-effects {
  padding-left: 10px;
  padding-right: 10px;
  background: rgba(139, 117, 92, .8);
}
.signatureEventsSlider .content-desc {
  color: rgba(255, 255, 255, 1) !important
}
/* slideshow-featured */
.slideshow-featured {
  overflow: hidden;
}
.slideshow-featured .gallery-item {
  max-width: none;
  width: 50%;
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 480px) {
  .slideshow-featured .gallery-item {
    width: 33% !important;
  }
}
@media screen and (min-width: 768px) {
  .slideshow-featured .gallery-item {
    width: 25% !important;
  }
}
.slideshow-featured .gallery-item:before {
  padding-top: 0;
}
.slideshow-featured .gallery-icon {
  width: 100%;
  display: flex;
  overflow: hidden;
  object-position: center;
  align-content: center;
  position: relative;
}
.slideshow-featured .gallery-icon img {
  max-width: none;
  max-height: none;
  object-fit: cover;
  width: 100%;
}
/*
.slideshow-featured .gallery-item,
.slideshow-featured .gallery-item div, 
.slideshow-featured .gallery-item a{
	max-width: 100%;

	min-height: 60px;
	max-height: none;
	padding: 0 10px;
}
.slideshow-featured .gallery-item a{
	padding: 0;
}

.slideshow-featured .gallery-item a:hover{
	border: 1px solid transparent;
	-moz-box-shadow:     none;
    -webkit-box-shadow:  none;
    box-shadow:  		 none;
}
@media screen and (max-width: 480px) {
	.slideshow-featured .gallery-item{
		width: 50%!important;
	}
}
*/
/* homeNews */
.homeNews {
  color: #212121;
}
.homeNews .list-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: none;
  min-height: 189px;
}
.homeNews .sl-clock {
  display: none
}
.homeNews .list-item .post-content figure {
  margin: 0 0 1.5em 0;
}
@media screen and (min-width: 30em) {
  .homeNews .list-item .post-content {
    padding-left: 34.2105263157895%; /*width = 750px*/
  }
  .homeNews .list-item .post-content figure {
    margin-left: -52%;
    margin-bottom: -100%;
    width: 48%; /*360/750px*/
    display: inline-block;
    float: left;
  }
}
.homeNews .list-item .post-content h3, .homeNews .list-item .post-content div {
  width: 100%;
  display: inline-block;
  float: left;
}
.homeNews .list-item h3 a {
  display: block;
  color: #212121 !important;
  font-size: 30px;
  font-weight: 700;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.homeNews .list-item h3 a:hover {
  color: #808080 !important
}
/**/
.blacktext {
  color: #212121
}
.subSection h3 {
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
}
.subSection h3::after {
  content: " ";
  width: 30px;
  height: 3px;
  background-color: #d3c8b1;
  position: absolute;
  bottom: -15px;
  left: 0;
}
.subSection hr {
  opacity: 0.1;
}
.socialicon {
  color: #ffffff;
  font-size: 36px;
  display: flex;
}
.socialicon a {
  color: #ffffff;
}
.socialicon i, .socialicon svg, .socialicon a {
  margin-right: 20px;
}
/*
.footer-widget-3 .nf-form-content div {
	display: inline;
	float: left;
	margin: 0;
	clear: none;
	padding: 0;
}
.footer-widget-3 button, .footer-widget-3 input[type="button"], .footer-widget-3 input[type="submit"] {
	font-size: 16px;
	font-size: 1rem;
	padding: 0.65625em 1em;
	min-width: inherit;
}
.footer-widget-3 .email-container {
	max-width: calc(100% - 110px);
	min-width: 185px;
}

@media screen and (max-width:767px) {
.footer-widget-3 .SubForm-btn-container {
	position: relative;
	display: block;
}
}
*/
.footer-widget-3 .gradButton {
  display: inline-block;
}
@media screen and (min-width:768px) {
  .footer-widget-3 .gradButton {
    position: absolute;
  }
}
.nf-error-msg {
  font-size: 12px;
}
.footer-copyright {
  float: left;
}
.footer-link {
  float: right;
}
@media screen and (max-width:767px) {
  .footer-link {
    clear: both;
    float: left;
  }
}
.kc_counter_box .counterup {
  font-weight: 400;
  line-height: 1.25
}
.kc_counter_box.plus span::after {
  content: "+";
  display: inline;
}
.kc_counter_box.percent span::after {
  content: "%";
  display: inline;
}
html[lang^="zh-HK"] .kc_counter_box.year span::after {
  content: "å¹´";
  display: inline;
  font-size: 16px;
}
.pbottom0 p {
  margin-bottom: 0;
}
.list-style-none ul {
  list-style: none;
}
.ul2cols ul {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  -moz-column-gap: 45px;
  -webkit-column-gap: 45px;
  column-gap: 45px;
}
.ul3cols ul {
  -moz-column-count: 3;
  -webkit-column-count: 3;
  column-count: 3;
  -moz-column-gap: 45px;
  -webkit-column-gap: 45px;
  column-gap: 45px;
}
.ul2cols ul ul, .ul3cols ul ul {
  -moz-column-count: 1;
  -webkit-column-count: 1;
  column-count: 1;
}
.ul2cols ul ul li:nth-child(even), .ul3cols ul ul li:nth-child(even), .ul4cols ul ul li:nth-child(even) {
  color: inherit;
}
@media screen and (max-width:767px) {
  .ul3cols ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}
.ul4cols ul {
  -moz-column-count: 4;
  -webkit-column-count: 4;
  column-count: 4;
  -moz-column-gap: 45px;
  -webkit-column-gap: 45px;
  column-gap: 45px;
}
@media screen and (max-width:767px) {
  .ul4cols ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}
@media screen and (max-width:413px) {
  .ul4cols ul {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}
.ul2cols li, .ul3cols li, .ul4cols li {
  margin-bottom: .5em;
}
.ul2cols li:nth-child(even), .ul3cols li:nth-child(even), .ul4cols li:nth-child(even) {
  color: #bfbfbf;
}
.subSection .ul2cols li:nth-child(even), .subSection .ul3cols li:nth-child(even), .subSection .ul4cols li:nth-child(even) {
  color: #808080;
}
.liTitle {
  list-style: none;
  margin-left: -15px;
  padding-left: 0;
  margin-top: 3.75em;
  /*== h4*/
  color: #947136 !important;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.liTitle:first-child {
  margin-top: 0;
}
i.fa {
  min-width: 20px;
}
.acolorinherit a {
  color: inherit
}
.content-title, .content-desc {
  color: #808080
}
/*FAQ*/
.kc_accordion_header, .kc_accordion_content {
  border: none !important
}
.kc_accordion_content {
  color: inherit !important
}
/*press*/
.news-list {
  overflow-y: hidden
}
.news-list.list-post-type .list-item {
  padding-bottom: 0;
  margin-bottom: 1em;
  border-bottom: none;
  position: relative;
}
.news-list h3 {
  font-size: 16px;
  font-size: 1em;
  padding-left: 105px;
  padding-top: 0;
  font-weight: 300;
}
.news-list a {
  font-size: 16px;
  font-size: 1em !important;
}
.news-list .kc-entry_meta {
  float: left;
  width: 100px;
  position: absolute;
  text-align: right;
  color: #7F7F7F;
  top: -2px;
}
.news-list .sl-clock, .news-list figure, .news-list .text {
  display: none;
}
.tab-list {
  height: 277px;
  overflow-y: scroll;
  position: relative;
} /*46px each*/
.tab-list::-webkit-scrollbar {
  display: none;
}
.tab-list-wrap {
  overflow: scroll
}
.tab.buttons {
  text-align: center;
  padding-top: 15px;
  clear: both
}
.tab.scrollDown {
  background: url(../images/arrow-down.png) no-repeat center center
}
.tab.scrollup {
  background: url(../images/arrow-up.png) no-repeat center center
}
.tab.scrollDown, .tab.scrollup {
  width: 40px !important;
  height: 40px !important;
  cursor: pointer;
  display: inline-block
}
.tab.scrollDown:hover, .tab.scrollup:hover {
  color: #272727;
  -webkit-transition: color 0.5s;
  transition: color 0.5s
}
a.tab {
  display: inline-block;
  transition: all 0.3s;
  padding: 1px 15px;
  background: #FFC20E;
  color: #ffffff;
  text-align: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 1em;
}
a.tab:hover, a.tab:active, a.tab:focus {
  background: #F36A63;
  color: #ffffff;
  cursor: pointer;
}
#Press .list-post-type .list-item h3 a {
  font-size: 16px;
}
/*Media Coverage*/
.mediaCoverage figure {
  font-size: 14px;
  width: 25%;
  float: left;
  text-align: center;
}
@media screen and (min-width:414px) {
  .mediaCoverage figure:nth-child(4n+1) {
    clear: both;
  }
}
@media screen and (max-width:639px) {
  .mediaCoverage .title {
    display: none;
  }
}
@media screen and (max-width:413px) {
  .mediaCoverage figure {
    width: 33%;
  }
  .mediaCoverage figure:nth-child(3n+1) {
    clear: both;
  }
}
.mediaCoverage a img {
  transition: all 0.4s;
}
.mediaCoverage a:hover img, .mediaCoverage a:focus img {
  -webkit-filter: opacity(60%);
  filter: opacity(60%);
}
.mediaCoverage .thumb {
  text-align: center
}
.mediaCoverage .title {
  padding: 0 15px;
  text-align: center;
}
.mediaCoverage .date {
  padding: 2px 15px;
  background: #947136;
  color: #ffffff;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  width: auto;
  display: inline;
  white-space: nowrap;
}
.mediaCoverage .thumb img {
  max-height: 160px;
  width: auto !important;
}
.smallButton {
  font-size: 14px;
  padding: 0.125rem 1.125rem;
  min-width: 85px;
}
/*Quote
.content-title{margin:0;font-size:18px}
.content-position{color:#999;font-size:11px}
.quote .owl-item {
	padding-left: 30px;
	padding-right: 30px;
}
*/
#secondary .container {
  padding: 15px 15px 0;
  -webkit-transform: translateZ(0); /*This trick invokes hardware acceleration and jumping when position from relative to fixed*/
}
#secondary .container .gallery-item img {
  height: 100%;
  max-width: 100%;
}
.FeaturedBrands-sidebar .gallery-item img {
  height: auto;
  max-height: none;
  padding: 0
}
.FeaturedBrands-sidebar .gallery-item:before {
  padding-top: 0; /*aspect ration*/
}
.FeaturedBrands-sidebar .gallery-item {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.FeaturedBrands-sidebar .gallery-item div, .FeaturedBrands-sidebar .gallery-item a {
  position: relative;
  display: block;
}
.eventList .list-item {
  width: 100%;
  margin-right: 0;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 30px;
}
@media screen and (min-width:512px) {
  .eventList .list-item {
    width: 31.135531135531136%;
    margin-right: 3.296703296703297%
  }
  .eventList .list-item:nth-child(3n) {
    margin-right: 0;
  }
  .eventList .list-item:nth-child(3n+1) {
    clear: both;
  }
}
.eventList .post-content {
  text-align: center;
}
.eventList .list-item figure {
  overflow: hidden;
  display: flex;
  width: 100%;
  justify-content: center;
  height: 180px;
}
.eventList .list-item img {
  object-fit: cover;
  max-width: none;
  max-height: 200px;
}
.eventList .list-item h3 {
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eventList .list-item .text {
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width:768px) {
  .eventList .list-item .text {
    /*min-height: 105px;*/
  }
}
.eventList .list-item .kc-read-more {
  float: none;
  font-weight: 300;
  font-size: 14px;
  padding: 0.125rem 1.125rem;
  min-width: 85px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #D3C8B1;
  margin-top: 6px;
  background-color: transparent;
  border: 1px solid #FFC20E;
}
.eventList .list-item .kc-read-more:hover {
  color: #ffffff;
  background-color: rgba(255, 194, 14, 0.25)
}
/* Form */
.nf-form-title, .nf-form-fields-required {
  display: none;
}
.nf-field-label {
  display: block;
  margin-bottom: 0.5em;
  color: #947136;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.hidden {
  display: none !important;
  white-space: nowrap;
}
.kc_counter_box .counterup {
  white-space: nowrap;
}
.travel .content-desc {
  min-height: 48px;
}
.travel .kc-fb-layout-1 .content-button a {
  text-transform: none;
}
.nf-response-msg {
  padding-left: 15px;
  border-left: 1px solid #FFC20E;
}
@media screen and (min-width:999px) {
  .kc-row-container .kc-wrap-columns, .kc_row_inner {
    display: block
  }
}
.qtranxs_language_chooser {
  display: flex !important;
  align-items: center;
  padding: 0
}
.qtranxs_language_chooser:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 16px;
  background: url("assets/images/icn-lang-red.png") left center/16px 16px no-repeat;
}
@media (max-width:767px) {
  .qtranxs_language_chooser:before {
    background: url("assets/images/icn-lang-red.png") right center/16px 16px no-repeat;
  }
}
.qtranxs_widget, .wpcc_lang {
  font-weight: bold
}
.qtranxs_widget ul {
  margin: 0;
}
.qtranxs_widget ul li {
  display: inline; /* horizontal list, use "list-item" or other appropriate value for vertical list */
  list-style-type: none; /* use "initial" or other to enable bullets */
  margin: 0 5px 0 0; /* adjust spacing between items */
  -o-transition: 1s ease opacity;
  -moz-transition: 1s ease opacity;
  -webkit-transition: 1s ease opacity;
  transition: 1s ease opacity;
}
/* .qtranxs_widget ul li span { margin: 0 5px 0 0; } */ /* other way to control spacing */
.qtranxs_widget ul li.active {
  display: none;
}
.header-widget .qtranxs_widget a:hover {
  color: #d51d35;
}
.qtranxs_widget img {
  box-shadow: none;
  vertical-align: middle;
  display: initial;
}
.qtranxs_flag {
  height: 12px;
  width: 18px;
  display: block;
}
.qtranxs_flag_and_text {
  padding-left: 20px;
}
.qtranxs_flag span {
  display: none;
}
@media screen and (max-width:767px) {
  .header-widget {
    margin: 0;
    padding: 0;
  }
  .qtranxs_widget ul {
    margin: 0;
    padding: 0;
  }
}
.widget.widget_wpcc {
  margin-left: 0;
  margin-right: 10px;
}
#wpcc_original_link, #wpcc_original_link a {
  display: none !important
}
.kc_counter_box {
  max-width: 140px;
  float: none;
  margin: auto;
}
.kc_counter_box .counterup {
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
}
.kc_counter_box h4 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #000000;
  text-transform: capitalize;
  margin-top: 10px;
}
@media screen and (max-width:1280px) {
  .fullWidthBg {
    background-size: 1280px !important;
  }
}
@media screen and (min-width:768px) {
  .centerLineSep {
    border-right: 1px solid #FFC20E
  }
}
@media screen and (max-width:767px) {
  .menu-top-menu-container a, .menu-top-menu-container .header-widget .widget a {
    color: #d51d35;
  }
}
.widthauto {
  width: auto;
}
ul.top-menu {
  pointer-events: none;
}
.main-navigation li {
  pointer-events: all;
}
.narrow {
  max-width: 360px;
  margin: auto;
}
.narrower {
  max-width: 210px;
  margin: auto;
}
/*
._home2023:after {
  content: "";
  background: url("https://rb.bizi.website/wp-content/uploads/2022/10/RBHK-2023-bg-item-2.png");
  position: absolute;
  width: 862px;
  height: 562px;
  top: 0;
  right: -150px;
}
._home2023:before {
  content: "";
  background: url("https://rb.bizi.website/wp-content/uploads/2022/10/RBHK-2023-bg-item-1.png");
  position: absolute;
  width: 638px;
  height: 1012px;
  top: 150px;
  left: -300px;
}*/
.home2023 > div {
  position: relative;
  z-index: 11;
}
.home2023 h3 {
  position: relative;
  z-index: 12;
}
.home-main {
  min-height: 800px;
  width: 100vw;
  display: flex;
  align-items: center;
}
.home-main img {
  padding: 0 15px;
}
.home-food-1 {
  position: absolute !important;
  top: 400px;
  left: -250px;
  z-index: 10;
  pointer-events: none;
}
.home-food-2 {
  position: absolute !important;
  top: 0;
  right: -150px;
  z-index: 9;
  pointer-events: none;
}
@media (min-width:500px) {
  .home-food-1 {
    top: 250px;
    left: -400px;
  }
  .home-food-2 {
    top: -50px;
    right: -250px;
  }
}
@media (min-width:999px) {
  .home-food-1 {
    top: 150px;
  }
  .home-food-2 {
    right: -150px;
  }
}
.home-food-3 {
  position: absolute !important;
  top: -360px;
  right: 0;
  z-index: 0;
  pointer-events: none;
}
.home-food-4 {
  position: absolute !important;
  top: -90px;
  right: 280px;
  z-index: 1;
  pointer-events: none;
}
@media (min-width:500px) {
  .home-food-3 {
    top: -300px;
  }
  .home-food-4 {
    top: -90px;
    left: -350px;
  }
}
@media (min-width:1170px) {
  .home-food-3 {
    right: calc((1170px - 100vw)/2);
  }
  .home-food-4 {
    left: calc((1170px - 100vw)/2 - 100px);
  }
}
.home-food-6 {
  position: absolute !important;
  top: -900px;
  right: 0;
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: .5
}
@media (min-width:1170px) {
  .home-food-6 {
    right: calc((1170px - 100vw)/2);
  }
}
.home-food-5 {
  position: absolute !important;
  top: calc((100vw - 1170px)/8 - 300px);
  right: -150px;
  z-index: 9;
  pointer-events: none;
}
@media (min-width:1170px) {
  .home-food-5 {
    right: calc((1170px - 100vw)/2 - 150px);
    top: -300px;
  }
}
.home-food-8 {
  position: absolute !important;
  top: 0;
  right: -400px;
  pointer-events: none;
}
.home-food-9 {
  position: absolute !important;
  top: 200px;
  left: -250px;
  pointer-events: none;
}
.home-food-10 {
  position: absolute !important;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media (min-width:860px) {
  .home-food-10 {
    left: calc((1170px - 100vw)/2 - 160px);
  }
}
.home-banners {
  position: relative;
  z-index: 10;
}
.home-banners .kc_column_inner {
  padding: 0;
}
.home-banners .kc_column_inner .kc-col-inner-container {
  max-height: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  align-content: center;
}
.home-banners .kc_column_inner .kc-col-inner-container > * {
  position: absolute;
}
.home-banners h1 {
  font-size: min(120px, 10vw);
  font-weight: bold;
}
.blur-background {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.industry-quotes {
  position: relative;
  z-index: 11;
}
/* Home F+H Digest*/
.list-post-type .list-item h3 a:hover {
  color: #917A56 !important
}
.kc-entry_meta > span i {
  color: #917A56 !important
}
.fh-digest {}
.fh-digest .list-item {
  border-bottom: none !important;
  margin: 0 0 30px !important;
  padding: 0 !important;
}
.fh-digest .list-item:first-child {
  width: calc(60% - 20px);
  float: left;
}
.fh-digest .list-item:not(:first-child) {
  width: calc(40% - 20px);
  float: right;
  clear: right;
}
.fh-digest .list-item .post-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.fh-digest .list-item .post-content > figure {
  flex: 0 0 calc(25% - 10px);
  margin: 0;
  aspect-ratio: 1 / 1;
  background: url("assets/images/placeholder-image-sq.gif") center top/contain no-repeat;
}
.fh-digest .list-item .post-content > figure img {
  width: 100%
}
.fh-digest .list-item .post-content > h3 {
  flex: 0 0 calc(75% - 10px);
}
.fh-digest .list-item .post-content > h3 a {
  font-size: 18px;
}
.fh-digest .list-item:first-child .post-content > figure {
  flex: 0 0 calc(60% - 10px);
}
.fh-digest .list-item:first-child .post-content > h3 {
  flex: 0 0 calc(40% - 10px);
}
.fh-digest .list-item:first-child .post-content > h3 a {
  font-size: 24px;
}
.fh-digest .list-item .post-content .kc-entry_meta, .fh-digest .list-item .post-content .text {
  display: none;
}
@media (max-width:767px) {
  .fh-digest .list-item:first-child {
    width: 100%;
    float: left;
  }
  .fh-digest .list-item:not(:first-child) {
    width: 33%;
    float: left;
    clear: none;
  }
  .fh-digest .list-item:first-child .post-content > figure {
    flex: 0 0 calc(50% - 10px);
  }
  .fh-digest .list-item:first-child .post-content > h3 {
    flex: 0 0 calc(50% - 10px);
  }
  .fh-digest .list-item .post-content > figure {
    flex: 0 0 calc(100% - 20px);
  }
  .fh-digest .list-item .post-content > h3 {
    flex: 0 0 calc(100% - 20px);
  }
}
@media (max-width:480px) {
  .fh-digest .list-item:first-child {
    width: 100%;
    float: left;
  }
  .fh-digest .list-item:not(:first-child) {
    width: 100%;
    float: left;
    clear: none;
  }
  /*
  .fh-digest .list-item:first-child .post-content > figure {
    flex: 0 0 calc(40% - 10px);
  }
  .fh-digest .list-item:first-child .post-content > h3 {
    flex: 0 0 calc(60% - 10px);
  }
  .fh-digest .list-item:first-child .post-content > h3 a {
    font-size: 18px;
  }*/
  .fh-digest .list-item:first-child .post-content > figure {
    flex: 0 0 100%;
  }
  .fh-digest .list-item:first-child .post-content > h3 {
    flex: 0 0 100%;
  }
  .fh-digest .list-item:first-child .post-content > h3 a {
    font-size: 18px;
  }
  .fh-digest .list-item .post-content > figure {
    flex: 0 0 calc(25% - 10px);
  }
  .fh-digest .list-item .post-content > h3 {
    flex: 0 0 calc(75% - 10px);
  }
  .fh-digest .list-item .post-content > h3 a {
    font-size: 16px;
  }
}
.owl-wrapper-outer {
  overflow: visible !important;
}
.owl-item {
  transition: all .45s;
}
.owl-item:hover {
  scale: 1.05;
  translate: 0 -8px;
}
.owl-pagination .owl-page span {
  width: 12px !important;
  height: 12px !important;
  margin: 5px !important;
  background: #917A56 !important;
}
#Major-Supporters .kc_single_image {
  display: flex;
  height: 120px;
  justify-content: center;
}
#Major-Supporters img {
  object-fit: contain;
  max-width: 220px;
  padding: 0 10px;
  width: 100%;
}
#Major-Supporters .list {
  width: 100%;
}
@media (max-width:767px) {
  #Major-Supporters .list > * {
    width: 50%;
  }
}
.site-footer {
  background: #917A56;
  color: white;
}
.site-footer a, .site-footer i {
  color: white !important;
}
@media (min-width:768px) {
  .main-navigation a {
    font-size: 18px;
  }
}
#HighlightedExhibitors .item {
  height: 114px;
  display: flex;
  padding: 10px 20px;
  justify-content: center;
}
#HighlightedExhibitors .owl-item img {
  object-fit: contain;
}
@media (min-width:768px) {
  #IG .kc-image-gallery .item-grid {
    padding: 15px;
  }
}
.followus {
  display: flex !important;
}
.followus > div {
  flex: 0 0 30px;
}

@media screen and (min-width: 900px) {

  .navigation-top {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 3
  }
  .site-navigation-fixed.navigation-top {
    bottom: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 7
  }
  .admin-bar .site-navigation-fixed.navigation-top {
    top: 32px
  }
  .js .menu-toggle, .js .dropdown-toggle {
    display: none
  }
  .main-navigation {
    width: auto;
  }
  .js .main-navigation ul, .js .main-navigation ul ul, .js .main-navigation > div > ul {
    display: block
  }
  .main-navigation ul {
    background: transparent;
    padding: 0
  }
  .main-navigation > div > ul {
    border: 0;
    margin-bottom: 0;
    padding: 0
  }
  .main-navigation li {
    border: 0;
    display: inline-block
  }
  .main-navigation li li {
    display: block
  }
  .main-navigation ul ul {
    background: rgba(255, 248, 242, 0.8);
    left: -999em;
    padding: 0;
    position: absolute;
    top: 100%;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    transition: opacity .6s;
  }
  .main-navigation ul ul:before {
    content: "";
    position: absolute;
    height: 35px;
    top: -35px;
    left: -1px;

  }
  .main-navigation ul ul ul:before {
    border-left: none;
  }
  .main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul {
    left: 0;
    right: auto;
    opacity: 1;
  }
  .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
    left: 100%;
    right: auto
  }
  .main-navigation ul ul a {
    padding: .75em 1.25em;
    width: 16em
  }
  .main-navigation li li {
    -webkit-transition: background-color .4s ease-in-out;
    transition: background-color .4s ease-in-out
  }
  .main-navigation li li:hover, .main-navigation li li.focus {
    background: #917a56
  }
  .main-navigation li li a {
    -webkit-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out;
    color: #917a56;
    font-weight: 400;
  }
  .main-navigation li li.current_page_item a, .main-navigation li li.current-menu-item a {
    color: #917a56
  }
  .main-navigation a:hover {
    color: #917a56;
    color: #d51d35;
  }
  .main-navigation #top-menu > li > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
    width: 0;
    border-bottom: 1px solid #917a56;
    transition: all .2s;
  }
  .main-navigation #top-menu > li > a:hover:after {
    width: 50px;
  }
  .main-navigation li li.focus > a, .main-navigation li li:focus > a, .main-navigation li li:hover > a, .main-navigation li li a:hover, .main-navigation li li a:focus, .main-navigation li li.current_page_item a:hover, .main-navigation li li.current-menu-item a:hover, .main-navigation li li.current_page_item a:focus, .main-navigation li li.current-menu-item a:focus {
    color: #FFF
  }
  .main-navigation .menu-item-has-children > a > .icon, .main-navigation .page_item_has_children > a > .icon {
    display: none;
    left: 5px;
    position: relative;
    top: -1px
  }
  .main-navigation ul ul .menu-item-has-children > a > .icon, .main-navigation ul ul .page_item_has_children > a > .icon {
    margin-top: -9px;
    left: auto;
    position: absolute;
    right: 1em;
    top: 50%;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
  }
  .main-navigation ul ul ul {
    left: -999em;
    top: 0;
  }
  .main-navigation ul ul li.menu-item-has-children.focus:before, .main-navigation ul ul li.menu-item-has-children:hover:before, .main-navigation ul ul li.menu-item-has-children.focus:after, .main-navigation ul ul li.menu-item-has-children:hover:after, .main-navigation ul ul li.page_item_has_children.focus:before, .main-navigation ul ul li.page_item_has_children:hover:before, .main-navigation ul ul li.page_item_has_children.focus:after, .main-navigation ul ul li.page_item_has_children:hover:after {
    display: none
  }
  .site-header .site-navigation-fixed .menu-scroll-down {
    display: none
  }
  .site-header .menu-scroll-down {
    display: block;
    padding: 1em;
    position: absolute;
    right: 0
  }
  .site-header .menu-scroll-down .icon {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
  }
  .site-header .menu-scroll-down {
    color: #fff;
    top: 2em
  }
  .site-header .navigation-top .menu-scroll-down {
    color: #767676;
    top: .7em
  }
  .menu-scroll-down:focus {
    outline: thin dotted
  }
  .menu-scroll-down .icon {
    height: 18px;
    width: 18px
  }


  .header-widget .wrap {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 899px) {
  .site-header .navigation-top .wrap {
    padding-top: 20px;
  }
  .site-header.scrollDown .navigation-top .wrap {
    padding-top: 90px;
  }
  .site-header > .header-widget {
    display: none
  }
  .menu-top-menu-container {
    position: absolute;
    height: calc(100vh - 45px);
    max-height: calc(100vh - 45px);
    overflow-y: auto;
    overflow-x: hidden;
    right: 0;
    top: 0;
    background: rgba(255, 252, 249, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .toggled-on .menu-top-menu-container {
    width: 100%;
  }
  .site-header.scrollDown .menu-top-menu-container {
    /*	top: 90px;*/
  }
  .menu-top-menu-container .header-widget {
    position: relative;
    text-align: left;
  }
  .menu-top-menu-container .header-widget .wrap {
    padding: 0;
    min-height: 45px;
    margin-bottom: 15px;
  }
  .menu-top-menu-container .header-widget a {
    padding-left: 15px;
  }
  .menu-top-menu-container .header-widget .widget {}
  .toggled-on .menu-top-menu-container .header-widget {
    display: block;
  }
  .main-navigation ul {
    background: transparent;
  }
  .main-navigation ul ul {
    background: transparent;
    padding-bottom: 0 !important;
  }
}
.home .nav-home{
	display: none
}

.home-banners p {padding: 0 30px; max-width:555px;margin: auto;}