:root {
  --primary-colour: #88133D;
  --secondary-colour: #621333;
  --light-grey: #F0F1F3;
  --medium-grey: #AFAFAF;
  --dark-grey: #333;
  --v-space: 20px;
  --icon-spacing: 17px;
  --icon-size: 24px;
}

@media (max-width: 1024px) {
  :root {
    /*--icon-size: 40px;*/
    --icon-inner: 18px;
  }
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

/* base styles */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body,
button,
input,
select,
textarea {
  font-family: sans-serif;
  color: var(--dark-grey);
}

/* margins, padding, & borders */
body,
figure,
form,
blockquote,
button,
input,
select,
textarea,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
fieldset {
  margin: 0;
}

ul,
ol,
button::-moz-focus-inner,
input::-moz-focus-inner,
fieldset,
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

img,
legend,
button::-moz-focus-inner,
input::-moz-focus-inner,
fieldset {
  border: 0;
}

/* images */
img {
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

/* links & typography */
a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

p {
  margin: 0;
}

ol,
ul {
  list-style-type: none;
  padding: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn,
em {
  font-style: italic;
}

small,
sub,
sup {
  font-size: 75%;
}

sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: '';
  content: none;
}

mark {
  background: #ff0;
  color: #000;
}

pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

nav ul,
nav ol,
.widget ol,
.widget ul,
.comment-list {
  list-style: none;
  list-style-image: none;
}

/* forms */
legend {
  *margin-left: -7px;
}

button,
input,
select,
textarea {
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 1px solid var(--primary-colour);
  outline-offset: -1px;
}

button,
input {
  line-height: 1.5;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

tarea,
textarea {
  overflow: auto;
  vertical-align: top;
}

/* tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/******************************************************************
Stylesheet: Mixins & Constants Stylesheet
******************************************************************/

/*********************
HIDING ELEMENTS
*********************/
.hidden {
  display: none !important;
  visibility: hidden;
}

/*********************
CLEARFIXIN'
*********************/
.clearfix {
  /* for IE */
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clear-line {
  border-bottom: 1px solid #ccc;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  clear: both;
}

/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
}

.fullWidth {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
}

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*********************
BUTTONS
*********************/
input[type=button],
input[type=submit],
.button,
.button:visited {
  padding: 4px 12px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all .4s;
  border-radius: 4px;
  background: black;
}

input[type=button]:hover,
input[type=submit]:hover,
.button:hover,
.button:visited:hover,
input[type=button]:focus,
input[type=submit]:focus,
.button:focus,
.button:visited:focus {
  color: #fff;
  background: #900028;
  text-decoration: none;
  opacity: 1;
}

input[type=button]:active,
input[type=submit]:active,
.button:active,
.button:visited:active {
  background: #900028;
  text-decoration: none;
  opacity: 1;
}


/******************************************************************
BASE (MOBILE) SIZE
******************************************************************/
/* styles in base.less */
/******************************************************************
Stylesheet: Base Mobile Stylesheet
******************************************************************/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: 'canada-type-gibson', sans-serif;
  font-size: 16px;
}

.site-container {
  background-color: var(--light-grey);
}


/*********************
LINKS
*********************/
a,
a:visited {
  color: #900028;
  text-decoration: none;
  transition: all .5s;
}

a img,
a:visited img {
  border: none;
}

a:hover,
a:focus {
  color: #be0035;
  text-decoration: none;
  cursor: pointer;
  transition: all .5s;
  opacity: 0.8;
}

.bx-wrapper .bx-controls-direction a {
  transition: none;
}

/*********************
FORM ELEMENTS
*********************/
label,
input[type=button],
input[type=submit],
button {
  cursor: pointer;
}

input,
textarea,
select {
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 4px 8px;
  font-family: 'canada-type-gibson', sans-serif;
  background: #fff;
}

::-webkit-input-placeholder {
  color: #999999;
}

::-moz-placeholder {
  color: #999999;
}

/* firefox 19+ */
:-ms-input-placeholder {
  color: #999999;
}

/* ie */
:-moz-placeholder {
  color: #999999;
}

/*********************
GRAVITY FORM STYLES
*********************/
div.gform_wrapper .ginput_complex label {
  font-size: 12px;
}

div.gform_wrapper li {
  list-style: none;
  margin-left: 0;
}

div.gform_wrapper div.validation_error {
  display: none;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}

div.gform_wrapper .top_label .gfield_label {
  display: none;
}

div.gform_wrapper li.gfield.gfield_error,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: inherit;
  border: 0px;
  padding-left: 0px !important;
  width: 100% !important;
  margin: 0px !important;
}

div.gform_wrapper li.gfield.gfield_error div.ginput_container,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning div.ginput_container {
  max-width: 100%;
  margin-left: 0px;
  margin-top: 0px;
}

div.gform_wrapper li.gfield.gfield_error div.ginput_container input.large,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container input.large,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning div.ginput_container input.large,
div.gform_wrapper li.gfield.gfield_error div.ginput_container input.medium,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container input.medium,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning div.ginput_container input.medium,
div.gform_wrapper li.gfield.gfield_error div.ginput_container select.large,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container select.large,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning div.ginput_container select.large,
div.gform_wrapper li.gfield.gfield_error div.ginput_container select.medium,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container select.medium,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning div.ginput_container select.medium,
div.gform_wrapper li.gfield.gfield_error div.ginput_container textarea.textarea,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container textarea.textarea,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning div.ginput_container textarea.textarea {
  border-color: red !important;
}

div.gform_wrapper li.gfield.gfield_error div.ginput_container .gfield_description.validation_message,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container .gfield_description.validation_message,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning div.ginput_container .gfield_description.validation_message,
div.gform_wrapper li.gfield.gfield_error div.ginput_container .validation_message,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container .validation_message,
div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning div.ginput_container .validation_message {
  display: none !important;
}

div.gform_wrapper .ginput_container + .gfield_description.validation_message {
  display: none !important;
}

div.gform_wrapper label.gfield_label + div.ginput_container {
  margin-top: 0px !important;
}

.gform_confirmation_wrapper .gform_confirmation_message {
  font: 700 15px/19px 'canada-type-gibson', sans-serif;
  color: #CB0935;
  margin: 80px 16px;
  text-align: center;
}

/*********************
SELECTION TEXT
*********************/
::-moz-selection {
  background-color: #82c5f8;
}

::selection {
  background-color: #82c5f8;
}

/*********************
GRID & LAYOUT
*********************/
/*
there are others you probably won't use at this size, so I
removed them. Remember, keep things light.
*/
.content-sidebar-wrap {
  padding: 26px 28px;
  margin: 0 15px 48px;
  background-color: white;
}

@media (min-width: 1025px) {
  .content-sidebar-wrap {
    padding: 52px 56px;
  }
}


@media (min-width: 1400px) {
  .content-sidebar-wrap {
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}


/*elementor */
.blog .content-sidebar-wrap,
.post-template-t-elementor-fixed .content-sidebar-wrap,
  /*maybe we dont need both event templates ?*/
.event-template-t-elementor-fixed .content-sidebar-wrap,
.event-template-default .content-sidebar-wrap,
.page-template-t-elementor-fixed .content-sidebar-wrap,
.post-type-archive .content-sidebar-wrap {
  padding: 0;
  background-color: transparent;
}

.post-template-t-elementor-fixed .content > .elementor,
.event-template-t-elementor-fixed .content > .elementor,
.event-template-default .content > .elementor,
.page-template-t-elementor-fixed .content > .elementor {
  margin-top: 40px;
}

.entry-content ul.elementor-nav-menu {
  margin: 0;
}

.elementor-widget-text-editor p,
.elementor-widget-text-editor ul,
.elementor-widget-text-editor ol,
.jet-tabs p {
  margin-bottom: 20px;
}

.elementor-widget-text-editor li {
  margin-left: 20px;
}

.elementor-widget-text-editor ul {
  list-style: disc;
}

.elementor-widget-text-editor ol {
  list-style: decimal;
}


/*********************
TITLES & HEADLINES
*********************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: 'canada-type-gibson', sans-serif;
  font-weight: bold;
  margin-bottom: var(--v-space);
}

h1 {
  font-size: 32px;
  letter-spacing: .06em;
  color: var(--primary-colour);
  text-transform: uppercase;
}

h2 {
  font-size: 22px;
  color: var(--primary-colour);
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-colour);
}

h4 {
  font-weight: 600;
  font-size: 20px;
}

.important {
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 20px;
  }

  h4,
  .important {
    font-size: 18px;
  }
}


@media (max-width: 767px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 18px;
  }

  h4,
  .important {
    font-size: 16px;
  }
}

/*********************
IMAGE HEADER
*********************/
.site-header {
  background-color: white;
  width: 100%;
  position: relative;
}

.site-header > .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 767px) {
  .site-header > .wrap {
    justify-content: center;
  }
}

.site-header .title-area {
  padding: 0;
  position: relative;
}

.site-header .title-area .site-title {
  margin: 0;
}

.site-header .title-area .site-title a {
  margin: 1em auto;
  text-align: center;
  display: block;
}

@media (max-width: 767px) {
  .site-header .title-area .site-title a {
    margin: 1.5em auto;
  }
}

@media (min-width: 1350px) {
  .site-header .title-area .site-title a {
    margin: 0;
  }
}

.site-header .title-area .site-title a img {
  max-width: 250px;
  vertical-align: middle;
  max-height: 104px;
}

@media (max-width: 767px) {
  .site-header .title-area .site-title a img {
    max-width: 150px;
  }
}

.site-header .site-description {
  display: none;
}

.site-header .widget-area {
  padding: 0;
}

.site-header .widget-area .widget_nav_menu {
  margin: 0;
  padding: 0;
  border: none;
}

.site-header .searchform {
  text-align: center;
}

.site-header .s {
  margin: 0;
}

.site-description {
  font-size: 12px;
  text-align: center;
}

#menu-icon {
  padding: 10px 5%;
  background: #666666;
  color: #fff;
  position: relative;
  box-sizing: content-box;
  font-family: 'canada-type-gibson', sans-serif;
}

#menu-icon:hover {
  cursor: pointer;
}

#menu-icon:after {
  content: "";
  position: absolute;
  top: 13px;
  right: 13px;
  width: 20px;
  height: 3px;
  border-top: 9px double #fff;
  border-bottom: 3px solid #fff;
}


@media (min-width: 768px) {
  .site-header .wrap {

  }


}


/*********************
page banner
*********************/
.page-banner {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-banner .wrap {
  background-color: var(--primary-colour);
  padding: 0;
  width: auto;
}

.page-banner h1.page-banner__title {
  color: white;
  margin: 0;
  padding: 28px;
}

@media (min-width: 1025px) {
  .page-banner h1.page-banner__title {
    padding: 32px 56px;
  }
}

@media (max-width: 1349px) {
  .page-banner .wrap {
    margin: 0 15px;
  }

}


/*********************
HEADER ICONS
*********************/


.header-icons {
  display: none;
  position: relative;
  min-height: var(--icon-size);
  margin: 0 auto 20px;
}

@media (min-width: 768px) {
  .header-icons {
    margin: 0 46px 0 auto;
    display: flex;
    align-items: center;
    gap: 23px;
  }

  .header-mob-search {
    display: none;
  }
}

@media (min-width: 1025px) {
  .header-icons {
  margin-right: 0;
  }
}

.header-icon {
  /*width: var(--icon-size);*/
  /*height: var(--icon-size);*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-icon path {
  fill: var(--primary-colour);
}

.header-icon--tv {
  left: calc(var(--icon-size) + var(--icon-spacing));
}

.header-icon--phone {
  left: calc(var(--icon-size) * 2 + var(--icon-spacing) * 2);
}


.header-icon:hover {
  opacity: 1;
  z-index: 2;
}


.header-icon:hover path {
  fill: #AB5976;
}

.header-mob-search {
  position: absolute;
  left: 15px;
  top: 28px;
}

.header-mob-search svg {
  max-width: 20px;
}

.header-mob-search path {
  fill: var(--primary-colour);
}

.header-mob-search:hover path {
  fill: #AB5976;
}


/*********************
NAVIGATION
*********************/
.nav-primary {
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .header-icon svg {
    width: var(--icon-inner);
  }
}

@media (min-width: 768px) and (max-width: 1349px) {
  .nav-primary {
    order: 1;
  }
}

@media (max-width: 1349px) {
  .nav-primary {
    width: 100%;
  }
}

.nav-primary > .wrap {
  padding: 0;
  margin-left: -10px;
  margin-right: -10px;
}

.nav-primary .menu {
  clear: both;
  background: #fff;
  color: #333;
  display: none;
}

.nav-primary .menu ul {
  list-style: none;
  padding: 0;
}

.nav-primary .menu > li {
  padding: 0;
  margin: 0;
}

.nav-primary .menu > li a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 10px 5%;
  border-bottom: 1px solid #ddd;
  font: 14px/33px 'canada-type-gibson', sans-serif;
  color: #2b2b2b;
  text-transform: uppercase;
  /* hover & current page highlight */
}

.nav-primary .menu > li a:hover,
.nav-primary .menu > li a:focus {
  background-color: #ddd;
  color: #333;
}

.nav-primary .menu > li ul {
  background: #eee;
  position: inherit;
}

.nav-primary .menu > li ul a {
  padding: 10px 10%;
}

.nav-primary .menu > li:hover > ul {
  /*display: block;*/
}

.nav-primary .menu > li li li a,
.nav-primary .menu > li li li a:link,
.nav-primary .menu > li li li a:visited {
  /*background: #e0e0e0;*/
  /*color: #333;*/
  padding: 10px 15%;
}


.nav-primary .menu > li.no-link > a {
  cursor: default;
}

.nav-primary .menu > li.current_page_item > a,
.nav-primary .menu > li.current-cat > a,
.nav-primary .menu > li.current-menu-item > a {
  background-color: #900028;
  color: #fff;
}

.nav-primary .menu > li.current_page_item > a:hover,
.nav-primary .menu > li.current-cat > a:hover,
.nav-primary .menu > li.current-menu-item > a:hover {
  background-color: #900028;
  color: #fff;
}

/*********************
DESCRIPTIONS
*********************/
.taxonomy-description {
  background-color: #fff;
  margin: 0 20px 20px;
}

.taxonomy-description h1 {
  margin: 0;
}

.taxonomy-description p {
  padding: 15px;
}

.archive-page {
  padding: 20px 0 0;
}

.archive-page ul,
.archive-page ol {
  padding-bottom: 25px;
}

.archive-page ul ul,
.archive-page ol ul {
  padding-bottom: 0;
}

/* archive page */
/*********************
ENTRY CONTENT
*********************/
.entry-content,
.wp-editor {
  font-family: 'canada-type-gibson', sans-serif;
  color: var(--dark-grey);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.25;
}

@media (max-width: 1024px) {
  .entry-content {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .entry-content {
    font-size: 14px;
  }
}


.entry-content p,
.wp-editor p {
  padding: 0;
  margin-bottom: 25px;
  letter-spacing: .06em;
  line-height: 1.5;
}

.entry-content ul,
.wp-editor ul,
.entry-content ol,
.wp-editor ol {
  padding-bottom: 10px;
}

.entry-content ul ul,
.wp-editor ul ul,
.entry-content ol ul,
.wp-editor ol ul,
.entry-content ul ol,
.wp-editor ul ol,
.entry-content ol ol,
.wp-editor ol ol {
  padding-bottom: 0;
}

.entry-content ul,
.wp-editor ul {
  list-style: disc;
}

.entry-content ol,
.wp-editor ol {
  list-style: decimal;
}

.entry-content li,
.wp-editor li {
  margin-left: 30px;
}

.entry-content blockquote,
.wp-editor blockquote {
  margin: 5px 5px 20px;
  padding: 20px;
}

.entry-content blockquote p,
.wp-editor blockquote p {
  color: #999;
  font-style: italic;
}

.wp-editor {
  background: #fff;
}

.wp-editor.content {
  width: 100%;
  padding: 15px;
}

/*********************
POST IMAGES
*********************/
img {
  height: auto;
  max-width: 100%;
}

.alignnone,
img.alignnone {
  display: inline;
  margin: 0 0 10px;
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin: 0 10px 10px 0;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin: 0 0 10px 10px;
}

.aligncenter,
img.aligncenter,
.entry_content .centered {
  display: block;
  margin: 0 auto 10px;
}

/*********************
WP-CAPTION
*********************/
.wp-caption {
  padding: 5px;
  text-align: center;
}

.wp-caption .wp-caption-text {
  font-size: 12px;
  padding: 5px 0;
}

/*********************
AUTHOR BOX
*********************/
.author-box {
  background-color: #f5f5f5;
  margin: 0 20px 40px;
  padding: 10px;
}

.author-box p {
  font-size: 12px;
}

.author-box .avatar {
  background-color: #fff;
  float: left;
  margin: 0 10px 0 0;
}

/* end author-box */
/*********************
FEATURED POSTS
*********************/
.genesis-grid-even,
.genesis-grid-odd {
  margin: 0 0 20px;
  padding: 0 0 15px;
  width: 48%;
}

.genesis-grid-even {
  float: left;
}

.genesis-grid-odd {
  float: right;
  clear: both;
}

.featuredpage,
.featuredpost {
  clear: both;
  margin: 0 0 15px;
}

.featuredpage img,
.featuredpost img {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 4px;
}

.featuredpage .page,
.featuredpost .page,
.featuredpage .post,
.featuredpost .post {
  border-bottom: 1px solid #ddd;
  margin: 0 0 5px;
  padding: 5px 15px 10px;
}

.more-from-category {
  padding: 5px 15px 0;
}

/*********************
POST NAVIGATION
*********************/
.navigation {
  font-size: 12px;
  padding: 20px 0;
  margin: 0 20px 20px;
}

.navigation li {
  display: inline;
}

.navigation li a {
  border: 1px solid #ddd;
  padding: 5px 8px;
}

.navigation li a:hover {
  background-color: #f5f5f5;
}

.navigation li.active a {
  background-color: #f5f5f5;
}

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar .widget {
  margin-bottom: 50px;
  text-align: center;
}

.sidebar .widget-title {
  font: 24px/25px 'canada-type-gibson', sans-serif;
  color: #555854;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.promotion + .promotion {
  margin-top: 50px;
}

.sidebar-primary {
  margin-top: 50px;
}

/*********************
WIDGET STYLES
*********************/
.widget h4 {
  margin: 0;
}

.widget ul,
.widget ol {
  padding: 0;
}

.widget li {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  /* remove the border for the last item in a list */
}

.widget li:last-child {
  border-bottom: 0;
}

/* end widget */
/*********************
COMMENT STYLES
**********************/
.entry-comments {
  margin: 0 0 15px;
  padding: 0 20px;
}

/* end comments */
.subscribe-to-comments {
  padding: 20px 0 10px;
}

.comment-list {
  /* vcard */
  /* end .commentlist .vcard */
}

.comment-list li {
  font-weight: 700;
  margin: 15px 0 5px;
  padding: 10px 5px 10px 10px;
}

.comment-list li ul.children {
  /* variations */
  /* change number for different depth */
}

.comment-list li ul.children li {
  margin-left: 10px;
  margin-right: -6px;
}

.comment-list li.depth-1 {
  border: 1px solid #ddd;
}

.comment-list .alt {
  border: 1px solid #ddd;
}

.comment-list .even {
  border: 1px solid #ddd;
}

.comment-list .thread-alt {
  background-color: #f5f5f5;
}

.comment-list .thread-even {
  background-color: #f5f5f5;
}

.comment-list .vcard cite.fn {
  font-style: normal;
}

.comment-list .vcard .commentmetadata {
  margin: 0 0 5px;
  font-size: 12px;
}

.comment-list .vcard img.avatar {
  background: #fff;
  float: right;
  margin: 0 5px 0 10px;
}

.comment-list .comment-content p {
  font-size: 12px;
  padding: 0 0 20px;
}

.comment-list .comment-content .reply {
  font-weight: 300;
}

/* end comment-list */
/**********************
COMMENT FORM STYLES
*********************/
#respond {
  margin: 0 0 15px;
  padding: 0 20px;
}

#author,
#email,
#url,
#comment {
  margin: 10px 5px 0 0;
  padding: 5px;
  width: 250px;
}

#comment {
  height: 150px;
  margin: 10px 0;
  width: 98%;
}

/*********************
NO COMMENTS
*********************/
.nocomments {
  text-align: center;
}

/*********************
FOOTER STYLES
*********************/


.fbq-footer {
  background: var(--primary-colour);
  background-size: cover;
  color: white;
  text-align: center;
}

.footer-main {
  padding: 70px 0;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}


.footer-logo img {
  max-width: 120px;
}


.newsletter-heading {
  color: white;
  letter-spacing: .06em;
}


.footer-bottom {
  font-size: 13px;
  font-weight: 200;
  border-top: 1px solid #E5A7BD;
  padding: 20px 0;
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-footer {
  display: flex;
}

.footer-menu-title {
  font-size: 18px;
  letter-spacing: .05em;
  color: white;
  margin-bottom: 15px;
}


.footer-menu li {
  margin-left: 10px;
}

.footer-menu li:before {
  content: "|";
  margin-right: 10px;
}

div.footer-menu a {
  color: inherit;
}


.footer-widgets {
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}


.footer-widgets .featuredpage .page,
.footer-widgets .featuredpost .post {
  margin: 0 0 10px;
  padding: 0;
}

.footer-widgets .widget_tag_cloud div div {
  padding: 0;
}

.footer-widgets .textwidget {
  padding: 0;
}

.footer-widgets .textwidget > br {
  display: none;
}

.footer-widgets #wp-calendar thead,
.footer-widgets #wp-calendar td {
  background: none;
}

.footer-widgets .footer-widgets-1 .symple-one-fourth {
  text-align: center;
}

.footer-widgets .footer-widgets-2 .symple-one-fourth {
  font: 18px/24px 'canada-type-gibson', sans-serif;
  color: #555854;
  text-transform: uppercase;
  text-align: center;
}

.footer-widgets .footer-widgets-1 .symple-three-fourth {
  font: 12px/24px 'canada-type-gibson', sans-serif;
  color: #555854;
  text-transform: uppercase;
  text-align: center;
}

.footer-widgets .social {
  width: auto;
  margin: auto;
}

.footer-widgets .social li .fa {
  color: #555854;
}

.footer-widgets .gform_wrapper {
  margin: 0px;
  max-width: 100%;
}

.footer-widgets .gform_wrapper .top_label input.medium,
.footer-widgets .gform_wrapper .top_label select.medium {
  font: 12px/32px 'canada-type-gibson', sans-serif;
  color: #8e8e8e;
  border: 1px solid #fff;
  border-radius: 0px;
  padding: 3px 10px;
  width: 100%;
  margin-bottom: 12px;
}

.footer-widgets .gform_wrapper .gform_footer {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.footer-widgets .gform_wrapper .gform_footer input[type="submit"] {
  color: var(--primary-colour);
  background-color: white;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: none;
  padding: 8px 20px 7px;
  min-height: 44px;
  border-radius: 22px;
  margin-right: 0;
}

.footer-widgets .gform_wrapper .gform_footer input[type="submit"]:hover {
  background-color: var(--primary-colour);
  color: white;
  border-color: white;
}


.footer-widgets .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
  margin-top: 0;
}

.footer-widgets .gform_wrapper ul.gform_fields li.gfield input {
  line-height: 28px;
  padding: 7px 10px !important;
}

.footer-contact {
  margin-top: 30px;
  line-height: 1.25;
  letter-spacing: .06em;
}

.footer-contact .fa {
  margin-right: 14px;
}

div.footer-contact a {
  color: inherit;
}

.footer-contact__item + .footer-contact__item {
  margin-top: 8px;
}

.footer-left {
  margin-bottom: 12px;
}

#icon-icreate {
  max-width: 88px;
  height: auto;
  fill: white;
  vertical-align: middle;
}

div.gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
  min-height: 44px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .footer-main {
    display: flex;
  }

  .footer-actions {
    flex-grow: 1;
  }

  .fbq-footer {
    text-align: left;
  }

  .footer-logo {
  }

  .footer-actions {
    margin-left: 40px;
    /*margin-right: 40px;*/
  }

  .footer-widgets {
    max-width: none;
  }

  .footer-widgets .gform_wrapper .gform_footer {
    text-align: left;
  }

  .footer-contact {
    display: flex;
  }

  .footer-contact__item + .footer-contact__item {
    margin: 0 0 0 72px;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-left {
    margin-bottom: 0;
  }
}

@media (min-width: 1025px) {

  .footer-actions {
    max-width: 786px;
    margin-left: auto;
  }

  .footer-widgets .gform_wrapper form {
    display: flex;
  }

  .footer-widgets .gform_wrapper ul.gform_fields {
    display: flex;
    margin: 0 -5px !important;
  }

  .footer-widgets .gform_wrapper .gform_body,
  .footer-widgets .gform_wrapper .gform_footer {
    width: auto;
  }

  .footer-widgets .gform_wrapper .gform_body {
    flex-grow: 1;
  }

  .footer-widgets .gform_wrapper .gform_footer {
    margin-left: 20px;
  }

  .footer-widgets .gform_wrapper ul.gform_fields li.gfield {
    flex-basis: 33.3333%;
    padding: 0 5px;
  }
}


/* end footer widgets */
#outdated-browser {
  position: fixed;
  top: 0;
  background: red;
  color: white;
  padding: 20px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  z-index: 1;
}


#outdated-browser a {
  color: blue;
}

.wrap {
  padding: 0px 10px;
}

#header-social {
  text-align: center;
}

.social {
  margin: auto;
  width: auto;
  /*display: inline-block;*/
  text-align: center;
}

.social li {
  float: left;
  padding: 0px 9px;
}

.social li .fa {
  color: #b3b9ba;
}

.social li:hover .fa {
  color: #900028;
}

#banner {
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#banner:not(.mobile) {
  background-position: 43% 0;
}

#banner .wrap {
  display: table;
  height: 430px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

#banner .wrap .content-section {
  text-align: center;
  display: table-cell;
  vertical-align: bottom;
  padding-bottom: 20px;
}

#banner .wrap .bouncing-arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
}

#banner .wrap .bouncing-arrow .fa {
  color: #fff;
  font-size: 35px;
}

#banner h1 {
  font: 23px/26px 'canada-type-gibson', sans-serif;
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 0px;
}

#banner h1 br {
  display: none;
}

#banner h1 span {
  display: inline-block;
  background: var(--primary-colour);
  padding: 10px 10px 5px;
  width: 100%;
}

#banner .text {
  font: 12px 'canada-type-gibson', sans-serif;
  color: #fff;
  clear: both;
}

#banner .text span {
  display: inline-block;
  background: var(--primary-colour);
  padding: 5px 10px 5px;
  width: 100%;
}

.button {
  font-size: 14px;
  line-height: 1.5;
  font-family: 'canada-type-gibson', sans-serif;
  color: #fff;
  border: 1px solid #fff;
  padding: 7px 35px;
  background: none;
  text-transform: uppercase;
  border-radius: 0px;
  margin-top: 15px;
}

.button:hover {
  border-color: #900028;
}

.sponsor-banner {
  text-align: center;
  padding: 50px 0px;
}

.sponsor-banner .text-section {
  padding: 15px;
  background: #d9d9d9;
}

.sponsor-banner .text-section .heading {
  font: 500 32px/48px 'canada-type-gibson', sans-serif;
  color: #555854;
}

.sponsor-banner .text-section .sub-heading {
  font: 17px/31.46px 'canada-type-gibson', sans-serif;
  color: #000;
}

.sponsor-banner .button-section .button {
  border-color: #000;
  color: #000;
}

.sponsor-banner .button-section .button:hover {
  border-color: #900028;
  color: #fff;
}

.services-section {
  padding-top: 60px;
}

.service {
  text-align: center;
  margin-bottom: 55px;
  width: 50%;
  float: left;
}

.service figure {
  background: #000;
  margin-bottom: 25px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0px auto 25px;
  transition: all .5s;
}

.service figure img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.service h3 {
  font: 24px/34px 'canada-type-gibson', sans-serif;
  color: #000;
  text-transform: uppercase;
  transition: all .5s;
}

.service:hover figure {
  background: #900028;
  transition: all .5s;
}

.service:hover h3 {
  color: #900028;
  transition: all .5s;
}

.latest-news {
  padding: 50px 0px 70px;
}

.latest-news h2 {
  margin-bottom: 15px;
}

.latest-news .featured-item {
  margin-top: 40px;
}

.latest-news .latest-items {
  margin-top: 40px;
  margin-bottom: 50px;
}

.latest-items figure {
  width: 150px;
}

.ui-accordion-content,
.featured-item {
  text-align: center;
  width: 100%;
  max-width: 565px;
}

.ui-accordion-content figure,
.featured-item figure {
  margin-bottom: 15px;
}

.ui-accordion-content figure img,
.featured-item figure img {
  vertical-align: middle;
}

.ui-accordion-content h4,
.featured-item h4 {
  font: 700 15px 'canada-type-gibson', sans-serif;
  text-transform: uppercase;
}

.ui-accordion-content h4 a,
.featured-item h4 a {
  color: #010101;
}

.ui-accordion-content .meta,
.featured-item .meta,
.featured-item .meta a {
  font: 600 10px 'canada-type-gibson', sans-serif;
  color: #b3b9ba;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.featured-item .meta a {

}


.ui-accordion-content p,
.featured-item p {
  font: 14px/24px 'canada-type-gibson', sans-serif;
  color: #000000;
}

.ui-accordion-content a,
.featured-item a {
  font: 14px/25px 'canada-type-gibson', sans-serif;
  color: #000000;
  text-transform: uppercase;
  display: inline-block;
}

.ui-accordion-content a:hover,
.featured-item a:hover {
  color: #900028;
}

.featured-item a.read-more {
  margin-top: 20px;
}

.symple-accordion .symple-accordion-trigger.ui-state-active,
.symple-accordion h3.symple-accordion-trigger {
  background: #b3b9ba;
  color: #fff;
  font: 600 15px 'canada-type-gibson', sans-serif;
  text-transform: uppercase;
  padding: 0px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.symple-accordion .symple-accordion-trigger.ui-state-active .ui-icon,
.symple-accordion h3.symple-accordion-trigger .ui-icon {
  background: #b3b9ba url('../png/plus-icon.png') no-repeat center center;
  margin: 0px;
  padding: 10px 0px;
  width: 50px;
  min-width: 50px;
  border-right: 1px solid;
}

.symple-accordion .symple-accordion-trigger.ui-state-active a,
.symple-accordion h3.symple-accordion-trigger a {
  color: #fff;
  padding: 10px 0px 10px 10px;
}

.symple-accordion .symple-accordion-trigger.ui-state-active:hover,
.symple-accordion h3.symple-accordion-trigger:hover {
  background: #b3b9ba;
}

.symple-accordion .symple-accordion-trigger.ui-state-active:hover a,
.symple-accordion h3.symple-accordion-trigger:hover a {
  background: #b3b9ba;
  color: #900028;
}

.symple-accordion .symple-accordion-trigger.ui-state-active .ui-icon {
  background: #b3b9ba url('../jpg/minus-icon.jpg') no-repeat 15px center;
}

.symple-accordion .symple-accordion-trigger.ui-state-active:hover a {
  color: #fff;
  opacity: 1;
}

.symple-accordion .ui-accordion-content {
  text-align: left;
}

.symple-accordion .ui-accordion-content figure a {
  width: 100%;
}

.find-a-club {
  text-align: center;
}

.find-a-club .form-heading {
  margin-bottom: 10px;
}

#find-club {
  max-width: 334px;
  padding-right: 74px;
  position: relative;
  display: inline-block;
}

#find-txt {
  background: var(--light-grey);
  width: 100%;
  border: 1px solid #EBEBEB;
  border-radius: 0;
  padding: 15px 20px;
  min-height: 56px;
}

#find-sbt {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 74px;
  border-radius: 0;
  border: 0;
  background-color: var(--primary-colour);
  padding: 0 6px;
  line-height: 0;
}

#find-sbt:hover {
  background-color: #900028;
  border-color: #900028;
}


.sep {
  width: 100px;
  margin: 5px auto;
  background: var(--primary-colour);
  height: 2px;
  /*display: inline-block; */
}

.social-section,
.instagram-section {
  padding: 80px 0px 90px;
}

.instagram-section .content-section {
  text-align: center;
}

.instagram-section .content-section .sep {
  margin-bottom: 30px;
}

.followwidget {
  margin-top: 60px;
}

.bx-wrapper ul li {
  height: 80px !important;
  width: auto !important;
  padding: 0px 20px;
}

.bx-wrapper ul li .helper {
  height: 80px !important;
  width: auto !important;
}

.our-clients {
  padding: 70px 0 60px;
  background-color: #e6e6e6;
  background-position: center;
  background-size: cover;
}

.logos-wrap {
  margin-top: 40px;
}

.animated {
  animation-duration: 1.9s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

.bounce {
  animation-name: bounce;
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}


/**** standard page *****/
#inner-banner .wrap {
  display: table;
  height: 300px;
  overflow: hidden;
  position: relative;
}

#inner-banner .wrap .content-section {
  display: table-cell;
  vertical-align: middle;
}

#inner-banner .wrap .content-section .banenr-title {
  font: 36px/46px 'canada-type-gibson', sans-serif;
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  width: auto;
  margin-bottom: 0px;
  background: var(--primary-colour);
  display: inline-block;
  padding: 10px;
}

.breadcrumb {
  margin: 20px 0px 60px;

  color: #555854;
}

.bread-wrap {
  font: 11px 'canada-type-gibson', sans-serif;
  text-align: right;
}

.breadcrumb a {
  color: #555854;
}

.breadcrumb a:hover {
  color: #900028;
}

.page-heading {
  text-align: center;
  margin-bottom: 50px;
}

.page-heading h1 {
  font: 600 28px 'canada-type-gibson', sans-serif;
  color: #555854;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.page-heading .sub-heading {
  margin: 25px 0 0;
  font: 18px/28px 'canada-type-gibson', sans-serif;
  color: var(--primary-colour);
}

.page-heading .sub-heading br {
  display: none;
}

.space {
  width: 100%;
  height: 30px;
}

.entry-content blockquote,
.wp-editor blockquote {
  font: 18px/28px 'canada-type-gibson', sans-serif;
  color: var(--primary-colour);
  padding: 0px;
  margin: 0px;
  font-style: normal;
}

.entry-content blockquote p,
.wp-editor blockquote p {
  color: var(--primary-colour);
  font-style: normal;
}

.entry-content .sep,
.wp-editor .sep {
  margin: 0px 0px 30px;
}

/**** Twitter ***/
.env-narrow .header .avatar {
  display: none !important;
}

.env-narrow .tweet .header {
  padding-left: 0px !important;
}

.env-narrow .permalink {
  display: none !important;
}

.env-narrow .tweet .u-url {
  width: 100% !important;
  display: none !important;
}

.page-template-players-template .site-inner {
  display: none;
}

.page-template-players-template #inner-banner {
  padding: 50px 0px;
  text-align: center;
}

.page-template-players-template #inner-banner .wrap {
  width: 100%;
}

.page-template-players-template #inner-banner .banenr-title {
  margin: auto;
  margin-bottom: 40px !important;
  padding: 5px 15px !important;
}

.page-template-players-template #inner-banner .banner-text {
  margin-bottom: 45px;
}

.page-template-players-template #inner-banner .banner-text br {
  display: none;
}

.page-template-players-template #inner-banner .banner-button .button {
  margin: 0;
  color: white;
  background-color: black;
  border-color: black;
}

.page-template-players-template #inner-banner .banner-button .button:hover {
  background-color: #900028;
  border-color: #900028;
}

.page-template-players-template #inner-banner #find-club {
  margin: auto;
  display: inline-block;
}

.page-template-players-template #inner-banner #find-txt {
  max-width: 290px;
}

.page-template-players-template .player-type {
  /* padding: 150px 0px 90px; */
  background-size: cover !important;
  padding: 70px 0px 45px;
}

.page-template-players-template .player-type .heading {
  font: 56px/60px 'canada-type-gibson', sans-serif;
  color: #555854;
  max-width: 305px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  margin: auto;
}

.page-template-players-template .player-type .heading .sep {
  margin: 30px auto;
}

.page-template-players-template .player-type .text {
  max-width: 395px;
  text-align: center;
  margin: auto;
  letter-spacing: 1px;
}

.page-template-players-template .player-type .text .button {
  font: 12px/32px 'canada-type-gibson', sans-serif;
  color: #fff;
  background: #000;
  margin-top: 45px;
  text-transform: uppercase;
  border-color: #000;
}

.page-template-players-template .player-type .text .button:hover {
  background: #900028;
  border-color: #900028;
}

.page-template-landing-template #inner-banner {
  padding-top: 40%;
  background-position: center;
  background-size: auto 100%;
}

.page-template-landing-template #inner-banner.mobile {
  padding-top: 56.6667%;
  background-size: 100% auto;
}

.page-template-landing-template .post-edit-link {
  display: none;
}

.landing-body {
  clear: both;
  padding: 60px 0;
}

.landing-body > section {
  margin-bottom: 50px;
}

.landing-body .areas {
  margin-bottom: 75px;
}

.landing-body .area {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.landing-body .area__image {
  text-align: center;
  margin-bottom: 25px;
}

.landing-body .area__image .area__image__inner {
  display: inline-block;
  vertical-align: middle;
}

.landing-body .area__image a {
  position: relative;
  display: block;
  width: 210px;
  padding-top: 95.239%;
  transition: none;
}

.landing-body .area__image a .area__image__normal,
.landing-body .area__image a .area__image__hover {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  opacity: 1;
}

.landing-body .area__image a .area__image__hover {
  opacity: 0;
}

.landing-body .area__image a:hover .area__image__normal {
  opacity: 0;
}

.landing-body .area__image a:hover .area__image__hover {
  opacity: 1;
}

.landing-body .video {
  text-align: center;
}

.landing-body [class^="video__image"] {
  display: none;
}

.landing-body .video__embed {
  width: 100%;
  max-width: 500px;
  display: inline-block;
}

.landing-body .video__embed__inner {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.landing-body .video__embed__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.landing-body .detail-box {
  color: white;
  background-color: #900028;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 25px;
  padding: 20px 25px;
}

.landing-body .detail-box__title {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}

.landing-body .detail-box__list {
  margin-left: 22px;
}

.landing-body .detail-box__list li:before {
  display: inline-block;
  font: normal normal normal 14px/1 'FontAwesome';
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f0a9';
  width: 22px;
  line-height: 26px;
  float: left;
  margin-left: -22px;
}

.area__accord {
  border-bottom: 1px solid #b3b9ba;
  border-left: 1px solid #b3b9ba;
  border-right: 1px solid #b3b9ba;
  margin-bottom: 18px;
}

.area__accord__title {
  margin: 0;
  color: white;
  font-family: 'canada-type-gibson', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 45px;
  background: #b3b9ba;
}

.area__accord__title__icon,
.area__accord__title__text {
  display: inline-block;
  vertical-align: bottom;
}

.area__accord__title__icon {
  background-image: url('../png/plus-icon.png');
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 45px;
  border-right: 1px solid white;
}

.area__accord--open .area__accord__title__icon {
  background-image: url('../jpg/minus-icon.jpg');
}

.area__accord__title__text {
  padding-left: 12px;
  line-height: 42px;
}

.area__accord__body {
  padding: 15px;
  font-size: 14px;
  line-height: 21px;
}

.area__info {
  font-size: 15px;
  margin-bottom: 25px;
}

.area__button {
  text-align: center;
}

.area__button a {
  padding: 4px 12px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all .4s;
  border-radius: 4px;
  background: black;
  font: 14px/25.22px 'canada-type-gibson', sans-serif;
  color: #fff;
  border: 2px solid #fff;
  padding: 5px 35px;
  background: none;
  text-transform: uppercase;
  border-radius: 0px;
  margin-top: 15px;
  margin: 0;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  background-color: black;
  color: white;
}

.area__button a:hover,
.area__button a:focus {
  color: #fff;
  background: #900028;
  text-decoration: none;
  opacity: 1;
}

.area__button a:active {
  background: #900028;
  text-decoration: none;
  opacity: 1;
}

.area__button a:hover {
  border-color: #900028;
}

.area__button a:after {
  content: "\3e";
  margin-left: 1em;
  font-size: 1.1em;
}

.landing-divider {
  width: 38%;
  height: 2px;
  background-color: #900028;
  margin: 0 auto;
  margin-bottom: 50px;
}

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.instagram-pics {
  /* for IE */
  zoom: 1;
}

.instagram-pics:before,
.instagram-pics:after {
  content: "";
  display: table;
}

.instagram-pics:after {
  clear: both;
}

.videos-section {
  padding: 80px 0px 0px;
}

.video-slider {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}

.video-swiper-container {
  width: 100%;
  margin: 0 auto;
  max-width: 624px;
  position: relative;
}

.swiper-slide {
  height: 300px;
  width: 540px;
  background-color: #771144;
}

.swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: none;
}

.swiper-slide a:hover {
  opacity: 1;
}

.swiper-slide-active a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("../png/play.png");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: all .2s;
}

.swiper-slide-active a:hover:before {
  opacity: 1;
  transform: scale(1.04);
}

[class^="swiper-button-"] {
  width: 42px;
  height: 100%;
  top: 0;
  margin: 0;
  background-image: none;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0.7;
  transition: opacity .2s;
  z-index: 10;
}

[class^="swiper-button-"] i {
  text-align: center;
  width: 100%;
  color: white;
  font-size: 42px;
  vertical-align: middle;
}

[class^="swiper-button-"]:before {
  content: "";
  width: 0px;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

[class^="swiper-button-"]:hover {
  opacity: 1;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% - 270px);
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.3);
}

.video-overlay--left {
  left: 0;
}

.video-overlay--right {
  right: 0;
}

.type-post {
  padding-bottom: 50px;
  margin-bottom: 75px;
  border-bottom: 2px solid #900028;
}

.type-post .post-image {
  margin-bottom: 12px;
}

.type-post .post-image img {
  vertical-align: middle;
}

.blog-post-image {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  padding: 0 15px;
  max-width: 1380px;

}

@media (min-width: 1025px) {
  .blog-post-image__wrap {
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  .blog-post-image img {
    width: 100%;
    height: auto;

    position: absolute;
    transform: translateY(-50%);
    top: 50%;

  }
}
@media (min-width: 1350px) {
  .blog-post-image__wrap {
    height: 600px;
  }
  .blog-post-image img {
    object-fit: cover;
    height: 100%;
  }
}


.type-post .entry-title {
  text-align: left;
  font-size: 30px;
  font-weight: 300;
  text-transform: none;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 767px) {
  .type-post .entry-title {
    font-size: 24px;
  }
}

.type-post .entry-title a {
  color: black;
}

.type-post .entry-title a:hover {
  color: #900028;
  opacity: 1;
}

.type-post .entry-header {
  margin-bottom: 25px;
  line-height: 25px;
}

.type-post .entry-meta {
  color: #b3b9ba;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.type-post .post-more {
  text-transform: uppercase;
}

.single .post {
  border: none;
}

.pagination {
  /* for IE */
  zoom: 1;
}

.pagination:before,
.pagination:after {
  content: "";
  display: table;
}

.pagination:after {
  clear: both;
}

iframe[name='google_conversion_frame'] {
  position: fixed;
}

@media (max-width: 499px) {
  .table-wrap {
    overflow-x: scroll;
  }
}

.weather-table {
  margin-bottom: 40px;
  border: 1px solid #ccc;
  width: 100%;
  min-width: 500px;
}

.weather-table th {
  font-size: 15px;
}

.weather-table td {
  font-size: 14px;
}

.ww-cal__date {
  font-weight: normal;
}

.ww-update__desc {
  font-style: italic;
}

.weather-table th,
.weather-table td {
  padding: 20px 10px;
  vertical-align: top;
  border: 1px solid #ccc;
}

.weather-table thead {
  background: #e1e1e1;
}

.ww-cal__ground {
  font-weight: bold;
}

.weather-table tbody tr:nth-child(even) {
  background-color: #f1f1f1;
}

.update-field--title,
.update-field--status {
  white-space: nowrap;
}

.update-field--datetime {
  text-align: center;
}

.update-status {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  display: inline-block;
  margin-right: 8px;
  position: relative;
}

.update-status--green {
  background-color: #1a661a;
}

.update-status--yellow {
  background-color: #cccc33;
}

.update-status--orange {
  background-color: #cc9633;
}

.update-status--red-orange:after,
.update-status--red-green:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: 0;
  right: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.update-status--red-orange {
  background-color: #cc3333;
}

.update-status--red-orange:after {
  background-color: #cc9633;
}

.update-status--red-green {
  background-color: #cc3333;
}

.update-status--red-green:after {
  background-color: #1a661a;
}

.update-status--red {
  background-color: #cc3333;
}

.update-status--none {
  background-color: #808080;
}

.alert-legend__item {
  font-size: 13px;
  margin-bottom: 3px;
}

/******************************************************************
SMALL SIZE
******************************************************************/
@media only screen and (min-width: 400px) {
  /* styles in 480up.less */
  .instagram-pics li {
    float: left;
    width: 48%;
    margin: 1%;
  }

  .instagram-pics li img {
    display: flex;
    width: 100%;
  }

  #banner h1 {
    font-size: 30px;
    line-height: 32px;
  }

  #banner h1 br {
    display: block;
  }

  #banner h1 span {
    width: auto;
  }

  #banner .text {
    font-size: 14px;
  }

  #banner .text span {
    width: auto;
  }
}

/* end of media query */
/******************************************************************
TABLET & MID-RANGE STYLES
******************************************************************/
@media only screen and (min-width: 600px) {
  /* styles in 600up.less */
  /******************************************************************
Stylesheet: Tablet & Mid-Range Stylesheet
******************************************************************/
  /*********************
HEADER
*********************/
  #menu-icon {
    display: none;
  }

  /*********************
NAVIGATION
*********************/
  .nav-primary {

  }

  .nav-primary .menu {
    clear: both;
    display: block;
    border: none;
    text-align: center;
  }

  .nav-primary .menu > li {
    display: inline-block;
    padding: 0px 7px;
    /* show sub-menu on hover */
  }

  .nav-primary .menu > li a {
    display: block;
    padding: 10px 0px 25px;
    border: none;
    border-bottom: 4px solid #fff;
    /* hover & current page highlight */
  }

  .nav-primary .menu-primary > li > a {
    max-height: 72px;
  }

  .nav-primary .menu > li a:hover,
  .nav-primary .menu > li a:focus {
    background: none;
    color: #900028;
    border-color: #900028;
  }

  .nav-primary .menu > li ul {
    display: block;
    position: absolute;
    left: -9999em;
    margin: 0;
    min-width: 160px;
    z-index: 8999;
    /*overflow: hidden;*/
    background: #900028;
  }


  .nav-primary .menu > li ul a {
    padding: 15px 20px;
    border: none;
    text-align: left;
    color: #b3b9ba;
  }

  .nav-primary .menu > li ul a:hover,
  .nav-primary .menu > li ul a:focus {
    color: #fff;
    background-color: #6b0420;
  }

  .nav-primary .menu > li ul ul {
    margin: -30px 0 0 160px;
  }

  .nav-primary .menu li:hover > ul {
    left: auto;
  }


  .nav-primary .menu .sub-menu li.menu-item-has-children {
    position: relative;
  }


  .nav-primary .wrap {
    max-width: none;
  }

  .nav-primary .menu {
    margin: 0;
    padding: 0;
  }

  .nav-primary .menu ul {
    margin: 0;
    padding: 0;
  }

  .nav-primary .menu > li {
    float: left;
    display: block;
    margin: 0;
    list-style: none;
    padding: 0px 20px;
  }

  .nav-primary .menu > li:last-child {
    padding-right: 10px;
  }

  /*********************
POSTS & CONTENT
*********************/
  .content {
    width: 410px;
  }

  /* layout options */
  .content-sidebar .content,
  .sidebar-content .content {
    /* width: 580px; */
    width: 68%;
  }

  .sidebar-content .content,
  .sidebar-sidebar-content .content {
    float: right;
  }

  .full-width-content .content {
    width: 100%;
  }

  /*********************
POST CLASSES
*********************/
  .content .page {
    padding: 0;
  }


  .nav-primary .menu .sub-menu li.menu-item-has-children a:hover {

  }

  .nav-primary .menu > li li li a,
  .nav-primary .menu > li li li a:link,
  .nav-primary .menu > li li li a:visited {
    border: none;
    padding: 5px 10px;
    text-transform: none;
  }

  .nav-primary .menu > li.current_page_item > a,
  .nav-primary .menu > li.current-cat > a,
  .nav-primary .menu > li.current-menu-item > a {
    background: none;
    color: #900028;
    border-color: #900028;
  }

  .nav-primary .menu > li.current_page_item > a:hover,
  .nav-primary .menu > li.current-cat > a:hover,
  .nav-primary .menu > li.current-menu-item > a:hover {
    background: none;
    color: #900028;
    border-color: #900028;
  }

  .nav-primary .menu > li ul ul {
    /*left: 100%;*/
    right: auto;
    top: 0;
    margin: 0;
    /*display: block !important;*/
    background-color: #6b0420;
  }

  .nav-primary .menu > li ul ul a:hover,
  .nav-primary .menu > li ul ul a:focus {
    background-color: #900028;
  }

  .nav-primary .menu > li ul li:hover ul {
    left: 100%;
  }

  .instagram-pics li {
    width: 31%;
  }

  .service {
    width: 50%;
    float: left;
  }

  .ui-accordion-content {
    width: 100%;
    max-width: 100%;
  }

  .ui-accordion-content figure {
    float: left;
    margin-right: 12px;
  }

  .ui-accordion-content .post-text {
    margin-left: 162px;
  }

  .symple-accordion h3.symple-accordion-trigger {
    margin: 15px 0 0 !important;
  }

  .search-section .content-section {
    text-align: center;
  }

  .search-section .content-section .form-headding {
    margin-right: 25px;
  }

  #banner h1 {
    font-size: 38px;
    line-height: 38px;
  }

  #banner h1 br {
    display: block;
  }

  #banner .text {
    font-size: 14px;
  }

  .page-template-players-template #inner-banner .banner-text br {
    display: block;
  }
}

/* end of media query */
/******************************************************************
TABLET & iPAD STYLES
******************************************************************/
@media only screen and (min-width: 768px) {
  /* styles in 768up.less */
  /******************************************************************
Stylesheet: Tablet & Mid-Range Stylesheet
******************************************************************/
  /*********************
HEADER
*********************/
  /*********************
NAVIGATION
*********************/
  .nav-primary {
    /* display: inline-block;
  width: auto;
  float: right; */
    /* end .menu */
  }

  .nav-primary .wrap {
    /*position: relative;*/
  }


  .nav-primary .menu > li {
    display: inline-block;
    padding: 0px 7px;
    /* show sub-menu on hover */
  }

  .nav-primary .menu > li a {
    display: block;
    padding: 10px 0px 25px;
    border: none;
    border-bottom: 4px solid #fff;
    /* hover & current page highlight */
  }

  .nav-primary .menu > li a:hover,
  .nav-primary .menu > li a:focus {
    background: none;
    color: #900028;
    border-color: #900028;
  }

  .nav-primary .menu > li ul {
    display: block;
    position: absolute;
    left: -9999em;
    margin: 0;
    min-width: 160px;
    z-index: 8999;
    /*overflow: hidden;*/
    background: #900028;
  }

  .nav-primary .menu > li ul a {
    padding: 5px 10px;
    border: none;
    text-align: left;
    color: #b3b9ba;
  }

  .nav-primary .menu > li ul a:hover,
  .nav-primary .menu > li ul a:focus {
    color: #fff;
  }

  .social li:last-child {
    padding-right: 0px;
  }

  .social .twitter {
    padding-right: 0px;
  }

  #banner .wrap {
    margin: auto;
  }

  #banner .content-section {
    text-align: right;
    padding-bottom: 50px;
  }

  #banner .text {
    display: inline-block;
    float: right;
  }

  #banner h1 {
    line-height: 38px;
    text-align: right;
    display: inline;
    width: 100%;
  }

  #banner h1 span {
    float: right;
  }

  #banner .button {
    clear: both;
    float: right;
  }

  .service {
    width: 23%;
    margin-left: 1%;
    margin-right: 1%;
  }

  .sponsor-banner .content-section {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }

  .sponsor-banner .text-section {
    text-align: left;
    width: 75%;
    float: left;
  }

  .sponsor-banner .button-section {
    float: left;
    width: 25%;
    text-align: center;
  }

  .sponsor-banner .button-section .button {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(70%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    margin-top: 0px;
  }

  .latest-news .featured-item {
    width: 49%;
    float: left;
    text-align: left;
  }

  .latest-news .latest-items {
    width: 49%;
    float: right;
  }

  .symple-accordion .symple-accordion-trigger:first-child {
    margin-top: 0px !important;
  }

  .search-section .wrap {
    margin: auto;
  }


  .instagram-pics li {
    width: 23%;
  }

  .landing-body .areas,
  .landing-body .video,
  .landing-body .details {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }

  .landing-body .area {
    padding-bottom: 45px;
    position: relative;
  }

  .landing-body .area,
  .landing-body .detail-box {
    width: 32%;
    margin: 0;
  }

  .landing-body .video {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }

  .landing-body .video__embed {
    max-width: none;
    width: 55%;
  }

  .landing-body [class^="video__image"] {
    display: block;
    width: 18%;
  }

  .landing-body [class^="video__image"] img {
    max-width: none;
    width: 100%;
  }

  .area__button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/* end of media query */
/******************************************************************
DESKTOP STYLES
******************************************************************/
@media only screen and (min-width: 1025px) {
  /* styles in 960up.less */
  /******************************************************************
Stylesheet: Standard Desktop
******************************************************************/
  /*********************
GRID & LAYOUT
*********************/
  .five-sixths,
  .four-fifths,
  .four-sixths,
  .one-fifth,
  .one-fourth,
  .one-half,
  .one-sixth,
  .one-third,
  .three-fifths,
  .three-fourths,
  .three-sixths,
  .two-fifths,
  .two-fourths,
  .two-sixths,
  .two-thirds {
    float: left;
    padding-right: 3%;
  }

  .one-sixth {
    width: 16.66666667%;
  }

  .one-fifth {
    width: 20%;
  }

  .one-fourth {
    width: 25%;
  }

  .one-third,
  .two-sixths {
    width: 33.33333333%;
  }

  .two-fifths {
    width: 40%;
  }

  .one-half,
  .three-sixths,
  .two-fourths {
    width: 50%;
  }

  .three-fifths {
    width: 60%;
  }

  .four-sixths,
  .two-thirds {
    width: 66.66666667%;
  }

  .three-fourths {
    width: 75%;
  }

  .four-fifths {
    width: 80%;
  }

  .five-sixths {
    width: 83.33333333%;
  }

  .first {
    clear: both;
  }

  /*********************
WRAPS & INNER
*********************/
  .wrap {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  /*********************
IMAGE HEADER
*********************/
  .site-header .wrap {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
  }

  .site-header .title-area {
    float: left;
  }

  .site-header .title-area .site-title {
    text-align: left;
  }


  .site-header .widget-area {
    float: right;
  }

  .site-header .searchform {
    float: right;
  }

  .site-header .site-description {
    text-align: left;
  }

  /*********************
NAVIGATION
*********************/
  .nav-primary .menu {
    margin: 0;
    padding: 0;
  }

  .nav-primary .menu ul {
    margin: 0;
    padding: 0;
  }

  .nav-primary .menu > li {
    float: left;
    display: block;
    margin: 0;
    list-style: none;
    padding: 0px 20px;
  }

  .nav-primary .menu > li:last-child {
    padding-right: 10px;
  }

  /*********************
POSTS & CONTENT
*********************/
  .content {
    width: 410px;
  }

  /* layout options */
  .content-sidebar .content,
  .sidebar-content .content {
    /* width: 580px; */
    width: 68%;
  }

  .sidebar-content .content,
  .sidebar-sidebar-content .content {
    float: right;
  }

  .full-width-content .content {
    width: 100%;
  }

  /*********************
POST CLASSES
*********************/
  .content .page {
    padding: 0;
  }

  /*********************
ENTRY CONTENT
*********************/
  .entry-footer .entry-meta {
    border-top: 1px solid #ddd;
    clear: both;
    font-size: 12px;
    padding: 5px 0 0;
  }

  /*********************
AUTHOR BOX
*********************/
  .author-box {
    margin: 0 0 40px;
  }

  /*********************
POST NAVIGATION
*********************/
  .navigation {
    margin: 0;
  }

  /*********************
SIDEBAR ALTERATIONS
*********************/
  .sidebar-primary {
    float: right;
    display: inline;
    width: 280px;
    margin-top: 0;
  }

  .sidebar-secondary {
    float: left;
    width: 150px;
  }

  .sidebar .widget-title {
    text-align: left;
  }

  .sidebar-content .sidebar-primary,
  .sidebar-sidebar-content .sidebar-primary {
    float: left;
  }

  .content-sidebar-sidebar .sidebar-secondary {
    float: right;
  }

  /*********************
WIDGET STYLES
*********************/
  .widget {
    margin: 0;
  }

  /*********************
COMMENT STYLES
**********************/
  .entry-comments,
  #respond {
    padding: 0;
  }

  /*********************
FOOTER STYLES
*********************/
  /*********************
FOOTER WIDGETS
*********************/
  .footer-widgets .widget {
    padding: 0;
  }

  .footer-widgets .footer-widgets-1 .symple-one-fourth {
    text-align: left;
    margin-bottom: 0px;
  }

  .footer-widgets .footer-widgets-1 .symple-three-fourth {
    text-align: right;
    margin-bottom: 0px;
  }

  .footer-widgets .footer-widgets-1 .symple-three-fourth span {
    padding-left: 40px;
    display: inline-block;
  }

  .footer-widgets .footer-widgets-1 .symple-three-fourth br {
    display: none;
  }

  .footer-widgets .footer-widgets-2 .symple-one-fourth {
    text-align: left;
  }

  .footer-widgets .footer-widgets-2 .gform_wrapper .gform_body {
    width: 78%;
    float: left;
  }

  .footer-widgets .footer-widgets-2 .gform_wrapper .gform_body li.gfield {
    clear: none;
    width: 30% !important;
    float: left;
    margin-right: 3% !important;
  }

  .footer-widgets .footer-widgets-2 .gform_wrapper .gform_footer {
    clear: none;
    width: 21%;
    float: right;
    text-align: right;
  }

  .footer-widgets .footer-widgets-2 .widget {
    margin-bottom: 0px;
  }

  .footer-widgets .footer-widgets-2 .widget .symple-one-fourth {
    margin-bottom: 0px;
  }

  .footer-widgets .footer-widgets-2 .widget .symple-three-fourth {
    margin-bottom: 0px;
  }

  .footer-widgets .textwidget > p {
    display: none;
  }

  #banner {
    background-position: center;
  }

  #banner .wrap {
    height: 580px;
  }

  #banner h1 {
    font: 58px/68px 'canada-type-gibson', sans-serif;
  }

  .sponsor-banner .content-section {
    max-width: 965px;
  }

  .sponsor-banner .text-section .heading {
    text-transform: uppercase;
  }

  .sponsor-banner .text-section .sub-heading {
    letter-spacing: 1px;
  }

  .instagram-pics li {
    width: 18%;
  }

  .page-heading .sub-heading br {
    display: block;
  }

  .page-template-players-template .player-type {
    padding: 150px 0px 90px;
  }

  .page-template-players-template .player-type .heading {
    text-align: left;
  }

  .page-template-players-template .player-type .heading .sep {
    margin: 30px 0px;
  }

  .page-template-players-template .player-type:nth-child(even) .heading {
    float: right;
  }

  .page-template-players-template .player-type:nth-child(even) .text {
    float: right;
    margin-right: 80px;
  }

  .page-template-players-template .player-type:nth-child(odd) .heading {
    float: left;
    margin-right: 80px;
  }

  .page-template-players-template .player-type:nth-child(odd) .text {
    float: left;
  }

  .landing-body .area {
    padding-bottom: 50px;
  }

  .area__button a {
    padding: 13px 30px;
    font-size: 17px;
  }
}

/* end of media query */
/******************************************************************
SUPER LARGE MONITORS STYLES
******************************************************************/
@media only screen and (min-width: 1180px) {
  /* styles in 1180up.less */
  /******************************************************************
Stylesheet: Super Large Screens
******************************************************************/
  .footer-widgets .footer-widgets-2 .gform_wrapper .gform_body {
    width: 82%;
  }

  .footer-widgets .footer-widgets-2 .gform_wrapper .gform_footer {
    width: 18%;
  }

  .bx-wrapper .bx-controls-direction a.bx-next,
  .bx-wrapper .bx-controls-direction a.bx-prev {
    height: 262px;
    width: 40px;
    margin-top: 0;
    top: -131px;
  }

  .bx-wrapper .bx-controls-direction .bx-prev {
    left: -40px;
    background: #dadada url(../png/prev-arrow.png) no-repeat center center;
  }

  .bx-wrapper .bx-controls-direction .bx-next {
    right: -40px;
    background: #dadada url(../png/next-arrow.png) no-repeat center center;
  }

  .sidebar-primary {
    width: 300px;
  }

  .content-sidebar .content,
  .sidebar-content .content {
    width: 71%;
  }

  .entry-content .symple-one-half {
    width: 48.5%;
  }

  .entry-content .symple-one-half.symple-column-first {
    margin-right: 3%;
  }

  .page-template-landing-template #inner-banner {
    height: 480px;
    padding: 0;
  }
}

/* end of media query */
/******************************************************************
PRINT STYLESHEET
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* end of print stylesheet (DO NOT DELETE) */


.has_megamenu #menu-icon {
  display: none;
}

#inner-banner {
  margin-bottom: 70px;
}


/*#sb_instagram #sbi_images {
  display: flex;
  flex-wrap: wrap;
}

#sb_instagram #sbi_images .sbi_item {
  margin: 0 10px !important;
  padding: 0 !important;
  border: 1px solid var(--light-grey);
}

#sb_instagram .sbi_info {
  padding: 0 2px;
}*/

/*WC 2023*/
.fbq-countdown-section {
  background-color: #fffaef;
  position: relative;
  max-height: 400px;
  overflow: hidden;
}


.fbq-countdown-section .wrap {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  height: 200px;
  justify-content: center;
}

.fbq-countdown-section:before,
.fbq-countdown-section:after {
  top: 0;
  position: absolute;
  content: " ";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}

.fbq-countdown-section:before {
  left: 0;
  background-image: url("../png/bg-left.png");
  width: 250px;
  height: 204px;
}

.fbq-countdown-section:after {
  right: 0;
  background-image: url("../png/bg-right.png");
  width: 276px;
  height: 200px;
}

.fbq-countdown-section a:hover,
.fbq-countdown-section a:focus {
  opacity: 1;
}

.fbq-countdown {
  margin-left: 12px;
  margin-right: 12px;
}

.fbq-countdown__count {
  font-weight: bold;
  font-size: 50px;
  color: black;
  text-transform: uppercase;
  margin-top: 10px;
}


.fbq-countdown__values {
  display: flex;
}

.fb-countdown__value {
  text-align: right;
  display: inline-block;
  min-width: 81px;
  color: #0098ff;
}

.fbq-countdown__days .fb-countdown__value {
  /*min-width: 95px;*/
}

.fbq-countdown__message {
  color: #1d1d1a;
  font-size: 28px;
  font-weight: bold;
  /*margin-top: 20px;*/
  flex-basis: 100%;
  text-align: center;
}

.fbq-countdown__message span {
  color: #0098ff;
}

/*MEDIA QUERIES*/

@media (max-width: 1700px) {
  .fbq-countdown-section:before {
    left: -100px;
  }

  .fbq-countdown-section:after {
    right: -100px;
  }
}


@media (max-width: 1499px) {

  .fbq-countdown-section {
    text-align: center;
  }

  .fbq-countdown-section .wrap {
    display: inline-flex;
    width: auto;
    text-align: left;
  }


  .fb-countdown__value {
    min-width: 40px;
  }

  .fbq-countdown__count {
    font-size: 30px;
  }

  .fbq-countdown__message {
    font-size: 14px;
    margin-top: 12px;
  }


  .fbq-countdown__values {
    display: block;
  }


  .fbq-countdown-section:before {
  }

  .fbq-countdown-section:after {
  }
}

@media (max-width: 599px) {
  .fbq-countdown-section:before {
    left: -140px;
  }

  .fbq-countdown-section:after {
    right: -120px;
  }

  .fbq-countdown__count {
    font-size: 24px;
  }

  .fb-countdown__value {
    min-width: 35px;
  }

  .fbq-countdown__message {
    font-size: 12px;
    margin-top: 5px;
  }
}

@media (max-width: 419px) {
  .fbq-countdown-section .wrap {
    left: 30px;
  }

  .fbq-countdown-section:after {
    display: none;
  }
}

